forked from gabriellerosa/rede2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.py
122 lines (88 loc) · 3.35 KB
/
game.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
import unicodedata
dictionary = open('./database/hard.txt', 'r', encoding='utf-8').readlines()
dictionary = [word.strip().upper() for word in dictionary]
for word in dictionary:
if (word != unicodedata.normalize('NFKD', word).encode('ASCII', 'ignore').decode()):
word = unicodedata.normalize('NFKD', word).encode(
'ASCII', 'ignore').decode()
dictionary.append(word)
class Game:
def __init__(self):
self.attempts = 0 # Número de tentativas
self.secret_word = "" # Palavra a ser adivinhada
self.board = [] # Lista de palavras tentadas
self.difficulty = ""
self.nickname = ""
def guess(self, guessed_word):
validation = self.validate_word(guessed_word)
if (not validation['ok']):
return {
'game_over': False,
'message': validation['message']
}
if (guessed_word in self.board):
return {
'game_over': False,
'message': 'Você já tentou essa palavra!'
}
# É uma tentativa válida. Adiciona a palavra à lista de tentativas
self.board.append(guessed_word)
secret_word = self.get_word_to_be_compared()
if (self.difficulty == 'Médio'):
guessed_word = unicodedata.normalize(
'NFKD', guessed_word).encode('ASCII', 'ignore').decode()
if (guessed_word == secret_word):
return {
'game_over': True,
'winner': True,
'message': 'Parabéns! Você ganhou!'
}
else:
self.attempts += 1
if (self.attempts >= 6):
return {
'game_over': True,
'winner': False,
'message': 'Que pena! Suas tentativas se esgotaram',
}
return {
'game_over': False,
'message': 'Palavra incorreta :( Tente novamente!'
}
def show(self):
return self.board
def set_difficulty(self, difficulty):
self.difficulty = difficulty
def set_secret_word(self, normal_level_word, hard_level_word):
if self.difficulty == 'Médio':
self.secret_word = normal_level_word
else:
self.secret_word = hard_level_word
# A palavra a ser comparada depende do nivel de dificuldade.
# Se for difícil, os acentos são considerados.
def get_word_to_be_compared(self):
if (self.difficulty == 'Médio'):
# Remove acentos e outros caracteres especiais
return unicodedata.normalize('NFKD', self.secret_word).encode('ASCII', 'ignore').decode()
return self.secret_word
def validate_word(self, word):
if (len(word) != 5):
return {
'ok': False,
'message': 'A palavra deve conter 5 letras'
}
if (not word.isalpha()):
return {
'ok': False,
'message': 'A palavra deve conter apenas letras'
}
if (word.upper() not in dictionary):
return {
'ok': False,
'message': 'A palavra não está no dicionário'
}
return {
'ok': True
}
def set_nickname(self, nickname):
self.nickname = nickname