diff options
-rw-r--r-- | options.py | 2 | ||||
-rw-r--r-- | static_logic.py | 13 | ||||
-rw-r--r-- | test/TestDatafile.py | 4 |
3 files changed, 11 insertions, 8 deletions
diff --git a/options.py b/options.py index 05fb4ed..65f2726 100644 --- a/options.py +++ b/options.py | |||
@@ -3,7 +3,7 @@ from dataclasses import dataclass | |||
3 | from schema import And, Schema | 3 | from schema import And, Schema |
4 | 4 | ||
5 | from Options import Toggle, Choice, DefaultOnToggle, Range, PerGameCommonOptions, StartInventoryPool, OptionDict | 5 | from Options import Toggle, Choice, DefaultOnToggle, Range, PerGameCommonOptions, StartInventoryPool, OptionDict |
6 | from worlds.lingo.items import TRAP_ITEMS | 6 | from .items import TRAP_ITEMS |
7 | 7 | ||
8 | 8 | ||
9 | class ShuffleDoors(Choice): | 9 | class ShuffleDoors(Choice): |
diff --git a/static_logic.py b/static_logic.py index c7ee001..ff820dd 100644 --- a/static_logic.py +++ b/static_logic.py | |||
@@ -78,13 +78,16 @@ def get_progressive_item_id(name: str): | |||
78 | def load_static_data_from_file(): | 78 | def load_static_data_from_file(): |
79 | global PAINTING_ENTRANCES, PAINTING_EXITS | 79 | global PAINTING_ENTRANCES, PAINTING_EXITS |
80 | 80 | ||
81 | from . import datatypes | ||
82 | from Utils import safe_builtins | ||
83 | |||
81 | class RenameUnpickler(pickle.Unpickler): | 84 | class RenameUnpickler(pickle.Unpickler): |
82 | def find_class(self, module, name): | 85 | def find_class(self, module, name): |
83 | renamed_module = module | 86 | if module in ("worlds.lingo.datatypes", "datatypes"): |
84 | if module == "datatypes": | 87 | return getattr(datatypes, name) |
85 | renamed_module = "worlds.lingo.datatypes" | 88 | elif module == "builtins" and name in safe_builtins: |
86 | 89 | return getattr(safe_builtins, name) | |
87 | return super(RenameUnpickler, self).find_class(renamed_module, name) | 90 | raise pickle.UnpicklingError(f"global '{module}.{name}' is forbidden") |
88 | 91 | ||
89 | file = pkgutil.get_data(__name__, os.path.join("data", "generated.dat")) | 92 | file = pkgutil.get_data(__name__, os.path.join("data", "generated.dat")) |
90 | pickdata = RenameUnpickler(BytesIO(file)).load() | 93 | pickdata = RenameUnpickler(BytesIO(file)).load() |
diff --git a/test/TestDatafile.py b/test/TestDatafile.py index 9f4e9da..60acb3e 100644 --- a/test/TestDatafile.py +++ b/test/TestDatafile.py | |||
@@ -1,8 +1,8 @@ | |||
1 | import os | 1 | import os |
2 | import unittest | 2 | import unittest |
3 | 3 | ||
4 | from worlds.lingo.static_logic import HASHES | 4 | from ..static_logic import HASHES |
5 | from worlds.lingo.utils.pickle_static_data import hash_file | 5 | from ..utils.pickle_static_data import hash_file |
6 | 6 | ||
7 | 7 | ||
8 | class TestDatafile(unittest.TestCase): | 8 | class TestDatafile(unittest.TestCase): |