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