]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - server.h
don't crash on NULL model in entity culling
[xonotic/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         // can NOT be array indexed, because edict_t is variable sized, but can be used to reference the world ent
71         edict_t *edicts;
72         // can be array indexed
73         edict_t **edictstable;
74         // array of QC edict field variables
75         void *edictsfields;
76         // PushMove sometimes has to move entities back from a failed move
77         edict_t **moved_edicts;
78         // some actions are only valid during load
79         server_state_t state;
80
81         sizebuf_t datagram;
82         qbyte datagram_buf[MAX_DATAGRAM];
83
84         // copied to all clients at end of frame
85         sizebuf_t reliable_datagram;
86         qbyte reliable_datagram_buf[MAX_DATAGRAM];
87
88         sizebuf_t signon;
89         // LordHavoc: increased signon message buffer from 8192 to 32768
90         qbyte signon_buf[32768];
91 } server_t;
92
93
94 #define NUM_PING_TIMES 16
95 #define NUM_SPAWN_PARMS 16
96
97 typedef struct client_s
98 {
99         // false = client is free
100         qboolean active;
101         // false = don't send datagrams
102         qboolean spawned;
103         // has been told to go to another level
104         qboolean dropasap;
105         // only valid before spawned
106         qboolean sendsignon;
107
108 #ifndef NOROUTINGFIX
109         // LordHavoc: to make netquake protocol get through NAT routers, have to wait for client to ack
110         // waiting for connect from client (stage 1)
111         qboolean waitingforconnect;
112         // send server info in next datagram (stage 2)
113         qboolean sendserverinfo;
114 #endif
115
116         // reliable messages must be sent periodically
117         double last_message;
118
119         // communications handle
120         struct qsocket_s *netconnection;
121
122         // movement
123         usercmd_t cmd;
124         // intended motion calced from cmd
125         vec3_t wishdir;
126
127         // can be added to at any time, copied and clear once per frame
128         sizebuf_t message;
129         qbyte msgbuf[MAX_DATAGRAM];
130         // EDICT_NUM(clientnum+1)
131         edict_t *edict;
132         // for printing to other people
133         char name[32];
134         int colors;
135
136         float ping_times[NUM_PING_TIMES];
137         // ping_times[num_pings%NUM_PING_TIMES]
138         int num_pings;
139         // LordHavoc: can be used for prediction or whatever...
140         float ping;
141         // LordHavoc: specifically used for prediction, accounts for sys_ticrate too
142         float latency;
143
144 // spawn parms are carried from level to level
145         float spawn_parms[NUM_SPAWN_PARMS];
146
147 // client known data for deltas
148         int old_frags;
149         int pmodel;
150
151 #ifdef QUAKEENTITIES
152         // delta compression state
153         float nextfullupdate[MAX_EDICTS];
154 #endif
155         // visibility state
156         float visibletime[MAX_EDICTS];
157
158 #ifndef QUAKEENTITIES
159         entity_database_t entitydatabase;
160         int entityframenumber; // incremented each time an entity frame is sent
161 #endif
162 } client_t;
163
164
165 //=============================================================================
166
167 // edict->movetype values
168 #define MOVETYPE_NONE                   0               // never moves
169 #define MOVETYPE_ANGLENOCLIP    1
170 #define MOVETYPE_ANGLECLIP              2
171 #define MOVETYPE_WALK                   3               // gravity
172 #define MOVETYPE_STEP                   4               // gravity, special edge handling
173 #define MOVETYPE_FLY                    5
174 #define MOVETYPE_TOSS                   6               // gravity
175 #define MOVETYPE_PUSH                   7               // no clip to world, push and crush
176 #define MOVETYPE_NOCLIP                 8
177 #define MOVETYPE_FLYMISSILE             9               // extra size to monsters
178 #define MOVETYPE_BOUNCE                 10
179 #define MOVETYPE_BOUNCEMISSILE  11              // bounce w/o gravity
180 #define MOVETYPE_FOLLOW                 12              // track movement of aiment
181
182 // edict->solid values
183 #define SOLID_NOT                               0               // no interaction with other objects
184 #define SOLID_TRIGGER                   1               // touch on edge, but not blocking
185 #define SOLID_BBOX                              2               // touch on edge, block
186 #define SOLID_SLIDEBOX                  3               // touch on edge, but not an onground
187 #define SOLID_BSP                               4               // bsp clip, touch on edge, block
188 // LordHavoc: corpse code
189 #define SOLID_CORPSE                    5               // same as SOLID_BBOX, except it behaves as SOLID_NOT against SOLID_SLIDEBOX objects (players/monsters)
190
191 // edict->deadflag values
192 #define DEAD_NO                                 0
193 #define DEAD_DYING                              1
194 #define DEAD_DEAD                               2
195
196 #define DAMAGE_NO                               0
197 #define DAMAGE_YES                              1
198 #define DAMAGE_AIM                              2
199
200 // edict->flags
201 #define FL_FLY                                  1
202 #define FL_SWIM                                 2
203 #define FL_CONVEYOR                             4
204 #define FL_CLIENT                               8
205 #define FL_INWATER                              16
206 #define FL_MONSTER                              32
207 #define FL_GODMODE                              64
208 #define FL_NOTARGET                             128
209 #define FL_ITEM                                 256
210 #define FL_ONGROUND                             512
211 #define FL_PARTIALGROUND                1024    // not all corners are valid
212 #define FL_WATERJUMP                    2048    // player jumping out of water
213 #define FL_JUMPRELEASED                 4096    // for jump debouncing
214
215 // entity effects
216
217 #define EF_BRIGHTFIELD                  1
218 #define EF_MUZZLEFLASH                  2
219 #define EF_BRIGHTLIGHT                  4
220 #define EF_DIMLIGHT                     8
221 // added EF_ effects:
222 #define EF_NODRAW                               16
223 #define EF_ADDITIVE                             32  // LordHavoc: Additive Rendering
224 #define EF_BLUE                                 64
225 #define EF_RED                                  128
226
227 #define SPAWNFLAG_NOT_EASY                      256
228 #define SPAWNFLAG_NOT_MEDIUM            512
229 #define SPAWNFLAG_NOT_HARD                      1024
230 #define SPAWNFLAG_NOT_DEATHMATCH        2048
231
232 //============================================================================
233
234 extern cvar_t teamplay;
235 extern cvar_t skill;
236 extern cvar_t deathmatch;
237 extern cvar_t coop;
238 extern cvar_t fraglimit;
239 extern cvar_t timelimit;
240 extern cvar_t pausable;
241 extern cvar_t sv_deltacompress;
242 extern cvar_t sv_maxvelocity;
243 extern cvar_t sv_gravity;
244 extern cvar_t sv_nostep;
245 extern cvar_t sv_friction;
246 extern cvar_t sv_edgefriction;
247 extern cvar_t sv_stopspeed;
248 extern cvar_t sv_maxspeed;
249 extern cvar_t sv_accelerate;
250 extern cvar_t sv_idealpitchscale;
251 extern cvar_t sv_aim;
252 extern cvar_t sv_predict;
253 extern cvar_t sv_stepheight;
254 extern cvar_t sv_jumpstep;
255
256 // persistant server info
257 extern server_static_t svs;
258 // local server
259 extern server_t sv;
260
261 extern client_t *host_client;
262
263 extern jmp_buf host_abortserver;
264
265 extern edict_t *sv_player;
266
267 //===========================================================
268
269 void SV_Init (void);
270
271 void SV_StartParticle (vec3_t org, vec3_t dir, int color, int count);
272 void SV_StartEffect (vec3_t org, int modelindex, int startframe, int framecount, int framerate);
273 void SV_StartSound (edict_t *entity, int channel, char *sample, int volume, float attenuation);
274
275 void SV_DropClient (qboolean crash);
276
277 void SV_SendClientMessages (void);
278 void SV_ClearDatagram (void);
279
280 int SV_ModelIndex (const char *name);
281
282 void SV_SetIdealPitch (void);
283
284 void SV_AddUpdates (void);
285
286 void SV_ClientThink (void);
287 void SV_AddClientToServer (struct qsocket_s     *ret);
288
289 void SV_ClientPrintf (const char *fmt, ...);
290 void SV_BroadcastPrintf (const char *fmt, ...);
291
292 void SV_Physics (void);
293
294 qboolean SV_CheckBottom (edict_t *ent);
295 qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink);
296
297 void SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg);
298
299 void SV_MoveToGoal (void);
300
301 void SV_CheckForNewClients (void);
302 void SV_RunClients (void);
303 void SV_SaveSpawnparms (void);
304 void SV_SpawnServer (const char *server);
305
306 void SV_SetMaxClients(int n);
307
308 #endif
309