]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - prvm_cmds.c
move two #defined to quakedef.h, and always include quakedef.h first before any other...
[xonotic/darkplaces.git] / prvm_cmds.c
1 // AK
2 // Basically every vm builtin cmd should be in here.
3 // All 3 builtin and extension lists can be found here
4 // cause large (I think they will) parts are from pr_cmds the same copyright like in pr_cmds
5 // also applies here
6
7 #include "quakedef.h"
8
9 #include "prvm_cmds.h"
10 #include <time.h>
11
12 // LordHavoc: changed this to NOT use a return statement, so that it can be used in functions that must return a value
13 void VM_Warning(const char *fmt, ...)
14 {
15         va_list argptr;
16         char msg[MAX_INPUTLINE];
17
18         va_start(argptr,fmt);
19         dpvsnprintf(msg,sizeof(msg),fmt,argptr);
20         va_end(argptr);
21
22         Con_Print(msg);
23         // TODO: either add a cvar/cmd to control the state dumping or replace some of the calls with Con_Printf [9/13/2006 Black]
24         //PRVM_PrintState();
25 }
26
27
28 //============================================================================
29 // Common
30
31 // TODO DONE: move vm_files and vm_fssearchlist to prvm_prog_t struct
32 // TODO: move vm_files and vm_fssearchlist back [9/13/2006 Black]
33 // TODO: (move vm_files and vm_fssearchlist to prvm_prog_t struct again) [2007-01-23 LordHavoc]
34 // TODO: will this war ever end? [2007-01-23 LordHavoc]
35
36 void VM_CheckEmptyString (const char *s)
37 {
38         if (s[0] <= ' ')
39                 PRVM_ERROR ("%s: Bad string", PRVM_NAME);
40 }
41
42 //============================================================================
43 //BUILT-IN FUNCTIONS
44
45 void VM_VarString(int first, char *out, int outlength)
46 {
47         int i;
48         const char *s;
49         char *outend;
50
51         outend = out + outlength - 1;
52         for (i = first;i < prog->argc && out < outend;i++)
53         {
54                 s = PRVM_G_STRING((OFS_PARM0+i*3));
55                 while (out < outend && *s)
56                         *out++ = *s++;
57         }
58         *out++ = 0;
59 }
60
61 /*
62 =================
63 VM_checkextension
64
65 returns true if the extension is supported by the server
66
67 checkextension(extensionname)
68 =================
69 */
70
71 // kind of helper function
72 static qboolean checkextension(const char *name)
73 {
74         int len;
75         char *e, *start;
76         len = (int)strlen(name);
77
78         for (e = prog->extensionstring;*e;e++)
79         {
80                 while (*e == ' ')
81                         e++;
82                 if (!*e)
83                         break;
84                 start = e;
85                 while (*e && *e != ' ')
86                         e++;
87                 if ((e - start) == len && !strncasecmp(start, name, len))
88                         return true;
89         }
90         return false;
91 }
92
93 void VM_checkextension (void)
94 {
95         VM_SAFEPARMCOUNT(1,VM_checkextension);
96
97         PRVM_G_FLOAT(OFS_RETURN) = checkextension(PRVM_G_STRING(OFS_PARM0));
98 }
99
100 /*
101 =================
102 VM_error
103
104 This is a TERMINAL error, which will kill off the entire prog.
105 Dumps self.
106
107 error(value)
108 =================
109 */
110 void VM_error (void)
111 {
112         prvm_edict_t    *ed;
113         char string[VM_STRINGTEMP_LENGTH];
114
115         VM_VarString(0, string, sizeof(string));
116         Con_Printf("======%s ERROR in %s:\n%s\n", PRVM_NAME, PRVM_GetString(prog->xfunction->s_name), string);
117         if (prog->globaloffsets.self >= 0)
118         {
119                 ed = PRVM_PROG_TO_EDICT(PRVM_GLOBALFIELDVALUE(prog->globaloffsets.self)->edict);
120                 PRVM_ED_Print(ed, NULL);
121         }
122
123         PRVM_ERROR ("%s: Program error in function %s:\n%s\nTip: read above for entity information\n", PRVM_NAME, PRVM_GetString(prog->xfunction->s_name), string);
124 }
125
126 /*
127 =================
128 VM_objerror
129
130 Dumps out self, then an error message.  The program is aborted and self is
131 removed, but the level can continue.
132
133 objerror(value)
134 =================
135 */
136 void VM_objerror (void)
137 {
138         prvm_edict_t    *ed;
139         char string[VM_STRINGTEMP_LENGTH];
140
141         VM_VarString(0, string, sizeof(string));
142         Con_Printf("======OBJECT ERROR======\n"); // , PRVM_NAME, PRVM_GetString(prog->xfunction->s_name), string); // or include them? FIXME
143         if (prog->globaloffsets.self >= 0)
144         {
145                 ed = PRVM_PROG_TO_EDICT(PRVM_GLOBALFIELDVALUE(prog->globaloffsets.self)->edict);
146                 PRVM_ED_Print(ed, NULL);
147
148                 PRVM_ED_Free (ed);
149         }
150         else
151                 // objerror has to display the object fields -> else call
152                 PRVM_ERROR ("VM_objecterror: self not defined !");
153         Con_Printf("%s OBJECT ERROR in %s:\n%s\nTip: read above for entity information\n", PRVM_NAME, PRVM_GetString(prog->xfunction->s_name), string);
154 }
155
156 /*
157 =================
158 VM_print
159
160 print to console
161
162 print(...[string])
163 =================
164 */
165 void VM_print (void)
166 {
167         char string[VM_STRINGTEMP_LENGTH];
168
169         VM_VarString(0, string, sizeof(string));
170         Con_Print(string);
171 }
172
173 /*
174 =================
175 VM_bprint
176
177 broadcast print to everyone on server
178
179 bprint(...[string])
180 =================
181 */
182 void VM_bprint (void)
183 {
184         char string[VM_STRINGTEMP_LENGTH];
185
186         if(!sv.active)
187         {
188                 VM_Warning("VM_bprint: game is not server(%s) !\n", PRVM_NAME);
189                 return;
190         }
191
192         VM_VarString(0, string, sizeof(string));
193         SV_BroadcastPrint(string);
194 }
195
196 /*
197 =================
198 VM_sprint (menu & client but only if server.active == true)
199
200 single print to a specific client
201
202 sprint(float clientnum,...[string])
203 =================
204 */
205 void VM_sprint (void)
206 {
207         client_t        *client;
208         int                     clientnum;
209         char string[VM_STRINGTEMP_LENGTH];
210
211         VM_SAFEPARMCOUNTRANGE(1, 8, VM_sprint);
212
213         //find client for this entity
214         clientnum = (int)PRVM_G_FLOAT(OFS_PARM0);
215         if (!sv.active  || clientnum < 0 || clientnum >= svs.maxclients || !svs.clients[clientnum].active)
216         {
217                 VM_Warning("VM_sprint: %s: invalid client or server is not active !\n", PRVM_NAME);
218                 return;
219         }
220
221         client = svs.clients + clientnum;
222         if (!client->netconnection)
223                 return;
224
225         VM_VarString(1, string, sizeof(string));
226         MSG_WriteChar(&client->netconnection->message,svc_print);
227         MSG_WriteString(&client->netconnection->message, string);
228 }
229
230 /*
231 =================
232 VM_centerprint
233
234 single print to the screen
235
236 centerprint(value)
237 =================
238 */
239 void VM_centerprint (void)
240 {
241         char string[VM_STRINGTEMP_LENGTH];
242
243         VM_SAFEPARMCOUNTRANGE(1, 8, VM_centerprint);
244         VM_VarString(0, string, sizeof(string));
245         SCR_CenterPrint(string);
246 }
247
248 /*
249 =================
250 VM_normalize
251
252 vector normalize(vector)
253 =================
254 */
255 void VM_normalize (void)
256 {
257         float   *value1;
258         vec3_t  newvalue;
259         double  f;
260
261         VM_SAFEPARMCOUNT(1,VM_normalize);
262
263         value1 = PRVM_G_VECTOR(OFS_PARM0);
264
265         f = VectorLength2(value1);
266         if (f)
267         {
268                 f = 1.0 / sqrt(f);
269                 VectorScale(value1, f, newvalue);
270         }
271         else
272                 VectorClear(newvalue);
273
274         VectorCopy (newvalue, PRVM_G_VECTOR(OFS_RETURN));
275 }
276
277 /*
278 =================
279 VM_vlen
280
281 scalar vlen(vector)
282 =================
283 */
284 void VM_vlen (void)
285 {
286         VM_SAFEPARMCOUNT(1,VM_vlen);
287         PRVM_G_FLOAT(OFS_RETURN) = VectorLength(PRVM_G_VECTOR(OFS_PARM0));
288 }
289
290 /*
291 =================
292 VM_vectoyaw
293
294 float vectoyaw(vector)
295 =================
296 */
297 void VM_vectoyaw (void)
298 {
299         float   *value1;
300         float   yaw;
301
302         VM_SAFEPARMCOUNT(1,VM_vectoyaw);
303
304         value1 = PRVM_G_VECTOR(OFS_PARM0);
305
306         if (value1[1] == 0 && value1[0] == 0)
307                 yaw = 0;
308         else
309         {
310                 yaw = (int) (atan2(value1[1], value1[0]) * 180 / M_PI);
311                 if (yaw < 0)
312                         yaw += 360;
313         }
314
315         PRVM_G_FLOAT(OFS_RETURN) = yaw;
316 }
317
318
319 /*
320 =================
321 VM_vectoangles
322
323 vector vectoangles(vector)
324 =================
325 */
326 void VM_vectoangles (void)
327 {
328         float   *value1;
329         float   forward;
330         float   yaw, pitch;
331
332         VM_SAFEPARMCOUNT(1,VM_vectoangles);
333
334         value1 = PRVM_G_VECTOR(OFS_PARM0);
335
336         if (value1[1] == 0 && value1[0] == 0)
337         {
338                 yaw = 0;
339                 if (value1[2] > 0)
340                         pitch = 90;
341                 else
342                         pitch = 270;
343         }
344         else
345         {
346                 // LordHavoc: optimized a bit
347                 if (value1[0])
348                 {
349                         yaw = (atan2(value1[1], value1[0]) * 180 / M_PI);
350                         if (yaw < 0)
351                                 yaw += 360;
352                 }
353                 else if (value1[1] > 0)
354                         yaw = 90;
355                 else
356                         yaw = 270;
357
358                 forward = sqrt(value1[0]*value1[0] + value1[1]*value1[1]);
359                 pitch = (atan2(value1[2], forward) * 180 / M_PI);
360                 if (pitch < 0)
361                         pitch += 360;
362         }
363
364         PRVM_G_FLOAT(OFS_RETURN+0) = pitch;
365         PRVM_G_FLOAT(OFS_RETURN+1) = yaw;
366         PRVM_G_FLOAT(OFS_RETURN+2) = 0;
367 }
368
369 /*
370 =================
371 VM_random
372
373 Returns a number from 0<= num < 1
374
375 float random()
376 =================
377 */
378 void VM_random (void)
379 {
380         VM_SAFEPARMCOUNT(0,VM_random);
381
382         PRVM_G_FLOAT(OFS_RETURN) = lhrandom(0, 1);
383 }
384
385 /*
386 =========
387 VM_localsound
388
389 localsound(string sample)
390 =========
391 */
392 void VM_localsound(void)
393 {
394         const char *s;
395
396         VM_SAFEPARMCOUNT(1,VM_localsound);
397
398         s = PRVM_G_STRING(OFS_PARM0);
399
400         if(!S_LocalSound (s))
401         {
402                 PRVM_G_FLOAT(OFS_RETURN) = -4;
403                 VM_Warning("VM_localsound: Failed to play %s for %s !\n", s, PRVM_NAME);
404                 return;
405         }
406
407         PRVM_G_FLOAT(OFS_RETURN) = 1;
408 }
409
410 /*
411 =================
412 VM_break
413
414 break()
415 =================
416 */
417 void VM_break (void)
418 {
419         PRVM_ERROR ("%s: break statement", PRVM_NAME);
420 }
421
422 //============================================================================
423
424 /*
425 =================
426 VM_localcmd
427
428 Sends text over to the client's execution buffer
429
430 [localcmd (string, ...) or]
431 cmd (string, ...)
432 =================
433 */
434 void VM_localcmd (void)
435 {
436         char string[VM_STRINGTEMP_LENGTH];
437         VM_SAFEPARMCOUNTRANGE(1, 8, VM_localcmd);
438         VM_VarString(0, string, sizeof(string));
439         Cbuf_AddText(string);
440 }
441
442 /*
443 =================
444 VM_cvar
445
446 float cvar (string)
447 =================
448 */
449 void VM_cvar (void)
450 {
451         char string[VM_STRINGTEMP_LENGTH];
452         VM_SAFEPARMCOUNTRANGE(1,8,VM_cvar);
453         VM_VarString(0, string, sizeof(string));
454         VM_CheckEmptyString(string);
455         PRVM_G_FLOAT(OFS_RETURN) = Cvar_VariableValue(string);
456 }
457
458 /*
459 =================
460 VM_cvar_string
461
462 const string    VM_cvar_string (string, ...)
463 =================
464 */
465 void VM_cvar_string(void)
466 {
467         char string[VM_STRINGTEMP_LENGTH];
468         VM_SAFEPARMCOUNTRANGE(1,8,VM_cvar_string);
469         VM_VarString(0, string, sizeof(string));
470         VM_CheckEmptyString(string);
471         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(Cvar_VariableString(string));
472 }
473
474
475 /*
476 ========================
477 VM_cvar_defstring
478
479 const string    VM_cvar_defstring (string, ...)
480 ========================
481 */
482 void VM_cvar_defstring (void)
483 {
484         char string[VM_STRINGTEMP_LENGTH];
485         VM_SAFEPARMCOUNTRANGE(1,8,VM_cvar_defstring);
486         VM_VarString(0, string, sizeof(string));
487         VM_CheckEmptyString(string);
488         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(Cvar_VariableDefString(string));
489 }
490 /*
491 =================
492 VM_cvar_set
493
494 void cvar_set (string,string, ...)
495 =================
496 */
497 void VM_cvar_set (void)
498 {
499         const char *name;
500         char string[VM_STRINGTEMP_LENGTH];
501         VM_SAFEPARMCOUNTRANGE(2,8,VM_cvar_set);
502         VM_VarString(1, string, sizeof(string));
503         name = PRVM_G_STRING(OFS_PARM0);
504         VM_CheckEmptyString(name);
505         Cvar_Set(name, string);
506 }
507
508 /*
509 =========
510 VM_dprint
511
512 dprint(...[string])
513 =========
514 */
515 void VM_dprint (void)
516 {
517         char string[VM_STRINGTEMP_LENGTH];
518         VM_SAFEPARMCOUNTRANGE(1, 8, VM_dprint);
519         if (developer.integer)
520         {
521                 VM_VarString(0, string, sizeof(string));
522 #if 1
523                 Con_Printf("%s", string);
524 #else
525                 Con_Printf("%s: %s", PRVM_NAME, string);
526 #endif
527         }
528 }
529
530 /*
531 =========
532 VM_ftos
533
534 string  ftos(float)
535 =========
536 */
537
538 void VM_ftos (void)
539 {
540         float v;
541         char s[128];
542
543         VM_SAFEPARMCOUNT(1, VM_ftos);
544
545         v = PRVM_G_FLOAT(OFS_PARM0);
546
547         if ((float)((int)v) == v)
548                 sprintf(s, "%i", (int)v);
549         else
550                 sprintf(s, "%f", v);
551         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(s);
552 }
553
554 /*
555 =========
556 VM_fabs
557
558 float   fabs(float)
559 =========
560 */
561
562 void VM_fabs (void)
563 {
564         float   v;
565
566         VM_SAFEPARMCOUNT(1,VM_fabs);
567
568         v = PRVM_G_FLOAT(OFS_PARM0);
569         PRVM_G_FLOAT(OFS_RETURN) = fabs(v);
570 }
571
572 /*
573 =========
574 VM_vtos
575
576 string  vtos(vector)
577 =========
578 */
579
580 void VM_vtos (void)
581 {
582         char s[512];
583
584         VM_SAFEPARMCOUNT(1,VM_vtos);
585
586         sprintf (s, "'%5.1f %5.1f %5.1f'", PRVM_G_VECTOR(OFS_PARM0)[0], PRVM_G_VECTOR(OFS_PARM0)[1], PRVM_G_VECTOR(OFS_PARM0)[2]);
587         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(s);
588 }
589
590 /*
591 =========
592 VM_etos
593
594 string  etos(entity)
595 =========
596 */
597
598 void VM_etos (void)
599 {
600         char s[128];
601
602         VM_SAFEPARMCOUNT(1, VM_etos);
603
604         sprintf (s, "entity %i", PRVM_G_EDICTNUM(OFS_PARM0));
605         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(s);
606 }
607
608 /*
609 =========
610 VM_stof
611
612 float stof(...[string])
613 =========
614 */
615 void VM_stof(void)
616 {
617         char string[VM_STRINGTEMP_LENGTH];
618         VM_SAFEPARMCOUNTRANGE(1, 8, VM_stof);
619         VM_VarString(0, string, sizeof(string));
620         PRVM_G_FLOAT(OFS_RETURN) = atof(string);
621 }
622
623 /*
624 ========================
625 VM_itof
626
627 float itof(intt ent)
628 ========================
629 */
630 void VM_itof(void)
631 {
632         VM_SAFEPARMCOUNT(1, VM_itof);
633         PRVM_G_FLOAT(OFS_RETURN) = PRVM_G_INT(OFS_PARM0);
634 }
635
636 /*
637 ========================
638 VM_ftoe
639
640 entity ftoe(float num)
641 ========================
642 */
643 void VM_ftoe(void)
644 {
645         int ent;
646         VM_SAFEPARMCOUNT(1, VM_ftoe);
647
648         ent = (int)PRVM_G_FLOAT(OFS_PARM0);
649         if (ent < 0 || ent >= MAX_EDICTS || PRVM_PROG_TO_EDICT(ent)->priv.required->free)
650                 ent = 0; // return world instead of a free or invalid entity
651
652         PRVM_G_INT(OFS_RETURN) = ent;
653 }
654
655 /*
656 =========
657 VM_strftime
658
659 string strftime(float uselocaltime, string[, string ...])
660 =========
661 */
662 void VM_strftime(void)
663 {
664         time_t t;
665         struct tm *tm;
666         char fmt[VM_STRINGTEMP_LENGTH];
667         char result[VM_STRINGTEMP_LENGTH];
668         VM_SAFEPARMCOUNTRANGE(2, 8, VM_strftime);
669         VM_VarString(1, fmt, sizeof(fmt));
670         t = time(NULL);
671         if (PRVM_G_FLOAT(OFS_PARM0))
672                 tm = localtime(&t);
673         else
674                 tm = gmtime(&t);
675         if (!tm)
676         {
677                 PRVM_G_FLOAT(OFS_RETURN) = 0;
678                 return;
679         }
680         strftime(result, sizeof(result), fmt, tm);
681         PRVM_G_FLOAT(OFS_RETURN) = PRVM_SetTempString(result);
682 }
683
684 /*
685 =========
686 VM_spawn
687
688 entity spawn()
689 =========
690 */
691
692 void VM_spawn (void)
693 {
694         prvm_edict_t    *ed;
695         VM_SAFEPARMCOUNT(0, VM_spawn);
696         prog->xfunction->builtinsprofile += 20;
697         ed = PRVM_ED_Alloc();
698         VM_RETURN_EDICT(ed);
699 }
700
701 /*
702 =========
703 VM_remove
704
705 remove(entity e)
706 =========
707 */
708
709 void VM_remove (void)
710 {
711         prvm_edict_t    *ed;
712         prog->xfunction->builtinsprofile += 20;
713
714         VM_SAFEPARMCOUNT(1, VM_remove);
715
716         ed = PRVM_G_EDICT(OFS_PARM0);
717         if( PRVM_NUM_FOR_EDICT(ed) <= prog->reserved_edicts )
718         {
719                 if (developer.integer >= 1)
720                         VM_Warning( "VM_remove: tried to remove the null entity or a reserved entity!\n" );
721         }
722         else if( ed->priv.required->free )
723         {
724                 if (developer.integer >= 1)
725                         VM_Warning( "VM_remove: tried to remove an already freed entity!\n" );
726         }
727         else
728                 PRVM_ED_Free (ed);
729 }
730
731 /*
732 =========
733 VM_find
734
735 entity  find(entity start, .string field, string match)
736 =========
737 */
738
739 void VM_find (void)
740 {
741         int             e;
742         int             f;
743         const char      *s, *t;
744         prvm_edict_t    *ed;
745
746         VM_SAFEPARMCOUNT(3,VM_find);
747
748         e = PRVM_G_EDICTNUM(OFS_PARM0);
749         f = PRVM_G_INT(OFS_PARM1);
750         s = PRVM_G_STRING(OFS_PARM2);
751
752         // LordHavoc: apparently BloodMage does a find(world, weaponmodel, "") and
753         // expects it to find all the monsters, so we must be careful to support
754         // searching for ""
755
756         for (e++ ; e < prog->num_edicts ; e++)
757         {
758                 prog->xfunction->builtinsprofile++;
759                 ed = PRVM_EDICT_NUM(e);
760                 if (ed->priv.required->free)
761                         continue;
762                 t = PRVM_E_STRING(ed,f);
763                 if (!t)
764                         t = "";
765                 if (!strcmp(t,s))
766                 {
767                         VM_RETURN_EDICT(ed);
768                         return;
769                 }
770         }
771
772         VM_RETURN_EDICT(prog->edicts);
773 }
774
775 /*
776 =========
777 VM_findfloat
778
779   entity        findfloat(entity start, .float field, float match)
780   entity        findentity(entity start, .entity field, entity match)
781 =========
782 */
783 // LordHavoc: added this for searching float, int, and entity reference fields
784 void VM_findfloat (void)
785 {
786         int             e;
787         int             f;
788         float   s;
789         prvm_edict_t    *ed;
790
791         VM_SAFEPARMCOUNT(3,VM_findfloat);
792
793         e = PRVM_G_EDICTNUM(OFS_PARM0);
794         f = PRVM_G_INT(OFS_PARM1);
795         s = PRVM_G_FLOAT(OFS_PARM2);
796
797         for (e++ ; e < prog->num_edicts ; e++)
798         {
799                 prog->xfunction->builtinsprofile++;
800                 ed = PRVM_EDICT_NUM(e);
801                 if (ed->priv.required->free)
802                         continue;
803                 if (PRVM_E_FLOAT(ed,f) == s)
804                 {
805                         VM_RETURN_EDICT(ed);
806                         return;
807                 }
808         }
809
810         VM_RETURN_EDICT(prog->edicts);
811 }
812
813 /*
814 =========
815 VM_findchain
816
817 entity  findchain(.string field, string match)
818 =========
819 */
820 // chained search for strings in entity fields
821 // entity(.string field, string match) findchain = #402;
822 void VM_findchain (void)
823 {
824         int             i;
825         int             f;
826         const char      *s, *t;
827         prvm_edict_t    *ent, *chain;
828
829         VM_SAFEPARMCOUNT(2,VM_findchain);
830
831         if (prog->fieldoffsets.chain < 0)
832                 PRVM_ERROR("VM_findchain: %s doesnt have a chain field !", PRVM_NAME);
833
834         chain = prog->edicts;
835
836         f = PRVM_G_INT(OFS_PARM0);
837         s = PRVM_G_STRING(OFS_PARM1);
838
839         // LordHavoc: apparently BloodMage does a find(world, weaponmodel, "") and
840         // expects it to find all the monsters, so we must be careful to support
841         // searching for ""
842
843         ent = PRVM_NEXT_EDICT(prog->edicts);
844         for (i = 1;i < prog->num_edicts;i++, ent = PRVM_NEXT_EDICT(ent))
845         {
846                 prog->xfunction->builtinsprofile++;
847                 if (ent->priv.required->free)
848                         continue;
849                 t = PRVM_E_STRING(ent,f);
850                 if (!t)
851                         t = "";
852                 if (strcmp(t,s))
853                         continue;
854
855                 PRVM_EDICTFIELDVALUE(ent,prog->fieldoffsets.chain)->edict = PRVM_NUM_FOR_EDICT(chain);
856                 chain = ent;
857         }
858
859         VM_RETURN_EDICT(chain);
860 }
861
862 /*
863 =========
864 VM_findchainfloat
865
866 entity  findchainfloat(.string field, float match)
867 entity  findchainentity(.string field, entity match)
868 =========
869 */
870 // LordHavoc: chained search for float, int, and entity reference fields
871 // entity(.string field, float match) findchainfloat = #403;
872 void VM_findchainfloat (void)
873 {
874         int             i;
875         int             f;
876         float   s;
877         prvm_edict_t    *ent, *chain;
878
879         VM_SAFEPARMCOUNT(2, VM_findchainfloat);
880
881         if (prog->fieldoffsets.chain < 0)
882                 PRVM_ERROR("VM_findchainfloat: %s doesnt have a chain field !", PRVM_NAME);
883
884         chain = (prvm_edict_t *)prog->edicts;
885
886         f = PRVM_G_INT(OFS_PARM0);
887         s = PRVM_G_FLOAT(OFS_PARM1);
888
889         ent = PRVM_NEXT_EDICT(prog->edicts);
890         for (i = 1;i < prog->num_edicts;i++, ent = PRVM_NEXT_EDICT(ent))
891         {
892                 prog->xfunction->builtinsprofile++;
893                 if (ent->priv.required->free)
894                         continue;
895                 if (PRVM_E_FLOAT(ent,f) != s)
896                         continue;
897
898                 PRVM_EDICTFIELDVALUE(ent,prog->fieldoffsets.chain)->edict = PRVM_EDICT_TO_PROG(chain);
899                 chain = ent;
900         }
901
902         VM_RETURN_EDICT(chain);
903 }
904
905 /*
906 ========================
907 VM_findflags
908
909 entity  findflags(entity start, .float field, float match)
910 ========================
911 */
912 // LordHavoc: search for flags in float fields
913 void VM_findflags (void)
914 {
915         int             e;
916         int             f;
917         int             s;
918         prvm_edict_t    *ed;
919
920         VM_SAFEPARMCOUNT(3, VM_findflags);
921
922
923         e = PRVM_G_EDICTNUM(OFS_PARM0);
924         f = PRVM_G_INT(OFS_PARM1);
925         s = (int)PRVM_G_FLOAT(OFS_PARM2);
926
927         for (e++ ; e < prog->num_edicts ; e++)
928         {
929                 prog->xfunction->builtinsprofile++;
930                 ed = PRVM_EDICT_NUM(e);
931                 if (ed->priv.required->free)
932                         continue;
933                 if (!PRVM_E_FLOAT(ed,f))
934                         continue;
935                 if ((int)PRVM_E_FLOAT(ed,f) & s)
936                 {
937                         VM_RETURN_EDICT(ed);
938                         return;
939                 }
940         }
941
942         VM_RETURN_EDICT(prog->edicts);
943 }
944
945 /*
946 ========================
947 VM_findchainflags
948
949 entity  findchainflags(.float field, float match)
950 ========================
951 */
952 // LordHavoc: chained search for flags in float fields
953 void VM_findchainflags (void)
954 {
955         int             i;
956         int             f;
957         int             s;
958         prvm_edict_t    *ent, *chain;
959
960         VM_SAFEPARMCOUNT(2, VM_findchainflags);
961
962         if (prog->fieldoffsets.chain < 0)
963                 PRVM_ERROR("VM_findchainflags: %s doesnt have a chain field !", PRVM_NAME);
964
965         chain = (prvm_edict_t *)prog->edicts;
966
967         f = PRVM_G_INT(OFS_PARM0);
968         s = (int)PRVM_G_FLOAT(OFS_PARM1);
969
970         ent = PRVM_NEXT_EDICT(prog->edicts);
971         for (i = 1;i < prog->num_edicts;i++, ent = PRVM_NEXT_EDICT(ent))
972         {
973                 prog->xfunction->builtinsprofile++;
974                 if (ent->priv.required->free)
975                         continue;
976                 if (!PRVM_E_FLOAT(ent,f))
977                         continue;
978                 if (!((int)PRVM_E_FLOAT(ent,f) & s))
979                         continue;
980
981                 PRVM_EDICTFIELDVALUE(ent,prog->fieldoffsets.chain)->edict = PRVM_EDICT_TO_PROG(chain);
982                 chain = ent;
983         }
984
985         VM_RETURN_EDICT(chain);
986 }
987
988 /*
989 =========
990 VM_precache_sound
991
992 string  precache_sound (string sample)
993 =========
994 */
995 void VM_precache_sound (void)
996 {
997         const char *s;
998
999         VM_SAFEPARMCOUNT(1, VM_precache_sound);
1000
1001         s = PRVM_G_STRING(OFS_PARM0);
1002         PRVM_G_INT(OFS_RETURN) = PRVM_G_INT(OFS_PARM0);
1003         VM_CheckEmptyString(s);
1004
1005         if(snd_initialized.integer && !S_PrecacheSound(s, true, false))
1006         {
1007                 VM_Warning("VM_precache_sound: Failed to load %s for %s\n", s, PRVM_NAME);
1008                 return;
1009         }
1010 }
1011
1012 /*
1013 =================
1014 VM_precache_file
1015
1016 returns the same string as output
1017
1018 does nothing, only used by qcc to build .pak archives
1019 =================
1020 */
1021 void VM_precache_file (void)
1022 {
1023         VM_SAFEPARMCOUNT(1,VM_precache_file);
1024         // precache_file is only used to copy files with qcc, it does nothing
1025         PRVM_G_INT(OFS_RETURN) = PRVM_G_INT(OFS_PARM0);
1026 }
1027
1028 /*
1029 =========
1030 VM_coredump
1031
1032 coredump()
1033 =========
1034 */
1035 void VM_coredump (void)
1036 {
1037         VM_SAFEPARMCOUNT(0,VM_coredump);
1038
1039         Cbuf_AddText("prvm_edicts ");
1040         Cbuf_AddText(PRVM_NAME);
1041         Cbuf_AddText("\n");
1042 }
1043
1044 /*
1045 =========
1046 VM_stackdump
1047
1048 stackdump()
1049 =========
1050 */
1051 void PRVM_StackTrace(void);
1052 void VM_stackdump (void)
1053 {
1054         VM_SAFEPARMCOUNT(0, VM_stackdump);
1055
1056         PRVM_StackTrace();
1057 }
1058
1059 /*
1060 =========
1061 VM_crash
1062
1063 crash()
1064 =========
1065 */
1066
1067 void VM_crash(void)
1068 {
1069         VM_SAFEPARMCOUNT(0, VM_crash);
1070
1071         PRVM_ERROR("Crash called by %s",PRVM_NAME);
1072 }
1073
1074 /*
1075 =========
1076 VM_traceon
1077
1078 traceon()
1079 =========
1080 */
1081 void VM_traceon (void)
1082 {
1083         VM_SAFEPARMCOUNT(0,VM_traceon);
1084
1085         prog->trace = true;
1086 }
1087
1088 /*
1089 =========
1090 VM_traceoff
1091
1092 traceoff()
1093 =========
1094 */
1095 void VM_traceoff (void)
1096 {
1097         VM_SAFEPARMCOUNT(0,VM_traceoff);
1098
1099         prog->trace = false;
1100 }
1101
1102 /*
1103 =========
1104 VM_eprint
1105
1106 eprint(entity e)
1107 =========
1108 */
1109 void VM_eprint (void)
1110 {
1111         VM_SAFEPARMCOUNT(1,VM_eprint);
1112
1113         PRVM_ED_PrintNum (PRVM_G_EDICTNUM(OFS_PARM0), NULL);
1114 }
1115
1116 /*
1117 =========
1118 VM_rint
1119
1120 float   rint(float)
1121 =========
1122 */
1123 void VM_rint (void)
1124 {
1125         float f;
1126         VM_SAFEPARMCOUNT(1,VM_rint);
1127
1128         f = PRVM_G_FLOAT(OFS_PARM0);
1129         if (f > 0)
1130                 PRVM_G_FLOAT(OFS_RETURN) = floor(f + 0.5);
1131         else
1132                 PRVM_G_FLOAT(OFS_RETURN) = ceil(f - 0.5);
1133 }
1134
1135 /*
1136 =========
1137 VM_floor
1138
1139 float   floor(float)
1140 =========
1141 */
1142 void VM_floor (void)
1143 {
1144         VM_SAFEPARMCOUNT(1,VM_floor);
1145
1146         PRVM_G_FLOAT(OFS_RETURN) = floor(PRVM_G_FLOAT(OFS_PARM0));
1147 }
1148
1149 /*
1150 =========
1151 VM_ceil
1152
1153 float   ceil(float)
1154 =========
1155 */
1156 void VM_ceil (void)
1157 {
1158         VM_SAFEPARMCOUNT(1,VM_ceil);
1159
1160         PRVM_G_FLOAT(OFS_RETURN) = ceil(PRVM_G_FLOAT(OFS_PARM0));
1161 }
1162
1163
1164 /*
1165 =============
1166 VM_nextent
1167
1168 entity  nextent(entity)
1169 =============
1170 */
1171 void VM_nextent (void)
1172 {
1173         int             i;
1174         prvm_edict_t    *ent;
1175
1176         VM_SAFEPARMCOUNT(1, VM_nextent);
1177
1178         i = PRVM_G_EDICTNUM(OFS_PARM0);
1179         while (1)
1180         {
1181                 prog->xfunction->builtinsprofile++;
1182                 i++;
1183                 if (i == prog->num_edicts)
1184                 {
1185                         VM_RETURN_EDICT(prog->edicts);
1186                         return;
1187                 }
1188                 ent = PRVM_EDICT_NUM(i);
1189                 if (!ent->priv.required->free)
1190                 {
1191                         VM_RETURN_EDICT(ent);
1192                         return;
1193                 }
1194         }
1195 }
1196
1197 //=============================================================================
1198
1199 /*
1200 ==============
1201 VM_changelevel
1202 server and menu
1203
1204 changelevel(string map)
1205 ==============
1206 */
1207 void VM_changelevel (void)
1208 {
1209         VM_SAFEPARMCOUNT(1, VM_changelevel);
1210
1211         if(!sv.active)
1212         {
1213                 VM_Warning("VM_changelevel: game is not server (%s)\n", PRVM_NAME);
1214                 return;
1215         }
1216
1217 // make sure we don't issue two changelevels
1218         if (svs.changelevel_issued)
1219                 return;
1220         svs.changelevel_issued = true;
1221
1222         Cbuf_AddText (va("changelevel %s\n",PRVM_G_STRING(OFS_PARM0)));
1223 }
1224
1225 /*
1226 =========
1227 VM_sin
1228
1229 float   sin(float)
1230 =========
1231 */
1232 void VM_sin (void)
1233 {
1234         VM_SAFEPARMCOUNT(1,VM_sin);
1235         PRVM_G_FLOAT(OFS_RETURN) = sin(PRVM_G_FLOAT(OFS_PARM0));
1236 }
1237
1238 /*
1239 =========
1240 VM_cos
1241 float   cos(float)
1242 =========
1243 */
1244 void VM_cos (void)
1245 {
1246         VM_SAFEPARMCOUNT(1,VM_cos);
1247         PRVM_G_FLOAT(OFS_RETURN) = cos(PRVM_G_FLOAT(OFS_PARM0));
1248 }
1249
1250 /*
1251 =========
1252 VM_sqrt
1253
1254 float   sqrt(float)
1255 =========
1256 */
1257 void VM_sqrt (void)
1258 {
1259         VM_SAFEPARMCOUNT(1,VM_sqrt);
1260         PRVM_G_FLOAT(OFS_RETURN) = sqrt(PRVM_G_FLOAT(OFS_PARM0));
1261 }
1262
1263 /*
1264 =========
1265 VM_asin
1266
1267 float   asin(float)
1268 =========
1269 */
1270 void VM_asin (void)
1271 {
1272         VM_SAFEPARMCOUNT(1,VM_asin);
1273         PRVM_G_FLOAT(OFS_RETURN) = asin(PRVM_G_FLOAT(OFS_PARM0));
1274 }
1275
1276 /*
1277 =========
1278 VM_acos
1279 float   acos(float)
1280 =========
1281 */
1282 void VM_acos (void)
1283 {
1284         VM_SAFEPARMCOUNT(1,VM_acos);
1285         PRVM_G_FLOAT(OFS_RETURN) = acos(PRVM_G_FLOAT(OFS_PARM0));
1286 }
1287
1288 /*
1289 =========
1290 VM_atan
1291 float   atan(float)
1292 =========
1293 */
1294 void VM_atan (void)
1295 {
1296         VM_SAFEPARMCOUNT(1,VM_atan);
1297         PRVM_G_FLOAT(OFS_RETURN) = atan(PRVM_G_FLOAT(OFS_PARM0));
1298 }
1299
1300 /*
1301 =========
1302 VM_atan2
1303 float   atan2(float,float)
1304 =========
1305 */
1306 void VM_atan2 (void)
1307 {
1308         VM_SAFEPARMCOUNT(2,VM_atan2);
1309         PRVM_G_FLOAT(OFS_RETURN) = atan2(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1));
1310 }
1311
1312 /*
1313 =========
1314 VM_tan
1315 float   tan(float)
1316 =========
1317 */
1318 void VM_tan (void)
1319 {
1320         VM_SAFEPARMCOUNT(1,VM_tan);
1321         PRVM_G_FLOAT(OFS_RETURN) = tan(PRVM_G_FLOAT(OFS_PARM0));
1322 }
1323
1324 /*
1325 =================
1326 VM_randomvec
1327
1328 Returns a vector of length < 1 and > 0
1329
1330 vector randomvec()
1331 =================
1332 */
1333 void VM_randomvec (void)
1334 {
1335         vec3_t          temp;
1336         //float         length;
1337
1338         VM_SAFEPARMCOUNT(0, VM_randomvec);
1339
1340         //// WTF ??
1341         do
1342         {
1343                 temp[0] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1344                 temp[1] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1345                 temp[2] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1346         }
1347         while (DotProduct(temp, temp) >= 1);
1348         VectorCopy (temp, PRVM_G_VECTOR(OFS_RETURN));
1349
1350         /*
1351         temp[0] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1352         temp[1] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1353         temp[2] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1354         // length returned always > 0
1355         length = (rand()&32766 + 1) * (1.0 / 32767.0) / VectorLength(temp);
1356         VectorScale(temp,length, temp);*/
1357         //VectorCopy(temp, PRVM_G_VECTOR(OFS_RETURN));
1358 }
1359
1360 //=============================================================================
1361
1362 /*
1363 =========
1364 VM_registercvar
1365
1366 float   registercvar (string name, string value[, float flags])
1367 =========
1368 */
1369 void VM_registercvar (void)
1370 {
1371         const char *name, *value;
1372         int     flags;
1373
1374         VM_SAFEPARMCOUNTRANGE(2, 3, VM_registercvar);
1375
1376         name = PRVM_G_STRING(OFS_PARM0);
1377         value = PRVM_G_STRING(OFS_PARM1);
1378         flags = prog->argc >= 3 ? (int)PRVM_G_FLOAT(OFS_PARM2) : 0;
1379         PRVM_G_FLOAT(OFS_RETURN) = 0;
1380
1381         if(flags > CVAR_MAXFLAGSVAL)
1382                 return;
1383
1384 // first check to see if it has already been defined
1385         if (Cvar_FindVar (name))
1386                 return;
1387
1388 // check for overlap with a command
1389         if (Cmd_Exists (name))
1390         {
1391                 VM_Warning("VM_registercvar: %s is a command\n", name);
1392                 return;
1393         }
1394
1395         Cvar_Get(name, value, flags);
1396
1397         PRVM_G_FLOAT(OFS_RETURN) = 1; // success
1398 }
1399
1400
1401 /*
1402 =================
1403 VM_min
1404
1405 returns the minimum of two supplied floats
1406
1407 float min(float a, float b, ...[float])
1408 =================
1409 */
1410 void VM_min (void)
1411 {
1412         VM_SAFEPARMCOUNTRANGE(2, 8, VM_min);
1413         // LordHavoc: 3+ argument enhancement suggested by FrikaC
1414         if (prog->argc >= 3)
1415         {
1416                 int i;
1417                 float f = PRVM_G_FLOAT(OFS_PARM0);
1418                 for (i = 1;i < prog->argc;i++)
1419                         if (f > PRVM_G_FLOAT((OFS_PARM0+i*3)))
1420                                 f = PRVM_G_FLOAT((OFS_PARM0+i*3));
1421                 PRVM_G_FLOAT(OFS_RETURN) = f;
1422         }
1423         else
1424                 PRVM_G_FLOAT(OFS_RETURN) = min(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1));
1425 }
1426
1427 /*
1428 =================
1429 VM_max
1430
1431 returns the maximum of two supplied floats
1432
1433 float   max(float a, float b, ...[float])
1434 =================
1435 */
1436 void VM_max (void)
1437 {
1438         VM_SAFEPARMCOUNTRANGE(2, 8, VM_max);
1439         // LordHavoc: 3+ argument enhancement suggested by FrikaC
1440         if (prog->argc >= 3)
1441         {
1442                 int i;
1443                 float f = PRVM_G_FLOAT(OFS_PARM0);
1444                 for (i = 1;i < prog->argc;i++)
1445                         if (f < PRVM_G_FLOAT((OFS_PARM0+i*3)))
1446                                 f = PRVM_G_FLOAT((OFS_PARM0+i*3));
1447                 PRVM_G_FLOAT(OFS_RETURN) = f;
1448         }
1449         else
1450                 PRVM_G_FLOAT(OFS_RETURN) = max(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1));
1451 }
1452
1453 /*
1454 =================
1455 VM_bound
1456
1457 returns number bounded by supplied range
1458
1459 float   bound(float min, float value, float max)
1460 =================
1461 */
1462 void VM_bound (void)
1463 {
1464         VM_SAFEPARMCOUNT(3,VM_bound);
1465         PRVM_G_FLOAT(OFS_RETURN) = bound(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1), PRVM_G_FLOAT(OFS_PARM2));
1466 }
1467
1468 /*
1469 =================
1470 VM_pow
1471
1472 returns a raised to power b
1473
1474 float   pow(float a, float b)
1475 =================
1476 */
1477 void VM_pow (void)
1478 {
1479         VM_SAFEPARMCOUNT(2,VM_pow);
1480         PRVM_G_FLOAT(OFS_RETURN) = pow(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1));
1481 }
1482
1483 void VM_Files_Init(void)
1484 {
1485         int i;
1486         for (i = 0;i < PRVM_MAX_OPENFILES;i++)
1487                 prog->openfiles[i] = NULL;
1488 }
1489
1490 void VM_Files_CloseAll(void)
1491 {
1492         int i;
1493         for (i = 0;i < PRVM_MAX_OPENFILES;i++)
1494         {
1495                 if (prog->openfiles[i])
1496                         FS_Close(prog->openfiles[i]);
1497                 prog->openfiles[i] = NULL;
1498         }
1499 }
1500
1501 static qfile_t *VM_GetFileHandle( int index )
1502 {
1503         if (index < 0 || index >= PRVM_MAX_OPENFILES)
1504         {
1505                 Con_Printf("VM_GetFileHandle: invalid file handle %i used in %s\n", index, PRVM_NAME);
1506                 return NULL;
1507         }
1508         if (prog->openfiles[index] == NULL)
1509         {
1510                 Con_Printf("VM_GetFileHandle: no such file handle %i (or file has been closed) in %s\n", index, PRVM_NAME);
1511                 return NULL;
1512         }
1513         return prog->openfiles[index];
1514 }
1515
1516 /*
1517 =========
1518 VM_fopen
1519
1520 float   fopen(string filename, float mode)
1521 =========
1522 */
1523 // float(string filename, float mode) fopen = #110;
1524 // opens a file inside quake/gamedir/data/ (mode is FILE_READ, FILE_APPEND, or FILE_WRITE),
1525 // returns fhandle >= 0 if successful, or fhandle < 0 if unable to open file for any reason
1526 void VM_fopen(void)
1527 {
1528         int filenum, mode;
1529         const char *modestring, *filename;
1530
1531         VM_SAFEPARMCOUNT(2,VM_fopen);
1532
1533         for (filenum = 0;filenum < PRVM_MAX_OPENFILES;filenum++)
1534                 if (prog->openfiles[filenum] == NULL)
1535                         break;
1536         if (filenum >= PRVM_MAX_OPENFILES)
1537         {
1538                 PRVM_G_FLOAT(OFS_RETURN) = -2;
1539                 VM_Warning("VM_fopen: %s ran out of file handles (%i)\n", PRVM_NAME, PRVM_MAX_OPENFILES);
1540                 return;
1541         }
1542         mode = (int)PRVM_G_FLOAT(OFS_PARM1);
1543         switch(mode)
1544         {
1545         case 0: // FILE_READ
1546                 modestring = "rb";
1547                 break;
1548         case 1: // FILE_APPEND
1549                 modestring = "ab";
1550                 break;
1551         case 2: // FILE_WRITE
1552                 modestring = "wb";
1553                 break;
1554         default:
1555                 PRVM_G_FLOAT(OFS_RETURN) = -3;
1556                 VM_Warning("VM_fopen: %s: no such mode %i (valid: 0 = read, 1 = append, 2 = write)\n", PRVM_NAME, mode);
1557                 return;
1558         }
1559         filename = PRVM_G_STRING(OFS_PARM0);
1560
1561         prog->openfiles[filenum] = FS_Open(va("data/%s", filename), modestring, false, false);
1562         if (prog->openfiles[filenum] == NULL && mode == 0)
1563                 prog->openfiles[filenum] = FS_Open(va("%s", filename), modestring, false, false);
1564
1565         if (prog->openfiles[filenum] == NULL)
1566         {
1567                 PRVM_G_FLOAT(OFS_RETURN) = -1;
1568                 if (developer.integer >= 100)
1569                         VM_Warning("VM_fopen: %s: %s mode %s failed\n", PRVM_NAME, filename, modestring);
1570         }
1571         else
1572         {
1573                 PRVM_G_FLOAT(OFS_RETURN) = filenum;
1574                 if (developer.integer >= 100)
1575                         Con_Printf("VM_fopen: %s: %s mode %s opened as #%i\n", PRVM_NAME, filename, modestring, filenum);
1576         }
1577 }
1578
1579 /*
1580 =========
1581 VM_fclose
1582
1583 fclose(float fhandle)
1584 =========
1585 */
1586 //void(float fhandle) fclose = #111; // closes a file
1587 void VM_fclose(void)
1588 {
1589         int filenum;
1590
1591         VM_SAFEPARMCOUNT(1,VM_fclose);
1592
1593         filenum = (int)PRVM_G_FLOAT(OFS_PARM0);
1594         if (filenum < 0 || filenum >= PRVM_MAX_OPENFILES)
1595         {
1596                 VM_Warning("VM_fclose: invalid file handle %i used in %s\n", filenum, PRVM_NAME);
1597                 return;
1598         }
1599         if (prog->openfiles[filenum] == NULL)
1600         {
1601                 VM_Warning("VM_fclose: no such file handle %i (or file has been closed) in %s\n", filenum, PRVM_NAME);
1602                 return;
1603         }
1604         FS_Close(prog->openfiles[filenum]);
1605         prog->openfiles[filenum] = NULL;
1606         if (developer.integer >= 100)
1607                 Con_Printf("VM_fclose: %s: #%i closed\n", PRVM_NAME, filenum);
1608 }
1609
1610 /*
1611 =========
1612 VM_fgets
1613
1614 string  fgets(float fhandle)
1615 =========
1616 */
1617 //string(float fhandle) fgets = #112; // reads a line of text from the file and returns as a tempstring
1618 void VM_fgets(void)
1619 {
1620         int c, end;
1621         char string[VM_STRINGTEMP_LENGTH];
1622         int filenum;
1623
1624         VM_SAFEPARMCOUNT(1,VM_fgets);
1625
1626         filenum = (int)PRVM_G_FLOAT(OFS_PARM0);
1627         if (filenum < 0 || filenum >= PRVM_MAX_OPENFILES)
1628         {
1629                 VM_Warning("VM_fgets: invalid file handle %i used in %s\n", filenum, PRVM_NAME);
1630                 return;
1631         }
1632         if (prog->openfiles[filenum] == NULL)
1633         {
1634                 VM_Warning("VM_fgets: no such file handle %i (or file has been closed) in %s\n", filenum, PRVM_NAME);
1635                 return;
1636         }
1637         end = 0;
1638         for (;;)
1639         {
1640                 c = FS_Getc(prog->openfiles[filenum]);
1641                 if (c == '\r' || c == '\n' || c < 0)
1642                         break;
1643                 if (end < VM_STRINGTEMP_LENGTH - 1)
1644                         string[end++] = c;
1645         }
1646         string[end] = 0;
1647         // remove \n following \r
1648         if (c == '\r')
1649         {
1650                 c = FS_Getc(prog->openfiles[filenum]);
1651                 if (c != '\n')
1652                         FS_UnGetc(prog->openfiles[filenum], (unsigned char)c);
1653         }
1654         if (developer.integer >= 100)
1655                 Con_Printf("fgets: %s: %s\n", PRVM_NAME, string);
1656         if (c >= 0 || end)
1657                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
1658         else
1659                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
1660 }
1661
1662 /*
1663 =========
1664 VM_fputs
1665
1666 fputs(float fhandle, string s)
1667 =========
1668 */
1669 //void(float fhandle, string s) fputs = #113; // writes a line of text to the end of the file
1670 void VM_fputs(void)
1671 {
1672         int stringlength;
1673         char string[VM_STRINGTEMP_LENGTH];
1674         int filenum;
1675
1676         VM_SAFEPARMCOUNT(2,VM_fputs);
1677
1678         filenum = (int)PRVM_G_FLOAT(OFS_PARM0);
1679         if (filenum < 0 || filenum >= PRVM_MAX_OPENFILES)
1680         {
1681                 VM_Warning("VM_fputs: invalid file handle %i used in %s\n", filenum, PRVM_NAME);
1682                 return;
1683         }
1684         if (prog->openfiles[filenum] == NULL)
1685         {
1686                 VM_Warning("VM_fputs: no such file handle %i (or file has been closed) in %s\n", filenum, PRVM_NAME);
1687                 return;
1688         }
1689         VM_VarString(1, string, sizeof(string));
1690         if ((stringlength = (int)strlen(string)))
1691                 FS_Write(prog->openfiles[filenum], string, stringlength);
1692         if (developer.integer >= 100)
1693                 Con_Printf("fputs: %s: %s\n", PRVM_NAME, string);
1694 }
1695
1696 /*
1697 =========
1698 VM_writetofile
1699
1700         writetofile(float fhandle, entity ent)
1701 =========
1702 */
1703 void VM_writetofile(void)
1704 {
1705         prvm_edict_t * ent;
1706         qfile_t *file;
1707
1708         VM_SAFEPARMCOUNT(2, VM_writetofile);
1709
1710         file = VM_GetFileHandle( (int)PRVM_G_FLOAT(OFS_PARM0) );
1711         if( !file )
1712         {
1713                 VM_Warning("VM_writetofile: invalid or closed file handle\n");
1714                 return;
1715         }
1716
1717         ent = PRVM_G_EDICT(OFS_PARM1);
1718         if(ent->priv.required->free)
1719         {
1720                 VM_Warning("VM_writetofile: %s: entity %i is free !\n", PRVM_NAME, PRVM_NUM_FOR_EDICT(ent));
1721                 return;
1722         }
1723
1724         PRVM_ED_Write (file, ent);
1725 }
1726
1727 /*
1728 =========
1729 VM_strlen
1730
1731 float   strlen(string s)
1732 =========
1733 */
1734 //float(string s) strlen = #114; // returns how many characters are in a string
1735 void VM_strlen(void)
1736 {
1737         VM_SAFEPARMCOUNT(1,VM_strlen);
1738
1739         PRVM_G_FLOAT(OFS_RETURN) = strlen(PRVM_G_STRING(OFS_PARM0));
1740 }
1741
1742 // DRESK - Decolorized String
1743 /*
1744 =========
1745 VM_strdecolorize
1746
1747 string  strdecolorize(string s)
1748 =========
1749 */
1750 // string (string s) strdecolorize = #472; // returns the passed in string with color codes stripped
1751 void VM_strdecolorize(void)
1752 {
1753         char szNewString[VM_STRINGTEMP_LENGTH];
1754         const char *szString;
1755
1756         // Prepare Strings
1757         VM_SAFEPARMCOUNT(1,VM_strdecolorize);
1758         szString = PRVM_G_STRING(OFS_PARM0);
1759
1760         COM_StringDecolorize(szString, 0, szNewString, sizeof(szNewString), TRUE);
1761
1762         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
1763 }
1764
1765 // DRESK - String Length (not counting color codes)
1766 /*
1767 =========
1768 VM_strlennocol
1769
1770 float   strlennocol(string s)
1771 =========
1772 */
1773 // float(string s) strlennocol = #471; // returns how many characters are in a string not including color codes
1774 // For example, ^2Dresk returns a length of 5
1775 void VM_strlennocol(void)
1776 {
1777         const char *szString;
1778         int nCnt;
1779
1780         VM_SAFEPARMCOUNT(1,VM_strlennocol);
1781
1782         szString = PRVM_G_STRING(OFS_PARM0);
1783
1784         nCnt = COM_StringLengthNoColors(szString, 0, NULL);
1785
1786         PRVM_G_FLOAT(OFS_RETURN) = nCnt;
1787 }
1788
1789 // DRESK - String to Uppercase and Lowercase
1790 /*
1791 =========
1792 VM_strtolower
1793
1794 string  strtolower(string s)
1795 =========
1796 */
1797 // string (string s) strtolower = #480; // returns passed in string in lowercase form
1798 void VM_strtolower(void)
1799 {
1800         char szNewString[VM_STRINGTEMP_LENGTH];
1801         const char *szString;
1802
1803         // Prepare Strings
1804         VM_SAFEPARMCOUNT(1,VM_strtolower);
1805         szString = PRVM_G_STRING(OFS_PARM0);
1806
1807         COM_ToLowerString(szString, szNewString, sizeof(szNewString) );
1808
1809         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
1810 }
1811
1812 /*
1813 =========
1814 VM_strtoupper
1815
1816 string  strtoupper(string s)
1817 =========
1818 */
1819 // string (string s) strtoupper = #481; // returns passed in string in uppercase form
1820 void VM_strtoupper(void)
1821 {
1822         char szNewString[VM_STRINGTEMP_LENGTH];
1823         const char *szString;
1824
1825         // Prepare Strings
1826         VM_SAFEPARMCOUNT(1,VM_strtoupper);
1827         szString = PRVM_G_STRING(OFS_PARM0);
1828
1829         COM_ToUpperString(szString, szNewString, sizeof(szNewString) );
1830
1831         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
1832 }
1833
1834 /*
1835 =========
1836 VM_strcat
1837
1838 string strcat(string,string,...[string])
1839 =========
1840 */
1841 //string(string s1, string s2) strcat = #115;
1842 // concatenates two strings (for example "abc", "def" would return "abcdef")
1843 // and returns as a tempstring
1844 void VM_strcat(void)
1845 {
1846         char s[VM_STRINGTEMP_LENGTH];
1847         VM_SAFEPARMCOUNTRANGE(1, 8, VM_strcat);
1848
1849         VM_VarString(0, s, sizeof(s));
1850         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(s);
1851 }
1852
1853 /*
1854 =========
1855 VM_substring
1856
1857 string  substring(string s, float start, float length)
1858 =========
1859 */
1860 // string(string s, float start, float length) substring = #116;
1861 // returns a section of a string as a tempstring
1862 void VM_substring(void)
1863 {
1864         int i, start, length;
1865         const char *s;
1866         char string[VM_STRINGTEMP_LENGTH];
1867
1868         VM_SAFEPARMCOUNT(3,VM_substring);
1869
1870         s = PRVM_G_STRING(OFS_PARM0);
1871         start = (int)PRVM_G_FLOAT(OFS_PARM1);
1872         length = (int)PRVM_G_FLOAT(OFS_PARM2);
1873         for (i = 0;i < start && *s;i++, s++);
1874         for (i = 0;i < (int)sizeof(string) - 1 && *s && i < length;i++, s++)
1875                 string[i] = *s;
1876         string[i] = 0;
1877         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
1878 }
1879
1880 /*
1881 =========
1882 VM_strreplace
1883
1884 string(string search, string replace, string subject) strreplace = #484;
1885 =========
1886 */
1887 // replaces all occurrences of search with replace in the string subject, and returns the result
1888 void VM_strreplace(void)
1889 {
1890         int i, j, si;
1891         const char *search, *replace, *subject;
1892         char string[VM_STRINGTEMP_LENGTH];
1893         int search_len, replace_len, subject_len;
1894
1895         VM_SAFEPARMCOUNT(3,VM_strreplace);
1896
1897         search = PRVM_G_STRING(OFS_PARM0);
1898         replace = PRVM_G_STRING(OFS_PARM1);
1899         subject = PRVM_G_STRING(OFS_PARM2);
1900
1901         search_len = (int)strlen(search);
1902         replace_len = (int)strlen(replace);
1903         subject_len = (int)strlen(subject);
1904
1905         si = 0;
1906         for (i = 0; i < subject_len; i++)
1907         {
1908                 for (j = 0; j < search_len && i+j < subject_len; j++)
1909                         if (subject[i+j] != search[j])
1910                                 break;
1911                 if (j == search_len || i+j == subject_len)
1912                 {
1913                 // found it at offset 'i'
1914                         for (j = 0; j < replace_len && si < (int)sizeof(string) - 1; j++)
1915                                 string[si++] = replace[j];
1916                         i += search_len - 1;
1917                 }
1918                 else
1919                 {
1920                 // not found
1921                         if (si < (int)sizeof(string) - 1)
1922                                 string[si++] = subject[i];
1923                 }
1924         }
1925         string[si] = '\0';
1926
1927         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
1928 }
1929
1930 /*
1931 =========
1932 VM_strireplace
1933
1934 string(string search, string replace, string subject) strireplace = #485;
1935 =========
1936 */
1937 // case-insensitive version of strreplace
1938 void VM_strireplace(void)
1939 {
1940         int i, j, si;
1941         const char *search, *replace, *subject;
1942         char string[VM_STRINGTEMP_LENGTH];
1943         int search_len, replace_len, subject_len;
1944
1945         VM_SAFEPARMCOUNT(3,VM_strreplace);
1946
1947         search = PRVM_G_STRING(OFS_PARM0);
1948         replace = PRVM_G_STRING(OFS_PARM1);
1949         subject = PRVM_G_STRING(OFS_PARM2);
1950
1951         search_len = (int)strlen(search);
1952         replace_len = (int)strlen(replace);
1953         subject_len = (int)strlen(subject);
1954
1955         si = 0;
1956         for (i = 0; i < subject_len; i++)
1957         {
1958                 for (j = 0; j < search_len && i+j < subject_len; j++)
1959                         if (tolower(subject[i+j]) != tolower(search[j]))
1960                                 break;
1961                 if (j == search_len || i+j == subject_len)
1962                 {
1963                 // found it at offset 'i'
1964                         for (j = 0; j < replace_len && si < (int)sizeof(string) - 1; j++)
1965                                 string[si++] = replace[j];
1966                         i += search_len - 1;
1967                 }
1968                 else
1969                 {
1970                 // not found
1971                         if (si < (int)sizeof(string) - 1)
1972                                 string[si++] = subject[i];
1973                 }
1974         }
1975         string[si] = '\0';
1976
1977         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
1978 }
1979
1980 /*
1981 =========
1982 VM_stov
1983
1984 vector  stov(string s)
1985 =========
1986 */
1987 //vector(string s) stov = #117; // returns vector value from a string
1988 void VM_stov(void)
1989 {
1990         char string[VM_STRINGTEMP_LENGTH];
1991
1992         VM_SAFEPARMCOUNT(1,VM_stov);
1993
1994         VM_VarString(0, string, sizeof(string));
1995         Math_atov(string, PRVM_G_VECTOR(OFS_RETURN));
1996 }
1997
1998 /*
1999 =========
2000 VM_strzone
2001
2002 string  strzone(string s)
2003 =========
2004 */
2005 //string(string s, ...) strzone = #118; // makes a copy of a string into the string zone and returns it, this is often used to keep around a tempstring for longer periods of time (tempstrings are replaced often)
2006 void VM_strzone(void)
2007 {
2008         char *out;
2009         char string[VM_STRINGTEMP_LENGTH];
2010         size_t alloclen;
2011
2012         VM_SAFEPARMCOUNT(1,VM_strzone);
2013
2014         VM_VarString(0, string, sizeof(string));
2015         alloclen = strlen(string) + 1;
2016         PRVM_G_INT(OFS_RETURN) = PRVM_AllocString(alloclen, &out);
2017         memcpy(out, string, alloclen);
2018 }
2019
2020 /*
2021 =========
2022 VM_strunzone
2023
2024 strunzone(string s)
2025 =========
2026 */
2027 //void(string s) strunzone = #119; // removes a copy of a string from the string zone (you can not use that string again or it may crash!!!)
2028 void VM_strunzone(void)
2029 {
2030         VM_SAFEPARMCOUNT(1,VM_strunzone);
2031         PRVM_FreeString(PRVM_G_INT(OFS_PARM0));
2032 }
2033
2034 /*
2035 =========
2036 VM_command (used by client and menu)
2037
2038 clientcommand(float client, string s) (for client and menu)
2039 =========
2040 */
2041 //void(entity e, string s) clientcommand = #440; // executes a command string as if it came from the specified client
2042 //this function originally written by KrimZon, made shorter by LordHavoc
2043 void VM_clcommand (void)
2044 {
2045         client_t *temp_client;
2046         int i;
2047
2048         VM_SAFEPARMCOUNT(2,VM_clcommand);
2049
2050         i = (int)PRVM_G_FLOAT(OFS_PARM0);
2051         if (!sv.active  || i < 0 || i >= svs.maxclients || !svs.clients[i].active)
2052         {
2053                 VM_Warning("VM_clientcommand: %s: invalid client/server is not active !\n", PRVM_NAME);
2054                 return;
2055         }
2056
2057         temp_client = host_client;
2058         host_client = svs.clients + i;
2059         Cmd_ExecuteString (PRVM_G_STRING(OFS_PARM1), src_client);
2060         host_client = temp_client;
2061 }
2062
2063
2064 /*
2065 =========
2066 VM_tokenize
2067
2068 float tokenize(string s)
2069 =========
2070 */
2071 //float(string s) tokenize = #441; // takes apart a string into individal words (access them with argv), returns how many
2072 //this function originally written by KrimZon, made shorter by LordHavoc
2073 //20040203: rewritten by LordHavoc (no longer uses allocations)
2074 int num_tokens = 0;
2075 int tokens[256];
2076 void VM_tokenize (void)
2077 {
2078         const char *p;
2079
2080         VM_SAFEPARMCOUNT(1,VM_tokenize);
2081
2082         p = PRVM_G_STRING(OFS_PARM0);
2083
2084         num_tokens = 0;
2085         while(COM_ParseToken_VM_Tokenize(&p, false))
2086         {
2087                 if (num_tokens >= (int)(sizeof(tokens)/sizeof(tokens[0])))
2088                         break;
2089                 tokens[num_tokens++] = PRVM_SetTempString(com_token);
2090         }
2091
2092         PRVM_G_FLOAT(OFS_RETURN) = num_tokens;
2093 }
2094
2095 /*
2096 =========
2097 VM_tokenizebyseparator
2098
2099 float tokenizebyseparator(string s, string separator1, ...)
2100 =========
2101 */
2102 //float(string s, string separator1, ...) tokenizebyseparator = #479; // takes apart a string into individal words (access them with argv), returns how many
2103 //this function returns the token preceding each instance of a separator (of
2104 //which there can be multiple), and the text following the last separator
2105 //useful for parsing certain kinds of data like IP addresses
2106 //example:
2107 //numnumbers = tokenizebyseparator("10.1.2.3", ".");
2108 //returns 4 and the tokens "10" "1" "2" "3".
2109 void VM_tokenizebyseparator (void)
2110 {
2111         int j, k;
2112         int numseparators;
2113         int separatorlen[7];
2114         const char *separators[7];
2115         const char *p;
2116         const char *token;
2117         char tokentext[MAX_INPUTLINE];
2118
2119         VM_SAFEPARMCOUNTRANGE(2, 8,VM_tokenizebyseparator);
2120
2121         p = PRVM_G_STRING(OFS_PARM0);
2122
2123         numseparators = 0;;
2124         for (j = 1;j < prog->argc;j++)
2125         {
2126                 // skip any blank separator strings
2127                 const char *s = PRVM_G_STRING(OFS_PARM0+j*3);
2128                 if (!s[0])
2129                         continue;
2130                 separators[numseparators] = s;
2131                 separatorlen[numseparators] = strlen(s);
2132                 numseparators++;
2133         }
2134
2135         num_tokens = 0;
2136         j = 0;
2137
2138         while (num_tokens < (int)(sizeof(tokens)/sizeof(tokens[0])))
2139         {
2140                 token = tokentext + j;
2141                 while (*p)
2142                 {
2143                         for (k = 0;k < numseparators;k++)
2144                         {
2145                                 if (!strncmp(p, separators[k], separatorlen[k]))
2146                                 {
2147                                         p += separatorlen[k];
2148                                         break;
2149                                 }
2150                         }
2151                         if (k < numseparators)
2152                                 break;
2153                         if (j < (int)sizeof(tokentext)-1)
2154                                 tokentext[j++] = *p;
2155                         p++;
2156                 }
2157                 if (j >= (int)sizeof(tokentext))
2158                         break;
2159                 tokentext[j++] = 0;
2160                 tokens[num_tokens++] = PRVM_SetTempString(token);
2161                 if (!*p)
2162                         break;
2163         }
2164
2165         PRVM_G_FLOAT(OFS_RETURN) = num_tokens;
2166 }
2167
2168 //string(float n) argv = #442; // returns a word from the tokenized string (returns nothing for an invalid index)
2169 //this function originally written by KrimZon, made shorter by LordHavoc
2170 void VM_argv (void)
2171 {
2172         int token_num;
2173
2174         VM_SAFEPARMCOUNT(1,VM_argv);
2175
2176         token_num = (int)PRVM_G_FLOAT(OFS_PARM0);
2177
2178         if (token_num >= 0 && token_num < num_tokens)
2179                 PRVM_G_INT(OFS_RETURN) = tokens[token_num];
2180         else
2181                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
2182 }
2183
2184 /*
2185 =========
2186 VM_isserver
2187
2188 float   isserver()
2189 =========
2190 */
2191 void VM_isserver(void)
2192 {
2193         VM_SAFEPARMCOUNT(0,VM_serverstate);
2194
2195         PRVM_G_FLOAT(OFS_RETURN) = sv.active && (svs.maxclients > 1 || cls.state == ca_dedicated);
2196 }
2197
2198 /*
2199 =========
2200 VM_clientcount
2201
2202 float   clientcount()
2203 =========
2204 */
2205 void VM_clientcount(void)
2206 {
2207         VM_SAFEPARMCOUNT(0,VM_clientcount);
2208
2209         PRVM_G_FLOAT(OFS_RETURN) = svs.maxclients;
2210 }
2211
2212 /*
2213 =========
2214 VM_clientstate
2215
2216 float   clientstate()
2217 =========
2218 */
2219 void VM_clientstate(void)
2220 {
2221         VM_SAFEPARMCOUNT(0,VM_clientstate);
2222
2223         PRVM_G_FLOAT(OFS_RETURN) = cls.state;
2224 }
2225
2226 /*
2227 =========
2228 VM_getostype
2229
2230 float   getostype(void)
2231 =========
2232 */ // not used at the moment -> not included in the common list
2233 void VM_getostype(void)
2234 {
2235         VM_SAFEPARMCOUNT(0,VM_getostype);
2236
2237         /*
2238         OS_WINDOWS
2239         OS_LINUX
2240         OS_MAC - not supported
2241         */
2242
2243 #ifdef WIN32
2244         PRVM_G_FLOAT(OFS_RETURN) = 0;
2245 #elif defined(MACOSX)
2246         PRVM_G_FLOAT(OFS_RETURN) = 2;
2247 #else
2248         PRVM_G_FLOAT(OFS_RETURN) = 1;
2249 #endif
2250 }
2251
2252 /*
2253 =========
2254 VM_getmousepos
2255
2256 vector  getmousepos()
2257 =========
2258 */
2259 void VM_getmousepos(void)
2260 {
2261
2262         VM_SAFEPARMCOUNT(0,VM_getmousepos);
2263
2264         PRVM_G_VECTOR(OFS_RETURN)[0] = in_mouse_x * vid_conwidth.integer / vid.width;
2265         PRVM_G_VECTOR(OFS_RETURN)[1] = in_mouse_y * vid_conheight.integer / vid.height;
2266         PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
2267 }
2268
2269 /*
2270 =========
2271 VM_gettime
2272
2273 float   gettime(void)
2274 =========
2275 */
2276 void VM_gettime(void)
2277 {
2278         VM_SAFEPARMCOUNT(0,VM_gettime);
2279
2280         PRVM_G_FLOAT(OFS_RETURN) = (float) realtime;
2281 }
2282
2283 /*
2284 =========
2285 VM_loadfromdata
2286
2287 loadfromdata(string data)
2288 =========
2289 */
2290 void VM_loadfromdata(void)
2291 {
2292         VM_SAFEPARMCOUNT(1,VM_loadentsfromfile);
2293
2294         PRVM_ED_LoadFromFile(PRVM_G_STRING(OFS_PARM0));
2295 }
2296
2297 /*
2298 ========================
2299 VM_parseentitydata
2300
2301 parseentitydata(entity ent, string data)
2302 ========================
2303 */
2304 void VM_parseentitydata(void)
2305 {
2306         prvm_edict_t *ent;
2307         const char *data;
2308
2309         VM_SAFEPARMCOUNT(2, VM_parseentitydata);
2310
2311         // get edict and test it
2312         ent = PRVM_G_EDICT(OFS_PARM0);
2313         if (ent->priv.required->free)
2314                 PRVM_ERROR ("VM_parseentitydata: %s: Can only set already spawned entities (entity %i is free)!", PRVM_NAME, PRVM_NUM_FOR_EDICT(ent));
2315
2316         data = PRVM_G_STRING(OFS_PARM1);
2317
2318         // parse the opening brace
2319         if (!COM_ParseToken_Simple(&data, false, false) || com_token[0] != '{' )
2320                 PRVM_ERROR ("VM_parseentitydata: %s: Couldn't parse entity data:\n%s", PRVM_NAME, data );
2321
2322         PRVM_ED_ParseEdict (data, ent);
2323 }
2324
2325 /*
2326 =========
2327 VM_loadfromfile
2328
2329 loadfromfile(string file)
2330 =========
2331 */
2332 void VM_loadfromfile(void)
2333 {
2334         const char *filename;
2335         char *data;
2336
2337         VM_SAFEPARMCOUNT(1,VM_loadfromfile);
2338
2339         filename = PRVM_G_STRING(OFS_PARM0);
2340         if (FS_CheckNastyPath(filename, false))
2341         {
2342                 PRVM_G_FLOAT(OFS_RETURN) = -4;
2343                 VM_Warning("VM_loadfromfile: %s dangerous or non-portable filename \"%s\" not allowed. (contains : or \\ or begins with .. or /)\n", PRVM_NAME, filename);
2344                 return;
2345         }
2346
2347         // not conform with VM_fopen
2348         data = (char *)FS_LoadFile(filename, tempmempool, false, NULL);
2349         if (data == NULL)
2350                 PRVM_G_FLOAT(OFS_RETURN) = -1;
2351
2352         PRVM_ED_LoadFromFile(data);
2353
2354         if(data)
2355                 Mem_Free(data);
2356 }
2357
2358
2359 /*
2360 =========
2361 VM_modulo
2362
2363 float   mod(float val, float m)
2364 =========
2365 */
2366 void VM_modulo(void)
2367 {
2368         int val, m;
2369         VM_SAFEPARMCOUNT(2,VM_module);
2370
2371         val = (int) PRVM_G_FLOAT(OFS_PARM0);
2372         m       = (int) PRVM_G_FLOAT(OFS_PARM1);
2373
2374         PRVM_G_FLOAT(OFS_RETURN) = (float) (val % m);
2375 }
2376
2377 void VM_Search_Init(void)
2378 {
2379         int i;
2380         for (i = 0;i < PRVM_MAX_OPENSEARCHES;i++)
2381                 prog->opensearches[i] = NULL;
2382 }
2383
2384 void VM_Search_Reset(void)
2385 {
2386         int i;
2387         // reset the fssearch list
2388         for(i = 0; i < PRVM_MAX_OPENSEARCHES; i++)
2389         {
2390                 if(prog->opensearches[i])
2391                         FS_FreeSearch(prog->opensearches[i]);
2392                 prog->opensearches[i] = NULL;
2393         }
2394 }
2395
2396 /*
2397 =========
2398 VM_search_begin
2399
2400 float search_begin(string pattern, float caseinsensitive, float quiet)
2401 =========
2402 */
2403 void VM_search_begin(void)
2404 {
2405         int handle;
2406         const char *pattern;
2407         int caseinsens, quiet;
2408
2409         VM_SAFEPARMCOUNT(3, VM_search_begin);
2410
2411         pattern = PRVM_G_STRING(OFS_PARM0);
2412
2413         VM_CheckEmptyString(pattern);
2414
2415         caseinsens = (int)PRVM_G_FLOAT(OFS_PARM1);
2416         quiet = (int)PRVM_G_FLOAT(OFS_PARM2);
2417
2418         for(handle = 0; handle < PRVM_MAX_OPENSEARCHES; handle++)
2419                 if(!prog->opensearches[handle])
2420                         break;
2421
2422         if(handle >= PRVM_MAX_OPENSEARCHES)
2423         {
2424                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2425                 VM_Warning("VM_search_begin: %s ran out of search handles (%i)\n", PRVM_NAME, PRVM_MAX_OPENSEARCHES);
2426                 return;
2427         }
2428
2429         if(!(prog->opensearches[handle] = FS_Search(pattern,caseinsens, quiet)))
2430                 PRVM_G_FLOAT(OFS_RETURN) = -1;
2431         else
2432                 PRVM_G_FLOAT(OFS_RETURN) = handle;
2433 }
2434
2435 /*
2436 =========
2437 VM_search_end
2438
2439 void    search_end(float handle)
2440 =========
2441 */
2442 void VM_search_end(void)
2443 {
2444         int handle;
2445         VM_SAFEPARMCOUNT(1, VM_search_end);
2446
2447         handle = (int)PRVM_G_FLOAT(OFS_PARM0);
2448
2449         if(handle < 0 || handle >= PRVM_MAX_OPENSEARCHES)
2450         {
2451                 VM_Warning("VM_search_end: invalid handle %i used in %s\n", handle, PRVM_NAME);
2452                 return;
2453         }
2454         if(prog->opensearches[handle] == NULL)
2455         {
2456                 VM_Warning("VM_search_end: no such handle %i in %s\n", handle, PRVM_NAME);
2457                 return;
2458         }
2459
2460         FS_FreeSearch(prog->opensearches[handle]);
2461         prog->opensearches[handle] = NULL;
2462 }
2463
2464 /*
2465 =========
2466 VM_search_getsize
2467
2468 float   search_getsize(float handle)
2469 =========
2470 */
2471 void VM_search_getsize(void)
2472 {
2473         int handle;
2474         VM_SAFEPARMCOUNT(1, VM_M_search_getsize);
2475
2476         handle = (int)PRVM_G_FLOAT(OFS_PARM0);
2477
2478         if(handle < 0 || handle >= PRVM_MAX_OPENSEARCHES)
2479         {
2480                 VM_Warning("VM_search_getsize: invalid handle %i used in %s\n", handle, PRVM_NAME);
2481                 return;
2482         }
2483         if(prog->opensearches[handle] == NULL)
2484         {
2485                 VM_Warning("VM_search_getsize: no such handle %i in %s\n", handle, PRVM_NAME);
2486                 return;
2487         }
2488
2489         PRVM_G_FLOAT(OFS_RETURN) = prog->opensearches[handle]->numfilenames;
2490 }
2491
2492 /*
2493 =========
2494 VM_search_getfilename
2495
2496 string  search_getfilename(float handle, float num)
2497 =========
2498 */
2499 void VM_search_getfilename(void)
2500 {
2501         int handle, filenum;
2502         VM_SAFEPARMCOUNT(2, VM_search_getfilename);
2503
2504         handle = (int)PRVM_G_FLOAT(OFS_PARM0);
2505         filenum = (int)PRVM_G_FLOAT(OFS_PARM1);
2506
2507         if(handle < 0 || handle >= PRVM_MAX_OPENSEARCHES)
2508         {
2509                 VM_Warning("VM_search_getfilename: invalid handle %i used in %s\n", handle, PRVM_NAME);
2510                 return;
2511         }
2512         if(prog->opensearches[handle] == NULL)
2513         {
2514                 VM_Warning("VM_search_getfilename: no such handle %i in %s\n", handle, PRVM_NAME);
2515                 return;
2516         }
2517         if(filenum < 0 || filenum >= prog->opensearches[handle]->numfilenames)
2518         {
2519                 VM_Warning("VM_search_getfilename: invalid filenum %i in %s\n", filenum, PRVM_NAME);
2520                 return;
2521         }
2522
2523         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(prog->opensearches[handle]->filenames[filenum]);
2524 }
2525
2526 /*
2527 =========
2528 VM_chr
2529
2530 string  chr(float ascii)
2531 =========
2532 */
2533 void VM_chr(void)
2534 {
2535         char tmp[2];
2536         VM_SAFEPARMCOUNT(1, VM_chr);
2537
2538         tmp[0] = (unsigned char) PRVM_G_FLOAT(OFS_PARM0);
2539         tmp[1] = 0;
2540
2541         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(tmp);
2542 }
2543
2544 //=============================================================================
2545 // Draw builtins (client & menu)
2546
2547 /*
2548 =========
2549 VM_iscachedpic
2550
2551 float   iscachedpic(string pic)
2552 =========
2553 */
2554 void VM_iscachedpic(void)
2555 {
2556         VM_SAFEPARMCOUNT(1,VM_iscachedpic);
2557
2558         // drawq hasnt such a function, thus always return true
2559         PRVM_G_FLOAT(OFS_RETURN) = false;
2560 }
2561
2562 /*
2563 =========
2564 VM_precache_pic
2565
2566 string  precache_pic(string pic)
2567 =========
2568 */
2569 void VM_precache_pic(void)
2570 {
2571         const char      *s;
2572
2573         VM_SAFEPARMCOUNT(1, VM_precache_pic);
2574
2575         s = PRVM_G_STRING(OFS_PARM0);
2576         PRVM_G_INT(OFS_RETURN) = PRVM_G_INT(OFS_PARM0);
2577         VM_CheckEmptyString (s);
2578
2579         // AK Draw_CachePic is supposed to always return a valid pointer
2580         if( Draw_CachePic(s, false)->tex == r_texture_notexture )
2581                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
2582 }
2583
2584 /*
2585 =========
2586 VM_freepic
2587
2588 freepic(string s)
2589 =========
2590 */
2591 void VM_freepic(void)
2592 {
2593         const char *s;
2594
2595         VM_SAFEPARMCOUNT(1,VM_freepic);
2596
2597         s = PRVM_G_STRING(OFS_PARM0);
2598         VM_CheckEmptyString (s);
2599
2600         Draw_FreePic(s);
2601 }
2602
2603 /*
2604 =========
2605 VM_drawcharacter
2606
2607 float   drawcharacter(vector position, float character, vector scale, vector rgb, float alpha, float flag)
2608 =========
2609 */
2610 void VM_drawcharacter(void)
2611 {
2612         float *pos,*scale,*rgb;
2613         char   character;
2614         int flag;
2615         VM_SAFEPARMCOUNT(6,VM_drawcharacter);
2616
2617         character = (char) PRVM_G_FLOAT(OFS_PARM1);
2618         if(character == 0)
2619         {
2620                 PRVM_G_FLOAT(OFS_RETURN) = -1;
2621                 VM_Warning("VM_drawcharacter: %s passed null character !\n",PRVM_NAME);
2622                 return;
2623         }
2624
2625         pos = PRVM_G_VECTOR(OFS_PARM0);
2626         scale = PRVM_G_VECTOR(OFS_PARM2);
2627         rgb = PRVM_G_VECTOR(OFS_PARM3);
2628         flag = (int)PRVM_G_FLOAT(OFS_PARM5);
2629
2630         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
2631         {
2632                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2633                 VM_Warning("VM_drawcharacter: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
2634                 return;
2635         }
2636
2637         if(pos[2] || scale[2])
2638                 Con_Printf("VM_drawcharacter: z value%c from %s discarded\n",(pos[2] && scale[2]) ? 's' : 0,((pos[2] && scale[2]) ? "pos and scale" : (pos[2] ? "pos" : "scale")));
2639
2640         if(!scale[0] || !scale[1])
2641         {
2642                 PRVM_G_FLOAT(OFS_RETURN) = -3;
2643                 VM_Warning("VM_drawcharacter: scale %s is null !\n", (scale[0] == 0) ? ((scale[1] == 0) ? "x and y" : "x") : "y");
2644                 return;
2645         }
2646
2647         DrawQ_String (pos[0], pos[1], &character, 1, scale[0], scale[1], rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM4), flag, NULL, true);
2648         PRVM_G_FLOAT(OFS_RETURN) = 1;
2649 }
2650
2651 /*
2652 =========
2653 VM_drawstring
2654
2655 float   drawstring(vector position, string text, vector scale, vector rgb, float alpha, float flag)
2656 =========
2657 */
2658 void VM_drawstring(void)
2659 {
2660         float *pos,*scale,*rgb;
2661         const char  *string;
2662         int flag;
2663         VM_SAFEPARMCOUNT(6,VM_drawstring);
2664
2665         string = PRVM_G_STRING(OFS_PARM1);
2666         pos = PRVM_G_VECTOR(OFS_PARM0);
2667         scale = PRVM_G_VECTOR(OFS_PARM2);
2668         rgb = PRVM_G_VECTOR(OFS_PARM3);
2669         flag = (int)PRVM_G_FLOAT(OFS_PARM5);
2670
2671         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
2672         {
2673                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2674                 VM_Warning("VM_drawstring: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
2675                 return;
2676         }
2677
2678         if(!scale[0] || !scale[1])
2679         {
2680                 PRVM_G_FLOAT(OFS_RETURN) = -3;
2681                 VM_Warning("VM_drawstring: scale %s is null !\n", (scale[0] == 0) ? ((scale[1] == 0) ? "x and y" : "x") : "y");
2682                 return;
2683         }
2684
2685         if(pos[2] || scale[2])
2686                 Con_Printf("VM_drawstring: z value%s from %s discarded\n",(pos[2] && scale[2]) ? "s" : " ",((pos[2] && scale[2]) ? "pos and scale" : (pos[2] ? "pos" : "scale")));
2687
2688         DrawQ_String (pos[0], pos[1], string, 0, scale[0], scale[1], rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM4), flag, NULL, true);
2689         PRVM_G_FLOAT(OFS_RETURN) = 1;
2690 }
2691
2692 /*
2693 =========
2694 VM_drawcolorcodedstring
2695
2696 float   drawcolorcodedstring(vector position, string text, vector scale, float alpha, float flag)
2697 =========
2698 */
2699 void VM_drawcolorcodedstring(void)
2700 {
2701         float *pos,*scale;
2702         const char  *string;
2703         int flag,color;
2704         VM_SAFEPARMCOUNT(5,VM_drawstring);
2705
2706         string = PRVM_G_STRING(OFS_PARM1);
2707         pos = PRVM_G_VECTOR(OFS_PARM0);
2708         scale = PRVM_G_VECTOR(OFS_PARM2);
2709         flag = (int)PRVM_G_FLOAT(OFS_PARM5);
2710
2711         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
2712         {
2713                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2714                 VM_Warning("VM_drawcolorcodedstring: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
2715                 return;
2716         }
2717
2718         if(!scale[0] || !scale[1])
2719         {
2720                 PRVM_G_FLOAT(OFS_RETURN) = -3;
2721                 VM_Warning("VM_drawcolorcodedstring: scale %s is null !\n", (scale[0] == 0) ? ((scale[1] == 0) ? "x and y" : "x") : "y");
2722                 return;
2723         }
2724
2725         if(pos[2] || scale[2])
2726                 Con_Printf("VM_drawcolorcodedstring: z value%s from %s discarded\n",(pos[2] && scale[2]) ? "s" : " ",((pos[2] && scale[2]) ? "pos and scale" : (pos[2] ? "pos" : "scale")));
2727
2728         color = -1;
2729         DrawQ_String (pos[0], pos[1], string, 0, scale[0], scale[1], 1, 1, 1, PRVM_G_FLOAT(OFS_PARM3), flag, NULL, false);
2730         PRVM_G_FLOAT(OFS_RETURN) = 1;
2731 }
2732 /*
2733 =========
2734 VM_stringwidth
2735
2736 float   stringwidth(string text, float allowColorCodes)
2737 =========
2738 */
2739 void VM_stringwidth(void)
2740 {
2741         const char  *string;
2742         int colors;
2743         VM_SAFEPARMCOUNT(2,VM_drawstring);
2744
2745         string = PRVM_G_STRING(OFS_PARM0);
2746         colors = (int)PRVM_G_FLOAT(OFS_PARM1);
2747
2748         PRVM_G_FLOAT(OFS_RETURN) = DrawQ_String(0, 0, string, 0, 1, 1, 0, 0, 0, 0, 0, NULL, !colors); // 1x1 characters, don't actually draw
2749 }
2750 /*
2751 =========
2752 VM_drawpic
2753
2754 float   drawpic(vector position, string pic, vector size, vector rgb, float alpha, float flag)
2755 =========
2756 */
2757 void VM_drawpic(void)
2758 {
2759         const char *picname;
2760         float *size, *pos, *rgb;
2761         int flag;
2762
2763         VM_SAFEPARMCOUNT(6,VM_drawpic);
2764
2765         picname = PRVM_G_STRING(OFS_PARM1);
2766         VM_CheckEmptyString (picname);
2767
2768         // is pic cached ? no function yet for that
2769         if(!1)
2770         {
2771                 PRVM_G_FLOAT(OFS_RETURN) = -4;
2772                 VM_Warning("VM_drawpic: %s: %s not cached !\n", PRVM_NAME, picname);
2773                 return;
2774         }
2775
2776         pos = PRVM_G_VECTOR(OFS_PARM0);
2777         size = PRVM_G_VECTOR(OFS_PARM2);
2778         rgb = PRVM_G_VECTOR(OFS_PARM3);
2779         flag = (int) PRVM_G_FLOAT(OFS_PARM5);
2780
2781         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
2782         {
2783                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2784                 VM_Warning("VM_drawpic: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
2785                 return;
2786         }
2787
2788         if(pos[2] || size[2])
2789                 Con_Printf("VM_drawpic: z value%s from %s discarded\n",(pos[2] && size[2]) ? "s" : " ",((pos[2] && size[2]) ? "pos and size" : (pos[2] ? "pos" : "size")));
2790
2791         DrawQ_Pic(pos[0], pos[1], Draw_CachePic(picname, true), size[0], size[1], rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM4), flag);
2792         PRVM_G_FLOAT(OFS_RETURN) = 1;
2793 }
2794 /*
2795 =========
2796 VM_drawsubpic
2797
2798 float   drawsubpic(vector position, vector size, string pic, vector srcPos, vector srcSize, vector rgb, float alpha, float flag)
2799
2800 =========
2801 */
2802 void VM_drawsubpic(void)
2803 {
2804         const char *picname;
2805         float *size, *pos, *rgb, *srcPos, *srcSize, alpha;
2806         int flag;
2807
2808         VM_SAFEPARMCOUNT(8,VM_drawsubpic);
2809
2810         picname = PRVM_G_STRING(OFS_PARM2);
2811         VM_CheckEmptyString (picname);
2812
2813         // is pic cached ? no function yet for that
2814         if(!1)
2815         {
2816                 PRVM_G_FLOAT(OFS_RETURN) = -4;
2817                 VM_Warning("VM_drawsubpic: %s: %s not cached !\n", PRVM_NAME, picname);
2818                 return;
2819         }
2820
2821         pos = PRVM_G_VECTOR(OFS_PARM0);
2822         size = PRVM_G_VECTOR(OFS_PARM1);
2823         srcPos = PRVM_G_VECTOR(OFS_PARM3);
2824         srcSize = PRVM_G_VECTOR(OFS_PARM4);
2825         rgb = PRVM_G_VECTOR(OFS_PARM5);
2826         alpha = PRVM_G_FLOAT(OFS_PARM6);
2827         flag = (int) PRVM_G_FLOAT(OFS_PARM7);
2828
2829         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
2830         {
2831                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2832                 VM_Warning("VM_drawsubpic: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
2833                 return;
2834         }
2835
2836         if(pos[2] || size[2])
2837                 Con_Printf("VM_drawsubpic: z value%s from %s discarded\n",(pos[2] && size[2]) ? "s" : " ",((pos[2] && size[2]) ? "pos and size" : (pos[2] ? "pos" : "size")));
2838
2839         DrawQ_SuperPic(pos[0], pos[1], Draw_CachePic(picname, true),
2840                 size[0], size[1],
2841                 srcPos[0],              srcPos[1],              rgb[0], rgb[1], rgb[2], alpha,
2842                 srcPos[0] + srcSize[0], srcPos[1],              rgb[0], rgb[1], rgb[2], alpha,
2843                 srcPos[0],              srcPos[1] + srcSize[1], rgb[0], rgb[1], rgb[2], alpha,
2844                 srcPos[0] + srcSize[0], srcPos[1] + srcSize[1], rgb[0], rgb[1], rgb[2], alpha,
2845                 flag);
2846         PRVM_G_FLOAT(OFS_RETURN) = 1;
2847 }
2848
2849 /*
2850 =========
2851 VM_drawfill
2852
2853 float drawfill(vector position, vector size, vector rgb, float alpha, float flag)
2854 =========
2855 */
2856 void VM_drawfill(void)
2857 {
2858         float *size, *pos, *rgb;
2859         int flag;
2860
2861         VM_SAFEPARMCOUNT(5,VM_drawfill);
2862
2863
2864         pos = PRVM_G_VECTOR(OFS_PARM0);
2865         size = PRVM_G_VECTOR(OFS_PARM1);
2866         rgb = PRVM_G_VECTOR(OFS_PARM2);
2867         flag = (int) PRVM_G_FLOAT(OFS_PARM4);
2868
2869         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
2870         {
2871                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2872                 VM_Warning("VM_drawfill: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
2873                 return;
2874         }
2875
2876         if(pos[2] || size[2])
2877                 Con_Printf("VM_drawfill: z value%s from %s discarded\n",(pos[2] && size[2]) ? "s" : " ",((pos[2] && size[2]) ? "pos and size" : (pos[2] ? "pos" : "size")));
2878
2879         DrawQ_Fill(pos[0], pos[1], size[0], size[1], rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM3), flag);
2880         PRVM_G_FLOAT(OFS_RETURN) = 1;
2881 }
2882
2883 /*
2884 =========
2885 VM_drawsetcliparea
2886
2887 drawsetcliparea(float x, float y, float width, float height)
2888 =========
2889 */
2890 void VM_drawsetcliparea(void)
2891 {
2892         float x,y,w,h;
2893         VM_SAFEPARMCOUNT(4,VM_drawsetcliparea);
2894
2895         x = bound(0, PRVM_G_FLOAT(OFS_PARM0), vid_conwidth.integer);
2896         y = bound(0, PRVM_G_FLOAT(OFS_PARM1), vid_conheight.integer);
2897         w = bound(0, PRVM_G_FLOAT(OFS_PARM2) + PRVM_G_FLOAT(OFS_PARM0) - x, (vid_conwidth.integer  - x));
2898         h = bound(0, PRVM_G_FLOAT(OFS_PARM3) + PRVM_G_FLOAT(OFS_PARM1) - y, (vid_conheight.integer - y));
2899
2900         DrawQ_SetClipArea(x, y, w, h);
2901 }
2902
2903 /*
2904 =========
2905 VM_drawresetcliparea
2906
2907 drawresetcliparea()
2908 =========
2909 */
2910 void VM_drawresetcliparea(void)
2911 {
2912         VM_SAFEPARMCOUNT(0,VM_drawresetcliparea);
2913
2914         DrawQ_ResetClipArea();
2915 }
2916
2917 /*
2918 =========
2919 VM_getimagesize
2920
2921 vector  getimagesize(string pic)
2922 =========
2923 */
2924 void VM_getimagesize(void)
2925 {
2926         const char *p;
2927         cachepic_t *pic;
2928
2929         VM_SAFEPARMCOUNT(1,VM_getimagesize);
2930
2931         p = PRVM_G_STRING(OFS_PARM0);
2932         VM_CheckEmptyString (p);
2933
2934         pic = Draw_CachePic (p, false);
2935
2936         PRVM_G_VECTOR(OFS_RETURN)[0] = pic->width;
2937         PRVM_G_VECTOR(OFS_RETURN)[1] = pic->height;
2938         PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
2939 }
2940
2941 /*
2942 =========
2943 VM_keynumtostring
2944
2945 string keynumtostring(float keynum)
2946 =========
2947 */
2948 void VM_keynumtostring (void)
2949 {
2950         VM_SAFEPARMCOUNT(1, VM_keynumtostring);
2951
2952         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(Key_KeynumToString((int)PRVM_G_FLOAT(OFS_PARM0)));
2953 }
2954
2955 /*
2956 =========
2957 VM_stringtokeynum
2958
2959 float stringtokeynum(string key)
2960 =========
2961 */
2962 void VM_stringtokeynum (void)
2963 {
2964         VM_SAFEPARMCOUNT( 1, VM_keynumtostring );
2965
2966         PRVM_G_INT(OFS_RETURN) = Key_StringToKeynum(PRVM_G_STRING(OFS_PARM0));
2967 }
2968
2969 // CL_Video interface functions
2970
2971 /*
2972 ========================
2973 VM_cin_open
2974
2975 float cin_open(string file, string name)
2976 ========================
2977 */
2978 void VM_cin_open( void )
2979 {
2980         const char *file;
2981         const char *name;
2982
2983         VM_SAFEPARMCOUNT( 2, VM_cin_open );
2984
2985         file = PRVM_G_STRING( OFS_PARM0 );
2986         name = PRVM_G_STRING( OFS_PARM1 );
2987
2988         VM_CheckEmptyString( file );
2989     VM_CheckEmptyString( name );
2990
2991         if( CL_OpenVideo( file, name, MENUOWNER ) )
2992                 PRVM_G_FLOAT( OFS_RETURN ) = 1;
2993         else
2994                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
2995 }
2996
2997 /*
2998 ========================
2999 VM_cin_close
3000
3001 void cin_close(string name)
3002 ========================
3003 */
3004 void VM_cin_close( void )
3005 {
3006         const char *name;
3007
3008         VM_SAFEPARMCOUNT( 1, VM_cin_close );
3009
3010         name = PRVM_G_STRING( OFS_PARM0 );
3011         VM_CheckEmptyString( name );
3012
3013         CL_CloseVideo( CL_GetVideoByName( name ) );
3014 }
3015
3016 /*
3017 ========================
3018 VM_cin_setstate
3019 void cin_setstate(string name, float type)
3020 ========================
3021 */
3022 void VM_cin_setstate( void )
3023 {
3024         const char *name;
3025         clvideostate_t  state;
3026         clvideo_t               *video;
3027
3028         VM_SAFEPARMCOUNT( 2, VM_cin_netstate );
3029
3030         name = PRVM_G_STRING( OFS_PARM0 );
3031         VM_CheckEmptyString( name );
3032
3033         state = (clvideostate_t)((int)PRVM_G_FLOAT( OFS_PARM1 ));
3034
3035         video = CL_GetVideoByName( name );
3036         if( video && state > CLVIDEO_UNUSED && state < CLVIDEO_STATECOUNT )
3037                 CL_SetVideoState( video, state );
3038 }
3039
3040 /*
3041 ========================
3042 VM_cin_getstate
3043
3044 float cin_getstate(string name)
3045 ========================
3046 */
3047 void VM_cin_getstate( void )
3048 {
3049         const char *name;
3050         clvideo_t               *video;
3051
3052         VM_SAFEPARMCOUNT( 1, VM_cin_getstate );
3053
3054         name = PRVM_G_STRING( OFS_PARM0 );
3055         VM_CheckEmptyString( name );
3056
3057         video = CL_GetVideoByName( name );
3058         if( video )
3059                 PRVM_G_FLOAT( OFS_RETURN ) = (int)video->state;
3060         else
3061                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
3062 }
3063
3064 /*
3065 ========================
3066 VM_cin_restart
3067
3068 void cin_restart(string name)
3069 ========================
3070 */
3071 void VM_cin_restart( void )
3072 {
3073         const char *name;
3074         clvideo_t               *video;
3075
3076         VM_SAFEPARMCOUNT( 1, VM_cin_restart );
3077
3078         name = PRVM_G_STRING( OFS_PARM0 );
3079         VM_CheckEmptyString( name );
3080
3081         video = CL_GetVideoByName( name );
3082         if( video )
3083                 CL_RestartVideo( video );
3084 }
3085
3086 /*
3087 ==============
3088 VM_makevectors
3089
3090 Writes new values for v_forward, v_up, and v_right based on angles
3091 void makevectors(vector angle)
3092 ==============
3093 */
3094 void VM_makevectors (void)
3095 {
3096         prvm_eval_t *valforward, *valright, *valup;
3097         valforward = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_forward);
3098         valright = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_right);
3099         valup = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_up);
3100         if (!valforward || !valright || !valup)
3101         {
3102                 VM_Warning("makevectors: could not find v_forward, v_right, or v_up global variables\n");
3103                 return;
3104         }
3105         VM_SAFEPARMCOUNT(1, VM_makevectors);
3106         AngleVectors (PRVM_G_VECTOR(OFS_PARM0), valforward->vector, valright->vector, valup->vector);
3107 }
3108
3109 /*
3110 ==============
3111 VM_vectorvectors
3112
3113 Writes new values for v_forward, v_up, and v_right based on the given forward vector
3114 vectorvectors(vector)
3115 ==============
3116 */
3117 void VM_vectorvectors (void)
3118 {
3119         prvm_eval_t *valforward, *valright, *valup;
3120         valforward = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_forward);
3121         valright = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_right);
3122         valup = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_up);
3123         if (!valforward || !valright || !valup)
3124         {
3125                 VM_Warning("vectorvectors: could not find v_forward, v_right, or v_up global variables\n");
3126                 return;
3127         }
3128         VM_SAFEPARMCOUNT(1, VM_vectorvectors);
3129         VectorNormalize2(PRVM_G_VECTOR(OFS_PARM0), valforward->vector);
3130         VectorVectors(valforward->vector, valright->vector, valup->vector);
3131 }
3132
3133 /*
3134 ========================
3135 VM_drawline
3136
3137 void drawline(float width, vector pos1, vector pos2, vector rgb, float alpha, float flags)
3138 ========================
3139 */
3140 void VM_drawline (void)
3141 {
3142         float   *c1, *c2, *rgb;
3143         float   alpha, width;
3144         unsigned char   flags;
3145
3146         VM_SAFEPARMCOUNT(6, VM_drawline);
3147         width   = PRVM_G_FLOAT(OFS_PARM0);
3148         c1              = PRVM_G_VECTOR(OFS_PARM1);
3149         c2              = PRVM_G_VECTOR(OFS_PARM2);
3150         rgb             = PRVM_G_VECTOR(OFS_PARM3);
3151         alpha   = PRVM_G_FLOAT(OFS_PARM4);
3152         flags   = (int)PRVM_G_FLOAT(OFS_PARM5);
3153         DrawQ_Line(width, c1[0], c1[1], c2[0], c2[1], rgb[0], rgb[1], rgb[2], alpha, flags);
3154 }
3155
3156
3157
3158
3159
3160 // float(float number, float quantity) bitshift (EXT_BITSHIFT)
3161 void VM_bitshift (void)
3162 {
3163         int n1, n2;
3164         VM_SAFEPARMCOUNT(2, VM_bitshift);
3165
3166         n1 = (int)fabs((int)PRVM_G_FLOAT(OFS_PARM0));
3167         n2 = (int)PRVM_G_FLOAT(OFS_PARM1);
3168         if(!n1)
3169                 PRVM_G_FLOAT(OFS_RETURN) = n1;
3170         else
3171         if(n2 < 0)
3172                 PRVM_G_FLOAT(OFS_RETURN) = (n1 >> -n2);
3173         else
3174                 PRVM_G_FLOAT(OFS_RETURN) = (n1 << n2);
3175 }
3176
3177 ////////////////////////////////////////
3178 // AltString functions
3179 ////////////////////////////////////////
3180
3181 /*
3182 ========================
3183 VM_altstr_count
3184
3185 float altstr_count(string)
3186 ========================
3187 */
3188 void VM_altstr_count( void )
3189 {
3190         const char *altstr, *pos;
3191         int     count;
3192
3193         VM_SAFEPARMCOUNT( 1, VM_altstr_count );
3194
3195         altstr = PRVM_G_STRING( OFS_PARM0 );
3196         //VM_CheckEmptyString( altstr );
3197
3198         for( count = 0, pos = altstr ; *pos ; pos++ ) {
3199                 if( *pos == '\\' ) {
3200                         if( !*++pos ) {
3201                                 break;
3202                         }
3203                 } else if( *pos == '\'' ) {
3204                         count++;
3205                 }
3206         }
3207
3208         PRVM_G_FLOAT( OFS_RETURN ) = (float) (count / 2);
3209 }
3210
3211 /*
3212 ========================
3213 VM_altstr_prepare
3214
3215 string altstr_prepare(string)
3216 ========================
3217 */
3218 void VM_altstr_prepare( void )
3219 {
3220         char *out;
3221         const char *instr, *in;
3222         int size;
3223         char outstr[VM_STRINGTEMP_LENGTH];
3224
3225         VM_SAFEPARMCOUNT( 1, VM_altstr_prepare );
3226
3227         instr = PRVM_G_STRING( OFS_PARM0 );
3228
3229         for( out = outstr, in = instr, size = sizeof(outstr) - 1 ; size && *in ; size--, in++, out++ )
3230                 if( *in == '\'' ) {
3231                         *out++ = '\\';
3232                         *out = '\'';
3233                         size--;
3234                 } else
3235                         *out = *in;
3236         *out = 0;
3237
3238         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
3239 }
3240
3241 /*
3242 ========================
3243 VM_altstr_get
3244
3245 string altstr_get(string, float)
3246 ========================
3247 */
3248 void VM_altstr_get( void )
3249 {
3250         const char *altstr, *pos;
3251         char *out;
3252         int count, size;
3253         char outstr[VM_STRINGTEMP_LENGTH];
3254
3255         VM_SAFEPARMCOUNT( 2, VM_altstr_get );
3256
3257         altstr = PRVM_G_STRING( OFS_PARM0 );
3258
3259         count = (int)PRVM_G_FLOAT( OFS_PARM1 );
3260         count = count * 2 + 1;
3261
3262         for( pos = altstr ; *pos && count ; pos++ )
3263                 if( *pos == '\\' ) {
3264                         if( !*++pos )
3265                                 break;
3266                 } else if( *pos == '\'' )
3267                         count--;
3268
3269         if( !*pos ) {
3270                 PRVM_G_INT( OFS_RETURN ) = 0;
3271                 return;
3272         }
3273
3274         for( out = outstr, size = sizeof(outstr) - 1 ; size && *pos ; size--, pos++, out++ )
3275                 if( *pos == '\\' ) {
3276                         if( !*++pos )
3277                                 break;
3278                         *out = *pos;
3279                         size--;
3280                 } else if( *pos == '\'' )
3281                         break;
3282                 else
3283                         *out = *pos;
3284
3285         *out = 0;
3286         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
3287 }
3288
3289 /*
3290 ========================
3291 VM_altstr_set
3292
3293 string altstr_set(string altstr, float num, string set)
3294 ========================
3295 */
3296 void VM_altstr_set( void )
3297 {
3298     int num;
3299         const char *altstr, *str;
3300         const char *in;
3301         char *out;
3302         char outstr[VM_STRINGTEMP_LENGTH];
3303
3304         VM_SAFEPARMCOUNT( 3, VM_altstr_set );
3305
3306         altstr = PRVM_G_STRING( OFS_PARM0 );
3307
3308         num = (int)PRVM_G_FLOAT( OFS_PARM1 );
3309
3310         str = PRVM_G_STRING( OFS_PARM2 );
3311
3312         out = outstr;
3313         for( num = num * 2 + 1, in = altstr; *in && num; *out++ = *in++ )
3314                 if( *in == '\\' ) {
3315                         if( !*++in ) {
3316                                 break;
3317                         }
3318                 } else if( *in == '\'' ) {
3319                         num--;
3320                 }
3321
3322         // copy set in
3323         for( ; *str; *out++ = *str++ );
3324         // now jump over the old content
3325         for( ; *in ; in++ )
3326                 if( *in == '\'' || (*in == '\\' && !*++in) )
3327                         break;
3328
3329         strlcpy(out, in, outstr + sizeof(outstr) - out);
3330         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
3331 }
3332
3333 /*
3334 ========================
3335 VM_altstr_ins
3336 insert after num
3337 string  altstr_ins(string altstr, float num, string set)
3338 ========================
3339 */
3340 void VM_altstr_ins(void)
3341 {
3342         int num;
3343         const char *setstr;
3344         const char *set;
3345         const char *instr;
3346         const char *in;
3347         char *out;
3348         char outstr[VM_STRINGTEMP_LENGTH];
3349
3350         VM_SAFEPARMCOUNT(3, VM_altstr_ins);
3351
3352         in = instr = PRVM_G_STRING( OFS_PARM0 );
3353         num = (int)PRVM_G_FLOAT( OFS_PARM1 );
3354         set = setstr = PRVM_G_STRING( OFS_PARM2 );
3355
3356         out = outstr;
3357         for( num = num * 2 + 2 ; *in && num > 0 ; *out++ = *in++ )
3358                 if( *in == '\\' ) {
3359                         if( !*++in ) {
3360                                 break;
3361                         }
3362                 } else if( *in == '\'' ) {
3363                         num--;
3364                 }
3365
3366         *out++ = '\'';
3367         for( ; *set ; *out++ = *set++ );
3368         *out++ = '\'';
3369
3370         strlcpy(out, in, outstr + sizeof(outstr) - out);
3371         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
3372 }
3373
3374
3375 ////////////////////////////////////////
3376 // BufString functions
3377 ////////////////////////////////////////
3378 //[515]: string buffers support
3379 #define MAX_QCSTR_BUFFERS 128
3380 #define MAX_QCSTR_STRINGS 1024
3381
3382 typedef struct
3383 {
3384         int             num_strings;
3385         char    *strings[MAX_QCSTR_STRINGS];
3386 }qcstrbuffer_t;
3387
3388 // FIXME: move stringbuffers to prog_t to allow multiple progs!
3389 static qcstrbuffer_t    *qcstringbuffers[MAX_QCSTR_BUFFERS];
3390 static int                              num_qcstringbuffers;
3391 static int                              buf_sortpower;
3392
3393 #define BUFSTR_BUFFER(a) (a>=MAX_QCSTR_BUFFERS) ? NULL : (qcstringbuffers[a])
3394 #define BUFSTR_ISFREE(a) (a<MAX_QCSTR_BUFFERS&&qcstringbuffers[a]&&qcstringbuffers[a]->num_strings<=0) ? 1 : 0
3395
3396 static int BufStr_FindFreeBuffer (void)
3397 {
3398         int     i;
3399         if(num_qcstringbuffers == MAX_QCSTR_BUFFERS)
3400                 return -1;
3401         for(i=0;i<MAX_QCSTR_BUFFERS;i++)
3402                 if(!qcstringbuffers[i])
3403                 {
3404                         qcstringbuffers[i] = (qcstrbuffer_t *)Z_Malloc(sizeof(qcstrbuffer_t));
3405                         memset(qcstringbuffers[i], 0, sizeof(qcstrbuffer_t));
3406                         return i;
3407                 }
3408         return -1;
3409 }
3410
3411 static void BufStr_ClearBuffer (int index)
3412 {
3413         qcstrbuffer_t   *b = qcstringbuffers[index];
3414         int                             i;
3415
3416         if(b)
3417         {
3418                 if(b->num_strings > 0)
3419                 {
3420                         for(i=0;i<b->num_strings;i++)
3421                                 if(b->strings[i])
3422                                         Z_Free(b->strings[i]);
3423                         num_qcstringbuffers--;
3424                 }
3425                 Z_Free(qcstringbuffers[index]);
3426                 qcstringbuffers[index] = NULL;
3427         }
3428 }
3429
3430 static int BufStr_FindFreeString (qcstrbuffer_t *b)
3431 {
3432         int                             i;
3433         for(i=0;i<b->num_strings;i++)
3434                 if(!b->strings[i] || !b->strings[i][0])
3435                         return i;
3436         if(i == MAX_QCSTR_STRINGS)      return -1;
3437         else                                            return i;
3438 }
3439
3440 static int BufStr_SortStringsUP (const void *in1, const void *in2)
3441 {
3442         const char *a, *b;
3443         a = *((const char **) in1);
3444         b = *((const char **) in2);
3445         if(!a[0])       return 1;
3446         if(!b[0])       return -1;
3447         return strncmp(a, b, buf_sortpower);
3448 }
3449
3450 static int BufStr_SortStringsDOWN (const void *in1, const void *in2)
3451 {
3452         const char *a, *b;
3453         a = *((const char **) in1);
3454         b = *((const char **) in2);
3455         if(!a[0])       return 1;
3456         if(!b[0])       return -1;
3457         return strncmp(b, a, buf_sortpower);
3458 }
3459
3460 /*
3461 ========================
3462 VM_buf_create
3463 creates new buffer, and returns it's index, returns -1 if failed
3464 float buf_create(void) = #460;
3465 ========================
3466 */
3467 void VM_buf_create (void)
3468 {
3469         int i;
3470         VM_SAFEPARMCOUNT(0, VM_buf_create);
3471         i = BufStr_FindFreeBuffer();
3472         if(i >= 0)
3473                 num_qcstringbuffers++;
3474         //else
3475                 //Con_Printf("VM_buf_create: buffers overflow in %s\n", PRVM_NAME);
3476         PRVM_G_FLOAT(OFS_RETURN) = i;
3477 }
3478
3479 /*
3480 ========================
3481 VM_buf_del
3482 deletes buffer and all strings in it
3483 void buf_del(float bufhandle) = #461;
3484 ========================
3485 */
3486 void VM_buf_del (void)
3487 {
3488         VM_SAFEPARMCOUNT(1, VM_buf_del);
3489         if(BUFSTR_BUFFER((int)PRVM_G_FLOAT(OFS_PARM0)))
3490                 BufStr_ClearBuffer((int)PRVM_G_FLOAT(OFS_PARM0));
3491         else
3492         {
3493                 VM_Warning("VM_buf_del: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3494                 return;
3495         }
3496 }
3497
3498 /*
3499 ========================
3500 VM_buf_getsize
3501 how many strings are stored in buffer
3502 float buf_getsize(float bufhandle) = #462;
3503 ========================
3504 */
3505 void VM_buf_getsize (void)
3506 {
3507         qcstrbuffer_t   *b;
3508         VM_SAFEPARMCOUNT(1, VM_buf_getsize);
3509
3510         b = BUFSTR_BUFFER((int)PRVM_G_FLOAT(OFS_PARM0));
3511         if(!b)
3512         {
3513                 PRVM_G_FLOAT(OFS_RETURN) = -1;
3514                 VM_Warning("VM_buf_getsize: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3515                 return;
3516         }
3517         else
3518                 PRVM_G_FLOAT(OFS_RETURN) = b->num_strings;
3519 }
3520
3521 /*
3522 ========================
3523 VM_buf_copy
3524 copy all content from one buffer to another, make sure it exists
3525 void buf_copy(float bufhandle_from, float bufhandle_to) = #463;
3526 ========================
3527 */
3528 void VM_buf_copy (void)
3529 {
3530         qcstrbuffer_t   *b1, *b2;
3531         int                             i;
3532         VM_SAFEPARMCOUNT(2, VM_buf_copy);
3533
3534         b1 = BUFSTR_BUFFER((int)PRVM_G_FLOAT(OFS_PARM0));
3535         if(!b1)
3536         {
3537                 VM_Warning("VM_buf_copy: invalid source buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3538                 return;
3539         }
3540         i = (int)PRVM_G_FLOAT(OFS_PARM1);
3541         if(i == (int)PRVM_G_FLOAT(OFS_PARM0))
3542         {
3543                 VM_Warning("VM_buf_copy: source == destination (%i) in %s\n", i, PRVM_NAME);
3544                 return;
3545         }
3546         b2 = BUFSTR_BUFFER(i);
3547         if(!b2)
3548         {
3549                 VM_Warning("VM_buf_copy: invalid destination buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM1), PRVM_NAME);
3550                 return;
3551         }
3552
3553         BufStr_ClearBuffer(i);
3554         qcstringbuffers[i] = (qcstrbuffer_t *)Z_Malloc(sizeof(qcstrbuffer_t));
3555         memset(qcstringbuffers[i], 0, sizeof(qcstrbuffer_t));
3556         b2->num_strings = b1->num_strings;
3557
3558         for(i=0;i<b1->num_strings;i++)
3559                 if(b1->strings[i] && b1->strings[i][0])
3560                 {
3561                         size_t stringlen;
3562                         stringlen = strlen(b1->strings[i]) + 1;
3563                         b2->strings[i] = (char *)Z_Malloc(stringlen);
3564                         if(!b2->strings[i])
3565                         {
3566                                 VM_Warning("VM_buf_copy: not enough memory for buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM1), PRVM_NAME);
3567                                 break;
3568                         }
3569                         memcpy(b2->strings[i], b1->strings[i], stringlen);
3570                 }
3571 }
3572
3573 /*
3574 ========================
3575 VM_buf_sort
3576 sort buffer by beginnings of strings (sortpower defaults it's lenght)
3577 "backward == TRUE" means that sorting goes upside-down
3578 void buf_sort(float bufhandle, float sortpower, float backward) = #464;
3579 ========================
3580 */
3581 void VM_buf_sort (void)
3582 {
3583         qcstrbuffer_t   *b;
3584         int                             i;
3585         VM_SAFEPARMCOUNT(3, VM_buf_sort);
3586
3587         b = BUFSTR_BUFFER((int)PRVM_G_FLOAT(OFS_PARM0));
3588         if(!b)
3589         {
3590                 VM_Warning("VM_buf_sort: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3591                 return;
3592         }
3593         if(b->num_strings <= 0)
3594         {
3595                 VM_Warning("VM_buf_sort: tried to sort empty buffer %i in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3596                 return;
3597         }
3598         buf_sortpower = (int)PRVM_G_FLOAT(OFS_PARM1);
3599         if(buf_sortpower <= 0)
3600                 buf_sortpower = 99999999;
3601
3602         if(!PRVM_G_FLOAT(OFS_PARM2))
3603                 qsort(b->strings, b->num_strings, sizeof(char*), BufStr_SortStringsUP);
3604         else
3605                 qsort(b->strings, b->num_strings, sizeof(char*), BufStr_SortStringsDOWN);
3606
3607         for(i=b->num_strings-1;i>=0;i--)        //[515]: delete empty lines
3608                 if(b->strings)
3609                 {
3610                         if(b->strings[i][0])
3611                                 break;
3612                         else
3613                         {
3614                                 Z_Free(b->strings[i]);
3615                                 --b->num_strings;
3616                                 b->strings[i] = NULL;
3617                         }
3618                 }
3619                 else
3620                         --b->num_strings;
3621 }
3622
3623 /*
3624 ========================
3625 VM_buf_implode
3626 concantenates all buffer string into one with "glue" separator and returns it as tempstring
3627 string buf_implode(float bufhandle, string glue) = #465;
3628 ========================
3629 */
3630 void VM_buf_implode (void)
3631 {
3632         qcstrbuffer_t   *b;
3633         char                    k[VM_STRINGTEMP_LENGTH];
3634         const char              *sep;
3635         int                             i;
3636         size_t                  l;
3637         VM_SAFEPARMCOUNT(2, VM_buf_implode);
3638
3639         b = BUFSTR_BUFFER((int)PRVM_G_FLOAT(OFS_PARM0));
3640         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
3641         if(!b)
3642         {
3643                 VM_Warning("VM_buf_implode: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3644                 return;
3645         }
3646         if(!b->num_strings)
3647                 return;
3648         sep = PRVM_G_STRING(OFS_PARM1);
3649         k[0] = 0;
3650         for(l=i=0;i<b->num_strings;i++)
3651                 if(b->strings[i])
3652                 {
3653                         l += (i > 0 ? strlen(sep) : 0) + strlen(b->strings[i]);
3654                         if (l >= sizeof(k) - 1)
3655                                 break;
3656                         strlcat(k, sep, sizeof(k));
3657                         strlcat(k, b->strings[i], sizeof(k));
3658                 }
3659         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(k);
3660 }
3661
3662 /*
3663 ========================
3664 VM_bufstr_get
3665 get a string from buffer, returns tempstring, dont str_unzone it!
3666 string bufstr_get(float bufhandle, float string_index) = #465;
3667 ========================
3668 */
3669 void VM_bufstr_get (void)
3670 {
3671         qcstrbuffer_t   *b;
3672         int                             strindex;
3673         VM_SAFEPARMCOUNT(2, VM_bufstr_get);
3674
3675         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
3676         b = BUFSTR_BUFFER((int)PRVM_G_FLOAT(OFS_PARM0));
3677         if(!b)
3678         {
3679                 VM_Warning("VM_bufstr_get: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3680                 return;
3681         }
3682         strindex = (int)PRVM_G_FLOAT(OFS_PARM1);
3683         if(strindex < 0 || strindex > MAX_QCSTR_STRINGS)
3684         {
3685                 VM_Warning("VM_bufstr_get: invalid string index %i used in %s\n", strindex, PRVM_NAME);
3686                 return;
3687         }
3688         if(b->num_strings <= strindex)
3689                 return;
3690         if(b->strings[strindex])
3691                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(b->strings[strindex]);
3692 }
3693
3694 /*
3695 ========================
3696 VM_bufstr_set
3697 copies a string into selected slot of buffer
3698 void bufstr_set(float bufhandle, float string_index, string str) = #466;
3699 ========================
3700 */
3701 void VM_bufstr_set (void)
3702 {
3703         int                             bufindex, strindex;
3704         qcstrbuffer_t   *b;
3705         const char              *news;
3706         size_t                  alloclen;
3707
3708         VM_SAFEPARMCOUNT(3, VM_bufstr_set);
3709
3710         bufindex = (int)PRVM_G_FLOAT(OFS_PARM0);
3711         b = BUFSTR_BUFFER(bufindex);
3712         if(!b)
3713         {
3714                 VM_Warning("VM_bufstr_set: invalid buffer %i used in %s\n", bufindex, PRVM_NAME);
3715                 return;
3716         }
3717         strindex = (int)PRVM_G_FLOAT(OFS_PARM1);
3718         if(strindex < 0 || strindex > MAX_QCSTR_STRINGS)
3719         {
3720                 VM_Warning("VM_bufstr_set: invalid string index %i used in %s\n", strindex, PRVM_NAME);
3721                 return;
3722         }
3723         news = PRVM_G_STRING(OFS_PARM2);
3724         if(b->strings[strindex])
3725                 Z_Free(b->strings[strindex]);
3726         alloclen = strlen(news) + 1;
3727         b->strings[strindex] = (char *)Z_Malloc(alloclen);
3728         memcpy(b->strings[strindex], news, alloclen);
3729 }
3730
3731 /*
3732 ========================
3733 VM_bufstr_add
3734 adds string to buffer in nearest free slot and returns it
3735 "order == TRUE" means that string will be added after last "full" slot
3736 float bufstr_add(float bufhandle, string str, float order) = #467;
3737 ========================
3738 */
3739 void VM_bufstr_add (void)
3740 {
3741         int                             bufindex, order, strindex;
3742         qcstrbuffer_t   *b;
3743         const char              *string;
3744         size_t                  alloclen;
3745
3746         VM_SAFEPARMCOUNT(3, VM_bufstr_add);
3747
3748         bufindex = (int)PRVM_G_FLOAT(OFS_PARM0);
3749         b = BUFSTR_BUFFER(bufindex);
3750         PRVM_G_FLOAT(OFS_RETURN) = -1;
3751         if(!b)
3752         {
3753                 VM_Warning("VM_bufstr_add: invalid buffer %i used in %s\n", bufindex, PRVM_NAME);
3754                 return;
3755         }
3756         string = PRVM_G_STRING(OFS_PARM1);
3757         order = (int)PRVM_G_FLOAT(OFS_PARM2);
3758         if(order)
3759                 strindex = b->num_strings;
3760         else
3761         {
3762                 strindex = BufStr_FindFreeString(b);
3763                 if(strindex < 0)
3764                 {
3765                         VM_Warning("VM_bufstr_add: buffer %i has no free string slots in %s\n", bufindex, PRVM_NAME);
3766                         return;
3767                 }
3768         }
3769
3770         while(b->num_strings <= strindex)
3771         {
3772                 if(b->num_strings == MAX_QCSTR_STRINGS)
3773                 {
3774                         VM_Warning("VM_bufstr_add: buffer %i has no free string slots in %s\n", bufindex, PRVM_NAME);
3775                         return;
3776                 }
3777                 b->strings[b->num_strings] = NULL;
3778                 b->num_strings++;
3779         }
3780         if(b->strings[strindex])
3781                 Z_Free(b->strings[strindex]);
3782         alloclen = strlen(string) + 1;
3783         b->strings[strindex] = (char *)Z_Malloc(alloclen);
3784         memcpy(b->strings[strindex], string, alloclen);
3785         PRVM_G_FLOAT(OFS_RETURN) = strindex;
3786 }
3787
3788 /*
3789 ========================
3790 VM_bufstr_free
3791 delete string from buffer
3792 void bufstr_free(float bufhandle, float string_index) = #468;
3793 ========================
3794 */
3795 void VM_bufstr_free (void)
3796 {
3797         int                             i;
3798         qcstrbuffer_t   *b;
3799         VM_SAFEPARMCOUNT(2, VM_bufstr_free);
3800
3801         b = BUFSTR_BUFFER((int)PRVM_G_FLOAT(OFS_PARM0));
3802         if(!b)
3803         {
3804                 VM_Warning("VM_bufstr_free: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3805                 return;
3806         }
3807         i = (int)PRVM_G_FLOAT(OFS_PARM1);
3808         if(i < 0 || i > MAX_QCSTR_STRINGS)
3809         {
3810                 VM_Warning("VM_bufstr_free: invalid string index %i used in %s\n", i, PRVM_NAME);
3811                 return;
3812         }
3813         if(b->strings[i])
3814                 Z_Free(b->strings[i]);
3815         b->strings[i] = NULL;
3816         if(i+1 == b->num_strings)
3817                 --b->num_strings;
3818 }
3819
3820 //=============
3821
3822 /*
3823 ==============
3824 VM_changeyaw
3825
3826 This was a major timewaster in progs, so it was converted to C
3827 ==============
3828 */
3829 void VM_changeyaw (void)
3830 {
3831         prvm_edict_t            *ent;
3832         float           ideal, current, move, speed;
3833
3834         // this is called (VERY HACKISHLY) by SV_MoveToGoal, so it can not use any
3835         // parameters because they are the parameters to SV_MoveToGoal, not this
3836         //VM_SAFEPARMCOUNT(0, VM_changeyaw);
3837
3838         ent = PRVM_PROG_TO_EDICT(PRVM_GLOBALFIELDVALUE(prog->globaloffsets.self)->edict);
3839         if (ent == prog->edicts)
3840         {
3841                 VM_Warning("changeyaw: can not modify world entity\n");
3842                 return;
3843         }
3844         if (ent->priv.server->free)
3845         {
3846                 VM_Warning("changeyaw: can not modify free entity\n");
3847                 return;
3848         }
3849         if (prog->fieldoffsets.angles < 0 || prog->fieldoffsets.ideal_yaw < 0 || prog->fieldoffsets.yaw_speed < 0)
3850         {
3851                 VM_Warning("changeyaw: angles, ideal_yaw, or yaw_speed field(s) not found\n");
3852                 return;
3853         }
3854         current = ANGLEMOD(PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.angles)->vector[1]);
3855         ideal = PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.ideal_yaw)->_float;
3856         speed = PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.yaw_speed)->_float;
3857
3858         if (current == ideal)
3859                 return;
3860         move = ideal - current;
3861         if (ideal > current)
3862         {
3863                 if (move >= 180)
3864                         move = move - 360;
3865         }
3866         else
3867         {
3868                 if (move <= -180)
3869                         move = move + 360;
3870         }
3871         if (move > 0)
3872         {
3873                 if (move > speed)
3874                         move = speed;
3875         }
3876         else
3877         {
3878                 if (move < -speed)
3879                         move = -speed;
3880         }
3881
3882         PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.angles)->vector[1] = ANGLEMOD (current + move);
3883 }
3884
3885 /*
3886 ==============
3887 VM_changepitch
3888 ==============
3889 */
3890 void VM_changepitch (void)
3891 {
3892         prvm_edict_t            *ent;
3893         float           ideal, current, move, speed;
3894
3895         VM_SAFEPARMCOUNT(1, VM_changepitch);
3896
3897         ent = PRVM_G_EDICT(OFS_PARM0);
3898         if (ent == prog->edicts)
3899         {
3900                 VM_Warning("changepitch: can not modify world entity\n");
3901                 return;
3902         }
3903         if (ent->priv.server->free)
3904         {
3905                 VM_Warning("changepitch: can not modify free entity\n");
3906                 return;
3907         }
3908         if (prog->fieldoffsets.angles < 0 || prog->fieldoffsets.idealpitch < 0 || prog->fieldoffsets.pitch_speed < 0)
3909         {
3910                 VM_Warning("changepitch: angles, idealpitch, or pitch_speed field(s) not found\n");
3911                 return;
3912         }
3913         current = ANGLEMOD(PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.angles)->vector[0]);
3914         ideal = PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.idealpitch)->_float;
3915         speed = PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.pitch_speed)->_float;
3916
3917         if (current == ideal)
3918                 return;
3919         move = ideal - current;
3920         if (ideal > current)
3921         {
3922                 if (move >= 180)
3923                         move = move - 360;
3924         }
3925         else
3926         {
3927                 if (move <= -180)
3928                         move = move + 360;
3929         }
3930         if (move > 0)
3931         {
3932                 if (move > speed)
3933                         move = speed;
3934         }
3935         else
3936         {
3937                 if (move < -speed)
3938                         move = -speed;
3939         }
3940
3941         PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.angles)->vector[0] = ANGLEMOD (current + move);
3942 }
3943
3944
3945 static int Is_Text_Color (char c, char t)
3946 {
3947         int a = 0;
3948         char c2 = c - (c & 128);
3949         char t2 = t - (t & 128);
3950
3951         if(c != STRING_COLOR_TAG && c2 != STRING_COLOR_TAG)             return 0;
3952         if(t >= '0' && t <= '9')                a = 1;
3953         if(t2 >= '0' && t2 <= '9')              a = 1;
3954 /*      if(t >= 'A' && t <= 'Z')                a = 2;
3955         if(t2 >= 'A' && t2 <= 'Z')              a = 2;
3956
3957         if(a == 1 && scr_colortext.integer > 0)
3958                 return 1;
3959         if(a == 2 && scr_multifonts.integer > 0)
3960                 return 2;
3961 */
3962         return a;
3963 }
3964
3965 void VM_uncolorstring (void)
3966 {
3967         const char      *in;
3968         char            out[VM_STRINGTEMP_LENGTH];
3969         int                     k = 0, i = 0;
3970
3971         VM_SAFEPARMCOUNT(1, VM_uncolorstring);
3972         in = PRVM_G_STRING(OFS_PARM0);
3973         VM_CheckEmptyString (in);
3974
3975         while (in[k])
3976         {
3977                 if(in[k+1])
3978                 if(Is_Text_Color(in[k], in[k+1]) == 1/* || (in[k] == '&' && in[k+1] == 'r')*/)
3979                 {
3980                         k += 2;
3981                         continue;
3982                 }
3983                 out[i] = in[k];
3984                 ++k;
3985                 ++i;
3986         }
3987         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(out);
3988 }
3989
3990 // #221 float(string str, string sub[, float startpos]) strstrofs (FTE_STRINGS)
3991 //strstr, without generating a new string. Use in conjunction with FRIK_FILE's substring for more similar strstr.
3992 void VM_strstrofs (void)
3993 {
3994         const char *instr, *match;
3995         int firstofs;
3996         VM_SAFEPARMCOUNTRANGE(2, 3, VM_strstrofs);
3997         instr = PRVM_G_STRING(OFS_PARM0);
3998         match = PRVM_G_STRING(OFS_PARM1);
3999         firstofs = (prog->argc > 2)?PRVM_G_FLOAT(OFS_PARM2):0;
4000
4001         if (firstofs && (firstofs < 0 || firstofs > (int)strlen(instr)))
4002         {
4003                 PRVM_G_FLOAT(OFS_RETURN) = -1;
4004                 return;
4005         }
4006
4007         match = strstr(instr+firstofs, match);
4008         if (!match)
4009                 PRVM_G_FLOAT(OFS_RETURN) = -1;
4010         else
4011                 PRVM_G_FLOAT(OFS_RETURN) = match - instr;
4012 }
4013
4014 //#222 string(string s, float index) str2chr (FTE_STRINGS)
4015 void VM_str2chr (void)
4016 {
4017         const char *s;
4018         VM_SAFEPARMCOUNT(2, VM_str2chr);
4019         s = PRVM_G_STRING(OFS_PARM0);
4020         if((unsigned)PRVM_G_FLOAT(OFS_PARM1) < strlen(s))
4021                 PRVM_G_FLOAT(OFS_RETURN) = (unsigned char)s[(unsigned)PRVM_G_FLOAT(OFS_PARM1)];
4022         else
4023                 PRVM_G_FLOAT(OFS_RETURN) = 0;
4024 }
4025
4026 //#223 string(float c, ...) chr2str (FTE_STRINGS)
4027 void VM_chr2str (void)
4028 {
4029         char    t[9];
4030         int             i;
4031         VM_SAFEPARMCOUNTRANGE(0, 8, VM_chr2str);
4032         for(i = 0;i < prog->argc && i < (int)sizeof(t) - 1;i++)
4033                 t[i] = (unsigned char)PRVM_G_FLOAT(OFS_PARM0+i*3);
4034         t[i] = 0;
4035         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(t);
4036 }
4037
4038 static int chrconv_number(int i, int base, int conv)
4039 {
4040         i -= base;
4041         switch (conv)
4042         {
4043         default:
4044         case 5:
4045         case 6:
4046         case 0:
4047                 break;
4048         case 1:
4049                 base = '0';
4050                 break;
4051         case 2:
4052                 base = '0'+128;
4053                 break;
4054         case 3:
4055                 base = '0'-30;
4056                 break;
4057         case 4:
4058                 base = '0'+128-30;
4059                 break;
4060         }
4061         return i + base;
4062 }
4063 static int chrconv_punct(int i, int base, int conv)
4064 {
4065         i -= base;
4066         switch (conv)
4067         {
4068         default:
4069         case 0:
4070                 break;
4071         case 1:
4072                 base = 0;
4073                 break;
4074         case 2:
4075                 base = 128;
4076                 break;
4077         }
4078         return i + base;
4079 }
4080
4081 static int chrchar_alpha(int i, int basec, int baset, int convc, int convt, int charnum)
4082 {
4083         //convert case and colour seperatly...
4084
4085         i -= baset + basec;
4086         switch (convt)
4087         {
4088         default:
4089         case 0:
4090                 break;
4091         case 1:
4092                 baset = 0;
4093                 break;
4094         case 2:
4095                 baset = 128;
4096                 break;
4097
4098         case 5:
4099         case 6:
4100                 baset = 128*((charnum&1) == (convt-5));
4101                 break;
4102         }
4103
4104         switch (convc)
4105         {
4106         default:
4107         case 0:
4108                 break;
4109         case 1:
4110                 basec = 'a';
4111                 break;
4112         case 2:
4113                 basec = 'A';
4114                 break;
4115         }
4116         return i + basec + baset;
4117 }
4118 // #224 string(float ccase, float calpha, float cnum, string s, ...) strconv (FTE_STRINGS)
4119 //bulk convert a string. change case or colouring.
4120 void VM_strconv (void)
4121 {
4122         int ccase, redalpha, rednum, len, i;
4123         unsigned char resbuf[VM_STRINGTEMP_LENGTH];
4124         unsigned char *result = resbuf;
4125
4126         VM_SAFEPARMCOUNTRANGE(3, 8, VM_strconv);
4127
4128         ccase = PRVM_G_FLOAT(OFS_PARM0);        //0 same, 1 lower, 2 upper
4129         redalpha = PRVM_G_FLOAT(OFS_PARM1);     //0 same, 1 white, 2 red,  5 alternate, 6 alternate-alternate
4130         rednum = PRVM_G_FLOAT(OFS_PARM2);       //0 same, 1 white, 2 red, 3 redspecial, 4 whitespecial, 5 alternate, 6 alternate-alternate
4131         VM_VarString(3, (char *) resbuf, sizeof(resbuf));
4132         len = strlen((char *) resbuf);
4133
4134         for (i = 0; i < len; i++, result++)     //should this be done backwards?
4135         {
4136                 if (*result >= '0' && *result <= '9')   //normal numbers...
4137                         *result = chrconv_number(*result, '0', rednum);
4138                 else if (*result >= '0'+128 && *result <= '9'+128)
4139                         *result = chrconv_number(*result, '0'+128, rednum);
4140                 else if (*result >= '0'+128-30 && *result <= '9'+128-30)
4141                         *result = chrconv_number(*result, '0'+128-30, rednum);
4142                 else if (*result >= '0'-30 && *result <= '9'-30)
4143                         *result = chrconv_number(*result, '0'-30, rednum);
4144
4145                 else if (*result >= 'a' && *result <= 'z')      //normal numbers...
4146                         *result = chrchar_alpha(*result, 'a', 0, ccase, redalpha, i);
4147                 else if (*result >= 'A' && *result <= 'Z')      //normal numbers...
4148                         *result = chrchar_alpha(*result, 'A', 0, ccase, redalpha, i);
4149                 else if (*result >= 'a'+128 && *result <= 'z'+128)      //normal numbers...
4150                         *result = chrchar_alpha(*result, 'a', 128, ccase, redalpha, i);
4151                 else if (*result >= 'A'+128 && *result <= 'Z'+128)      //normal numbers...
4152                         *result = chrchar_alpha(*result, 'A', 128, ccase, redalpha, i);
4153
4154                 else if ((*result & 127) < 16 || !redalpha)     //special chars..
4155                         *result = *result;
4156                 else if (*result < 128)
4157                         *result = chrconv_punct(*result, 0, redalpha);
4158                 else
4159                         *result = chrconv_punct(*result, 128, redalpha);
4160         }
4161         *result = '\0';
4162
4163         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString((char *) resbuf);
4164 }
4165
4166 // #225 string(float chars, string s, ...) strpad (FTE_STRINGS)
4167 void VM_strpad (void)
4168 {
4169         char src[VM_STRINGTEMP_LENGTH];
4170         char destbuf[VM_STRINGTEMP_LENGTH];
4171         int pad;
4172         VM_SAFEPARMCOUNTRANGE(1, 8, VM_strpad);
4173         pad = PRVM_G_FLOAT(OFS_PARM0);
4174         VM_VarString(1, src, sizeof(src));
4175
4176         // note: < 0 = left padding, > 0 = right padding,
4177         // this is reverse logic of printf!
4178         dpsnprintf(destbuf, sizeof(destbuf), "%*s", -pad, src);
4179
4180         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(destbuf);
4181 }
4182
4183 // #226 string(string info, string key, string value, ...) infoadd (FTE_STRINGS)
4184 //uses qw style \key\value strings
4185 void VM_infoadd (void)
4186 {
4187         const char *info, *key;
4188         char value[VM_STRINGTEMP_LENGTH];
4189         char temp[VM_STRINGTEMP_LENGTH];
4190
4191         VM_SAFEPARMCOUNTRANGE(2, 8, VM_infoadd);
4192         info = PRVM_G_STRING(OFS_PARM0);
4193         key = PRVM_G_STRING(OFS_PARM1);
4194         VM_VarString(2, value, sizeof(value));
4195
4196         strlcpy(temp, info, VM_STRINGTEMP_LENGTH);
4197
4198         InfoString_SetValue(temp, VM_STRINGTEMP_LENGTH, key, value);
4199
4200         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(temp);
4201 }
4202
4203 // #227 string(string info, string key) infoget (FTE_STRINGS)
4204 //uses qw style \key\value strings
4205 void VM_infoget (void)
4206 {
4207         const char *info;
4208         const char *key;
4209         char value[VM_STRINGTEMP_LENGTH];
4210
4211         VM_SAFEPARMCOUNT(2, VM_infoget);
4212         info = PRVM_G_STRING(OFS_PARM0);
4213         key = PRVM_G_STRING(OFS_PARM1);
4214
4215         InfoString_GetValue(info, key, value, VM_STRINGTEMP_LENGTH);
4216
4217         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(value);
4218 }
4219
4220 //#228 float(string s1, string s2, float len) strncmp (FTE_STRINGS)
4221 // also float(string s1, string s2) strcmp (FRIK_FILE)
4222 void VM_strncmp (void)
4223 {
4224         const char *s1, *s2;
4225         VM_SAFEPARMCOUNTRANGE(2, 3, VM_strncmp);
4226         s1 = PRVM_G_STRING(OFS_PARM0);
4227         s2 = PRVM_G_STRING(OFS_PARM1);
4228         if (prog->argc > 2)
4229         {
4230                 PRVM_G_FLOAT(OFS_RETURN) = strncmp(s1, s2, (size_t)PRVM_G_FLOAT(OFS_PARM2));
4231         }
4232         else
4233         {
4234                 PRVM_G_FLOAT(OFS_RETURN) = strcmp(s1, s2);
4235         }
4236 }
4237
4238 // #229 float(string s1, string s2) strcasecmp (FTE_STRINGS)
4239 // #230 float(string s1, string s2, float len) strncasecmp (FTE_STRINGS)
4240 void VM_strncasecmp (void)
4241 {
4242         const char *s1, *s2;
4243         VM_SAFEPARMCOUNTRANGE(2, 3, VM_strncasecmp);
4244         s1 = PRVM_G_STRING(OFS_PARM0);
4245         s2 = PRVM_G_STRING(OFS_PARM1);
4246         if (prog->argc > 2)
4247         {
4248                 PRVM_G_FLOAT(OFS_RETURN) = strncasecmp(s1, s2, (size_t)PRVM_G_FLOAT(OFS_PARM2));
4249         }
4250         else
4251         {
4252                 PRVM_G_FLOAT(OFS_RETURN) = strcasecmp(s1, s2);
4253         }
4254 }
4255
4256 void VM_wasfreed (void)
4257 {
4258         VM_SAFEPARMCOUNT(1, VM_wasfreed);
4259         PRVM_G_FLOAT(OFS_RETURN) = PRVM_G_EDICT(OFS_PARM0)->priv.required->free;
4260 }
4261
4262 void VM_SetTraceGlobals(const trace_t *trace)
4263 {
4264         prvm_eval_t *val;
4265         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_allsolid)))
4266                 val->_float = trace->allsolid;
4267         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_startsolid)))
4268                 val->_float = trace->startsolid;
4269         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_fraction)))
4270                 val->_float = trace->fraction;
4271         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_inwater)))
4272                 val->_float = trace->inwater;
4273         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_inopen)))
4274                 val->_float = trace->inopen;
4275         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_endpos)))
4276                 VectorCopy(trace->endpos, val->vector);
4277         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_plane_normal)))
4278                 VectorCopy(trace->plane.normal, val->vector);
4279         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_plane_dist)))
4280                 val->_float = trace->plane.dist;
4281         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_ent)))
4282                 val->edict = PRVM_EDICT_TO_PROG(trace->ent ? trace->ent : prog->edicts);
4283         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_dpstartcontents)))
4284                 val->_float = trace->startsupercontents;
4285         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_dphitcontents)))
4286                 val->_float = trace->hitsupercontents;
4287         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_dphitq3surfaceflags)))
4288                 val->_float = trace->hitq3surfaceflags;
4289         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_dphittexturename)))
4290                 val->string = trace->hittexture ? PRVM_SetTempString(trace->hittexture->name) : 0;
4291 }
4292
4293 //=============
4294
4295 void VM_Cmd_Init(void)
4296 {
4297         // only init the stuff for the current prog
4298         VM_Files_Init();
4299         VM_Search_Init();
4300 //      VM_BufStr_Init();
4301 }
4302
4303 void VM_Cmd_Reset(void)
4304 {
4305         CL_PurgeOwner( MENUOWNER );
4306         VM_Search_Reset();
4307         VM_Files_CloseAll();
4308 //      VM_BufStr_ShutDown();
4309 }
4310