Skip to content

Commit

Permalink
added objects
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelmemmesheimer committed May 1, 2019
1 parent 3402659 commit e1fe586
Show file tree
Hide file tree
Showing 49 changed files with 309 additions and 12 deletions.
12 changes: 7 additions & 5 deletions locations.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## Bedroom


* bed
* desk
* side table
Expand All @@ -20,21 +19,24 @@
* tv table
* bookcase
* couch
* arm chairs
* left arm chair
* right arm chair
* coffee table
* sideboard
* high table

## Bar

* storage shelf
* bar table
* spare table
* sofa

# Default locations

* cleaning stuff on dishwasher
* snacks on couch table
* drinks on kitchen table
* food in bookcase
* care in storage shelf
* care in sidetable
* container on tv table
* fruit on side table
* fruit on bar table
16 changes: 16 additions & 0 deletions objects/generate_list.py
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 | ![](%s) |" % (file[:file.find(".")], os.path.join(subdir, file)))
print("\n")

# execute pandoc <filename>.markdown -o <filename>.pdf
224 changes: 224 additions & 0 deletions objects/objects.html
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>
14 changes: 7 additions & 7 deletions objects/objects.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

# Class cutlery
# Class kitchen_stuff

| Objectname | Image |
:-------------------------:|:-------------------------:
| bowl | ![](objects/cutlery/bowl.jpg) |
| cup | ![](objects/cutlery/cup.jpg) |
| fork | ![](objects/cutlery/fork.jpg) |
| knife | ![](objects/cutlery/knife.jpg) |
| plate | ![](objects/cutlery/plate.jpg) |
| spoon | ![](objects/cutlery/spoon.jpg) |
| bowl | ![](objects/kitchen_stuff/bowl.jpg) |
| cup | ![](objects/kitchen_stuff/cup.jpg) |
| fork | ![](objects/kitchen_stuff/fork.jpg) |
| knife | ![](objects/kitchen_stuff/knife.jpg) |
| plate | ![](objects/kitchen_stuff/plate.jpg) |
| spoon | ![](objects/kitchen_stuff/spoon.jpg) |


# Class drinks
Expand Down
Binary file modified objects/objects.pdf
Binary file not shown.
Binary file modified objects/objects/care/shower_gel.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/care/soap.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/care/toothpaste.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/cleaning_stuff/cloth.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/cleaning_stuff/dishwasher_tab.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/drinks/apple_juice.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/drinks/iso_drink.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/drinks/orange_juice.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/drinks/red_spritzer.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/drinks/sparkling_water.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/food/bouillon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/food/corn.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/food/salt.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/food/sauerkraut.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/food/seasoning_mix.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.
File renamed without changes
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/snacks/cereal_bar_chocolate.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/snacks/cereal_bar_chocolate_banana.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/snacks/cracker.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/snacks/fruit_bar_apple.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified objects/objects/snacks/fruit_bar_forest_fruit.jpg
Binary file modified objects/objects/snacks/get_it.jpg
Binary file modified objects/objects/snacks/nut_fruit_mix.jpg
Binary file modified objects/objects/snacks/peanut_bits.jpg
55 changes: 55 additions & 0 deletions objects/objects_similar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Class

| Objectname | Image |
:-------------------------:|:-------------------------:


# Class other

| Objectname | Image |
:-------------------------:|:-------------------------:
| bag_pink | ![](objects_similar/other/bag_pink.jpg) |
| bag | ![](objects_similar/other/bag.jpg) |
| bag_purple | ![](objects_similar/other/bag_purple.jpg) |


# Class drinks

| Objectname | Image |
:-------------------------:|:-------------------------:
| multivitamin_juice | ![](objects_similar/drinks/multivitamin_juice.jpg) |
| water_medium | ![](objects_similar/drinks/water_medium.jpg) |


# Class care

| Objectname | Image |
:-------------------------:|:-------------------------:
| toothpaste_active_fresh | ![](objects_similar/care/toothpaste_active_fresh.jpg) |


# Class food

| Objectname | Image |
:-------------------------:|:-------------------------:
| kidney_beans | ![](objects_similar/food/kidney_beans.jpg) |


# Class cleaning_stuff

| Objectname | Image |
:-------------------------:|:-------------------------:
| cloth_yellow | ![](objects_similar/cleaning_stuff/cloth_yellow.jpg) |
| cloth_blue | ![](objects_similar/cleaning_stuff/cloth_blue.jpg) |
| cloth_green | ![](objects_similar/cleaning_stuff/cloth_green.jpg) |


# Class snacks

| Objectname | Image |
:-------------------------:|:-------------------------:
| fruit_bar_cranberry_cherry | ![](objects_similar/snacks/fruit_bar_cranberry_cherry.jpg) |
| race | ![](objects_similar/snacks/race.jpg) |
| cereal_bar_white_chocolate | ![](objects_similar/snacks/cereal_bar_white_chocolate.jpg) |


Binary file added objects/objects_similar.pdf
Binary file not shown.
Binary file added objects/objects_similar/drinks/water_medium.jpg
Binary file added objects/objects_similar/food/kidney_beans.jpg
Binary file added objects/objects_similar/other/bag.jpg
Binary file added objects/objects_similar/other/bag_pink.jpg
Binary file added objects/objects_similar/other/bag_purple.jpg
Binary file added objects/objects_similar/snacks/race.jpg

0 comments on commit e1fe586

Please sign in to comment.