forked from AmazingAmpharos/OoT-Randomizer
-
Notifications
You must be signed in to change notification settings - Fork 233
/
Settings.py
466 lines (401 loc) · 21.1 KB
/
Settings.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
from __future__ import annotations
import argparse
import copy
import hashlib
import json
import logging
import os
import random
import re
import string
import sys
import textwrap
from collections.abc import Iterable
from typing import Any, Optional
import StartingItems
from version import __version__
from Utils import local_path, data_path
from SettingsList import SettingInfos, validate_settings, settings_versioning
from Plandomizer import Distribution
LEGACY_STARTING_ITEM_SETTINGS: dict[str, dict[str, StartingItems.Entry]] = {
'starting_equipment': StartingItems.equipment,
'starting_inventory': StartingItems.inventory,
'starting_songs': StartingItems.songs,
}
class ArgumentDefaultsHelpFormatter(argparse.RawTextHelpFormatter):
def _get_help_string(self, action) -> Optional[str]:
if action.help is not None:
return textwrap.dedent(action.help)
# 32 characters
letters: str = "ABCDEFGHJKLMNPQRSTUVWXYZ23456789"
index_to_letter: dict[int, str] = {i: letters[i] for i in range(32)}
letter_to_index: dict[str, int] = {v: k for k, v in index_to_letter.items()}
def bit_string_to_text(bits: list[int]) -> str:
# pad the bits array to be multiple of 5
if len(bits) % 5 > 0:
bits += [0] * (5 - len(bits) % 5)
# convert to characters
result = ""
for i in range(0, len(bits), 5):
chunk = bits[i:i + 5]
value = 0
for b in range(5):
value |= chunk[b] << b
result += index_to_letter[value]
return result
def text_to_bit_string(text: str) -> list[int]:
bits = []
for c in text:
index = letter_to_index[c]
for b in range(5):
bits += [ (index >> b) & 1 ]
return bits
def get_preset_files() -> list[str]:
return [data_path('presets_default.json')] + sorted(
os.path.join(data_path('Presets'), fn)
for fn in os.listdir(data_path('Presets'))
if fn.endswith('.json'))
# holds the particular choices for a run's settings
class Settings(SettingInfos):
# add the settings as fields, and calculate information based on them
def __init__(self, settings_dict: dict[str, Any], strict: bool = False) -> None:
super().__init__()
self.numeric_seed: Optional[int] = None
for setting in settings_dict:
for setting_version in settings_versioning:
if setting == setting_version.old_name:
settings_dict[setting_version.new_name] = settings_dict.pop(setting_version.old_name)
if settings_dict.get('compress_rom', None):
# Old compress_rom setting is set, so set the individual output settings using it.
settings_dict['create_patch_file'] = settings_dict['compress_rom'] == 'Patch' or settings_dict.get('create_patch_file', False)
settings_dict['create_compressed_rom'] = settings_dict['compress_rom'] == 'True' or settings_dict.get('create_compressed_rom', False)
settings_dict['create_uncompressed_rom'] = settings_dict['compress_rom'] == 'False' or settings_dict.get('create_uncompressed_rom', False)
del settings_dict['compress_rom']
if strict:
validate_settings(settings_dict)
self.update(settings_dict, initialize=True)
if self.world_count < 1:
self.world_count = 1
if self.world_count > 255:
self.world_count = 255
self._disabled: set[str] = set()
self.settings_string: str = self.get_settings_string()
self.distribution: Distribution = Distribution(self)
self.update_seed(self.seed)
self.custom_seed: bool = False
def copy(self) -> Settings:
settings = copy.copy(self)
settings.settings_dict = copy.deepcopy(settings.settings_dict)
return settings
def update(self, settings_dict: dict[str, Any], *, initialize: bool = False) -> None:
for info in self.setting_infos.values():
if info.type is type(None):
continue
if not initialize and info.name not in settings_dict:
continue
setattr(self, info.name, settings_dict[info.name] if info.name in settings_dict else info.default)
def get_settings_display(self) -> str:
padding = 0
for setting in filter(lambda s: s.shared, self.setting_infos.values()):
padding = max(len(setting.name), padding)
padding += 2
output = ''
for setting in filter(lambda s: s.shared, self.setting_infos.values()):
name = setting.name + ': ' + ' ' * (padding - len(setting.name))
if setting.type == list:
val = ('\n' + (' ' * (padding + 2))).join(getattr(self, setting.name))
else:
val = str(getattr(self, setting.name))
output += name + val + '\n'
return output
def get_settings_string(self) -> str:
bits = []
for setting in filter(lambda s: s.shared and s.bitwidth > 0, self.setting_infos.values()):
value = getattr(self, setting.name)
i_bits = []
if setting.name in LEGACY_STARTING_ITEM_SETTINGS:
items = LEGACY_STARTING_ITEM_SETTINGS[setting.name]
value = []
for entry in items.values():
if entry.item_name in self.starting_items:
count = self.starting_items[entry.item_name]
if not isinstance(count, int):
count = count.count
if count > entry.i:
value.append(entry.setting_name)
if setting.type == bool:
i_bits = [ 1 if value else 0 ]
elif setting.type == str:
try:
index = setting.choice_list.index(value)
except ValueError:
index = setting.choice_list.index(setting.default)
# https://stackoverflow.com/questions/10321978/integer-to-bitfield-as-a-list
i_bits = [1 if digit=='1' else 0 for digit in bin(index)[2:]]
i_bits.reverse()
elif setting.type == int:
value = int(value)
value = value - (setting.gui_params.get('min', 0))
value = int(value / (setting.gui_params.get('step', 1)))
value = min(value, (setting.gui_params.get('max', value)))
# https://stackoverflow.com/questions/10321978/integer-to-bitfield-as-a-list
i_bits = [1 if digit=='1' else 0 for digit in bin(value)[2:]]
i_bits.reverse()
elif setting.type == list:
if not isinstance(value, Iterable):
value = []
if len(value) > len(setting.choice_list) / 2:
value = [item for item in setting.choice_list if item not in value]
terminal = [1] * setting.bitwidth
else:
terminal = [0] * setting.bitwidth
item_indexes = []
for item in value:
try:
item_indexes.append(setting.choice_list.index(item))
except ValueError:
continue
item_indexes.sort()
for index in item_indexes:
item_bits = [1 if digit=='1' else 0 for digit in bin(index+1)[2:]]
item_bits.reverse()
item_bits += [0] * ( setting.bitwidth - len(item_bits) )
i_bits.extend(item_bits)
i_bits.extend(terminal)
else:
raise TypeError(f'Cannot encode type {setting.type} into settings string')
# pad it
i_bits += [0] * ( setting.bitwidth - len(i_bits) )
bits += i_bits
return bit_string_to_text(bits)
def update_with_settings_string(self, text: str) -> None:
bits = text_to_bit_string(text)
for setting in filter(lambda s: s.shared and s.bitwidth > 0, self.setting_infos.values()):
cur_bits = bits[:setting.bitwidth]
bits = bits[setting.bitwidth:]
value = None
if setting.type == bool:
value = True if cur_bits[0] == 1 else False
elif setting.type == str:
index = 0
for b in range(setting.bitwidth):
index |= cur_bits[b] << b
value = setting.choice_list[index]
elif setting.type == int:
value = 0
for b in range(setting.bitwidth):
value |= cur_bits[b] << b
value = value * setting.gui_params.get('step', 1)
value = value + setting.gui_params.get('min', 0)
elif setting.type == list:
value = []
max_index = (1 << setting.bitwidth) - 1
while True:
index = 0
for b in range(setting.bitwidth):
index |= cur_bits[b] << b
if index == 0:
break
if index == max_index:
value = [item for item in setting.choice_list if item not in value]
break
value.append(setting.choice_list[index-1])
cur_bits = bits[:setting.bitwidth]
bits = bits[setting.bitwidth:]
else:
raise TypeError(f'Cannot decode type {setting.type} from settings string')
setattr(self, setting.name, value)
setattr(self, 'starting_items', {}) # Settings string contains the GUI format, so clear the current value of the dict format.
self.distribution.reset() # convert starting_items
self.settings_string = self.get_settings_string()
self.numeric_seed = self.get_numeric_seed()
def get_numeric_seed(self) -> int:
# salt seed with the settings, and hash to get a numeric seed
distribution = json.dumps(self.distribution.to_json(include_output=False), sort_keys=True)
full_string = self.settings_string + distribution + __version__ + self.seed
return int(hashlib.sha256(full_string.encode('utf-8')).hexdigest(), 16)
def sanitize_seed(self) -> None:
# leave only alphanumeric and some punctuation
self.seed = re.sub(r'[^a-zA-Z0-9_-]', '', self.seed)
def update_seed(self, seed: str) -> None:
if seed is None or seed == '':
# https://stackoverflow.com/questions/2257441/random-string-generation-with-upper-case-letters-and-digits-in-python
self.seed = ''.join(random.choices(string.ascii_uppercase + string.digits, k=10))
else:
self.seed = seed
self.sanitize_seed()
self.numeric_seed = self.get_numeric_seed()
def load_distribution(self) -> None:
if self.enable_distribution_file:
if self.distribution_file:
try:
self.distribution = Distribution.from_file(self, self.distribution_file)
except FileNotFoundError:
logging.getLogger('').warning("Distribution file not found at %s" % (self.distribution_file))
self.enable_distribution_file = False
else:
logging.getLogger('').warning("Plandomizer enabled, but no distribution file provided.")
self.enable_distribution_file = False
elif self.distribution_file:
logging.getLogger('').warning("Distribution file provided, but using it not enabled. "
"Did you mean to set enable_distribution_file?")
else:
self.distribution = Distribution(self)
self.reset_distribution()
self.numeric_seed = self.get_numeric_seed()
def reset_distribution(self) -> None:
self.distribution.reset()
for location in self.disabled_locations:
self.distribution.add_location(location, '#Junk')
for location in self.plandomized_locations:
self.distribution.add_location(location, self.plandomized_locations[location])
def check_dependency(self, setting_name: str, check_random: bool = True) -> bool:
return self.get_dependency(setting_name, check_random) is None
def get_dependency(self, setting_name: str, check_random: bool = True) -> Any:
info = SettingInfos.setting_infos[setting_name]
not_in_dist = '_settings' not in self.distribution.src_dict or info.name not in self.distribution.src_dict['_settings'].keys()
if check_random and 'randomize_key' in info.gui_params and getattr(self, info.gui_params['randomize_key']) and not_in_dist:
return info.disabled_default
elif info.dependency is not None:
return info.disabled_default if info.dependency(self) and not_in_dist else None
else:
return None
def remove_disabled(self) -> None:
for info in self.setting_infos.values():
if info.dependency is not None:
new_value = self.get_dependency(info.name)
if new_value is not None:
setattr(self, info.name, new_value)
self._disabled.add(info.name)
self.settings_string = self.get_settings_string()
self.numeric_seed = self.get_numeric_seed()
def resolve_random_settings(self, cosmetic: bool, randomize_key: Optional[str] = None) -> None:
sorted_infos = list(self.setting_infos.values())
sort_key = lambda info: 0 if info.dependency is None else 1
sorted_infos.sort(key=sort_key)
randomize_keys_enabled = set()
for info in sorted_infos:
# only randomize cosmetics options or non-cosmetic
if cosmetic == info.shared:
continue
if self.check_dependency(info.name, check_random=True):
continue
if 'randomize_key' not in info.gui_params:
continue
if randomize_key is not None and info.gui_params['randomize_key'] != randomize_key:
continue
# Make sure the setting is meant to be randomized and not specified in distribution
# We that check it's not specified in the distribution so that plando can override randomized settings
not_in_dist = '_settings' not in self.distribution.src_dict or info.name not in self.distribution.src_dict['_settings'].keys()
if getattr(self, info.gui_params['randomize_key']) and not_in_dist:
randomize_keys_enabled.add(info.gui_params['randomize_key'])
choices, weights = zip(*info.gui_params['distribution'])
setattr(self, info.name, random.choices(choices, weights=weights)[0])
# Second pass to make sure disabled settings are set properly.
# Stupid hack: disable randomize keys, then re-enable.
for randomize_keys in randomize_keys_enabled:
setattr(self, randomize_keys, False)
for info in sorted_infos:
if cosmetic == info.shared:
continue
dependency = self.get_dependency(info.name, check_random=False)
if dependency is None:
continue
setattr(self, info.name, dependency)
for randomize_keys in randomize_keys_enabled:
setattr(self, randomize_keys, True)
def to_json(self, *, legacy_starting_items: bool = False) -> dict[str, Any]:
if legacy_starting_items:
settings = self.copy()
for setting_name, items in LEGACY_STARTING_ITEM_SETTINGS.items():
starting_items = []
setattr(settings, setting_name, starting_items)
for entry in items.values():
if entry.item_name in self.starting_items:
count = self.starting_items[entry.item_name]
if not isinstance(count, int):
count = count.count
if count > entry.i:
starting_items.append(entry.setting_name)
else:
settings = self
return { # TODO: This should be done in a way that is less insane than a double-digit line dictionary comprehension.
setting.name: (
{name: (
{name: record.to_json() for name, record in record.items()} if isinstance(record, dict) else record.to_json()
) for name, record in getattr(settings, setting.name).items()}
if setting.name == 'starting_items' and not legacy_starting_items else
getattr(settings, setting.name)
)
for setting in self.setting_infos.values()
if setting.shared and (
setting.name not in self._disabled or
# We want to still include settings disabled by randomized settings options if they're specified in distribution
('_settings' in self.distribution.src_dict and setting.name in self.distribution.src_dict['_settings'].keys())
)
# Don't want to include list starting equipment and songs, these are consolidated into starting_items
and (legacy_starting_items or not (setting.name in LEGACY_STARTING_ITEM_SETTINGS))
and (setting.name != 'starting_items' or not legacy_starting_items)
}
def to_json_cosmetics(self) -> dict[str, Any]:
return {setting.name: getattr(self, setting.name) for setting in self.setting_infos.values() if setting.cosmetic}
# gets the randomizer settings, whether to open the gui, and the logger level from command line arguments
def get_settings_from_command_line_args() -> tuple[Settings, bool, str, bool, str]:
parser = argparse.ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter)
parser.add_argument('--gui', help='Launch the GUI', action='store_true')
parser.add_argument('--loglevel', default='info', const='info', nargs='?', choices=['error', 'info', 'warning', 'debug'], help='Select level of logging for output.')
parser.add_argument('--settings_string', help='Provide sharable settings using a settings string. This will override all flags that it specifies.')
parser.add_argument('--convert_settings', help='Only convert the specified settings to a settings string. If a settings string is specified output the used settings instead.', action='store_true')
parser.add_argument('--settings', help='Use the specified settings file to use for generation')
parser.add_argument('--settings_preset', help="Use the given preset for base settings. Anything defined in the --settings file or the --settings_string will override the preset.")
parser.add_argument('--seed', help='Generate the specified seed.')
parser.add_argument('--no_log', help='Suppresses the generation of a log file.', action='store_true')
parser.add_argument('--output_settings', help='Always outputs a settings.json file even when spoiler is enabled.', action='store_true')
parser.add_argument('--diff_rom', help='Generates a ZPF patch from the specified ROM file.')
args = parser.parse_args()
settings_base = {}
if args.settings_preset:
presetsFiles = get_preset_files()
for fn in presetsFiles:
with open(fn, encoding='utf-8') as f:
presets = json.load(f)
# Deal with preset aliases.
for name, preset in copy.copy(presets).items():
if 'aliases' not in preset:
continue
for alias in preset['aliases']:
if alias in presets:
logging.getLogger('').warning(f"Preset {name}, alias {alias} collides with existing preset or alias. Ignoring.")
continue
presets[alias] = preset
if args.settings_preset in presets:
settings_base.update(presets[args.settings_preset])
break
else:
sys.stderr.write(f'ERROR:No preset found with name {args.settings_preset!r}\n')
sys.exit(1)
if args.settings == '-':
settings_base.update(json.loads(sys.stdin.read()))
elif args.settings or not settings_base: # avoid implicitly using settings.sav with presets
settingsFile = local_path(args.settings or 'settings.sav')
try:
with open(settingsFile, encoding='utf-8') as f:
settings_base.update(json.load(f))
except Exception as ex:
if args.settings is not None:
raise ex
settings = Settings(settings_base)
settings.output_settings = args.output_settings
if args.settings_string is not None:
settings.update_with_settings_string(args.settings_string)
if args.seed is not None:
settings.update_seed(args.seed)
settings.custom_seed = True
if args.convert_settings:
if args.settings_string is not None:
# used by the GUI which doesn't support the new dict-style starting items yet
print(json.dumps(settings.to_json(legacy_starting_items=True)))
else:
print(settings.get_settings_string())
sys.exit(0)
return settings, args.gui, args.loglevel, args.no_log, args.diff_rom