]> git.xonotic.org Git - xonotic/darkplaces.git/blob - progs.h
added DP_SV_CUSTOMIZEENTITYFORCLIENT extension based on a patch from [515]
[xonotic/darkplaces.git] / progs.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
21 #ifndef PROGS_H
22 #define PROGS_H
23 #include "pr_comp.h"                    // defs shared with qcc
24
25 typedef struct link_s
26 {
27         int entitynumber;
28         struct link_s   *prev, *next;
29 } link_t;
30
31 #define ENTITYGRIDAREAS 16
32 #define MAX_ENTITYCLUSTERS 16
33
34 typedef struct edict_engineprivate_s
35 {
36         // true if this edict is unused
37         qboolean free;
38         // sv.time when the object was freed (to prevent early reuse which could
39         // mess up client interpolation or obscure severe QuakeC bugs)
40         float freetime;
41
42         // cached cluster links for quick stationary object visibility checking
43         vec3_t cullmins, cullmaxs;
44         int pvs_numclusters;
45         int pvs_clusterlist[MAX_ENTITYCLUSTERS];
46
47         // physics grid areas this edict is linked into
48         link_t areagrid[ENTITYGRIDAREAS];
49         // since the areagrid can have multiple references to one entity,
50         // we should avoid extensive checking on entities already encountered
51         int areagridmarknumber;
52
53         // PROTOCOL_QUAKE, PROTOCOL_QUAKEDP, PROTOCOL_NEHAHRAMOVIE
54         // baseline values
55         entity_state_t baseline;
56
57         // LordHavoc: gross hack to make floating items still work
58         int suspendedinairflag;
59         // used by PushMove to keep track of where objects were before they were
60         // moved, in case they need to be moved back
61         vec3_t moved_from;
62         vec3_t moved_fromangles;
63 }
64 edict_engineprivate_t;
65
66 // LordHavoc: in an effort to eliminate time wasted on GetEdictFieldValue...  see pr_edict.c for the functions which use these.
67 extern int eval_gravity;
68 extern int eval_button3;
69 extern int eval_button4;
70 extern int eval_button5;
71 extern int eval_button6;
72 extern int eval_button7;
73 extern int eval_button8;
74 extern int eval_button9;
75 extern int eval_button10;
76 extern int eval_button11;
77 extern int eval_button12;
78 extern int eval_button13;
79 extern int eval_button14;
80 extern int eval_button15;
81 extern int eval_button16;
82 extern int eval_buttonuse;
83 extern int eval_buttonchat;
84 extern int eval_glow_size;
85 extern int eval_glow_trail;
86 extern int eval_glow_color;
87 extern int eval_items2;
88 extern int eval_scale;
89 extern int eval_alpha;
90 extern int eval_renderamt; // HalfLife support
91 extern int eval_rendermode; // HalfLife support
92 extern int eval_fullbright;
93 extern int eval_ammo_shells1;
94 extern int eval_ammo_nails1;
95 extern int eval_ammo_lava_nails;
96 extern int eval_ammo_rockets1;
97 extern int eval_ammo_multi_rockets;
98 extern int eval_ammo_cells1;
99 extern int eval_ammo_plasma;
100 extern int eval_idealpitch;
101 extern int eval_pitch_speed;
102 extern int eval_viewmodelforclient;
103 extern int eval_nodrawtoclient;
104 extern int eval_exteriormodeltoclient;
105 extern int eval_drawonlytoclient;
106 extern int eval_ping;
107 extern int eval_movement;
108 extern int eval_pmodel;
109 extern int eval_punchvector;
110 extern int eval_viewzoom;
111 extern int eval_clientcolors;
112 extern int eval_tag_entity;
113 extern int eval_tag_index;
114 extern int eval_light_lev;
115 extern int eval_color;
116 extern int eval_style;
117 extern int eval_pflags;
118 extern int eval_cursor_active;
119 extern int eval_cursor_screen;
120 extern int eval_cursor_trace_start;
121 extern int eval_cursor_trace_endpos;
122 extern int eval_cursor_trace_ent;
123 extern int eval_colormod;
124 extern int eval_playermodel;
125 extern int eval_playerskin;
126 extern int eval_customizeentityforclient;
127
128 extern mfunction_t *SV_PlayerPhysicsQC;
129 extern mfunction_t *EndFrameQC;
130 //KrimZon - SERVER COMMANDS IN QUAKEC
131 extern mfunction_t *SV_ParseClientCommandQC;
132
133 #endif
134
135
136
137
138
139
140 //////////////////////////////////
141 #if 0
142
143 #include "pr_comp.h"                    // defs shared with qcc
144 #include "progdefs.h"                   // generated by program cdefs
145
146 typedef union eval_s
147 {
148         string_t                string;
149         float                   _float;
150         float                   vector[3];
151         func_t                  function;
152         int                             ivector[3];
153         int                             _int;
154         int                             edict;
155 } prvm_eval_t;
156
157 typedef struct link_s
158 {
159         int entitynumber;
160         struct link_s   *prev, *next;
161 } link_t;
162
163 #define ENTITYGRIDAREAS 16
164
165 typedef struct edict_engineprivate_s
166 {
167         // true if this edict is unused
168         qboolean free;
169         // sv.time when the object was freed (to prevent early reuse which could
170         // mess up client interpolation or obscure severe QuakeC bugs)
171         float freetime;
172
173         // cached cluster links for quick stationary object visibility checking
174         vec3_t cullmins, cullmaxs;
175         int pvs_numclusters;
176         int pvs_clusterlist[MAX_ENTITYCLUSTERS];
177
178         // physics grid areas this edict is linked into
179         link_t areagrid[ENTITYGRIDAREAS];
180         // since the areagrid can have multiple references to one entity,
181         // we should avoid extensive checking on entities already encountered
182         int areagridmarknumber;
183
184         // PROTOCOL_QUAKE, PROTOCOL_QUAKEDP, PROTOCOL_NEHAHRAMOVIE
185         // baseline values
186         entity_state_t baseline;
187
188         // LordHavoc: gross hack to make floating items still work
189         int suspendedinairflag;
190         // used by PushMove to keep track of where objects were before they were
191         // moved, in case they need to be moved back
192         vec3_t moved_from;
193         vec3_t moved_fromangles;
194 }
195 edict_engineprivate_t;
196
197 // the entire server entity structure
198 // NOTE: keep this small!  priv and v are dynamic but this struct is not!
199 typedef struct edict_s
200 {
201         // engine-private fields (stored in dynamically resized array)
202         edict_engineprivate_t *e;
203         // QuakeC fields (stored in dynamically resized array)
204         entvars_t *v;
205 }
206 prvm_edict_t;
207
208 // LordHavoc: in an effort to eliminate time wasted on GetEdictFieldValue...  see pr_edict.c for the functions which use these.
209 extern int eval_gravity;
210 extern int eval_button3;
211 extern int eval_button4;
212 extern int eval_button5;
213 extern int eval_button6;
214 extern int eval_button7;
215 extern int eval_button8;
216 extern int eval_buttonuse;
217 extern int eval_buttonchat;
218 extern int eval_glow_size;
219 extern int eval_glow_trail;
220 extern int eval_glow_color;
221 extern int eval_items2;
222 extern int eval_scale;
223 extern int eval_alpha;
224 extern int eval_renderamt; // HalfLife support
225 extern int eval_rendermode; // HalfLife support
226 extern int eval_fullbright;
227 extern int eval_ammo_shells1;
228 extern int eval_ammo_nails1;
229 extern int eval_ammo_lava_nails;
230 extern int eval_ammo_rockets1;
231 extern int eval_ammo_multi_rockets;
232 extern int eval_ammo_cells1;
233 extern int eval_ammo_plasma;
234 extern int eval_idealpitch;
235 extern int eval_pitch_speed;
236 extern int eval_viewmodelforclient;
237 extern int eval_nodrawtoclient;
238 extern int eval_exteriormodeltoclient;
239 extern int eval_drawonlytoclient;
240 extern int eval_ping;
241 extern int eval_movement;
242 extern int eval_pmodel;
243 extern int eval_punchvector;
244 extern int eval_viewzoom;
245 extern int eval_clientcolors;
246 extern int eval_tag_entity;
247 extern int eval_tag_index;
248 extern int eval_light_lev;
249 extern int eval_color;
250 extern int eval_style;
251 extern int eval_pflags;
252 extern int eval_cursor_active;
253 extern int eval_cursor_screen;
254 extern int eval_cursor_trace_start;
255 extern int eval_cursor_trace_endpos;
256 extern int eval_cursor_trace_ent;
257 extern int eval_colormod;
258 extern int eval_playermodel;
259 extern int eval_playerskin;
260
261 #define PRVM_GETEDICTFIELDVALUE(ed, fieldoffset) (fieldoffset ? (prvm_eval_t *)((unsigned char *)ed->v + fieldoffset) : NULL)
262
263
264 extern mfunction_t *SV_PlayerPhysicsQC;
265 extern mfunction_t *EndFrameQC;
266 //KrimZon - SERVER COMMANDS IN QUAKEC
267 extern mfunction_t *SV_ParseClientCommandQC;
268
269 //============================================================================
270
271 extern  dprograms_t             *progs;
272 extern  mfunction_t             *prog->functions;
273 extern  char                    *pr_strings;
274 extern  int                             pr_stringssize;
275 extern  ddef_t                  *pr_globaldefs;
276 extern  ddef_t                  *pr_fielddefs;
277 extern  dstatement_t    *pr_statements;
278 extern  globalvars_t    *pr_global_struct;
279 extern  float                   *pr_globals;                    // same as pr_global_struct
280
281 extern  int                             prog->edict_size;       // in bytes
282 extern  int                             pr_edictareasize; // LordHavoc: for bounds checking
283
284 extern  int                             pr_maxknownstrings;
285 extern  int                             pr_numknownstrings;
286 extern  const char              **pr_knownstrings;
287
288 //============================================================================
289
290 void PR_Init (void);
291 void PR_Shutdown (void);
292
293 void PRVM_ExecuteProgram (func_t fnum, const char *errormessage);
294 void PR_LoadProgs (const char *progsname);
295
296 #define PR_Alloc(buffersize) _PR_Alloc(buffersize, __FILE__, __LINE__)
297 #define PR_Free(buffer) _PR_Free(buffer, __FILE__, __LINE__)
298 #define PR_FreeAll() _PR_FreeAll(__FILE__, __LINE__)
299 void *_PR_Alloc (size_t buffersize, const char *filename, int fileline);
300 void _PR_Free (void *buffer, const char *filename, int fileline);
301 void _PR_FreeAll (const char *filename, int fileline);
302
303 void PR_Profile_f (void);
304
305 void PR_PrintState(void);
306 void PR_Crash (void);
307
308 void SV_IncreaseEdicts(void);
309
310 prvm_edict_t *ED_Alloc (void);
311 void ED_Free (prvm_edict_t *ed);
312 void ED_ClearEdict (prvm_edict_t *e);
313
314 void ED_Print(prvm_edict_t *ed);
315 void ED_Write (qfile_t *f, prvm_edict_t *ed);
316 const char *ED_ParseEdict (const char *data, prvm_edict_t *ent);
317
318 void ED_WriteGlobals (qfile_t *f);
319 void ED_ParseGlobals (const char *data);
320
321 void ED_LoadFromFile (const char *data);
322
323 prvm_edict_t *EDICT_NUM_ERROR(int n, char *filename, int fileline);
324 #define PRVM_EDICT_NUM(n) (((n) >= 0 && (n) < prog->max_edicts) ? prog->edicts + (n) : EDICT_NUM_ERROR(n, __FILE__, __LINE__))
325 #define EDICT_NUM_UNSIGNED(n) (((n) < prog->max_edicts) ? prog->edicts + (n) : EDICT_NUM_ERROR(n, __FILE__, __LINE__))
326
327 //int NUM_FOR_EDICT_ERROR(prvm_edict_t *e);
328 #define PRVM_NUM_FOR_EDICT(e) ((int)((prvm_edict_t *)(e) - prog->edicts))
329 //int PRVM_NUM_FOR_EDICT(prvm_edict_t *e);
330
331 #define PRVM_NEXT_EDICT(e) ((e) + 1)
332
333 #define PRVM_EDICT_TO_PROG(e) (PRVM_NUM_FOR_EDICT(e))
334 //int PRVM_EDICT_TO_PROG(prvm_edict_t *e);
335 #define PRVM_PROG_TO_EDICT(n) (PRVM_EDICT_NUM(n))
336 //prvm_edict_t *PRVM_PROG_TO_EDICT(int n);
337
338 //============================================================================
339
340 #define PRVM_G_FLOAT(o) (pr_globals[o])
341 #define PRVM_G_INT(o) (*(int *)&pr_globals[o])
342 #define PRVM_G_EDICT(o) (PRVM_PROG_TO_EDICT(*(int *)&pr_globals[o]))
343 #define PRVM_G_EDICTNUM(o) PRVM_NUM_FOR_EDICT(PRVM_G_EDICT(o))
344 #define PRVM_G_VECTOR(o) (&pr_globals[o])
345 #define PRVM_G_STRING(o) (PRVM_GetString(*(string_t *)&pr_globals[o]))
346 //#define       G_FUNCTION(o) (*(func_t *)&pr_globals[o])
347
348 // FIXME: make these go away?
349 #define E_FLOAT(e,o) (((float*)e->v)[o])
350 //#define       E_INT(e,o) (((int*)e->v)[o])
351 //#define       E_VECTOR(e,o) (&((float*)e->v)[o])
352 #define E_STRING(e,o) (PRVM_GetString(*(string_t *)&((float*)e->v)[o]))
353
354 extern  int             type_size[8];
355
356 typedef void (*builtin_t) (void);
357 extern  builtin_t *pr_builtins;
358 extern int pr_numbuiltins;
359
360 extern int              pr_argc;
361
362 extern  int                     pr_trace;
363 extern  mfunction_t     *pr_xfunction;
364 extern  int                     pr_xstatement;
365
366 extern  unsigned short          pr_crc;
367
368 void PR_Execute_ProgsLoaded(void);
369
370 void ED_PrintEdicts (void);
371 void ED_PrintNum (int ent);
372
373 const char *PRVM_GetString(int num);
374 int PR_SetQCString(const char *s);
375 int PRVM_SetEngineString(const char *s);
376 char *PR_AllocString(int bufferlength);
377 void PR_FreeString(char *s);
378
379 #endif
380