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