2023-04-23 08:38:28 +00:00
|
|
|
import struct
|
|
|
|
|
|
|
|
from .base import IDZHandlerBase
|
|
|
|
from core.config import CoreConfig
|
|
|
|
from ..config import IDZConfig
|
|
|
|
from ..const import IDZConstants
|
|
|
|
|
2023-04-24 01:04:52 +00:00
|
|
|
|
2023-04-23 08:38:28 +00:00
|
|
|
class IDZHandlerUpdateStoryClearNum(IDZHandlerBase):
|
2023-04-24 01:04:52 +00:00
|
|
|
cmd_codes = [0x007F, 0x097F, 0x013D, 0x0144]
|
|
|
|
rsp_codes = [0x0080, 0x013E, 0x013E, 0x0145]
|
2023-04-23 08:38:28 +00:00
|
|
|
name = "update_story_clear_num"
|
2023-04-24 01:04:52 +00:00
|
|
|
|
2023-04-23 08:38:28 +00:00
|
|
|
def __init__(self, core_cfg: CoreConfig, game_cfg: IDZConfig, version: int) -> None:
|
|
|
|
super().__init__(core_cfg, game_cfg, version)
|
|
|
|
|
|
|
|
if self.version == IDZConstants.VER_IDZ_110:
|
|
|
|
self.size = 0x0220
|
|
|
|
elif self.version == IDZConstants.VER_IDZ_130:
|
2023-04-24 01:04:52 +00:00
|
|
|
self.size = 0x04F0
|
2023-04-23 08:38:28 +00:00
|
|
|
elif self.version == IDZConstants.VER_IDZ_210:
|
|
|
|
self.size = 0x0510
|
|
|
|
elif self.version == IDZConstants.VER_IDZ_230:
|
|
|
|
self.size = 0x0800
|
2023-04-24 01:04:52 +00:00
|
|
|
|
2023-04-23 08:38:28 +00:00
|
|
|
def handle(self, data: bytes) -> bytearray:
|
|
|
|
return super().handle(data)
|