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
Admin message
Looking for advice? Join the
Matrix channel for GitLab users in Bielefeld
!
Show more breadcrumbs
Social Cognitive Systems
CoCoSy
Cooperative Cuisine Environment
Commits
368f8db0
Commit
368f8db0
authored
1 year ago
by
Fabian Heinrich
Browse files
Options
Downloads
Patches
Plain Diff
Changed dispenser counter
parent
c24108ea
No related branches found
No related tags found
1 merge request
!13
40-visualisierungsregeln
Pipeline
#41856
failed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
overcooked_simulator/counters.py
+13
-6
13 additions, 6 deletions
overcooked_simulator/counters.py
with
13 additions
and
6 deletions
overcooked_simulator/counters.py
+
13
−
6
View file @
368f8db0
...
...
@@ -16,7 +16,9 @@ from overcooked_simulator.game_items import (
Tomato
,
Pot
,
CookingEquipment
,
Soup
,
)
from
overcooked_simulator.game_items
import
item_loopkup
class
Counter
:
...
...
@@ -128,10 +130,8 @@ class ServingWindow(Counter):
def
can_score
(
self
,
item
):
if
isinstance
(
item
,
Plate
):
if
isinstance
(
item
.
holds
,
ProgressibleItem
):
if
isinstance
(
item
.
holds
,
Soup
):
return
item
.
holds
.
finished
else
:
return
bool
(
item
.
holds
)
def
can_drop_off
(
self
,
item
:
Item
)
->
bool
:
return
self
.
can_score
(
item
)
...
...
@@ -186,12 +186,16 @@ class PlateReturn(Counter):
)
or
self
.
occupied_by
[
-
1
].
can_combine
(
item
)
class
TomatoDispenser
(
Counter
):
def
__init__
(
self
,
pos
):
class
Dispenser
(
Counter
):
def
__init__
(
self
,
pos
,
dispensing
):
self
.
dispensing
=
dispensing
super
().
__init__
(
pos
)
def
pick_up
(
self
,
on_hands
:
bool
=
True
):
return
Tomato
()
return
CuttableItem
(
name
=
self
.
dispensing
,
finished_name
=
item_loopkup
[
self
.
dispensing
][
"
finished_name
"
],
)
def
drop_off
(
self
,
item
:
Item
)
->
Item
|
None
:
return
None
...
...
@@ -199,6 +203,9 @@ class TomatoDispenser(Counter):
def
can_drop_off
(
self
,
item
:
Item
)
->
bool
:
return
False
def
__repr__
(
self
):
return
f
"
{
self
.
dispensing
}
Dispenser
"
class
Trash
(
Counter
):
def
pick_up
(
self
,
on_hands
:
bool
=
True
):
...
...
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