]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - netconn.h
the git describe option --dirty is too new, so don't use it
[xonotic/darkplaces.git] / netconn.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3 Copyright (C) 2003 Forest Hale
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (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.
13
14 See the GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 */
21
22 #ifndef NET_H
23 #define NET_H
24
25 #include "lhnet.h"
26
27 #define NET_HEADERSIZE          (2 * sizeof(unsigned int))
28
29 // NetHeader flags
30 #define NETFLAG_LENGTH_MASK     0x0000ffff
31 #define NETFLAG_DATA            0x00010000
32 #define NETFLAG_ACK                     0x00020000
33 #define NETFLAG_NAK                     0x00040000
34 #define NETFLAG_EOM                     0x00080000
35 #define NETFLAG_UNRELIABLE      0x00100000
36 #define NETFLAG_CTL                     0x80000000
37 #define NETFLAG_CRYPTO          0x40000000
38
39
40 #define NET_PROTOCOL_VERSION    3
41 #define NET_EXTRESPONSE_MAX 16
42
43 /// \page netconn The network info/connection protocol.
44 /// It is used to find Quake
45 /// servers, get info about them, and connect to them.  Once connected, the
46 /// Quake game protocol (documented elsewhere) is used.
47 ///
48 ///
49 /// General notes:\code
50 ///     game_name is currently always "QUAKE", but is there so this same protocol
51 ///             can be used for future games as well; can you say Quake2?
52 ///
53 /// CCREQ_CONNECT
54 ///             string  game_name                               "QUAKE"
55 ///             byte    net_protocol_version    NET_PROTOCOL_VERSION
56 ///
57 /// CCREQ_SERVER_INFO
58 ///             string  game_name                               "QUAKE"
59 ///             byte    net_protocol_version    NET_PROTOCOL_VERSION
60 ///
61 /// CCREQ_PLAYER_INFO
62 ///             byte    player_number
63 ///
64 /// CCREQ_RULE_INFO
65 ///             string  rule
66 ///
67 /// CCREQ_RCON
68 ///             string  password
69 ///             string  command
70 ///
71 ///
72 ///
73 /// CCREP_ACCEPT
74 ///             long    port
75 ///
76 /// CCREP_REJECT
77 ///             string  reason
78 ///
79 /// CCREP_SERVER_INFO
80 ///             string  server_address
81 ///             string  host_name
82 ///             string  level_name
83 ///             byte    current_players
84 ///             byte    max_players
85 ///             byte    protocol_version        NET_PROTOCOL_VERSION
86 ///
87 /// CCREP_PLAYER_INFO
88 ///             byte    player_number
89 ///             string  name
90 ///             long    colors
91 ///             long    frags
92 ///             long    connect_time
93 ///             string  address
94 ///
95 /// CCREP_RULE_INFO
96 ///             string  rule
97 ///             string  value
98 ///
99 /// CCREP_RCON
100 ///             string  reply
101 /// \endcode
102 ///     \note
103 ///             There are two address forms used above.  The short form is just a
104 ///             port number.  The address that goes along with the port is defined as
105 ///             "whatever address you receive this reponse from".  This lets us use
106 ///             the host OS to solve the problem of multiple host addresses (possibly
107 ///             with no routing between them); the host will use the right address
108 ///             when we reply to the inbound connection request.  The long from is
109 ///             a full address and port in a string.  It is used for returning the
110 ///             address of a server that is not running locally.
111
112 #define CCREQ_CONNECT           0x01
113 #define CCREQ_SERVER_INFO       0x02
114 #define CCREQ_PLAYER_INFO       0x03
115 #define CCREQ_RULE_INFO         0x04
116 #define CCREQ_RCON              0x05 // RocketGuy: ProQuake rcon support
117
118 #define CCREP_ACCEPT            0x81
119 #define CCREP_REJECT            0x82
120 #define CCREP_SERVER_INFO       0x83
121 #define CCREP_PLAYER_INFO       0x84
122 #define CCREP_RULE_INFO         0x85
123 #define CCREP_RCON              0x86 // RocketGuy: ProQuake rcon support
124
125 typedef struct netgraphitem_s
126 {
127         double time;
128         int reliablebytes;
129         int unreliablebytes;
130         int ackbytes;
131 }
132 netgraphitem_t;
133
134 typedef struct netconn_s
135 {
136         struct netconn_s *next;
137
138         lhnetsocket_t *mysocket;
139         lhnetaddress_t peeraddress;
140
141         // this is mostly identical to qsocket_t from quake
142
143         /// if this time is reached, kick off peer
144         double connecttime;
145         double timeout;
146         double lastMessageTime;
147         double lastSendTime;
148
149         /// writing buffer to send to peer as the next reliable message
150         /// can be added to at any time, copied into sendMessage buffer when it is
151         /// possible to send a reliable message and then cleared
152         /// @{
153         sizebuf_t message;
154         unsigned char messagedata[NET_MAXMESSAGE];
155         /// @}
156
157         /// reliable message that is currently sending
158         /// (for building fragments)
159         int sendMessageLength;
160         unsigned char sendMessage[NET_MAXMESSAGE];
161
162         /// reliable message that is currently being received
163         /// (for putting together fragments)
164         int receiveMessageLength;
165         unsigned char receiveMessage[NET_MAXMESSAGE];
166
167         /// used by both NQ and QW protocols
168         unsigned int outgoing_unreliable_sequence;
169
170         struct netconn_nq_s
171         {
172                 unsigned int ackSequence;
173                 unsigned int sendSequence;
174
175                 unsigned int receiveSequence;
176                 unsigned int unreliableReceiveSequence;
177         }
178         nq;
179         struct netconn_qw_s
180         {
181                 // QW protocol
182                 qboolean        fatal_error;
183
184                 float           last_received;          // for timeouts
185
186         // the statistics are cleared at each client begin, because
187         // the server connecting process gives a bogus picture of the data
188                 float           frame_latency;          // rolling average
189                 float           frame_rate;
190
191                 int                     drop_count;                     ///< dropped packets, cleared each level
192                 int                     good_count;                     ///< cleared each level
193
194                 int                     qport;
195
196         // sequencing variables
197                 int                     incoming_sequence;
198                 int                     incoming_acknowledged;
199                 int                     incoming_reliable_acknowledged; ///< single bit
200
201                 int                     incoming_reliable_sequence;             ///< single bit, maintained local
202
203                 int                     reliable_sequence;                      ///< single bit
204                 int                     last_reliable_sequence;         ///< sequence number of last send
205         }
206         qw;
207
208         // bandwidth estimator
209         double          cleartime;                      // if realtime > nc->cleartime, free to go
210
211         // this tracks packet loss and packet sizes on the most recent packets
212         // used by shownetgraph feature
213 #define NETGRAPH_PACKETS 256
214 #define NETGRAPH_NOPACKET 0
215 #define NETGRAPH_LOSTPACKET -1
216 #define NETGRAPH_CHOKEDPACKET -2
217         int incoming_packetcounter;
218         netgraphitem_t incoming_netgraph[NETGRAPH_PACKETS];
219         int outgoing_packetcounter;
220         netgraphitem_t outgoing_netgraph[NETGRAPH_PACKETS];
221
222         char address[128];
223         crypto_t crypto;
224 } netconn_t;
225
226 extern netconn_t *netconn_list;
227 extern mempool_t *netconn_mempool;
228
229 extern cvar_t hostname;
230 extern cvar_t developer_networking;
231
232 #define SERVERLIST_TOTALSIZE            2048
233 #define SERVERLIST_VIEWLISTSIZE         SERVERLIST_TOTALSIZE
234 #define SERVERLIST_ANDMASKCOUNT         5
235 #define SERVERLIST_ORMASKCOUNT          5
236
237 typedef enum serverlist_maskop_e
238 {
239         // SLMO_CONTAINS is the default for strings
240         // SLMO_GREATEREQUAL is the default for numbers (also used when OP == CONTAINS or NOTCONTAINS
241         SLMO_CONTAINS,
242         SLMO_NOTCONTAIN,
243
244         SLMO_LESSEQUAL,
245         SLMO_LESS,
246         SLMO_EQUAL,
247         SLMO_GREATER,
248         SLMO_GREATEREQUAL,
249         SLMO_NOTEQUAL,
250         SLMO_STARTSWITH,
251         SLMO_NOTSTARTSWITH
252 } serverlist_maskop_t;
253
254 /// struct with all fields that you can search for or sort by
255 typedef struct serverlist_info_s
256 {
257         /// address for connecting
258         char cname[128];
259         /// ping time for sorting servers
260         int ping;
261         /// name of the game
262         char game[32];
263         /// name of the mod
264         char mod[32];
265         /// name of the map
266         char map[32];
267         /// name of the session
268         char name[128];
269         /// qc-defined short status string
270         char qcstatus[128];
271         /// frags/ping/name list (if they fit in the packet)
272         char players[1400];
273         /// max client number
274         int maxplayers;
275         /// number of currently connected players (including bots)
276         int numplayers;
277         /// number of currently connected players that are bots
278         int numbots;
279         /// number of currently connected players that are not bots
280         int numhumans;
281         /// number of free slots
282         int freeslots;
283         /// protocol version
284         int protocol;
285         /// game data version
286         /// (an integer that is used for filtering incompatible servers,
287         ///  not filterable by QC)
288         int gameversion;
289         /// favorite server flag
290         qboolean isfavorite;
291 } serverlist_info_t;
292
293 typedef enum
294 {
295         SLIF_CNAME,
296         SLIF_PING,
297         SLIF_GAME,
298         SLIF_MOD,
299         SLIF_MAP,
300         SLIF_NAME,
301         SLIF_MAXPLAYERS,
302         SLIF_NUMPLAYERS,
303         SLIF_PROTOCOL,
304         SLIF_NUMBOTS,
305         SLIF_NUMHUMANS,
306         SLIF_FREESLOTS,
307         SLIF_QCSTATUS,
308         SLIF_PLAYERS,
309         SLIF_ISFAVORITE,
310         SLIF_COUNT
311 } serverlist_infofield_t;
312
313 typedef enum
314 {
315         SLSF_DESCENDING = 1,
316         SLSF_FAVORITESFIRST = 2
317 } serverlist_sortflags_t;
318
319 typedef enum
320 {
321         SQS_NONE = 0,
322         SQS_QUERYING,
323         SQS_QUERIED,
324         SQS_TIMEDOUT,
325         SQS_REFRESHING
326 } serverlist_query_state;
327
328 typedef struct serverlist_entry_s
329 {
330         /// used to determine whether this entry should be included into the final view
331         serverlist_query_state query;
332         /// used to count the number of times the host has tried to query this server already
333         unsigned querycounter;
334         /// used to calculate ping when update comes in
335         double querytime;
336         /// query protocol to use on this server, may be PROTOCOL_QUAKEWORLD or PROTOCOL_DARKPLACES7
337         int protocol;
338
339         serverlist_info_t info;
340
341         // legacy stuff
342         char line1[128];
343         char line2[128];
344 } serverlist_entry_t;
345
346 typedef struct serverlist_mask_s
347 {
348         qboolean                        active;
349         serverlist_maskop_t  tests[SLIF_COUNT];
350         serverlist_info_t info;
351 } serverlist_mask_t;
352
353 #define ServerList_GetCacheEntry(x) (&serverlist_cache[(x)])
354 #define ServerList_GetViewEntry(x) (ServerList_GetCacheEntry(serverlist_viewlist[(x)]))
355
356 extern serverlist_mask_t serverlist_andmasks[SERVERLIST_ANDMASKCOUNT];
357 extern serverlist_mask_t serverlist_ormasks[SERVERLIST_ORMASKCOUNT];
358
359 extern serverlist_infofield_t serverlist_sortbyfield;
360 extern int serverlist_sortflags; // not using the enum, as it is a bitmask
361
362 #if SERVERLIST_TOTALSIZE > 65536
363 #error too many servers, change type of index array
364 #endif
365 extern int serverlist_viewcount;
366 extern unsigned short serverlist_viewlist[SERVERLIST_VIEWLISTSIZE];
367
368 extern int serverlist_cachecount;
369 extern serverlist_entry_t *serverlist_cache;
370
371 extern qboolean serverlist_consoleoutput;
372
373 void ServerList_GetPlayerStatistics(int *numplayerspointer, int *maxplayerspointer);
374
375 //============================================================================
376 //
377 // public network functions
378 //
379 //============================================================================
380
381 extern char cl_net_extresponse[NET_EXTRESPONSE_MAX][1400];
382 extern int cl_net_extresponse_count;
383 extern int cl_net_extresponse_last;
384
385 extern char sv_net_extresponse[NET_EXTRESPONSE_MAX][1400];
386 extern int sv_net_extresponse_count;
387 extern int sv_net_extresponse_last;
388
389 extern double masterquerytime;
390 extern int masterquerycount;
391 extern int masterreplycount;
392 extern int serverquerycount;
393 extern int serverreplycount;
394
395 extern sizebuf_t net_message;
396
397 extern cvar_t sv_public;
398
399 extern cvar_t cl_netlocalping;
400
401 extern cvar_t cl_netport;
402 extern cvar_t sv_netport;
403 extern cvar_t net_address;
404 extern cvar_t net_address_ipv6;
405
406 qboolean NetConn_CanSend(netconn_t *conn);
407 int NetConn_SendUnreliableMessage(netconn_t *conn, sizebuf_t *data, protocolversion_t protocol, int rate, qboolean quakesignon_suppressreliables);
408 qboolean NetConn_HaveClientPorts(void);
409 qboolean NetConn_HaveServerPorts(void);
410 void NetConn_CloseClientPorts(void);
411 void NetConn_OpenClientPorts(void);
412 void NetConn_CloseServerPorts(void);
413 void NetConn_OpenServerPorts(int opennetports);
414 void NetConn_UpdateSockets(void);
415 lhnetsocket_t *NetConn_ChooseClientSocketForAddress(lhnetaddress_t *address);
416 lhnetsocket_t *NetConn_ChooseServerSocketForAddress(lhnetaddress_t *address);
417 void NetConn_Init(void);
418 void NetConn_Shutdown(void);
419 netconn_t *NetConn_Open(lhnetsocket_t *mysocket, lhnetaddress_t *peeraddress);
420 void NetConn_Close(netconn_t *conn);
421 void NetConn_Listen(qboolean state);
422 int NetConn_Read(lhnetsocket_t *mysocket, void *data, int maxlength, lhnetaddress_t *peeraddress);
423 int NetConn_Write(lhnetsocket_t *mysocket, const void *data, int length, const lhnetaddress_t *peeraddress);
424 int NetConn_WriteString(lhnetsocket_t *mysocket, const char *string, const lhnetaddress_t *peeraddress);
425 int NetConn_IsLocalGame(void);
426 void NetConn_ClientFrame(void);
427 void NetConn_ServerFrame(void);
428 void NetConn_SleepMicroseconds(int microseconds);
429 void NetConn_QueryMasters(qboolean querydp, qboolean queryqw);
430 void NetConn_Heartbeat(int priority);
431 void NetConn_QueryQueueFrame(void);
432 void Net_Stats_f(void);
433 void Net_Slist_f(void);
434 void Net_SlistQW_f(void);
435 void Net_Refresh_f(void);
436
437 /// ServerList interface (public)
438 /// manually refresh the view set, do this after having changed the mask or any other flag
439 void ServerList_RebuildViewList(void);
440 void ServerList_ResetMasks(void);
441 void ServerList_QueryList(qboolean resetcache, qboolean querydp, qboolean queryqw, qboolean consoleoutput);
442
443 /// called whenever net_slist_favorites changes
444 void NetConn_UpdateFavorites(void);
445
446 #define MAX_CHALLENGES 128
447 typedef struct challenge_s
448 {
449         lhnetaddress_t address;
450         double time;
451         char string[12];
452 }
453 challenge_t;
454
455 extern challenge_t challenge[MAX_CHALLENGES];
456
457 #endif
458