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