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