Compare commits
4 Commits
29fcb83d83
...
8501e7e7b4
Author | SHA1 | Date | |
---|---|---|---|
8501e7e7b4 | |||
18cc38b3ff | |||
bfd78aee90 | |||
298fba3f6d |
34
garbageTruck.py
Normal file
34
garbageTruck.py
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
from typing import List
|
||||||
|
|
||||||
|
class GarbageTruck:
|
||||||
|
position: Tuple[int, int]
|
||||||
|
paper: List[RecognizedGarbage]
|
||||||
|
plastic_and_metal: List[RecognizedGarbage]
|
||||||
|
glass: List[RecognizedGarbage]
|
||||||
|
bio: List[RecognizedGarbage]
|
||||||
|
mixed: List[RecognizedGarbage]
|
||||||
|
truckSpritePath = 'imgs/dust_car.png'
|
||||||
|
def __init__(self, position: List[int, int]) -> None:
|
||||||
|
self.position = position
|
||||||
|
self.paper = []
|
||||||
|
self.plastic_and_metal = []
|
||||||
|
self.glass = []
|
||||||
|
self.bio = []
|
||||||
|
self.mixed = []
|
||||||
|
|
||||||
|
|
||||||
|
def sort_garbage(self, RecognizedGarbage) -> None:
|
||||||
|
if RecognizedGarbage.garbage_type == 0:
|
||||||
|
self.paper.append(RecognizedGarbage)
|
||||||
|
|
||||||
|
elif RecognizedGarbage.garbage_type == 1:
|
||||||
|
self.plastic_and_metal.append(RecognizedGarbage)
|
||||||
|
|
||||||
|
elif RecognizedGarbage.garbage_type == 3:
|
||||||
|
self.glass.append(RecognizedGarbage)
|
||||||
|
|
||||||
|
elif RecognizedGarbage.garbage_type == 4:
|
||||||
|
self.bio.append(RecognizedGarbage)
|
||||||
|
|
||||||
|
elif RecognizedGarbage.garbage_type == 5:
|
||||||
|
self.mixed.append(RecognizedGarbage)
|
Loading…
Reference in New Issue
Block a user