-
Notifications
You must be signed in to change notification settings - Fork 8
/
ui.py
216 lines (182 loc) · 7.77 KB
/
ui.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
""" Othello game GUI
Humberto Henrique Campos Pinheiro
"""
import pygame
import sys
from pygame.locals import *
import time
from config import BLACK, WHITE, DEFAULT_LEVEL, HUMAN, COMPUTER
import os
import pygame_menu
import logging
logger = logging.getLogger('root')
class Gui:
def __init__(self):
""" Initializes graphics. """
pygame.init()
# colors
self.BLACK = (0, 0, 0)
self.BACKGROUND = (0, 0, 255)
self.WHITE = (255, 255, 255)
self.BLUE = (0, 0, 255)
self.YELLOW = (128, 128, 0)
# display
self.SCREEN_SIZE = (640, 480)
self.BOARD_POS = (100, 20)
self.BOARD = (120, 40)
self.BOARD_SIZE = 400
self.SQUARE_SIZE = 50
self.screen = pygame.display.set_mode(self.SCREEN_SIZE)
# messages
self.BLACK_LAB_POS = (5, self.SCREEN_SIZE[1] / 4)
self.WHITE_LAB_POS = (560, self.SCREEN_SIZE[1] / 4)
self.font = pygame.font.SysFont("Times New Roman", 22)
self.scoreFont = pygame.font.SysFont("Serif", 58)
# image files
self.board_img = pygame.image.load(os.path.join(
"res", "board.bmp")).convert()
self.black_img = pygame.image.load(os.path.join(
"res", "preta.bmp")).convert()
self.white_img = pygame.image.load(os.path.join(
"res", "branca.bmp")).convert()
self.tip_img = pygame.image.load(os.path.join("res",
"tip.bmp")).convert()
self.clear_img = pygame.image.load(os.path.join("res",
"nada.bmp")).convert()
def show_menu(self, start_cb):
# default game settings
self.level = DEFAULT_LEVEL
self.player1 = HUMAN
self.player2 = COMPUTER
self.menu = pygame_menu.Menu(300, 400, 'Othello',
theme=pygame_menu.themes.THEME_BLUE)
self.menu.add_button('Play', lambda: start_cb(self.player1, self.player2, self.level))
self.menu.add_selector('Difficulty: ', [['Medium', 2], ['Easy', 1], ('Hard', 3)],
onchange=self.set_difficulty)
self.menu.add_selector('First player', [[HUMAN, 1] ,[COMPUTER, 2]],
onchange=self.set_player_1)
self.menu.add_selector('Second player', [[COMPUTER, 2], [HUMAN, 1]],
onchange=self.set_player_2)
self.menu.mainloop(self.screen)
def set_player_1(self, value, player):
logger.debug('value:%s, player:%s', value, player)
self.player1 = [0, HUMAN, COMPUTER][player]
def set_player_2(self, value, player):
logger.debug('value:%s, player:%s', value, player)
self.player2 = [0, HUMAN, COMPUTER][player]
def reset_menu(self):
self.menu.disable()
self.menu.reset(1)
def set_difficulty(self, value, difficulty):
self.level = difficulty
def show_winner(self, player_color):
self.screen.fill(pygame.Color(0, 0, 0, 50))
font = pygame.font.SysFont("Courier New", 34)
if player_color == WHITE:
msg = font.render("White player wins", True, self.WHITE)
elif player_color == BLACK:
msg = font.render("Black player wins", True, self.WHITE)
else:
msg = font.render("Tie !", True, self.WHITE)
self.screen.blit(
msg, msg.get_rect(
centerx=self.screen.get_width() / 2, centery=120))
pygame.display.flip()
def show_game(self):
""" Game screen. """
self.reset_menu()
# draws initial screen
self.background = pygame.Surface(self.screen.get_size()).convert()
self.background.fill(self.BACKGROUND)
self.score_size = 50
self.score1 = pygame.Surface((self.score_size, self.score_size))
self.score2 = pygame.Surface((self.score_size, self.score_size))
self.screen.blit(self.background, (0, 0), self.background.get_rect())
self.screen.blit(self.board_img, self.BOARD_POS,
self.board_img.get_rect())
self.put_stone((3, 3), WHITE)
self.put_stone((4, 4), WHITE)
self.put_stone((3, 4), BLACK)
self.put_stone((4, 3), BLACK)
pygame.display.flip()
def put_stone(self, pos, color):
""" draws piece with given position and color """
if pos == None:
return
# flip orientation (because xy screen orientation)
pos = (pos[1], pos[0])
if color == BLACK:
img = self.black_img
elif color == WHITE:
img = self.white_img
else:
img = self.tip_img
x = pos[0] * self.SQUARE_SIZE + self.BOARD[0]
y = pos[1] * self.SQUARE_SIZE + self.BOARD[1]
self.screen.blit(img, (x, y), img.get_rect())
pygame.display.flip()
def clear_square(self, pos):
""" Puts in the given position a background image, to simulate that the
piece was removed.
"""
# flip orientation
pos = (pos[1], pos[0])
x = pos[0] * self.SQUARE_SIZE + self.BOARD[0]
y = pos[1] * self.SQUARE_SIZE + self.BOARD[1]
self.screen.blit(self.clear_img, (x, y), self.clear_img.get_rect())
pygame.display.flip()
def get_mouse_input(self):
""" Get place clicked by mouse
"""
while True:
for event in pygame.event.get():
if event.type == MOUSEBUTTONDOWN:
(mouse_x, mouse_y) = pygame.mouse.get_pos()
# click was out of board, ignores
if mouse_x > self.BOARD_SIZE + self.BOARD[0] or \
mouse_x < self.BOARD[0] or \
mouse_y > self.BOARD_SIZE + self.BOARD[1] or \
mouse_y < self.BOARD[1]:
continue
# find place
position = ((mouse_x - self.BOARD[0]) // self.SQUARE_SIZE), \
((mouse_y - self.BOARD[1]) // self.SQUARE_SIZE)
# flip orientation
position = (position[1], position[0])
return position
elif event.type == QUIT:
sys.exit(0)
time.sleep(.05)
def update(self, board, blacks, whites, current_player_color):
"""Updates screen
"""
for i in range(8):
for j in range(8):
if board[i][j] != 0:
self.put_stone((i, j), board[i][j])
blacks_str = '%02d ' % int(blacks)
whites_str = '%02d ' % int(whites)
self.showScore(blacks_str, whites_str, current_player_color)
pygame.display.flip()
def showScore(self, blackStr, whiteStr, current_player_color):
black_background = self.YELLOW if current_player_color == WHITE else self.BACKGROUND
white_background = self.YELLOW if current_player_color == BLACK else self.BACKGROUND
text = self.scoreFont.render(blackStr, True, self.BLACK,
black_background)
text2 = self.scoreFont.render(whiteStr, True, self.WHITE,
white_background)
self.screen.blit(text,
(self.BLACK_LAB_POS[0], self.BLACK_LAB_POS[1] + 40))
self.screen.blit(text2,
(self.WHITE_LAB_POS[0], self.WHITE_LAB_POS[1] + 40))
def wait_quit(self):
# wait user to close window
for event in pygame.event.get():
if event.type == QUIT:
sys.exit(0)
elif event.type == KEYDOWN:
break
def show_valid_moves(self, valid_moves):
logger.debug('valid movies: %s', valid_moves)
for move in valid_moves:
self.put_stone(move, 'tip')