diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-12-15 14:23:25 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-12-15 14:23:25 +0100 |
commit | a14e88ff4d0d87841a44254e2bff1784da6e8b48 (patch) | |
tree | 0507cb8117da7943805a6479aef4526edb2db4dd /packets/equippable_switch_item_information.gd | |
parent | ca4d1945598863d0ce297f4272317e5dd5797f88 (diff) |
next commit
Diffstat (limited to 'packets/equippable_switch_item_information.gd')
-rw-r--r-- | packets/equippable_switch_item_information.gd | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/packets/equippable_switch_item_information.gd b/packets/equippable_switch_item_information.gd new file mode 100644 index 0000000..5c59e4c --- /dev/null +++ b/packets/equippable_switch_item_information.gd @@ -0,0 +1,37 @@ +## rAthena References: +## - +class_name EquippableSwitchItemInformation +extends PacketChunk + + +const BYTE_LENGTH := 6 + + +## Byte Type: u16 +## Byte Length: 2 +var index: int + +## Byte Type: u32 +## Byte Length: 4 +var position: int + + +static func from_bytes(bytes: PackedByteArray): + var info = EquippableSwitchItemInformation.new() + + info.index = bytes.decode_u16(0) + info.position = bytes.decode_u32(2) + + return info + + +static func array_from_bytes(bytes: PackedByteArray) -> Array[EquippableSwitchItemInformation]: + var array: Array[EquippableSwitchItemInformation] = [] + + var offset = 0 + while offset < bytes.size(): + var chunk = from_bytes(bytes.slice(offset)) + array.append(chunk) + offset += chunk.byte_length + + return array |