]> icculus.org git repositories - divverent/darkplaces.git/blob - progsvm.h
while I am at it, also dp_specularscalemod
[divverent/darkplaces.git] / progsvm.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 This is a try to make the vm more generic, it is mainly based on the progs.h file.
22 For the license refer to progs.h.
23
24 Generic means, less as possible hard-coded links with the other parts of the engine.
25 This means no edict_engineprivate struct usage, etc.
26 The code uses void pointers instead.
27 */
28
29 #ifndef PROGSVM_H
30 #define PROGSVM_H
31
32 #include "pr_comp.h"                    // defs shared with qcc
33 #include "progdefs.h"                   // generated by program cdefs
34 #include "clprogdefs.h"                 // generated by program cdefs
35
36 // forward declaration of clgecko_t
37 struct clgecko_s;
38
39 typedef struct prvm_stack_s
40 {
41         int                             s;
42         mfunction_t             *f;
43         double                  profile_acc;
44         double                  builtinsprofile_acc;
45 } prvm_stack_t;
46
47
48 typedef union prvm_eval_s
49 {
50         string_t                string;
51         float                   _float;
52         float                   vector[3];
53         func_t                  function;
54         int                             ivector[3];
55         int                             _int;
56         int                             edict;
57 } prvm_eval_t;
58
59 typedef struct prvm_required_field_s
60 {
61         int type;
62         const char *name;
63 } prvm_required_field_t;
64
65
66 // AK: I dont call it engine private cause it doesnt really belongs to the engine
67 //     it belongs to prvm.
68 typedef struct prvm_edict_private_s
69 {
70         qboolean free;
71         float freetime;
72         int mark;
73         const char *allocation_origin;
74 } prvm_edict_private_t;
75
76 typedef struct prvm_edict_s
77 {
78         // engine-private fields (stored in dynamically resized array)
79         //edict_engineprivate_t *e;
80         union
81         {
82                 prvm_edict_private_t *required;
83                 void *vp;
84                 // FIXME: this server pointer really means world, not server
85                 // (it is used by both server qc and client qc, but not menu qc)
86                 edict_engineprivate_t *server;
87                 // add other private structs as you desire
88                 // new structs have to start with the elements of prvm_edit_private_t
89                 // e.g. a new struct has to either look like this:
90                 //      typedef struct server_edict_private_s {
91                 //              prvm_edict_private_t base;
92                 //              vec3_t moved_from;
93                 //      vec3_t moved_fromangles;
94                 //              ... } server_edict_private_t;
95                 // or:
96                 //      typedef struct server_edict_private_s {
97                 //              qboolean free;
98                 //              float freetime;
99                 //              vec3_t moved_from;
100                 //      vec3_t moved_fromangles;
101                 //              ... } server_edict_private_t;
102                 // However, the first one should be preferred.
103         } priv;
104         // QuakeC fields (stored in dynamically resized array)
105         union
106         {
107                 void *vp;
108                 entvars_t               *server;
109                 cl_entvars_t    *client;
110         } fields;
111 } prvm_edict_t;
112
113 #define PRVM_EDICTFIELDVALUE(ed, fieldoffset) (fieldoffset >= 0 ? (prvm_eval_t *)((int *)ed->fields.vp + fieldoffset) : NULL)
114 #define PRVM_GLOBALFIELDVALUE(fieldoffset) (fieldoffset >= 0 ? (prvm_eval_t *)((int *)prog->globals.generic + fieldoffset) : NULL)
115
116 //============================================================================
117 #define PRVM_OP_STATE           1
118
119 #define PRVM_MAX_STACK_DEPTH            1024
120 #define PRVM_LOCALSTACK_SIZE            16384
121
122 #define PRVM_MAX_OPENFILES 256
123 #define PRVM_MAX_OPENSEARCHES 128
124 #define PRVM_MAX_GECKOINSTANCES 32
125
126 typedef void (*prvm_builtin_t) (void);
127
128 // NOTE: field offsets use -1 for NULL
129 typedef struct prvm_prog_fieldoffsets_s
130 {
131         // server and client use a lot of similar fields, so this is combined
132         int SendEntity; // ssqc
133         int SendFlags; // ssqc
134         int Version; // ssqc (legacy)
135         int alpha; // ssqc / csqc
136         int ammo_cells1; // ssqc - Dissolution of Eternity mission pack
137         int ammo_lava_nails; // ssqc - Dissolution of Eternity mission pack
138         int ammo_multi_rockets; // ssqc - Dissolution of Eternity mission pack
139         int ammo_nails1; // ssqc - Dissolution of Eternity mission pack
140         int ammo_plasma; // ssqc - Dissolution of Eternity mission pack
141         int ammo_rockets1; // ssqc - Dissolution of Eternity mission pack
142         int ammo_shells1; // ssqc - Dissolution of Eternity mission pack
143         int angles; // common - used by changeyaw/changepitch
144         int button3; // ssqc
145         int button4; // ssqc
146         int button5; // ssqc
147         int button6; // ssqc
148         int button7; // ssqc
149         int button8; // ssqc
150         int button9; // ssqc
151         int button10; // ssqc
152         int button11; // ssqc
153         int button12; // ssqc
154         int button13; // ssqc
155         int button14; // ssqc
156         int button15; // ssqc
157         int button16; // ssqc
158         int buttonchat; // ssqc
159         int buttonuse; // ssqc
160         int chain; // common - used by find builtins
161         int classname; // common
162         int clientcamera; // ssqc
163         int clientcolors; // ssqc
164         int clientstatus; // ssqc
165         int color; // ssqc
166         int colormod; // ssqc / csqc
167         int contentstransition; // ssqc
168         int cursor_active; // ssqc
169         int cursor_screen; // ssqc
170         int cursor_trace_endpos; // ssqc
171         int cursor_trace_ent; // ssqc
172         int cursor_trace_start; // ssqc
173         int customizeentityforclient; // ssqc
174         int dimension_hit; // ssqc / csqc
175         int dimension_solid; // ssqc / csqc
176         int disableclientprediction; // ssqc
177         int dphitcontentsmask; // ssqc / csqc
178         int drawonlytoclient; // ssqc
179         int effects; // ssqc / csqc
180         int exteriormodeltoclient; // ssqc
181         int fatness; // ssqc / csqc
182         int forceshader; // csqc
183         int frame1time; // csqc
184         int frame2; // csqc
185         int frame2time; // csqc
186         int frame3; // csqc
187         int frame3time; // csqc
188         int frame4; // csqc
189         int frame4time; // csqc
190         int frame; // common - used by OP_STATE
191         int fullbright; // ssqc - Nehahra support
192         int glow_color; // ssqc
193         int glow_size; // ssqc
194         int glow_trail; // ssqc
195         int glowmod; // ssqc / csqc
196         int gravity; // ssqc
197         int groundentity; // ssqc / csqc
198         int hull; // ssqc / csqc
199         int ideal_yaw; // ssqc / csqc
200         int idealpitch; // ssqc / csqc
201         int items2; // ssqc
202         int lerpfrac3; // csqc
203         int lerpfrac4; // csqc
204         int lerpfrac; // csqc
205         int light_lev; // ssqc
206         int message; // csqc
207         int modelflags; // ssqc
208         int movement; // ssqc
209         int movetypesteplandevent; // ssqc
210         int netaddress; // ssqc
211         int nextthink; // common - used by OP_STATE
212         int nodrawtoclient; // ssqc
213         int pflags; // ssqc
214         int ping; // ssqc
215         int pitch_speed; // ssqc / csqc
216         int playermodel; // ssqc
217         int playerskin; // ssqc
218         int pmodel; // ssqc
219         int punchvector; // ssqc
220         int renderamt; // ssqc - HalfLife support
221         int renderflags; // csqc
222         int rendermode; // ssqc - HalfLife support
223         int scale; // ssqc / csqc
224         int shadertime; // csqc
225         int style; // ssqc
226         int tag_entity; // ssqc / csqc
227         int tag_index; // ssqc / csqc
228         int think; // common - used by OP_STATE
229         int viewmodelforclient; // ssqc
230         int viewzoom; // ssqc
231         int yaw_speed; // ssqc / csqc
232         int bouncefactor; // ssqc
233         int bouncestop; // ssqc
234 }
235 prvm_prog_fieldoffsets_t;
236
237 // NOTE: global offsets use -1 for NULL
238 typedef struct prvm_prog_globaloffsets_s
239 {
240         // server and client use a lot of similar globals, so this is combined
241         int SV_InitCmd; // ssqc
242         int self; // common
243         int time; // ssqc / csqc
244         int v_forward; // ssqc / csqc
245         int v_right; // ssqc / csqc
246         int v_up; // ssqc / csqc
247         int view_angles; // csqc
248         int trace_allsolid; // ssqc / csqc
249         int trace_startsolid; // ssqc / csqc
250         int trace_fraction; // ssqc / csqc
251         int trace_inwater; // ssqc / csqc
252         int trace_inopen; // ssqc / csqc
253         int trace_endpos; // ssqc / csqc
254         int trace_plane_normal; // ssqc / csqc
255         int trace_plane_dist; // ssqc / csqc
256         int trace_ent; // ssqc / csqc
257         int trace_networkentity; // csqc
258         int trace_dphitcontents; // ssqc / csqc
259         int trace_dphitq3surfaceflags; // ssqc / csqc
260         int trace_dphittexturename; // ssqc / csqc
261         int trace_dpstartcontents; // ssqc / csqc
262         int intermission; // csqc
263         int coop; // csqc
264         int deathmatch; // csqc
265         int dmg_take; // csqc
266         int dmg_save; // csqc
267         int dmg_origin; // csqc
268         int sb_showscores; // csqc
269         int drawfont; // csqc / menu
270         int require_spawnfunc_prefix; // ssqc
271         int worldstatus; // ssqc
272         int servertime; // csqc
273         int serverprevtime; // csqc
274         int serverdeltatime; // csqc
275         int gettaginfo_name; // ssqc / csqc
276         int gettaginfo_parent; // ssqc / csqc
277         int gettaginfo_offset; // ssqc / csqc
278         int gettaginfo_forward; // ssqc / csqc
279         int gettaginfo_right; // ssqc / csqc
280         int gettaginfo_up; // ssqc / csqc
281         int transparent_offset; // csqc
282 }
283 prvm_prog_globaloffsets_t;
284
285 // these are initialized using PRVM_ED_FindFunction
286 // NOTE: function offsets use 0 for NULL
287 typedef struct prvm_prog_funcoffsets_s
288 {
289         func_t CSQC_ConsoleCommand; // csqc
290         func_t CSQC_Ent_Remove; // csqc
291         func_t CSQC_Ent_Spawn; // csqc DP_CSQC_ENT_SPAWN extension (BlackHC - TODO: needs to be added to dpextensions.qc)
292         func_t CSQC_Ent_Update; // csqc
293         func_t CSQC_Event; // csqc [515]: engine call this for its own needs so csqc can do some things according to what engine it's running on.  example: to say about edicts increase, whatever...
294         func_t CSQC_Event_Sound; // csqc : called by engine when an incoming sound packet arrives so CSQC can act on it
295         func_t CSQC_Init; // csqc
296         func_t CSQC_InputEvent; // csqc
297         func_t CSQC_Parse_CenterPrint; // csqc
298         func_t CSQC_Parse_Print; // csqc
299         func_t CSQC_Parse_StuffCmd; // csqc
300         func_t CSQC_Parse_TempEntity; // csqc [515]: very helpfull when you want to create your own particles/decals/etc for effects that already exist
301         func_t CSQC_Shutdown; // csqc
302         func_t CSQC_UpdateView; // csqc
303         func_t Gecko_Query; // csqc, mqc
304         func_t EndFrame; // ssqc
305         func_t RestoreGame; // ssqc
306         func_t SV_ChangeTeam; // ssqc
307         func_t SV_ParseClientCommand; // ssqc
308         func_t SV_PlayerPhysics; // ssqc
309         func_t SV_OnEntityPreSpawnFunction; // ssqc
310         func_t SV_OnEntityNoSpawnFunction; // ssqc
311         func_t SV_OnEntityPostSpawnFunction; // ssqc
312         func_t GameCommand; // any
313         func_t SV_Shutdown; // ssqc
314         func_t URI_Get_Callback; // any
315         func_t SV_PausedTic; //ssqc
316
317         // menu qc only uses some functions, nothing else
318         func_t m_draw; // mqc
319         func_t m_init; // mqc
320         func_t m_keydown; // mqc
321         func_t m_keyup; // mqc
322         func_t m_shutdown; // mqc
323         func_t m_toggle; // mqc
324 }
325 prvm_prog_funcoffsets_t;
326
327 typedef struct prvm_stringbuffer_s
328 {
329         int max_strings;
330         int num_strings;
331         char **strings;
332         const char *origin;
333 }
334 prvm_stringbuffer_t;
335
336 // [INIT] variables flagged with this token can be initialized by 'you'
337 // NOTE: external code has to create and free the mempools but everything else is done by prvm !
338 typedef struct prvm_prog_s
339 {
340         double              starttime;
341         dprograms_t                     *progs;
342         mfunction_t                     *functions;
343         char                            *strings;
344         int                                     stringssize;
345         ddef_t                          *fielddefs;
346         ddef_t                          *globaldefs;
347         dstatement_t            *statements;
348         int                                     edict_size;                     // in bytes
349         int                                     edictareasize;          // LordHavoc: in bytes (for bound checking)
350
351         int                                     *statement_linenums; // NULL if not available
352
353         double                          *statement_profile; // only incremented if prvm_statementprofiling is on
354
355         union {
356                 float *generic;
357                 globalvars_t *server;
358                 cl_globalvars_t *client;
359         } globals;
360
361         int                                     maxknownstrings;
362         int                                     numknownstrings;
363         // this is updated whenever a string is removed or added
364         // (simple optimization of the free string search)
365         int                                     firstfreeknownstring;
366         const char                      **knownstrings;
367         unsigned char           *knownstrings_freeable;
368         const char          **knownstrings_origin;
369         const char                      ***stringshash;
370
371         memexpandablearray_t    stringbuffersarray;
372
373         // all memory allocations related to this vm_prog (code, edicts, strings)
374         mempool_t                       *progs_mempool; // [INIT]
375
376         prvm_builtin_t          *builtins; // [INIT]
377         int                                     numbuiltins; // [INIT]
378
379         int                                     argc;
380
381         int                                     trace;
382         mfunction_t                     *xfunction;
383         int                                     xstatement;
384
385         // stacktrace writes into stack[MAX_STACK_DEPTH]
386         // thus increase the array, so depth wont be overwritten
387         prvm_stack_t            stack[PRVM_MAX_STACK_DEPTH+1];
388         int                                     depth;
389
390         int                                     localstack[PRVM_LOCALSTACK_SIZE];
391         int                                     localstack_used;
392
393         unsigned short          headercrc; // [INIT]
394         unsigned short          headercrc2; // [INIT] alternate CRC for tenebrae progs.dat
395
396         unsigned short          filecrc;
397
398         //============================================================================
399         // until this point everything also exists (with the pr_ prefix) in the old vm
400
401         qfile_t                         *openfiles[PRVM_MAX_OPENFILES];
402         const char *         openfiles_origin[PRVM_MAX_OPENFILES];
403         fssearch_t                      *opensearches[PRVM_MAX_OPENSEARCHES];
404         const char *         opensearches_origin[PRVM_MAX_OPENSEARCHES];
405         struct clgecko_s                *opengeckoinstances[PRVM_MAX_GECKOINSTANCES];
406
407         // copies of some vars that were former read from sv
408         int                                     num_edicts;
409         // number of edicts for which space has been (should be) allocated
410         int                                     max_edicts; // [INIT]
411         // used instead of the constant MAX_EDICTS
412         int                                     limit_edicts; // [INIT]
413
414         // number of reserved edicts (allocated from 1)
415         int                                     reserved_edicts; // [INIT]
416
417         prvm_edict_t            *edicts;
418         void                                    *edictsfields;
419         void                                    *edictprivate;
420
421         // size of the engine private struct
422         int                                     edictprivate_size; // [INIT]
423
424         prvm_prog_fieldoffsets_t        fieldoffsets;
425         prvm_prog_globaloffsets_t       globaloffsets;
426         prvm_prog_funcoffsets_t         funcoffsets;
427
428         // allow writing to world entity fields, this is set by server init and
429         // cleared before first server frame
430         qboolean                        allowworldwrites;
431
432         // name of the prog, e.g. "Server", "Client" or "Menu" (used for text output)
433         char                            *name; // [INIT]
434
435         // flag - used to store general flags like PRVM_GE_SELF, etc.
436         int                             flag;
437
438         char                            *extensionstring; // [INIT]
439
440         qboolean                        loadintoworld; // [INIT]
441
442         // used to indicate whether a prog is loaded
443         qboolean                        loaded;
444         qboolean                        leaktest_active;
445
446         // printed together with backtraces
447         const char *statestring;
448
449 //      prvm_builtin_mem_t  *mem_list;
450
451 // now passed as parameter of PRVM_LoadProgs
452 //      char                            **required_func;
453 //      int                                     numrequiredfunc;
454
455         //============================================================================
456
457         ddef_t                          *self; // if self != 0 then there is a global self
458
459         //============================================================================
460         // function pointers
461
462         void                            (*begin_increase_edicts)(void); // [INIT] used by PRVM_MEM_Increase_Edicts
463         void                            (*end_increase_edicts)(void); // [INIT]
464
465         void                            (*init_edict)(prvm_edict_t *edict); // [INIT] used by PRVM_ED_ClearEdict
466         void                            (*free_edict)(prvm_edict_t *ed); // [INIT] used by PRVM_ED_Free
467
468         void                            (*count_edicts)(void); // [INIT] used by PRVM_ED_Count_f
469
470         qboolean                        (*load_edict)(prvm_edict_t *ent); // [INIT] used by PRVM_ED_LoadFromFile
471
472         void                            (*init_cmd)(void); // [INIT] used by PRVM_InitProg
473         void                            (*reset_cmd)(void); // [INIT] used by PRVM_ResetProg
474
475         void                            (*error_cmd)(const char *format, ...) DP_FUNC_PRINTF(1); // [INIT]
476
477         void                            (*ExecuteProgram)(func_t fnum, const char *errormessage); // pointer to one of the *VM_ExecuteProgram functions
478 } prvm_prog_t;
479
480 extern prvm_prog_t * prog;
481
482 #define PRVM_MAXPROGS 3
483 #define PRVM_SERVERPROG 0 // actually not used at the moment
484 #define PRVM_CLIENTPROG 1
485 #define PRVM_MENUPROG   2
486
487 extern prvm_prog_t prvm_prog_list[PRVM_MAXPROGS];
488
489 //============================================================================
490 // prvm_cmds part
491
492 extern prvm_builtin_t vm_sv_builtins[];
493 extern prvm_builtin_t vm_cl_builtins[];
494 extern prvm_builtin_t vm_m_builtins[];
495
496 extern const int vm_sv_numbuiltins;
497 extern const int vm_cl_numbuiltins;
498 extern const int vm_m_numbuiltins;
499
500 extern char * vm_sv_extensions; // client also uses this
501 extern char * vm_m_extensions;
502
503 void VM_SV_Cmd_Init(void);
504 void VM_SV_Cmd_Reset(void);
505
506 void VM_CL_Cmd_Init(void);
507 void VM_CL_Cmd_Reset(void);
508
509 void VM_M_Cmd_Init(void);
510 void VM_M_Cmd_Reset(void);
511
512 void VM_Cmd_Init(void);
513 void VM_Cmd_Reset(void);
514 //============================================================================
515
516 void PRVM_Init (void);
517
518 void MVM_ExecuteProgram (func_t fnum, const char *errormessage);
519 void CLVM_ExecuteProgram (func_t fnum, const char *errormessage);
520 void SVVM_ExecuteProgram (func_t fnum, const char *errormessage);
521 #define PRVM_ExecuteProgram prog->ExecuteProgram
522
523 #define PRVM_Alloc(buffersize) _PRVM_Alloc(buffersize, __FILE__, __LINE__)
524 #define PRVM_Free(buffer) _PRVM_Free(buffer, __FILE__, __LINE__)
525 #define PRVM_FreeAll() _PRVM_FreeAll(__FILE__, __LINE__)
526 void *_PRVM_Alloc (size_t buffersize, const char *filename, int fileline);
527 void _PRVM_Free (void *buffer, const char *filename, int fileline);
528 void _PRVM_FreeAll (const char *filename, int fileline);
529
530 void PRVM_Profile (int maxfunctions, int mininstructions, int sortby);
531 void PRVM_Profile_f (void);
532 void PRVM_ChildProfile_f (void);
533 void PRVM_CallProfile_f (void);
534 void PRVM_PrintFunction_f (void);
535
536 void PRVM_PrintState(void);
537 void PRVM_CrashAll (void);
538 void PRVM_Crash (void);
539 void PRVM_ShortStackTrace(char *buf, size_t bufsize);
540 const char *PRVM_AllocationOrigin(void);
541
542 ddef_t *PRVM_ED_FindField(const char *name);
543 ddef_t *PRVM_ED_FindGlobal(const char *name);
544 mfunction_t *PRVM_ED_FindFunction(const char *name);
545
546 int PRVM_ED_FindFieldOffset(const char *name);
547 int PRVM_ED_FindGlobalOffset(const char *name);
548 func_t PRVM_ED_FindFunctionOffset(const char *name);
549 #define PRVM_ED_FindFieldOffset_FromStruct(st, field) prog->fieldoffsets . field = ((int *)(&((st *)NULL)-> field ) - ((int *)NULL))
550 #define PRVM_ED_FindGlobalOffset_FromStruct(st, field) prog->globaloffsets . field = ((int *)(&((st *)NULL)-> field ) - ((int *)NULL))
551
552 void PRVM_MEM_IncreaseEdicts(void);
553
554 qboolean PRVM_ED_CanAlloc(prvm_edict_t *e);
555 prvm_edict_t *PRVM_ED_Alloc (void);
556 void PRVM_ED_Free (prvm_edict_t *ed);
557 void PRVM_ED_ClearEdict (prvm_edict_t *e);
558
559 void PRVM_PrintFunctionStatements (const char *name);
560 void PRVM_ED_Print(prvm_edict_t *ed, const char *wildcard_fieldname);
561 void PRVM_ED_Write (qfile_t *f, prvm_edict_t *ed);
562 const char *PRVM_ED_ParseEdict (const char *data, prvm_edict_t *ent);
563
564 void PRVM_ED_WriteGlobals (qfile_t *f);
565 void PRVM_ED_ParseGlobals (const char *data);
566
567 void PRVM_ED_LoadFromFile (const char *data);
568
569 unsigned int PRVM_EDICT_NUM_ERROR(unsigned int n, char *filename, int fileline);
570 #define PRVM_EDICT(n) (((unsigned)(n) < (unsigned int)prog->max_edicts) ? (unsigned int)(n) : PRVM_EDICT_NUM_ERROR((unsigned int)(n), __FILE__, __LINE__))
571 #define PRVM_EDICT_NUM(n) (prog->edicts + PRVM_EDICT(n))
572
573 //int NUM_FOR_EDICT_ERROR(prvm_edict_t *e);
574 #define PRVM_NUM_FOR_EDICT(e) ((int)((prvm_edict_t *)(e) - prog->edicts))
575 //int PRVM_NUM_FOR_EDICT(prvm_edict_t *e);
576
577 #define PRVM_NEXT_EDICT(e) ((e) + 1)
578
579 #define PRVM_EDICT_TO_PROG(e) (PRVM_NUM_FOR_EDICT(e))
580 //int PRVM_EDICT_TO_PROG(prvm_edict_t *e);
581 #define PRVM_PROG_TO_EDICT(n) (PRVM_EDICT_NUM(n))
582 //prvm_edict_t *PRVM_PROG_TO_EDICT(int n);
583
584 //============================================================================
585
586 #define PRVM_G_FLOAT(o) (prog->globals.generic[o])
587 #define PRVM_G_INT(o) (*(int *)&prog->globals.generic[o])
588 #define PRVM_G_EDICT(o) (PRVM_PROG_TO_EDICT(*(int *)&prog->globals.generic[o]))
589 #define PRVM_G_EDICTNUM(o) PRVM_NUM_FOR_EDICT(PRVM_G_EDICT(o))
590 #define PRVM_G_VECTOR(o) (&prog->globals.generic[o])
591 #define PRVM_G_STRING(o) (PRVM_GetString(*(string_t *)&prog->globals.generic[o]))
592 //#define       PRVM_G_FUNCTION(o) (*(func_t *)&prog->globals.generic[o])
593
594 // FIXME: make these go away?
595 #define PRVM_E_FLOAT(e,o) (((float*)e->fields.vp)[o])
596 #define PRVM_E_INT(e,o) (((int*)e->fields.vp)[o])
597 //#define       PRVM_E_VECTOR(e,o) (&((float*)e->fields.vp)[o])
598 #define PRVM_E_STRING(e,o) (PRVM_GetString(*(string_t *)&((float*)e->fields.vp)[o]))
599
600 extern  int             prvm_type_size[8]; // for consistency : I think a goal of this sub-project is to
601 // make the new vm mostly independent from the old one, thus if it's necessary, I copy everything
602
603 void PRVM_Init_Exec(void);
604
605 void PRVM_ED_PrintEdicts_f (void);
606 void PRVM_ED_PrintNum (int ent, const char *wildcard_fieldname);
607
608 const char *PRVM_GetString(int num);
609 int PRVM_SetEngineString(const char *s);
610 int PRVM_SetTempString(const char *s);
611 int PRVM_AllocString(size_t bufferlength, char **pointer);
612 void PRVM_FreeString(int num);
613
614 //============================================================================
615
616 // used as replacement for a prog stack
617 //#define PRVM_DEBUGPRSTACK
618
619 #ifdef PRVM_DEBUGPRSTACK
620 #define PRVM_Begin  if(prog != 0) Con_Printf("prog not 0(prog = %i) in file: %s line: %i!\n", PRVM_GetProgNr(), __FILE__, __LINE__)
621 #define PRVM_End        prog = 0
622 #else
623 #define PRVM_Begin
624 #define PRVM_End        prog = 0
625 #endif
626
627 //#define PRVM_SAFENAME
628 #ifndef PRVM_SAFENAME
629 #       define PRVM_NAME        (prog->name)
630 #else
631 #       define PRVM_NAME        (prog->name ? prog->name : "Unknown prog name")
632 #endif
633
634 // helper macro to make function pointer calls easier
635 #define PRVM_GCALL(func)        if(prog->func) prog->func
636
637 #define PRVM_ERROR              prog->error_cmd
638
639 // other prog handling functions
640 qboolean PRVM_SetProgFromString(const char *str);
641 void PRVM_SetProg(int prognr);
642
643 /*
644 Initializing a vm:
645 Call InitProg with the num
646 Set up the fields marked with [INIT] in the prog struct
647 Load a program with LoadProgs
648 */
649 void PRVM_InitProg(int prognr);
650 // LoadProgs expects to be called right after InitProg
651 void PRVM_LoadProgs (const char *filename, int numrequiredfunc, char **required_func, int numrequiredfields, prvm_required_field_t *required_field, int numrequiredglobals, char **required_global);
652 void PRVM_ResetProg(void);
653
654 qboolean PRVM_ProgLoaded(int prognr);
655
656 int     PRVM_GetProgNr(void);
657
658 void VM_Warning(const char *fmt, ...) DP_FUNC_PRINTF(1);
659
660 // TODO: fill in the params
661 //void PRVM_Create();
662
663 #endif