Projekt_Sztuczna_Inteligencja/tile.py

25 lines
740 B
Python
Raw Normal View History

from project_constants import Terrain
# Assume_cost function assumes colour as an argument (colour that is already given to a tile) and depending
# on what it is returns value of Terrein Enum
# It is used in Tile.cost (giving the value to the tile)
def assume_cost(terrain_type):
if terrain_type == "CONCRETE":
return Terrain.CONCRETE
elif terrain_type == "GRASS":
return Terrain.GRASS
elif terrain_type == "MUD":
return Terrain.MUD
2021-03-12 11:49:19 +01:00
class Tile:
def __init__(self, position, terrain_type=None, mine=None):
2021-03-12 11:49:19 +01:00
self.position = position
self.terrain_type = terrain_type
self.cost = assume_cost(terrain_type)
2021-03-12 21:24:04 +01:00
# mine is an instance of Mine class
self.mine = mine