From a22381eff3bf2286ee27f4d15ddf4c431ea063be Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Thu, 12 Dec 2024 02:12:52 +0100 Subject: next commit --- packets/friend.gd | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 packets/friend.gd (limited to 'packets/friend.gd') diff --git a/packets/friend.gd b/packets/friend.gd new file mode 100644 index 0000000..70120fe --- /dev/null +++ b/packets/friend.gd @@ -0,0 +1,40 @@ +class_name Friend +extends PacketChunk + + +const BYTE_LENGTH := 32 + + +## Byte Type: u32 +## Byte Length: 4 +var account_id: int + +## Byte Type: u32 +## Byte Length: 4 +var character_id: int + +## Byte Type: u8 +## Byte Length: 24 +var name: String + + +static func from_bytes(bytes: PackedByteArray): + var quest = Friend.new() + + quest.account_id = bytes.decode_u32(0) + quest.character_id = bytes.decode_u32(4) + quest.name = bytes.slice(8, 8 + 24).get_string_from_utf8() + + return quest + + +static func array_from_bytes(bytes: PackedByteArray) -> Array[Friend]: + var array: Array[Friend] = [] + + var offset = 0 + while offset < bytes.size(): + var chunk = from_bytes(bytes.slice(offset)) + array.append(chunk) + offset += chunk.byte_length + + return array -- cgit v1.2.3