]> icculus.org git repositories - divverent/darkplaces.git/blob - prvm_cmds.c
add extension DP_QC_URI_GET (downloads HTTP/whatever URLs to QC strings using a callback)
[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_Printf(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 (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
1961         COM_StringDecolorize(szString, 0, szNewString, sizeof(szNewString), TRUE);
1962
1963         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
1964 }
1965
1966 // DRESK - String Length (not counting color codes)
1967 /*
1968 =========
1969 VM_strlennocol
1970
1971 float   strlennocol(string s)
1972 =========
1973 */
1974 // float(string s) strlennocol = #471; // returns how many characters are in a string not including color codes
1975 // For example, ^2Dresk returns a length of 5
1976 void VM_strlennocol(void)
1977 {
1978         const char *szString;
1979         int nCnt;
1980
1981         VM_SAFEPARMCOUNT(1,VM_strlennocol);
1982
1983         szString = PRVM_G_STRING(OFS_PARM0);
1984
1985         nCnt = COM_StringLengthNoColors(szString, 0, NULL);
1986
1987         PRVM_G_FLOAT(OFS_RETURN) = nCnt;
1988 }
1989
1990 // DRESK - String to Uppercase and Lowercase
1991 /*
1992 =========
1993 VM_strtolower
1994
1995 string  strtolower(string s)
1996 =========
1997 */
1998 // string (string s) strtolower = #480; // returns passed in string in lowercase form
1999 void VM_strtolower(void)
2000 {
2001         char szNewString[VM_STRINGTEMP_LENGTH];
2002         const char *szString;
2003
2004         // Prepare Strings
2005         VM_SAFEPARMCOUNT(1,VM_strtolower);
2006         szString = PRVM_G_STRING(OFS_PARM0);
2007
2008         COM_ToLowerString(szString, szNewString, sizeof(szNewString) );
2009
2010         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
2011 }
2012
2013 /*
2014 =========
2015 VM_strtoupper
2016
2017 string  strtoupper(string s)
2018 =========
2019 */
2020 // string (string s) strtoupper = #481; // returns passed in string in uppercase form
2021 void VM_strtoupper(void)
2022 {
2023         char szNewString[VM_STRINGTEMP_LENGTH];
2024         const char *szString;
2025
2026         // Prepare Strings
2027         VM_SAFEPARMCOUNT(1,VM_strtoupper);
2028         szString = PRVM_G_STRING(OFS_PARM0);
2029
2030         COM_ToUpperString(szString, szNewString, sizeof(szNewString) );
2031
2032         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
2033 }
2034
2035 /*
2036 =========
2037 VM_strcat
2038
2039 string strcat(string,string,...[string])
2040 =========
2041 */
2042 //string(string s1, string s2) strcat = #115;
2043 // concatenates two strings (for example "abc", "def" would return "abcdef")
2044 // and returns as a tempstring
2045 void VM_strcat(void)
2046 {
2047         char s[VM_STRINGTEMP_LENGTH];
2048         VM_SAFEPARMCOUNTRANGE(1, 8, VM_strcat);
2049
2050         VM_VarString(0, s, sizeof(s));
2051         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(s);
2052 }
2053
2054 /*
2055 =========
2056 VM_substring
2057
2058 string  substring(string s, float start, float length)
2059 =========
2060 */
2061 // string(string s, float start, float length) substring = #116;
2062 // returns a section of a string as a tempstring
2063 void VM_substring(void)
2064 {
2065         int i, start, length;
2066         const char *s;
2067         char string[VM_STRINGTEMP_LENGTH];
2068
2069         VM_SAFEPARMCOUNT(3,VM_substring);
2070
2071         s = PRVM_G_STRING(OFS_PARM0);
2072         start = (int)PRVM_G_FLOAT(OFS_PARM1);
2073         length = (int)PRVM_G_FLOAT(OFS_PARM2);
2074         for (i = 0;i < start && *s;i++, s++);
2075         for (i = 0;i < (int)sizeof(string) - 1 && *s && i < length;i++, s++)
2076                 string[i] = *s;
2077         string[i] = 0;
2078         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
2079 }
2080
2081 /*
2082 =========
2083 VM_strreplace
2084
2085 string(string search, string replace, string subject) strreplace = #484;
2086 =========
2087 */
2088 // replaces all occurrences of search with replace in the string subject, and returns the result
2089 void VM_strreplace(void)
2090 {
2091         int i, j, si;
2092         const char *search, *replace, *subject;
2093         char string[VM_STRINGTEMP_LENGTH];
2094         int search_len, replace_len, subject_len;
2095
2096         VM_SAFEPARMCOUNT(3,VM_strreplace);
2097
2098         search = PRVM_G_STRING(OFS_PARM0);
2099         replace = PRVM_G_STRING(OFS_PARM1);
2100         subject = PRVM_G_STRING(OFS_PARM2);
2101
2102         search_len = (int)strlen(search);
2103         replace_len = (int)strlen(replace);
2104         subject_len = (int)strlen(subject);
2105
2106         si = 0;
2107         for (i = 0; i < subject_len; i++)
2108         {
2109                 for (j = 0; j < search_len && i+j < subject_len; j++)
2110                         if (subject[i+j] != search[j])
2111                                 break;
2112                 if (j == search_len || i+j == subject_len)
2113                 {
2114                 // found it at offset 'i'
2115                         for (j = 0; j < replace_len && si < (int)sizeof(string) - 1; j++)
2116                                 string[si++] = replace[j];
2117                         i += search_len - 1;
2118                 }
2119                 else
2120                 {
2121                 // not found
2122                         if (si < (int)sizeof(string) - 1)
2123                                 string[si++] = subject[i];
2124                 }
2125         }
2126         string[si] = '\0';
2127
2128         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
2129 }
2130
2131 /*
2132 =========
2133 VM_strireplace
2134
2135 string(string search, string replace, string subject) strireplace = #485;
2136 =========
2137 */
2138 // case-insensitive version of strreplace
2139 void VM_strireplace(void)
2140 {
2141         int i, j, si;
2142         const char *search, *replace, *subject;
2143         char string[VM_STRINGTEMP_LENGTH];
2144         int search_len, replace_len, subject_len;
2145
2146         VM_SAFEPARMCOUNT(3,VM_strreplace);
2147
2148         search = PRVM_G_STRING(OFS_PARM0);
2149         replace = PRVM_G_STRING(OFS_PARM1);
2150         subject = PRVM_G_STRING(OFS_PARM2);
2151
2152         search_len = (int)strlen(search);
2153         replace_len = (int)strlen(replace);
2154         subject_len = (int)strlen(subject);
2155
2156         si = 0;
2157         for (i = 0; i < subject_len; i++)
2158         {
2159                 for (j = 0; j < search_len && i+j < subject_len; j++)
2160                         if (tolower(subject[i+j]) != tolower(search[j]))
2161                                 break;
2162                 if (j == search_len || i+j == subject_len)
2163                 {
2164                 // found it at offset 'i'
2165                         for (j = 0; j < replace_len && si < (int)sizeof(string) - 1; j++)
2166                                 string[si++] = replace[j];
2167                         i += search_len - 1;
2168                 }
2169                 else
2170                 {
2171                 // not found
2172                         if (si < (int)sizeof(string) - 1)
2173                                 string[si++] = subject[i];
2174                 }
2175         }
2176         string[si] = '\0';
2177
2178         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
2179 }
2180
2181 /*
2182 =========
2183 VM_stov
2184
2185 vector  stov(string s)
2186 =========
2187 */
2188 //vector(string s) stov = #117; // returns vector value from a string
2189 void VM_stov(void)
2190 {
2191         char string[VM_STRINGTEMP_LENGTH];
2192
2193         VM_SAFEPARMCOUNT(1,VM_stov);
2194
2195         VM_VarString(0, string, sizeof(string));
2196         Math_atov(string, PRVM_G_VECTOR(OFS_RETURN));
2197 }
2198
2199 /*
2200 =========
2201 VM_strzone
2202
2203 string  strzone(string s)
2204 =========
2205 */
2206 //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)
2207 void VM_strzone(void)
2208 {
2209         char *out;
2210         char string[VM_STRINGTEMP_LENGTH];
2211         size_t alloclen;
2212
2213         VM_SAFEPARMCOUNT(1,VM_strzone);
2214
2215         VM_VarString(0, string, sizeof(string));
2216         alloclen = strlen(string) + 1;
2217         PRVM_G_INT(OFS_RETURN) = PRVM_AllocString(alloclen, &out);
2218         memcpy(out, string, alloclen);
2219 }
2220
2221 /*
2222 =========
2223 VM_strunzone
2224
2225 strunzone(string s)
2226 =========
2227 */
2228 //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!!!)
2229 void VM_strunzone(void)
2230 {
2231         VM_SAFEPARMCOUNT(1,VM_strunzone);
2232         PRVM_FreeString(PRVM_G_INT(OFS_PARM0));
2233 }
2234
2235 /*
2236 =========
2237 VM_command (used by client and menu)
2238
2239 clientcommand(float client, string s) (for client and menu)
2240 =========
2241 */
2242 //void(entity e, string s) clientcommand = #440; // executes a command string as if it came from the specified client
2243 //this function originally written by KrimZon, made shorter by LordHavoc
2244 void VM_clcommand (void)
2245 {
2246         client_t *temp_client;
2247         int i;
2248
2249         VM_SAFEPARMCOUNT(2,VM_clcommand);
2250
2251         i = (int)PRVM_G_FLOAT(OFS_PARM0);
2252         if (!sv.active  || i < 0 || i >= svs.maxclients || !svs.clients[i].active)
2253         {
2254                 VM_Warning("VM_clientcommand: %s: invalid client/server is not active !\n", PRVM_NAME);
2255                 return;
2256         }
2257
2258         temp_client = host_client;
2259         host_client = svs.clients + i;
2260         Cmd_ExecuteString (PRVM_G_STRING(OFS_PARM1), src_client);
2261         host_client = temp_client;
2262 }
2263
2264
2265 /*
2266 =========
2267 VM_tokenize
2268
2269 float tokenize(string s)
2270 =========
2271 */
2272 //float(string s) tokenize = #441; // takes apart a string into individal words (access them with argv), returns how many
2273 //this function originally written by KrimZon, made shorter by LordHavoc
2274 //20040203: rewritten by LordHavoc (no longer uses allocations)
2275 int num_tokens = 0;
2276 int tokens[256];
2277 void VM_tokenize (void)
2278 {
2279         const char *p;
2280         static char string[VM_STRINGTEMP_LENGTH]; // static, because it's big
2281
2282         VM_SAFEPARMCOUNT(1,VM_tokenize);
2283
2284         strlcpy(string, PRVM_G_STRING(OFS_PARM0), sizeof(string));
2285         p = string;
2286
2287         num_tokens = 0;
2288         while(COM_ParseToken_VM_Tokenize(&p, false))
2289         {
2290                 if (num_tokens >= (int)(sizeof(tokens)/sizeof(tokens[0])))
2291                         break;
2292                 tokens[num_tokens++] = PRVM_SetTempString(com_token);
2293         }
2294
2295         PRVM_G_FLOAT(OFS_RETURN) = num_tokens;
2296 }
2297
2298 /*
2299 =========
2300 VM_tokenizebyseparator
2301
2302 float tokenizebyseparator(string s, string separator1, ...)
2303 =========
2304 */
2305 //float(string s, string separator1, ...) tokenizebyseparator = #479; // takes apart a string into individal words (access them with argv), returns how many
2306 //this function returns the token preceding each instance of a separator (of
2307 //which there can be multiple), and the text following the last separator
2308 //useful for parsing certain kinds of data like IP addresses
2309 //example:
2310 //numnumbers = tokenizebyseparator("10.1.2.3", ".");
2311 //returns 4 and the tokens "10" "1" "2" "3".
2312 void VM_tokenizebyseparator (void)
2313 {
2314         int j, k;
2315         int numseparators;
2316         int separatorlen[7];
2317         const char *separators[7];
2318         const char *p;
2319         const char *token;
2320         char tokentext[MAX_INPUTLINE];
2321         static char string[VM_STRINGTEMP_LENGTH]; // static, because it's big
2322
2323         VM_SAFEPARMCOUNTRANGE(2, 8,VM_tokenizebyseparator);
2324
2325         strlcpy(string, PRVM_G_STRING(OFS_PARM0), sizeof(string));
2326         p = string;
2327
2328         numseparators = 0;
2329         for (j = 1;j < prog->argc;j++)
2330         {
2331                 // skip any blank separator strings
2332                 const char *s = PRVM_G_STRING(OFS_PARM0+j*3);
2333                 if (!s[0])
2334                         continue;
2335                 separators[numseparators] = s;
2336                 separatorlen[numseparators] = strlen(s);
2337                 numseparators++;
2338         }
2339
2340         num_tokens = 0;
2341         j = 0;
2342
2343         while (num_tokens < (int)(sizeof(tokens)/sizeof(tokens[0])))
2344         {
2345                 token = tokentext + j;
2346                 while (*p)
2347                 {
2348                         for (k = 0;k < numseparators;k++)
2349                         {
2350                                 if (!strncmp(p, separators[k], separatorlen[k]))
2351                                 {
2352                                         p += separatorlen[k];
2353                                         break;
2354                                 }
2355                         }
2356                         if (k < numseparators)
2357                                 break;
2358                         if (j < (int)sizeof(tokentext)-1)
2359                                 tokentext[j++] = *p;
2360                         p++;
2361                 }
2362                 if (j >= (int)sizeof(tokentext))
2363                         break;
2364                 tokentext[j++] = 0;
2365                 tokens[num_tokens++] = PRVM_SetTempString(token);
2366                 if (!*p)
2367                         break;
2368         }
2369
2370         PRVM_G_FLOAT(OFS_RETURN) = num_tokens;
2371 }
2372
2373 //string(float n) argv = #442; // returns a word from the tokenized string (returns nothing for an invalid index)
2374 //this function originally written by KrimZon, made shorter by LordHavoc
2375 void VM_argv (void)
2376 {
2377         int token_num;
2378
2379         VM_SAFEPARMCOUNT(1,VM_argv);
2380
2381         token_num = (int)PRVM_G_FLOAT(OFS_PARM0);
2382
2383         if (token_num >= 0 && token_num < num_tokens)
2384                 PRVM_G_INT(OFS_RETURN) = tokens[token_num];
2385         else
2386                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
2387 }
2388
2389 /*
2390 =========
2391 VM_isserver
2392
2393 float   isserver()
2394 =========
2395 */
2396 void VM_isserver(void)
2397 {
2398         VM_SAFEPARMCOUNT(0,VM_serverstate);
2399
2400         PRVM_G_FLOAT(OFS_RETURN) = sv.active && (svs.maxclients > 1 || cls.state == ca_dedicated);
2401 }
2402
2403 /*
2404 =========
2405 VM_clientcount
2406
2407 float   clientcount()
2408 =========
2409 */
2410 void VM_clientcount(void)
2411 {
2412         VM_SAFEPARMCOUNT(0,VM_clientcount);
2413
2414         PRVM_G_FLOAT(OFS_RETURN) = svs.maxclients;
2415 }
2416
2417 /*
2418 =========
2419 VM_clientstate
2420
2421 float   clientstate()
2422 =========
2423 */
2424 void VM_clientstate(void)
2425 {
2426         VM_SAFEPARMCOUNT(0,VM_clientstate);
2427
2428
2429         switch( cls.state ) {
2430                 case ca_uninitialized:
2431                 case ca_dedicated:
2432                         PRVM_G_FLOAT(OFS_RETURN) = 0;
2433                         break;
2434                 case ca_disconnected:
2435                         PRVM_G_FLOAT(OFS_RETURN) = 1;
2436                         break;
2437                 case ca_connected:
2438                         PRVM_G_FLOAT(OFS_RETURN) = 2;
2439                         break;
2440                 default:
2441                         // should never be reached!
2442                         break;
2443         }
2444 }
2445
2446 /*
2447 =========
2448 VM_getostype
2449
2450 float   getostype(void)
2451 =========
2452 */ // not used at the moment -> not included in the common list
2453 void VM_getostype(void)
2454 {
2455         VM_SAFEPARMCOUNT(0,VM_getostype);
2456
2457         /*
2458         OS_WINDOWS
2459         OS_LINUX
2460         OS_MAC - not supported
2461         */
2462
2463 #ifdef WIN32
2464         PRVM_G_FLOAT(OFS_RETURN) = 0;
2465 #elif defined(MACOSX)
2466         PRVM_G_FLOAT(OFS_RETURN) = 2;
2467 #else
2468         PRVM_G_FLOAT(OFS_RETURN) = 1;
2469 #endif
2470 }
2471
2472 /*
2473 =========
2474 VM_gettime
2475
2476 float   gettime(void)
2477 =========
2478 */
2479 void VM_gettime(void)
2480 {
2481         VM_SAFEPARMCOUNT(0,VM_gettime);
2482
2483         PRVM_G_FLOAT(OFS_RETURN) = (float) realtime;
2484 }
2485
2486 /*
2487 =========
2488 VM_loadfromdata
2489
2490 loadfromdata(string data)
2491 =========
2492 */
2493 void VM_loadfromdata(void)
2494 {
2495         VM_SAFEPARMCOUNT(1,VM_loadentsfromfile);
2496
2497         PRVM_ED_LoadFromFile(PRVM_G_STRING(OFS_PARM0));
2498 }
2499
2500 /*
2501 ========================
2502 VM_parseentitydata
2503
2504 parseentitydata(entity ent, string data)
2505 ========================
2506 */
2507 void VM_parseentitydata(void)
2508 {
2509         prvm_edict_t *ent;
2510         const char *data;
2511
2512         VM_SAFEPARMCOUNT(2, VM_parseentitydata);
2513
2514         // get edict and test it
2515         ent = PRVM_G_EDICT(OFS_PARM0);
2516         if (ent->priv.required->free)
2517                 PRVM_ERROR ("VM_parseentitydata: %s: Can only set already spawned entities (entity %i is free)!", PRVM_NAME, PRVM_NUM_FOR_EDICT(ent));
2518
2519         data = PRVM_G_STRING(OFS_PARM1);
2520
2521         // parse the opening brace
2522         if (!COM_ParseToken_Simple(&data, false, false) || com_token[0] != '{' )
2523                 PRVM_ERROR ("VM_parseentitydata: %s: Couldn't parse entity data:\n%s", PRVM_NAME, data );
2524
2525         PRVM_ED_ParseEdict (data, ent);
2526 }
2527
2528 /*
2529 =========
2530 VM_loadfromfile
2531
2532 loadfromfile(string file)
2533 =========
2534 */
2535 void VM_loadfromfile(void)
2536 {
2537         const char *filename;
2538         char *data;
2539
2540         VM_SAFEPARMCOUNT(1,VM_loadfromfile);
2541
2542         filename = PRVM_G_STRING(OFS_PARM0);
2543         if (FS_CheckNastyPath(filename, false))
2544         {
2545                 PRVM_G_FLOAT(OFS_RETURN) = -4;
2546                 VM_Warning("VM_loadfromfile: %s dangerous or non-portable filename \"%s\" not allowed. (contains : or \\ or begins with .. or /)\n", PRVM_NAME, filename);
2547                 return;
2548         }
2549
2550         // not conform with VM_fopen
2551         data = (char *)FS_LoadFile(filename, tempmempool, false, NULL);
2552         if (data == NULL)
2553                 PRVM_G_FLOAT(OFS_RETURN) = -1;
2554
2555         PRVM_ED_LoadFromFile(data);
2556
2557         if(data)
2558                 Mem_Free(data);
2559 }
2560
2561
2562 /*
2563 =========
2564 VM_modulo
2565
2566 float   mod(float val, float m)
2567 =========
2568 */
2569 void VM_modulo(void)
2570 {
2571         int val, m;
2572         VM_SAFEPARMCOUNT(2,VM_module);
2573
2574         val = (int) PRVM_G_FLOAT(OFS_PARM0);
2575         m       = (int) PRVM_G_FLOAT(OFS_PARM1);
2576
2577         PRVM_G_FLOAT(OFS_RETURN) = (float) (val % m);
2578 }
2579
2580 void VM_Search_Init(void)
2581 {
2582         int i;
2583         for (i = 0;i < PRVM_MAX_OPENSEARCHES;i++)
2584                 prog->opensearches[i] = NULL;
2585 }
2586
2587 void VM_Search_Reset(void)
2588 {
2589         int i;
2590         // reset the fssearch list
2591         for(i = 0; i < PRVM_MAX_OPENSEARCHES; i++)
2592         {
2593                 if(prog->opensearches[i])
2594                         FS_FreeSearch(prog->opensearches[i]);
2595                 prog->opensearches[i] = NULL;
2596         }
2597 }
2598
2599 /*
2600 =========
2601 VM_search_begin
2602
2603 float search_begin(string pattern, float caseinsensitive, float quiet)
2604 =========
2605 */
2606 void VM_search_begin(void)
2607 {
2608         int handle;
2609         const char *pattern;
2610         int caseinsens, quiet;
2611
2612         VM_SAFEPARMCOUNT(3, VM_search_begin);
2613
2614         pattern = PRVM_G_STRING(OFS_PARM0);
2615
2616         VM_CheckEmptyString(pattern);
2617
2618         caseinsens = (int)PRVM_G_FLOAT(OFS_PARM1);
2619         quiet = (int)PRVM_G_FLOAT(OFS_PARM2);
2620
2621         for(handle = 0; handle < PRVM_MAX_OPENSEARCHES; handle++)
2622                 if(!prog->opensearches[handle])
2623                         break;
2624
2625         if(handle >= PRVM_MAX_OPENSEARCHES)
2626         {
2627                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2628                 VM_Warning("VM_search_begin: %s ran out of search handles (%i)\n", PRVM_NAME, PRVM_MAX_OPENSEARCHES);
2629                 return;
2630         }
2631
2632         if(!(prog->opensearches[handle] = FS_Search(pattern,caseinsens, quiet)))
2633                 PRVM_G_FLOAT(OFS_RETURN) = -1;
2634         else
2635         {
2636                 prog->opensearches_origin[handle] = PRVM_AllocationOrigin();
2637                 PRVM_G_FLOAT(OFS_RETURN) = handle;
2638         }
2639 }
2640
2641 /*
2642 =========
2643 VM_search_end
2644
2645 void    search_end(float handle)
2646 =========
2647 */
2648 void VM_search_end(void)
2649 {
2650         int handle;
2651         VM_SAFEPARMCOUNT(1, VM_search_end);
2652
2653         handle = (int)PRVM_G_FLOAT(OFS_PARM0);
2654
2655         if(handle < 0 || handle >= PRVM_MAX_OPENSEARCHES)
2656         {
2657                 VM_Warning("VM_search_end: invalid handle %i used in %s\n", handle, PRVM_NAME);
2658                 return;
2659         }
2660         if(prog->opensearches[handle] == NULL)
2661         {
2662                 VM_Warning("VM_search_end: no such handle %i in %s\n", handle, PRVM_NAME);
2663                 return;
2664         }
2665
2666         FS_FreeSearch(prog->opensearches[handle]);
2667         prog->opensearches[handle] = NULL;
2668         if(prog->opensearches_origin[handle])
2669                 PRVM_Free((char *)prog->opensearches_origin[handle]);
2670 }
2671
2672 /*
2673 =========
2674 VM_search_getsize
2675
2676 float   search_getsize(float handle)
2677 =========
2678 */
2679 void VM_search_getsize(void)
2680 {
2681         int handle;
2682         VM_SAFEPARMCOUNT(1, VM_M_search_getsize);
2683
2684         handle = (int)PRVM_G_FLOAT(OFS_PARM0);
2685
2686         if(handle < 0 || handle >= PRVM_MAX_OPENSEARCHES)
2687         {
2688                 VM_Warning("VM_search_getsize: invalid handle %i used in %s\n", handle, PRVM_NAME);
2689                 return;
2690         }
2691         if(prog->opensearches[handle] == NULL)
2692         {
2693                 VM_Warning("VM_search_getsize: no such handle %i in %s\n", handle, PRVM_NAME);
2694                 return;
2695         }
2696
2697         PRVM_G_FLOAT(OFS_RETURN) = prog->opensearches[handle]->numfilenames;
2698 }
2699
2700 /*
2701 =========
2702 VM_search_getfilename
2703
2704 string  search_getfilename(float handle, float num)
2705 =========
2706 */
2707 void VM_search_getfilename(void)
2708 {
2709         int handle, filenum;
2710         VM_SAFEPARMCOUNT(2, VM_search_getfilename);
2711
2712         handle = (int)PRVM_G_FLOAT(OFS_PARM0);
2713         filenum = (int)PRVM_G_FLOAT(OFS_PARM1);
2714
2715         if(handle < 0 || handle >= PRVM_MAX_OPENSEARCHES)
2716         {
2717                 VM_Warning("VM_search_getfilename: invalid handle %i used in %s\n", handle, PRVM_NAME);
2718                 return;
2719         }
2720         if(prog->opensearches[handle] == NULL)
2721         {
2722                 VM_Warning("VM_search_getfilename: no such handle %i in %s\n", handle, PRVM_NAME);
2723                 return;
2724         }
2725         if(filenum < 0 || filenum >= prog->opensearches[handle]->numfilenames)
2726         {
2727                 VM_Warning("VM_search_getfilename: invalid filenum %i in %s\n", filenum, PRVM_NAME);
2728                 return;
2729         }
2730
2731         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(prog->opensearches[handle]->filenames[filenum]);
2732 }
2733
2734 /*
2735 =========
2736 VM_chr
2737
2738 string  chr(float ascii)
2739 =========
2740 */
2741 void VM_chr(void)
2742 {
2743         char tmp[2];
2744         VM_SAFEPARMCOUNT(1, VM_chr);
2745
2746         tmp[0] = (unsigned char) PRVM_G_FLOAT(OFS_PARM0);
2747         tmp[1] = 0;
2748
2749         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(tmp);
2750 }
2751
2752 //=============================================================================
2753 // Draw builtins (client & menu)
2754
2755 /*
2756 =========
2757 VM_iscachedpic
2758
2759 float   iscachedpic(string pic)
2760 =========
2761 */
2762 void VM_iscachedpic(void)
2763 {
2764         VM_SAFEPARMCOUNT(1,VM_iscachedpic);
2765
2766         // drawq hasnt such a function, thus always return true
2767         PRVM_G_FLOAT(OFS_RETURN) = false;
2768 }
2769
2770 /*
2771 =========
2772 VM_precache_pic
2773
2774 string  precache_pic(string pic)
2775 =========
2776 */
2777 void VM_precache_pic(void)
2778 {
2779         const char      *s;
2780
2781         VM_SAFEPARMCOUNT(1, VM_precache_pic);
2782
2783         s = PRVM_G_STRING(OFS_PARM0);
2784         PRVM_G_INT(OFS_RETURN) = PRVM_G_INT(OFS_PARM0);
2785         VM_CheckEmptyString (s);
2786
2787         // AK Draw_CachePic is supposed to always return a valid pointer
2788         if( Draw_CachePic_Flags(s, CACHEPICFLAG_NOTPERSISTENT)->tex == r_texture_notexture )
2789                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
2790 }
2791
2792 /*
2793 =========
2794 VM_freepic
2795
2796 freepic(string s)
2797 =========
2798 */
2799 void VM_freepic(void)
2800 {
2801         const char *s;
2802
2803         VM_SAFEPARMCOUNT(1,VM_freepic);
2804
2805         s = PRVM_G_STRING(OFS_PARM0);
2806         VM_CheckEmptyString (s);
2807
2808         Draw_FreePic(s);
2809 }
2810
2811 dp_font_t *getdrawfont()
2812 {
2813         if(prog->globaloffsets.drawfont >= 0)
2814         {
2815                 int f = PRVM_G_FLOAT(prog->globaloffsets.drawfont);
2816                 if(f < 0 || f >= MAX_FONTS)
2817                         return FONT_DEFAULT;
2818                 return &dp_fonts[f];
2819         }
2820         else
2821                 return FONT_DEFAULT;
2822 }
2823
2824 /*
2825 =========
2826 VM_drawcharacter
2827
2828 float   drawcharacter(vector position, float character, vector scale, vector rgb, float alpha, float flag)
2829 =========
2830 */
2831 void VM_drawcharacter(void)
2832 {
2833         float *pos,*scale,*rgb;
2834         char   character;
2835         int flag;
2836         VM_SAFEPARMCOUNT(6,VM_drawcharacter);
2837
2838         character = (char) PRVM_G_FLOAT(OFS_PARM1);
2839         if(character == 0)
2840         {
2841                 PRVM_G_FLOAT(OFS_RETURN) = -1;
2842                 VM_Warning("VM_drawcharacter: %s passed null character !\n",PRVM_NAME);
2843                 return;
2844         }
2845
2846         pos = PRVM_G_VECTOR(OFS_PARM0);
2847         scale = PRVM_G_VECTOR(OFS_PARM2);
2848         rgb = PRVM_G_VECTOR(OFS_PARM3);
2849         flag = (int)PRVM_G_FLOAT(OFS_PARM5);
2850
2851         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
2852         {
2853                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2854                 VM_Warning("VM_drawcharacter: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
2855                 return;
2856         }
2857
2858         if(pos[2] || scale[2])
2859                 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")));
2860
2861         if(!scale[0] || !scale[1])
2862         {
2863                 PRVM_G_FLOAT(OFS_RETURN) = -3;
2864                 VM_Warning("VM_drawcharacter: scale %s is null !\n", (scale[0] == 0) ? ((scale[1] == 0) ? "x and y" : "x") : "y");
2865                 return;
2866         }
2867
2868         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());
2869         PRVM_G_FLOAT(OFS_RETURN) = 1;
2870 }
2871
2872 /*
2873 =========
2874 VM_drawstring
2875
2876 float   drawstring(vector position, string text, vector scale, vector rgb, float alpha, float flag)
2877 =========
2878 */
2879 void VM_drawstring(void)
2880 {
2881         float *pos,*scale,*rgb;
2882         const char  *string;
2883         int flag;
2884         VM_SAFEPARMCOUNT(6,VM_drawstring);
2885
2886         string = PRVM_G_STRING(OFS_PARM1);
2887         pos = PRVM_G_VECTOR(OFS_PARM0);
2888         scale = PRVM_G_VECTOR(OFS_PARM2);
2889         rgb = PRVM_G_VECTOR(OFS_PARM3);
2890         flag = (int)PRVM_G_FLOAT(OFS_PARM5);
2891
2892         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
2893         {
2894                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2895                 VM_Warning("VM_drawstring: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
2896                 return;
2897         }
2898
2899         if(!scale[0] || !scale[1])
2900         {
2901                 PRVM_G_FLOAT(OFS_RETURN) = -3;
2902                 VM_Warning("VM_drawstring: scale %s is null !\n", (scale[0] == 0) ? ((scale[1] == 0) ? "x and y" : "x") : "y");
2903                 return;
2904         }
2905
2906         if(pos[2] || scale[2])
2907                 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")));
2908
2909         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());
2910         PRVM_G_FLOAT(OFS_RETURN) = 1;
2911 }
2912
2913 /*
2914 =========
2915 VM_drawcolorcodedstring
2916
2917 float   drawcolorcodedstring(vector position, string text, vector scale, float alpha, float flag)
2918 =========
2919 */
2920 void VM_drawcolorcodedstring(void)
2921 {
2922         float *pos,*scale;
2923         const char  *string;
2924         int flag,color;
2925         VM_SAFEPARMCOUNT(5,VM_drawstring);
2926
2927         string = PRVM_G_STRING(OFS_PARM1);
2928         pos = PRVM_G_VECTOR(OFS_PARM0);
2929         scale = PRVM_G_VECTOR(OFS_PARM2);
2930         flag = (int)PRVM_G_FLOAT(OFS_PARM4);
2931
2932         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
2933         {
2934                 PRVM_G_FLOAT(OFS_RETURN) = -2;
2935                 VM_Warning("VM_drawcolorcodedstring: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
2936                 return;
2937         }
2938
2939         if(!scale[0] || !scale[1])
2940         {
2941                 PRVM_G_FLOAT(OFS_RETURN) = -3;
2942                 VM_Warning("VM_drawcolorcodedstring: scale %s is null !\n", (scale[0] == 0) ? ((scale[1] == 0) ? "x and y" : "x") : "y");
2943                 return;
2944         }
2945
2946         if(pos[2] || scale[2])
2947                 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")));
2948
2949         color = -1;
2950         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());
2951         PRVM_G_FLOAT(OFS_RETURN) = 1;
2952 }
2953 /*
2954 =========
2955 VM_stringwidth
2956
2957 float   stringwidth(string text, float allowColorCodes)
2958 =========
2959 */
2960 void VM_stringwidth(void)
2961 {
2962         const char  *string;
2963         int colors;
2964         VM_SAFEPARMCOUNT(2,VM_drawstring);
2965
2966         string = PRVM_G_STRING(OFS_PARM0);
2967         colors = (int)PRVM_G_FLOAT(OFS_PARM1);
2968
2969         PRVM_G_FLOAT(OFS_RETURN) = DrawQ_TextWidth_Font(string, 0, !colors, getdrawfont()); // 1x1 characters, don't actually draw
2970 }
2971 /*
2972 =========
2973 VM_drawpic
2974
2975 float   drawpic(vector position, string pic, vector size, vector rgb, float alpha, float flag)
2976 =========
2977 */
2978 void VM_drawpic(void)
2979 {
2980         const char *picname;
2981         float *size, *pos, *rgb;
2982         int flag;
2983
2984         VM_SAFEPARMCOUNT(6,VM_drawpic);
2985
2986         picname = PRVM_G_STRING(OFS_PARM1);
2987         VM_CheckEmptyString (picname);
2988
2989         // is pic cached ? no function yet for that
2990         if(!1)
2991         {
2992                 PRVM_G_FLOAT(OFS_RETURN) = -4;
2993                 VM_Warning("VM_drawpic: %s: %s not cached !\n", PRVM_NAME, picname);
2994                 return;
2995         }
2996
2997         pos = PRVM_G_VECTOR(OFS_PARM0);
2998         size = PRVM_G_VECTOR(OFS_PARM2);
2999         rgb = PRVM_G_VECTOR(OFS_PARM3);
3000         flag = (int) PRVM_G_FLOAT(OFS_PARM5);
3001
3002         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
3003         {
3004                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3005                 VM_Warning("VM_drawpic: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3006                 return;
3007         }
3008
3009         if(pos[2] || size[2])
3010                 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")));
3011
3012         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);
3013         PRVM_G_FLOAT(OFS_RETURN) = 1;
3014 }
3015 /*
3016 =========
3017 VM_drawsubpic
3018
3019 float   drawsubpic(vector position, vector size, string pic, vector srcPos, vector srcSize, vector rgb, float alpha, float flag)
3020
3021 =========
3022 */
3023 void VM_drawsubpic(void)
3024 {
3025         const char *picname;
3026         float *size, *pos, *rgb, *srcPos, *srcSize, alpha;
3027         int flag;
3028
3029         VM_SAFEPARMCOUNT(8,VM_drawsubpic);
3030
3031         picname = PRVM_G_STRING(OFS_PARM2);
3032         VM_CheckEmptyString (picname);
3033
3034         // is pic cached ? no function yet for that
3035         if(!1)
3036         {
3037                 PRVM_G_FLOAT(OFS_RETURN) = -4;
3038                 VM_Warning("VM_drawsubpic: %s: %s not cached !\n", PRVM_NAME, picname);
3039                 return;
3040         }
3041
3042         pos = PRVM_G_VECTOR(OFS_PARM0);
3043         size = PRVM_G_VECTOR(OFS_PARM1);
3044         srcPos = PRVM_G_VECTOR(OFS_PARM3);
3045         srcSize = PRVM_G_VECTOR(OFS_PARM4);
3046         rgb = PRVM_G_VECTOR(OFS_PARM5);
3047         alpha = PRVM_G_FLOAT(OFS_PARM6);
3048         flag = (int) PRVM_G_FLOAT(OFS_PARM7);
3049
3050         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
3051         {
3052                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3053                 VM_Warning("VM_drawsubpic: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3054                 return;
3055         }
3056
3057         if(pos[2] || size[2])
3058                 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")));
3059
3060         DrawQ_SuperPic(pos[0], pos[1], Draw_CachePic (picname),
3061                 size[0], size[1],
3062                 srcPos[0],              srcPos[1],              rgb[0], rgb[1], rgb[2], alpha,
3063                 srcPos[0] + srcSize[0], srcPos[1],              rgb[0], rgb[1], rgb[2], alpha,
3064                 srcPos[0],              srcPos[1] + srcSize[1], rgb[0], rgb[1], rgb[2], alpha,
3065                 srcPos[0] + srcSize[0], srcPos[1] + srcSize[1], rgb[0], rgb[1], rgb[2], alpha,
3066                 flag);
3067         PRVM_G_FLOAT(OFS_RETURN) = 1;
3068 }
3069
3070 /*
3071 =========
3072 VM_drawfill
3073
3074 float drawfill(vector position, vector size, vector rgb, float alpha, float flag)
3075 =========
3076 */
3077 void VM_drawfill(void)
3078 {
3079         float *size, *pos, *rgb;
3080         int flag;
3081
3082         VM_SAFEPARMCOUNT(5,VM_drawfill);
3083
3084
3085         pos = PRVM_G_VECTOR(OFS_PARM0);
3086         size = PRVM_G_VECTOR(OFS_PARM1);
3087         rgb = PRVM_G_VECTOR(OFS_PARM2);
3088         flag = (int) PRVM_G_FLOAT(OFS_PARM4);
3089
3090         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
3091         {
3092                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3093                 VM_Warning("VM_drawfill: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3094                 return;
3095         }
3096
3097         if(pos[2] || size[2])
3098                 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")));
3099
3100         DrawQ_Fill(pos[0], pos[1], size[0], size[1], rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM3), flag);
3101         PRVM_G_FLOAT(OFS_RETURN) = 1;
3102 }
3103
3104 /*
3105 =========
3106 VM_drawsetcliparea
3107
3108 drawsetcliparea(float x, float y, float width, float height)
3109 =========
3110 */
3111 void VM_drawsetcliparea(void)
3112 {
3113         float x,y,w,h;
3114         VM_SAFEPARMCOUNT(4,VM_drawsetcliparea);
3115
3116         x = bound(0, PRVM_G_FLOAT(OFS_PARM0), vid_conwidth.integer);
3117         y = bound(0, PRVM_G_FLOAT(OFS_PARM1), vid_conheight.integer);
3118         w = bound(0, PRVM_G_FLOAT(OFS_PARM2) + PRVM_G_FLOAT(OFS_PARM0) - x, (vid_conwidth.integer  - x));
3119         h = bound(0, PRVM_G_FLOAT(OFS_PARM3) + PRVM_G_FLOAT(OFS_PARM1) - y, (vid_conheight.integer - y));
3120
3121         DrawQ_SetClipArea(x, y, w, h);
3122 }
3123
3124 /*
3125 =========
3126 VM_drawresetcliparea
3127
3128 drawresetcliparea()
3129 =========
3130 */
3131 void VM_drawresetcliparea(void)
3132 {
3133         VM_SAFEPARMCOUNT(0,VM_drawresetcliparea);
3134
3135         DrawQ_ResetClipArea();
3136 }
3137
3138 /*
3139 =========
3140 VM_getimagesize
3141
3142 vector  getimagesize(string pic)
3143 =========
3144 */
3145 void VM_getimagesize(void)
3146 {
3147         const char *p;
3148         cachepic_t *pic;
3149
3150         VM_SAFEPARMCOUNT(1,VM_getimagesize);
3151
3152         p = PRVM_G_STRING(OFS_PARM0);
3153         VM_CheckEmptyString (p);
3154
3155         pic = Draw_CachePic_Flags (p, CACHEPICFLAG_NOTPERSISTENT);
3156
3157         PRVM_G_VECTOR(OFS_RETURN)[0] = pic->width;
3158         PRVM_G_VECTOR(OFS_RETURN)[1] = pic->height;
3159         PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
3160 }
3161
3162 /*
3163 =========
3164 VM_keynumtostring
3165
3166 string keynumtostring(float keynum)
3167 =========
3168 */
3169 void VM_keynumtostring (void)
3170 {
3171         VM_SAFEPARMCOUNT(1, VM_keynumtostring);
3172
3173         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(Key_KeynumToString((int)PRVM_G_FLOAT(OFS_PARM0)));
3174 }
3175
3176 /*
3177 =========
3178 VM_stringtokeynum
3179
3180 float stringtokeynum(string key)
3181 =========
3182 */
3183 void VM_stringtokeynum (void)
3184 {
3185         VM_SAFEPARMCOUNT( 1, VM_keynumtostring );
3186
3187         PRVM_G_INT(OFS_RETURN) = Key_StringToKeynum(PRVM_G_STRING(OFS_PARM0));
3188 }
3189
3190 // CL_Video interface functions
3191
3192 /*
3193 ========================
3194 VM_cin_open
3195
3196 float cin_open(string file, string name)
3197 ========================
3198 */
3199 void VM_cin_open( void )
3200 {
3201         const char *file;
3202         const char *name;
3203
3204         VM_SAFEPARMCOUNT( 2, VM_cin_open );
3205
3206         file = PRVM_G_STRING( OFS_PARM0 );
3207         name = PRVM_G_STRING( OFS_PARM1 );
3208
3209         VM_CheckEmptyString( file );
3210     VM_CheckEmptyString( name );
3211
3212         if( CL_OpenVideo( file, name, MENUOWNER ) )
3213                 PRVM_G_FLOAT( OFS_RETURN ) = 1;
3214         else
3215                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
3216 }
3217
3218 /*
3219 ========================
3220 VM_cin_close
3221
3222 void cin_close(string name)
3223 ========================
3224 */
3225 void VM_cin_close( void )
3226 {
3227         const char *name;
3228
3229         VM_SAFEPARMCOUNT( 1, VM_cin_close );
3230
3231         name = PRVM_G_STRING( OFS_PARM0 );
3232         VM_CheckEmptyString( name );
3233
3234         CL_CloseVideo( CL_GetVideoByName( name ) );
3235 }
3236
3237 /*
3238 ========================
3239 VM_cin_setstate
3240 void cin_setstate(string name, float type)
3241 ========================
3242 */
3243 void VM_cin_setstate( void )
3244 {
3245         const char *name;
3246         clvideostate_t  state;
3247         clvideo_t               *video;
3248
3249         VM_SAFEPARMCOUNT( 2, VM_cin_netstate );
3250
3251         name = PRVM_G_STRING( OFS_PARM0 );
3252         VM_CheckEmptyString( name );
3253
3254         state = (clvideostate_t)((int)PRVM_G_FLOAT( OFS_PARM1 ));
3255
3256         video = CL_GetVideoByName( name );
3257         if( video && state > CLVIDEO_UNUSED && state < CLVIDEO_STATECOUNT )
3258                 CL_SetVideoState( video, state );
3259 }
3260
3261 /*
3262 ========================
3263 VM_cin_getstate
3264
3265 float cin_getstate(string name)
3266 ========================
3267 */
3268 void VM_cin_getstate( void )
3269 {
3270         const char *name;
3271         clvideo_t               *video;
3272
3273         VM_SAFEPARMCOUNT( 1, VM_cin_getstate );
3274
3275         name = PRVM_G_STRING( OFS_PARM0 );
3276         VM_CheckEmptyString( name );
3277
3278         video = CL_GetVideoByName( name );
3279         if( video )
3280                 PRVM_G_FLOAT( OFS_RETURN ) = (int)video->state;
3281         else
3282                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
3283 }
3284
3285 /*
3286 ========================
3287 VM_cin_restart
3288
3289 void cin_restart(string name)
3290 ========================
3291 */
3292 void VM_cin_restart( void )
3293 {
3294         const char *name;
3295         clvideo_t               *video;
3296
3297         VM_SAFEPARMCOUNT( 1, VM_cin_restart );
3298
3299         name = PRVM_G_STRING( OFS_PARM0 );
3300         VM_CheckEmptyString( name );
3301
3302         video = CL_GetVideoByName( name );
3303         if( video )
3304                 CL_RestartVideo( video );
3305 }
3306
3307 /*
3308 ========================
3309 VM_Gecko_Init
3310 ========================
3311 */
3312 void VM_Gecko_Init( void ) {
3313         // the prog struct is memset to 0 by Initprog? [12/6/2007 Black]
3314         // FIXME: remove the other _Init functions then, too? [12/6/2007 Black]
3315 }
3316
3317 /*
3318 ========================
3319 VM_Gecko_Destroy
3320 ========================
3321 */
3322 void VM_Gecko_Destroy( void ) {
3323         int i;
3324         for( i = 0 ; i < PRVM_MAX_GECKOINSTANCES ; i++ ) {
3325                 clgecko_t **instance = &prog->opengeckoinstances[ i ];
3326                 if( *instance ) {
3327                         CL_Gecko_DestroyBrowser( *instance );
3328                 }
3329                 *instance = NULL;
3330         }
3331 }
3332
3333 /*
3334 ========================
3335 VM_gecko_create
3336
3337 float[bool] gecko_create( string name )
3338 ========================
3339 */
3340 void VM_gecko_create( void ) {
3341         const char *name;
3342         int i;
3343         clgecko_t *instance;
3344         
3345         VM_SAFEPARMCOUNT( 1, VM_gecko_create );
3346
3347         name = PRVM_G_STRING( OFS_PARM0 );
3348         VM_CheckEmptyString( name );
3349
3350         // find an empty slot for this gecko browser..
3351         for( i = 0 ; i < PRVM_MAX_GECKOINSTANCES ; i++ ) {
3352                 if( prog->opengeckoinstances[ i ] == NULL ) {
3353                         break;
3354                 }
3355         }
3356         if( i == PRVM_MAX_GECKOINSTANCES ) {
3357                         VM_Warning("VM_gecko_create: %s ran out of gecko handles (%i)\n", PRVM_NAME, PRVM_MAX_GECKOINSTANCES);
3358                         PRVM_G_FLOAT( OFS_RETURN ) = 0;
3359                         return;
3360         }
3361
3362         instance = prog->opengeckoinstances[ i ] = CL_Gecko_CreateBrowser( name, PRVM_GetProgNr() );
3363    if( !instance ) {
3364                 // TODO: error handling [12/3/2007 Black]
3365                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
3366                 return;
3367         }
3368         PRVM_G_FLOAT( OFS_RETURN ) = 1;
3369 }
3370
3371 /*
3372 ========================
3373 VM_gecko_destroy
3374
3375 void gecko_destroy( string name )
3376 ========================
3377 */
3378 void VM_gecko_destroy( void ) {
3379         const char *name;
3380         clgecko_t *instance;
3381
3382         VM_SAFEPARMCOUNT( 1, VM_gecko_destroy );
3383
3384         name = PRVM_G_STRING( OFS_PARM0 );
3385         VM_CheckEmptyString( name );
3386         instance = CL_Gecko_FindBrowser( name );
3387         if( !instance ) {
3388                 return;
3389         }
3390         CL_Gecko_DestroyBrowser( instance );
3391 }
3392
3393 /*
3394 ========================
3395 VM_gecko_navigate
3396
3397 void gecko_navigate( string name, string URI )
3398 ========================
3399 */
3400 void VM_gecko_navigate( void ) {
3401         const char *name;
3402         const char *URI;
3403         clgecko_t *instance;
3404
3405         VM_SAFEPARMCOUNT( 2, VM_gecko_navigate );
3406
3407         name = PRVM_G_STRING( OFS_PARM0 );
3408         URI = PRVM_G_STRING( OFS_PARM1 );
3409         VM_CheckEmptyString( name );
3410         VM_CheckEmptyString( URI );
3411
3412    instance = CL_Gecko_FindBrowser( name );
3413         if( !instance ) {
3414                 return;
3415         }
3416         CL_Gecko_NavigateToURI( instance, URI );
3417 }
3418
3419 /*
3420 ========================
3421 VM_gecko_keyevent
3422
3423 float[bool] gecko_keyevent( string name, float key, float eventtype ) 
3424 ========================
3425 */
3426 void VM_gecko_keyevent( void ) {
3427         const char *name;
3428         unsigned int key;
3429         clgecko_buttoneventtype_t eventtype;
3430         clgecko_t *instance;
3431
3432         VM_SAFEPARMCOUNT( 3, VM_gecko_keyevent );
3433
3434         name = PRVM_G_STRING( OFS_PARM0 );
3435         VM_CheckEmptyString( name );
3436         key = (unsigned int) PRVM_G_FLOAT( OFS_PARM1 );
3437         switch( (unsigned int) PRVM_G_FLOAT( OFS_PARM2 ) ) {
3438         case 0:
3439                 eventtype = CLG_BET_DOWN;
3440                 break;
3441         case 1:
3442                 eventtype = CLG_BET_UP;
3443                 break;
3444         case 2:
3445                 eventtype = CLG_BET_PRESS;
3446                 break;
3447         case 3:
3448                 eventtype = CLG_BET_DOUBLECLICK;
3449                 break;
3450         default:
3451                 // TODO: console printf? [12/3/2007 Black]
3452                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
3453                 return;
3454         }
3455
3456         instance = CL_Gecko_FindBrowser( name );
3457         if( !instance ) {
3458                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
3459                 return;
3460         }
3461
3462         PRVM_G_FLOAT( OFS_RETURN ) = (CL_Gecko_Event_Key( instance, key, eventtype ) == true);
3463 }
3464
3465 /*
3466 ========================
3467 VM_gecko_movemouse
3468
3469 void gecko_mousemove( string name, float x, float y )
3470 ========================
3471 */
3472 void VM_gecko_movemouse( void ) {
3473         const char *name;
3474         float x, y;
3475         clgecko_t *instance;
3476
3477         VM_SAFEPARMCOUNT( 3, VM_gecko_movemouse );
3478
3479         name = PRVM_G_STRING( OFS_PARM0 );
3480         VM_CheckEmptyString( name );
3481         x = PRVM_G_FLOAT( OFS_PARM1 );
3482         y = PRVM_G_FLOAT( OFS_PARM2 );
3483         
3484         instance = CL_Gecko_FindBrowser( name );
3485         if( !instance ) {
3486                 return;
3487         }
3488         CL_Gecko_Event_CursorMove( instance, x, y );
3489 }
3490
3491
3492 /*
3493 ========================
3494 VM_gecko_resize
3495
3496 void gecko_resize( string name, float w, float h )
3497 ========================
3498 */
3499 void VM_gecko_resize( void ) {
3500         const char *name;
3501         float w, h;
3502         clgecko_t *instance;
3503
3504         VM_SAFEPARMCOUNT( 3, VM_gecko_movemouse );
3505
3506         name = PRVM_G_STRING( OFS_PARM0 );
3507         VM_CheckEmptyString( name );
3508         w = PRVM_G_FLOAT( OFS_PARM1 );
3509         h = PRVM_G_FLOAT( OFS_PARM2 );
3510         
3511         instance = CL_Gecko_FindBrowser( name );
3512         if( !instance ) {
3513                 return;
3514         }
3515         CL_Gecko_Resize( instance, w, h );
3516 }
3517
3518
3519 /*
3520 ========================
3521 VM_gecko_get_texture_extent
3522
3523 vector gecko_get_texture_extent( string name )
3524 ========================
3525 */
3526 void VM_gecko_get_texture_extent( void ) {
3527         const char *name;
3528         clgecko_t *instance;
3529
3530         VM_SAFEPARMCOUNT( 1, VM_gecko_movemouse );
3531
3532         name = PRVM_G_STRING( OFS_PARM0 );
3533         VM_CheckEmptyString( name );
3534         
3535         PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
3536         instance = CL_Gecko_FindBrowser( name );
3537         if( !instance ) {
3538                 PRVM_G_VECTOR(OFS_RETURN)[0] = 0;
3539                 PRVM_G_VECTOR(OFS_RETURN)[1] = 0;
3540                 return;
3541         }
3542         CL_Gecko_GetTextureExtent( instance, 
3543                 PRVM_G_VECTOR(OFS_RETURN), PRVM_G_VECTOR(OFS_RETURN)+1 );
3544 }
3545
3546
3547
3548 /*
3549 ==============
3550 VM_makevectors
3551
3552 Writes new values for v_forward, v_up, and v_right based on angles
3553 void makevectors(vector angle)
3554 ==============
3555 */
3556 void VM_makevectors (void)
3557 {
3558         prvm_eval_t *valforward, *valright, *valup;
3559         valforward = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_forward);
3560         valright = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_right);
3561         valup = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_up);
3562         if (!valforward || !valright || !valup)
3563         {
3564                 VM_Warning("makevectors: could not find v_forward, v_right, or v_up global variables\n");
3565                 return;
3566         }
3567         VM_SAFEPARMCOUNT(1, VM_makevectors);
3568         AngleVectors (PRVM_G_VECTOR(OFS_PARM0), valforward->vector, valright->vector, valup->vector);
3569 }
3570
3571 /*
3572 ==============
3573 VM_vectorvectors
3574
3575 Writes new values for v_forward, v_up, and v_right based on the given forward vector
3576 vectorvectors(vector)
3577 ==============
3578 */
3579 void VM_vectorvectors (void)
3580 {
3581         prvm_eval_t *valforward, *valright, *valup;
3582         valforward = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_forward);
3583         valright = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_right);
3584         valup = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.v_up);
3585         if (!valforward || !valright || !valup)
3586         {
3587                 VM_Warning("vectorvectors: could not find v_forward, v_right, or v_up global variables\n");
3588                 return;
3589         }
3590         VM_SAFEPARMCOUNT(1, VM_vectorvectors);
3591         VectorNormalize2(PRVM_G_VECTOR(OFS_PARM0), valforward->vector);
3592         VectorVectors(valforward->vector, valright->vector, valup->vector);
3593 }
3594
3595 /*
3596 ========================
3597 VM_drawline
3598
3599 void drawline(float width, vector pos1, vector pos2, vector rgb, float alpha, float flags)
3600 ========================
3601 */
3602 void VM_drawline (void)
3603 {
3604         float   *c1, *c2, *rgb;
3605         float   alpha, width;
3606         unsigned char   flags;
3607
3608         VM_SAFEPARMCOUNT(6, VM_drawline);
3609         width   = PRVM_G_FLOAT(OFS_PARM0);
3610         c1              = PRVM_G_VECTOR(OFS_PARM1);
3611         c2              = PRVM_G_VECTOR(OFS_PARM2);
3612         rgb             = PRVM_G_VECTOR(OFS_PARM3);
3613         alpha   = PRVM_G_FLOAT(OFS_PARM4);
3614         flags   = (int)PRVM_G_FLOAT(OFS_PARM5);
3615         DrawQ_Line(width, c1[0], c1[1], c2[0], c2[1], rgb[0], rgb[1], rgb[2], alpha, flags);
3616 }
3617
3618 // float(float number, float quantity) bitshift (EXT_BITSHIFT)
3619 void VM_bitshift (void)
3620 {
3621         int n1, n2;
3622         VM_SAFEPARMCOUNT(2, VM_bitshift);
3623
3624         n1 = (int)fabs((int)PRVM_G_FLOAT(OFS_PARM0));
3625         n2 = (int)PRVM_G_FLOAT(OFS_PARM1);
3626         if(!n1)
3627                 PRVM_G_FLOAT(OFS_RETURN) = n1;
3628         else
3629         if(n2 < 0)
3630                 PRVM_G_FLOAT(OFS_RETURN) = (n1 >> -n2);
3631         else
3632                 PRVM_G_FLOAT(OFS_RETURN) = (n1 << n2);
3633 }
3634
3635 ////////////////////////////////////////
3636 // AltString functions
3637 ////////////////////////////////////////
3638
3639 /*
3640 ========================
3641 VM_altstr_count
3642
3643 float altstr_count(string)
3644 ========================
3645 */
3646 void VM_altstr_count( void )
3647 {
3648         const char *altstr, *pos;
3649         int     count;
3650
3651         VM_SAFEPARMCOUNT( 1, VM_altstr_count );
3652
3653         altstr = PRVM_G_STRING( OFS_PARM0 );
3654         //VM_CheckEmptyString( altstr );
3655
3656         for( count = 0, pos = altstr ; *pos ; pos++ ) {
3657                 if( *pos == '\\' ) {
3658                         if( !*++pos ) {
3659                                 break;
3660                         }
3661                 } else if( *pos == '\'' ) {
3662                         count++;
3663                 }
3664         }
3665
3666         PRVM_G_FLOAT( OFS_RETURN ) = (float) (count / 2);
3667 }
3668
3669 /*
3670 ========================
3671 VM_altstr_prepare
3672
3673 string altstr_prepare(string)
3674 ========================
3675 */
3676 void VM_altstr_prepare( void )
3677 {
3678         char *out;
3679         const char *instr, *in;
3680         int size;
3681         char outstr[VM_STRINGTEMP_LENGTH];
3682
3683         VM_SAFEPARMCOUNT( 1, VM_altstr_prepare );
3684
3685         instr = PRVM_G_STRING( OFS_PARM0 );
3686
3687         for( out = outstr, in = instr, size = sizeof(outstr) - 1 ; size && *in ; size--, in++, out++ )
3688                 if( *in == '\'' ) {
3689                         *out++ = '\\';
3690                         *out = '\'';
3691                         size--;
3692                 } else
3693                         *out = *in;
3694         *out = 0;
3695
3696         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
3697 }
3698
3699 /*
3700 ========================
3701 VM_altstr_get
3702
3703 string altstr_get(string, float)
3704 ========================
3705 */
3706 void VM_altstr_get( void )
3707 {
3708         const char *altstr, *pos;
3709         char *out;
3710         int count, size;
3711         char outstr[VM_STRINGTEMP_LENGTH];
3712
3713         VM_SAFEPARMCOUNT( 2, VM_altstr_get );
3714
3715         altstr = PRVM_G_STRING( OFS_PARM0 );
3716
3717         count = (int)PRVM_G_FLOAT( OFS_PARM1 );
3718         count = count * 2 + 1;
3719
3720         for( pos = altstr ; *pos && count ; pos++ )
3721                 if( *pos == '\\' ) {
3722                         if( !*++pos )
3723                                 break;
3724                 } else if( *pos == '\'' )
3725                         count--;
3726
3727         if( !*pos ) {
3728                 PRVM_G_INT( OFS_RETURN ) = 0;
3729                 return;
3730         }
3731
3732         for( out = outstr, size = sizeof(outstr) - 1 ; size && *pos ; size--, pos++, out++ )
3733                 if( *pos == '\\' ) {
3734                         if( !*++pos )
3735                                 break;
3736                         *out = *pos;
3737                         size--;
3738                 } else if( *pos == '\'' )
3739                         break;
3740                 else
3741                         *out = *pos;
3742
3743         *out = 0;
3744         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
3745 }
3746
3747 /*
3748 ========================
3749 VM_altstr_set
3750
3751 string altstr_set(string altstr, float num, string set)
3752 ========================
3753 */
3754 void VM_altstr_set( void )
3755 {
3756     int num;
3757         const char *altstr, *str;
3758         const char *in;
3759         char *out;
3760         char outstr[VM_STRINGTEMP_LENGTH];
3761
3762         VM_SAFEPARMCOUNT( 3, VM_altstr_set );
3763
3764         altstr = PRVM_G_STRING( OFS_PARM0 );
3765
3766         num = (int)PRVM_G_FLOAT( OFS_PARM1 );
3767
3768         str = PRVM_G_STRING( OFS_PARM2 );
3769
3770         out = outstr;
3771         for( num = num * 2 + 1, in = altstr; *in && num; *out++ = *in++ )
3772                 if( *in == '\\' ) {
3773                         if( !*++in ) {
3774                                 break;
3775                         }
3776                 } else if( *in == '\'' ) {
3777                         num--;
3778                 }
3779
3780         // copy set in
3781         for( ; *str; *out++ = *str++ );
3782         // now jump over the old content
3783         for( ; *in ; in++ )
3784                 if( *in == '\'' || (*in == '\\' && !*++in) )
3785                         break;
3786
3787         strlcpy(out, in, outstr + sizeof(outstr) - out);
3788         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
3789 }
3790
3791 /*
3792 ========================
3793 VM_altstr_ins
3794 insert after num
3795 string  altstr_ins(string altstr, float num, string set)
3796 ========================
3797 */
3798 void VM_altstr_ins(void)
3799 {
3800         int num;
3801         const char *setstr;
3802         const char *set;
3803         const char *instr;
3804         const char *in;
3805         char *out;
3806         char outstr[VM_STRINGTEMP_LENGTH];
3807
3808         VM_SAFEPARMCOUNT(3, VM_altstr_ins);
3809
3810         in = instr = PRVM_G_STRING( OFS_PARM0 );
3811         num = (int)PRVM_G_FLOAT( OFS_PARM1 );
3812         set = setstr = PRVM_G_STRING( OFS_PARM2 );
3813
3814         out = outstr;
3815         for( num = num * 2 + 2 ; *in && num > 0 ; *out++ = *in++ )
3816                 if( *in == '\\' ) {
3817                         if( !*++in ) {
3818                                 break;
3819                         }
3820                 } else if( *in == '\'' ) {
3821                         num--;
3822                 }
3823
3824         *out++ = '\'';
3825         for( ; *set ; *out++ = *set++ );
3826         *out++ = '\'';
3827
3828         strlcpy(out, in, outstr + sizeof(outstr) - out);
3829         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
3830 }
3831
3832
3833 ////////////////////////////////////////
3834 // BufString functions
3835 ////////////////////////////////////////
3836 //[515]: string buffers support
3837
3838 static size_t stringbuffers_sortlength;
3839
3840 static void BufStr_Expand(prvm_stringbuffer_t *stringbuffer, int strindex)
3841 {
3842         if (stringbuffer->max_strings <= strindex)
3843         {
3844                 char **oldstrings = stringbuffer->strings;
3845                 stringbuffer->max_strings = max(stringbuffer->max_strings * 2, 128);
3846                 while (stringbuffer->max_strings <= strindex)
3847                         stringbuffer->max_strings *= 2;
3848                 stringbuffer->strings = Mem_Alloc(prog->progs_mempool, stringbuffer->max_strings * sizeof(stringbuffer->strings[0]));
3849                 if (stringbuffer->num_strings > 0)
3850                         memcpy(stringbuffer->strings, oldstrings, stringbuffer->num_strings * sizeof(stringbuffer->strings[0]));
3851                 if (oldstrings)
3852                         Mem_Free(oldstrings);
3853         }
3854 }
3855
3856 static void BufStr_Shrink(prvm_stringbuffer_t *stringbuffer)
3857 {
3858         // reduce num_strings if there are empty string slots at the end
3859         while (stringbuffer->num_strings > 0 && stringbuffer->strings[stringbuffer->num_strings - 1] == NULL)
3860                 stringbuffer->num_strings--;
3861
3862         // if empty, free the string pointer array
3863         if (stringbuffer->num_strings == 0)
3864         {
3865                 stringbuffer->max_strings = 0;
3866                 if (stringbuffer->strings)
3867                         Mem_Free(stringbuffer->strings);
3868                 stringbuffer->strings = NULL;
3869         }
3870 }
3871
3872 static int BufStr_SortStringsUP (const void *in1, const void *in2)
3873 {
3874         const char *a, *b;
3875         a = *((const char **) in1);
3876         b = *((const char **) in2);
3877         if(!a[0])       return 1;
3878         if(!b[0])       return -1;
3879         return strncmp(a, b, stringbuffers_sortlength);
3880 }
3881
3882 static int BufStr_SortStringsDOWN (const void *in1, const void *in2)
3883 {
3884         const char *a, *b;
3885         a = *((const char **) in1);
3886         b = *((const char **) in2);
3887         if(!a[0])       return 1;
3888         if(!b[0])       return -1;
3889         return strncmp(b, a, stringbuffers_sortlength);
3890 }
3891
3892 /*
3893 ========================
3894 VM_buf_create
3895 creates new buffer, and returns it's index, returns -1 if failed
3896 float buf_create(void) = #460;
3897 ========================
3898 */
3899 void VM_buf_create (void)
3900 {
3901         prvm_stringbuffer_t *stringbuffer;
3902         int i;
3903         VM_SAFEPARMCOUNT(0, VM_buf_create);
3904         stringbuffer = Mem_ExpandableArray_AllocRecord(&prog->stringbuffersarray);
3905         for (i = 0;stringbuffer != Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, i);i++);
3906         stringbuffer->origin = PRVM_AllocationOrigin();
3907         PRVM_G_FLOAT(OFS_RETURN) = i;
3908 }
3909
3910 /*
3911 ========================
3912 VM_buf_del
3913 deletes buffer and all strings in it
3914 void buf_del(float bufhandle) = #461;
3915 ========================
3916 */
3917 void VM_buf_del (void)
3918 {
3919         prvm_stringbuffer_t *stringbuffer;
3920         VM_SAFEPARMCOUNT(1, VM_buf_del);
3921         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
3922         if (stringbuffer)
3923         {
3924                 int i;
3925                 for (i = 0;i < stringbuffer->num_strings;i++)
3926                         if (stringbuffer->strings[i])
3927                                 Mem_Free(stringbuffer->strings[i]);
3928                 if (stringbuffer->strings)
3929                         Mem_Free(stringbuffer->strings);
3930                 if(stringbuffer->origin)
3931                         PRVM_Free((char *)stringbuffer->origin);
3932                 Mem_ExpandableArray_FreeRecord(&prog->stringbuffersarray, stringbuffer);
3933         }
3934         else
3935         {
3936                 VM_Warning("VM_buf_del: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3937                 return;
3938         }
3939 }
3940
3941 /*
3942 ========================
3943 VM_buf_getsize
3944 how many strings are stored in buffer
3945 float buf_getsize(float bufhandle) = #462;
3946 ========================
3947 */
3948 void VM_buf_getsize (void)
3949 {
3950         prvm_stringbuffer_t *stringbuffer;
3951         VM_SAFEPARMCOUNT(1, VM_buf_getsize);
3952
3953         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
3954         if(!stringbuffer)
3955         {
3956                 PRVM_G_FLOAT(OFS_RETURN) = -1;
3957                 VM_Warning("VM_buf_getsize: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3958                 return;
3959         }
3960         else
3961                 PRVM_G_FLOAT(OFS_RETURN) = stringbuffer->num_strings;
3962 }
3963
3964 /*
3965 ========================
3966 VM_buf_copy
3967 copy all content from one buffer to another, make sure it exists
3968 void buf_copy(float bufhandle_from, float bufhandle_to) = #463;
3969 ========================
3970 */
3971 void VM_buf_copy (void)
3972 {
3973         prvm_stringbuffer_t *srcstringbuffer, *dststringbuffer;
3974         int i;
3975         VM_SAFEPARMCOUNT(2, VM_buf_copy);
3976
3977         srcstringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
3978         if(!srcstringbuffer)
3979         {
3980                 VM_Warning("VM_buf_copy: invalid source buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
3981                 return;
3982         }
3983         i = (int)PRVM_G_FLOAT(OFS_PARM1);
3984         if(i == (int)PRVM_G_FLOAT(OFS_PARM0))
3985         {
3986                 VM_Warning("VM_buf_copy: source == destination (%i) in %s\n", i, PRVM_NAME);
3987                 return;
3988         }
3989         dststringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
3990         if(!dststringbuffer)
3991         {
3992                 VM_Warning("VM_buf_copy: invalid destination buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM1), PRVM_NAME);
3993                 return;
3994         }
3995
3996         for (i = 0;i < dststringbuffer->num_strings;i++)
3997                 if (dststringbuffer->strings[i])
3998                         Mem_Free(dststringbuffer->strings[i]);
3999         if (dststringbuffer->strings)
4000                 Mem_Free(dststringbuffer->strings);
4001         *dststringbuffer = *srcstringbuffer;
4002         if (dststringbuffer->max_strings)
4003                 dststringbuffer->strings = (char **)Mem_Alloc(prog->progs_mempool, sizeof(dststringbuffer->strings[0]) * dststringbuffer->max_strings);
4004
4005         for (i = 0;i < dststringbuffer->num_strings;i++)
4006         {
4007                 if (srcstringbuffer->strings[i])
4008                 {
4009                         size_t stringlen;
4010                         stringlen = strlen(srcstringbuffer->strings[i]) + 1;
4011                         dststringbuffer->strings[i] = (char *)Mem_Alloc(prog->progs_mempool, stringlen);
4012                         memcpy(dststringbuffer->strings[i], srcstringbuffer->strings[i], stringlen);
4013                 }
4014         }
4015 }
4016
4017 /*
4018 ========================
4019 VM_buf_sort
4020 sort buffer by beginnings of strings (cmplength defaults it's length)
4021 "backward == TRUE" means that sorting goes upside-down
4022 void buf_sort(float bufhandle, float cmplength, float backward) = #464;
4023 ========================
4024 */
4025 void VM_buf_sort (void)
4026 {
4027         prvm_stringbuffer_t *stringbuffer;
4028         VM_SAFEPARMCOUNT(3, VM_buf_sort);
4029
4030         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4031         if(!stringbuffer)
4032         {
4033                 VM_Warning("VM_buf_sort: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4034                 return;
4035         }
4036         if(stringbuffer->num_strings <= 0)
4037         {
4038                 VM_Warning("VM_buf_sort: tried to sort empty buffer %i in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4039                 return;
4040         }
4041         stringbuffers_sortlength = (int)PRVM_G_FLOAT(OFS_PARM1);
4042         if(stringbuffers_sortlength <= 0)
4043                 stringbuffers_sortlength = 0x7FFFFFFF;
4044
4045         if(!PRVM_G_FLOAT(OFS_PARM2))
4046                 qsort(stringbuffer->strings, stringbuffer->num_strings, sizeof(char*), BufStr_SortStringsUP);
4047         else
4048                 qsort(stringbuffer->strings, stringbuffer->num_strings, sizeof(char*), BufStr_SortStringsDOWN);
4049
4050         BufStr_Shrink(stringbuffer);
4051 }
4052
4053 /*
4054 ========================
4055 VM_buf_implode
4056 concantenates all buffer string into one with "glue" separator and returns it as tempstring
4057 string buf_implode(float bufhandle, string glue) = #465;
4058 ========================
4059 */
4060 void VM_buf_implode (void)
4061 {
4062         prvm_stringbuffer_t *stringbuffer;
4063         char                    k[VM_STRINGTEMP_LENGTH];
4064         const char              *sep;
4065         int                             i;
4066         size_t                  l;
4067         VM_SAFEPARMCOUNT(2, VM_buf_implode);
4068
4069         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4070         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
4071         if(!stringbuffer)
4072         {
4073                 VM_Warning("VM_buf_implode: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4074                 return;
4075         }
4076         if(!stringbuffer->num_strings)
4077                 return;
4078         sep = PRVM_G_STRING(OFS_PARM1);
4079         k[0] = 0;
4080         for(l = i = 0;i < stringbuffer->num_strings;i++)
4081         {
4082                 if(stringbuffer->strings[i])
4083                 {
4084                         l += (i > 0 ? strlen(sep) : 0) + strlen(stringbuffer->strings[i]);
4085                         if (l >= sizeof(k) - 1)
4086                                 break;
4087                         strlcat(k, sep, sizeof(k));
4088                         strlcat(k, stringbuffer->strings[i], sizeof(k));
4089                 }
4090         }
4091         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(k);
4092 }
4093
4094 /*
4095 ========================
4096 VM_bufstr_get
4097 get a string from buffer, returns tempstring, dont str_unzone it!
4098 string bufstr_get(float bufhandle, float string_index) = #465;
4099 ========================
4100 */
4101 void VM_bufstr_get (void)
4102 {
4103         prvm_stringbuffer_t *stringbuffer;
4104         int                             strindex;
4105         VM_SAFEPARMCOUNT(2, VM_bufstr_get);
4106
4107         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
4108         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4109         if(!stringbuffer)
4110         {
4111                 VM_Warning("VM_bufstr_get: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4112                 return;
4113         }
4114         strindex = (int)PRVM_G_FLOAT(OFS_PARM1);
4115         if (strindex < 0)
4116         {
4117                 VM_Warning("VM_bufstr_get: invalid string index %i used in %s\n", strindex, PRVM_NAME);
4118                 return;
4119         }
4120         if (strindex < stringbuffer->num_strings && stringbuffer->strings[strindex])
4121                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(stringbuffer->strings[strindex]);
4122 }
4123
4124 /*
4125 ========================
4126 VM_bufstr_set
4127 copies a string into selected slot of buffer
4128 void bufstr_set(float bufhandle, float string_index, string str) = #466;
4129 ========================
4130 */
4131 void VM_bufstr_set (void)
4132 {
4133         int                             strindex;
4134         prvm_stringbuffer_t *stringbuffer;
4135         const char              *news;
4136
4137         VM_SAFEPARMCOUNT(3, VM_bufstr_set);
4138
4139         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4140         if(!stringbuffer)
4141         {
4142                 VM_Warning("VM_bufstr_set: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4143                 return;
4144         }
4145         strindex = (int)PRVM_G_FLOAT(OFS_PARM1);
4146         if(strindex < 0 || strindex >= 1000000) // huge number of strings
4147         {
4148                 VM_Warning("VM_bufstr_set: invalid string index %i used in %s\n", strindex, PRVM_NAME);
4149                 return;
4150         }
4151
4152         BufStr_Expand(stringbuffer, strindex);
4153         stringbuffer->num_strings = max(stringbuffer->num_strings, strindex + 1);
4154
4155         if(stringbuffer->strings[strindex])
4156                 Mem_Free(stringbuffer->strings[strindex]);
4157         stringbuffer->strings[strindex] = NULL;
4158
4159         news = PRVM_G_STRING(OFS_PARM2);
4160         if (news && news[0])
4161         {
4162                 size_t alloclen = strlen(news) + 1;
4163                 stringbuffer->strings[strindex] = (char *)Mem_Alloc(prog->progs_mempool, alloclen);
4164                 memcpy(stringbuffer->strings[strindex], news, alloclen);
4165         }
4166
4167         BufStr_Shrink(stringbuffer);
4168 }
4169
4170 /*
4171 ========================
4172 VM_bufstr_add
4173 adds string to buffer in first free slot and returns its index
4174 "order == TRUE" means that string will be added after last "full" slot
4175 float bufstr_add(float bufhandle, string str, float order) = #467;
4176 ========================
4177 */
4178 void VM_bufstr_add (void)
4179 {
4180         int                             order, strindex;
4181         prvm_stringbuffer_t *stringbuffer;
4182         const char              *string;
4183         size_t                  alloclen;
4184
4185         VM_SAFEPARMCOUNT(3, VM_bufstr_add);
4186
4187         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4188         PRVM_G_FLOAT(OFS_RETURN) = -1;
4189         if(!stringbuffer)
4190         {
4191                 VM_Warning("VM_bufstr_add: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4192                 return;
4193         }
4194         string = PRVM_G_STRING(OFS_PARM1);
4195         if(!string || !string[0])
4196         {
4197                 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);
4198                 return;
4199         }
4200         order = (int)PRVM_G_FLOAT(OFS_PARM2);
4201         if(order)
4202                 strindex = stringbuffer->num_strings;
4203         else
4204                 for (strindex = 0;strindex < stringbuffer->num_strings;strindex++)
4205                         if (stringbuffer->strings[strindex] == NULL)
4206                                 break;
4207
4208         BufStr_Expand(stringbuffer, strindex);
4209
4210         stringbuffer->num_strings = max(stringbuffer->num_strings, strindex + 1);
4211         alloclen = strlen(string) + 1;
4212         stringbuffer->strings[strindex] = (char *)Mem_Alloc(prog->progs_mempool, alloclen);
4213         memcpy(stringbuffer->strings[strindex], string, alloclen);
4214
4215         PRVM_G_FLOAT(OFS_RETURN) = strindex;
4216 }
4217
4218 /*
4219 ========================
4220 VM_bufstr_free
4221 delete string from buffer
4222 void bufstr_free(float bufhandle, float string_index) = #468;
4223 ========================
4224 */
4225 void VM_bufstr_free (void)
4226 {
4227         int                             i;
4228         prvm_stringbuffer_t     *stringbuffer;
4229         VM_SAFEPARMCOUNT(2, VM_bufstr_free);
4230
4231         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4232         if(!stringbuffer)
4233         {
4234                 VM_Warning("VM_bufstr_free: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4235                 return;
4236         }
4237         i = (int)PRVM_G_FLOAT(OFS_PARM1);
4238         if(i < 0)
4239         {
4240                 VM_Warning("VM_bufstr_free: invalid string index %i used in %s\n", i, PRVM_NAME);
4241                 return;
4242         }
4243
4244         if (i < stringbuffer->num_strings)
4245         {
4246                 if(stringbuffer->strings[i])
4247                         Mem_Free(stringbuffer->strings[i]);
4248                 stringbuffer->strings[i] = NULL;
4249         }
4250
4251         BufStr_Shrink(stringbuffer);
4252 }
4253
4254 //=============
4255
4256 /*
4257 ==============
4258 VM_changeyaw
4259
4260 This was a major timewaster in progs, so it was converted to C
4261 ==============
4262 */
4263 void VM_changeyaw (void)
4264 {
4265         prvm_edict_t            *ent;
4266         float           ideal, current, move, speed;
4267
4268         // this is called (VERY HACKISHLY) by SV_MoveToGoal, so it can not use any
4269         // parameters because they are the parameters to SV_MoveToGoal, not this
4270         //VM_SAFEPARMCOUNT(0, VM_changeyaw);
4271
4272         ent = PRVM_PROG_TO_EDICT(PRVM_GLOBALFIELDVALUE(prog->globaloffsets.self)->edict);
4273         if (ent == prog->edicts)
4274         {
4275                 VM_Warning("changeyaw: can not modify world entity\n");
4276                 return;
4277         }
4278         if (ent->priv.server->free)
4279         {
4280                 VM_Warning("changeyaw: can not modify free entity\n");
4281                 return;
4282         }
4283         if (prog->fieldoffsets.angles < 0 || prog->fieldoffsets.ideal_yaw < 0 || prog->fieldoffsets.yaw_speed < 0)
4284         {
4285                 VM_Warning("changeyaw: angles, ideal_yaw, or yaw_speed field(s) not found\n");
4286                 return;
4287         }
4288         current = ANGLEMOD(PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.angles)->vector[1]);
4289         ideal = PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.ideal_yaw)->_float;
4290         speed = PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.yaw_speed)->_float;
4291
4292         if (current == ideal)
4293                 return;
4294         move = ideal - current;
4295         if (ideal > current)
4296         {
4297                 if (move >= 180)
4298                         move = move - 360;
4299         }
4300         else
4301         {
4302                 if (move <= -180)
4303                         move = move + 360;
4304         }
4305         if (move > 0)
4306         {
4307                 if (move > speed)
4308                         move = speed;
4309         }
4310         else
4311         {
4312                 if (move < -speed)
4313                         move = -speed;
4314         }
4315
4316         PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.angles)->vector[1] = ANGLEMOD (current + move);
4317 }
4318
4319 /*
4320 ==============
4321 VM_changepitch
4322 ==============
4323 */
4324 void VM_changepitch (void)
4325 {
4326         prvm_edict_t            *ent;
4327         float           ideal, current, move, speed;
4328
4329         VM_SAFEPARMCOUNT(1, VM_changepitch);
4330
4331         ent = PRVM_G_EDICT(OFS_PARM0);
4332         if (ent == prog->edicts)
4333         {
4334                 VM_Warning("changepitch: can not modify world entity\n");
4335                 return;
4336         }
4337         if (ent->priv.server->free)
4338         {
4339                 VM_Warning("changepitch: can not modify free entity\n");
4340                 return;
4341         }
4342         if (prog->fieldoffsets.angles < 0 || prog->fieldoffsets.idealpitch < 0 || prog->fieldoffsets.pitch_speed < 0)
4343         {
4344                 VM_Warning("changepitch: angles, idealpitch, or pitch_speed field(s) not found\n");
4345                 return;
4346         }
4347         current = ANGLEMOD(PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.angles)->vector[0]);
4348         ideal = PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.idealpitch)->_float;
4349         speed = PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.pitch_speed)->_float;
4350
4351         if (current == ideal)
4352                 return;
4353         move = ideal - current;
4354         if (ideal > current)
4355         {
4356                 if (move >= 180)
4357                         move = move - 360;
4358         }
4359         else
4360         {
4361                 if (move <= -180)
4362                         move = move + 360;
4363         }
4364         if (move > 0)
4365         {
4366                 if (move > speed)
4367                         move = speed;
4368         }
4369         else
4370         {
4371                 if (move < -speed)
4372                         move = -speed;
4373         }
4374
4375         PRVM_EDICTFIELDVALUE(ent, prog->fieldoffsets.angles)->vector[0] = ANGLEMOD (current + move);
4376 }
4377
4378 // TODO: adapt all static function names to use a single naming convention... [12/3/2007 Black]
4379 static int Is_Text_Color (char c, char t)
4380 {
4381         int a = 0;
4382         char c2 = c - (c & 128);
4383         char t2 = t - (t & 128);
4384
4385         if(c != STRING_COLOR_TAG && c2 != STRING_COLOR_TAG)             return 0;
4386         if(t >= '0' && t <= '9')                a = 1;
4387         if(t2 >= '0' && t2 <= '9')              a = 1;
4388 /*      if(t >= 'A' && t <= 'Z')                a = 2;
4389         if(t2 >= 'A' && t2 <= 'Z')              a = 2;
4390
4391         if(a == 1 && scr_colortext.integer > 0)
4392                 return 1;
4393         if(a == 2 && scr_multifonts.integer > 0)
4394                 return 2;
4395 */
4396         return a;
4397 }
4398
4399 void VM_uncolorstring (void)
4400 {
4401         const char      *in;
4402         char            out[VM_STRINGTEMP_LENGTH];
4403         int                     k = 0, i = 0;
4404
4405         VM_SAFEPARMCOUNT(1, VM_uncolorstring);
4406         in = PRVM_G_STRING(OFS_PARM0);
4407         VM_CheckEmptyString (in);
4408
4409         while (in[k])
4410         {
4411                 if(in[k+1])
4412                 if(Is_Text_Color(in[k], in[k+1]) == 1/* || (in[k] == '&' && in[k+1] == 'r')*/)
4413                 {
4414                         k += 2;
4415                         continue;
4416                 }
4417                 out[i] = in[k];
4418                 ++k;
4419                 ++i;
4420         }
4421         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(out);
4422 }
4423
4424 // #221 float(string str, string sub[, float startpos]) strstrofs (FTE_STRINGS)
4425 //strstr, without generating a new string. Use in conjunction with FRIK_FILE's substring for more similar strstr.
4426 void VM_strstrofs (void)
4427 {
4428         const char *instr, *match;
4429         int firstofs;
4430         VM_SAFEPARMCOUNTRANGE(2, 3, VM_strstrofs);
4431         instr = PRVM_G_STRING(OFS_PARM0);
4432         match = PRVM_G_STRING(OFS_PARM1);
4433         firstofs = (prog->argc > 2)?PRVM_G_FLOAT(OFS_PARM2):0;
4434
4435         if (firstofs && (firstofs < 0 || firstofs > (int)strlen(instr)))
4436         {
4437                 PRVM_G_FLOAT(OFS_RETURN) = -1;
4438                 return;
4439         }
4440
4441         match = strstr(instr+firstofs, match);
4442         if (!match)
4443                 PRVM_G_FLOAT(OFS_RETURN) = -1;
4444         else
4445                 PRVM_G_FLOAT(OFS_RETURN) = match - instr;
4446 }
4447
4448 //#222 string(string s, float index) str2chr (FTE_STRINGS)
4449 void VM_str2chr (void)
4450 {
4451         const char *s;
4452         VM_SAFEPARMCOUNT(2, VM_str2chr);
4453         s = PRVM_G_STRING(OFS_PARM0);
4454         if((unsigned)PRVM_G_FLOAT(OFS_PARM1) < strlen(s))
4455                 PRVM_G_FLOAT(OFS_RETURN) = (unsigned char)s[(unsigned)PRVM_G_FLOAT(OFS_PARM1)];
4456         else
4457                 PRVM_G_FLOAT(OFS_RETURN) = 0;
4458 }
4459
4460 //#223 string(float c, ...) chr2str (FTE_STRINGS)
4461 void VM_chr2str (void)
4462 {
4463         char    t[9];
4464         int             i;
4465         VM_SAFEPARMCOUNTRANGE(0, 8, VM_chr2str);
4466         for(i = 0;i < prog->argc && i < (int)sizeof(t) - 1;i++)
4467                 t[i] = (unsigned char)PRVM_G_FLOAT(OFS_PARM0+i*3);
4468         t[i] = 0;
4469         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(t);
4470 }
4471
4472 static int chrconv_number(int i, int base, int conv)
4473 {
4474         i -= base;
4475         switch (conv)
4476         {
4477         default:
4478         case 5:
4479         case 6:
4480         case 0:
4481                 break;
4482         case 1:
4483                 base = '0';
4484                 break;
4485         case 2:
4486                 base = '0'+128;
4487                 break;
4488         case 3:
4489                 base = '0'-30;
4490                 break;
4491         case 4:
4492                 base = '0'+128-30;
4493                 break;
4494         }
4495         return i + base;
4496 }
4497 static int chrconv_punct(int i, int base, int conv)
4498 {
4499         i -= base;
4500         switch (conv)
4501         {
4502         default:
4503         case 0:
4504                 break;
4505         case 1:
4506                 base = 0;
4507                 break;
4508         case 2:
4509                 base = 128;
4510                 break;
4511         }
4512         return i + base;
4513 }
4514
4515 static int chrchar_alpha(int i, int basec, int baset, int convc, int convt, int charnum)
4516 {
4517         //convert case and colour seperatly...
4518
4519         i -= baset + basec;
4520         switch (convt)
4521         {
4522         default:
4523         case 0:
4524                 break;
4525         case 1:
4526                 baset = 0;
4527                 break;
4528         case 2:
4529                 baset = 128;
4530                 break;
4531
4532         case 5:
4533         case 6:
4534                 baset = 128*((charnum&1) == (convt-5));
4535                 break;
4536         }
4537
4538         switch (convc)
4539         {
4540         default:
4541         case 0:
4542                 break;
4543         case 1:
4544                 basec = 'a';
4545                 break;
4546         case 2:
4547                 basec = 'A';
4548                 break;
4549         }
4550         return i + basec + baset;
4551 }
4552 // #224 string(float ccase, float calpha, float cnum, string s, ...) strconv (FTE_STRINGS)
4553 //bulk convert a string. change case or colouring.
4554 void VM_strconv (void)
4555 {
4556         int ccase, redalpha, rednum, len, i;
4557         unsigned char resbuf[VM_STRINGTEMP_LENGTH];
4558         unsigned char *result = resbuf;
4559
4560         VM_SAFEPARMCOUNTRANGE(3, 8, VM_strconv);
4561
4562         ccase = PRVM_G_FLOAT(OFS_PARM0);        //0 same, 1 lower, 2 upper
4563         redalpha = PRVM_G_FLOAT(OFS_PARM1);     //0 same, 1 white, 2 red,  5 alternate, 6 alternate-alternate
4564         rednum = PRVM_G_FLOAT(OFS_PARM2);       //0 same, 1 white, 2 red, 3 redspecial, 4 whitespecial, 5 alternate, 6 alternate-alternate
4565         VM_VarString(3, (char *) resbuf, sizeof(resbuf));
4566         len = strlen((char *) resbuf);
4567
4568         for (i = 0; i < len; i++, result++)     //should this be done backwards?
4569         {
4570                 if (*result >= '0' && *result <= '9')   //normal numbers...
4571                         *result = chrconv_number(*result, '0', rednum);
4572                 else if (*result >= '0'+128 && *result <= '9'+128)
4573                         *result = chrconv_number(*result, '0'+128, rednum);
4574                 else if (*result >= '0'+128-30 && *result <= '9'+128-30)
4575                         *result = chrconv_number(*result, '0'+128-30, rednum);
4576                 else if (*result >= '0'-30 && *result <= '9'-30)
4577                         *result = chrconv_number(*result, '0'-30, rednum);
4578
4579                 else if (*result >= 'a' && *result <= 'z')      //normal numbers...
4580                         *result = chrchar_alpha(*result, 'a', 0, ccase, redalpha, i);
4581                 else if (*result >= 'A' && *result <= 'Z')      //normal numbers...
4582                         *result = chrchar_alpha(*result, 'A', 0, ccase, redalpha, i);
4583                 else if (*result >= 'a'+128 && *result <= 'z'+128)      //normal numbers...
4584                         *result = chrchar_alpha(*result, 'a', 128, ccase, redalpha, i);
4585                 else if (*result >= 'A'+128 && *result <= 'Z'+128)      //normal numbers...
4586                         *result = chrchar_alpha(*result, 'A', 128, ccase, redalpha, i);
4587
4588                 else if ((*result & 127) < 16 || !redalpha)     //special chars..
4589                         *result = *result;
4590                 else if (*result < 128)
4591                         *result = chrconv_punct(*result, 0, redalpha);
4592                 else
4593                         *result = chrconv_punct(*result, 128, redalpha);
4594         }
4595         *result = '\0';
4596
4597         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString((char *) resbuf);
4598 }
4599
4600 // #225 string(float chars, string s, ...) strpad (FTE_STRINGS)
4601 void VM_strpad (void)
4602 {
4603         char src[VM_STRINGTEMP_LENGTH];
4604         char destbuf[VM_STRINGTEMP_LENGTH];
4605         int pad;
4606         VM_SAFEPARMCOUNTRANGE(1, 8, VM_strpad);
4607         pad = PRVM_G_FLOAT(OFS_PARM0);
4608         VM_VarString(1, src, sizeof(src));
4609
4610         // note: < 0 = left padding, > 0 = right padding,
4611         // this is reverse logic of printf!
4612         dpsnprintf(destbuf, sizeof(destbuf), "%*s", -pad, src);
4613
4614         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(destbuf);
4615 }
4616
4617 // #226 string(string info, string key, string value, ...) infoadd (FTE_STRINGS)
4618 //uses qw style \key\value strings
4619 void VM_infoadd (void)
4620 {
4621         const char *info, *key;
4622         char value[VM_STRINGTEMP_LENGTH];
4623         char temp[VM_STRINGTEMP_LENGTH];
4624
4625         VM_SAFEPARMCOUNTRANGE(2, 8, VM_infoadd);
4626         info = PRVM_G_STRING(OFS_PARM0);
4627         key = PRVM_G_STRING(OFS_PARM1);
4628         VM_VarString(2, value, sizeof(value));
4629
4630         strlcpy(temp, info, VM_STRINGTEMP_LENGTH);
4631
4632         InfoString_SetValue(temp, VM_STRINGTEMP_LENGTH, key, value);
4633
4634         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(temp);
4635 }
4636
4637 // #227 string(string info, string key) infoget (FTE_STRINGS)
4638 //uses qw style \key\value strings
4639 void VM_infoget (void)
4640 {
4641         const char *info;
4642         const char *key;
4643         char value[VM_STRINGTEMP_LENGTH];
4644
4645         VM_SAFEPARMCOUNT(2, VM_infoget);
4646         info = PRVM_G_STRING(OFS_PARM0);
4647         key = PRVM_G_STRING(OFS_PARM1);
4648
4649         InfoString_GetValue(info, key, value, VM_STRINGTEMP_LENGTH);
4650
4651         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(value);
4652 }
4653
4654 //#228 float(string s1, string s2, float len) strncmp (FTE_STRINGS)
4655 // also float(string s1, string s2) strcmp (FRIK_FILE)
4656 void VM_strncmp (void)
4657 {
4658         const char *s1, *s2;
4659         VM_SAFEPARMCOUNTRANGE(2, 3, VM_strncmp);
4660         s1 = PRVM_G_STRING(OFS_PARM0);
4661         s2 = PRVM_G_STRING(OFS_PARM1);
4662         if (prog->argc > 2)
4663         {
4664                 PRVM_G_FLOAT(OFS_RETURN) = strncmp(s1, s2, (size_t)PRVM_G_FLOAT(OFS_PARM2));
4665         }
4666         else
4667         {
4668                 PRVM_G_FLOAT(OFS_RETURN) = strcmp(s1, s2);
4669         }
4670 }
4671
4672 // #229 float(string s1, string s2) strcasecmp (FTE_STRINGS)
4673 // #230 float(string s1, string s2, float len) strncasecmp (FTE_STRINGS)
4674 void VM_strncasecmp (void)
4675 {
4676         const char *s1, *s2;
4677         VM_SAFEPARMCOUNTRANGE(2, 3, VM_strncasecmp);
4678         s1 = PRVM_G_STRING(OFS_PARM0);
4679         s2 = PRVM_G_STRING(OFS_PARM1);
4680         if (prog->argc > 2)
4681         {
4682                 PRVM_G_FLOAT(OFS_RETURN) = strncasecmp(s1, s2, (size_t)PRVM_G_FLOAT(OFS_PARM2));
4683         }
4684         else
4685         {
4686                 PRVM_G_FLOAT(OFS_RETURN) = strcasecmp(s1, s2);
4687         }
4688 }
4689
4690 // #494 float(float caseinsensitive, string s, ...) crc16
4691 void VM_crc16(void)
4692 {
4693         float insensitive;
4694         static char s[VM_STRINGTEMP_LENGTH];
4695         VM_SAFEPARMCOUNTRANGE(2, 8, VM_hash);
4696         insensitive = PRVM_G_FLOAT(OFS_PARM0);
4697         VM_VarString(1, s, sizeof(s));
4698         PRVM_G_FLOAT(OFS_RETURN) = (unsigned short) ((insensitive ? CRC_Block_CaseInsensitive : CRC_Block) ((unsigned char *) s, strlen(s)));
4699 }
4700
4701 void VM_wasfreed (void)
4702 {
4703         VM_SAFEPARMCOUNT(1, VM_wasfreed);
4704         PRVM_G_FLOAT(OFS_RETURN) = PRVM_G_EDICT(OFS_PARM0)->priv.required->free;
4705 }
4706
4707 void VM_SetTraceGlobals(const trace_t *trace)
4708 {
4709         prvm_eval_t *val;
4710         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_allsolid)))
4711                 val->_float = trace->allsolid;
4712         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_startsolid)))
4713                 val->_float = trace->startsolid;
4714         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_fraction)))
4715                 val->_float = trace->fraction;
4716         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_inwater)))
4717                 val->_float = trace->inwater;
4718         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_inopen)))
4719                 val->_float = trace->inopen;
4720         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_endpos)))
4721                 VectorCopy(trace->endpos, val->vector);
4722         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_plane_normal)))
4723                 VectorCopy(trace->plane.normal, val->vector);
4724         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_plane_dist)))
4725                 val->_float = trace->plane.dist;
4726         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_ent)))
4727                 val->edict = PRVM_EDICT_TO_PROG(trace->ent ? trace->ent : prog->edicts);
4728         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_dpstartcontents)))
4729                 val->_float = trace->startsupercontents;
4730         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_dphitcontents)))
4731                 val->_float = trace->hitsupercontents;
4732         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_dphitq3surfaceflags)))
4733                 val->_float = trace->hitq3surfaceflags;
4734         if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.trace_dphittexturename)))
4735                 val->string = trace->hittexture ? PRVM_SetTempString(trace->hittexture->name) : 0;
4736 }
4737
4738 //=============
4739
4740 void VM_Cmd_Init(void)
4741 {
4742         // only init the stuff for the current prog
4743         VM_Files_Init();
4744         VM_Search_Init();
4745         VM_Gecko_Init();
4746 //      VM_BufStr_Init();
4747 }
4748
4749 void VM_Cmd_Reset(void)
4750 {
4751         CL_PurgeOwner( MENUOWNER );
4752         VM_Search_Reset();
4753         VM_Files_CloseAll();
4754         VM_Gecko_Destroy();
4755 //      VM_BufStr_ShutDown();
4756 }
4757
4758 // #510 string(string input, ...) uri_escape (DP_QC_URI_ESCAPE)
4759 // does URI escaping on a string (replace evil stuff by %AB escapes)
4760 void VM_uri_escape (void)
4761 {
4762         char src[VM_STRINGTEMP_LENGTH];
4763         char dest[VM_STRINGTEMP_LENGTH];
4764         char *p, *q;
4765         static const char *hex = "0123456789ABCDEF";
4766
4767         VM_SAFEPARMCOUNTRANGE(1, 8, VM_uri_escape);
4768         VM_VarString(0, src, sizeof(src));
4769
4770         for(p = src, q = dest; *p && q < dest + sizeof(dest) - 3; ++p)
4771         {
4772                 if((*p >= 'A' && *p <= 'Z')
4773                         || (*p >= 'a' && *p <= 'z')
4774                         || (*p >= '0' && *p <= '9')
4775                         || (*p == '-')  || (*p == '_') || (*p == '.')
4776                         || (*p == '!')  || (*p == '~') || (*p == '*')
4777                         || (*p == '\'') || (*p == '(') || (*p == ')'))
4778                         *q++ = *p;
4779                 else
4780                 {
4781                         *q++ = '%';
4782                         *q++ = hex[(*(unsigned char *)p >> 4) & 0xF];
4783                         *q++ = hex[ *(unsigned char *)p       & 0xF];
4784                 }
4785         }
4786         *q++ = 0;
4787
4788         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(dest);
4789 }
4790
4791 // #510 string(string input, ...) uri_unescape (DP_QC_URI_ESCAPE)
4792 // does URI unescaping on a string (get back the evil stuff)
4793 void VM_uri_unescape (void)
4794 {
4795         char src[VM_STRINGTEMP_LENGTH];
4796         char dest[VM_STRINGTEMP_LENGTH];
4797         char *p, *q;
4798         int hi, lo;
4799
4800         VM_SAFEPARMCOUNTRANGE(1, 8, VM_uri_unescape);
4801         VM_VarString(0, src, sizeof(src));
4802
4803         for(p = src, q = dest; *p; ) // no need to check size, because unescape can't expand
4804         {
4805                 if(*p == '%')
4806                 {
4807                         if(p[1] >= '0' && p[1] <= '9')
4808                                 hi = p[1] - '0';
4809                         else if(p[1] >= 'a' && p[1] <= 'f')
4810                                 hi = p[1] - 'a' + 10;
4811                         else if(p[1] >= 'A' && p[1] <= 'F')
4812                                 hi = p[1] - 'A' + 10;
4813                         else
4814                                 goto nohex;
4815                         if(p[2] >= '0' && p[2] <= '9')
4816                                 lo = p[2] - '0';
4817                         else if(p[2] >= 'a' && p[2] <= 'f')
4818                                 lo = p[2] - 'a' + 10;
4819                         else if(p[2] >= 'A' && p[2] <= 'F')
4820                                 lo = p[2] - 'A' + 10;
4821                         else
4822                                 goto nohex;
4823                         if(hi != 0 || lo != 0) // don't unescape NUL bytes
4824                                 *q++ = (char) (hi * 0x10 + lo);
4825                         p += 3;
4826                         continue;
4827                 }
4828
4829 nohex:
4830                 // otherwise:
4831                 *q++ = *p++;
4832         }
4833         *q++ = 0;
4834
4835         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(dest);
4836 }
4837
4838 // #502 string(string filename) whichpack (DP_QC_WHICHPACK)
4839 // returns the name of the pack containing a file, or "" if it is not in any pack (but local or non-existant)
4840 void VM_whichpack (void)
4841 {
4842         const char *fn, *pack;
4843
4844         fn = PRVM_G_STRING(OFS_PARM0);
4845         pack = FS_WhichPack(fn);
4846
4847         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(pack ? pack : "");
4848 }
4849
4850 typedef struct
4851 {
4852         int prognr;
4853         double starttime;
4854         float id;
4855         char buffer[MAX_INPUTLINE];
4856 }
4857 uri_to_prog_t;
4858
4859 static void uri_to_string_callback(int status, size_t length_received, unsigned char *buffer, void *cbdata)
4860 {
4861         uri_to_prog_t *handle = cbdata;
4862
4863         if(!PRVM_ProgLoaded(handle->prognr))
4864         {
4865                 // curl reply came too late... so just drop it
4866                 Z_Free(handle);
4867                 return;
4868         }
4869                 
4870         PRVM_SetProg(handle->prognr);
4871         PRVM_Begin;
4872                 if((prog->starttime == handle->starttime) && (prog->funcoffsets.URI_Get_Callback))
4873                 {
4874                         if(length_received >= sizeof(handle->buffer))
4875                                 length_received = sizeof(handle->buffer) - 1;
4876                         handle->buffer[length_received] = 0;
4877                 
4878                         PRVM_G_FLOAT(OFS_PARM0) = handle->id;
4879                         PRVM_G_FLOAT(OFS_PARM1) = status;
4880                         PRVM_G_INT(OFS_PARM2) = PRVM_SetTempString(handle->buffer);
4881                         PRVM_ExecuteProgram(prog->funcoffsets.URI_Get_Callback, "QC function URI_Get_Callback is missing");
4882                 }
4883         PRVM_End;
4884         
4885         Z_Free(handle);
4886 }
4887
4888 // 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
4889 // 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
4890 void VM_uri_get (void)
4891 {
4892         const char *url;
4893         float id;
4894         qboolean ret;
4895         uri_to_prog_t *handle;
4896
4897         if(!prog->funcoffsets.URI_Get_Callback)
4898                 PRVM_ERROR("uri_get called by %s without URI_Get_Callback defined", PRVM_NAME);
4899
4900         url = PRVM_G_STRING(OFS_PARM0);
4901         id = PRVM_G_FLOAT(OFS_PARM1);
4902         handle = Z_Malloc(sizeof(*handle)); // this can't be the prog's mem pool, as curl may call the callback later!
4903
4904         handle->prognr = PRVM_GetProgNr();
4905         handle->starttime = prog->starttime;
4906         handle->id = id;
4907         ret = Curl_Begin_ToMemory(url, (unsigned char *) handle->buffer, sizeof(handle->buffer), uri_to_string_callback, handle);
4908         if(ret)
4909         {
4910                 PRVM_G_INT(OFS_RETURN) = 1;
4911         }
4912         else
4913         {
4914                 Z_Free(handle);
4915                 PRVM_G_INT(OFS_RETURN) = 0;
4916         }
4917 }