Fixes of syntax errors; minor edits
out of minor - * made add_player_mark() also call the player instance to record mark into it's internal list * put the exception message into a separate variable for the sake of simpler representation
This commit is contained in:
parent
4e5388bd12
commit
e7f1733a8a
11
GameMap.py
11
GameMap.py
@ -3,10 +3,10 @@ class GameMap:
|
|||||||
def __init__(self, max_size_x = float('inf'), max_size_y = float('inf')):
|
def __init__(self, max_size_x = float('inf'), max_size_y = float('inf')):
|
||||||
self.max_size_x = max_size_x
|
self.max_size_x = max_size_x
|
||||||
self.max_size_y = max_size_y
|
self.max_size_y = max_size_y
|
||||||
data = {}
|
self.data = {}
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return data
|
return str(self.data)
|
||||||
|
|
||||||
|
|
||||||
def get_max_size_x(self):
|
def get_max_size_x(self):
|
||||||
@ -18,12 +18,15 @@ class GameMap:
|
|||||||
|
|
||||||
|
|
||||||
def add_player_mark(self, x, y, player):
|
def add_player_mark(self, x, y, player):
|
||||||
if x <= max_size_x or y <= max_size_y:
|
if x <= self.max_size_x and y <= self.max_size_y:
|
||||||
self.data[(x,y)] = player
|
self.data[(x,y)] = player
|
||||||
|
player.record_mark(x, y)
|
||||||
else:
|
else:
|
||||||
raise IndexError("Mark added beyond preset max values (max_x - " + self.max_size_x + ", max_y - " + self.max_size_y + ".")
|
errorMessage = "The mark" + str((x,y)) + " is beyond preset max values, max_x - " + str(self.max_size_x) + ", max_y - " + str(self.max_size_y)
|
||||||
|
raise IndexError(errorMessage)
|
||||||
|
|
||||||
|
|
||||||
def clear_map(self):
|
def clear_map(self):
|
||||||
self.data = {}
|
self.data = {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user