3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #ifndef CLIENTSERVER_HEADER
21 #define CLIENTSERVER_HEADER
23 #include "util/pointer.h"
25 SharedBuffer<u8> makePacket_TOCLIENT_TIME_OF_DAY(u16 time, float time_speed);
28 changes by PROTOCOL_VERSION:
31 Base for writing changes here
36 Add TOCLIENT_CRAFTITEMDEF
38 Obsolete TOSERVER_CLICK_ACTIVEOBJECT
39 Obsolete TOSERVER_GROUND_ACTION
41 Make players to be handled mostly as ActiveObjects
43 Only non-cached textures are sent
46 Obsolete TOCLIENT_TOOLDEF
47 Obsolete TOCLIENT_CRAFTITEMDEF
48 Compress the contents of TOCLIENT_ITEMDEF and TOCLIENT_NODEDEF
50 Digging based on item groups
53 ContentFeatures and NodeDefManager use a different serialization
54 format; better for future version cross-compatibility
58 Version raised to force 'fly' and 'fast' privileges into effect.
59 Node metadata change (came in later; somewhat incompatible)
61 TileDef in ContentFeatures
64 TOCLIENT_INVENTORY_FORMSPEC
67 TOSERVER_INVENTORY_FIELDS
69 TOCLIENT_DETACHED_INVENTORY
71 InventoryList field "Width" (deserialization fails with old versions)
73 Added transfer of player pressed keys to the server
74 Added new messages for mesh and bone animation, as well as attachments
75 GENERIC_CMD_SET_ANIMATION
76 GENERIC_CMD_SET_BONE_POSITION
77 GENERIC_CMD_SET_ATTACHMENT
79 Serialization format changes
81 TOCLIENT_SHOW_FORMSPEC
84 #define LATEST_PROTOCOL_VERSION 16
86 // Server's supported network protocol range
87 #define SERVER_PROTOCOL_VERSION_MIN 13
88 #define SERVER_PROTOCOL_VERSION_MAX LATEST_PROTOCOL_VERSION
90 // Client's supported network protocol range
91 #define CLIENT_PROTOCOL_VERSION_MIN 13
92 #define CLIENT_PROTOCOL_VERSION_MAX LATEST_PROTOCOL_VERSION
94 // Constant that differentiates the protocol from random data and other protocols
95 #define PROTOCOL_ID 0x4f457403
97 #define PASSWORD_SIZE 28 // Maximum password length. Allows for
98 // base64-encoded SHA-1 (27+\0).
100 #define TEXTURENAME_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_."
104 TOCLIENT_INIT = 0x10,
106 Server's reply to TOSERVER_INIT.
107 Sent second after connected.
109 [0] u16 TOSERVER_INIT
110 [2] u8 deployed version
111 [3] v3s16 player's position + v3f(0,BS/2,0) floatToInt'd
112 [12] u64 map seed (new as of 2011-02-27)
113 [20] f1000 recommended send interval (in seconds) (new as of 14)
115 NOTE: The position in here is deprecated; position is
116 explicitly sent afterwards
119 TOCLIENT_BLOCKDATA = 0x20, //TODO: Multiple blocks
120 TOCLIENT_ADDNODE = 0x21,
121 TOCLIENT_REMOVENODE = 0x22,
123 TOCLIENT_PLAYERPOS = 0x23, // Obsolete
126 // Followed by an arbitary number of these:
127 // Number is determined from packet length.
129 [N+2] v3s32 position*100
130 [N+2+12] v3s32 speed*100
131 [N+2+12+12] s32 pitch*100
132 [N+2+12+12+4] s32 yaw*100
135 TOCLIENT_PLAYERINFO = 0x24, // Obsolete
138 // Followed by an arbitary number of these:
139 // Number is determined from packet length.
144 TOCLIENT_OPT_BLOCK_NOT_FOUND = 0x25, // Obsolete
146 TOCLIENT_SECTORMETA = 0x26, // Obsolete
150 [3...] v2s16 pos + sector metadata
153 TOCLIENT_INVENTORY = 0x27,
156 [2] serialized inventory
159 TOCLIENT_OBJECTDATA = 0x28, // Obsolete
164 u16 number of player positions
177 TOCLIENT_TIME_OF_DAY = 0x29,
181 Added in a later version:
185 // (oops, there is some gap here)
187 TOCLIENT_CHAT_MESSAGE = 0x30,
194 TOCLIENT_ACTIVE_OBJECT_REMOVE_ADD = 0x31,
197 u16 count of removed objects
198 for all removed objects {
201 u16 count of added objects
202 for all added objects {
205 u32 initialization data length
206 string initialization data
210 TOCLIENT_ACTIVE_OBJECT_MESSAGES = 0x32,
227 TOCLIENT_MOVE_PLAYER = 0x34,
230 v3f1000 player position
235 TOCLIENT_ACCESS_DENIED = 0x35,
242 TOCLIENT_PLAYERITEM = 0x36, // Obsolete
245 u16 count of player items
246 for all player items {
248 u16 length of serialized item
249 string serialized item
253 TOCLIENT_DEATHSCREEN = 0x37,
256 u8 bool set camera point target
257 v3f1000 camera point target (to point the death cause or whatever)
260 TOCLIENT_MEDIA = 0x38,
263 u16 total number of texture bunches
264 u16 index of this bunch
265 u32 number of files in this bunch
272 u16 length of remote media server url (if applicable)
276 TOCLIENT_TOOLDEF = 0x39,
279 u32 length of the next item
280 serialized ToolDefManager
283 TOCLIENT_NODEDEF = 0x3a,
286 u32 length of the next item
287 serialized NodeDefManager
290 TOCLIENT_CRAFTITEMDEF = 0x3b,
293 u32 length of the next item
294 serialized CraftiItemDefManager
297 TOCLIENT_ANNOUNCE_MEDIA = 0x3c,
305 u16 length of sha1_digest
310 TOCLIENT_ITEMDEF = 0x3d,
313 u32 length of next item
314 serialized ItemDefManager
317 TOCLIENT_PLAY_SOUND = 0x3f,
324 u8 type (0=local, 1=positional, 2=object)
325 s32[3] pos_nodes*10000
330 TOCLIENT_STOP_SOUND = 0x40,
336 TOCLIENT_PRIVILEGES = 0x41,
339 u16 number of privileges
345 TOCLIENT_INVENTORY_FORMSPEC = 0x42,
352 TOCLIENT_DETACHED_INVENTORY = 0x43,
357 [2] serialized inventory
359 TOCLIENT_SHOW_FORMSPEC = 0x44,
368 TOCLIENT_MOVEMENT = 0x45,
371 f1000 movement_acceleration_default
372 f1000 movement_acceleration_air
373 f1000 movement_acceleration_fast
374 f1000 movement_speed_walk
375 f1000 movement_speed_crouch
376 f1000 movement_speed_fast
377 f1000 movement_speed_climb
378 f1000 movement_speed_jump
379 f1000 movement_liquid_fluidity
380 f1000 movement_liquid_fluidity_smooth
381 f1000 movement_liquid_sink
382 f1000 movement_gravity
390 Sent first after connected.
392 [0] u16 TOSERVER_INIT
393 [2] u8 SER_FMT_VER_HIGHEST
394 [3] u8[20] player_name
395 [23] u8[28] password (new in some version)
396 [51] u16 minimum supported network protocol version (added sometime)
397 [53] u16 maximum supported network protocol version (added later than the previous one)
400 TOSERVER_INIT2 = 0x11,
402 Sent as an ACK for TOCLIENT_INIT.
403 After this, the server can send data.
405 [0] u16 TOSERVER_INIT2
408 TOSERVER_GETBLOCK=0x20, // Obsolete
409 TOSERVER_ADDNODE = 0x21, // Obsolete
410 TOSERVER_REMOVENODE = 0x22, // Obsolete
412 TOSERVER_PLAYERPOS = 0x23,
415 [2] v3s32 position*100
416 [2+12] v3s32 speed*100
417 [2+12+12] s32 pitch*100
418 [2+12+12+4] s32 yaw*100
419 [2+12+12+4+4] u32 keyPressed
422 TOSERVER_GOTBLOCKS = 0x24,
431 TOSERVER_DELETEDBLOCKS = 0x25,
440 TOSERVER_ADDNODE_FROM_INVENTORY = 0x26, // Obsolete
447 TOSERVER_CLICK_OBJECT = 0x27, // Obsolete
451 [2] u8 button (0=left, 1=right)
457 TOSERVER_GROUND_ACTION = 0x28, // Obsolete
462 [3] v3s16 nodepos_undersurface
463 [9] v3s16 nodepos_abovesurface
466 0: start digging (from undersurface)
467 1: place block (to abovesurface)
468 2: stop digging (all parameters ignored)
472 TOSERVER_RELEASE = 0x29, // Obsolete
474 // (oops, there is some gap here)
476 TOSERVER_SIGNTEXT = 0x30, // Old signs, obsolete
485 TOSERVER_INVENTORY_ACTION = 0x31,
487 See InventoryAction in inventory.h
490 TOSERVER_CHAT_MESSAGE = 0x32,
497 TOSERVER_SIGNNODETEXT = 0x33, // obsolete
505 TOSERVER_CLICK_ACTIVEOBJECT = 0x34, // Obsolete
509 [2] u8 button (0=left, 1=right)
514 TOSERVER_DAMAGE = 0x35,
520 TOSERVER_PASSWORD=0x36,
522 Sent to change password.
524 [0] u16 TOSERVER_PASSWORD
525 [2] u8[28] old password
526 [30] u8[28] new password
529 TOSERVER_PLAYERITEM=0x37,
531 Sent to change selected item.
533 [0] u16 TOSERVER_PLAYERITEM
537 TOSERVER_RESPAWN=0x38,
542 TOSERVER_INTERACT = 0x39,
547 [5] u32 length of the next item
548 [9] serialized PointedThing
550 0: start digging (from undersurface) or use
551 1: stop digging (all parameters ignored)
553 3: place block or item (to abovesurface)
556 (Obsoletes TOSERVER_GROUND_ACTION and TOSERVER_CLICK_ACTIVEOBJECT.)
559 TOSERVER_REMOVED_SOUNDS = 0x3a,
566 TOSERVER_NODEMETA_FIELDS = 0x3b,
571 u8[len] form name (reserved for future use)
580 TOSERVER_INVENTORY_FIELDS = 0x3c,
584 u8[len] form name (reserved for future use)
593 TOSERVER_REQUEST_MEDIA = 0x40,
596 u16 number of files requested
603 TOSERVER_RECEIVED_MEDIA = 0x41,