-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.py
194 lines (151 loc) · 6.05 KB
/
tools.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
from random import choice
from rich.console import Console
from rich.table import Table
from rich.markdown import Markdown
from nltk.corpus import stopwords
from nltk import download
from glob import glob
download('stopwords', quiet=True)
letters = 'abcdefghijklmnñopqrstuvwxyz'.upper()
sw = stopwords.words('spanish')
def filter_word(word, min_len=4, max_len=7):
invalid_chars = set('áéíóú“”1234567890«¡!"·$%&/()=?¿[]{}`+Ǩ-_.:,;<>äëïöü')
return len(word) >= min_len and len(word) <= max_len and word not in sw and not any(
char in invalid_chars for char in word
)
def get_words(min_len, max_len):
import sys
from os.path import join, dirname
if getattr(sys, 'frozen', False):
folder = join(dirname(sys.executable), 'texts')
else:
folder = join(dirname(__file__), 'texts')
text_files = glob('**/*.txt', recursive=True, root_dir=folder)
words = set()
for f in text_files:
with open(join(folder, f), 'r', encoding='utf-8') as file:
content = file.read().lower()
words.update(filter(lambda x: filter_word(x, min_len, max_len), content.split()))
return list(words)
def get_word(words):
result = choice(words).upper()
return result
def get_table(word):
return Table(*[f'Letra {i}' for i, _ in enumerate(word, 1)], show_header=False, show_lines=True)
def count_char(word, char):
count = 0
for c in word:
if c == char:
count += 1
return count
def check_word(word: str, guess: str):
result = []
remaining_chars = list(word)
for g, _w in zip(guess, word):
if g not in remaining_chars:
formatted_char = f'[red]{g}[/red]'
elif g == _w:
formatted_char = f'[green]{g}[/green]'
remaining_chars.remove(g)
else:
formatted_char = f'[yellow]{g}[/yellow]'
remaining_chars.remove(g)
formatted_char = f'[bold]{formatted_char}[/bold]'
result.append(formatted_char)
return result
def get_alpha(checked_result: str, prev_alpha: str):
import re
alpha = []
for char in 'abcdefghijklmnñopqrstuvwxyz':
pattern = re.compile(
r'(\[(?:[^(bold)])[a-z]+\]({})\[\/(?:[^(bold)])[a-z]+\])'.format(char),
flags=re.IGNORECASE,
)
test = ''.join(checked_result).lower()
match = pattern.search(test)
if prev_char := pattern.search(prev_alpha):
if match and match.group(1).lower() != prev_char.group(1).lower() and not 'green' in prev_char.group(
1
).lower():
alpha.append(match.group(1).replace(f']{char}[', f']{char.upper()}['))
else:
alpha.append(prev_char.group(1))
continue
if not match:
alpha.append(char.upper())
else:
alpha.append(match.group(1).replace(f']{char}[', f']{char.upper()}['))
return ' '.join(alpha[:14]) + '\n' + ' '.join(alpha[14:])
def get_guess(console, word, attempts):
while True:
guess = console.input('[purple]Introduzca una palabra:[/purple] \n').upper()
if len(guess) != len(word):
console.print(f'\nTu palabra debe tener {len(word)} caracteres.\n', style='yellow')
continue
if guess in attempts:
console.print('\nYa intentaste con esa palabra.\n', style='yellow')
continue
if any(char.isdigit() for char in guess):
console.print('\nTu respuesta no puede contener números.\n', style='yellow')
continue
return guess
def play_again(console):
while True:
answer = console.input('\nVolver a intentar? [S/N]: \n').upper()
if answer == 'S':
return True
elif answer == 'N':
return False
else:
console.print('Respuesta inválida. Por favor, ingresa S para "Sí" o N para "No".\n', style='yellow')
def play_wordle(game_name, min_len, max_len):
console = Console()
console.clear()
console.print(Markdown(f'# {game_name}'))
console.print('Cargando...', style='bold purple')
words = get_words(min_len, max_len)
try:
max_attempts = 6
while True:
word = get_word(words)
attempts = []
attempts_table = None
guess = None
alpha = ''
for attempt in range(max_attempts):
console.clear()
console.print(Markdown(f'# {game_name}'))
console.print('[red]CTRL+C para salir[/red]')
if attempts_table:
console.print(attempts_table)
if alpha:
console.print(alpha)
console.print(f'\n[bold]Intento {attempt + 1}/{max_attempts} [yellow]({len(word)} caracteres)[/yellow][/bold]\n')
guess = get_guess(console, word, attempts)
result = check_word(word, guess)
attempts.append(guess)
if not attempts_table:
attempts_table = get_table(word)
alpha = get_alpha(''.join(result), alpha)
attempts_table.add_row(*result)
if guess == word:
console.clear()
console.print(Markdown('# ' + game_name))
console.print(attempts_table)
console.print('\nCorrecto! Ganaste!\n', style='bold green')
if not play_again(console):
console.clear()
return
break
else:
console.clear()
console.print(Markdown('# ' + game_name))
console.print(attempts_table)
console.print('\nPerdiste.', style='bold red underline')
console.print(f'\nTu palabra era:', style='yellow')
console.print('\n' + word, style='bold purple')
if not play_again(console):
console.clear()
return
except KeyboardInterrupt:
console.clear()