1: | <?php |
2: | |
3: | |
4: | |
5: | |
6: | |
7: | |
8: | |
9: | |
10: | |
11: | |
12: | |
13: | |
14: | |
15: | |
16: | |
17: | |
18: | |
19: | namespace GameQ\Protocols; |
20: | |
21: | use GameQ\Buffer; |
22: | use GameQ\Exception\Protocol as Exception; |
23: | use GameQ\Protocol; |
24: | use GameQ\Result; |
25: | use GameQ\Server; |
26: | |
27: | |
28: | |
29: | |
30: | |
31: | |
32: | |
33: | |
34: | class Raknet extends Protocol |
35: | { |
36: | |
37: | |
38: | |
39: | const OFFLINE_MESSAGE_DATA_ID = "\x00\xFF\xFF\x00\xFE\xFE\xFE\xFE\xFD\xFD\xFD\xFD\x12\x34\x56\x78"; |
40: | |
41: | |
42: | |
43: | |
44: | const ID_UNCONNECTED_PONG = "\x1C"; |
45: | |
46: | |
47: | |
48: | |
49: | |
50: | |
51: | |
52: | protected $packets = [ |
53: | self::PACKET_STATUS => "\x01%s%s\x02\x00\x00\x00\x00\x00\x00\x00", |
54: | ]; |
55: | |
56: | |
57: | |
58: | |
59: | |
60: | |
61: | protected $protocol = 'raknet'; |
62: | |
63: | |
64: | |
65: | |
66: | |
67: | |
68: | protected $name = 'raknet'; |
69: | |
70: | |
71: | |
72: | |
73: | |
74: | |
75: | protected $name_long = "Raknet Server"; |
76: | |
77: | |
78: | |
79: | |
80: | |
81: | |
82: | |
83: | public function beforeSend(Server $server) |
84: | { |
85: | |
86: | $this->packets[self::PACKET_STATUS] = sprintf( |
87: | $this->packets[self::PACKET_STATUS], |
88: | pack('Q', time()), |
89: | self::OFFLINE_MESSAGE_DATA_ID |
90: | ); |
91: | } |
92: | |
93: | |
94: | |
95: | |
96: | |
97: | |
98: | |
99: | public function processResponse() |
100: | { |
101: | |
102: | $buffer = new Buffer(implode($this->packets_response)); |
103: | |
104: | |
105: | $header = $buffer->read(1); |
106: | |
107: | |
108: | if ($header !== self::ID_UNCONNECTED_PONG) { |
109: | throw new Exception(sprintf( |
110: | '%s The header returned "%s" does not match the expected header of "%s"', |
111: | __METHOD__, |
112: | bin2hex($header), |
113: | bin2hex(self::ID_UNCONNECTED_PONG) |
114: | )); |
115: | } |
116: | |
117: | |
118: | $buffer->skip(8); |
119: | |
120: | |
121: | $serverGUID = $buffer->readInt64(); |
122: | |
123: | |
124: | $magicCheck = $buffer->read(16); |
125: | |
126: | |
127: | if ($magicCheck !== self::OFFLINE_MESSAGE_DATA_ID) { |
128: | throw new Exception(sprintf( |
129: | '%s The magic value returned "%s" does not match the expected value of "%s"', |
130: | __METHOD__, |
131: | bin2hex($magicCheck), |
132: | bin2hex(self::OFFLINE_MESSAGE_DATA_ID) |
133: | )); |
134: | } |
135: | |
136: | |
137: | |
138: | |
139: | $buffer->skip(2); |
140: | |
141: | |
142: | $result = new Result(); |
143: | |
144: | |
145: | $info = explode(';', $buffer->getBuffer()); |
146: | |
147: | $result->add('edition', $info[0]); |
148: | $result->add('motd_line_1', $info[1]); |
149: | $result->add('protocol_version', (int)$info[2]); |
150: | $result->add('version', $info[3]); |
151: | $result->add('num_players', (int)$info[4]); |
152: | $result->add('max_players', (int)$info[5]); |
153: | $result->add('server_uid', $info[6]); |
154: | $result->add('motd_line_2', $info[7]); |
155: | $result->add('gamemode', $info[8]); |
156: | $result->add('gamemode_numeric', (int)$info[9]); |
157: | $result->add('port_ipv4', (isset($info[10])) ? (int)$info[10] : null); |
158: | $result->add('port_ipv6', (isset($info[11])) ? (int)$info[11] : null); |
159: | $result->add('dedicated', 1); |
160: | |
161: | unset($header, $serverGUID, $magicCheck, $info); |
162: | |
163: | return $result->fetch(); |
164: | } |
165: | } |
166: | |