2023-04-23 17:26:44 +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 17:26:44 +00:00
|
|
|
class IDZHandleUpdateUIReport(IDZHandlerBase):
|
2023-04-24 01:04:52 +00:00
|
|
|
cmd_codes = [0x0084, 0x0084, 0x007E, 0x007E]
|
2023-04-23 17:26:44 +00:00
|
|
|
name = "update_ui_report"
|
|
|
|
|
|
|
|
def __init__(self, core_cfg: CoreConfig, game_cfg: IDZConfig, version: int) -> None:
|
|
|
|
super().__init__(core_cfg, game_cfg, version)
|
2023-04-24 01:04:52 +00:00
|
|
|
|
2023-04-23 17:26:44 +00:00
|
|
|
def handle(self, data: bytes) -> bytearray:
|
2023-04-24 01:04:52 +00:00
|
|
|
ret = super().handle(data)
|
2023-04-23 17:26:44 +00:00
|
|
|
return ret
|