]> git.lizzy.rs Git - dragonfireclient.git/blob - src/clientserver.h
5e919b2f7b94de19155617cdc091ac730be74a7c
[dragonfireclient.git] / src / clientserver.h
1 /*
2 Minetest-c55
3 Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
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 General Public License for more details.
14
15 You should have received a copy of the GNU 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.
18 */
19
20 #ifndef CLIENTSERVER_HEADER
21 #define CLIENTSERVER_HEADER
22
23 #include "utility.h"
24
25 #define PROTOCOL_ID 0x4f457403
26
27 enum ToClientCommand
28 {
29         TOCLIENT_INIT = 0x10,
30         /*
31                 Server's reply to TOSERVER_INIT.
32                 Sent second after connected.
33
34                 [0] u16 TOSERVER_INIT
35                 [2] u8 deployed version
36                 [3] v3s16 player's position + v3f(0,BS/2,0) floatToInt'd
37         */
38
39         TOCLIENT_BLOCKDATA = 0x20, //TODO: Multiple blocks
40         TOCLIENT_ADDNODE = 0x21,
41         TOCLIENT_REMOVENODE = 0x22,
42         
43         TOCLIENT_PLAYERPOS = 0x23,
44         /*
45                 [0] u16 command
46                 // Followed by an arbitary number of these:
47                 // Number is determined from packet length.
48                 [N] u16 peer_id
49                 [N+2] v3s32 position*100
50                 [N+2+12] v3s32 speed*100
51                 [N+2+12+12] s32 pitch*100
52                 [N+2+12+12+4] s32 yaw*100
53         */
54
55         TOCLIENT_PLAYERINFO = 0x24,
56         /*
57                 [0] u16 command
58                 // Followed by an arbitary number of these:
59                 // Number is determined from packet length.
60                 [N] u16 peer_id
61                 [N] char[20] name
62         */
63         
64         TOCLIENT_OPT_BLOCK_NOT_FOUND = 0x25, // Not used
65
66         TOCLIENT_SECTORMETA = 0x26, // Not used
67         /*
68                 [0] u16 command
69                 [2] u8 sector count
70                 [3...] v2s16 pos + sector metadata
71         */
72
73         TOCLIENT_INVENTORY = 0x27,
74         /*
75                 [0] u16 command
76                 [2] serialized inventory
77         */
78         
79         TOCLIENT_OBJECTDATA = 0x28,
80         /*
81                 Sent as unreliable.
82
83                 u16 command
84                 u16 number of player positions
85                 for each player:
86                         v3s32 position*100
87                         v3s32 speed*100
88                         s32 pitch*100
89                         s32 yaw*100
90                 u16 count of blocks
91                 for each block:
92                         v3s16 blockpos
93                         block objects
94         */
95
96         TOCLIENT_TIME_OF_DAY = 0x29,
97         /*
98                 u16 command
99                 u16 time (0-23999)
100         */
101 };
102
103 enum ToServerCommand
104 {
105         TOSERVER_INIT=0x10,
106         /*
107                 Sent first after connected.
108
109                 [0] u16 TOSERVER_INIT
110                 [2] u8 SER_FMT_VER_HIGHEST
111                 [3] u8[20] player_name
112         */
113
114         TOSERVER_INIT2 = 0x11,
115         /*
116                 Sent as an ACK for TOCLIENT_INIT.
117                 After this, the server can send data.
118
119                 [0] u16 TOSERVER_INIT2
120         */
121
122         TOSERVER_GETBLOCK=0x20, // Not used
123         TOSERVER_ADDNODE = 0x21, // Not used
124         TOSERVER_REMOVENODE = 0x22, // deprecated
125
126         TOSERVER_PLAYERPOS = 0x23,
127         /*
128                 [0] u16 command
129                 [2] v3s32 position*100
130                 [2+12] v3s32 speed*100
131                 [2+12+12] s32 pitch*100
132                 [2+12+12+4] s32 yaw*100
133         */
134
135         TOSERVER_GOTBLOCKS = 0x24,
136         /*
137                 [0] u16 command
138                 [2] u8 count
139                 [3] v3s16 pos_0
140                 [3+6] v3s16 pos_1
141                 ...
142         */
143
144         TOSERVER_DELETEDBLOCKS = 0x25,
145         /*
146                 [0] u16 command
147                 [2] u8 count
148                 [3] v3s16 pos_0
149                 [3+6] v3s16 pos_1
150                 ...
151         */
152
153         TOSERVER_ADDNODE_FROM_INVENTORY = 0x26, // deprecated
154         /*
155                 [0] u16 command
156                 [2] v3s16 pos
157                 [8] u16 i
158         */
159
160         TOSERVER_CLICK_OBJECT = 0x27,
161         /*
162                 length: 13
163                 [0] u16 command
164                 [2] u8 button (0=left, 1=right)
165                 [3] v3s16 blockpos
166                 [9] s16 id
167                 [11] u16 item
168         */
169
170         TOSERVER_GROUND_ACTION = 0x28,
171         /*
172                 length: 17
173                 [0] u16 command
174                 [2] u8 action
175                 [3] v3s16 nodepos_undersurface
176                 [9] v3s16 nodepos_abovesurface
177                 [15] u16 item
178                 actions:
179                 0: start digging (from undersurface)
180                 1: place block (to abovesurface)
181                 2: stop digging (all parameters ignored)
182         */
183         
184         TOSERVER_RELEASE = 0x29, // Not used
185
186         TOSERVER_SIGNTEXT = 0x30,
187         /*
188                 u16 command
189                 v3s16 blockpos
190                 s16 id
191                 u16 textlen
192                 textdata
193         */
194 };
195
196 inline SharedBuffer<u8> makePacket_TOCLIENT_TIME_OF_DAY(u16 time)
197 {
198         SharedBuffer<u8> data(2+2);
199         writeU16(&data[0], TOCLIENT_TIME_OF_DAY);
200         writeU16(&data[2], time);
201         return data;
202 }
203
204 #endif
205