-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3402659
commit e1fe586
Showing
49 changed files
with
309 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Usage like: python3 object_list_generator_new.py objects/ > list.markdown | ||
import os | ||
import sys | ||
|
||
rootdir = sys.argv[1] | ||
os.system("find . -name '*.jpg' -execdir mogrify -resize 200x {} \;") | ||
for subdir, dirs, files in os.walk(rootdir): | ||
print("# Class %s" % subdir[subdir.find("/")+1:]) | ||
print(""" | ||
| Objectname | Image | | ||
:-------------------------:|:-------------------------:""") | ||
for file in files: | ||
print("| %s |  |" % (file[:file.find(".")], os.path.join(subdir, file))) | ||
print("\n") | ||
|
||
# execute pandoc <filename>.markdown -o <filename>.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,224 @@ | ||
<h1 id="class-kitchen_stuff">Class kitchen_stuff</h1> | ||
<table> | ||
<thead> | ||
<tr class="header"> | ||
<th align="center">Objectname</th> | ||
<th align="center">Image</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="odd"> | ||
<td align="center">bowl</td> | ||
<td align="center"><img src="objects/kitchen_stuff/bowl.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">cup</td> | ||
<td align="center"><img src="objects/kitchen_stuff/cup.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">fork</td> | ||
<td align="center"><img src="objects/kitchen_stuff/fork.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">knife</td> | ||
<td align="center"><img src="objects/kitchen_stuff/knife.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">plate</td> | ||
<td align="center"><img src="objects/kitchen_stuff/plate.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">spoon</td> | ||
<td align="center"><img src="objects/kitchen_stuff/spoon.jpg" /></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<h1 id="class-drinks">Class drinks</h1> | ||
<table> | ||
<thead> | ||
<tr class="header"> | ||
<th align="center">Objectname</th> | ||
<th align="center">Image</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="odd"> | ||
<td align="center">apple_juice</td> | ||
<td align="center"><img src="objects/drinks/apple_juice.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">iso_drink</td> | ||
<td align="center"><img src="objects/drinks/iso_drink.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">orange_juice</td> | ||
<td align="center"><img src="objects/drinks/orange_juice.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">red_spritzer</td> | ||
<td align="center"><img src="objects/drinks/red_spritzer.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">sparkling_water</td> | ||
<td align="center"><img src="objects/drinks/sparkling_water.jpg" /></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<h1 id="class-fruit">Class fruit</h1> | ||
<table> | ||
<thead> | ||
<tr class="header"> | ||
<th align="center">Objectname</th> | ||
<th align="center">Image</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="odd"> | ||
<td align="center">lemon</td> | ||
<td align="center"><img src="objects/fruit/lemon.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">orange</td> | ||
<td align="center"><img src="objects/fruit/orange.jpg" /></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<h1 id="class-care">Class care</h1> | ||
<table> | ||
<thead> | ||
<tr class="header"> | ||
<th align="center">Objectname</th> | ||
<th align="center">Image</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="odd"> | ||
<td align="center">shower_gel</td> | ||
<td align="center"><img src="objects/care/shower_gel.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">soap</td> | ||
<td align="center"><img src="objects/care/soap.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">toothpaste</td> | ||
<td align="center"><img src="objects/care/toothpaste.jpg" /></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<h1 id="class-food">Class food</h1> | ||
<table> | ||
<thead> | ||
<tr class="header"> | ||
<th align="center">Objectname</th> | ||
<th align="center">Image</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="odd"> | ||
<td align="center">bouillon</td> | ||
<td align="center"><img src="objects/food/bouillon.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">corn</td> | ||
<td align="center"><img src="objects/food/corn.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">noodles</td> | ||
<td align="center"><img src="objects/food/noodles.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">pepper</td> | ||
<td align="center"><img src="objects/food/pepper.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">salt</td> | ||
<td align="center"><img src="objects/food/salt.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">sauerkraut</td> | ||
<td align="center"><img src="objects/food/sauerkraut.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">seasoning_mix</td> | ||
<td align="center"><img src="objects/food/seasoning_mix.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">tomatoes</td> | ||
<td align="center"><img src="objects/food/tomatoes.jpg" /></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<h1 id="class-container">Class container</h1> | ||
<table> | ||
<thead> | ||
<tr class="header"> | ||
<th align="center">Objectname</th> | ||
<th align="center">Image</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
</tbody> | ||
</table> | ||
<h1 id="class-cleaning_stuff">Class cleaning_stuff</h1> | ||
<table> | ||
<thead> | ||
<tr class="header"> | ||
<th align="center">Objectname</th> | ||
<th align="center">Image</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="odd"> | ||
<td align="center">cloth</td> | ||
<td align="center"><img src="objects/cleaning_stuff/cloth.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">dishwasher_tab</td> | ||
<td align="center"><img src="objects/cleaning_stuff/dishwasher_tab.jpg" /></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<h1 id="class-snacks">Class snacks</h1> | ||
<table> | ||
<thead> | ||
<tr class="header"> | ||
<th align="center">Objectname</th> | ||
<th align="center">Image</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="odd"> | ||
<td align="center">cereal_bar_chocolate</td> | ||
<td align="center"><img src="objects/snacks/cereal_bar_chocolate.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">cereal_bar_chocolate_banana</td> | ||
<td align="center"><img src="objects/snacks/cereal_bar_chocolate_banana.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">cracker</td> | ||
<td align="center"><img src="objects/snacks/cracker.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">fruit_bar_apple</td> | ||
<td align="center"><img src="objects/snacks/fruit_bar_apple.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">fruit_bar_forest_fruit</td> | ||
<td align="center"><img src="objects/snacks/fruit_bar_forest_fruit.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">get_it</td> | ||
<td align="center"><img src="objects/snacks/get_it.jpg" /></td> | ||
</tr> | ||
<tr class="odd"> | ||
<td align="center">nut_fruit_mix</td> | ||
<td align="center"><img src="objects/snacks/nut_fruit_mix.jpg" /></td> | ||
</tr> | ||
<tr class="even"> | ||
<td align="center">peanut_bits</td> | ||
<td align="center"><img src="objects/snacks/peanut_bits.jpg" /></td> | ||
</tr> | ||
</tbody> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file renamed
BIN
+10.6 KB
objects/objects/cutlery/bowl.jpg → objects/objects/kitchen_stuff/bowl.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file renamed
BIN
+10.6 KB
objects/objects/cutlery/fork.jpg → objects/objects/kitchen_stuff/fork.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Binary file renamed
BIN
+11.3 KB
objects/objects/cutlery/spoon.jpg → objects/objects/kitchen_stuff/spoon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Class | ||
|
||
| Objectname | Image | | ||
:-------------------------:|:-------------------------: | ||
|
||
|
||
# Class other | ||
|
||
| Objectname | Image | | ||
:-------------------------:|:-------------------------: | ||
| bag_pink |  | | ||
| bag |  | | ||
| bag_purple |  | | ||
|
||
|
||
# Class drinks | ||
|
||
| Objectname | Image | | ||
:-------------------------:|:-------------------------: | ||
| multivitamin_juice |  | | ||
| water_medium |  | | ||
|
||
|
||
# Class care | ||
|
||
| Objectname | Image | | ||
:-------------------------:|:-------------------------: | ||
| toothpaste_active_fresh |  | | ||
|
||
|
||
# Class food | ||
|
||
| Objectname | Image | | ||
:-------------------------:|:-------------------------: | ||
| kidney_beans |  | | ||
|
||
|
||
# Class cleaning_stuff | ||
|
||
| Objectname | Image | | ||
:-------------------------:|:-------------------------: | ||
| cloth_yellow |  | | ||
| cloth_blue |  | | ||
| cloth_green |  | | ||
|
||
|
||
# Class snacks | ||
|
||
| Objectname | Image | | ||
:-------------------------:|:-------------------------: | ||
| fruit_bar_cranberry_cherry |  | | ||
| race |  | | ||
| cereal_bar_white_chocolate |  | | ||
|
||
|
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.