]> icculus.org git repositories - divverent/darkplaces.git/blob - server.h
some cleanups to hostcache (got rid of driver/address stuff and expanded the strings...
[divverent/darkplaces.git] / server.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // server.h
21
22 #ifndef SERVER_H
23 #define SERVER_H
24
25 typedef struct
26 {
27         int maxclients;
28         // [maxclients]
29         struct client_s *clients;
30         // episode completion information
31         int serverflags;
32         // cleared when at SV_SpawnServer
33         qboolean changelevel_issued;
34 } server_static_t;
35
36 //=============================================================================
37
38 typedef enum {ss_loading, ss_active} server_state_t;
39
40 typedef struct
41 {
42         // false if only a net client
43         qboolean active;
44
45         qboolean paused;
46         // handle connections specially
47         qboolean loadgame;
48
49         double time;
50
51         double frametime;
52
53         // used by PF_checkclient
54         int lastcheck;
55         double lastchecktime;
56
57         // map name
58         char name[64];
59         // maps/<name>.bsp, for model_precache[0]
60         char modelname[64];
61         struct model_s *worldmodel;
62         // NULL terminated
63         char *model_precache[MAX_MODELS];
64         struct model_s *models[MAX_MODELS];
65         // NULL terminated
66         char *sound_precache[MAX_SOUNDS];
67         char *lightstyles[MAX_LIGHTSTYLES];
68         int num_edicts;
69         int max_edicts;
70         // small edict_t structures which just contain pointers
71         // (allocated at server startup only)
72         edict_t *edicts;
73         // engine private edict information
74         // (dynamically resized - always access through edict_t!)
75         edict_engineprivate_t *edictsengineprivate;
76         // QuakeC fields array
77         // (dynamically resized - always access through edict_t!)
78         void *edictsfields;
79         // PushMove sometimes has to move entities back from a failed move
80         // (dynamically resized)
81         edict_t **moved_edicts;
82         // some actions are only valid during load
83         server_state_t state;
84
85         sizebuf_t datagram;
86         qbyte datagram_buf[MAX_DATAGRAM];
87
88         // copied to all clients at end of frame
89         sizebuf_t reliable_datagram;
90         qbyte reliable_datagram_buf[MAX_DATAGRAM];
91
92         sizebuf_t signon;
93         // LordHavoc: increased signon message buffer from 8192 to 32768
94         qbyte signon_buf[32768];
95 } server_t;
96
97
98 #define NUM_PING_TIMES 16
99 #define NUM_SPAWN_PARMS 16
100
101 typedef struct client_s
102 {
103         // false = client is free
104         qboolean active;
105         // false = don't send datagrams
106         qboolean spawned;
107         // has been told to go to another level
108         qboolean dropasap;
109         // only valid before spawned
110         qboolean sendsignon;
111
112         // LordHavoc: to make netquake protocol get through NAT routers, have to wait for client to ack
113         // waiting for connect from client (stage 1)
114         qboolean waitingforconnect;
115         // send server info in next datagram (stage 2)
116         qboolean sendserverinfo;
117
118         // reliable messages must be sent periodically
119         double last_message;
120
121         // communications handle
122         struct qsocket_s *netconnection;
123
124         // movement
125         usercmd_t cmd;
126         // intended motion calced from cmd
127         vec3_t wishdir;
128
129         // can be added to at any time, copied and clear once per frame
130         sizebuf_t message;
131         qbyte msgbuf[MAX_DATAGRAM];
132         // EDICT_NUM(clientnum+1)
133         edict_t *edict;
134         // for printing to other people
135         char name[32];
136         int colors;
137
138         float ping_times[NUM_PING_TIMES];
139         // ping_times[num_pings%NUM_PING_TIMES]
140         int num_pings;
141         // LordHavoc: can be used for prediction or whatever...
142         float ping;
143         // LordHavoc: specifically used for prediction, accounts for sys_ticrate too
144         float latency;
145
146 // spawn parms are carried from level to level
147         float spawn_parms[NUM_SPAWN_PARMS];
148
149 // client known data for deltas
150         int old_frags;
151         int pmodel;
152
153 #ifdef QUAKEENTITIES
154         // delta compression state
155         float nextfullupdate[MAX_EDICTS];
156 #endif
157         // visibility state
158         float visibletime[MAX_EDICTS];
159
160 #ifndef QUAKEENTITIES
161         entity_database_t entitydatabase;
162         int entityframenumber; // incremented each time an entity frame is sent
163 #endif
164 } client_t;
165
166
167 //=============================================================================
168
169 // edict->movetype values
170 #define MOVETYPE_NONE                   0               // never moves
171 #define MOVETYPE_ANGLENOCLIP    1
172 #define MOVETYPE_ANGLECLIP              2
173 #define MOVETYPE_WALK                   3               // gravity
174 #define MOVETYPE_STEP                   4               // gravity, special edge handling
175 #define MOVETYPE_FLY                    5
176 #define MOVETYPE_TOSS                   6               // gravity
177 #define MOVETYPE_PUSH                   7               // no clip to world, push and crush
178 #define MOVETYPE_NOCLIP                 8
179 #define MOVETYPE_FLYMISSILE             9               // extra size to monsters
180 #define MOVETYPE_BOUNCE                 10
181 #define MOVETYPE_BOUNCEMISSILE  11              // bounce w/o gravity
182 #define MOVETYPE_FOLLOW                 12              // track movement of aiment
183
184 // edict->solid values
185 #define SOLID_NOT                               0               // no interaction with other objects
186 #define SOLID_TRIGGER                   1               // touch on edge, but not blocking
187 #define SOLID_BBOX                              2               // touch on edge, block
188 #define SOLID_SLIDEBOX                  3               // touch on edge, but not an onground
189 #define SOLID_BSP                               4               // bsp clip, touch on edge, block
190 // LordHavoc: corpse code
191 #define SOLID_CORPSE                    5               // same as SOLID_BBOX, except it behaves as SOLID_NOT against SOLID_SLIDEBOX objects (players/monsters)
192
193 // edict->deadflag values
194 #define DEAD_NO                                 0
195 #define DEAD_DYING                              1
196 #define DEAD_DEAD                               2
197
198 #define DAMAGE_NO                               0
199 #define DAMAGE_YES                              1
200 #define DAMAGE_AIM                              2
201
202 // edict->flags
203 #define FL_FLY                                  1
204 #define FL_SWIM                                 2
205 #define FL_CONVEYOR                             4
206 #define FL_CLIENT                               8
207 #define FL_INWATER                              16
208 #define FL_MONSTER                              32
209 #define FL_GODMODE                              64
210 #define FL_NOTARGET                             128
211 #define FL_ITEM                                 256
212 #define FL_ONGROUND                             512
213 #define FL_PARTIALGROUND                1024    // not all corners are valid
214 #define FL_WATERJUMP                    2048    // player jumping out of water
215 #define FL_JUMPRELEASED                 4096    // for jump debouncing
216
217 // entity effects
218
219 #define EF_BRIGHTFIELD                  1
220 #define EF_MUZZLEFLASH                  2
221 #define EF_BRIGHTLIGHT                  4
222 #define EF_DIMLIGHT                     8
223 // added EF_ effects:
224 #define EF_NODRAW                               16
225 #define EF_ADDITIVE                             32  // LordHavoc: Additive Rendering
226 #define EF_BLUE                                 64
227 #define EF_RED                                  128
228
229 #define SPAWNFLAG_NOT_EASY                      256
230 #define SPAWNFLAG_NOT_MEDIUM            512
231 #define SPAWNFLAG_NOT_HARD                      1024
232 #define SPAWNFLAG_NOT_DEATHMATCH        2048
233
234 //============================================================================
235
236 extern cvar_t teamplay;
237 extern cvar_t skill;
238 extern cvar_t deathmatch;
239 extern cvar_t coop;
240 extern cvar_t fraglimit;
241 extern cvar_t timelimit;
242 extern cvar_t pausable;
243 extern cvar_t sv_deltacompress;
244 extern cvar_t sv_maxvelocity;
245 extern cvar_t sv_gravity;
246 extern cvar_t sv_nostep;
247 extern cvar_t sv_friction;
248 extern cvar_t sv_edgefriction;
249 extern cvar_t sv_stopspeed;
250 extern cvar_t sv_maxspeed;
251 extern cvar_t sv_accelerate;
252 extern cvar_t sv_idealpitchscale;
253 extern cvar_t sv_aim;
254 extern cvar_t sv_predict;
255 extern cvar_t sv_stepheight;
256 extern cvar_t sv_jumpstep;
257
258 // persistant server info
259 extern server_static_t svs;
260 // local server
261 extern server_t sv;
262
263 extern client_t *host_client;
264
265 extern jmp_buf host_abortserver;
266
267 extern edict_t *sv_player;
268
269 //===========================================================
270
271 void SV_Init (void);
272
273 void SV_StartParticle (vec3_t org, vec3_t dir, int color, int count);
274 void SV_StartEffect (vec3_t org, int modelindex, int startframe, int framecount, int framerate);
275 void SV_StartSound (edict_t *entity, int channel, char *sample, int volume, float attenuation);
276
277 void SV_DropClient (qboolean crash);
278
279 void SV_SendClientMessages (void);
280 void SV_ClearDatagram (void);
281
282 int SV_ModelIndex (const char *name);
283
284 void SV_SetIdealPitch (void);
285
286 void SV_AddUpdates (void);
287
288 void SV_ClientThink (void);
289 void SV_AddClientToServer (struct qsocket_s     *ret);
290
291 void SV_ClientPrintf (const char *fmt, ...);
292 void SV_BroadcastPrintf (const char *fmt, ...);
293
294 void SV_Physics (void);
295
296 qboolean SV_CheckBottom (edict_t *ent);
297 qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink);
298
299 void SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg);
300
301 void SV_MoveToGoal (void);
302
303 void SV_CheckForNewClients (void);
304 void SV_RunClients (void);
305 void SV_SaveSpawnparms (void);
306 void SV_SpawnServer (const char *server);
307
308 void SV_SetMaxClients(int n);
309
310 void SV_CheckVelocity (edict_t *ent);
311
312 #endif
313