summaryrefslogtreecommitdiff
path: root/packets/quest_details.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-11-30 12:46:08 +0100
committerDaniel Weipert <git@mail.dweipert.de>2024-11-30 12:46:08 +0100
commitd560f77811d4fc6f29bf477356a6d2e58dda0be1 (patch)
tree3ac2c4267b5c88e40849416115977574e9f09a83 /packets/quest_details.gd
parent313afffce7a823c30acf4853b083f9ca5132e879 (diff)
next commit
Diffstat (limited to 'packets/quest_details.gd')
-rw-r--r--packets/quest_details.gd65
1 files changed, 0 insertions, 65 deletions
diff --git a/packets/quest_details.gd b/packets/quest_details.gd
deleted file mode 100644
index eaf8d2e..0000000
--- a/packets/quest_details.gd
+++ /dev/null
@@ -1,65 +0,0 @@
-class_name QuestDetails
-extends PacketChunk
-
-
-## Byte Type: u32
-## Byte Length: 4
-var hunt_identification: int
-
-## Byte Type: u32
-## Byte Length: 4
-var objective_type: int
-
-## Byte Type: u32
-## Byte Length: 4
-var mob_id: int
-
-## Byte Type: u16
-## Byte Length: 2
-var minimum_level: int
-
-## Byte Type: u16
-## Byte Length: 2
-var maximum_level: int
-
-## Byte Type: u16
-## Byte Length: 2
-var kill_count: int
-
-## Byte Type: u16
-## Byte Length: 2
-var total_count: int
-
-## Byte Type: u8
-## Byte Length: 24
-var mob_name: String
-
-
-func get_byte_length():
- return 44
-
-
-static func from_bytes(bytes: PackedByteArray):
- var details = QuestDetails.new()
-
- details.server_ip = bytes.slice(0, 4)
- details.server_port = bytes.decode_u16(4)
- details.server_name = bytes.slice(6, 6 + 20).get_string_from_utf8()
- details.user_count = bytes.decode_u16(26)
- details.server_type = bytes.decode_u16(28)
- details.display_new = bytes.decode_u16(30)
- details.unknown = bytes.slice(32)
-
- return details
-
-
-static func array_from_bytes(bytes: PackedByteArray) -> Array:
- var array = []
-
- var offset = 0
- while offset < bytes.size():
- var chunk = from_bytes(bytes.slice(offset))
- array.append(chunk)
- offset += chunk.byte_length
-
- return array