Created
January 16, 2017 14:24
-
-
Save aberke/0b0cdec387d99f589312821bebf12df7 to your computer and use it in GitHub Desktop.
Simple implementation of a simple classic: Tic Tac Toe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Tic-Tac-Toe | |
----------- | |
Play from command line: | |
$ python main.py | |
""" | |
QUIT = "q" | |
RESTART = "restart" | |
QUIT_RESTART_PROMPT = "You can quit: '{}' or restart: '{}'".format(QUIT, RESTART) | |
class GameException(Exception): | |
pass | |
class Game(object): | |
""" Tic Tac Toe game with grid implemented as a matrix of composed dictionaries. | |
Each cell of the dictionary contains | |
a Token, indexed as grid[row][column] | |
(where rows and columns are 1-indexed rather than 0-indexed) | |
ie, grid = {1:{1: Token, 2:Token, 3:Token}, ...} | |
where each token is either "X" or "O" | |
""" | |
X = "X" | |
O = "O" | |
grid_size = 3 | |
indices = [i for i in range(1, grid_size + 1)] | |
def __init__(self): | |
self.grid = {row: {} for row in self.indices} | |
self.winner = None | |
self.next_token = self.X | |
def __repr__(self): | |
""" Represents grid as 3x3 array surrounded by newlines. | |
Empty cells are indicated with a dash: '-' | |
""" | |
row_strings = [] | |
for r in reversed(self.indices): | |
r_tokens = [self.get_token(r, c) for c in self.indices] | |
r_string = "".join([t if t is not None else "-" for t in r_tokens]) | |
row_strings.append(r_string) | |
return "\n{}\n".format("\n".join(row_strings)) | |
def handle_token(self, column): | |
""" Returns the (row, column) index of the newly added token. """ | |
if self.winner: | |
raise GameException("Game already has winner: " + str(self.winner)) | |
try: | |
column = int(column) | |
except TypeError: | |
raise GameException("Unrecognized column") | |
if column not in self.indices: | |
raise GameException("Unrecognized column") | |
cell = self.add_token(self.next_token, column) | |
self.next_token = self.O if self.next_token == self.X else self.X | |
self.winner = self.get_winner() | |
return cell | |
def add_token(self, token, column): | |
# Put the token in the lowest available row for given column | |
for row in self.indices: | |
if self.get_token(row, column) is None: | |
self.grid[row][column] = token | |
return (row, column) | |
raise GameException("Column filled") | |
def get_token(self, row, column): | |
if (row in self.grid) and column in self.grid[row]: | |
return self.grid[row][column] | |
def get_winner(self): | |
""" Returns winner token if there is a winner, | |
otherwise None. | |
Checks rows, columns, diagonals | |
""" | |
# Check for horizontal wins | |
for r in self.indices: | |
line = [self.get_token(r, c) for c in self.indices] | |
if line[0] and all(line[0] == i for i in line): | |
return line[0] | |
# Check for vertical wins | |
for c in self.indices: | |
line = [self.get_token(r, c) for r in self.indices] | |
if line[0] and all(line[0] == i for i in line): | |
return line[0] | |
# Check for diagonal wins | |
line = [self.get_token(i, i) for i in self.indices] | |
if line[0] and all(line[0] == i for i in line): | |
return line[0] | |
line = [self.get_token(i, self.grid_size - i) for i in self.indices] | |
if line[0] and all(line[0] == i for i in line): | |
return line[0] | |
def prompt_next_token(game): | |
print game | |
print "Ready for token: {}".format(game.next_token) | |
print "Enter column ({})".format("/".join([str(i) for i in game.indices])) | |
def prompt_quit_or_restart(): | |
print QUIT_RESTART_PROMPT | |
def play(): | |
""" Main play loop for game """ | |
game = Game() | |
print "New game of tic-tac-toe is ready to be played!" | |
print QUIT_RESTART_PROMPT | |
prompt_next_token(game) | |
while True: | |
user_input = raw_input() | |
if user_input == QUIT: | |
print "quitting..." | |
break | |
elif user_input == RESTART: | |
print "restarting game..." | |
game = Game() | |
prompt_next_token(game) | |
elif user_input in ["h", "help"]: | |
print QUIT_RESTART_PROMPT | |
elif user_input.isdigit(): | |
try: | |
game.handle_token(user_input) | |
except GameException as error: | |
print error | |
continue | |
winner = game.get_winner() | |
if winner: | |
print game | |
print str(winner) + " is the winner!" | |
print QUIT_RESTART_PROMPT | |
else: | |
prompt_next_token(game) | |
if __name__ == "__main__": | |
play() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment