-
Notifications
You must be signed in to change notification settings - Fork 16
/
libWizium.py
515 lines (386 loc) · 20.3 KB
/
libWizium.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
# ############################################################################
__license__ = \
"""This file is part of the Wizium distribution (https://github.com/jsgonsette/Wizium).
Copyright (c) 2019 Jean-Sebastien Gonsette.
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program.If not, see <http://www.gnu.org/licenses/>."""
__author__ = "Jean-Sebatien Gonsette"
__email__ = "jeansebastien.gonsette@gmail.com"
__version__ = "1.0"
# ############################################################################
import ctypes
import platform
def is_unix_platform():
return platform.system() in ('Linux', 'Darwin')
if is_unix_platform():
from ctypes import *
else:
from ctypes import c_int, WINFUNCTYPE, windll
from ctypes.wintypes import HWND, LPCSTR, UINT
# ############################################################################
WILDCARD = '*'
WILDCARD_CODE = 255
BLOCK = '#'
BLOCK_CODE = ord(BLOCK)
VOID = '-'
VOID_CODE = ord(VOID)
class Wizium:
"Wrapper around the libWizium library"
_init_done = False
# ============================================================================
class Version(ctypes.Structure):
"""Library version"""
# ============================================================================
_fields_ = [("major", ctypes.c_int),
("minor", ctypes.c_int),
("release", ctypes.c_int)]
def __str__ (self):
descr = "Version: {}.{}.{}".format (self.major, self.minor, self.release)
return descr
# ============================================================================
class Config(ctypes.Structure):
"""Description of the 'Segment' structure"""
# ============================================================================
_fields_ = [("alphabetSize", ctypes.c_int),
("maxWordLength", ctypes.c_int)]
# ============================================================================
class SolverConfig(ctypes.Structure):
"""Description of the 'Segment' structure"""
# ============================================================================
_fields_ = [("seed", ctypes.c_uint),
("maxBlackBoxes", ctypes.c_int),
("heuristicLevel", ctypes.c_int),
("blackMode", ctypes.c_int)]
# ============================================================================
class Status(ctypes.Structure):
"""Description of the 'Segment' structure"""
# ============================================================================
_fields_ = [("counter", ctypes.c_ulonglong),
("fillRate", ctypes.c_int)]
def __str__ (self):
string = "Counter: {}\nFill rate: {}%".format (self.counter, self.fillRate)
return string
# ============================================================================
def __init__ (self, dll_path, alphabet=None):
"""Constructor
param dll_path path to the libWizium dll/so file to use
param alphabet string containing all same-case characters of the alphabet"""
# ============================================================================
# Link to the lPPMM dll
if is_unix_platform():
self._dll = ctypes.CDLL(dll_path)
else:
self._dll = ctypes.WinDLL (dll_path)
# Create a wrapper for each dll/so function
self._api = {}
self._api_def = {}
self._api_def ["WIZ_Init"] = (ctypes.c_int, [ctypes.POINTER (Wizium.Version)])
self._api_def ["WIZ_CreateInstance"] = (ctypes.c_ulonglong, [ctypes.POINTER (Wizium.Config)])
self._api_def ["WIZ_DestroyInstance"] = (ctypes.c_int, [ctypes.c_ulonglong])
self._api_def ["DIC_Clear"] = (ctypes.c_int, [ctypes.c_ulonglong])
self._api_def ["DIC_AddEntries"] = (ctypes.c_int, [ctypes.c_ulonglong, ctypes.POINTER (ctypes.c_uint8), ctypes.c_int])
self._api_def ["DIC_FindEntry"] = (ctypes.c_bool, [ctypes.c_ulonglong, ctypes.POINTER (ctypes.c_uint8), ctypes.POINTER (ctypes.c_uint8), ctypes.POINTER (ctypes.c_uint8)])
self._api_def ["DIC_FindRandomEntry"] = (ctypes.c_bool, [ctypes.c_ulonglong, ctypes.POINTER (ctypes.c_uint8), ctypes.POINTER (ctypes.c_uint8)])
self._api_def ["DIC_GetNumWords"] = (ctypes.c_uint, [ctypes.c_ulonglong])
self._api_def ["GRID_SetSize"] = (ctypes.c_uint, [ctypes.c_ulonglong, ctypes.c_uint8, ctypes.c_uint8])
self._api_def ["GRID_SetBox"] = (ctypes.c_uint, [ctypes.c_ulonglong, ctypes.c_uint8, ctypes.c_uint8, ctypes.c_int])
self._api_def ["GRID_Write"] = (ctypes.c_uint, [ctypes.c_ulonglong, ctypes.c_uint8, ctypes.c_uint8, ctypes.POINTER (ctypes.c_uint8), ctypes.c_char, ctypes.c_bool])
self._api_def ["GRID_Read"] = (ctypes.c_uint, [ctypes.c_ulonglong, ctypes.POINTER (ctypes.c_uint8)])
self._api_def ["GRID_Erase"] = (ctypes.c_uint, [ctypes.c_ulonglong])
self._api_def ["SOLVER_Start"] = (ctypes.c_uint, [ctypes.c_ulonglong, ctypes.POINTER (Wizium.SolverConfig)])
self._api_def ["SOLVER_Step"] = (ctypes.c_uint, [ctypes.c_ulonglong, ctypes.c_int, ctypes.c_int, ctypes.POINTER (Wizium.Status)])
self._api_def ["SOLVER_Stop"] = (ctypes.c_uint, [ctypes.c_ulonglong])
for func_name in self._api_def:
return_type = self._api_def [func_name][0]
arg_types = self._api_def [func_name][1]
if is_unix_platform():
proto = ctypes.CFUNCTYPE (return_type, *arg_types)
else:
proto = ctypes.WINFUNCTYPE (return_type, *arg_types)
api = proto ((func_name, self._dll), None)
self._api [func_name] = (api, proto)
# Init library once and create one PPMM instance
if Wizium._init_done == False:
self.version = self._wiz_init ()
print ("lPPMM library v{}.{}.{} loaded".format (self.version.major, self.version.minor, self.version.release))
if str (self.version.major) + '.' + str (self.version.minor) != __version__:
print ("[WARNING] Wrapper version doesn't match loaded library")
Wizium._init_done = True
# Create an instance
self._wiz_create_instance (
alphabet_size=len(alphabet) if alphabet else 0
)
self.encoding = make_codec(alphabet)
if self._instance == 0:
raise Exception ("lPPMM Library HANDLE could not be created")
# ============================================================================
def __del__ (self):
"""Destructor"""
# ============================================================================
# Destroy PPMM instance
self._wiz_destroy_instance ()
# ============================================================================
def dic_clear (self):
"""Flush the dictionary content"""
# ============================================================================
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["DIC_Clear"]
api (instance)
# ============================================================================
def dic_add_entries (self, entries):
"""Add entries to the dictionary
entries: List of strings (must only contain characters from the alphabet)
return: Number of words added to the dictionary
"""
# ============================================================================
# Create an array to hold all the words
m = self._max_word_length
tab = bytearray (m * len (entries))
ctab = (ctypes.c_uint8 * len (tab)).from_buffer (tab)
# Put the list in the array
skip = 0
for idx, entry in enumerate (entries):
be = bytearray (entry, self.encoding)
if len (be) > self._max_word_length:
skip += 1
print ("Skip " + entry)
continue
ctab [(idx-skip)*m : (idx-skip)*m + len (be)] = be
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["DIC_AddEntries"]
return api (instance, ctab, len (entries) - skip)
# ============================================================================
def dic_find_random_entry (self, mask):
"""Find a random entry in the dictionary, matching a mask
mask: Mask to match. Each letter must either be in ['A'..'Z'] range
or be a wildcard '*'. The wildcard means that any letter matches.
Word length to retrieve is implicitly given by the mask length. (ex: '***' means any 3 letters word)
return: A matching word, or None
"""
# ============================================================================
length = len (mask)
tab = bytearray (length +1)
ctab = (ctypes.c_uint8 * (length +1)).from_buffer (tab)
tab_mask = bytearray (length +1)
tab_mask [0:length] = bytearray (mask, self.encoding)
tab_mask [length] = 0
cmask = (ctypes.c_uint8 * (length +1)).from_buffer (tab_mask)
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["DIC_FindRandomEntry"]
success = api (instance, ctab, cmask)
if not success: return None
else: return str (ctab, self.encoding)
# ============================================================================
def dic_find_entry (self, mask, start=None):
"""Find a random entry in the dictionary, matching a mask
mask: Mask to match. Each letter must either be in ['A'..'Z'] range
or be a wildcard '*'. The wildcard means that any letter matches.
Word length to retrieve is implicitly given by the mask length. (ex: '***' means any 3 letters word)
start: A word to start searching in the dictionary. If None, search starts at the begining.
return: A matching word, or None
"""
# ============================================================================
length = len (mask)
tab = bytearray (length +1)
ctab = (ctypes.c_uint8 * (length +1)).from_buffer (tab)
tab_mask = bytearray (length +1)
tab_mask [0:length] = bytearray (mask, self.encoding)
cmask = (ctypes.c_uint8 * (length +1)).from_buffer (tab_mask)
if start:
start_mask = bytearray (length +1)
start_mask [0:len (start)] = bytearray (start, self.encoding)
cstart = (ctypes.c_uint8 * (length +1)).from_buffer (start_mask)
else:
cstart = None
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["DIC_FindEntry"]
success = api (instance, ctab, cmask, cstart)
if not success: return None
else: return str (ctab, self.encoding)
# ============================================================================
def dic_gen_num_words (self):
"""Return the number of words in the dictionary"""
# ============================================================================
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["DIC_GetNumWords"]
return api (instance)
# ============================================================================
def grid_erase (self):
"""Erase the grid content"""
# ============================================================================
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["GRID_Erase"]
return api (instance)
# ============================================================================
def grid_set_size (self, width, height):
"""Set the grid size. Content can be lost when shrinking."""
# ============================================================================
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["GRID_SetSize"]
self._width = width
self._height = height
return api (instance, width, height)
# ============================================================================
def grid_set_box (self, x, y, type):
"""Set the type of box at a given grid coordinate"""
# ============================================================================
assert type in ('LETTER', 'VOID', 'BLACK')
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["GRID_SetBox"]
if type == 'LETTER': type_int = 0
elif type == 'VOID': type_int = 1
elif type == 'BLACK': type_int = 2
api (instance, x, y, type_int)
# ============================================================================
def grid_write (self, x, y, word, dir='H', add_block=False):
"""Write a word on the grid
x, y Location of the first letter
word Word to write
dir 'V' or 'H' to selection orientation
add_block Optional black box at the end of the word
"""
# ============================================================================
ba = bytearray (len (word) +1)
ba [0:len (word)] = bytearray (word, self.encoding)
bword = (ctypes.c_uint8 * (len (word) +1)).from_buffer (ba)
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["GRID_Write"]
api (instance, x, y, bword, ord (dir [0]), add_block)
# ============================================================================
def grid_read (self):
"""Read the whole content of the grid"""
# ============================================================================
size = self._width * self._height
if not size: return None
tab = bytearray (size)
ctab = (ctypes.c_uint8 * size).from_buffer (tab)
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["GRID_Read"]
api (instance, ctab)
grid = [''] * self._height
for i in range (self._height):
grid [i] = str (tab [self._width*i: self._width*(i+1)], self.encoding) + '\n'
return grid
# ============================================================================
def solver_start (self, seed=0, black_mode='DIAG', max_black=0, heuristic_level=-1):
"""Start the grid generation process
seed Custom seed for the generation process
black_mode 'DIAG':
'ANY':
'TWO':
'SINGLE':
max_black Max. number of black boxes that can be added to the grid
heuristic_level Heuristic strength. -1: no heuristic
"""
# ============================================================================
assert black_mode in ('DIAG', 'ANY', 'TWO', 'SINGLE')
config = Wizium.SolverConfig ()
config.seed = seed
config.heuristicLevel = heuristic_level
config.maxBlackBoxes = max_black
if black_mode == 'DIAG':
config.blackMode = 3
elif black_mode == 'ANY':
config.blackMode = 0
elif black_mode == 'TWO':
config.blackMode = 2
elif black_mode == 'SINGLE':
config.blackMode = 1
(api, proto) = self._api ["SOLVER_Start"]
instance = ctypes.c_ulonglong (self._instance)
api (instance, ctypes.byref (config))
# ============================================================================
def solver_step (self, max_time_ms=-1, max_steps=-1):
"""Move a few steps in the grid generation process"""
# ============================================================================
status = Wizium.Status ()
(api, proto) = self._api ["SOLVER_Step"]
instance = ctypes.c_ulonglong (self._instance)
api (instance, max_time_ms, max_steps, ctypes.byref (status))
return status
# ============================================================================
def solver_stop (self):
"""Stop the grid generation process"""
# ============================================================================
(api, proto) = self._api ["SOLVER_Stop"]
instance = ctypes.c_ulonglong (self._instance)
api (instance)
# ############################################################################
#
# P R I V A T E
#
# ############################################################################
# ============================================================================
def _wiz_init (self):
# ============================================================================
version = Wizium.Version ()
(api, proto) = self._api ["WIZ_Init"]
api (ctypes.byref (version))
return version
# ============================================================================
def _wiz_create_instance (self, alphabet_size=0, max_word_length=20):
# ============================================================================
config = Wizium.Config ()
config.alphabetSize = alphabet_size
config.maxWordLength = max_word_length
self._max_word_length = max_word_length
self._alphabet_size = alphabet_size
(api, proto) = self._api ["WIZ_CreateInstance"]
self._instance = api (ctypes.byref (config))
self._width = self._height = 0
# ============================================================================
def _wiz_destroy_instance (self):
# ============================================================================
instance = ctypes.c_ulonglong (self._instance)
(api, proto) = self._api ["WIZ_DestroyInstance"]
api (instance)
# ============================================================================
def make_codec(alphabet, __alphabets={}):
"""\
Register a custom codec for the supplied alphabet that maps to 1..len(alphabet)
returns codec name
"""
# ============================================================================
if alphabet is None:
return 'ascii'
if WILDCARD in alphabet:
raise ValueError("'{WILDCARD}' is a wildcard and cannot be part of the alphabet")
codec_name = __alphabets.get(alphabet)
if codec_name is not None:
return codec_name
max_alphabet_len = min(BLOCK_CODE, VOID_CODE, WILDCARD_CODE) - 1
if len(alphabet) > max_alphabet_len:
raise ValueError(f"alphabet cannot have more than {max_alphabet_len} characters due to internal encoding of blocks, voids and wildcards")
import codecs
decoding_table = list('.' + alphabet)
decoding_table.extend('?' for i in range(len(decoding_table), 256))
decoding_table[VOID_CODE] = VOID
decoding_table[BLOCK_CODE] = BLOCK
decoding_table[WILDCARD_CODE] = WILDCARD
decoding_table = ''.join(decoding_table)
encoding_table = codecs.charmap_build(decoding_table)
# case insensitive encoding
encoding_table.update((ord(c), i) for i, c in enumerate(alphabet.lower(), 1))
encoding_table.update((ord(c), i) for i, c in enumerate(alphabet.upper(), 1))
def encode(input, errors='strict'):
return codecs.charmap_encode(input, errors, encoding_table)
def decode(input, errors='strict'):
return codecs.charmap_decode(input, errors, decoding_table)
codec_name = __alphabets.setdefault(alphabet,
f"wizium_{id(__alphabets)}_{len(__alphabets)}")
def search(encoding):
if encoding == codec_name:
return codecs.CodecInfo(encode, decode,
None, None,
None, None,
codec_name)
return None
codecs.register(search)
return codec_name