forked from humbhenri/pyOthello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathothello.py
executable file
·76 lines (64 loc) · 2.14 KB
/
othello.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
"""
othello.py Humberto Henrique Campos Pinheiro
Game initialization and main loop
"""
import pygame
import ui
import player
import board
from config import BLACK, WHITE
class Othello:
"""
Game main class.
"""
def __init__( self ):
""" Show options screen and start game modules"""
# start
self.gui = ui.Gui()
self.board = board.Board()
self.get_options()
def get_options( self ):
# set up players
player1, player2, level = self.gui.show_options()
if player1 == "human":
self.now_playing = player.Human ( self.gui, BLACK )
else:
self.now_playing = player.Computer ( BLACK, level+3 )
if player2 == "human":
self.other_player = player.Human ( self.gui, WHITE )
else:
self.other_player = player.Computer ( WHITE, level+3 )
self.gui.show_game()
self.gui.update(self.board.board, 2, 2)
def run ( self ):
clock = pygame.time.Clock()
while True:
clock.tick( 60 )
if self.board.game_ended():
whites, blacks, empty = self.board.count_stones()
if whites > blacks:
winner = WHITE
elif blacks > whites:
winner = BLACK
else:
winner = None
break
self.now_playing.get_current_board ( self.board )
if self.board.get_valid_moves( self.now_playing.color ) != []:
score, self.board = self.now_playing.get_move()
whites, blacks, empty = self.board.count_stones()
self.gui.update( self.board.board, blacks, whites)
self.now_playing, self.other_player = self.other_player, self.now_playing
self.gui.show_winner( winner )
pygame.time.wait( 1000 )
self.restart()
def restart( self ):
self.board = board.Board()
self.get_options()
self.run()
def main():
game = Othello()
game.run()
if __name__ == '__main__':
main()