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