From 7392c8d3c4b3baee97ee094a33dd1ee517fb7e09 Mon Sep 17 00:00:00 2001 From: michalStarski Date: Tue, 19 Mar 2019 18:40:36 +0100 Subject: [PATCH] mend --- game.py | 7 ------- sprites/house.py | 9 ++++----- utils.py | 2 +- 3 files changed, 5 insertions(+), 13 deletions(-) diff --git a/game.py b/game.py index 1b5d153..8a6cc0e 100644 --- a/game.py +++ b/game.py @@ -35,13 +35,6 @@ for x in range(PLAY_HEIGHT//64): grass = Grass(x,y) cells[x].append(grass) -for x in range(PLAY_HEIGHT//64): - cells.append([]) - for y in range(PLAY_HEIGHT//64): - grass = Grass(x,y) - cells[x].append(grass) -print( cells ) - #Losowanie domków i dodawanie je do mapy home_len = home_amount while( home_len > 0 ): diff --git a/sprites/house.py b/sprites/house.py index b3f676d..545cb56 100644 --- a/sprites/house.py +++ b/sprites/house.py @@ -11,16 +11,16 @@ class House(Cell): Cell.__init__(self,x,y) self.image = pygame.image.load("images/house.png") self.rubbish = [0,0,0] #plastic, glass, metal - + self.max_plastic = max_plastic self.max_glass = max_glass self.max_metal = max_metal - + def generate_rubbish(self): if( random.randint(0, 5) == 1 ): #1/5 szansa na wyrzucenie śmiecia w klatce thrash_type = random.randint(0,2) self.rubbish[thrash_type] = self.rubbish[thrash_type] + 1 - + if( self.rubbish[PLASTIC] > self.max_plastic ): self.image = pygame.image.load("images/house_plastic.png") print("PLASTIC alert") @@ -30,7 +30,6 @@ class House(Cell): if( self.rubbish[METAL] > self.max_metal ): self.image = pygame.image.load("images/house_metal.png") print("METAL alert") - + def check_rubbish_status(self): print( "plastic: " + str(self.rubbish[PLASTIC]) + " glass: " + str(self.rubbish[GLASS]) + " metal: " + str(self.rubbish[METAL]) ) - \ No newline at end of file diff --git a/utils.py b/utils.py index c65724e..3021ce3 100644 --- a/utils.py +++ b/utils.py @@ -7,7 +7,7 @@ def set_home_amount(): for o, amount in optlist: if o == '--home-count': return int(amount) - print('missing argument: --home-count ') + print('Missing argument: --home-count ') sys.exit(2) except getopt.GetoptError as err: print(err)