Removed redundant draw method params
This commit is contained in:
parent
6ed8423463
commit
e66b0d4a59
@ -88,27 +88,27 @@ class Map:
|
||||
for col, tile in enumerate(tiles):
|
||||
if tile == 's':
|
||||
object = TerrainTile(col, row, 'sand.png', self.tileSize, 15)
|
||||
self.screen.draw(object, Locations.MAP, 0, 0)
|
||||
self.screen.draw(object, Locations.MAP)
|
||||
self.terrainTilesList.append(object)
|
||||
elif tile == ',':
|
||||
object = TerrainTile(col, row, 'floor.png', self.tileSize, 0)
|
||||
self.screen.draw(object, Locations.MAP, 0, 0)
|
||||
self.screen.draw(object, Locations.MAP)
|
||||
self.terrainTilesList.append(object)
|
||||
elif tile == '.':
|
||||
object = TerrainTile(col, row, 'grass.png', self.tileSize, 10)
|
||||
self.screen.draw(object, Locations.MAP, 0, 0)
|
||||
self.screen.draw(object, Locations.MAP)
|
||||
self.terrainTilesList.append(object)
|
||||
elif tile == 'c':
|
||||
object = TerrainTile(col, row, 'clay.png', self.tileSize, 20)
|
||||
self.screen.draw(object, Locations.MAP, 0, 0)
|
||||
self.screen.draw(object, Locations.MAP)
|
||||
self.terrainTilesList.append(object)
|
||||
elif tile == 'x':
|
||||
object = TerrainTile(col, row, 'water.png', self.tileSize, 0)
|
||||
self.screen.draw(object, Locations.MAP, 0, 0)
|
||||
self.screen.draw(object, Locations.MAP)
|
||||
self.collidables.add(object)
|
||||
elif tile == 'w':
|
||||
object = TerrainTile(col, row, 'wall.png', self.tileSize, 0)
|
||||
self.screen.draw(object, Locations.MAP, 0, 0)
|
||||
self.screen.draw(object, Locations.MAP)
|
||||
self.collidables.add(object)
|
||||
|
||||
def getEntityOnCoord(self, coord):
|
||||
@ -137,7 +137,7 @@ class Map:
|
||||
# TODO: REMOVE DONT ADD
|
||||
def addEntity(self, entity, DONTADD=False):
|
||||
# TODO: This method should set entities coords
|
||||
self.screen.draw(entity, Locations.MAP, 0, 0)
|
||||
self.screen.draw(entity, Locations.MAP)
|
||||
# dodajemy bo wszystkie entity są kolizyjne
|
||||
self.collidables.add(entity)
|
||||
if not DONTADD:
|
||||
|
@ -78,14 +78,14 @@ class Screen:
|
||||
def __initUi__(self):
|
||||
self.ui = Ui(self.getUiWidth(Locations.RIGHT_UI), self.getUiWidth(Locations.LEFT_UI), self.winY,
|
||||
self.gameObject.ingameTimer)
|
||||
self.draw(self.ui.timerTextView, Locations.LEFT_UI, 0, 0)
|
||||
self.draw(self.ui.isDayTextView, Locations.LEFT_UI, 0, 0)
|
||||
self.draw(self.ui.console, Locations.LEFT_UI, 0, 0)
|
||||
self.draw(self.ui.healthTextView, Locations.RIGHT_UI, 0, 0)
|
||||
self.draw(self.ui.healthBar, Locations.RIGHT_UI, 0, 0)
|
||||
self.draw(self.ui.hungerTextView, Locations.RIGHT_UI, 0, 0)
|
||||
self.draw(self.ui.hungerBar, Locations.RIGHT_UI, 0, 0)
|
||||
self.draw(self.ui.staminaTextView, Locations.RIGHT_UI, 0, 0)
|
||||
self.draw(self.ui.staminaBar, Locations.RIGHT_UI, 0, 0)
|
||||
self.draw(self.ui.thirstTextView, Locations.RIGHT_UI, 0, 0)
|
||||
self.draw(self.ui.thirstBar, Locations.RIGHT_UI, 0, 0)
|
||||
self.draw(self.ui.timerTextView, Locations.LEFT_UI)
|
||||
self.draw(self.ui.isDayTextView, Locations.LEFT_UI)
|
||||
self.draw(self.ui.console, Locations.LEFT_UI)
|
||||
self.draw(self.ui.healthTextView, Locations.RIGHT_UI)
|
||||
self.draw(self.ui.healthBar, Locations.RIGHT_UI)
|
||||
self.draw(self.ui.hungerTextView, Locations.RIGHT_UI)
|
||||
self.draw(self.ui.hungerBar, Locations.RIGHT_UI)
|
||||
self.draw(self.ui.staminaTextView, Locations.RIGHT_UI)
|
||||
self.draw(self.ui.staminaBar, Locations.RIGHT_UI)
|
||||
self.draw(self.ui.thirstTextView, Locations.RIGHT_UI)
|
||||
self.draw(self.ui.thirstBar, Locations.RIGHT_UI)
|
||||
|
Loading…
Reference in New Issue
Block a user