summaryrefslogtreecommitdiff
path: root/packets/equippable_switch_item_information.gd
diff options
context:
space:
mode:
Diffstat (limited to 'packets/equippable_switch_item_information.gd')
-rw-r--r--packets/equippable_switch_item_information.gd37
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