forked from Dniel97/artemis
22 lines
640 B
Python
22 lines
640 B
Python
import struct
|
|
|
|
from .base import IDZHandlerBase
|
|
from core.config import CoreConfig
|
|
from ..config import IDZConfig
|
|
from ..const import IDZConstants
|
|
|
|
|
|
class IDZHandlerUnlockProfile(IDZHandlerBase):
|
|
cmd_codes = [0x006F, 0x006F, 0x006B, 0x006B]
|
|
rsp_codes = [0x0070, 0x0070, 0x006C, 0x006C]
|
|
name = "unlock_profile"
|
|
|
|
def __init__(self, core_cfg: CoreConfig, game_cfg: IDZConfig, version: int) -> None:
|
|
super().__init__(core_cfg, game_cfg, version)
|
|
self.size = 0x0010
|
|
|
|
def handle(self, data: bytes) -> bytearray:
|
|
ret = super().handle(data)
|
|
struct.pack_into("<H", ret, 0x4, 1)
|
|
return ret
|