Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Cooperative Cuisine Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Social Cognitive Systems
CoCoSy
Cooperative Cuisine Environment
Commits
6c6c38f3
Commit
6c6c38f3
authored
1 year ago
by
Dominik Battefeld
Browse files
Options
Downloads
Patches
Plain Diff
Add new yaml proposal, graph + graph plot dependencies
parent
463faa1a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!19
Resolve "Add recipe yaml check + visualize recipes"
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
overcooked_simulator/game_content/item_info_new.yaml
+79
-0
79 additions, 0 deletions
overcooked_simulator/game_content/item_info_new.yaml
overcooked_simulator/main.py
+1
-0
1 addition, 0 deletions
overcooked_simulator/main.py
setup.py
+10
-1
10 additions, 1 deletion
setup.py
with
90 additions
and
1 deletion
overcooked_simulator/game_content/item_info_new.yaml
0 → 100644
+
79
−
0
View file @
6c6c38f3
CuttingBoard
:
type
:
Equipment
Pot
:
type
:
Equipment
Pan
:
type
:
Equipment
# --------------------------------------------------------------------------------
Tomato
:
type
:
Ingredient
Lettuce
:
type
:
Ingredient
Onion
:
type
:
Ingredient
Meat
:
type
:
Ingredient
Bun
:
type
:
Ingredient
ChoppedTomato
:
type
:
Ingredient
needs
:
[
Tomato
]
steps
:
500
equipment
:
CuttingBoard
ChoppedLettuce
:
type
:
Ingredient
needs
:
[
Lettuce
]
steps
:
700
equipment
:
CuttingBoard
ChoppedOnion
:
type
:
Ingredient
needs
:
[
Onion
]
steps
:
500
equipment
:
CuttingBoard
ChoppedMeat
:
type
:
Ingredient
needs
:
[
Meat
]
steps
:
700
equipment
:
CuttingBoard
CookedPatty
:
type
:
Ingredient
steps
:
500
needs
:
[
ChoppedMeat
]
equipment
:
Pan
# --------------------------------------------------------------------------------
Burger
:
type
:
Meal
needs
:
[
Bun
,
ChoppedLettuce
,
ChoppedTomato
,
CookedPatty
]
equipment
:
[
]
Salad
:
type
:
Meal
needs
:
[
ChoppedLettuce
,
ChoppedTomato
]
equipment
:
[
]
TomatoSoup
:
type
:
Meal
steps
:
500
needs
:
[
ChoppedTomato
,
ChoppedTomato
,
ChoppedTomato
]
equipment
:
Pot
OnionSoup
:
type
:
Meal
steps
:
500
needs
:
[
ChoppedOnion
,
ChoppedOnion
,
ChoppedOnion
]
equipment
:
Pot
This diff is collapsed.
Click to expand it.
overcooked_simulator/main.py
+
1
−
0
View file @
6c6c38f3
...
...
@@ -27,6 +27,7 @@ def setup_logging():
logging
.
StreamHandler
(
sys
.
stdout
),
],
)
logging
.
getLogger
(
"
matplotlib
"
).
setLevel
(
logging
.
WARNING
)
def
main
():
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
10
−
1
View file @
6c6c38f3
...
...
@@ -10,7 +10,16 @@ with open("README.md") as readme_file:
with
open
(
"
CHANGELOG.md
"
)
as
history_file
:
history
=
history_file
.
read
()
requirements
=
[
"
numpy
"
,
"
pygame
"
,
"
scipy
"
,
"
pytest>=3
"
,
"
pyyaml
"
]
requirements
=
[
"
numpy
"
,
"
pygame
"
,
"
scipy
"
,
"
pytest>=3
"
,
"
pyyaml
"
,
"
networkx
"
,
"
matplotlib
"
,
"
pygraphviz
"
,
]
test_requirements
=
[
"
pytest>=3
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment