blob: 5c59e4cb8fe75a49c428fef7b59459eb7651dfd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
|