]> git.xonotic.org Git - xonotic/darkplaces.git/blob - progs.h
faster number to edict lookup (sv.edictstable) and faster edict to number lookup...
[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
24 #include "pr_comp.h"                    // defs shared with qcc
25 #include "progdefs.h"                   // generated by program cdefs
26
27 typedef union eval_s
28 {
29         string_t                string;
30         float                   _float;
31         float                   vector[3];
32         func_t                  function;
33         int                             _int;
34         int                             edict;
35 } eval_t;
36
37 typedef struct link_s
38 {
39         struct link_s   *prev, *next;
40 } link_t;
41
42 // LordHavoc: increased number of leafs per entity limit from 16 to 256
43 #define MAX_ENT_LEAFS   256
44 typedef struct edict_s
45 {
46         qboolean free; // true if this edict is unused
47         link_t area; // physics area this edict is linked into
48         int number; // number of this edict
49
50 #ifdef QUAKEENTITIES
51         entity_state_t baseline; // baseline values
52         entity_state_t deltabaseline; // LordHavoc: previous frame
53 #endif
54
55         int suspendedinairflag; // LordHavoc: gross hack to make floating items still work
56         float freetime; // sv.time when the object was freed
57         entvars_t v; // C exported fields from progs
58 // other fields from progs come immediately after
59 } edict_t;
60
61 // LordHavoc: in an effort to eliminate time wasted on GetEdictFieldValue...  see pr_edict.c for the functions which use these.
62 extern int eval_gravity;
63 extern int eval_button3;
64 extern int eval_button4;
65 extern int eval_button5;
66 extern int eval_button6;
67 extern int eval_button7;
68 extern int eval_button8;
69 extern int eval_glow_size;
70 extern int eval_glow_trail;
71 extern int eval_glow_color;
72 extern int eval_items2;
73 extern int eval_scale;
74 extern int eval_alpha;
75 extern int eval_renderamt; // HalfLife support
76 extern int eval_rendermode; // HalfLife support
77 extern int eval_fullbright;
78 extern int eval_ammo_shells1;
79 extern int eval_ammo_nails1;
80 extern int eval_ammo_lava_nails;
81 extern int eval_ammo_rockets1;
82 extern int eval_ammo_multi_rockets;
83 extern int eval_ammo_cells1;
84 extern int eval_ammo_plasma;
85 extern int eval_idealpitch;
86 extern int eval_pitch_speed;
87 extern int eval_viewmodelforclient;
88 extern int eval_nodrawtoclient;
89 extern int eval_exteriormodeltoclient;
90 extern int eval_drawonlytoclient;
91 extern int eval_ping;
92 extern int eval_movement;
93 extern int eval_pmodel;
94 extern int eval_punchvector;
95 extern int eval_viewzoom;
96
97 #define GETEDICTFIELDVALUE(ed, fieldoffset) (fieldoffset ? (eval_t*)((char*)&ed->v + fieldoffset) : NULL)
98
99
100 extern dfunction_t *SV_PlayerPhysicsQC;
101 extern dfunction_t *EndFrameQC;
102
103 //============================================================================
104
105 extern  dprograms_t             *progs;
106 extern  dfunction_t             *pr_functions;
107 extern  char                    *pr_strings;
108 extern  ddef_t                  *pr_globaldefs;
109 extern  ddef_t                  *pr_fielddefs;
110 extern  dstatement_t    *pr_statements;
111 extern  globalvars_t    *pr_global_struct;
112 extern  float                   *pr_globals;                    // same as pr_global_struct
113
114 extern  int                             pr_edict_size;  // in bytes
115 extern  int                             pr_edictareasize; // LordHavoc: for bounds checking
116
117 //============================================================================
118
119 void PR_Init (void);
120
121 void PR_ExecuteProgram (func_t fnum, const char *errormessage);
122 void PR_LoadProgs (void);
123
124 void PR_Profile_f (void);
125
126 void PR_Crash (void);
127
128 edict_t *ED_Alloc (void);
129 void ED_Free (edict_t *ed);
130
131 char    *ED_NewString (const char *string);
132 // returns a copy of the string allocated from the server's string heap
133
134 void ED_Print (edict_t *ed);
135 void ED_Write (QFile *f, edict_t *ed);
136 const char *ED_ParseEdict (const char *data, edict_t *ent);
137
138 void ED_WriteGlobals (QFile *f);
139 void ED_ParseGlobals (const char *data);
140
141 void ED_LoadFromFile (const char *data);
142
143 edict_t *EDICT_NUM_ERROR(int n);
144 #define EDICT_NUM(n) ((n >= 0 && n < sv.max_edicts) ? sv.edictstable[(n)] : EDICT_NUM_ERROR(n))
145
146 int NUM_FOR_EDICT(edict_t *e);
147
148 #define NEXT_EDICT(e) ((edict_t *)( (qbyte *)e + pr_edict_size))
149
150 #define EDICT_TO_PROG(e) ((qbyte *)e - (qbyte *)sv.edicts)
151 #define PROG_TO_EDICT(e) ((edict_t *)((qbyte *)sv.edicts + e))
152
153 //============================================================================
154
155 #define G_FLOAT(o) (pr_globals[o])
156 #define G_INT(o) (*(int *)&pr_globals[o])
157 #define G_EDICT(o) ((edict_t *)((qbyte *)sv.edicts+ *(int *)&pr_globals[o]))
158 #define G_EDICTNUM(o) NUM_FOR_EDICT(G_EDICT(o))
159 #define G_VECTOR(o) (&pr_globals[o])
160 #define G_STRING(o) (pr_strings + *(string_t *)&pr_globals[o])
161 #define G_FUNCTION(o) (*(func_t *)&pr_globals[o])
162
163 #define E_FLOAT(e,o) (((float*)&e->v)[o])
164 #define E_INT(e,o) (*(int *)&((float*)&e->v)[o])
165 #define E_VECTOR(e,o) (&((float*)&e->v)[o])
166 #define E_STRING(e,o) (pr_strings + *(string_t *)&((float*)&e->v)[o])
167
168 extern  int             type_size[8];
169
170 typedef void (*builtin_t) (void);
171 extern  builtin_t *pr_builtins;
172 extern int pr_numbuiltins;
173
174 extern int              pr_argc;
175
176 extern  qboolean        pr_trace;
177 extern  dfunction_t     *pr_xfunction;
178 extern  int                     pr_xstatement;
179
180 extern  unsigned short          pr_crc;
181
182 void PR_Execute_ProgsLoaded(void);
183
184 void ED_PrintEdicts (void);
185 void ED_PrintNum (int ent);
186
187 #endif
188