Skip to content

Commit 8e66806

Browse files
Compile bmsas
1 parent 0832ddd commit 8e66806

File tree

1 file changed

+11
-7
lines changed
  • src/mercury_engine_data_structures/formats

1 file changed

+11
-7
lines changed

src/mercury_engine_data_structures/formats/bmsas.py

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
import functools
2+
13
import construct
24
from construct.core import (
35
Array,
46
Byte,
57
Const,
68
Construct,
7-
Error,
89
Flag,
910
Hex,
1011
If,
@@ -22,7 +23,7 @@
2223
from mercury_engine_data_structures.construct_extensions.strings import PascalStringRobust
2324
from mercury_engine_data_structures.formats.base_resource import BaseResource
2425
from mercury_engine_data_structures.formats.property_enum import PropertyEnum, PropertyEnumDoubleUnsafe
25-
from mercury_engine_data_structures.game_check import Game
26+
from mercury_engine_data_structures.game_check import Game, GameSpecificStruct
2627

2728
StrId = PascalStringRobust(Int16ul, "utf-8")
2829

@@ -294,9 +295,12 @@ def build_arg_list_sr(obj_data: dict, io, this):
294295

295296
class Bmsas(BaseResource):
296297
@classmethod
298+
@functools.lru_cache
297299
def construct_class(cls, target_game: Game) -> Construct:
298-
if target_game == Game.DREAD:
299-
return BMSAS_Dread
300-
if target_game == Game.SAMUS_RETURNS:
301-
return BMSAS_SR
302-
return Error
300+
return GameSpecificStruct(
301+
{
302+
Game.SAMUS_RETURNS: BMSAS_SR,
303+
Game.DREAD: BMSAS_Dread,
304+
}[target_game],
305+
target_game,
306+
).compile()

0 commit comments

Comments
 (0)