summaryrefslogtreecommitdiff
path: root/packets/character_server_information.gd
blob: 19f22c178a15f6a1b9d22ccc6b371872ef960880 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
class_name CharacterServerInformation
extends PacketChunk


const BYTE_LENGTH := 160


## Byte Type: u32
## Byte Length: 4
var server_ip: PackedByteArray

## Byte Type: u16
## Byte Length: 2
var server_port: int

## Byte Type: u8
## Byte Length: 20
var server_name: String

## Byte Type: u16
## Byte Length: 2
var user_count: int

## Byte Type: u16
## Byte Length: 2
var server_type: int

## Byte Type: u16
## Byte Length: 2
var display_new: int

## Byte Type: u8
## Byte Length: 128
var unknown: PackedByteArray


func get_server_ip():
	return "%s.%s.%s.%s" % [
		server_ip.decode_u8(0),
		server_ip.decode_u8(1),
		server_ip.decode_u8(2),
		server_ip.decode_u8(3)
	]


static func from_bytes(bytes: PackedByteArray):
	var info = CharacterServerInformation.new()
	
	info.server_ip = bytes.slice(0, 4)
	info.server_port = bytes.decode_u16(4)
	info.server_name = bytes.slice(6, 6 + 20).get_string_from_utf8()
	info.user_count = bytes.decode_u16(26)
	info.server_type = bytes.decode_u16(28)
	info.display_new = bytes.decode_u16(30)
	info.unknown = bytes.slice(32)
	
	return info


static func array_from_bytes(bytes: PackedByteArray) -> Array[CharacterServerInformation]:
	var array: Array[CharacterServerInformation] = []
	
	var offset = 0
	while offset < bytes.size():
		var chunk = from_bytes(bytes.slice(offset))
		array.append(chunk)
		offset += chunk.byte_length
	
	return array