-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot_AI.py
883 lines (698 loc) · 36.8 KB
/
bot_AI.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
from __future__ import annotations
from trie import TrieNode, Trie
from tile import Tile
from word import Word
from numpy import nditer
from string import ascii_uppercase
from collections import defaultdict
import copy
import random
import time
class BotAI:
@staticmethod
def ai_first_move_easy(loaded_dictionary: dict, rack: list):
start = time.perf_counter()
found_words = []
words_4_score = {}
# Choose if we are going to put oloaded_dictionaryur word vertically or in horizontally
# 0 - horizontally; 1 - vertically
hor_or_vert = random.randint(0, 1)
# Let's change the order
random.shuffle(rack)
for letter in rack:
if len(found_words) > 10:
break
dictionary_np = loaded_dictionary.get(letter)
for word in nditer(dictionary_np):
word = str(word)
word_chars = list(word)
moving_rack = copy.deepcopy(rack)
lack_of_letter = False
for char in word_chars:
if char not in moving_rack:
lack_of_letter = True
break
else:
moving_rack.remove(char)
if lack_of_letter is False:
found_words.append(word)
else:
continue
choose_word = random.randint(0, len(found_words) - 1)
choose_word = found_words[choose_word]
length_chosen = len(choose_word)
start_of_word = 7 - random.randint(0, length_chosen - 1)
coords = []
# means horizontally
if hor_or_vert == 0:
# adding coords of next letters
for i in range(0, length_chosen):
coords.append([7, start_of_word + i])
words_4_score.update({choose_word: coords})
else:
# adding coords of next letters
for i in range(0, length_chosen):
coords.append([start_of_word + i, 7])
words_4_score.update({choose_word: coords})
# print(words_4_score)
end = time.perf_counter()
print(end - start)
for letter in choose_word:
rack.remove(letter)
return True, words_4_score, rack
@staticmethod
def ai_first_move_hard(loaded_dictionary: dict, rack: list):
start = time.perf_counter()
found_words = set()
words_4_score = {}
# Choose if we are going to put oloaded_dictionaryur word vertically or in horizontally
# 0 - horizontally; 1 - vertically
hor_or_vert = random.randint(0, 1)
# Let's change the order
random.shuffle(rack)
for letter in rack:
#if len(found_words) > 10:
# break
dictionary_np = loaded_dictionary.get(letter)
# print(letter, dictionary_np)
for word in nditer(dictionary_np):
word = str(word)
word_chars = list(word)
moving_rack = copy.deepcopy(rack)
lack_of_letter = False
for char in word_chars:
if char not in moving_rack:
lack_of_letter = True
break
else:
moving_rack.remove(char)
if lack_of_letter is False:
found_words.add(word)
else:
continue
print(found_words)
choose_word = BotAI.find_best_word(found_words)
length_chosen = len(choose_word)
start_of_word = 7 - random.randint(0, length_chosen - 1)
coords = []
# means horizontally
if hor_or_vert == 0:
# adding coords of next letters
for i in range(0, length_chosen):
coords.append([7, start_of_word + i])
words_4_score.update({choose_word: coords})
else:
# adding coords of next letters
for i in range(0, length_chosen):
coords.append([start_of_word + i, 7])
words_4_score.update({choose_word: coords})
# print(words_4_score)
end = time.perf_counter()
print(end - start)
for letter in choose_word:
rack.remove(letter)
return True, words_4_score, rack
@staticmethod
def find_best_word(found_words: set) -> list:
word_with_points = []
for word in found_words:
points = 0
word_chars = list(word)
for char in word_chars:
points += Tile.values_of_letters.get(char)
if word_with_points == []:
word_with_points.clear()
word_with_points.append(word)
word_with_points.append(points)
elif points > word_with_points[1]:
word_with_points.clear()
word_with_points.append(word)
word_with_points.append(points)
else:
continue
#print(word_with_points[1])
return word_with_points[0]
@staticmethod
def get_anchors(board: list_of_lists) -> list_of_lists:
""" Used to find tiles on the board which potentially may help us
to form a new word with our tiles on the rack """
# anchors = [[1,2],[4,5]...]
anchors = []
for i in range(len(board)):
for j in range(len(board)):
if (board[i][j] != "-"):
if (i + 1 < 15 and board[i + 1][j] == '-'):
anchors.append([i + 1, j])
if (i - 1 > 0 and board[i - 1][j] == '-'):
anchors.append([i - 1, j])
if (j + 1 < 15 and board[i][j + 1]) == "-":
anchors.append([i, j + 1])
if (j - 1 > 0 and board[i][j - 1] == '-'):
anchors.append([i, j - 1])
return anchors
# return: [[set(), set(), {'A', 'X', ...}, ...]]
@staticmethod
def get_cross_checks(t: Trie, board: list_of_lists, used_words) -> list_of_lists:
"""Possible letters for crossed words up&down"""
def get_between_cross_checks(t: Trie, board: list_of_lists, used_words, row: int, column: int):
"""Need to get cross checks in the same dimension; case: 'M','E','-','I','C','O'; assuming that ICO as a word
exists, the only letter which would be possible to place between 'E' and 'I' is 'X'"""
pass
cross_checks = [[set() for row in range(len(board))] for col in range(len(board))]
for i in range(len(board)):
for j in range(len(board)):
# Purpose of this var: To distinguish situation if allowed_letters are set() because we didn't find letter downwards or it is impossible to create word downwards
found_downards = False
# check downwards e.g. [X]BUS perpendicular
if (i + 1 < 15 and board[i][j] == "-" and board[i + 1][j] != "-"):
found_downards = True
allowed_letters = set()
coord_tile = i + 1
word = ""
while (coord_tile < 15 and board[coord_tile][j] != "-"):
word += board[coord_tile][j]
coord_tile += 1
if len(word) > 0:
for letter in set(ascii_uppercase):
potential_word = letter + word
if t.get_word(potential_word)[0] != "" and potential_word not in used_words:
allowed_letters.add(letter)
else:
pass
# IF allowed_letters is empty, means it is impossible to create word downwards
if allowed_letters == set():
cross_checks[i][j].add("!")
else:
cross_checks[i][j] = allowed_letters
# check upwards e.g. BUS[X] perpendicular
if (i - 1 > - 1 and board[i][j] == "-" and board[i - 1][j] != "-" and "!" not in cross_checks[i][j]):
allowed_letters = set()
coord_tile = i - 1
word = ""
while (coord_tile > -1 and board[coord_tile][j] != "-"):
word += board[coord_tile][j]
coord_tile -= 1
if len(word) > 0:
# we need to reverse variable word as we are cheking upwards
word = "".join(word[::-1])
for letter in set(ascii_uppercase):
# potential_word = letter + word
potential_word = word + letter
if t.get_word(potential_word)[0] != "" and potential_word not in used_words:
allowed_letters.add(letter)
else:
pass
if "!" in cross_checks[i][j]:
cross_checks[i][j] = {"!"}
else:
if found_downards is True:
# Intersection because in previous case we were checking downwards! the same coord; Now we are checking upwards
cross_checks[i][j] = cross_checks[i][j] & allowed_letters
if cross_checks[i][j] == set():
cross_checks[i][j].add("!")
elif found_downards is False:
if allowed_letters == set():
cross_checks[i][j].add("!")
else:
cross_checks[i][j] = allowed_letters
# Check Cross-like in the same row/i : 'M','E','-','I','C','O' (assuming that ICO as a word exists...)
for i in range(len(board)):
for j in range(len(board)):
if cross_checks[i][j] == {"!"}:
continue
if j-1 > -1 and board[i][j - 1] != "-" and j+1 < 15 and board[i][j + 1] != "-":
allowed_letters = set()
row = i
col = j
left_word_part = ""
right_word_part = ""
while col - 1> -1 and board[row][col - 1] != "-":
left_word_part += board[row][col - 1]
col -= 1
col = i
while col + 1 < 15 and board[row][col + 1] != "-":
right_word_part += board[row][col + 1]
col += 1
for letter in set(ascii_uppercase):
potential_word = f"{left_word_part}{letter}{right_word_part}"
if t.get_word(potential_word)[0] != "" and potential_word not in used_words:
allowed_letters.add(letter)
if allowed_letters == set():
cross_checks[i][j] == {'!'}
# Case cross_checks[i][j] != {'!'} was checked before
elif cross_checks[i][j] != set():
cross_checks[i][j] = cross_checks[i][j] & allowed_letters
if cross_checks[i][j] == set():
cross_checks[i][j] = {"!"}
else:
cross_checks[i][j] = allowed_letters
return cross_checks
@staticmethod
def get_count_empty_left(board: list_of_lists, row: int, column: int) -> int:
"""Checking backwards how many tiles we are able to put before the anchor of an another tile on the leftside
e.g. ---X so the result will be 3"""
if board[row][column-1] != "-":
return 0
# Case where there can't be empty fields on the left to fill
if (column == 0):
return 0
# (place + 1) because range is [0, x)
for place in range(0, column + 1):
if (board[row][column - place - 1] != "-"):
if (place == 1 and column - place - 2 > 0):
return 0
return place - 1
return place
@staticmethod
def left_part(partial_word: str, node: TrieNode, limit: int, anchor_square: list, board: list_of_lists, rack,
used_words: set, cross_checks: list(list(set())), potential_words: list):
# The purpose of this IF is to add the letter preceeding an anchor
if limit == 0 and board[anchor_square[0]][anchor_square[1]-1] != "-":
letter_preceeding_anchor = board[anchor_square[0]][anchor_square[1] - 1]
coords_of_preceeding = (anchor_square[0], anchor_square[1] - 1)
if board[coords_of_preceeding[0]][coords_of_preceeding[1] - 1] == "-":
BotAI.extend_right_part(board[anchor_square[0]][anchor_square[1] - 1],
node.children.get(board[anchor_square[0]][anchor_square[1] - 1]),
anchor_square[0], anchor_square[1],
board, rack, used_words, cross_checks, potential_words)
else:
# Getting the word on the left from the anchor
left_word = ''
row = coords_of_preceeding[0]
column = coords_of_preceeding[1]
# i guess 'column > -1' is not necessary
while column > - 1 and board[row][column] != '-':
left_word += board[row][column]
column -= 1
# We need to reverse that word as we were backtracking the row
left_word = left_word[::-1]
# Set actual node in trie
for char in left_word:
node = node.children[char]
BotAI.extend_right_part(left_word, node, anchor_square[0], anchor_square[1], board, rack, used_words,
cross_checks, potential_words)
elif limit >= 0:
BotAI.extend_right_part(partial_word, node, anchor_square[0], anchor_square[1], board, rack, used_words,
cross_checks, potential_words)
if limit > 0:
for letter in set(ascii_uppercase):
if node.children.get(letter) is not None:
if letter in rack:
#node = node.children[letter]
rack.remove(letter)
BotAI.left_part(partial_word + letter, node, limit - 1, anchor_square, board, rack,
used_words, cross_checks, potential_words)
@staticmethod
def extend_right_part(partial_word: str, node: TrieNode, row: int, column: int, board: list_of_lists, rack: list,
used_words: set, cross_checks: list_of_lists, potential_words: list):
def get_coords_helper(word: str, row: int, column: int, cross_checks: list_of_lists,
board: list_of_lists) -> tuple_of_tuples: # Will be changed into tuple
"""The MAIN purpose of this function is to get coords of possible crosses as well as
get COORDS of put letters (one word)"""
coords = []
cross_words = []
#put_tiles = ""
for i in range(0, len(word)):
column -= 1
coords.append((row, column))
#if board[row][column] == "-":
# put_tiles += partial_word[i]
if (row - 1 > -1 and board[row - 1][column] != "-") or (row + 1 < 15 and board[row + 1][column] != "-"):
if cross_checks[row][column] != set() and board[row][column] == "-":
cross_words.append((row, column))
return coords[::-1], cross_words[::-1]
#return coords[::-1], cross_words[::-1], list(put_tiles)
if row < 15 and column < 15:
if board[row][column] == "-":
if node.is_end is True and partial_word not in used_words:
# coords of word and coords where we can find crossed words
coords, possible_crosses = get_coords_helper(partial_word, row, column, cross_checks, board)
potential_words.append((partial_word, coords, possible_crosses, node.points))
#coords, possible_crosses, used_tiles = get_coords_helper(partial_word, row, column, cross_checks, board)
#potential_words.append((partial_word, coords, possible_crosses, node.points, used_tiles))
for letter in set(ascii_uppercase):
if node.children.get(letter) is not None:
if letter in rack:
# check if it is possible to use this letter
if cross_checks[row][column] == set() or letter in cross_checks[row][column]:
rack.remove(letter)
BotAI.extend_right_part(partial_word + letter, node.children.get(letter), row, column+1, board, rack,
used_words, cross_checks, potential_words)
else:
if node.children.get(board[row][column]) is not None:
BotAI.extend_right_part(partial_word + board[row][column], node.children.get(board[row][column]), row, column+1, board,
rack, used_words, cross_checks, potential_words)
def find_cross_words(tuple_word: tuple, used_words: set, board: list_of_lists, transposed: bool) -> (int, set):
# passing everything transposed or make a logic about it && board.get_score should be implemented
# at returns
# gdzieś jeszcze trzeba literki z rack'ów usuwać i pzdr do przodu done
def swap_coords_if_trans(crossed_words: dict) -> dict:
for key, value in crossed_words.items():
# [10, 9] will be now [9, 10]
swap = list(map(lambda x: x[::-1], value))
crossed_words[key] = swap
return crossed_words
if transposed is True:
board = list(zip(*board))
if tuple_word[2] == []:
used_words.add(tuple_word[0])
# from board
print("Should be handled before entering this function... And i guess it is")
return {tuple_word[0]: tuple_word[1]}, used_words
else:
coords_cross_words = tuple_word[2]
cross_words_found = {}
new_words = []
coords_new_words = defaultdict(list)
for index, coord in enumerate(coords_cross_words):
letter_crossed = ""
for i in range(len(tuple_word[0])):
if tuple_word[1][i] == coord:
letter_crossed = tuple_word[0][i]
break
# row_init - letter which has been put by AI
if transposed is True:
coord[0], coord[1] = coord[1], coord[0]
row_init = coord[0]
row = coord[0]
column = coord[1]
if row - 1 > -1 and row + 1 < 15 and board[row + 1][column] != "-" and board[row - 1][column] != "-":
# Firstly we have to go upwards to check where is the first letter of word
while row - 1 > -1 and board[row - 1][column] != "-":
row -= 1
word = ""
# while (row + 1 < 15 and board[row + 1][column] != "-"):
while (row + 1 < 15 and board[row][column] != "-") or row == row_init:
# Valid situation when we cross letter put by us (This letter is not init on board yet)
if row == row_init:
word += letter_crossed
coords_new_words[index].append([row, column])
row += 1
else:
word += board[row][column]
coords_new_words[index].append([row, column])
row += 1
if word in used_words or word in cross_words_found or word == tuple_word[0]:
return {}
else:
cross_words_found[word] = coords_new_words[index]
# Taking into consideration letter added at the end of the word
elif row - 1 > -1 and board[row - 1][column] != "-":
while row - 1 > -1 and board[row - 1][column] != "-":
row -= 1
word = ""
# while row + 1 < 15 and board[row + 1][column] != "-": #UPDATE#!
while row < 15 and board[row][column] != "-":
word += board[row][column]
coords_new_words[index].append([row, column])
row += 1
# Situation when our word will have 2 letters only, including added one | due to the UPDATE#! it may be unnecessary
if len(word) == 0:
word += board[row][column]
coords_new_words[index].append([row, column])
word += letter_crossed
coords_new_words[index].append([row_init, column])
if word in used_words or word in cross_words_found or word == tuple_word[0]:
return {}
else:
cross_words_found[word] = coords_new_words[index]
# Taking into consideration letter added at the beginning of the word
elif row + 1 < 15 and board[row + 1][column] != "-":
word = letter_crossed
coords_new_words[index].append([row_init, column])
while row + 1 < 15 and board[row + 1][column] != "-":
row += 1
word += board[row][column]
coords_new_words[index].append([row, column])
if word in used_words or word in cross_words_found or word == tuple_word[0]:
return {}
else:
cross_words_found[word] = coords_new_words[index]
if transposed is True:
cross_words_found = swap_coords_if_trans(cross_words_found)
board = list(map(lambda y: list(y), list(zip(*board))))
return cross_words_found
@staticmethod
def make_hard_move(t: Trie, rack: list, board: list_of_lists, checked_words: dict) -> (bool, dict, list):
used_words = set(checked_words)
#used_words = {"ZEBU", "BACKUP", "PERCHED", "EAX", "EXIST", "HOTDOG", "TOGAE", "MINKE", "EAGLES", "MINIM"}
matrix = copy.deepcopy(board)
anchors = BotAI.get_anchors(matrix)
cross_checks = BotAI.get_cross_checks(t, matrix, used_words)
potential_words = []
transposed = False
for square in anchors:
rack_pass = rack.copy()
BotAI.left_part("", t.root, BotAI.get_count_empty_left(matrix, square[0], square[1]), square, matrix, rack_pass, used_words,
cross_checks, potential_words)
matrix = list(zip(*matrix))
anchors = BotAI.get_anchors(matrix)
cross_checks = BotAI.get_cross_checks(t, matrix, used_words)
potential_words_transposed = []
transposed = True
for square in anchors:
rack_pass = rack.copy()
BotAI.left_part("", t.root, BotAI.get_count_empty_left(matrix, square[0], square[1]), square, matrix, rack_pass, used_words,
cross_checks, potential_words_transposed)
# back home; not transposed board/board
matrix = list(map(lambda x: list(x), list(zip(*matrix))))
transposed = False
# INIT those vars To omit __exception__ involved with lack of words in potential...
best_transposed = []
best = []
if len(potential_words) == 0 and len(potential_words_transposed) == 0:
return False, {}, rack
elif len(potential_words) == 0:
best_transposed = sorted(potential_words_transposed, key=lambda x: (len(x[2]), x[3]), reverse=True)[0]
best = [best_transposed[0], list(map(lambda y: list(y)[::-1], best_transposed[1])),
list(map(lambda y: list(y)[::-1], best_transposed[2])), best_transposed[3]]
transposed = True
elif len(potential_words_transposed) == 0:
best = sorted(potential_words, key=lambda x: (len(x[2]), x[3]), reverse=True)[0]
best_transposed = best
else:
best = sorted(potential_words, key=lambda x: (len(x[2]), x[3]), reverse=True)[0]
best_transposed = sorted(potential_words_transposed, key=lambda x: (len(x[2]), x[3]), reverse=True)[0]
if best_transposed[3] > best[3]:
best = [best_transposed[0], list(map(lambda y: list(y)[::-1], best_transposed[1])),
list(map(lambda y: list(y)[::-1], best_transposed[2])), best_transposed[3]]
transposed = True
print(potential_words)
print(potential_words_transposed)
print(best)
print(best_transposed)
if best[2] != []:
crossed = BotAI.find_cross_words(tuple(best), used_words, matrix, transposed)
else:
# "!" means we do not count crossed words
crossed = {"!"}
# Rarely; it is the case when we didn't check the word which is going to be init on the board by AI
if crossed == {} and transposed is True:
print("AI DID WRONG MOVE!! :))))")
matrix = list(map(lambda y: list(y), list(zip(*matrix))))
transposed = False
return False, {}, rack
elif crossed == {}:
print("ai did wrong move!! :DD")
return False, {}, rack
print(rack)
for index, coords in enumerate(best[1]):
if board[coords[0]][coords[1]] == "-":
rack.remove(best[0][index])
# format var best for method get_score from board module
if crossed != {"!"}:
best = {best[0]: best[1]}
best.update(crossed)
else:
best = {best[0]: best[1]}
# Very Rarely; If AI make wrong move involved with correctness of word
# I think it is actually impossible because actually we are "deleting" words in the TRIE
for word in best:
if t.get_word(word)[0] == "":
print("AI used word which doesn't exist :D")
return False, {}, rack
return True, best, rack
@staticmethod
def make_medium_move(t: Trie, rack: list, board: list_of_lists, checked_words: dict) -> (bool, dict, list):
used_words = set(checked_words)
# used_words = {"ZEBU", "BACKUP", "PERCHED", "EAX", "EXIST", "HOTDOG", "TOGAE", "MINKE", "EAGLES", "MINIM"}
matrix = copy.deepcopy(board)
anchors = BotAI.get_anchors(matrix)
cross_checks = BotAI.get_cross_checks(t, matrix, used_words)
potential_words = []
transposed = False
for square in anchors:
rack_pass = rack.copy()
BotAI.left_part("", t.root, BotAI.get_count_empty_left(matrix, square[0], square[1]), square, matrix,
rack_pass, used_words,
cross_checks, potential_words)
matrix = list(zip(*matrix))
anchors = BotAI.get_anchors(matrix)
cross_checks = BotAI.get_cross_checks(t, matrix, used_words)
potential_words_transposed = []
transposed = True
for square in anchors:
rack_pass = rack.copy()
BotAI.left_part("", t.root, BotAI.get_count_empty_left(matrix, square[0], square[1]), square, matrix,
rack_pass, used_words,
cross_checks, potential_words_transposed)
# back home; not transposed board/matrix
matrix = list(map(lambda x: list(x), list(zip(*matrix))))
transposed = False
med_transposed = []
med = []
if len(potential_words) == 0 and len(potential_words_transposed) == 0:
return False, {}, rack
elif len(potential_words) == 0:
med_transposed = sorted(potential_words_transposed, key=lambda x: (x[3], -len(x[2])), reverse=True)[random.randint(0, len(potential_words_transposed)-1)]
med = [med_transposed[0], list(map(lambda y: list(y)[::-1], med_transposed[1])),
list(map(lambda y: list(y)[::-1], med_transposed[2])), med_transposed[3]]
transposed = True
elif len(potential_words_transposed) == 0:
med = sorted(potential_words, key=lambda x: (x[3], -len(x[2])), reverse=True)[random.randint(0, len(potential_words)-1)]
# Temporary solution...
med_transposed = med
else:
med = sorted(potential_words, key=lambda x: (x[3], -len(x[2])), reverse=True)[random.randint(0, len(potential_words)-1)]
med_transposed = sorted(potential_words_transposed, key=lambda x: (len(x[2]), x[3]), reverse=True)[random.randint(0, len(potential_words_transposed)-1)]
# med = sorted(potential_words, key=lambda x: (x[3], -len(x[2])), reverse=True)[0]
# med_transposed = sorted(potential_words_transposed, key=lambda x: (x[3], -len(x[2])), reverse=True)[0]
swap = random.randint(0,1)
if swap == 1:
med = [med_transposed[0], list(map(lambda y: list(y)[::-1], med_transposed[1])),
list(map(lambda y: list(y)[::-1], med_transposed[2])), med_transposed[3]]
transposed = True
if med[2] != []:
crossed = BotAI.find_cross_words(tuple(med), used_words, matrix, transposed)
else:
# "!" means we do not count crossed words | lack of them
crossed = {"!"}
# Rarely; it is the case when we didn't check the word which is going to be init on the board by AI
if crossed == {} and transposed is True:
print("AI DID WRONG MOVE!! :))))")
matrix = list(map(lambda y: list(y), list(zip(*matrix))))
transposed = False
return False, {}, rack
elif crossed == {}:
print("ai did wrong move!! :DD")
return False, {}, rack
print(rack)
for index, coords in enumerate(med[1]):
if board[coords[0]][coords[1]] == "-":
rack.remove(med[0][index])
# format var med for method get_score from board module
if crossed != {"!"}:
med = {med[0]: med[1]}
med.update(crossed)
else:
med = {med[0]: med[1]}
# Rarely; If AI make wrong move involved with correctness of word
for word in med:
if t.get_word(word)[0] == "":
print("AI used word which doesn't exist :D")
return False, {}, rack
print(med)
return True, med, rack
@staticmethod
def make_easy_move(t: Trie, rack: list, board: list_of_lists, checked_words: dict) -> (bool, dict, list):
used_words = set(checked_words)
# used_words = {"ZEBU", "BACKUP", "PERCHED", "EAX", "EXIST", "HOTDOG", "TOGAE", "MINKE", "EAGLES", "MINIM"}
matrix = copy.deepcopy(board)
anchors = BotAI.get_anchors(matrix)
cross_checks = BotAI.get_cross_checks(t, matrix, used_words)
potential_words = []
transposed = False
for square in anchors:
rack_pass = rack.copy()
BotAI.left_part("", t.root, BotAI.get_count_empty_left(matrix, square[0], square[1]), square, matrix,
rack_pass, used_words,
cross_checks, potential_words)
matrix = list(zip(*matrix))
anchors = BotAI.get_anchors(matrix)
cross_checks = BotAI.get_cross_checks(t, matrix, used_words)
potential_words_transposed = []
transposed = True
for square in anchors:
rack_pass = rack.copy()
BotAI.left_part("", t.root, BotAI.get_count_empty_left(matrix, square[0], square[1]), square, matrix,
rack_pass, used_words,
cross_checks, potential_words_transposed)
# back home; not transposed board/matrix
matrix = list(map(lambda x: list(x), list(zip(*matrix))))
transposed = False
worst_transposed = []
worst = []
if len(potential_words) == 0 and len(potential_words_transposed) == 0:
return False, {}, rack
elif len(potential_words) == 0:
worst_transposed = sorted(potential_words_transposed, key=lambda x: (-x[3], -len(x[2])), reverse=True)[0]
worst = [worst_transposed[0], list(map(lambda y: list(y)[::-1], worst_transposed[1])),
list(map(lambda y: list(y)[::-1], worst_transposed[2])), worst_transposed[3]]
transposed = True
elif len(potential_words_transposed) == 0:
worst = sorted(potential_words, key=lambda x: (-x[3], -len(x[2])), reverse=True)[0]
# Temporary solution...
worst_transposed = worst
else:
worst = sorted(potential_words, key=lambda x: (-x[3], -len(x[2])), reverse=True)[0]
worst_transposed = sorted(potential_words_transposed, key=lambda x: (-x[3], -len(x[2])), reverse=True)[0]
# worst = sorted(potential_words, key=lambda x: (-x[3], -len(x[2])), reverse=True)[0]
# worst_transposed = sorted(potential_words_transposed, key=lambda x: (-x[3], -len(x[2])), reverse=True)[0]
if worst_transposed[3] < worst[3]:
worst = [worst_transposed[0], list(map(lambda y: list(y)[::-1], worst_transposed[1])),
list(map(lambda y: list(y)[::-1], worst_transposed[2])), worst_transposed[3]]
transposed = True
if worst[2] != []:
crossed = BotAI.find_cross_words(tuple(worst), used_words, matrix, transposed)
else:
# "!" means we do not count crossed words | lack of them
crossed = {"!"}
# Rarely; it is the case when we didn't check the word which is going to be init on the board by AI
if crossed == {} and transposed is True:
print("AI DID WRONG MOVE!! :))))")
matrix = list(map(lambda y: list(y), list(zip(*matrix))))
transposed = False
return False, {}, rack
elif crossed == {}:
print("ai did wrong move!! :DD")
return False, {}, rack
print(rack)
for index, coords in enumerate(worst[1]):
if board[coords[0]][coords[1]] == "-":
rack.remove(worst[0][index])
# format var worst for method get_score from board module
if crossed != {"!"}:
worst = {worst[0]: worst[1]}
worst.update(crossed)
else:
worst = {worst[0]: worst[1]}
# Rarely; If AI make wrong move involved with correctness of word
for word in worst:
if t.get_word(word)[0] == "":
print("AI used word which doesn't exist :D")
return False, {}, rack
print(worst)
return True, worst, rack
if __name__ == "__main__":
t = Trie()
with open("dict_for_game\\Collins.txt", mode='r') as f:
for word in f:
word = word.strip('\n')
t.insert(word)
board = [['-', '-', '-', '-', 'Z', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-'],
['-', '-', '-', '-', 'E', '-', '-', '-', '-', '-', 'M', 'I', 'N', 'I', 'M'],
['-', '-', '-', '-', 'B', '-', '-', '-', '-', '-', 'I', '-', '-', '-', '-'],
['B', 'A', 'C', 'K', 'U', 'P', '-', 'E', 'V', 'E', 'N', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', 'E', 'A', 'X', '-', '-', 'K', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', 'R', '-', 'I', '-', '-', 'E', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', 'C', '-', 'S', '-', 'T', '-', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', 'H', 'O', 'T', 'D', 'O', 'G', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', 'E', '-', '-', '-', 'G', '-', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', 'D', '-', '-', '-', 'A', '-', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', '-', '-', '-', '-', 'E', 'A', 'G', 'L', 'E', 'S'],
['-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-'],
['-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-', '-']]
rack = ["A", "O", "B", "P", "K", "U", "M", "Z"]
print(BotAI.make_best_move(t, rack, board, {}))