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