summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-04-29 13:38:29 -0500
committerGitHub <noreply@github.com>2024-04-29 20:38:29 +0200
commit392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c (patch)
tree9a8f362beb74b79aaba0bf682d61fef701103018
parentb45b9bd74612239ebc29322fc340b1bee62e7032 (diff)
downloadlingo-apworld-392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c.tar.gz
lingo-apworld-392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c.tar.bz2
lingo-apworld-392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c.zip
Lingo: Fix world load on frozen 3.8 (#3220)
* Lingo: Fix world load on frozen 3.8

* Fixed absolute imports in unit test

* Made unpickling safer
-rw-r--r--options.py2
-rw-r--r--static_logic.py13
-rw-r--r--test/TestDatafile.py4
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
3from schema import And, Schema 3from schema import And, Schema
4 4
5from Options import Toggle, Choice, DefaultOnToggle, Range, PerGameCommonOptions, StartInventoryPool, OptionDict 5from Options import Toggle, Choice, DefaultOnToggle, Range, PerGameCommonOptions, StartInventoryPool, OptionDict
6from worlds.lingo.items import TRAP_ITEMS 6from .items import TRAP_ITEMS
7 7
8 8
9class ShuffleDoors(Choice): 9class 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):
78def load_static_data_from_file(): 78def 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 @@
1import os 1import os
2import unittest 2import unittest
3 3
4from worlds.lingo.static_logic import HASHES 4from ..static_logic import HASHES
5from worlds.lingo.utils.pickle_static_data import hash_file 5from ..utils.pickle_static_data import hash_file
6 6
7 7
8class TestDatafile(unittest.TestCase): 8class TestDatafile(unittest.TestCase):