added is_empty method, cleaned Game repr

master
Tibor Bizjak 2019-09-03 20:50:52 +02:00
parent 8868e919b5
commit fcd2f7d62a
1 changed files with 9 additions and 4 deletions

View File

@ -39,11 +39,12 @@ class Game:
for rank in ranks: for rank in ranks:
r += rank + " |" r += rank + " |"
for file in files: for file in files:
piece = self.board[file+rank] sq = file+rank
if piece.piece == None: r += " "
r += " " if self.is_empty(sq):
r += " "
else: else:
r += " " + repr(piece) r += repr(self.board[sq])
r += "\n" r += "\n"
r += " +" + "-"*16 + "\n" r += " +" + "-"*16 + "\n"
r += " "*4 + " ".join(list(files)) r += " "*4 + " ".join(list(files))
@ -61,6 +62,10 @@ class Game:
for sq in cross(files, "78"): for sq in cross(files, "78"):
self.board[sq].color = "black" self.board[sq].color = "black"
def is_empty(self, sq):
return self.board[sq].piece == None
def test(): def test():