Skip to content
Snippets Groups Projects
Commit 368f8db0 authored by Fabian Heinrich's avatar Fabian Heinrich
Browse files

Changed dispenser counter

parent c24108ea
No related branches found
No related tags found
1 merge request!1340-visualisierungsregeln
Pipeline #41856 failed
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment