forked from ArchipelagoMW/Archipelago
- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOptions.py
More file actions
Latest commit
1896 lines (1546 loc) · 75.2 KB
/
Copy pathOptions.py
File metadata and controls
1896 lines (1546 loc) · 75.2 KB
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
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ importannotations
importabc
importcollections
importfunctools
importlogging
importmath
importnumbers
importrandom
importtyping
importenum
fromcollectionsimportdefaultdict
fromcopyimportdeepcopy
fromdataclassesimportdataclass
fromschemaimportAnd, Optional, Or, Schema
fromtyping_extensionsimportSelf
fromUtilsimportget_file_safe_name, get_fuzzy_results, is_iterable_except_str, output_path
iftyping.TYPE_CHECKING:
fromBaseClassesimportMultiWorld, PlandoOptions
fromworlds.AutoWorldimportWorld
importpathlib
_RANDOM_OPTS= [
"random", "random-low", "random-middle", "random-high",
"random-range-low-<min>-<max>", "random-range-middle-<min>-<max>",
"random-range-high-<min>-<max>", "random-range-<min>-<max>",
]
deftriangular(lower: int, end: int, tri: float=0.5) ->int:
"""
Integer triangular distribution for `lower` inclusive to `end` inclusive.
Expects `lower <= end` and `0.0 <= tri <= 1.0`. The result of other inputs is undefined.
"""
# Use the continuous range [lower, end + 1) to produce an integer result in [lower, end].
# random.triangular is actually [a, b] and not [a, b), so there is a very small chance of getting exactly b even
# when a != b, so ensure the result is never more than `end`.
returnmin(end, math.floor(random.triangular(0.0, 1.0, tri) * (end-lower+1) +lower))
defrandom_weighted_range(text: str, range_start: int, range_end: int):
iftext=="random-low":
returntriangular(range_start, range_end, 0.0)
eliftext=="random-high":
returntriangular(range_start, range_end, 1.0)
eliftext=="random-middle":
returntriangular(range_start, range_end)
eliftext=="random":
returnrandom.randint(range_start, range_end)
else:
raiseException(f"random text \"{text}\" did not resolve to a recognized pattern. "
f"Acceptable values are: {', '.join(_RANDOM_OPTS)}.")
defroll_percentage(percentage: int|float) ->bool:
"""Roll a percentage chance.
percentage is expected to be in range [0, 100]"""
returnrandom.random() < (float(percentage) /100)
classOptionError(ValueError):
pass
classVisibility(enum.IntFlag):
none=0b0000
template=0b0001
simple_ui=0b0010# show option in simple menus, such as player-options
complex_ui=0b0100# show option in complex menus, such as weighted-options
spoiler=0b1000
all=0b1111
classAssembleOptions(abc.ABCMeta):
def__new__(mcs, name, bases, attrs):
options=attrs["options"] = {}
name_lookup=attrs["name_lookup"] = {}
# merge parent class options
forbaseinbases:
ifgetattr(base, "options", None):
options.update(base.options)
name_lookup.update(base.name_lookup)
new_options= {name[7:].lower(): option_idforname, option_idinattrs.items() if
name.startswith("option_")}
assert"random"notinnew_options, "Choice option 'random' cannot be manually assigned."
assertlen(new_options) ==len(set(new_options.values())), "same ID cannot be used twice. Try alias?"
attrs["name_lookup"].update({option_id: nameforname, option_idinnew_options.items()})
options.update(new_options)
# apply aliases, without name_lookup
aliases=attrs["aliases"] = {name[6:].lower(): option_idforname, option_idinattrs.items() if
name.startswith("alias_")}
assert (
namein {"Option", "VerifyKeys"} or# base abstract classes don't need default
"default"inattrsor
any(hasattr(base, "default") forbaseinbases)
), f"Option class {name} needs default value"
assert"random"notinaliases, "Choice option 'random' cannot be manually assigned."
# auto-alias Off and On being parsed as True and False
if"off"inoptions:
options["false"] =options["off"]
if"on"inoptions:
options["true"] =options["on"]
options.update(aliases)
if"verify"notinattrs:
# not overridden by class -> look up bases
verifiers= [fforfin (getattr(base, "verify", None) forbaseinbases) iff]
iflen(verifiers) >1: # verify multiple bases/mixins
defverify(self, *args, **kwargs) ->None:
forfinverifiers:
f(self, *args, **kwargs)
attrs["verify"] =verify
else:
assertverifiers, "class Option is supposed to implement def verify"
# auto-validate schema on __init__
if"schema"inattrs.keys():
if"__init__"inattrs:
defvalidate_decorator(func):
defvalidate(self, *args, **kwargs):
ret=func(self, *args, **kwargs)
self.value=self.schema.validate(self.value)
returnret
returnvalidate
attrs["__init__"] =validate_decorator(attrs["__init__"])
else:
# construct an __init__ that calls parent __init__
cls=super(AssembleOptions, mcs).__new__(mcs, name, bases, attrs)
defmeta__init__(self, *args, **kwargs):
super(cls, self).__init__(*args, **kwargs)
self.value=self.schema.validate(self.value)
cls.__init__=meta__init__
returncls
returnsuper(AssembleOptions, mcs).__new__(mcs, name, bases, attrs)
T=typing.TypeVar('T')
classOption(typing.Generic[T], metaclass=AssembleOptions):
value: T
default: typing.ClassVar[typing.Any] # something that __init__ will be able to convert to the correct type
visibility=Visibility.all
# convert option_name_long into Name Long as display_name, otherwise name_long is the result.
# Handled in get_option_name()
auto_display_name=False
# can be weighted between selections
supports_weighting=True
rich_text_doc: typing.Optional[bool] =None
"""Whether the WebHost should render the Option's docstring as rich text.
If this is True, the Option's docstring is interpreted as reStructuredText_,
the standard Python markup format. In the WebHost, it's rendered to HTML so
that lists, emphasis, and other rich text features are displayed properly.
If this is False, the docstring is instead interpreted as plain text, and
displayed as-is on the WebHost with whitespace preserved.
If this is None, it inherits the value of `WebWorld.rich_text_options_doc`. For
backwards compatibility, this defaults to False, but worlds are encouraged to
set it to True and use reStructuredText for their Option documentation.
.. _reStructuredText: https://docutils.sourceforge.io/rst.html
"""
# filled by AssembleOptions:
name_lookup: typing.ClassVar[typing.Dict[T, str]] # type: ignore
# https://github.com/python/typing/discussions/1460 the reason for this type: ignore
options: typing.ClassVar[typing.Dict[str, int]]
aliases: typing.ClassVar[typing.Dict[str, int]]
def__repr__(self) ->str:
returnf"{self.__class__.__name__}({self.current_option_name})"
def__hash__(self) ->int:
returnhash(self.value)
@property
defcurrent_key(self) ->str:
returnself.name_lookup[self.value]
@property
defcurrent_option_name(self) ->str:
"""For display purposes. Worlds should be using current_key."""
returnself.get_option_name(self.value)
@classmethod
defget_option_name(cls, value: T) ->str:
ifcls.auto_display_name:
returncls.name_lookup[value].replace("_", " ").title()
else:
returncls.name_lookup[value]
def__int__(self) ->T:
returnself.value
def__bool__(self) ->bool:
returnbool(self.value)
@classmethod
@abc.abstractmethod
deffrom_any(cls, data: typing.Any) ->Option[T]:
...
iftyping.TYPE_CHECKING:
defverify(self, world: typing.Type[World], player_name: str, plando_options: PlandoOptions) ->None:
pass
else:
defverify(self, *args, **kwargs) ->None:
pass
classFreeText(Option[str]):
"""Text option that allows users to enter strings.
Needs to be validated by the world or option definition."""
default=""
def__init__(self, value: str):
assertisinstance(value, str), "value of FreeText must be a string"
self.value=value
@property
defcurrent_key(self) ->str:
returnself.value
@classmethod
deffrom_text(cls, text: str) ->FreeText:
returncls(text)
@classmethod
deffrom_any(cls, data: typing.Any) ->FreeText:
returncls.from_text(str(data))
@classmethod
defget_option_name(cls, value: str) ->str:
returnvalue
def__eq__(self, other):
ifisinstance(other, self.__class__):
returnother.value==self.value
elifisinstance(other, str):
returnother==self.value
else:
raiseTypeError(f"Can't compare {self.__class__.__name__} with {other.__class__.__name__}")
classNumericOption(Option[int], numbers.Integral, abc.ABC):
default=0
# note: some of the `typing.Any`` here is a result of unresolved issue in python standards
# `int` is not a `numbers.Integral` according to the official typestubs
# (even though isinstance(5, numbers.Integral) == True)
# https://github.com/python/typing/issues/272
# https://github.com/python/mypy/issues/3186
# https://github.com/microsoft/pyright/issues/1575
def__eq__(self, other: typing.Any) ->bool:
ifisinstance(other, NumericOption):
returnself.value==other.value
else:
returntyping.cast(bool, self.value==other)
def__lt__(self, other: typing.Union[int, NumericOption]) ->bool:
ifisinstance(other, NumericOption):
returnself.value<other.value
else:
returnself.value<other
def__le__(self, other: typing.Union[int, NumericOption]) ->bool:
ifisinstance(other, NumericOption):
returnself.value<=other.value
else:
returnself.value<=other
def__gt__(self, other: typing.Union[int, NumericOption]) ->bool:
ifisinstance(other, NumericOption):
returnself.value>other.value
else:
returnself.value>other
def__ge__(self, other: typing.Union[int, NumericOption]) ->bool:
ifisinstance(other, NumericOption):
returnself.value>=other.value
else:
returnself.value>=other
def__bool__(self) ->bool:
returnbool(self.value)
def__int__(self) ->int:
returnself.value
def__mul__(self, other: typing.Any) ->typing.Any:
ifisinstance(other, NumericOption):
returnself.value*other.value
else:
returnself.value*other
def__rmul__(self, other: typing.Any) ->typing.Any:
ifisinstance(other, NumericOption):
returnother.value*self.value
else:
returnother*self.value
def__sub__(self, other: typing.Any) ->typing.Any:
ifisinstance(other, NumericOption):
returnself.value-other.value
else:
returnself.value-other
def__rsub__(self, left: typing.Any) ->typing.Any:
ifisinstance(left, NumericOption):
returnleft.value-self.value
else:
returnleft-self.value
def__add__(self, other: typing.Any) ->typing.Any:
ifisinstance(other, NumericOption):
returnself.value+other.value
else:
returnself.value+other
def__radd__(self, left: typing.Any) ->typing.Any:
ifisinstance(left, NumericOption):
returnleft.value+self.value
else:
returnleft+self.value
def__truediv__(self, other: typing.Any) ->typing.Any:
ifisinstance(other, NumericOption):
returnself.value/other.value
else:
returnself.value/other
def__rtruediv__(self, left: typing.Any) ->typing.Any:
ifisinstance(left, NumericOption):
returnleft.value/self.value
else:
returnleft/self.value
def__abs__(self) ->typing.Any:
returnabs(self.value)
def__and__(self, other: typing.Any) ->int:
returnself.value&int(other)
def__ceil__(self) ->int:
returnmath.ceil(self.value)
def__floor__(self) ->int:
returnmath.floor(self.value)
def__floordiv__(self, other: typing.Any) ->int:
returnself.value//int(other)
def__invert__(self) ->int:
return~(self.value)
def__lshift__(self, other: typing.Any) ->int:
returnself.value<<int(other)
def__mod__(self, other: typing.Any) ->int:
returnself.value%int(other)
def__neg__(self) ->int:
return-(self.value)
def__or__(self, other: typing.Any) ->int:
returnself.value|int(other)
def__pos__(self) ->int:
return+(self.value)
def__pow__(self, exponent: numbers.Complex, modulus: typing.Optional[numbers.Integral] =None) ->int:
ifnot (modulusisNone):
assertisinstance(exponent, numbers.Integral)
returnpow(self.value, exponent, modulus) # type: ignore
returnself.value**exponent# type: ignore
def__rand__(self, other: typing.Any) ->int:
returnint(other) &self.value
def__rfloordiv__(self, other: typing.Any) ->int:
returnint(other) //self.value
def__rlshift__(self, other: typing.Any) ->int:
returnint(other) <<self.value
def__rmod__(self, other: typing.Any) ->int:
returnint(other) %self.value
def__ror__(self, other: typing.Any) ->int:
returnint(other) |self.value
def__round__(self, ndigits: typing.Optional[int] =None) ->int:
returnround(self.value, ndigits)
def__rpow__(self, base: typing.Any) ->typing.Any:
returnbase**self.value
def__rrshift__(self, other: typing.Any) ->int:
returnint(other) >>self.value
def__rshift__(self, other: typing.Any) ->int:
returnself.value>>int(other)
def__rxor__(self, other: typing.Any) ->int:
returnint(other) ^self.value
def__trunc__(self) ->int:
returnmath.trunc(self.value)
def__xor__(self, other: typing.Any) ->int:
returnself.value^int(other)
classToggle(NumericOption):
option_false=0
option_true=1
default=0
def__init__(self, value: int):
# if user puts in an invalid value, make it valid
value=int(bool(value))
self.value=value
@classmethod
deffrom_text(cls, text: str) ->Toggle:
iftext=="random":
returncls(random.choice(list(cls.name_lookup)))
eliftext.lower() in {"off", "0", "false", "none", "null", "no", "disabled"}:
returncls(0)
eliftext.lower() in {"on", "1", "true", "yes", "enabled"}:
returncls(1)
else:
raiseOptionError(f"Option {cls.__name__} does not support a value of {text}")
@classmethod
deffrom_any(cls, data: typing.Any):
iftype(data) ==str:
returncls.from_text(data)
else:
returncls(int(data))
@classmethod
defget_option_name(cls, value):
return ["No", "Yes"][int(value)]
__hash__=Option.__hash__# see https://docs.python.org/3/reference/datamodel.html#object.__hash__
classDefaultOnToggle(Toggle):
default=1
classChoice(NumericOption):
auto_display_name=True
def__init__(self, value: int):
self.value: int=value
@classmethod
deffrom_text(cls, text: str) ->Choice:
text=text.lower()
iftext=="random":
returncls(random.choice(list(cls.name_lookup)))
foroption_name, valueincls.options.items():
ifoption_name==text:
returncls(value)
raiseKeyError(
f'Could not find option "{text}" for "{cls.__name__}", '
f'known options are {", ".join(f"{option}"foroptionincls.name_lookup.values())}')
@classmethod
deffrom_any(cls, data: typing.Any) ->Choice:
iftype(data) ==intanddataincls.options.values():
returncls(data)
returncls.from_text(str(data))
def__eq__(self, other):
ifisinstance(other, self.__class__):
returnother.value==self.value
elifisinstance(other, str):
assertotherinself.options, f"compared against a str that could never be equal. {self} == {other}"
returnother==self.current_key
elifisinstance(other, int):
assertotherinself.name_lookup, f"compared against an int that could never be equal. {self} == {other}"
returnother==self.value
elifisinstance(other, bool):
returnother==bool(self.value)
else:
raiseTypeError(f"Can't compare {self.__class__.__name__} with {other.__class__.__name__}")
def__ne__(self, other):
ifisinstance(other, self.__class__):
returnother.value!=self.value
elifisinstance(other, str):
assertotherinself.options, f"compared against a str that could never be equal. {self} != {other}"
returnother!=self.current_key
elifisinstance(other, int):
assertotherinself.name_lookup, f"compared against am int that could never be equal. {self} != {other}"
returnother!=self.value
elifisinstance(other, bool):
returnother!=bool(self.value)
elifotherisNone:
returnFalse
else:
raiseTypeError(f"Can't compare {self.__class__.__name__} with {other.__class__.__name__}")
def__lt__(self, other: typing.Union[Choice, int, str]):
ifisinstance(other, str):
assertotherinself.options, f"compared against an unknown string. {self} < {other}"
other=self.options[other]
returnsuper(Choice, self).__lt__(other)
def__gt__(self, other: typing.Union[Choice, int, str]):
ifisinstance(other, str):
assertotherinself.options, f"compared against an unknown string. {self} > {other}"
other=self.options[other]
returnsuper(Choice, self).__gt__(other)
def__le__(self, other: typing.Union[Choice, int, str]):
ifisinstance(other, str):
assertotherinself.options, f"compared against an unknown string. {self} <= {other}"
other=self.options[other]
returnsuper(Choice, self).__le__(other)
def__ge__(self, other: typing.Union[Choice, int, str]):
ifisinstance(other, str):
assertotherinself.options, f"compared against an unknown string. {self} >= {other}"
other=self.options[other]
returnsuper(Choice, self).__ge__(other)
__hash__=Option.__hash__# see https://docs.python.org/3/reference/datamodel.html#object.__hash__
classTextChoice(Choice):
"""Allows custom string input and offers choices. Choices will resolve to int and text will resolve to string"""
value: str|int
def__init__(self, value: str|int):
assertisinstance(value, str) orisinstance(value, int), \
f"'{value}' is not a valid option for '{self.__class__.__name__}'"
self.value=value
@property
defcurrent_key(self) ->str:
ifisinstance(self.value, str):
returnself.value
returnsuper().current_key
@classmethod
deffrom_text(cls, text: str) ->TextChoice:
iftext.lower() =="random": # chooses a random defined option but won't use any free text options
returncls(random.choice(list(cls.name_lookup)))
foroption_name, valueincls.options.items():
ifoption_name.lower() ==text.lower():
returncls(value)
returncls(text)
@classmethod
defget_option_name(cls, value: str|int) ->str:
ifisinstance(value, str):
returnvalue
returnsuper().get_option_name(value)
def__eq__(self, other: typing.Any):
ifisinstance(other, self.__class__):
returnother.value==self.value
elifisinstance(other, str):
ifotherinself.options:
returnother==self.current_key
returnother==self.value
elifisinstance(other, int):
assertotherinself.name_lookup, f"compared against an int that could never be equal. {self} == {other}"
returnother==self.value
elifisinstance(other, bool):
returnother==bool(self.value)
else:
raiseTypeError(f"Can't compare {self.__class__.__name__} with {other.__class__.__name__}")
classBossMeta(AssembleOptions):
def__new__(mcs, name, bases, attrs):
ifname!="PlandoBosses":
assert"bosses"inattrs, f"Please define valid bosses for {name}"
attrs["bosses"] =frozenset((boss.lower() forbossinattrs["bosses"]))
assert"locations"inattrs, f"Please define valid locations for {name}"
attrs["locations"] =frozenset((location.lower() forlocationinattrs["locations"]))
cls=super().__new__(mcs, name, bases, attrs)
assertnotcls.duplicate_bossesor"singularity"incls.options, f"Please define option_singularity for {name}"
returncls
classPlandoBosses(TextChoice, metaclass=BossMeta):
"""Generic boss shuffle option that supports plando. Format expected is
'location1-boss1;location2-boss2;shuffle_mode'.
If shuffle_mode is not provided in the string, this will be the default shuffle mode. Must override can_place_boss,
which passes a plando boss and location. Check if the placement is valid for your game here."""
bosses: typing.ClassVar[typing.Union[typing.Set[str], typing.FrozenSet[str]]]
locations: typing.ClassVar[typing.Union[typing.Set[str], typing.FrozenSet[str]]]
duplicate_bosses: bool=False
@classmethod
deffrom_text(cls, text: str):
# set all of our text to lower case for name checking
text=text.lower()
iftext=="random":
returncls(random.choice(list(cls.options.values())))
foroption_name, valueincls.options.items():
ifoption_name==text:
returncls(value)
options=text.split(";")
# since plando exists in the option verify the plando values given are valid
cls.validate_plando_bosses(options)
returncls.get_shuffle_mode(options)
@classmethod
defget_shuffle_mode(cls, option_list: typing.List[str]):
# find out what mode of boss shuffle we should use for placing bosses after plando
# and add as a string to look nice in the spoiler
if"random"inoption_list:
shuffle=random.choice(list(cls.options))
option_list.remove("random")
options=";".join(option_list) +f";{shuffle}"
boss_class=cls(options)
else:
foroptioninoption_list:
ifoptionincls.options:
options=";".join(option_list)
break
else:
ifcls.duplicate_bossesandlen(option_list) ==1:
ifcls.valid_boss_name(option_list[0]):
# this doesn't exist in this class but it's a forced option for classes where this is called
options=option_list[0] +";singularity"
else:
options=option_list[0] +f";{cls.name_lookup[cls.default]}"
else:
options=";".join(option_list) +f";{cls.name_lookup[cls.default]}"
boss_class=cls(options)
returnboss_class
@classmethod
defvalidate_plando_bosses(cls, options: typing.List[str]) ->None:
used_locations= []
used_bosses= []
foroptioninoptions:
# check if a shuffle mode was provided in the incorrect location
ifoption=="random"oroptionincls.options:
ifoption!=options[-1]:
raiseValueError(f"{option} option must be at the end of the boss_shuffle options!")
elif"-"inoption:
location, boss=option.split("-")
iflocationinused_locations:
raiseValueError(f"Duplicate Boss Location {location} not allowed.")
ifnotcls.duplicate_bossesandbossinused_bosses:
raiseValueError(f"Duplicate Boss {boss} not allowed.")
used_locations.append(location)
used_bosses.append(boss)
ifnotcls.valid_boss_name(boss):
raiseValueError(f"'{boss.title()}' is not a valid boss name.")
ifnotcls.valid_location_name(location):
raiseValueError(f"'{location.title()}' is not a valid boss location name.")
ifnotcls.can_place_boss(boss, location):
raiseValueError(f"'{location.title()}' is not a valid location for {boss.title()} to be placed.")
else:
ifcls.duplicate_bosses:
ifnotcls.valid_boss_name(option):
raiseValueError(f"'{option}' is not a valid boss name.")
else:
raiseValueError(f"'{option.title()}' is not formatted correctly.")
@classmethod
defcan_place_boss(cls, boss: str, location: str) ->bool:
raiseNotImplementedError
@classmethod
defvalid_boss_name(cls, value: str) ->bool:
returnvalueincls.bosses
@classmethod
defvalid_location_name(cls, value: str) ->bool:
returnvalueincls.locations
defverify(self, world: typing.Type[World], player_name: str, plando_options: "PlandoOptions") ->None:
ifisinstance(self.value, int):
return
fromBaseClassesimportPlandoOptions
ifnot (PlandoOptions.bosses&plando_options):
# plando is disabled but plando options were given so pull the option and change it to an int
option=self.value.split(";")[-1]
self.value=self.options[option]
logging.warning(f"The plando bosses module is turned off, so {self.name_lookup[self.value].title()} "
f"boss shuffle will be used for player {player_name}.")
classRange(NumericOption):
range_start=0
range_end=1
def__init__(self, value: int):
ifvalue<self.range_start:
raiseException(f"{value} is lower than minimum {self.range_start} for option {self.__class__.__name__}")
elifvalue>self.range_end:
raiseException(f"{value} is higher than maximum {self.range_end} for option {self.__class__.__name__}")
self.value=value
@classmethod
deffrom_text(cls, text: str) ->Range:
text=text.lower()
iftext.startswith("random"):
returncls.weighted_range(text)
eliftext=="default"andhasattr(cls, "default"):
returncls.from_any(cls.default)
eliftext=="high":
returncls(cls.range_end)
eliftext=="low":
returncls(cls.range_start)
elifcls.range_start==0 \
andhasattr(cls, "default") \
andcls.default!=0 \
andtextin ("true", "false"):
# these are the conditions where "true" and "false" make sense
iftext=="true":
returncls.from_any(cls.default)
# "false"
returncls(0)
try:
num=int(text)
exceptValueError:
# text is not a number
# Handle conditionally acceptable values here rather than in the f-string
default=""
truefalse=""
ifhasattr(cls, "default"):
default=", default"
ifcls.range_start==0andcls.default!=0:
truefalse=", \"true\", \"false\""
raiseException(f"Invalid range value {text!r}. Acceptable values are: "
f"<int>{default}, high, low{truefalse}, "
f"{', '.join(cls._RANDOM_OPTS)}.")
returncls(num)
@classmethod
defweighted_range(cls, text) ->Range:
iftext.startswith("random-range-"):
returncls.custom_range(text)
else:
returncls(random_weighted_range(text, cls.range_start, cls.range_end))
@classmethod
defcustom_range(cls, text) ->Range:
textsplit=text.split("-")
try:
random_range= [int(textsplit[-2]), int(textsplit[-1])]
exceptValueError:
raiseValueError(f"Invalid random range {text} for option {cls.__name__}")
random_range.sort()
ifrandom_range[0] <cls.range_startorrandom_range[1] >cls.range_end:
raiseException(
f"{random_range[0]}-{random_range[1]} is outside allowed range "
f"{cls.range_start}-{cls.range_end} for option {cls.__name__}")
iftextsplit[2] in ("low", "middle", "high"):
returncls(random_weighted_range(f"{textsplit[0]}-{textsplit[2]}", *random_range))
returncls(random_weighted_range("random", *random_range))
@classmethod
deffrom_any(cls, data: typing.Any) ->Range:
iftype(data) ==int:
returncls(data)
returncls.from_text(str(data))
@classmethod
defget_option_name(cls, value: int) ->str:
returnstr(value)
def__str__(self) ->str:
returnstr(self.value)
classNamedRange(Range):
special_range_names: typing.Dict[str, int] = {}
"""Special Range names have to be all lowercase as matching is done with text.lower()"""
def__init__(self, value: int) ->None:
ifvalue<self.range_startandvaluenotinself.special_range_names.values():
raiseException(f"{value} is lower than minimum {self.range_start} for option {self.__class__.__name__} "+
f"and is also not one of the supported named special values: {self.special_range_names}")
elifvalue>self.range_endandvaluenotinself.special_range_names.values():
raiseException(f"{value} is higher than maximum {self.range_end} for option {self.__class__.__name__} "+
f"and is also not one of the supported named special values: {self.special_range_names}")
# See docstring
forkeyinself.special_range_names:
ifkey!=key.lower():
raiseException(f"{self.__class__.__name__} has an invalid special_range_names key: {key}. "
f"NamedRange keys must use only lowercase letters, and ideally should be snake_case.")
self.value=value
@classmethod
deffrom_text(cls, text: str) ->Range:
text=text.lower()
iftextincls.special_range_names:
returncls(cls.special_range_names[text])
returnsuper().from_text(text)
classFreezeValidKeys(AssembleOptions):
def__new__(mcs, name, bases, attrs):
assertnot"_valid_keys"inattrs, "'_valid_keys' gets set by FreezeValidKeys, define 'valid_keys' instead."
if"valid_keys"inattrs:
attrs["_valid_keys"] =frozenset(attrs["valid_keys"])
returnsuper(FreezeValidKeys, mcs).__new__(mcs, name, bases, attrs)
classVerifyKeys(metaclass=FreezeValidKeys):
valid_keys: typing.Iterable= []
_valid_keys: frozenset# gets created by AssembleOptions from valid_keys
valid_keys_casefold: bool=False
convert_name_groups: bool=False
verify_item_name: bool=False
verify_location_name: bool=False
value: typing.Any
defverify_keys(self) ->None:
ifself.valid_keys:
data=set(self.value)
dataset=set(word.casefold() forwordindata) ifself.valid_keys_casefoldelseset(data)
extra=dataset-self._valid_keys
ifextra:
raiseOptionError(
f"Found unexpected key {', '.join(extra)} in {getattr(self, 'display_name', self)}. "
f"Allowed keys: {self._valid_keys}."
)
defverify(self, world: typing.Type[World], player_name: str, plando_options: "PlandoOptions") ->None:
try:
self.verify_keys()
exceptOptionErrorasvalidation_error:
raiseOptionError(f"Player {player_name} has invalid option keys:\n{validation_error}")
ifself.convert_name_groupsandself.verify_item_name:
new_value=type(self.value)() # empty container of whatever value is
foritem_nameinself.value:
new_value|=world.item_name_groups.get(item_name, {item_name})
self.value=new_value
elifself.convert_name_groupsandself.verify_location_name:
new_value=type(self.value)()
forloc_nameinself.value:
new_value|=world.location_name_groups.get(loc_name, {loc_name})
self.value=new_value
ifself.verify_item_name:
foritem_nameinself.value:
ifitem_namenotinworld.item_names:
picks=get_fuzzy_results(item_name, world.item_names, limit=1)
raiseException(f"Item '{item_name}' from option '{self}' "
f"is not a valid item name from '{world.game}'. "
f"Did you mean '{picks[0][0]}' ({picks[0][1]}% sure)")
elifself.verify_location_name:
forlocation_nameinself.value:
iflocation_namenotinworld.location_names:
picks=get_fuzzy_results(location_name, world.location_names, limit=1)
raiseException(f"Location '{location_name}' from option '{self}' "
f"is not a valid location name from '{world.game}'. "
f"Did you mean '{picks[0][0]}' ({picks[0][1]}% sure)")
def__iter__(self) ->typing.Iterator[typing.Any]:
returnself.value.__iter__()
classOptionDict(Option[typing.Dict[str, typing.Any]], VerifyKeys, typing.Mapping[str, typing.Any]):
default= {}
supports_weighting=False
def__init__(self, value: typing.Dict[str, typing.Any]):
self.value=deepcopy(value)
@classmethod
deffrom_any(cls, data: typing.Dict[str, typing.Any]) ->OptionDict:
iftype(data) ==dict:
returncls(data)
else:
raiseNotImplementedError(f"Cannot Convert from non-dictionary, got {type(data)}")
@classmethod
defget_option_name(cls, value):
return", ".join(f"{key}: {v}"forkey, vinvalue.items())
def__getitem__(self, item: str) ->typing.Any:
returnself.value[item]
def__iter__(self) ->typing.Iterator[str]:
returniter(self.value)
def__len__(self) ->int:
returnlen(self.value)
# __getitem__ fallback fails for Counters, so we define this explicitly
def__contains__(self, item) ->bool:
returniteminself.value
classOptionCounter(OptionDict):
min: int|None=None
max: int|None=None
def__init__(self, value: dict[str, int]) ->None:
super(OptionCounter, self).__init__(collections.Counter(value))
defverify(self, world: type[World], player_name: str, plando_options: PlandoOptions) ->None:
super(OptionCounter, self).verify(world, player_name, plando_options)
range_errors= []
ifself.maxisnotNone:
range_errors+= [
f"\"{key}: {value}\" is higher than maximum allowed value {self.max}."
forkey, valueinself.value.items() ifvalue>self.max
]
ifself.minisnotNone:
range_errors+= [
f"\"{key}: {value}\" is lower than minimum allowed value {self.min}."
forkey, valueinself.value.items() ifvalue<self.min
]
ifrange_errors:
range_errors= [f"For option {getattr(self, 'display_name', self)}:"] +range_errors
raiseOptionError("\n".join(range_errors))
classItemDict(OptionCounter):
verify_item_name=True
min=0
def__init__(self, value: dict[str, int]) ->None:
# Backwards compatibility: Cull 0s to make "in" checks behave the same as when this wasn't a OptionCounter
value= {item_name: amountforitem_name, amountinvalue.items() ifamount!=0}
super(ItemDict, self).__init__(value)
classOptionList(Option[typing.List[typing.Any]], VerifyKeys):
# Supports duplicate entries and ordering.
# If only unique entries are needed and input order of elements does not matter, OptionSet should be used instead.
# Not a docstring so it doesn't get grabbed by the options system.
default= ()
supports_weighting=False
def__init__(self, value: typing.Iterable[typing.Any]):
self.value=list(deepcopy(value))
super(OptionList, self).__init__()
@classmethod
deffrom_text(cls, text: str):
returncls([option.strip() foroptionintext.split(",")])
@classmethod
deffrom_any(cls, data: typing.Any):
ifis_iterable_except_str(data):
returncls(data)
returncls.from_text(str(data))
@classmethod
defget_option_name(cls, value):
return", ".join(map(str, value))
def__contains__(self, item):
returniteminself.value