]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - misc/source/darkplaces-src/prvm_cmds.c
Better comment on my last change
[voretournament/voretournament.git] / misc / source / darkplaces-src / 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 #include "cl_collision.h"
14 #include "clvm_cmds.h"
15 #include "ft2.h"
16
17 extern cvar_t prvm_backtraceforwarnings;
18
19 // LordHavoc: changed this to NOT use a return statement, so that it can be used in functions that must return a value
20 void VM_Warning(const char *fmt, ...)
21 {
22         va_list argptr;
23         char msg[MAX_INPUTLINE];
24         static double recursive = -1;
25
26         va_start(argptr,fmt);
27         dpvsnprintf(msg,sizeof(msg),fmt,argptr);
28         va_end(argptr);
29
30         Con_DPrint(msg);
31
32         // TODO: either add a cvar/cmd to control the state dumping or replace some of the calls with Con_Printf [9/13/2006 Black]
33         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
34         {
35                 recursive = realtime;
36                 PRVM_PrintState();
37                 recursive = -1;
38         }
39 }
40
41
42 //============================================================================
43 // Common
44
45 // TODO DONE: move vm_files and vm_fssearchlist to prvm_prog_t struct
46 // TODO: move vm_files and vm_fssearchlist back [9/13/2006 Black]
47 // TODO: (move vm_files and vm_fssearchlist to prvm_prog_t struct again) [2007-01-23 LordHavoc]
48 // TODO: will this war ever end? [2007-01-23 LordHavoc]
49
50 void VM_CheckEmptyString (const char *s)
51 {
52         if (ISWHITESPACE(s[0]))
53                 PRVM_ERROR ("%s: Bad string", PRVM_NAME);
54 }
55
56 void VM_GenerateFrameGroupBlend(framegroupblend_t *framegroupblend, const prvm_edict_t *ed)
57 {
58         // self.frame is the interpolation target (new frame)
59         // self.frame1time is the animation base time for the interpolation target
60         // self.frame2 is the interpolation start (previous frame)
61         // self.frame2time is the animation base time for the interpolation start
62         // self.lerpfrac is the interpolation strength for self.frame2
63         // self.lerpfrac3 is the interpolation strength for self.frame3
64         // self.lerpfrac4 is the interpolation strength for self.frame4
65         // pitch angle on a player model where the animator set up 5 sets of
66         // animations and the csqc simply lerps between sets)
67         framegroupblend[0].frame = (int) PRVM_gameedictfloat(ed, frame     );
68         framegroupblend[1].frame = (int) PRVM_gameedictfloat(ed, frame2    );
69         framegroupblend[2].frame = (int) PRVM_gameedictfloat(ed, frame3    );
70         framegroupblend[3].frame = (int) PRVM_gameedictfloat(ed, frame4    );
71         framegroupblend[0].start =       PRVM_gameedictfloat(ed, frame1time);
72         framegroupblend[1].start =       PRVM_gameedictfloat(ed, frame2time);
73         framegroupblend[2].start =       PRVM_gameedictfloat(ed, frame3time);
74         framegroupblend[3].start =       PRVM_gameedictfloat(ed, frame4time);
75         framegroupblend[1].lerp  =       PRVM_gameedictfloat(ed, lerpfrac  );
76         framegroupblend[2].lerp  =       PRVM_gameedictfloat(ed, lerpfrac3 );
77         framegroupblend[3].lerp  =       PRVM_gameedictfloat(ed, lerpfrac4 );
78         // assume that the (missing) lerpfrac1 is whatever remains after lerpfrac2+lerpfrac3+lerpfrac4 are summed
79         framegroupblend[0].lerp = 1 - framegroupblend[1].lerp - framegroupblend[2].lerp - framegroupblend[3].lerp;
80 }
81
82 // LordHavoc: quite tempting to break apart this function to reuse the
83 //            duplicated code, but I suspect it is better for performance
84 //            this way
85 void VM_FrameBlendFromFrameGroupBlend(frameblend_t *frameblend, const framegroupblend_t *framegroupblend, const dp_model_t *model)
86 {
87         int sub2, numframes, f, i, k;
88         int isfirstframegroup = true;
89         int nolerp;
90         double sublerp, lerp, d;
91         const animscene_t *scene;
92         const framegroupblend_t *g;
93         frameblend_t *blend = frameblend;
94
95         memset(blend, 0, MAX_FRAMEBLENDS * sizeof(*blend));
96
97         if (!model || !model->surfmesh.isanimated)
98         {
99                 blend[0].lerp = 1;
100                 return;
101         }
102
103         nolerp = (model->type == mod_sprite) ? !r_lerpsprites.integer : !r_lerpmodels.integer;
104         numframes = model->numframes;
105         for (k = 0, g = framegroupblend;k < MAX_FRAMEGROUPBLENDS;k++, g++)
106         {
107                 f = g->frame;
108                 if ((unsigned int)f >= (unsigned int)numframes)
109                 {
110                         Con_DPrintf("VM_FrameBlendFromFrameGroupBlend: no such frame %d in model %s\n", f, model->name);
111                         f = 0;
112                 }
113                 d = lerp = g->lerp;
114                 if (lerp <= 0)
115                         continue;
116                 if (nolerp)
117                 {
118                         if (isfirstframegroup)
119                         {
120                                 d = lerp = 1;
121                                 isfirstframegroup = false;
122                         }
123                         else
124                                 continue;
125                 }
126                 if (model->animscenes)
127                 {
128                         scene = model->animscenes + f;
129                         f = scene->firstframe;
130                         if (scene->framecount > 1)
131                         {
132                                 // this code path is only used on .zym models and torches
133                                 sublerp = scene->framerate * (cl.time - g->start);
134                                 f = (int) floor(sublerp);
135                                 sublerp -= f;
136                                 sub2 = f + 1;
137                                 if (sublerp < (1.0 / 65536.0f))
138                                         sublerp = 0;
139                                 if (sublerp > (65535.0f / 65536.0f))
140                                         sublerp = 1;
141                                 if (nolerp)
142                                         sublerp = 0;
143                                 if (scene->loop)
144                                 {
145                                         f = (f % scene->framecount);
146                                         sub2 = (sub2 % scene->framecount);
147                                 }
148                                 f = bound(0, f, (scene->framecount - 1)) + scene->firstframe;
149                                 sub2 = bound(0, sub2, (scene->framecount - 1)) + scene->firstframe;
150                                 d = sublerp * lerp;
151                                 // two framelerps produced from one animation
152                                 if (d > 0)
153                                 {
154                                         for (i = 0;i < MAX_FRAMEBLENDS;i++)
155                                         {
156                                                 if (blend[i].lerp <= 0 || blend[i].subframe == sub2)
157                                                 {
158                                                         blend[i].subframe = sub2;
159                                                         blend[i].lerp += d;
160                                                         break;
161                                                 }
162                                         }
163                                 }
164                                 d = (1 - sublerp) * lerp;
165                         }
166                 }
167                 if (d > 0)
168                 {
169                         for (i = 0;i < MAX_FRAMEBLENDS;i++)
170                         {
171                                 if (blend[i].lerp <= 0 || blend[i].subframe == f)
172                                 {
173                                         blend[i].subframe = f;
174                                         blend[i].lerp += d;
175                                         break;
176                                 }
177                         }
178                 }
179         }
180 }
181
182 void VM_UpdateEdictSkeleton(prvm_edict_t *ed, const dp_model_t *edmodel, const frameblend_t *frameblend)
183 {
184         if (ed->priv.server->skeleton.model != edmodel)
185         {
186                 VM_RemoveEdictSkeleton(ed);
187                 ed->priv.server->skeleton.model = edmodel;
188         }
189         if (!ed->priv.server->skeleton.model || !ed->priv.server->skeleton.model->num_bones)
190         {
191                 if(ed->priv.server->skeleton.relativetransforms)
192                         Mem_Free(ed->priv.server->skeleton.relativetransforms);
193                 ed->priv.server->skeleton.relativetransforms = NULL;
194                 return;
195         }
196
197         {
198                 int skeletonindex = -1;
199                 skeleton_t *skeleton;
200                 skeletonindex = (int)PRVM_gameedictfloat(ed, skeletonindex) - 1;
201                 if (skeletonindex >= 0 && skeletonindex < MAX_EDICTS && (skeleton = prog->skeletons[skeletonindex]) && skeleton->model->num_bones == ed->priv.server->skeleton.model->num_bones)
202                 {
203                         // custom skeleton controlled by the game (FTE_CSQC_SKELETONOBJECTS)
204                         if (!ed->priv.server->skeleton.relativetransforms)
205                                 ed->priv.server->skeleton.relativetransforms = (matrix4x4_t *)Mem_Alloc(prog->progs_mempool, ed->priv.server->skeleton.model->num_bones * sizeof(matrix4x4_t));
206                         memcpy(ed->priv.server->skeleton.relativetransforms, skeleton->relativetransforms, ed->priv.server->skeleton.model->num_bones * sizeof(matrix4x4_t));
207                 }
208                 else
209                 {
210                         if(ed->priv.server->skeleton.relativetransforms)
211                                 Mem_Free(ed->priv.server->skeleton.relativetransforms);
212                         ed->priv.server->skeleton.relativetransforms = NULL;
213                 }
214         }
215 }
216
217 void VM_RemoveEdictSkeleton(prvm_edict_t *ed)
218 {
219         if (ed->priv.server->skeleton.relativetransforms)
220                 Mem_Free(ed->priv.server->skeleton.relativetransforms);
221         memset(&ed->priv.server->skeleton, 0, sizeof(ed->priv.server->skeleton));
222 }
223
224
225
226
227 //============================================================================
228 //BUILT-IN FUNCTIONS
229
230 void VM_VarString(int first, char *out, int outlength)
231 {
232         int i;
233         const char *s;
234         char *outend;
235
236         outend = out + outlength - 1;
237         for (i = first;i < prog->argc && out < outend;i++)
238         {
239                 s = PRVM_G_STRING((OFS_PARM0+i*3));
240                 while (out < outend && *s)
241                         *out++ = *s++;
242         }
243         *out++ = 0;
244 }
245
246 /*
247 =================
248 VM_checkextension
249
250 returns true if the extension is supported by the server
251
252 checkextension(extensionname)
253 =================
254 */
255
256 // kind of helper function
257 static qboolean checkextension(const char *name)
258 {
259         int len;
260         const char *e, *start;
261         len = (int)strlen(name);
262
263         for (e = prog->extensionstring;*e;e++)
264         {
265                 while (*e == ' ')
266                         e++;
267                 if (!*e)
268                         break;
269                 start = e;
270                 while (*e && *e != ' ')
271                         e++;
272                 if ((e - start) == len && !strncasecmp(start, name, len))
273                 {
274                         // special sheck for ODE
275                         if (!strncasecmp("DP_PHYSICS_ODE", name, 14))
276                         {
277 #ifdef USEODE
278                                 return ode_dll ? true : false;
279 #else
280                                 return false;
281 #endif
282                         }
283                         return true;
284                 }
285         }
286         return false;
287 }
288
289 void VM_checkextension (void)
290 {
291         VM_SAFEPARMCOUNT(1,VM_checkextension);
292
293         PRVM_G_FLOAT(OFS_RETURN) = checkextension(PRVM_G_STRING(OFS_PARM0));
294 }
295
296 /*
297 =================
298 VM_error
299
300 This is a TERMINAL error, which will kill off the entire prog.
301 Dumps self.
302
303 error(value)
304 =================
305 */
306 void VM_error (void)
307 {
308         prvm_edict_t    *ed;
309         char string[VM_STRINGTEMP_LENGTH];
310
311         VM_VarString(0, string, sizeof(string));
312         Con_Printf("======%s ERROR in %s:\n%s\n", PRVM_NAME, PRVM_GetString(prog->xfunction->s_name), string);
313         ed = PRVM_PROG_TO_EDICT(PRVM_allglobaledict(self));
314         PRVM_ED_Print(ed, NULL);
315
316         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);
317 }
318
319 /*
320 =================
321 VM_objerror
322
323 Dumps out self, then an error message.  The program is aborted and self is
324 removed, but the level can continue.
325
326 objerror(value)
327 =================
328 */
329 void VM_objerror (void)
330 {
331         prvm_edict_t    *ed;
332         char string[VM_STRINGTEMP_LENGTH];
333
334         VM_VarString(0, string, sizeof(string));
335         Con_Printf("======OBJECT ERROR======\n"); // , PRVM_NAME, PRVM_GetString(prog->xfunction->s_name), string); // or include them? FIXME
336         ed = PRVM_PROG_TO_EDICT(PRVM_allglobaledict(self));
337         PRVM_ED_Print(ed, NULL);
338         PRVM_ED_Free (ed);
339         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);
340 }
341
342 /*
343 =================
344 VM_print
345
346 print to console
347
348 print(...[string])
349 =================
350 */
351 void VM_print (void)
352 {
353         char string[VM_STRINGTEMP_LENGTH];
354
355         VM_VarString(0, string, sizeof(string));
356         Con_Print(string);
357 }
358
359 /*
360 =================
361 VM_bprint
362
363 broadcast print to everyone on server
364
365 bprint(...[string])
366 =================
367 */
368 void VM_bprint (void)
369 {
370         char string[VM_STRINGTEMP_LENGTH];
371
372         if(!sv.active)
373         {
374                 VM_Warning("VM_bprint: game is not server(%s) !\n", PRVM_NAME);
375                 return;
376         }
377
378         VM_VarString(0, string, sizeof(string));
379         SV_BroadcastPrint(string);
380 }
381
382 /*
383 =================
384 VM_sprint (menu & client but only if server.active == true)
385
386 single print to a specific client
387
388 sprint(float clientnum,...[string])
389 =================
390 */
391 void VM_sprint (void)
392 {
393         client_t        *client;
394         int                     clientnum;
395         char string[VM_STRINGTEMP_LENGTH];
396
397         VM_SAFEPARMCOUNTRANGE(1, 8, VM_sprint);
398
399         //find client for this entity
400         clientnum = (int)PRVM_G_FLOAT(OFS_PARM0);
401         if (!sv.active  || clientnum < 0 || clientnum >= svs.maxclients || !svs.clients[clientnum].active)
402         {
403                 VM_Warning("VM_sprint: %s: invalid client or server is not active !\n", PRVM_NAME);
404                 return;
405         }
406
407         client = svs.clients + clientnum;
408         if (!client->netconnection)
409                 return;
410
411         VM_VarString(1, string, sizeof(string));
412         MSG_WriteChar(&client->netconnection->message,svc_print);
413         MSG_WriteString(&client->netconnection->message, string);
414 }
415
416 /*
417 =================
418 VM_centerprint
419
420 single print to the screen
421
422 centerprint(value)
423 =================
424 */
425 void VM_centerprint (void)
426 {
427         char string[VM_STRINGTEMP_LENGTH];
428
429         VM_SAFEPARMCOUNTRANGE(1, 8, VM_centerprint);
430         VM_VarString(0, string, sizeof(string));
431         SCR_CenterPrint(string);
432 }
433
434 /*
435 =================
436 VM_normalize
437
438 vector normalize(vector)
439 =================
440 */
441 void VM_normalize (void)
442 {
443         float   *value1;
444         vec3_t  newvalue;
445         double  f;
446
447         VM_SAFEPARMCOUNT(1,VM_normalize);
448
449         value1 = PRVM_G_VECTOR(OFS_PARM0);
450
451         f = VectorLength2(value1);
452         if (f)
453         {
454                 f = 1.0 / sqrt(f);
455                 VectorScale(value1, f, newvalue);
456         }
457         else
458                 VectorClear(newvalue);
459
460         VectorCopy (newvalue, PRVM_G_VECTOR(OFS_RETURN));
461 }
462
463 /*
464 =================
465 VM_vlen
466
467 scalar vlen(vector)
468 =================
469 */
470 void VM_vlen (void)
471 {
472         VM_SAFEPARMCOUNT(1,VM_vlen);
473         PRVM_G_FLOAT(OFS_RETURN) = VectorLength(PRVM_G_VECTOR(OFS_PARM0));
474 }
475
476 /*
477 =================
478 VM_vectoyaw
479
480 float vectoyaw(vector)
481 =================
482 */
483 void VM_vectoyaw (void)
484 {
485         float   *value1;
486         float   yaw;
487
488         VM_SAFEPARMCOUNT(1,VM_vectoyaw);
489
490         value1 = PRVM_G_VECTOR(OFS_PARM0);
491
492         if (value1[1] == 0 && value1[0] == 0)
493                 yaw = 0;
494         else
495         {
496                 yaw = (int) (atan2(value1[1], value1[0]) * 180 / M_PI);
497                 if (yaw < 0)
498                         yaw += 360;
499         }
500
501         PRVM_G_FLOAT(OFS_RETURN) = yaw;
502 }
503
504
505 /*
506 =================
507 VM_vectoangles
508
509 vector vectoangles(vector[, vector])
510 =================
511 */
512 void VM_vectoangles (void)
513 {
514         VM_SAFEPARMCOUNTRANGE(1, 2,VM_vectoangles);
515
516         AnglesFromVectors(PRVM_G_VECTOR(OFS_RETURN), PRVM_G_VECTOR(OFS_PARM0), prog->argc >= 2 ? PRVM_G_VECTOR(OFS_PARM1) : NULL, true);
517 }
518
519 /*
520 =================
521 VM_random
522
523 Returns a number from 0<= num < 1
524
525 float random()
526 =================
527 */
528 void VM_random (void)
529 {
530         VM_SAFEPARMCOUNT(0,VM_random);
531
532         PRVM_G_FLOAT(OFS_RETURN) = lhrandom(0, 1);
533 }
534
535 /*
536 =========
537 VM_localsound
538
539 localsound(string sample)
540 =========
541 */
542 void VM_localsound(void)
543 {
544         const char *s;
545
546         VM_SAFEPARMCOUNT(1,VM_localsound);
547
548         s = PRVM_G_STRING(OFS_PARM0);
549
550         if(!S_LocalSound (s))
551         {
552                 PRVM_G_FLOAT(OFS_RETURN) = -4;
553                 VM_Warning("VM_localsound: Failed to play %s for %s !\n", s, PRVM_NAME);
554                 return;
555         }
556
557         PRVM_G_FLOAT(OFS_RETURN) = 1;
558 }
559
560 /*
561 =================
562 VM_break
563
564 break()
565 =================
566 */
567 void VM_break (void)
568 {
569         PRVM_ERROR ("%s: break statement", PRVM_NAME);
570 }
571
572 //============================================================================
573
574 /*
575 =================
576 VM_localcmd
577
578 Sends text over to the client's execution buffer
579
580 [localcmd (string, ...) or]
581 cmd (string, ...)
582 =================
583 */
584 void VM_localcmd (void)
585 {
586         char string[VM_STRINGTEMP_LENGTH];
587         VM_SAFEPARMCOUNTRANGE(1, 8, VM_localcmd);
588         VM_VarString(0, string, sizeof(string));
589         Cbuf_AddText(string);
590 }
591
592 static qboolean PRVM_Cvar_ReadOk(const char *string)
593 {
594         cvar_t *cvar;
595         cvar = Cvar_FindVar(string);
596         return ((cvar) && ((cvar->flags & CVAR_PRIVATE) == 0));
597 }
598
599 /*
600 =================
601 VM_cvar
602
603 float cvar (string)
604 =================
605 */
606 void VM_cvar (void)
607 {
608         char string[VM_STRINGTEMP_LENGTH];
609         VM_SAFEPARMCOUNTRANGE(1,8,VM_cvar);
610         VM_VarString(0, string, sizeof(string));
611         VM_CheckEmptyString(string);
612         PRVM_G_FLOAT(OFS_RETURN) = PRVM_Cvar_ReadOk(string) ? Cvar_VariableValue(string) : 0;
613 }
614
615 /*
616 =================
617 VM_cvar
618
619 float cvar_type (string)
620 float CVAR_TYPEFLAG_EXISTS = 1;
621 float CVAR_TYPEFLAG_SAVED = 2;
622 float CVAR_TYPEFLAG_PRIVATE = 4;
623 float CVAR_TYPEFLAG_ENGINE = 8;
624 float CVAR_TYPEFLAG_HASDESCRIPTION = 16;
625 float CVAR_TYPEFLAG_READONLY = 32;
626 =================
627 */
628 void VM_cvar_type (void)
629 {
630         char string[VM_STRINGTEMP_LENGTH];
631         cvar_t *cvar;
632         int ret;
633
634         VM_SAFEPARMCOUNTRANGE(1,8,VM_cvar);
635         VM_VarString(0, string, sizeof(string));
636         VM_CheckEmptyString(string);
637         cvar = Cvar_FindVar(string);
638
639
640         if(!cvar)
641         {
642                 PRVM_G_FLOAT(OFS_RETURN) = 0;
643                 return; // CVAR_TYPE_NONE
644         }
645
646         ret = 1; // CVAR_EXISTS
647         if(cvar->flags & CVAR_SAVE)
648                 ret |= 2; // CVAR_TYPE_SAVED
649         if(cvar->flags & CVAR_PRIVATE)
650                 ret |= 4; // CVAR_TYPE_PRIVATE
651         if(!(cvar->flags & CVAR_ALLOCATED))
652                 ret |= 8; // CVAR_TYPE_ENGINE
653         if(cvar->description != cvar_dummy_description)
654                 ret |= 16; // CVAR_TYPE_HASDESCRIPTION
655         if(cvar->flags & CVAR_READONLY)
656                 ret |= 32; // CVAR_TYPE_READONLY
657         
658         PRVM_G_FLOAT(OFS_RETURN) = ret;
659 }
660
661 /*
662 =================
663 VM_cvar_string
664
665 const string    VM_cvar_string (string, ...)
666 =================
667 */
668 void VM_cvar_string(void)
669 {
670         char string[VM_STRINGTEMP_LENGTH];
671         VM_SAFEPARMCOUNTRANGE(1,8,VM_cvar_string);
672         VM_VarString(0, string, sizeof(string));
673         VM_CheckEmptyString(string);
674         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(PRVM_Cvar_ReadOk(string) ? Cvar_VariableString(string) : "");
675 }
676
677
678 /*
679 ========================
680 VM_cvar_defstring
681
682 const string    VM_cvar_defstring (string, ...)
683 ========================
684 */
685 void VM_cvar_defstring (void)
686 {
687         char string[VM_STRINGTEMP_LENGTH];
688         VM_SAFEPARMCOUNTRANGE(1,8,VM_cvar_defstring);
689         VM_VarString(0, string, sizeof(string));
690         VM_CheckEmptyString(string);
691         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(Cvar_VariableDefString(string));
692 }
693
694 /*
695 ========================
696 VM_cvar_defstring
697
698 const string    VM_cvar_description (string, ...)
699 ========================
700 */
701 void VM_cvar_description (void)
702 {
703         char string[VM_STRINGTEMP_LENGTH];
704         VM_SAFEPARMCOUNTRANGE(1,8,VM_cvar_description);
705         VM_VarString(0, string, sizeof(string));
706         VM_CheckEmptyString(string);
707         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(Cvar_VariableDescription(string));
708 }
709 /*
710 =================
711 VM_cvar_set
712
713 void cvar_set (string,string, ...)
714 =================
715 */
716 void VM_cvar_set (void)
717 {
718         const char *name;
719         char string[VM_STRINGTEMP_LENGTH];
720         VM_SAFEPARMCOUNTRANGE(2,8,VM_cvar_set);
721         VM_VarString(1, string, sizeof(string));
722         name = PRVM_G_STRING(OFS_PARM0);
723         VM_CheckEmptyString(name);
724         Cvar_Set(name, string);
725 }
726
727 /*
728 =========
729 VM_dprint
730
731 dprint(...[string])
732 =========
733 */
734 void VM_dprint (void)
735 {
736         char string[VM_STRINGTEMP_LENGTH];
737         VM_SAFEPARMCOUNTRANGE(1, 8, VM_dprint);
738         VM_VarString(0, string, sizeof(string));
739 #if 1
740         Con_DPrintf("%s", string);
741 #else
742         Con_DPrintf("%s: %s", PRVM_NAME, string);
743 #endif
744 }
745
746 /*
747 =========
748 VM_ftos
749
750 string  ftos(float)
751 =========
752 */
753
754 void VM_ftos (void)
755 {
756         float v;
757         char s[128];
758
759         VM_SAFEPARMCOUNT(1, VM_ftos);
760
761         v = PRVM_G_FLOAT(OFS_PARM0);
762
763         if ((float)((int)v) == v)
764                 dpsnprintf(s, sizeof(s), "%i", (int)v);
765         else
766                 dpsnprintf(s, sizeof(s), "%f", v);
767         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(s);
768 }
769
770 /*
771 =========
772 VM_fabs
773
774 float   fabs(float)
775 =========
776 */
777
778 void VM_fabs (void)
779 {
780         float   v;
781
782         VM_SAFEPARMCOUNT(1,VM_fabs);
783
784         v = PRVM_G_FLOAT(OFS_PARM0);
785         PRVM_G_FLOAT(OFS_RETURN) = fabs(v);
786 }
787
788 /*
789 =========
790 VM_vtos
791
792 string  vtos(vector)
793 =========
794 */
795
796 void VM_vtos (void)
797 {
798         char s[512];
799
800         VM_SAFEPARMCOUNT(1,VM_vtos);
801
802         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]);
803         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(s);
804 }
805
806 /*
807 =========
808 VM_etos
809
810 string  etos(entity)
811 =========
812 */
813
814 void VM_etos (void)
815 {
816         char s[128];
817
818         VM_SAFEPARMCOUNT(1, VM_etos);
819
820         dpsnprintf (s, sizeof(s), "entity %i", PRVM_G_EDICTNUM(OFS_PARM0));
821         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(s);
822 }
823
824 /*
825 =========
826 VM_stof
827
828 float stof(...[string])
829 =========
830 */
831 void VM_stof(void)
832 {
833         char string[VM_STRINGTEMP_LENGTH];
834         VM_SAFEPARMCOUNTRANGE(1, 8, VM_stof);
835         VM_VarString(0, string, sizeof(string));
836         PRVM_G_FLOAT(OFS_RETURN) = atof(string);
837 }
838
839 /*
840 ========================
841 VM_itof
842
843 float itof(intt ent)
844 ========================
845 */
846 void VM_itof(void)
847 {
848         VM_SAFEPARMCOUNT(1, VM_itof);
849         PRVM_G_FLOAT(OFS_RETURN) = PRVM_G_INT(OFS_PARM0);
850 }
851
852 /*
853 ========================
854 VM_ftoe
855
856 entity ftoe(float num)
857 ========================
858 */
859 void VM_ftoe(void)
860 {
861         int ent;
862         VM_SAFEPARMCOUNT(1, VM_ftoe);
863
864         ent = (int)PRVM_G_FLOAT(OFS_PARM0);
865         if (ent < 0 || ent >= prog->max_edicts || PRVM_PROG_TO_EDICT(ent)->priv.required->free)
866                 ent = 0; // return world instead of a free or invalid entity
867
868         PRVM_G_INT(OFS_RETURN) = ent;
869 }
870
871 /*
872 ========================
873 VM_etof
874
875 float etof(entity ent)
876 ========================
877 */
878 void VM_etof(void)
879 {
880         VM_SAFEPARMCOUNT(1, VM_etof);
881         PRVM_G_FLOAT(OFS_RETURN) = PRVM_G_EDICTNUM(OFS_PARM0);
882 }
883
884 /*
885 =========
886 VM_strftime
887
888 string strftime(float uselocaltime, string[, string ...])
889 =========
890 */
891 void VM_strftime(void)
892 {
893         time_t t;
894 #if _MSC_VER >= 1400
895         struct tm tm;
896         int tmresult;
897 #else
898         struct tm *tm;
899 #endif
900         char fmt[VM_STRINGTEMP_LENGTH];
901         char result[VM_STRINGTEMP_LENGTH];
902         VM_SAFEPARMCOUNTRANGE(2, 8, VM_strftime);
903         VM_VarString(1, fmt, sizeof(fmt));
904         t = time(NULL);
905 #if _MSC_VER >= 1400
906         if (PRVM_G_FLOAT(OFS_PARM0))
907                 tmresult = localtime_s(&tm, &t);
908         else
909                 tmresult = gmtime_s(&tm, &t);
910         if (!tmresult)
911 #else
912         if (PRVM_G_FLOAT(OFS_PARM0))
913                 tm = localtime(&t);
914         else
915                 tm = gmtime(&t);
916         if (!tm)
917 #endif
918         {
919                 PRVM_G_INT(OFS_RETURN) = 0;
920                 return;
921         }
922 #if _MSC_VER >= 1400
923         strftime(result, sizeof(result), fmt, &tm);
924 #else
925         strftime(result, sizeof(result), fmt, tm);
926 #endif
927         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(result);
928 }
929
930 /*
931 =========
932 VM_spawn
933
934 entity spawn()
935 =========
936 */
937
938 void VM_spawn (void)
939 {
940         prvm_edict_t    *ed;
941         VM_SAFEPARMCOUNT(0, VM_spawn);
942         prog->xfunction->builtinsprofile += 20;
943         ed = PRVM_ED_Alloc();
944         VM_RETURN_EDICT(ed);
945 }
946
947 /*
948 =========
949 VM_remove
950
951 remove(entity e)
952 =========
953 */
954
955 void VM_remove (void)
956 {
957         prvm_edict_t    *ed;
958         prog->xfunction->builtinsprofile += 20;
959
960         VM_SAFEPARMCOUNT(1, VM_remove);
961
962         ed = PRVM_G_EDICT(OFS_PARM0);
963         if( PRVM_NUM_FOR_EDICT(ed) <= prog->reserved_edicts )
964         {
965                 if (developer.integer > 0)
966                         VM_Warning( "VM_remove: tried to remove the null entity or a reserved entity!\n" );
967         }
968         else if( ed->priv.required->free )
969         {
970                 if (developer.integer > 0)
971                         VM_Warning( "VM_remove: tried to remove an already freed entity!\n" );
972         }
973         else
974                 PRVM_ED_Free (ed);
975 }
976
977 /*
978 =========
979 VM_find
980
981 entity  find(entity start, .string field, string match)
982 =========
983 */
984
985 void VM_find (void)
986 {
987         int             e;
988         int             f;
989         const char      *s, *t;
990         prvm_edict_t    *ed;
991
992         VM_SAFEPARMCOUNT(3,VM_find);
993
994         e = PRVM_G_EDICTNUM(OFS_PARM0);
995         f = PRVM_G_INT(OFS_PARM1);
996         s = PRVM_G_STRING(OFS_PARM2);
997
998         // LordHavoc: apparently BloodMage does a find(world, weaponmodel, "") and
999         // expects it to find all the monsters, so we must be careful to support
1000         // searching for ""
1001
1002         for (e++ ; e < prog->num_edicts ; e++)
1003         {
1004                 prog->xfunction->builtinsprofile++;
1005                 ed = PRVM_EDICT_NUM(e);
1006                 if (ed->priv.required->free)
1007                         continue;
1008                 t = PRVM_E_STRING(ed,f);
1009                 if (!t)
1010                         t = "";
1011                 if (!strcmp(t,s))
1012                 {
1013                         VM_RETURN_EDICT(ed);
1014                         return;
1015                 }
1016         }
1017
1018         VM_RETURN_EDICT(prog->edicts);
1019 }
1020
1021 /*
1022 =========
1023 VM_findfloat
1024
1025   entity        findfloat(entity start, .float field, float match)
1026   entity        findentity(entity start, .entity field, entity match)
1027 =========
1028 */
1029 // LordHavoc: added this for searching float, int, and entity reference fields
1030 void VM_findfloat (void)
1031 {
1032         int             e;
1033         int             f;
1034         float   s;
1035         prvm_edict_t    *ed;
1036
1037         VM_SAFEPARMCOUNT(3,VM_findfloat);
1038
1039         e = PRVM_G_EDICTNUM(OFS_PARM0);
1040         f = PRVM_G_INT(OFS_PARM1);
1041         s = PRVM_G_FLOAT(OFS_PARM2);
1042
1043         for (e++ ; e < prog->num_edicts ; e++)
1044         {
1045                 prog->xfunction->builtinsprofile++;
1046                 ed = PRVM_EDICT_NUM(e);
1047                 if (ed->priv.required->free)
1048                         continue;
1049                 if (PRVM_E_FLOAT(ed,f) == s)
1050                 {
1051                         VM_RETURN_EDICT(ed);
1052                         return;
1053                 }
1054         }
1055
1056         VM_RETURN_EDICT(prog->edicts);
1057 }
1058
1059 /*
1060 =========
1061 VM_findchain
1062
1063 entity  findchain(.string field, string match)
1064 =========
1065 */
1066 // chained search for strings in entity fields
1067 // entity(.string field, string match) findchain = #402;
1068 void VM_findchain (void)
1069 {
1070         int             i;
1071         int             f;
1072         const char      *s, *t;
1073         prvm_edict_t    *ent, *chain;
1074         int chainfield;
1075
1076         VM_SAFEPARMCOUNTRANGE(2,3,VM_findchain);
1077
1078         if(prog->argc == 3)
1079                 chainfield = PRVM_G_INT(OFS_PARM2);
1080         else
1081                 chainfield = prog->fieldoffsets.chain;
1082         if (chainfield < 0)
1083                 PRVM_ERROR("VM_findchain: %s doesnt have the specified chain field !", PRVM_NAME);
1084
1085         chain = prog->edicts;
1086
1087         f = PRVM_G_INT(OFS_PARM0);
1088         s = PRVM_G_STRING(OFS_PARM1);
1089
1090         // LordHavoc: apparently BloodMage does a find(world, weaponmodel, "") and
1091         // expects it to find all the monsters, so we must be careful to support
1092         // searching for ""
1093
1094         ent = PRVM_NEXT_EDICT(prog->edicts);
1095         for (i = 1;i < prog->num_edicts;i++, ent = PRVM_NEXT_EDICT(ent))
1096         {
1097                 prog->xfunction->builtinsprofile++;
1098                 if (ent->priv.required->free)
1099                         continue;
1100                 t = PRVM_E_STRING(ent,f);
1101                 if (!t)
1102                         t = "";
1103                 if (strcmp(t,s))
1104                         continue;
1105
1106                 PRVM_EDICTFIELDEDICT(ent,chainfield) = PRVM_NUM_FOR_EDICT(chain);
1107                 chain = ent;
1108         }
1109
1110         VM_RETURN_EDICT(chain);
1111 }
1112
1113 /*
1114 =========
1115 VM_findchainfloat
1116
1117 entity  findchainfloat(.string field, float match)
1118 entity  findchainentity(.string field, entity match)
1119 =========
1120 */
1121 // LordHavoc: chained search for float, int, and entity reference fields
1122 // entity(.string field, float match) findchainfloat = #403;
1123 void VM_findchainfloat (void)
1124 {
1125         int             i;
1126         int             f;
1127         float   s;
1128         prvm_edict_t    *ent, *chain;
1129         int chainfield;
1130
1131         VM_SAFEPARMCOUNTRANGE(2, 3, VM_findchainfloat);
1132
1133         if(prog->argc == 3)
1134                 chainfield = PRVM_G_INT(OFS_PARM2);
1135         else
1136                 chainfield = prog->fieldoffsets.chain;
1137         if (chainfield < 0)
1138                 PRVM_ERROR("VM_findchain: %s doesnt have the specified chain field !", PRVM_NAME);
1139
1140         chain = (prvm_edict_t *)prog->edicts;
1141
1142         f = PRVM_G_INT(OFS_PARM0);
1143         s = PRVM_G_FLOAT(OFS_PARM1);
1144
1145         ent = PRVM_NEXT_EDICT(prog->edicts);
1146         for (i = 1;i < prog->num_edicts;i++, ent = PRVM_NEXT_EDICT(ent))
1147         {
1148                 prog->xfunction->builtinsprofile++;
1149                 if (ent->priv.required->free)
1150                         continue;
1151                 if (PRVM_E_FLOAT(ent,f) != s)
1152                         continue;
1153
1154                 PRVM_EDICTFIELDEDICT(ent,chainfield) = PRVM_EDICT_TO_PROG(chain);
1155                 chain = ent;
1156         }
1157
1158         VM_RETURN_EDICT(chain);
1159 }
1160
1161 /*
1162 ========================
1163 VM_findflags
1164
1165 entity  findflags(entity start, .float field, float match)
1166 ========================
1167 */
1168 // LordHavoc: search for flags in float fields
1169 void VM_findflags (void)
1170 {
1171         int             e;
1172         int             f;
1173         int             s;
1174         prvm_edict_t    *ed;
1175
1176         VM_SAFEPARMCOUNT(3, VM_findflags);
1177
1178
1179         e = PRVM_G_EDICTNUM(OFS_PARM0);
1180         f = PRVM_G_INT(OFS_PARM1);
1181         s = (int)PRVM_G_FLOAT(OFS_PARM2);
1182
1183         for (e++ ; e < prog->num_edicts ; e++)
1184         {
1185                 prog->xfunction->builtinsprofile++;
1186                 ed = PRVM_EDICT_NUM(e);
1187                 if (ed->priv.required->free)
1188                         continue;
1189                 if (!PRVM_E_FLOAT(ed,f))
1190                         continue;
1191                 if ((int)PRVM_E_FLOAT(ed,f) & s)
1192                 {
1193                         VM_RETURN_EDICT(ed);
1194                         return;
1195                 }
1196         }
1197
1198         VM_RETURN_EDICT(prog->edicts);
1199 }
1200
1201 /*
1202 ========================
1203 VM_findchainflags
1204
1205 entity  findchainflags(.float field, float match)
1206 ========================
1207 */
1208 // LordHavoc: chained search for flags in float fields
1209 void VM_findchainflags (void)
1210 {
1211         int             i;
1212         int             f;
1213         int             s;
1214         prvm_edict_t    *ent, *chain;
1215         int chainfield;
1216
1217         VM_SAFEPARMCOUNTRANGE(2, 3, VM_findchainflags);
1218
1219         if(prog->argc == 3)
1220                 chainfield = PRVM_G_INT(OFS_PARM2);
1221         else
1222                 chainfield = prog->fieldoffsets.chain;
1223         if (chainfield < 0)
1224                 PRVM_ERROR("VM_findchain: %s doesnt have the specified chain field !", PRVM_NAME);
1225
1226         chain = (prvm_edict_t *)prog->edicts;
1227
1228         f = PRVM_G_INT(OFS_PARM0);
1229         s = (int)PRVM_G_FLOAT(OFS_PARM1);
1230
1231         ent = PRVM_NEXT_EDICT(prog->edicts);
1232         for (i = 1;i < prog->num_edicts;i++, ent = PRVM_NEXT_EDICT(ent))
1233         {
1234                 prog->xfunction->builtinsprofile++;
1235                 if (ent->priv.required->free)
1236                         continue;
1237                 if (!PRVM_E_FLOAT(ent,f))
1238                         continue;
1239                 if (!((int)PRVM_E_FLOAT(ent,f) & s))
1240                         continue;
1241
1242                 PRVM_EDICTFIELDEDICT(ent,chainfield) = PRVM_EDICT_TO_PROG(chain);
1243                 chain = ent;
1244         }
1245
1246         VM_RETURN_EDICT(chain);
1247 }
1248
1249 /*
1250 =========
1251 VM_precache_sound
1252
1253 string  precache_sound (string sample)
1254 =========
1255 */
1256 void VM_precache_sound (void)
1257 {
1258         const char *s;
1259
1260         VM_SAFEPARMCOUNT(1, VM_precache_sound);
1261
1262         s = PRVM_G_STRING(OFS_PARM0);
1263         PRVM_G_INT(OFS_RETURN) = PRVM_G_INT(OFS_PARM0);
1264         //VM_CheckEmptyString(s);
1265
1266         if(snd_initialized.integer && !S_PrecacheSound(s, true, true))
1267         {
1268                 VM_Warning("VM_precache_sound: Failed to load %s for %s\n", s, PRVM_NAME);
1269                 return;
1270         }
1271 }
1272
1273 /*
1274 =================
1275 VM_precache_file
1276
1277 returns the same string as output
1278
1279 does nothing, only used by qcc to build .pak archives
1280 =================
1281 */
1282 void VM_precache_file (void)
1283 {
1284         VM_SAFEPARMCOUNT(1,VM_precache_file);
1285         // precache_file is only used to copy files with qcc, it does nothing
1286         PRVM_G_INT(OFS_RETURN) = PRVM_G_INT(OFS_PARM0);
1287 }
1288
1289 /*
1290 =========
1291 VM_coredump
1292
1293 coredump()
1294 =========
1295 */
1296 void VM_coredump (void)
1297 {
1298         VM_SAFEPARMCOUNT(0,VM_coredump);
1299
1300         Cbuf_AddText("prvm_edicts ");
1301         Cbuf_AddText(PRVM_NAME);
1302         Cbuf_AddText("\n");
1303 }
1304
1305 /*
1306 =========
1307 VM_stackdump
1308
1309 stackdump()
1310 =========
1311 */
1312 void PRVM_StackTrace(void);
1313 void VM_stackdump (void)
1314 {
1315         VM_SAFEPARMCOUNT(0, VM_stackdump);
1316
1317         PRVM_StackTrace();
1318 }
1319
1320 /*
1321 =========
1322 VM_crash
1323
1324 crash()
1325 =========
1326 */
1327
1328 void VM_crash(void)
1329 {
1330         VM_SAFEPARMCOUNT(0, VM_crash);
1331
1332         PRVM_ERROR("Crash called by %s",PRVM_NAME);
1333 }
1334
1335 /*
1336 =========
1337 VM_traceon
1338
1339 traceon()
1340 =========
1341 */
1342 void VM_traceon (void)
1343 {
1344         VM_SAFEPARMCOUNT(0,VM_traceon);
1345
1346         prog->trace = true;
1347 }
1348
1349 /*
1350 =========
1351 VM_traceoff
1352
1353 traceoff()
1354 =========
1355 */
1356 void VM_traceoff (void)
1357 {
1358         VM_SAFEPARMCOUNT(0,VM_traceoff);
1359
1360         prog->trace = false;
1361 }
1362
1363 /*
1364 =========
1365 VM_eprint
1366
1367 eprint(entity e)
1368 =========
1369 */
1370 void VM_eprint (void)
1371 {
1372         VM_SAFEPARMCOUNT(1,VM_eprint);
1373
1374         PRVM_ED_PrintNum (PRVM_G_EDICTNUM(OFS_PARM0), NULL);
1375 }
1376
1377 /*
1378 =========
1379 VM_rint
1380
1381 float   rint(float)
1382 =========
1383 */
1384 void VM_rint (void)
1385 {
1386         float f;
1387         VM_SAFEPARMCOUNT(1,VM_rint);
1388
1389         f = PRVM_G_FLOAT(OFS_PARM0);
1390         if (f > 0)
1391                 PRVM_G_FLOAT(OFS_RETURN) = floor(f + 0.5);
1392         else
1393                 PRVM_G_FLOAT(OFS_RETURN) = ceil(f - 0.5);
1394 }
1395
1396 /*
1397 =========
1398 VM_floor
1399
1400 float   floor(float)
1401 =========
1402 */
1403 void VM_floor (void)
1404 {
1405         VM_SAFEPARMCOUNT(1,VM_floor);
1406
1407         PRVM_G_FLOAT(OFS_RETURN) = floor(PRVM_G_FLOAT(OFS_PARM0));
1408 }
1409
1410 /*
1411 =========
1412 VM_ceil
1413
1414 float   ceil(float)
1415 =========
1416 */
1417 void VM_ceil (void)
1418 {
1419         VM_SAFEPARMCOUNT(1,VM_ceil);
1420
1421         PRVM_G_FLOAT(OFS_RETURN) = ceil(PRVM_G_FLOAT(OFS_PARM0));
1422 }
1423
1424
1425 /*
1426 =============
1427 VM_nextent
1428
1429 entity  nextent(entity)
1430 =============
1431 */
1432 void VM_nextent (void)
1433 {
1434         int             i;
1435         prvm_edict_t    *ent;
1436
1437         VM_SAFEPARMCOUNT(1, VM_nextent);
1438
1439         i = PRVM_G_EDICTNUM(OFS_PARM0);
1440         while (1)
1441         {
1442                 prog->xfunction->builtinsprofile++;
1443                 i++;
1444                 if (i == prog->num_edicts)
1445                 {
1446                         VM_RETURN_EDICT(prog->edicts);
1447                         return;
1448                 }
1449                 ent = PRVM_EDICT_NUM(i);
1450                 if (!ent->priv.required->free)
1451                 {
1452                         VM_RETURN_EDICT(ent);
1453                         return;
1454                 }
1455         }
1456 }
1457
1458 //=============================================================================
1459
1460 /*
1461 ==============
1462 VM_changelevel
1463 server and menu
1464
1465 changelevel(string map)
1466 ==============
1467 */
1468 void VM_changelevel (void)
1469 {
1470         VM_SAFEPARMCOUNT(1, VM_changelevel);
1471
1472         if(!sv.active)
1473         {
1474                 VM_Warning("VM_changelevel: game is not server (%s)\n", PRVM_NAME);
1475                 return;
1476         }
1477
1478 // make sure we don't issue two changelevels
1479         if (svs.changelevel_issued)
1480                 return;
1481         svs.changelevel_issued = true;
1482
1483         Cbuf_AddText (va("changelevel %s\n",PRVM_G_STRING(OFS_PARM0)));
1484 }
1485
1486 /*
1487 =========
1488 VM_sin
1489
1490 float   sin(float)
1491 =========
1492 */
1493 void VM_sin (void)
1494 {
1495         VM_SAFEPARMCOUNT(1,VM_sin);
1496         PRVM_G_FLOAT(OFS_RETURN) = sin(PRVM_G_FLOAT(OFS_PARM0));
1497 }
1498
1499 /*
1500 =========
1501 VM_cos
1502 float   cos(float)
1503 =========
1504 */
1505 void VM_cos (void)
1506 {
1507         VM_SAFEPARMCOUNT(1,VM_cos);
1508         PRVM_G_FLOAT(OFS_RETURN) = cos(PRVM_G_FLOAT(OFS_PARM0));
1509 }
1510
1511 /*
1512 =========
1513 VM_sqrt
1514
1515 float   sqrt(float)
1516 =========
1517 */
1518 void VM_sqrt (void)
1519 {
1520         VM_SAFEPARMCOUNT(1,VM_sqrt);
1521         PRVM_G_FLOAT(OFS_RETURN) = sqrt(PRVM_G_FLOAT(OFS_PARM0));
1522 }
1523
1524 /*
1525 =========
1526 VM_asin
1527
1528 float   asin(float)
1529 =========
1530 */
1531 void VM_asin (void)
1532 {
1533         VM_SAFEPARMCOUNT(1,VM_asin);
1534         PRVM_G_FLOAT(OFS_RETURN) = asin(PRVM_G_FLOAT(OFS_PARM0));
1535 }
1536
1537 /*
1538 =========
1539 VM_acos
1540 float   acos(float)
1541 =========
1542 */
1543 void VM_acos (void)
1544 {
1545         VM_SAFEPARMCOUNT(1,VM_acos);
1546         PRVM_G_FLOAT(OFS_RETURN) = acos(PRVM_G_FLOAT(OFS_PARM0));
1547 }
1548
1549 /*
1550 =========
1551 VM_atan
1552 float   atan(float)
1553 =========
1554 */
1555 void VM_atan (void)
1556 {
1557         VM_SAFEPARMCOUNT(1,VM_atan);
1558         PRVM_G_FLOAT(OFS_RETURN) = atan(PRVM_G_FLOAT(OFS_PARM0));
1559 }
1560
1561 /*
1562 =========
1563 VM_atan2
1564 float   atan2(float,float)
1565 =========
1566 */
1567 void VM_atan2 (void)
1568 {
1569         VM_SAFEPARMCOUNT(2,VM_atan2);
1570         PRVM_G_FLOAT(OFS_RETURN) = atan2(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1));
1571 }
1572
1573 /*
1574 =========
1575 VM_tan
1576 float   tan(float)
1577 =========
1578 */
1579 void VM_tan (void)
1580 {
1581         VM_SAFEPARMCOUNT(1,VM_tan);
1582         PRVM_G_FLOAT(OFS_RETURN) = tan(PRVM_G_FLOAT(OFS_PARM0));
1583 }
1584
1585 /*
1586 =================
1587 VM_randomvec
1588
1589 Returns a vector of length < 1 and > 0
1590
1591 vector randomvec()
1592 =================
1593 */
1594 void VM_randomvec (void)
1595 {
1596         vec3_t          temp;
1597         //float         length;
1598
1599         VM_SAFEPARMCOUNT(0, VM_randomvec);
1600
1601         //// WTF ??
1602         do
1603         {
1604                 temp[0] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1605                 temp[1] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1606                 temp[2] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1607         }
1608         while (DotProduct(temp, temp) >= 1);
1609         VectorCopy (temp, PRVM_G_VECTOR(OFS_RETURN));
1610
1611         /*
1612         temp[0] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1613         temp[1] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1614         temp[2] = (rand()&32767) * (2.0 / 32767.0) - 1.0;
1615         // length returned always > 0
1616         length = (rand()&32766 + 1) * (1.0 / 32767.0) / VectorLength(temp);
1617         VectorScale(temp,length, temp);*/
1618         //VectorCopy(temp, PRVM_G_VECTOR(OFS_RETURN));
1619 }
1620
1621 //=============================================================================
1622
1623 /*
1624 =========
1625 VM_registercvar
1626
1627 float   registercvar (string name, string value[, float flags])
1628 =========
1629 */
1630 void VM_registercvar (void)
1631 {
1632         const char *name, *value;
1633         int     flags;
1634
1635         VM_SAFEPARMCOUNTRANGE(2, 3, VM_registercvar);
1636
1637         name = PRVM_G_STRING(OFS_PARM0);
1638         value = PRVM_G_STRING(OFS_PARM1);
1639         flags = prog->argc >= 3 ? (int)PRVM_G_FLOAT(OFS_PARM2) : 0;
1640         PRVM_G_FLOAT(OFS_RETURN) = 0;
1641
1642         if(flags > CVAR_MAXFLAGSVAL)
1643                 return;
1644
1645 // first check to see if it has already been defined
1646         if (Cvar_FindVar (name))
1647                 return;
1648
1649 // check for overlap with a command
1650         if (Cmd_Exists (name))
1651         {
1652                 VM_Warning("VM_registercvar: %s is a command\n", name);
1653                 return;
1654         }
1655
1656         Cvar_Get(name, value, flags, NULL);
1657
1658         PRVM_G_FLOAT(OFS_RETURN) = 1; // success
1659 }
1660
1661
1662 /*
1663 =================
1664 VM_min
1665
1666 returns the minimum of two supplied floats
1667
1668 float min(float a, float b, ...[float])
1669 =================
1670 */
1671 void VM_min (void)
1672 {
1673         VM_SAFEPARMCOUNTRANGE(2, 8, VM_min);
1674         // LordHavoc: 3+ argument enhancement suggested by FrikaC
1675         if (prog->argc >= 3)
1676         {
1677                 int i;
1678                 float f = PRVM_G_FLOAT(OFS_PARM0);
1679                 for (i = 1;i < prog->argc;i++)
1680                         if (f > PRVM_G_FLOAT((OFS_PARM0+i*3)))
1681                                 f = PRVM_G_FLOAT((OFS_PARM0+i*3));
1682                 PRVM_G_FLOAT(OFS_RETURN) = f;
1683         }
1684         else
1685                 PRVM_G_FLOAT(OFS_RETURN) = min(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1));
1686 }
1687
1688 /*
1689 =================
1690 VM_max
1691
1692 returns the maximum of two supplied floats
1693
1694 float   max(float a, float b, ...[float])
1695 =================
1696 */
1697 void VM_max (void)
1698 {
1699         VM_SAFEPARMCOUNTRANGE(2, 8, VM_max);
1700         // LordHavoc: 3+ argument enhancement suggested by FrikaC
1701         if (prog->argc >= 3)
1702         {
1703                 int i;
1704                 float f = PRVM_G_FLOAT(OFS_PARM0);
1705                 for (i = 1;i < prog->argc;i++)
1706                         if (f < PRVM_G_FLOAT((OFS_PARM0+i*3)))
1707                                 f = PRVM_G_FLOAT((OFS_PARM0+i*3));
1708                 PRVM_G_FLOAT(OFS_RETURN) = f;
1709         }
1710         else
1711                 PRVM_G_FLOAT(OFS_RETURN) = max(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1));
1712 }
1713
1714 /*
1715 =================
1716 VM_bound
1717
1718 returns number bounded by supplied range
1719
1720 float   bound(float min, float value, float max)
1721 =================
1722 */
1723 void VM_bound (void)
1724 {
1725         VM_SAFEPARMCOUNT(3,VM_bound);
1726         PRVM_G_FLOAT(OFS_RETURN) = bound(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1), PRVM_G_FLOAT(OFS_PARM2));
1727 }
1728
1729 /*
1730 =================
1731 VM_pow
1732
1733 returns a raised to power b
1734
1735 float   pow(float a, float b)
1736 =================
1737 */
1738 void VM_pow (void)
1739 {
1740         VM_SAFEPARMCOUNT(2,VM_pow);
1741         PRVM_G_FLOAT(OFS_RETURN) = pow(PRVM_G_FLOAT(OFS_PARM0), PRVM_G_FLOAT(OFS_PARM1));
1742 }
1743
1744 void VM_log (void)
1745 {
1746         VM_SAFEPARMCOUNT(1,VM_log);
1747         PRVM_G_FLOAT(OFS_RETURN) = log(PRVM_G_FLOAT(OFS_PARM0));
1748 }
1749
1750 void VM_Files_Init(void)
1751 {
1752         int i;
1753         for (i = 0;i < PRVM_MAX_OPENFILES;i++)
1754                 prog->openfiles[i] = NULL;
1755 }
1756
1757 void VM_Files_CloseAll(void)
1758 {
1759         int i;
1760         for (i = 0;i < PRVM_MAX_OPENFILES;i++)
1761         {
1762                 if (prog->openfiles[i])
1763                         FS_Close(prog->openfiles[i]);
1764                 prog->openfiles[i] = NULL;
1765         }
1766 }
1767
1768 static qfile_t *VM_GetFileHandle( int index )
1769 {
1770         if (index < 0 || index >= PRVM_MAX_OPENFILES)
1771         {
1772                 Con_Printf("VM_GetFileHandle: invalid file handle %i used in %s\n", index, PRVM_NAME);
1773                 return NULL;
1774         }
1775         if (prog->openfiles[index] == NULL)
1776         {
1777                 Con_Printf("VM_GetFileHandle: no such file handle %i (or file has been closed) in %s\n", index, PRVM_NAME);
1778                 return NULL;
1779         }
1780         return prog->openfiles[index];
1781 }
1782
1783 /*
1784 =========
1785 VM_fopen
1786
1787 float   fopen(string filename, float mode)
1788 =========
1789 */
1790 // float(string filename, float mode) fopen = #110;
1791 // opens a file inside quake/gamedir/data/ (mode is FILE_READ, FILE_APPEND, or FILE_WRITE),
1792 // returns fhandle >= 0 if successful, or fhandle < 0 if unable to open file for any reason
1793 void VM_fopen(void)
1794 {
1795         int filenum, mode;
1796         const char *modestring, *filename;
1797
1798         VM_SAFEPARMCOUNT(2,VM_fopen);
1799
1800         for (filenum = 0;filenum < PRVM_MAX_OPENFILES;filenum++)
1801                 if (prog->openfiles[filenum] == NULL)
1802                         break;
1803         if (filenum >= PRVM_MAX_OPENFILES)
1804         {
1805                 PRVM_G_FLOAT(OFS_RETURN) = -2;
1806                 VM_Warning("VM_fopen: %s ran out of file handles (%i)\n", PRVM_NAME, PRVM_MAX_OPENFILES);
1807                 return;
1808         }
1809         filename = PRVM_G_STRING(OFS_PARM0);
1810         mode = (int)PRVM_G_FLOAT(OFS_PARM1);
1811         switch(mode)
1812         {
1813         case 0: // FILE_READ
1814                 modestring = "rb";
1815                 prog->openfiles[filenum] = FS_OpenVirtualFile(va("data/%s", filename), false);
1816                 if (prog->openfiles[filenum] == NULL)
1817                         prog->openfiles[filenum] = FS_OpenVirtualFile(va("%s", filename), false);
1818                 break;
1819         case 1: // FILE_APPEND
1820                 modestring = "a";
1821                 prog->openfiles[filenum] = FS_OpenRealFile(va("data/%s", filename), modestring, false);
1822                 break;
1823         case 2: // FILE_WRITE
1824                 modestring = "w";
1825                 prog->openfiles[filenum] = FS_OpenRealFile(va("data/%s", filename), modestring, false);
1826                 break;
1827         default:
1828                 PRVM_G_FLOAT(OFS_RETURN) = -3;
1829                 VM_Warning("VM_fopen: %s: no such mode %i (valid: 0 = read, 1 = append, 2 = write)\n", PRVM_NAME, mode);
1830                 return;
1831         }
1832
1833         if (prog->openfiles[filenum] == NULL)
1834         {
1835                 PRVM_G_FLOAT(OFS_RETURN) = -1;
1836                 if (developer_extra.integer)
1837                         VM_Warning("VM_fopen: %s: %s mode %s failed\n", PRVM_NAME, filename, modestring);
1838         }
1839         else
1840         {
1841                 PRVM_G_FLOAT(OFS_RETURN) = filenum;
1842                 if (developer_extra.integer)
1843                         Con_DPrintf("VM_fopen: %s: %s mode %s opened as #%i\n", PRVM_NAME, filename, modestring, filenum);
1844                 prog->openfiles_origin[filenum] = PRVM_AllocationOrigin();
1845         }
1846 }
1847
1848 /*
1849 =========
1850 VM_fclose
1851
1852 fclose(float fhandle)
1853 =========
1854 */
1855 //void(float fhandle) fclose = #111; // closes a file
1856 void VM_fclose(void)
1857 {
1858         int filenum;
1859
1860         VM_SAFEPARMCOUNT(1,VM_fclose);
1861
1862         filenum = (int)PRVM_G_FLOAT(OFS_PARM0);
1863         if (filenum < 0 || filenum >= PRVM_MAX_OPENFILES)
1864         {
1865                 VM_Warning("VM_fclose: invalid file handle %i used in %s\n", filenum, PRVM_NAME);
1866                 return;
1867         }
1868         if (prog->openfiles[filenum] == NULL)
1869         {
1870                 VM_Warning("VM_fclose: no such file handle %i (or file has been closed) in %s\n", filenum, PRVM_NAME);
1871                 return;
1872         }
1873         FS_Close(prog->openfiles[filenum]);
1874         prog->openfiles[filenum] = NULL;
1875         if(prog->openfiles_origin[filenum])
1876                 PRVM_Free((char *)prog->openfiles_origin[filenum]);
1877         if (developer_extra.integer)
1878                 Con_DPrintf("VM_fclose: %s: #%i closed\n", PRVM_NAME, filenum);
1879 }
1880
1881 /*
1882 =========
1883 VM_fgets
1884
1885 string  fgets(float fhandle)
1886 =========
1887 */
1888 //string(float fhandle) fgets = #112; // reads a line of text from the file and returns as a tempstring
1889 void VM_fgets(void)
1890 {
1891         int c, end;
1892         char string[VM_STRINGTEMP_LENGTH];
1893         int filenum;
1894
1895         VM_SAFEPARMCOUNT(1,VM_fgets);
1896
1897         // set the return value regardless of any possible errors
1898         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
1899
1900         filenum = (int)PRVM_G_FLOAT(OFS_PARM0);
1901         if (filenum < 0 || filenum >= PRVM_MAX_OPENFILES)
1902         {
1903                 VM_Warning("VM_fgets: invalid file handle %i used in %s\n", filenum, PRVM_NAME);
1904                 return;
1905         }
1906         if (prog->openfiles[filenum] == NULL)
1907         {
1908                 VM_Warning("VM_fgets: no such file handle %i (or file has been closed) in %s\n", filenum, PRVM_NAME);
1909                 return;
1910         }
1911         end = 0;
1912         for (;;)
1913         {
1914                 c = FS_Getc(prog->openfiles[filenum]);
1915                 if (c == '\r' || c == '\n' || c < 0)
1916                         break;
1917                 if (end < VM_STRINGTEMP_LENGTH - 1)
1918                         string[end++] = c;
1919         }
1920         string[end] = 0;
1921         // remove \n following \r
1922         if (c == '\r')
1923         {
1924                 c = FS_Getc(prog->openfiles[filenum]);
1925                 if (c != '\n')
1926                         FS_UnGetc(prog->openfiles[filenum], (unsigned char)c);
1927         }
1928         if (developer_extra.integer)
1929                 Con_DPrintf("fgets: %s: %s\n", PRVM_NAME, string);
1930         if (c >= 0 || end)
1931                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
1932 }
1933
1934 /*
1935 =========
1936 VM_fputs
1937
1938 fputs(float fhandle, string s)
1939 =========
1940 */
1941 //void(float fhandle, string s) fputs = #113; // writes a line of text to the end of the file
1942 void VM_fputs(void)
1943 {
1944         int stringlength;
1945         char string[VM_STRINGTEMP_LENGTH];
1946         int filenum;
1947
1948         VM_SAFEPARMCOUNT(2,VM_fputs);
1949
1950         filenum = (int)PRVM_G_FLOAT(OFS_PARM0);
1951         if (filenum < 0 || filenum >= PRVM_MAX_OPENFILES)
1952         {
1953                 VM_Warning("VM_fputs: invalid file handle %i used in %s\n", filenum, PRVM_NAME);
1954                 return;
1955         }
1956         if (prog->openfiles[filenum] == NULL)
1957         {
1958                 VM_Warning("VM_fputs: no such file handle %i (or file has been closed) in %s\n", filenum, PRVM_NAME);
1959                 return;
1960         }
1961         VM_VarString(1, string, sizeof(string));
1962         if ((stringlength = (int)strlen(string)))
1963                 FS_Write(prog->openfiles[filenum], string, stringlength);
1964         if (developer_extra.integer)
1965                 Con_DPrintf("fputs: %s: %s\n", PRVM_NAME, string);
1966 }
1967
1968 /*
1969 =========
1970 VM_writetofile
1971
1972         writetofile(float fhandle, entity ent)
1973 =========
1974 */
1975 void VM_writetofile(void)
1976 {
1977         prvm_edict_t * ent;
1978         qfile_t *file;
1979
1980         VM_SAFEPARMCOUNT(2, VM_writetofile);
1981
1982         file = VM_GetFileHandle( (int)PRVM_G_FLOAT(OFS_PARM0) );
1983         if( !file )
1984         {
1985                 VM_Warning("VM_writetofile: invalid or closed file handle\n");
1986                 return;
1987         }
1988
1989         ent = PRVM_G_EDICT(OFS_PARM1);
1990         if(ent->priv.required->free)
1991         {
1992                 VM_Warning("VM_writetofile: %s: entity %i is free !\n", PRVM_NAME, PRVM_NUM_FOR_EDICT(ent));
1993                 return;
1994         }
1995
1996         PRVM_ED_Write (file, ent);
1997 }
1998
1999 // KrimZon - DP_QC_ENTITYDATA
2000 /*
2001 =========
2002 VM_numentityfields
2003
2004 float() numentityfields
2005 Return the number of entity fields - NOT offsets
2006 =========
2007 */
2008 void VM_numentityfields(void)
2009 {
2010         PRVM_G_FLOAT(OFS_RETURN) = prog->numfielddefs;
2011 }
2012
2013 // KrimZon - DP_QC_ENTITYDATA
2014 /*
2015 =========
2016 VM_entityfieldname
2017
2018 string(float fieldnum) entityfieldname
2019 Return name of the specified field as a string, or empty if the field is invalid (warning)
2020 =========
2021 */
2022 void VM_entityfieldname(void)
2023 {
2024         ddef_t *d;
2025         int i = (int)PRVM_G_FLOAT(OFS_PARM0);
2026         
2027         if (i < 0 || i >= prog->numfielddefs)
2028         {
2029         VM_Warning("VM_entityfieldname: %s: field index out of bounds\n", PRVM_NAME);
2030         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString("");
2031                 return;
2032         }
2033         
2034         d = &prog->fielddefs[i];
2035         PRVM_G_INT(OFS_RETURN) = d->s_name; // presuming that s_name points to a string already
2036 }
2037
2038 // KrimZon - DP_QC_ENTITYDATA
2039 /*
2040 =========
2041 VM_entityfieldtype
2042
2043 float(float fieldnum) entityfieldtype
2044 =========
2045 */
2046 void VM_entityfieldtype(void)
2047 {
2048         ddef_t *d;
2049         int i = (int)PRVM_G_FLOAT(OFS_PARM0);
2050         
2051         if (i < 0 || i >= prog->numfielddefs)
2052         {
2053                 VM_Warning("VM_entityfieldtype: %s: field index out of bounds\n", PRVM_NAME);
2054                 PRVM_G_FLOAT(OFS_RETURN) = -1.0;
2055                 return;
2056         }
2057         
2058         d = &prog->fielddefs[i];
2059         PRVM_G_FLOAT(OFS_RETURN) = (float)d->type;
2060 }
2061
2062 // KrimZon - DP_QC_ENTITYDATA
2063 /*
2064 =========
2065 VM_getentityfieldstring
2066
2067 string(float fieldnum, entity ent) getentityfieldstring
2068 =========
2069 */
2070 void VM_getentityfieldstring(void)
2071 {
2072         // put the data into a string
2073         ddef_t *d;
2074         int type, j;
2075         int *v;
2076         prvm_edict_t * ent;
2077         int i = (int)PRVM_G_FLOAT(OFS_PARM0);
2078         
2079         if (i < 0 || i >= prog->numfielddefs)
2080         {
2081         VM_Warning("VM_entityfielddata: %s: field index out of bounds\n", PRVM_NAME);
2082                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString("");
2083                 return;
2084         }
2085         
2086         d = &prog->fielddefs[i];
2087         
2088         // get the entity
2089         ent = PRVM_G_EDICT(OFS_PARM1);
2090         if(ent->priv.required->free)
2091         {
2092                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString("");
2093                 VM_Warning("VM_entityfielddata: %s: entity %i is free !\n", PRVM_NAME, PRVM_NUM_FOR_EDICT(ent));
2094                 return;
2095         }
2096         v = (int *)((char *)ent->fields.vp + d->ofs*4);
2097         
2098         // if it's 0 or blank, return an empty string
2099         type = d->type & ~DEF_SAVEGLOBAL;
2100         for (j=0 ; j<prvm_type_size[type] ; j++)
2101                 if (v[j])
2102                         break;
2103         if (j == prvm_type_size[type])
2104         {
2105                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString("");
2106                 return;
2107         }
2108                 
2109         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(PRVM_UglyValueString((etype_t)d->type, (prvm_eval_t *)v));
2110 }
2111
2112 // KrimZon - DP_QC_ENTITYDATA
2113 /*
2114 =========
2115 VM_putentityfieldstring
2116
2117 float(float fieldnum, entity ent, string s) putentityfieldstring
2118 =========
2119 */
2120 void VM_putentityfieldstring(void)
2121 {
2122         ddef_t *d;
2123         prvm_edict_t * ent;
2124         int i = (int)PRVM_G_FLOAT(OFS_PARM0);
2125
2126         if (i < 0 || i >= prog->numfielddefs)
2127         {
2128         VM_Warning("VM_entityfielddata: %s: field index out of bounds\n", PRVM_NAME);
2129                 PRVM_G_FLOAT(OFS_RETURN) = 0.0f;
2130                 return;
2131         }
2132
2133         d = &prog->fielddefs[i];
2134
2135         // get the entity
2136         ent = PRVM_G_EDICT(OFS_PARM1);
2137         if(ent->priv.required->free)
2138         {
2139                 VM_Warning("VM_entityfielddata: %s: entity %i is free !\n", PRVM_NAME, PRVM_NUM_FOR_EDICT(ent));
2140                 PRVM_G_FLOAT(OFS_RETURN) = 0.0f;
2141                 return;
2142         }
2143
2144         // parse the string into the value
2145         PRVM_G_FLOAT(OFS_RETURN) = ( PRVM_ED_ParseEpair(ent, d, PRVM_G_STRING(OFS_PARM2), false) ) ? 1.0f : 0.0f;
2146 }
2147
2148 /*
2149 =========
2150 VM_strlen
2151
2152 float   strlen(string s)
2153 =========
2154 */
2155 //float(string s) strlen = #114; // returns how many characters are in a string
2156 void VM_strlen(void)
2157 {
2158         VM_SAFEPARMCOUNT(1,VM_strlen);
2159
2160         //PRVM_G_FLOAT(OFS_RETURN) = strlen(PRVM_G_STRING(OFS_PARM0));
2161         PRVM_G_FLOAT(OFS_RETURN) = u8_strlen(PRVM_G_STRING(OFS_PARM0));
2162 }
2163
2164 // DRESK - Decolorized String
2165 /*
2166 =========
2167 VM_strdecolorize
2168
2169 string  strdecolorize(string s)
2170 =========
2171 */
2172 // string (string s) strdecolorize = #472; // returns the passed in string with color codes stripped
2173 void VM_strdecolorize(void)
2174 {
2175         char szNewString[VM_STRINGTEMP_LENGTH];
2176         const char *szString;
2177
2178         // Prepare Strings
2179         VM_SAFEPARMCOUNT(1,VM_strdecolorize);
2180         szString = PRVM_G_STRING(OFS_PARM0);
2181         COM_StringDecolorize(szString, 0, szNewString, sizeof(szNewString), TRUE);
2182         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
2183 }
2184
2185 // DRESK - String Length (not counting color codes)
2186 /*
2187 =========
2188 VM_strlennocol
2189
2190 float   strlennocol(string s)
2191 =========
2192 */
2193 // float(string s) strlennocol = #471; // returns how many characters are in a string not including color codes
2194 // For example, ^2Dresk returns a length of 5
2195 void VM_strlennocol(void)
2196 {
2197         const char *szString;
2198         int nCnt;
2199
2200         VM_SAFEPARMCOUNT(1,VM_strlennocol);
2201
2202         szString = PRVM_G_STRING(OFS_PARM0);
2203
2204         //nCnt = COM_StringLengthNoColors(szString, 0, NULL);
2205         nCnt = u8_COM_StringLengthNoColors(szString, 0, NULL);
2206
2207         PRVM_G_FLOAT(OFS_RETURN) = nCnt;
2208 }
2209
2210 // DRESK - String to Uppercase and Lowercase
2211 /*
2212 =========
2213 VM_strtolower
2214
2215 string  strtolower(string s)
2216 =========
2217 */
2218 // string (string s) strtolower = #480; // returns passed in string in lowercase form
2219 void VM_strtolower(void)
2220 {
2221         char szNewString[VM_STRINGTEMP_LENGTH];
2222         const char *szString;
2223
2224         // Prepare Strings
2225         VM_SAFEPARMCOUNT(1,VM_strtolower);
2226         szString = PRVM_G_STRING(OFS_PARM0);
2227
2228         COM_ToLowerString(szString, szNewString, sizeof(szNewString) );
2229
2230         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
2231 }
2232
2233 /*
2234 =========
2235 VM_strtoupper
2236
2237 string  strtoupper(string s)
2238 =========
2239 */
2240 // string (string s) strtoupper = #481; // returns passed in string in uppercase form
2241 void VM_strtoupper(void)
2242 {
2243         char szNewString[VM_STRINGTEMP_LENGTH];
2244         const char *szString;
2245
2246         // Prepare Strings
2247         VM_SAFEPARMCOUNT(1,VM_strtoupper);
2248         szString = PRVM_G_STRING(OFS_PARM0);
2249
2250         COM_ToUpperString(szString, szNewString, sizeof(szNewString) );
2251
2252         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
2253 }
2254
2255 /*
2256 =========
2257 VM_strcat
2258
2259 string strcat(string,string,...[string])
2260 =========
2261 */
2262 //string(string s1, string s2) strcat = #115;
2263 // concatenates two strings (for example "abc", "def" would return "abcdef")
2264 // and returns as a tempstring
2265 void VM_strcat(void)
2266 {
2267         char s[VM_STRINGTEMP_LENGTH];
2268         VM_SAFEPARMCOUNTRANGE(1, 8, VM_strcat);
2269
2270         VM_VarString(0, s, sizeof(s));
2271         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(s);
2272 }
2273
2274 /*
2275 =========
2276 VM_substring
2277
2278 string  substring(string s, float start, float length)
2279 =========
2280 */
2281 // string(string s, float start, float length) substring = #116;
2282 // returns a section of a string as a tempstring
2283 void VM_substring(void)
2284 {
2285         int start, length;
2286         int u_slength = 0, u_start;
2287         size_t u_length;
2288         const char *s;
2289         char string[VM_STRINGTEMP_LENGTH];
2290
2291         VM_SAFEPARMCOUNT(3,VM_substring);
2292
2293         /*
2294         s = PRVM_G_STRING(OFS_PARM0);
2295         start = (int)PRVM_G_FLOAT(OFS_PARM1);
2296         length = (int)PRVM_G_FLOAT(OFS_PARM2);
2297         slength = strlen(s);
2298
2299         if (start < 0) // FTE_STRINGS feature
2300                 start += slength;
2301         start = bound(0, start, slength);
2302
2303         if (length < 0) // FTE_STRINGS feature
2304                 length += slength - start + 1;
2305         maxlen = min((int)sizeof(string) - 1, slength - start);
2306         length = bound(0, length, maxlen);
2307
2308         memcpy(string, s + start, length);
2309         string[length] = 0;
2310         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
2311         */
2312         
2313         s = PRVM_G_STRING(OFS_PARM0);
2314         start = (int)PRVM_G_FLOAT(OFS_PARM1);
2315         length = (int)PRVM_G_FLOAT(OFS_PARM2);
2316
2317         if (start < 0) // FTE_STRINGS feature
2318         {
2319                 u_slength = u8_strlen(s);
2320                 start += u_slength;
2321                 start = bound(0, start, u_slength);
2322         }
2323
2324         if (length < 0) // FTE_STRINGS feature
2325         {
2326                 if (!u_slength) // it's not calculated when it's not needed above
2327                         u_slength = u8_strlen(s);
2328                 length += u_slength - start + 1;
2329         }
2330                 
2331         // positive start, positive length
2332         u_start = u8_byteofs(s, start, NULL);
2333         if (u_start < 0)
2334         {
2335                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString("");
2336                 return;
2337         }
2338         u_length = u8_bytelen(s + u_start, length);
2339         if (u_length >= sizeof(string)-1)
2340                 u_length = sizeof(string)-1;
2341         
2342         memcpy(string, s + u_start, u_length);
2343         string[u_length] = 0;
2344         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
2345 }
2346
2347 /*
2348 =========
2349 VM_strreplace
2350
2351 string(string search, string replace, string subject) strreplace = #484;
2352 =========
2353 */
2354 // replaces all occurrences of search with replace in the string subject, and returns the result
2355 void VM_strreplace(void)
2356 {
2357         int i, j, si;
2358         const char *search, *replace, *subject;
2359         char string[VM_STRINGTEMP_LENGTH];
2360         int search_len, replace_len, subject_len;
2361
2362         VM_SAFEPARMCOUNT(3,VM_strreplace);
2363
2364         search = PRVM_G_STRING(OFS_PARM0);
2365         replace = PRVM_G_STRING(OFS_PARM1);
2366         subject = PRVM_G_STRING(OFS_PARM2);
2367
2368         search_len = (int)strlen(search);
2369         replace_len = (int)strlen(replace);
2370         subject_len = (int)strlen(subject);
2371
2372         si = 0;
2373         for (i = 0; i <= subject_len - search_len; i++)
2374         {
2375                 for (j = 0; j < search_len; j++) // thus, i+j < subject_len
2376                         if (subject[i+j] != search[j])
2377                                 break;
2378                 if (j == search_len)
2379                 {
2380                         // NOTE: if search_len == 0, we always hit THIS case, and never the other
2381                         // found it at offset 'i'
2382                         for (j = 0; j < replace_len && si < (int)sizeof(string) - 1; j++)
2383                                 string[si++] = replace[j];
2384                         if(search_len > 0)
2385                         {
2386                                 i += search_len - 1;
2387                         }
2388                         else
2389                         {
2390                                 // the above would subtract 1 from i... so we
2391                                 // don't do that, but instead output the next
2392                                 // char
2393                                 if (si < (int)sizeof(string) - 1)
2394                                         string[si++] = subject[i];
2395                         }
2396                 }
2397                 else
2398                 {
2399                         // in THIS case, we know search_len > 0, thus i < subject_len
2400                         // not found
2401                         if (si < (int)sizeof(string) - 1)
2402                                 string[si++] = subject[i];
2403                 }
2404         }
2405         // remaining chars (these cannot match)
2406         for (; i < subject_len; i++)
2407                 if (si < (int)sizeof(string) - 1)
2408                         string[si++] = subject[i];
2409         string[si] = '\0';
2410
2411         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
2412 }
2413
2414 /*
2415 =========
2416 VM_strireplace
2417
2418 string(string search, string replace, string subject) strireplace = #485;
2419 =========
2420 */
2421 // case-insensitive version of strreplace
2422 void VM_strireplace(void)
2423 {
2424         int i, j, si;
2425         const char *search, *replace, *subject;
2426         char string[VM_STRINGTEMP_LENGTH];
2427         int search_len, replace_len, subject_len;
2428
2429         VM_SAFEPARMCOUNT(3,VM_strreplace);
2430
2431         search = PRVM_G_STRING(OFS_PARM0);
2432         replace = PRVM_G_STRING(OFS_PARM1);
2433         subject = PRVM_G_STRING(OFS_PARM2);
2434
2435         search_len = (int)strlen(search);
2436         replace_len = (int)strlen(replace);
2437         subject_len = (int)strlen(subject);
2438
2439         si = 0;
2440         for (i = 0; i <= subject_len - search_len; i++)
2441         {
2442                 for (j = 0; j < search_len; j++) // thus, i+j < subject_len
2443                         if (tolower(subject[i+j]) != tolower(search[j]))
2444                                 break;
2445                 if (j == search_len)
2446                 {
2447                         // NOTE: if search_len == 0, we always hit THIS case, and never the other
2448                         // found it at offset 'i'
2449                         for (j = 0; j < replace_len && si < (int)sizeof(string) - 1; j++)
2450                                 string[si++] = replace[j];
2451                         if(search_len > 0)
2452                         {
2453                                 i += search_len - 1;
2454                         }
2455                         else
2456                         {
2457                                 // the above would subtract 1 from i... so we
2458                                 // don't do that, but instead output the next
2459                                 // char
2460                                 if (si < (int)sizeof(string) - 1)
2461                                         string[si++] = subject[i];
2462                         }
2463                 }
2464                 else
2465                 {
2466                         // in THIS case, we know search_len > 0, thus i < subject_len
2467                         // not found
2468                         if (si < (int)sizeof(string) - 1)
2469                                 string[si++] = subject[i];
2470                 }
2471         }
2472         // remaining chars (these cannot match)
2473         for (; i < subject_len; i++)
2474                 if (si < (int)sizeof(string) - 1)
2475                         string[si++] = subject[i];
2476         string[si] = '\0';
2477
2478         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(string);
2479 }
2480
2481 /*
2482 =========
2483 VM_stov
2484
2485 vector  stov(string s)
2486 =========
2487 */
2488 //vector(string s) stov = #117; // returns vector value from a string
2489 void VM_stov(void)
2490 {
2491         char string[VM_STRINGTEMP_LENGTH];
2492
2493         VM_SAFEPARMCOUNT(1,VM_stov);
2494
2495         VM_VarString(0, string, sizeof(string));
2496         Math_atov(string, PRVM_G_VECTOR(OFS_RETURN));
2497 }
2498
2499 /*
2500 =========
2501 VM_strzone
2502
2503 string  strzone(string s)
2504 =========
2505 */
2506 //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)
2507 void VM_strzone(void)
2508 {
2509         char *out;
2510         char string[VM_STRINGTEMP_LENGTH];
2511         size_t alloclen;
2512
2513         VM_SAFEPARMCOUNT(1,VM_strzone);
2514
2515         VM_VarString(0, string, sizeof(string));
2516         alloclen = strlen(string) + 1;
2517         PRVM_G_INT(OFS_RETURN) = PRVM_AllocString(alloclen, &out);
2518         memcpy(out, string, alloclen);
2519 }
2520
2521 /*
2522 =========
2523 VM_strunzone
2524
2525 strunzone(string s)
2526 =========
2527 */
2528 //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!!!)
2529 void VM_strunzone(void)
2530 {
2531         VM_SAFEPARMCOUNT(1,VM_strunzone);
2532         PRVM_FreeString(PRVM_G_INT(OFS_PARM0));
2533 }
2534
2535 /*
2536 =========
2537 VM_command (used by client and menu)
2538
2539 clientcommand(float client, string s) (for client and menu)
2540 =========
2541 */
2542 //void(entity e, string s) clientcommand = #440; // executes a command string as if it came from the specified client
2543 //this function originally written by KrimZon, made shorter by LordHavoc
2544 void VM_clcommand (void)
2545 {
2546         client_t *temp_client;
2547         int i;
2548
2549         VM_SAFEPARMCOUNT(2,VM_clcommand);
2550
2551         i = (int)PRVM_G_FLOAT(OFS_PARM0);
2552         if (!sv.active  || i < 0 || i >= svs.maxclients || !svs.clients[i].active)
2553         {
2554                 VM_Warning("VM_clientcommand: %s: invalid client/server is not active !\n", PRVM_NAME);
2555                 return;
2556         }
2557
2558         temp_client = host_client;
2559         host_client = svs.clients + i;
2560         Cmd_ExecuteString (PRVM_G_STRING(OFS_PARM1), src_client);
2561         host_client = temp_client;
2562 }
2563
2564
2565 /*
2566 =========
2567 VM_tokenize
2568
2569 float tokenize(string s)
2570 =========
2571 */
2572 //float(string s) tokenize = #441; // takes apart a string into individal words (access them with argv), returns how many
2573 //this function originally written by KrimZon, made shorter by LordHavoc
2574 //20040203: rewritten by LordHavoc (no longer uses allocations)
2575 static int num_tokens = 0;
2576 static int tokens[VM_STRINGTEMP_LENGTH / 2];
2577 static int tokens_startpos[VM_STRINGTEMP_LENGTH / 2];
2578 static int tokens_endpos[VM_STRINGTEMP_LENGTH / 2];
2579 static char tokenize_string[VM_STRINGTEMP_LENGTH];
2580 void VM_tokenize (void)
2581 {
2582         const char *p;
2583
2584         VM_SAFEPARMCOUNT(1,VM_tokenize);
2585
2586         strlcpy(tokenize_string, PRVM_G_STRING(OFS_PARM0), sizeof(tokenize_string));
2587         p = tokenize_string;
2588
2589         num_tokens = 0;
2590         for(;;)
2591         {
2592                 if (num_tokens >= (int)(sizeof(tokens)/sizeof(tokens[0])))
2593                         break;
2594
2595                 // skip whitespace here to find token start pos
2596                 while(*p && ISWHITESPACE(*p))
2597                         ++p;
2598
2599                 tokens_startpos[num_tokens] = p - tokenize_string;
2600                 if(!COM_ParseToken_VM_Tokenize(&p, false))
2601                         break;
2602                 tokens_endpos[num_tokens] = p - tokenize_string;
2603                 tokens[num_tokens] = PRVM_SetTempString(com_token);
2604                 ++num_tokens;
2605         }
2606
2607         PRVM_G_FLOAT(OFS_RETURN) = num_tokens;
2608 }
2609
2610 //float(string s) tokenize = #514; // takes apart a string into individal words (access them with argv), returns how many
2611 void VM_tokenize_console (void)
2612 {
2613         const char *p;
2614
2615         VM_SAFEPARMCOUNT(1,VM_tokenize);
2616
2617         strlcpy(tokenize_string, PRVM_G_STRING(OFS_PARM0), sizeof(tokenize_string));
2618         p = tokenize_string;
2619
2620         num_tokens = 0;
2621         for(;;)
2622         {
2623                 if (num_tokens >= (int)(sizeof(tokens)/sizeof(tokens[0])))
2624                         break;
2625
2626                 // skip whitespace here to find token start pos
2627                 while(*p && ISWHITESPACE(*p))
2628                         ++p;
2629
2630                 tokens_startpos[num_tokens] = p - tokenize_string;
2631                 if(!COM_ParseToken_Console(&p))
2632                         break;
2633                 tokens_endpos[num_tokens] = p - tokenize_string;
2634                 tokens[num_tokens] = PRVM_SetTempString(com_token);
2635                 ++num_tokens;
2636         }
2637
2638         PRVM_G_FLOAT(OFS_RETURN) = num_tokens;
2639 }
2640
2641 /*
2642 =========
2643 VM_tokenizebyseparator
2644
2645 float tokenizebyseparator(string s, string separator1, ...)
2646 =========
2647 */
2648 //float(string s, string separator1, ...) tokenizebyseparator = #479; // takes apart a string into individal words (access them with argv), returns how many
2649 //this function returns the token preceding each instance of a separator (of
2650 //which there can be multiple), and the text following the last separator
2651 //useful for parsing certain kinds of data like IP addresses
2652 //example:
2653 //numnumbers = tokenizebyseparator("10.1.2.3", ".");
2654 //returns 4 and the tokens "10" "1" "2" "3".
2655 void VM_tokenizebyseparator (void)
2656 {
2657         int j, k;
2658         int numseparators;
2659         int separatorlen[7];
2660         const char *separators[7];
2661         const char *p, *p0;
2662         const char *token;
2663         char tokentext[MAX_INPUTLINE];
2664
2665         VM_SAFEPARMCOUNTRANGE(2, 8,VM_tokenizebyseparator);
2666
2667         strlcpy(tokenize_string, PRVM_G_STRING(OFS_PARM0), sizeof(tokenize_string));
2668         p = tokenize_string;
2669
2670         numseparators = 0;
2671         for (j = 1;j < prog->argc;j++)
2672         {
2673                 // skip any blank separator strings
2674                 const char *s = PRVM_G_STRING(OFS_PARM0+j*3);
2675                 if (!s[0])
2676                         continue;
2677                 separators[numseparators] = s;
2678                 separatorlen[numseparators] = strlen(s);
2679                 numseparators++;
2680         }
2681
2682         num_tokens = 0;
2683         j = 0;
2684
2685         while (num_tokens < (int)(sizeof(tokens)/sizeof(tokens[0])))
2686         {
2687                 token = tokentext + j;
2688                 tokens_startpos[num_tokens] = p - tokenize_string;
2689                 p0 = p;
2690                 while (*p)
2691                 {
2692                         for (k = 0;k < numseparators;k++)
2693                         {
2694                                 if (!strncmp(p, separators[k], separatorlen[k]))
2695                                 {
2696                                         p += separatorlen[k];
2697                                         break;
2698                                 }
2699                         }
2700                         if (k < numseparators)
2701                                 break;
2702                         if (j < (int)sizeof(tokentext)-1)
2703                                 tokentext[j++] = *p;
2704                         p++;
2705                         p0 = p;
2706                 }
2707                 tokens_endpos[num_tokens] = p0 - tokenize_string;
2708                 if (j >= (int)sizeof(tokentext))
2709                         break;
2710                 tokentext[j++] = 0;
2711                 tokens[num_tokens++] = PRVM_SetTempString(token);
2712                 if (!*p)
2713                         break;
2714         }
2715
2716         PRVM_G_FLOAT(OFS_RETURN) = num_tokens;
2717 }
2718
2719 //string(float n) argv = #442; // returns a word from the tokenized string (returns nothing for an invalid index)
2720 //this function originally written by KrimZon, made shorter by LordHavoc
2721 void VM_argv (void)
2722 {
2723         int token_num;
2724
2725         VM_SAFEPARMCOUNT(1,VM_argv);
2726
2727         token_num = (int)PRVM_G_FLOAT(OFS_PARM0);
2728
2729         if(token_num < 0)
2730                 token_num += num_tokens;
2731
2732         if (token_num >= 0 && token_num < num_tokens)
2733                 PRVM_G_INT(OFS_RETURN) = tokens[token_num];
2734         else
2735                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
2736 }
2737
2738 //float(float n) argv_start_index = #515; // returns the start index of a token
2739 void VM_argv_start_index (void)
2740 {
2741         int token_num;
2742
2743         VM_SAFEPARMCOUNT(1,VM_argv);
2744
2745         token_num = (int)PRVM_G_FLOAT(OFS_PARM0);
2746
2747         if(token_num < 0)
2748                 token_num += num_tokens;
2749
2750         if (token_num >= 0 && token_num < num_tokens)
2751                 PRVM_G_FLOAT(OFS_RETURN) = tokens_startpos[token_num];
2752         else
2753                 PRVM_G_FLOAT(OFS_RETURN) = -1;
2754 }
2755
2756 //float(float n) argv_end_index = #516; // returns the end index of a token
2757 void VM_argv_end_index (void)
2758 {
2759         int token_num;
2760
2761         VM_SAFEPARMCOUNT(1,VM_argv);
2762
2763         token_num = (int)PRVM_G_FLOAT(OFS_PARM0);
2764
2765         if(token_num < 0)
2766                 token_num += num_tokens;
2767
2768         if (token_num >= 0 && token_num < num_tokens)
2769                 PRVM_G_FLOAT(OFS_RETURN) = tokens_endpos[token_num];
2770         else
2771                 PRVM_G_FLOAT(OFS_RETURN) = -1;
2772 }
2773
2774 /*
2775 =========
2776 VM_isserver
2777
2778 float   isserver()
2779 =========
2780 */
2781 void VM_isserver(void)
2782 {
2783         VM_SAFEPARMCOUNT(0,VM_serverstate);
2784
2785         PRVM_G_FLOAT(OFS_RETURN) = sv.active && (svs.maxclients > 1 || cls.state == ca_dedicated);
2786 }
2787
2788 /*
2789 =========
2790 VM_clientcount
2791
2792 float   clientcount()
2793 =========
2794 */
2795 void VM_clientcount(void)
2796 {
2797         VM_SAFEPARMCOUNT(0,VM_clientcount);
2798
2799         PRVM_G_FLOAT(OFS_RETURN) = svs.maxclients;
2800 }
2801
2802 /*
2803 =========
2804 VM_clientstate
2805
2806 float   clientstate()
2807 =========
2808 */
2809 void VM_clientstate(void)
2810 {
2811         VM_SAFEPARMCOUNT(0,VM_clientstate);
2812
2813
2814         switch( cls.state ) {
2815                 case ca_uninitialized:
2816                 case ca_dedicated:
2817                         PRVM_G_FLOAT(OFS_RETURN) = 0;
2818                         break;
2819                 case ca_disconnected:
2820                         PRVM_G_FLOAT(OFS_RETURN) = 1;
2821                         break;
2822                 case ca_connected:
2823                         PRVM_G_FLOAT(OFS_RETURN) = 2;
2824                         break;
2825                 default:
2826                         // should never be reached!
2827                         break;
2828         }
2829 }
2830
2831 /*
2832 =========
2833 VM_getostype
2834
2835 float   getostype(void)
2836 =========
2837 */ // not used at the moment -> not included in the common list
2838 void VM_getostype(void)
2839 {
2840         VM_SAFEPARMCOUNT(0,VM_getostype);
2841
2842         /*
2843         OS_WINDOWS
2844         OS_LINUX
2845         OS_MAC - not supported
2846         */
2847
2848 #ifdef WIN32
2849         PRVM_G_FLOAT(OFS_RETURN) = 0;
2850 #elif defined(MACOSX)
2851         PRVM_G_FLOAT(OFS_RETURN) = 2;
2852 #else
2853         PRVM_G_FLOAT(OFS_RETURN) = 1;
2854 #endif
2855 }
2856
2857 /*
2858 =========
2859 VM_gettime
2860
2861 float   gettime(void)
2862 =========
2863 */
2864 extern double host_starttime;
2865 float CDAudio_GetPosition(void);
2866 void VM_gettime(void)
2867 {
2868         int timer_index;
2869
2870         VM_SAFEPARMCOUNTRANGE(0,1,VM_gettime);
2871
2872         if(prog->argc == 0)
2873         {
2874                 PRVM_G_FLOAT(OFS_RETURN) = (float) realtime;
2875         }
2876         else
2877         {
2878                 timer_index = (int) PRVM_G_FLOAT(OFS_PARM0);
2879         switch(timer_index)
2880         {
2881             case 0: // GETTIME_FRAMESTART
2882                 PRVM_G_FLOAT(OFS_RETURN) = (float) realtime;
2883                 break;
2884             case 1: // GETTIME_REALTIME
2885                 PRVM_G_FLOAT(OFS_RETURN) = (float) Sys_DoubleTime();
2886                 break;
2887             case 2: // GETTIME_HIRES
2888                 PRVM_G_FLOAT(OFS_RETURN) = (float) (Sys_DoubleTime() - realtime);
2889                 break;
2890             case 3: // GETTIME_UPTIME
2891                 PRVM_G_FLOAT(OFS_RETURN) = (float) (Sys_DoubleTime() - host_starttime);
2892                 break;
2893             case 4: // GETTIME_CDTRACK
2894                 PRVM_G_FLOAT(OFS_RETURN) = (float) CDAudio_GetPosition();
2895                 break;
2896                         default:
2897                                 VM_Warning("VM_gettime: %s: unsupported timer specified, returning realtime\n", PRVM_NAME);
2898                                 PRVM_G_FLOAT(OFS_RETURN) = (float) realtime;
2899                                 break;
2900                 }
2901         }
2902 }
2903
2904 /*
2905 =========
2906 VM_getsoundtime
2907
2908 float   getsoundtime(void)
2909 =========
2910 */
2911
2912 void VM_getsoundtime (void)
2913 {
2914         int entnum, entchannel, pnum;
2915         VM_SAFEPARMCOUNT(2,VM_getsoundtime);
2916
2917         pnum = PRVM_GetProgNr();
2918         if (pnum == PRVM_MENUPROG)
2919         {
2920                 VM_Warning("VM_getsoundtime: %s: not supported on this progs\n", PRVM_NAME);
2921                 PRVM_G_FLOAT(OFS_RETURN) = -1;
2922                 return;
2923         }
2924         entnum = ((pnum == PRVM_CLIENTPROG) ? MAX_EDICTS : 0) + PRVM_NUM_FOR_EDICT(PRVM_G_EDICT(OFS_PARM0));
2925         entchannel = (int)PRVM_G_FLOAT(OFS_PARM1);
2926         entchannel = CHAN_USER2ENGINE(entchannel);
2927         if (!IS_CHAN(entchannel))
2928                 VM_Warning("VM_getsoundtime: %s: bad channel %i\n", PRVM_NAME, entchannel);
2929         PRVM_G_FLOAT(OFS_RETURN) = (float)S_GetEntChannelPosition(entnum, entchannel);
2930 }
2931
2932 /*
2933 =========
2934 VM_GetSoundLen
2935
2936 string  soundlength (string sample)
2937 =========
2938 */
2939 void VM_soundlength (void)
2940 {
2941         const char *s;
2942
2943         VM_SAFEPARMCOUNT(1, VM_soundlength);
2944
2945         s = PRVM_G_STRING(OFS_PARM0);
2946         PRVM_G_FLOAT(OFS_RETURN) = S_SoundLength(s);
2947 }
2948
2949 /*
2950 =========
2951 VM_loadfromdata
2952
2953 loadfromdata(string data)
2954 =========
2955 */
2956 void VM_loadfromdata(void)
2957 {
2958         VM_SAFEPARMCOUNT(1,VM_loadentsfromfile);
2959
2960         PRVM_ED_LoadFromFile(PRVM_G_STRING(OFS_PARM0));
2961 }
2962
2963 /*
2964 ========================
2965 VM_parseentitydata
2966
2967 parseentitydata(entity ent, string data)
2968 ========================
2969 */
2970 void VM_parseentitydata(void)
2971 {
2972         prvm_edict_t *ent;
2973         const char *data;
2974
2975         VM_SAFEPARMCOUNT(2, VM_parseentitydata);
2976
2977         // get edict and test it
2978         ent = PRVM_G_EDICT(OFS_PARM0);
2979         if (ent->priv.required->free)
2980                 PRVM_ERROR ("VM_parseentitydata: %s: Can only set already spawned entities (entity %i is free)!", PRVM_NAME, PRVM_NUM_FOR_EDICT(ent));
2981
2982         data = PRVM_G_STRING(OFS_PARM1);
2983
2984         // parse the opening brace
2985         if (!COM_ParseToken_Simple(&data, false, false) || com_token[0] != '{' )
2986                 PRVM_ERROR ("VM_parseentitydata: %s: Couldn't parse entity data:\n%s", PRVM_NAME, data );
2987
2988         PRVM_ED_ParseEdict (data, ent);
2989 }
2990
2991 /*
2992 =========
2993 VM_loadfromfile
2994
2995 loadfromfile(string file)
2996 =========
2997 */
2998 void VM_loadfromfile(void)
2999 {
3000         const char *filename;
3001         char *data;
3002
3003         VM_SAFEPARMCOUNT(1,VM_loadfromfile);
3004
3005         filename = PRVM_G_STRING(OFS_PARM0);
3006         if (FS_CheckNastyPath(filename, false))
3007         {
3008                 PRVM_G_FLOAT(OFS_RETURN) = -4;
3009                 VM_Warning("VM_loadfromfile: %s dangerous or non-portable filename \"%s\" not allowed. (contains : or \\ or begins with .. or /)\n", PRVM_NAME, filename);
3010                 return;
3011         }
3012
3013         // not conform with VM_fopen
3014         data = (char *)FS_LoadFile(filename, tempmempool, false, NULL);
3015         if (data == NULL)
3016                 PRVM_G_FLOAT(OFS_RETURN) = -1;
3017
3018         PRVM_ED_LoadFromFile(data);
3019
3020         if(data)
3021                 Mem_Free(data);
3022 }
3023
3024
3025 /*
3026 =========
3027 VM_modulo
3028
3029 float   mod(float val, float m)
3030 =========
3031 */
3032 void VM_modulo(void)
3033 {
3034         int val, m;
3035         VM_SAFEPARMCOUNT(2,VM_module);
3036
3037         val = (int) PRVM_G_FLOAT(OFS_PARM0);
3038         m       = (int) PRVM_G_FLOAT(OFS_PARM1);
3039
3040         PRVM_G_FLOAT(OFS_RETURN) = (float) (val % m);
3041 }
3042
3043 void VM_Search_Init(void)
3044 {
3045         int i;
3046         for (i = 0;i < PRVM_MAX_OPENSEARCHES;i++)
3047                 prog->opensearches[i] = NULL;
3048 }
3049
3050 void VM_Search_Reset(void)
3051 {
3052         int i;
3053         // reset the fssearch list
3054         for(i = 0; i < PRVM_MAX_OPENSEARCHES; i++)
3055         {
3056                 if(prog->opensearches[i])
3057                         FS_FreeSearch(prog->opensearches[i]);
3058                 prog->opensearches[i] = NULL;
3059         }
3060 }
3061
3062 /*
3063 =========
3064 VM_search_begin
3065
3066 float search_begin(string pattern, float caseinsensitive, float quiet)
3067 =========
3068 */
3069 void VM_search_begin(void)
3070 {
3071         int handle;
3072         const char *pattern;
3073         int caseinsens, quiet;
3074
3075         VM_SAFEPARMCOUNT(3, VM_search_begin);
3076
3077         pattern = PRVM_G_STRING(OFS_PARM0);
3078
3079         VM_CheckEmptyString(pattern);
3080
3081         caseinsens = (int)PRVM_G_FLOAT(OFS_PARM1);
3082         quiet = (int)PRVM_G_FLOAT(OFS_PARM2);
3083
3084         for(handle = 0; handle < PRVM_MAX_OPENSEARCHES; handle++)
3085                 if(!prog->opensearches[handle])
3086                         break;
3087
3088         if(handle >= PRVM_MAX_OPENSEARCHES)
3089         {
3090                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3091                 VM_Warning("VM_search_begin: %s ran out of search handles (%i)\n", PRVM_NAME, PRVM_MAX_OPENSEARCHES);
3092                 return;
3093         }
3094
3095         if(!(prog->opensearches[handle] = FS_Search(pattern,caseinsens, quiet)))
3096                 PRVM_G_FLOAT(OFS_RETURN) = -1;
3097         else
3098         {
3099                 prog->opensearches_origin[handle] = PRVM_AllocationOrigin();
3100                 PRVM_G_FLOAT(OFS_RETURN) = handle;
3101         }
3102 }
3103
3104 /*
3105 =========
3106 VM_search_end
3107
3108 void    search_end(float handle)
3109 =========
3110 */
3111 void VM_search_end(void)
3112 {
3113         int handle;
3114         VM_SAFEPARMCOUNT(1, VM_search_end);
3115
3116         handle = (int)PRVM_G_FLOAT(OFS_PARM0);
3117
3118         if(handle < 0 || handle >= PRVM_MAX_OPENSEARCHES)
3119         {
3120                 VM_Warning("VM_search_end: invalid handle %i used in %s\n", handle, PRVM_NAME);
3121                 return;
3122         }
3123         if(prog->opensearches[handle] == NULL)
3124         {
3125                 VM_Warning("VM_search_end: no such handle %i in %s\n", handle, PRVM_NAME);
3126                 return;
3127         }
3128
3129         FS_FreeSearch(prog->opensearches[handle]);
3130         prog->opensearches[handle] = NULL;
3131         if(prog->opensearches_origin[handle])
3132                 PRVM_Free((char *)prog->opensearches_origin[handle]);
3133 }
3134
3135 /*
3136 =========
3137 VM_search_getsize
3138
3139 float   search_getsize(float handle)
3140 =========
3141 */
3142 void VM_search_getsize(void)
3143 {
3144         int handle;
3145         VM_SAFEPARMCOUNT(1, VM_M_search_getsize);
3146
3147         handle = (int)PRVM_G_FLOAT(OFS_PARM0);
3148
3149         if(handle < 0 || handle >= PRVM_MAX_OPENSEARCHES)
3150         {
3151                 VM_Warning("VM_search_getsize: invalid handle %i used in %s\n", handle, PRVM_NAME);
3152                 return;
3153         }
3154         if(prog->opensearches[handle] == NULL)
3155         {
3156                 VM_Warning("VM_search_getsize: no such handle %i in %s\n", handle, PRVM_NAME);
3157                 return;
3158         }
3159
3160         PRVM_G_FLOAT(OFS_RETURN) = prog->opensearches[handle]->numfilenames;
3161 }
3162
3163 /*
3164 =========
3165 VM_search_getfilename
3166
3167 string  search_getfilename(float handle, float num)
3168 =========
3169 */
3170 void VM_search_getfilename(void)
3171 {
3172         int handle, filenum;
3173         VM_SAFEPARMCOUNT(2, VM_search_getfilename);
3174
3175         handle = (int)PRVM_G_FLOAT(OFS_PARM0);
3176         filenum = (int)PRVM_G_FLOAT(OFS_PARM1);
3177
3178         if(handle < 0 || handle >= PRVM_MAX_OPENSEARCHES)
3179         {
3180                 VM_Warning("VM_search_getfilename: invalid handle %i used in %s\n", handle, PRVM_NAME);
3181                 return;
3182         }
3183         if(prog->opensearches[handle] == NULL)
3184         {
3185                 VM_Warning("VM_search_getfilename: no such handle %i in %s\n", handle, PRVM_NAME);
3186                 return;
3187         }
3188         if(filenum < 0 || filenum >= prog->opensearches[handle]->numfilenames)
3189         {
3190                 VM_Warning("VM_search_getfilename: invalid filenum %i in %s\n", filenum, PRVM_NAME);
3191                 return;
3192         }
3193
3194         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(prog->opensearches[handle]->filenames[filenum]);
3195 }
3196
3197 /*
3198 =========
3199 VM_chr
3200
3201 string  chr(float ascii)
3202 =========
3203 */
3204 void VM_chr(void)
3205 {
3206         /*
3207         char tmp[2];
3208         VM_SAFEPARMCOUNT(1, VM_chr);
3209
3210         tmp[0] = (unsigned char) PRVM_G_FLOAT(OFS_PARM0);
3211         tmp[1] = 0;
3212
3213         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(tmp);
3214         */
3215         
3216         char tmp[8];
3217         int len;
3218         VM_SAFEPARMCOUNT(1, VM_chr);
3219
3220         len = u8_fromchar((Uchar)PRVM_G_FLOAT(OFS_PARM0), tmp, sizeof(tmp));
3221         tmp[len] = 0;
3222         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(tmp);
3223 }
3224
3225 //=============================================================================
3226 // Draw builtins (client & menu)
3227
3228 /*
3229 =========
3230 VM_iscachedpic
3231
3232 float   iscachedpic(string pic)
3233 =========
3234 */
3235 void VM_iscachedpic(void)
3236 {
3237         VM_SAFEPARMCOUNT(1,VM_iscachedpic);
3238
3239         // drawq hasnt such a function, thus always return true
3240         PRVM_G_FLOAT(OFS_RETURN) = false;
3241 }
3242
3243 /*
3244 =========
3245 VM_precache_pic
3246
3247 string  precache_pic(string pic)
3248 =========
3249 */
3250 void VM_precache_pic(void)
3251 {
3252         const char      *s;
3253
3254         VM_SAFEPARMCOUNT(1, VM_precache_pic);
3255
3256         s = PRVM_G_STRING(OFS_PARM0);
3257         PRVM_G_INT(OFS_RETURN) = PRVM_G_INT(OFS_PARM0);
3258         VM_CheckEmptyString (s);
3259
3260         // AK Draw_CachePic is supposed to always return a valid pointer
3261         if( Draw_CachePic_Flags(s, 0)->tex == r_texture_notexture )
3262                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
3263 }
3264
3265 /*
3266 =========
3267 VM_freepic
3268
3269 freepic(string s)
3270 =========
3271 */
3272 void VM_freepic(void)
3273 {
3274         const char *s;
3275
3276         VM_SAFEPARMCOUNT(1,VM_freepic);
3277
3278         s = PRVM_G_STRING(OFS_PARM0);
3279         VM_CheckEmptyString (s);
3280
3281         Draw_FreePic(s);
3282 }
3283
3284 void getdrawfontscale(float *sx, float *sy)
3285 {
3286         vec3_t v;
3287         *sx = *sy = 1;
3288         VectorCopy(PRVM_drawglobalvector(drawfontscale), v);
3289         if(VectorLength2(v) > 0)
3290         {
3291                 *sx = v[0];
3292                 *sy = v[1];
3293         }
3294 }
3295
3296 dp_font_t *getdrawfont(void)
3297 {
3298         int f = (int) PRVM_drawglobalfloat(drawfont);
3299         if(f < 0 || f >= dp_fonts.maxsize)
3300                 return FONT_DEFAULT;
3301         return &dp_fonts.f[f];
3302 }
3303
3304 /*
3305 =========
3306 VM_drawcharacter
3307
3308 float   drawcharacter(vector position, float character, vector scale, vector rgb, float alpha, float flag)
3309 =========
3310 */
3311 void VM_drawcharacter(void)
3312 {
3313         float *pos,*scale,*rgb;
3314         char   character;
3315         int flag;
3316         float sx, sy;
3317         VM_SAFEPARMCOUNT(6,VM_drawcharacter);
3318
3319         character = (char) PRVM_G_FLOAT(OFS_PARM1);
3320         if(character == 0)
3321         {
3322                 PRVM_G_FLOAT(OFS_RETURN) = -1;
3323                 VM_Warning("VM_drawcharacter: %s passed null character !\n",PRVM_NAME);
3324                 return;
3325         }
3326
3327         pos = PRVM_G_VECTOR(OFS_PARM0);
3328         scale = PRVM_G_VECTOR(OFS_PARM2);
3329         rgb = PRVM_G_VECTOR(OFS_PARM3);
3330         flag = (int)PRVM_G_FLOAT(OFS_PARM5);
3331
3332         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
3333         {
3334                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3335                 VM_Warning("VM_drawcharacter: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3336                 return;
3337         }
3338
3339         if(pos[2] || scale[2])
3340                 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")));
3341
3342         if(!scale[0] || !scale[1])
3343         {
3344                 PRVM_G_FLOAT(OFS_RETURN) = -3;
3345                 VM_Warning("VM_drawcharacter: scale %s is null !\n", (scale[0] == 0) ? ((scale[1] == 0) ? "x and y" : "x") : "y");
3346                 return;
3347         }
3348
3349         getdrawfontscale(&sx, &sy);
3350         DrawQ_String_Scale(pos[0], pos[1], &character, 1, scale[0], scale[1], sx, sy, rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM4), flag, NULL, true, getdrawfont());
3351         PRVM_G_FLOAT(OFS_RETURN) = 1;
3352 }
3353
3354 /*
3355 =========
3356 VM_drawstring
3357
3358 float   drawstring(vector position, string text, vector scale, vector rgb, float alpha, float flag)
3359 =========
3360 */
3361 void VM_drawstring(void)
3362 {
3363         float *pos,*scale,*rgb;
3364         const char  *string;
3365         int flag;
3366         float sx, sy;
3367         VM_SAFEPARMCOUNT(6,VM_drawstring);
3368
3369         string = PRVM_G_STRING(OFS_PARM1);
3370         pos = PRVM_G_VECTOR(OFS_PARM0);
3371         scale = PRVM_G_VECTOR(OFS_PARM2);
3372         rgb = PRVM_G_VECTOR(OFS_PARM3);
3373         flag = (int)PRVM_G_FLOAT(OFS_PARM5);
3374
3375         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
3376         {
3377                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3378                 VM_Warning("VM_drawstring: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3379                 return;
3380         }
3381
3382         if(!scale[0] || !scale[1])
3383         {
3384                 PRVM_G_FLOAT(OFS_RETURN) = -3;
3385                 VM_Warning("VM_drawstring: scale %s is null !\n", (scale[0] == 0) ? ((scale[1] == 0) ? "x and y" : "x") : "y");
3386                 return;
3387         }
3388
3389         if(pos[2] || scale[2])
3390                 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")));
3391
3392         getdrawfontscale(&sx, &sy);
3393         DrawQ_String_Scale(pos[0], pos[1], string, 0, scale[0], scale[1], sx, sy, rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM4), flag, NULL, true, getdrawfont());
3394         //Font_DrawString(pos[0], pos[1], string, 0, scale[0], scale[1], rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM4), flag, NULL, true);
3395         PRVM_G_FLOAT(OFS_RETURN) = 1;
3396 }
3397
3398 /*
3399 =========
3400 VM_drawcolorcodedstring
3401
3402 float   drawcolorcodedstring(vector position, string text, vector scale, float alpha, float flag)
3403 /
3404 float   drawcolorcodedstring(vector position, string text, vector scale, vector rgb, float alpha, float flag)
3405 =========
3406 */
3407 void VM_drawcolorcodedstring(void)
3408 {
3409         float *pos, *scale;
3410         const char  *string;
3411         int flag;
3412         vec3_t rgb;
3413         float sx, sy, alpha;
3414
3415         VM_SAFEPARMCOUNTRANGE(5,6,VM_drawcolorcodedstring);
3416
3417         if (prog->argc == 6) // full 6 parms, like normal drawstring
3418         {
3419                 pos = PRVM_G_VECTOR(OFS_PARM0);
3420                 string = PRVM_G_STRING(OFS_PARM1);
3421                 scale = PRVM_G_VECTOR(OFS_PARM2);
3422                 VectorCopy(PRVM_G_VECTOR(OFS_PARM3), rgb); 
3423                 alpha = PRVM_G_FLOAT(OFS_PARM4);
3424                 flag = (int)PRVM_G_FLOAT(OFS_PARM5);
3425         }
3426         else
3427         {
3428                 pos = PRVM_G_VECTOR(OFS_PARM0);
3429                 string = PRVM_G_STRING(OFS_PARM1);
3430                 scale = PRVM_G_VECTOR(OFS_PARM2);
3431                 rgb[0] = 1.0;
3432                 rgb[1] = 1.0;
3433                 rgb[2] = 1.0;
3434                 alpha = PRVM_G_FLOAT(OFS_PARM3);
3435                 flag = (int)PRVM_G_FLOAT(OFS_PARM4);
3436         }
3437
3438         if(flag < DRAWFLAG_NORMAL || flag >= DRAWFLAG_NUMFLAGS)
3439         {
3440                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3441                 VM_Warning("VM_drawcolorcodedstring: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3442                 return;
3443         }
3444
3445         if(!scale[0] || !scale[1])
3446         {
3447                 PRVM_G_FLOAT(OFS_RETURN) = -3;
3448                 VM_Warning("VM_drawcolorcodedstring: scale %s is null !\n", (scale[0] == 0) ? ((scale[1] == 0) ? "x and y" : "x") : "y");
3449                 return;
3450         }
3451
3452         if(pos[2] || scale[2])
3453                 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")));
3454
3455         getdrawfontscale(&sx, &sy);
3456         DrawQ_String_Scale(pos[0], pos[1], string, 0, scale[0], scale[1], sx, sy, rgb[0], rgb[1], rgb[2], alpha, flag, NULL, false, getdrawfont());
3457         if (prog->argc == 6) // also return vector of last color
3458                 VectorCopy(DrawQ_Color, PRVM_G_VECTOR(OFS_RETURN));
3459         else
3460                 PRVM_G_FLOAT(OFS_RETURN) = 1;
3461 }
3462 /*
3463 =========
3464 VM_stringwidth
3465
3466 float   stringwidth(string text, float allowColorCodes, float size)
3467 =========
3468 */
3469 void VM_stringwidth(void)
3470 {
3471         const char  *string;
3472         float *szv;
3473         float mult; // sz is intended font size so we can later add freetype support, mult is font size multiplier in pixels per character cell
3474         int colors;
3475         float sx, sy;
3476         size_t maxlen = 0;
3477         VM_SAFEPARMCOUNTRANGE(2,3,VM_drawstring);
3478
3479         getdrawfontscale(&sx, &sy);
3480         if(prog->argc == 3)
3481         {
3482                 szv = PRVM_G_VECTOR(OFS_PARM2);
3483                 mult = 1;
3484         }
3485         else
3486         {
3487                 // we want the width for 8x8 font size, divided by 8
3488                 static float defsize[] = {8, 8};
3489                 szv = defsize;
3490                 mult = 0.125;
3491                 // to make sure snapping is turned off, ALWAYS use a nontrivial scale in this case
3492                 if(sx >= 0.9 && sx <= 1.1)
3493                 {
3494                         mult *= 2;
3495                         sx /= 2;
3496                         sy /= 2;
3497                 }
3498         }
3499
3500         string = PRVM_G_STRING(OFS_PARM0);
3501         colors = (int)PRVM_G_FLOAT(OFS_PARM1);
3502
3503         PRVM_G_FLOAT(OFS_RETURN) = DrawQ_TextWidth_UntilWidth_TrackColors_Scale(string, &maxlen, szv[0], szv[1], sx, sy, NULL, !colors, getdrawfont(), 1000000000) * mult;
3504 /*
3505         if(prog->argc == 3)
3506         {
3507                 mult = sz = PRVM_G_FLOAT(OFS_PARM2);
3508         }
3509         else
3510         {
3511                 sz = 8;
3512                 mult = 1;
3513         }
3514
3515         string = PRVM_G_STRING(OFS_PARM0);
3516         colors = (int)PRVM_G_FLOAT(OFS_PARM1);
3517
3518         PRVM_G_FLOAT(OFS_RETURN) = DrawQ_TextWidth(string, 0, !colors, getdrawfont()) * mult; // 1x1 characters, don't actually draw
3519 */
3520 }
3521
3522 /*
3523 =========
3524 VM_findfont
3525
3526 float findfont(string s)
3527 =========
3528 */
3529
3530 float getdrawfontnum(const char *fontname)
3531 {
3532         int i;
3533
3534         for(i = 0; i < dp_fonts.maxsize; ++i)
3535                 if(!strcmp(dp_fonts.f[i].title, fontname))
3536                         return i;
3537         return -1;
3538 }
3539
3540 void VM_findfont(void)
3541 {
3542         VM_SAFEPARMCOUNT(1,VM_findfont);
3543         PRVM_G_FLOAT(OFS_RETURN) = getdrawfontnum(PRVM_G_STRING(OFS_PARM0));
3544 }
3545
3546 /*
3547 =========
3548 VM_loadfont
3549
3550 float loadfont(string fontname, string fontmaps, string sizes, float slot)
3551 =========
3552 */
3553
3554 dp_font_t *FindFont(const char *title, qboolean allocate_new);
3555 void LoadFont(qboolean override, const char *name, dp_font_t *fnt, float scale, float voffset);
3556 void VM_loadfont(void)
3557 {
3558         const char *fontname, *filelist, *sizes, *c, *cm;
3559         char mainfont[MAX_QPATH];
3560         int i, numsizes;
3561         float sz, scale, voffset;
3562         dp_font_t *f;
3563
3564         VM_SAFEPARMCOUNTRANGE(3,6,VM_loadfont);
3565
3566         fontname = PRVM_G_STRING(OFS_PARM0);
3567         if (!fontname[0])
3568                 fontname = "default";
3569
3570         filelist = PRVM_G_STRING(OFS_PARM1);
3571         if (!filelist[0])
3572                 filelist = "gfx/conchars";
3573
3574         sizes = PRVM_G_STRING(OFS_PARM2);
3575         if (!sizes[0])
3576                 sizes = "10";
3577
3578         // find a font
3579         f = NULL;
3580         if (prog->argc >= 4)
3581         {
3582                 i = PRVM_G_FLOAT(OFS_PARM3);
3583                 if (i >= 0 && i < dp_fonts.maxsize)
3584                 {
3585                         f = &dp_fonts.f[i];
3586                         strlcpy(f->title, fontname, sizeof(f->title)); // replace name
3587                 }
3588         }
3589         if (!f)
3590                 f = FindFont(fontname, true);
3591         if (!f)
3592         {
3593                 PRVM_G_FLOAT(OFS_RETURN) = -1;
3594                 return; // something go wrong
3595         }
3596
3597         memset(f->fallbacks, 0, sizeof(f->fallbacks));
3598         memset(f->fallback_faces, 0, sizeof(f->fallback_faces));
3599
3600         // first font is handled "normally"
3601         c = strchr(filelist, ':');
3602         cm = strchr(filelist, ',');
3603         if(c && (!cm || c < cm))
3604                 f->req_face = atoi(c+1);
3605         else
3606         {
3607                 f->req_face = 0;
3608                 c = cm;
3609         }
3610         if(!c || (c - filelist) > MAX_QPATH)
3611                 strlcpy(mainfont, filelist, sizeof(mainfont));
3612         else
3613         {
3614                 memcpy(mainfont, filelist, c - filelist);
3615                 mainfont[c - filelist] = 0;
3616         }
3617
3618         // handle fallbacks
3619         for(i = 0; i < MAX_FONT_FALLBACKS; ++i)
3620         {
3621                 c = strchr(filelist, ',');
3622                 if(!c)
3623                         break;
3624                 filelist = c + 1;
3625                 if(!*filelist)
3626                         break;
3627                 c = strchr(filelist, ':');
3628                 cm = strchr(filelist, ',');
3629                 if(c && (!cm || c < cm))
3630                         f->fallback_faces[i] = atoi(c+1);
3631                 else
3632                 {
3633                         f->fallback_faces[i] = 0; // f->req_face; could make it stick to the default-font's face index
3634                         c = cm;
3635                 }
3636                 if(!c || (c-filelist) > MAX_QPATH)
3637                 {
3638                         strlcpy(f->fallbacks[i], filelist, sizeof(mainfont));
3639                 }
3640                 else
3641                 {
3642                         memcpy(f->fallbacks[i], filelist, c - filelist);
3643                         f->fallbacks[i][c - filelist] = 0;
3644                 }
3645         }
3646
3647         // handle sizes
3648         for(i = 0; i < MAX_FONT_SIZES; ++i)
3649                 f->req_sizes[i] = -1;
3650         for (numsizes = 0,c = sizes;;)
3651         {
3652                 if (!COM_ParseToken_VM_Tokenize(&c, 0))
3653                         break;
3654                 sz = atof(com_token);
3655                 // detect crap size
3656                 if (sz < 0.001f || sz > 1000.0f)
3657                 {
3658                         VM_Warning("VM_loadfont: crap size %s", com_token);
3659                         continue;
3660                 }
3661                 // check overflow
3662                 if (numsizes == MAX_FONT_SIZES)
3663                 {
3664                         VM_Warning("VM_loadfont: MAX_FONT_SIZES = %i exceeded", MAX_FONT_SIZES);
3665                         break;
3666                 }
3667                 f->req_sizes[numsizes] = sz;
3668                 numsizes++;
3669         }
3670
3671         // additional scale/hoffset parms
3672         scale = 1;
3673         voffset = 0;
3674         if (prog->argc >= 5)
3675         {
3676                 scale = PRVM_G_FLOAT(OFS_PARM4);
3677                 if (scale <= 0)
3678                         scale = 1;
3679         }
3680         if (prog->argc >= 6)
3681                 voffset = PRVM_G_FLOAT(OFS_PARM5);
3682
3683         // load
3684         LoadFont(true, mainfont, f, scale, voffset);
3685
3686         // return index of loaded font
3687         PRVM_G_FLOAT(OFS_RETURN) = (f - dp_fonts.f);
3688 }
3689
3690 /*
3691 =========
3692 VM_drawpic
3693
3694 float   drawpic(vector position, string pic, vector size, vector rgb, float alpha, float flag)
3695 =========
3696 */
3697 void VM_drawpic(void)
3698 {
3699         const char *picname;
3700         float *size, *pos, *rgb;
3701         int flag;
3702
3703         VM_SAFEPARMCOUNT(6,VM_drawpic);
3704
3705         picname = PRVM_G_STRING(OFS_PARM1);
3706         VM_CheckEmptyString (picname);
3707
3708         // is pic cached ? no function yet for that
3709         if(!1)
3710         {
3711                 PRVM_G_FLOAT(OFS_RETURN) = -4;
3712                 VM_Warning("VM_drawpic: %s: %s not cached !\n", PRVM_NAME, picname);
3713                 return;
3714         }
3715
3716         pos = PRVM_G_VECTOR(OFS_PARM0);
3717         size = PRVM_G_VECTOR(OFS_PARM2);
3718         rgb = PRVM_G_VECTOR(OFS_PARM3);
3719         flag = (int) PRVM_G_FLOAT(OFS_PARM5);
3720
3721         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
3722         {
3723                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3724                 VM_Warning("VM_drawpic: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3725                 return;
3726         }
3727
3728         if(pos[2] || size[2])
3729                 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")));
3730
3731         DrawQ_Pic(pos[0], pos[1], Draw_CachePic_Flags (picname, CACHEPICFLAG_NOTPERSISTENT), size[0], size[1], rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM4), flag);
3732         PRVM_G_FLOAT(OFS_RETURN) = 1;
3733 }
3734 /*
3735 =========
3736 VM_drawrotpic
3737
3738 float   drawrotpic(vector position, string pic, vector size, vector org, float angle, vector rgb, float alpha, float flag)
3739 =========
3740 */
3741 void VM_drawrotpic(void)
3742 {
3743         const char *picname;
3744         float *size, *pos, *org, *rgb;
3745         int flag;
3746
3747         VM_SAFEPARMCOUNT(8,VM_drawrotpic);
3748
3749         picname = PRVM_G_STRING(OFS_PARM1);
3750         VM_CheckEmptyString (picname);
3751
3752         // is pic cached ? no function yet for that
3753         if(!1)
3754         {
3755                 PRVM_G_FLOAT(OFS_RETURN) = -4;
3756                 VM_Warning("VM_drawrotpic: %s: %s not cached !\n", PRVM_NAME, picname);
3757                 return;
3758         }
3759
3760         pos = PRVM_G_VECTOR(OFS_PARM0);
3761         size = PRVM_G_VECTOR(OFS_PARM2);
3762         org = PRVM_G_VECTOR(OFS_PARM3);
3763         rgb = PRVM_G_VECTOR(OFS_PARM5);
3764         flag = (int) PRVM_G_FLOAT(OFS_PARM7);
3765
3766         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
3767         {
3768                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3769                 VM_Warning("VM_drawrotpic: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3770                 return;
3771         }
3772
3773         if(pos[2] || size[2] || org[2])
3774                 Con_Printf("VM_drawrotpic: z value from pos/size/org discarded\n");
3775
3776         DrawQ_RotPic(pos[0], pos[1], Draw_CachePic_Flags(picname, CACHEPICFLAG_NOTPERSISTENT), 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);
3777         PRVM_G_FLOAT(OFS_RETURN) = 1;
3778 }
3779 /*
3780 =========
3781 VM_drawsubpic
3782
3783 float   drawsubpic(vector position, vector size, string pic, vector srcPos, vector srcSize, vector rgb, float alpha, float flag)
3784
3785 =========
3786 */
3787 void VM_drawsubpic(void)
3788 {
3789         const char *picname;
3790         float *size, *pos, *rgb, *srcPos, *srcSize, alpha;
3791         int flag;
3792
3793         VM_SAFEPARMCOUNT(8,VM_drawsubpic);
3794
3795         picname = PRVM_G_STRING(OFS_PARM2);
3796         VM_CheckEmptyString (picname);
3797
3798         // is pic cached ? no function yet for that
3799         if(!1)
3800         {
3801                 PRVM_G_FLOAT(OFS_RETURN) = -4;
3802                 VM_Warning("VM_drawsubpic: %s: %s not cached !\n", PRVM_NAME, picname);
3803                 return;
3804         }
3805
3806         pos = PRVM_G_VECTOR(OFS_PARM0);
3807         size = PRVM_G_VECTOR(OFS_PARM1);
3808         srcPos = PRVM_G_VECTOR(OFS_PARM3);
3809         srcSize = PRVM_G_VECTOR(OFS_PARM4);
3810         rgb = PRVM_G_VECTOR(OFS_PARM5);
3811         alpha = PRVM_G_FLOAT(OFS_PARM6);
3812         flag = (int) PRVM_G_FLOAT(OFS_PARM7);
3813
3814         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
3815         {
3816                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3817                 VM_Warning("VM_drawsubpic: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3818                 return;
3819         }
3820
3821         if(pos[2] || size[2])
3822                 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")));
3823
3824         DrawQ_SuperPic(pos[0], pos[1], Draw_CachePic_Flags (picname, CACHEPICFLAG_NOTPERSISTENT),
3825                 size[0], size[1],
3826                 srcPos[0],              srcPos[1],              rgb[0], rgb[1], rgb[2], alpha,
3827                 srcPos[0] + srcSize[0], srcPos[1],              rgb[0], rgb[1], rgb[2], alpha,
3828                 srcPos[0],              srcPos[1] + srcSize[1], rgb[0], rgb[1], rgb[2], alpha,
3829                 srcPos[0] + srcSize[0], srcPos[1] + srcSize[1], rgb[0], rgb[1], rgb[2], alpha,
3830                 flag);
3831         PRVM_G_FLOAT(OFS_RETURN) = 1;
3832 }
3833
3834 /*
3835 =========
3836 VM_drawfill
3837
3838 float drawfill(vector position, vector size, vector rgb, float alpha, float flag)
3839 =========
3840 */
3841 void VM_drawfill(void)
3842 {
3843         float *size, *pos, *rgb;
3844         int flag;
3845
3846         VM_SAFEPARMCOUNT(5,VM_drawfill);
3847
3848
3849         pos = PRVM_G_VECTOR(OFS_PARM0);
3850         size = PRVM_G_VECTOR(OFS_PARM1);
3851         rgb = PRVM_G_VECTOR(OFS_PARM2);
3852         flag = (int) PRVM_G_FLOAT(OFS_PARM4);
3853
3854         if(flag < DRAWFLAG_NORMAL || flag >=DRAWFLAG_NUMFLAGS)
3855         {
3856                 PRVM_G_FLOAT(OFS_RETURN) = -2;
3857                 VM_Warning("VM_drawfill: %s: wrong DRAWFLAG %i !\n",PRVM_NAME,flag);
3858                 return;
3859         }
3860
3861         if(pos[2] || size[2])
3862                 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")));
3863
3864         DrawQ_Fill(pos[0], pos[1], size[0], size[1], rgb[0], rgb[1], rgb[2], PRVM_G_FLOAT(OFS_PARM3), flag);
3865         PRVM_G_FLOAT(OFS_RETURN) = 1;
3866 }
3867
3868 /*
3869 =========
3870 VM_drawsetcliparea
3871
3872 drawsetcliparea(float x, float y, float width, float height)
3873 =========
3874 */
3875 void VM_drawsetcliparea(void)
3876 {
3877         float x,y,w,h;
3878         VM_SAFEPARMCOUNT(4,VM_drawsetcliparea);
3879
3880         x = bound(0, PRVM_G_FLOAT(OFS_PARM0), vid_conwidth.integer);
3881         y = bound(0, PRVM_G_FLOAT(OFS_PARM1), vid_conheight.integer);
3882         w = bound(0, PRVM_G_FLOAT(OFS_PARM2) + PRVM_G_FLOAT(OFS_PARM0) - x, (vid_conwidth.integer  - x));
3883         h = bound(0, PRVM_G_FLOAT(OFS_PARM3) + PRVM_G_FLOAT(OFS_PARM1) - y, (vid_conheight.integer - y));
3884
3885         DrawQ_SetClipArea(x, y, w, h);
3886 }
3887
3888 /*
3889 =========
3890 VM_drawresetcliparea
3891
3892 drawresetcliparea()
3893 =========
3894 */
3895 void VM_drawresetcliparea(void)
3896 {
3897         VM_SAFEPARMCOUNT(0,VM_drawresetcliparea);
3898
3899         DrawQ_ResetClipArea();
3900 }
3901
3902 /*
3903 =========
3904 VM_getimagesize
3905
3906 vector  getimagesize(string pic)
3907 =========
3908 */
3909 void VM_getimagesize(void)
3910 {
3911         const char *p;
3912         cachepic_t *pic;
3913
3914         VM_SAFEPARMCOUNT(1,VM_getimagesize);
3915
3916         p = PRVM_G_STRING(OFS_PARM0);
3917         VM_CheckEmptyString (p);
3918
3919         pic = Draw_CachePic_Flags (p, CACHEPICFLAG_NOTPERSISTENT);
3920
3921         PRVM_G_VECTOR(OFS_RETURN)[0] = pic->width;
3922         PRVM_G_VECTOR(OFS_RETURN)[1] = pic->height;
3923         PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
3924 }
3925
3926 /*
3927 =========
3928 VM_keynumtostring
3929
3930 string keynumtostring(float keynum)
3931 =========
3932 */
3933 void VM_keynumtostring (void)
3934 {
3935         VM_SAFEPARMCOUNT(1, VM_keynumtostring);
3936
3937         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(Key_KeynumToString((int)PRVM_G_FLOAT(OFS_PARM0)));
3938 }
3939
3940 /*
3941 =========
3942 VM_findkeysforcommand
3943
3944 string  findkeysforcommand(string command, float bindmap)
3945
3946 the returned string is an altstring
3947 =========
3948 */
3949 #define FKFC_NUMKEYS 5
3950 void M_FindKeysForCommand(const char *command, int *keys);
3951 void VM_findkeysforcommand(void)
3952 {
3953         const char *cmd;
3954         char ret[VM_STRINGTEMP_LENGTH];
3955         int keys[FKFC_NUMKEYS];
3956         int i;
3957         int bindmap;
3958
3959         VM_SAFEPARMCOUNTRANGE(1, 2, VM_findkeysforcommand);
3960
3961         cmd = PRVM_G_STRING(OFS_PARM0);
3962         if(prog->argc == 2)
3963                 bindmap = bound(-1, PRVM_G_FLOAT(OFS_PARM1), MAX_BINDMAPS-1);
3964         else
3965                 bindmap = 0; // consistent to "bind"
3966
3967         VM_CheckEmptyString(cmd);
3968
3969         Key_FindKeysForCommand(cmd, keys, FKFC_NUMKEYS, bindmap);
3970
3971         ret[0] = 0;
3972         for(i = 0; i < FKFC_NUMKEYS; i++)
3973                 strlcat(ret, va(" \'%i\'", keys[i]), sizeof(ret));
3974
3975         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(ret);
3976 }
3977
3978 /*
3979 =========
3980 VM_stringtokeynum
3981
3982 float stringtokeynum(string key)
3983 =========
3984 */
3985 void VM_stringtokeynum (void)
3986 {
3987         VM_SAFEPARMCOUNT( 1, VM_keynumtostring );
3988
3989         PRVM_G_FLOAT(OFS_RETURN) = Key_StringToKeynum(PRVM_G_STRING(OFS_PARM0));
3990 }
3991
3992 /*
3993 =========
3994 VM_getkeybind
3995
3996 string getkeybind(float key, float bindmap)
3997 =========
3998 */
3999 void VM_getkeybind (void)
4000 {
4001         int bindmap;
4002         VM_SAFEPARMCOUNTRANGE(1, 2, VM_CL_getkeybind);
4003         if(prog->argc == 2)
4004                 bindmap = bound(-1, PRVM_G_FLOAT(OFS_PARM1), MAX_BINDMAPS-1);
4005         else
4006                 bindmap = 0; // consistent to "bind"
4007
4008         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(Key_GetBind((int)PRVM_G_FLOAT(OFS_PARM0), bindmap));
4009 }
4010
4011 /*
4012 =========
4013 VM_setkeybind
4014
4015 float setkeybind(float key, string cmd, float bindmap)
4016 =========
4017 */
4018 void VM_setkeybind (void)
4019 {
4020         int bindmap;
4021         VM_SAFEPARMCOUNTRANGE(2, 3, VM_CL_setkeybind);
4022         if(prog->argc == 3)
4023                 bindmap = bound(-1, PRVM_G_FLOAT(OFS_PARM2), MAX_BINDMAPS-1);
4024         else
4025                 bindmap = 0; // consistent to "bind"
4026
4027         PRVM_G_FLOAT(OFS_RETURN) = 0;
4028         if(Key_SetBinding((int)PRVM_G_FLOAT(OFS_PARM0), bindmap, PRVM_G_STRING(OFS_PARM1)))
4029                 PRVM_G_FLOAT(OFS_RETURN) = 1;
4030 }
4031
4032 /*
4033 =========
4034 VM_getbindmap
4035
4036 vector getbindmaps()
4037 =========
4038 */
4039 void VM_getbindmaps (void)
4040 {
4041         int fg, bg;
4042         VM_SAFEPARMCOUNT(0, VM_CL_getbindmap);
4043         Key_GetBindMap(&fg, &bg);
4044         PRVM_G_VECTOR(OFS_RETURN)[0] = fg;
4045         PRVM_G_VECTOR(OFS_RETURN)[1] = bg;
4046         PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
4047 }
4048
4049 /*
4050 =========
4051 VM_setbindmap
4052
4053 float setbindmaps(vector bindmap)
4054 =========
4055 */
4056 void VM_setbindmaps (void)
4057 {
4058         VM_SAFEPARMCOUNT(1, VM_CL_setbindmap);
4059         PRVM_G_FLOAT(OFS_RETURN) = 0;
4060         if(PRVM_G_VECTOR(OFS_PARM0)[2] == 0)
4061                 if(Key_SetBindMap((int)PRVM_G_VECTOR(OFS_PARM0)[0], (int)PRVM_G_VECTOR(OFS_PARM0)[1]))
4062                         PRVM_G_FLOAT(OFS_RETURN) = 1;
4063 }
4064
4065 // CL_Video interface functions
4066
4067 /*
4068 ========================
4069 VM_cin_open
4070
4071 float cin_open(string file, string name)
4072 ========================
4073 */
4074 void VM_cin_open( void )
4075 {
4076         const char *file;
4077         const char *name;
4078
4079         VM_SAFEPARMCOUNT( 2, VM_cin_open );
4080
4081         file = PRVM_G_STRING( OFS_PARM0 );
4082         name = PRVM_G_STRING( OFS_PARM1 );
4083
4084         VM_CheckEmptyString( file );
4085     VM_CheckEmptyString( name );
4086
4087         if( CL_OpenVideo( file, name, MENUOWNER, "" ) )
4088                 PRVM_G_FLOAT( OFS_RETURN ) = 1;
4089         else
4090                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
4091 }
4092
4093 /*
4094 ========================
4095 VM_cin_close
4096
4097 void cin_close(string name)
4098 ========================
4099 */
4100 void VM_cin_close( void )
4101 {
4102         const char *name;
4103
4104         VM_SAFEPARMCOUNT( 1, VM_cin_close );
4105
4106         name = PRVM_G_STRING( OFS_PARM0 );
4107         VM_CheckEmptyString( name );
4108
4109         CL_CloseVideo( CL_GetVideoByName( name ) );
4110 }
4111
4112 /*
4113 ========================
4114 VM_cin_setstate
4115 void cin_setstate(string name, float type)
4116 ========================
4117 */
4118 void VM_cin_setstate( void )
4119 {
4120         const char *name;
4121         clvideostate_t  state;
4122         clvideo_t               *video;
4123
4124         VM_SAFEPARMCOUNT( 2, VM_cin_netstate );
4125
4126         name = PRVM_G_STRING( OFS_PARM0 );
4127         VM_CheckEmptyString( name );
4128
4129         state = (clvideostate_t)((int)PRVM_G_FLOAT( OFS_PARM1 ));
4130
4131         video = CL_GetVideoByName( name );
4132         if( video && state > CLVIDEO_UNUSED && state < CLVIDEO_STATECOUNT )
4133                 CL_SetVideoState( video, state );
4134 }
4135
4136 /*
4137 ========================
4138 VM_cin_getstate
4139
4140 float cin_getstate(string name)
4141 ========================
4142 */
4143 void VM_cin_getstate( void )
4144 {
4145         const char *name;
4146         clvideo_t               *video;
4147
4148         VM_SAFEPARMCOUNT( 1, VM_cin_getstate );
4149
4150         name = PRVM_G_STRING( OFS_PARM0 );
4151         VM_CheckEmptyString( name );
4152
4153         video = CL_GetVideoByName( name );
4154         if( video )
4155                 PRVM_G_FLOAT( OFS_RETURN ) = (int)video->state;
4156         else
4157                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
4158 }
4159
4160 /*
4161 ========================
4162 VM_cin_restart
4163
4164 void cin_restart(string name)
4165 ========================
4166 */
4167 void VM_cin_restart( void )
4168 {
4169         const char *name;
4170         clvideo_t               *video;
4171
4172         VM_SAFEPARMCOUNT( 1, VM_cin_restart );
4173
4174         name = PRVM_G_STRING( OFS_PARM0 );
4175         VM_CheckEmptyString( name );
4176
4177         video = CL_GetVideoByName( name );
4178         if( video )
4179                 CL_RestartVideo( video );
4180 }
4181
4182 /*
4183 ========================
4184 VM_Gecko_Init
4185 ========================
4186 */
4187 void VM_Gecko_Init( void ) {
4188         // the prog struct is memset to 0 by Initprog? [12/6/2007 Black]
4189         // FIXME: remove the other _Init functions then, too? [12/6/2007 Black]
4190 }
4191
4192 /*
4193 ========================
4194 VM_Gecko_Destroy
4195 ========================
4196 */
4197 void VM_Gecko_Destroy( void ) {
4198         int i;
4199         for( i = 0 ; i < PRVM_MAX_GECKOINSTANCES ; i++ ) {
4200                 clgecko_t **instance = &prog->opengeckoinstances[ i ];
4201                 if( *instance ) {
4202                         CL_Gecko_DestroyBrowser( *instance );
4203                 }
4204                 *instance = NULL;
4205         }
4206 }
4207
4208 /*
4209 ========================
4210 VM_gecko_create
4211
4212 float[bool] gecko_create( string name )
4213 ========================
4214 */
4215 void VM_gecko_create( void ) {
4216         const char *name;
4217         int i;
4218         clgecko_t *instance;
4219         
4220         VM_SAFEPARMCOUNT( 1, VM_gecko_create );
4221
4222         name = PRVM_G_STRING( OFS_PARM0 );
4223         VM_CheckEmptyString( name );
4224
4225         // find an empty slot for this gecko browser..
4226         for( i = 0 ; i < PRVM_MAX_GECKOINSTANCES ; i++ ) {
4227                 if( prog->opengeckoinstances[ i ] == NULL ) {
4228                         break;
4229                 }
4230         }
4231         if( i == PRVM_MAX_GECKOINSTANCES ) {
4232                         VM_Warning("VM_gecko_create: %s ran out of gecko handles (%i)\n", PRVM_NAME, PRVM_MAX_GECKOINSTANCES);
4233                         PRVM_G_FLOAT( OFS_RETURN ) = 0;
4234                         return;
4235         }
4236
4237         instance = prog->opengeckoinstances[ i ] = CL_Gecko_CreateBrowser( name, PRVM_GetProgNr() );
4238    if( !instance ) {
4239                 // TODO: error handling [12/3/2007 Black]
4240                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
4241                 return;
4242         }
4243         PRVM_G_FLOAT( OFS_RETURN ) = 1;
4244 }
4245
4246 /*
4247 ========================
4248 VM_gecko_destroy
4249
4250 void gecko_destroy( string name )
4251 ========================
4252 */
4253 void VM_gecko_destroy( void ) {
4254         const char *name;
4255         clgecko_t *instance;
4256
4257         VM_SAFEPARMCOUNT( 1, VM_gecko_destroy );
4258
4259         name = PRVM_G_STRING( OFS_PARM0 );
4260         VM_CheckEmptyString( name );
4261         instance = CL_Gecko_FindBrowser( name );
4262         if( !instance ) {
4263                 return;
4264         }
4265         CL_Gecko_DestroyBrowser( instance );
4266 }
4267
4268 /*
4269 ========================
4270 VM_gecko_navigate
4271
4272 void gecko_navigate( string name, string URI )
4273 ========================
4274 */
4275 void VM_gecko_navigate( void ) {
4276         const char *name;
4277         const char *URI;
4278         clgecko_t *instance;
4279
4280         VM_SAFEPARMCOUNT( 2, VM_gecko_navigate );
4281
4282         name = PRVM_G_STRING( OFS_PARM0 );
4283         URI = PRVM_G_STRING( OFS_PARM1 );
4284         VM_CheckEmptyString( name );
4285         VM_CheckEmptyString( URI );
4286
4287    instance = CL_Gecko_FindBrowser( name );
4288         if( !instance ) {
4289                 return;
4290         }
4291         CL_Gecko_NavigateToURI( instance, URI );
4292 }
4293
4294 /*
4295 ========================
4296 VM_gecko_keyevent
4297
4298 float[bool] gecko_keyevent( string name, float key, float eventtype ) 
4299 ========================
4300 */
4301 void VM_gecko_keyevent( void ) {
4302         const char *name;
4303         unsigned int key;
4304         clgecko_buttoneventtype_t eventtype;
4305         clgecko_t *instance;
4306
4307         VM_SAFEPARMCOUNT( 3, VM_gecko_keyevent );
4308
4309         name = PRVM_G_STRING( OFS_PARM0 );
4310         VM_CheckEmptyString( name );
4311         key = (unsigned int) PRVM_G_FLOAT( OFS_PARM1 );
4312         switch( (unsigned int) PRVM_G_FLOAT( OFS_PARM2 ) ) {
4313         case 0:
4314                 eventtype = CLG_BET_DOWN;
4315                 break;
4316         case 1:
4317                 eventtype = CLG_BET_UP;
4318                 break;
4319         case 2:
4320                 eventtype = CLG_BET_PRESS;
4321                 break;
4322         case 3:
4323                 eventtype = CLG_BET_DOUBLECLICK;
4324                 break;
4325         default:
4326                 // TODO: console printf? [12/3/2007 Black]
4327                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
4328                 return;
4329         }
4330
4331         instance = CL_Gecko_FindBrowser( name );
4332         if( !instance ) {
4333                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
4334                 return;
4335         }
4336
4337         PRVM_G_FLOAT( OFS_RETURN ) = (CL_Gecko_Event_Key( instance, (keynum_t) key, eventtype ) == true);
4338 }
4339
4340 /*
4341 ========================
4342 VM_gecko_movemouse
4343
4344 void gecko_mousemove( string name, float x, float y )
4345 ========================
4346 */
4347 void VM_gecko_movemouse( void ) {
4348         const char *name;
4349         float x, y;
4350         clgecko_t *instance;
4351
4352         VM_SAFEPARMCOUNT( 3, VM_gecko_movemouse );
4353
4354         name = PRVM_G_STRING( OFS_PARM0 );
4355         VM_CheckEmptyString( name );
4356         x = PRVM_G_FLOAT( OFS_PARM1 );
4357         y = PRVM_G_FLOAT( OFS_PARM2 );
4358         
4359         instance = CL_Gecko_FindBrowser( name );
4360         if( !instance ) {
4361                 return;
4362         }
4363         CL_Gecko_Event_CursorMove( instance, x, y );
4364 }
4365
4366
4367 /*
4368 ========================
4369 VM_gecko_resize
4370
4371 void gecko_resize( string name, float w, float h )
4372 ========================
4373 */
4374 void VM_gecko_resize( void ) {
4375         const char *name;
4376         float w, h;
4377         clgecko_t *instance;
4378
4379         VM_SAFEPARMCOUNT( 3, VM_gecko_movemouse );
4380
4381         name = PRVM_G_STRING( OFS_PARM0 );
4382         VM_CheckEmptyString( name );
4383         w = PRVM_G_FLOAT( OFS_PARM1 );
4384         h = PRVM_G_FLOAT( OFS_PARM2 );
4385         
4386         instance = CL_Gecko_FindBrowser( name );
4387         if( !instance ) {
4388                 return;
4389         }
4390         CL_Gecko_Resize( instance, (int) w, (int) h );
4391 }
4392
4393
4394 /*
4395 ========================
4396 VM_gecko_get_texture_extent
4397
4398 vector gecko_get_texture_extent( string name )
4399 ========================
4400 */
4401 void VM_gecko_get_texture_extent( void ) {
4402         const char *name;
4403         clgecko_t *instance;
4404
4405         VM_SAFEPARMCOUNT( 1, VM_gecko_movemouse );
4406
4407         name = PRVM_G_STRING( OFS_PARM0 );
4408         VM_CheckEmptyString( name );
4409         
4410         PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
4411         instance = CL_Gecko_FindBrowser( name );
4412         if( !instance ) {
4413                 PRVM_G_VECTOR(OFS_RETURN)[0] = 0;
4414                 PRVM_G_VECTOR(OFS_RETURN)[1] = 0;
4415                 return;
4416         }
4417         CL_Gecko_GetTextureExtent( instance, 
4418                 PRVM_G_VECTOR(OFS_RETURN), PRVM_G_VECTOR(OFS_RETURN)+1 );
4419 }
4420
4421
4422
4423 /*
4424 ==============
4425 VM_makevectors
4426
4427 Writes new values for v_forward, v_up, and v_right based on angles
4428 void makevectors(vector angle)
4429 ==============
4430 */
4431 void VM_makevectors (void)
4432 {
4433         VM_SAFEPARMCOUNT(1, VM_makevectors);
4434         AngleVectors(PRVM_G_VECTOR(OFS_PARM0), PRVM_gameglobalvector(v_forward), PRVM_gameglobalvector(v_right), PRVM_gameglobalvector(v_up));
4435 }
4436
4437 /*
4438 ==============
4439 VM_vectorvectors
4440
4441 Writes new values for v_forward, v_up, and v_right based on the given forward vector
4442 vectorvectors(vector)
4443 ==============
4444 */
4445 void VM_vectorvectors (void)
4446 {
4447         VM_SAFEPARMCOUNT(1, VM_vectorvectors);
4448         VectorNormalize2(PRVM_G_VECTOR(OFS_PARM0), PRVM_gameglobalvector(v_forward));
4449         VectorVectors(PRVM_gameglobalvector(v_forward), PRVM_gameglobalvector(v_right), PRVM_gameglobalvector(v_up));
4450 }
4451
4452 /*
4453 ========================
4454 VM_drawline
4455
4456 void drawline(float width, vector pos1, vector pos2, vector rgb, float alpha, float flags)
4457 ========================
4458 */
4459 void VM_drawline (void)
4460 {
4461         float   *c1, *c2, *rgb;
4462         float   alpha, width;
4463         unsigned char   flags;
4464
4465         VM_SAFEPARMCOUNT(6, VM_drawline);
4466         width   = PRVM_G_FLOAT(OFS_PARM0);
4467         c1              = PRVM_G_VECTOR(OFS_PARM1);
4468         c2              = PRVM_G_VECTOR(OFS_PARM2);
4469         rgb             = PRVM_G_VECTOR(OFS_PARM3);
4470         alpha   = PRVM_G_FLOAT(OFS_PARM4);
4471         flags   = (int)PRVM_G_FLOAT(OFS_PARM5);
4472         DrawQ_Line(width, c1[0], c1[1], c2[0], c2[1], rgb[0], rgb[1], rgb[2], alpha, flags);
4473 }
4474
4475 // float(float number, float quantity) bitshift (EXT_BITSHIFT)
4476 void VM_bitshift (void)
4477 {
4478         int n1, n2;
4479         VM_SAFEPARMCOUNT(2, VM_bitshift);
4480
4481         n1 = (int)fabs((float)((int)PRVM_G_FLOAT(OFS_PARM0)));
4482         n2 = (int)PRVM_G_FLOAT(OFS_PARM1);
4483         if(!n1)
4484                 PRVM_G_FLOAT(OFS_RETURN) = n1;
4485         else
4486         if(n2 < 0)
4487                 PRVM_G_FLOAT(OFS_RETURN) = (n1 >> -n2);
4488         else
4489                 PRVM_G_FLOAT(OFS_RETURN) = (n1 << n2);
4490 }
4491
4492 ////////////////////////////////////////
4493 // AltString functions
4494 ////////////////////////////////////////
4495
4496 /*
4497 ========================
4498 VM_altstr_count
4499
4500 float altstr_count(string)
4501 ========================
4502 */
4503 void VM_altstr_count( void )
4504 {
4505         const char *altstr, *pos;
4506         int     count;
4507
4508         VM_SAFEPARMCOUNT( 1, VM_altstr_count );
4509
4510         altstr = PRVM_G_STRING( OFS_PARM0 );
4511         //VM_CheckEmptyString( altstr );
4512
4513         for( count = 0, pos = altstr ; *pos ; pos++ ) {
4514                 if( *pos == '\\' ) {
4515                         if( !*++pos ) {
4516                                 break;
4517                         }
4518                 } else if( *pos == '\'' ) {
4519                         count++;
4520                 }
4521         }
4522
4523         PRVM_G_FLOAT( OFS_RETURN ) = (float) (count / 2);
4524 }
4525
4526 /*
4527 ========================
4528 VM_altstr_prepare
4529
4530 string altstr_prepare(string)
4531 ========================
4532 */
4533 void VM_altstr_prepare( void )
4534 {
4535         char *out;
4536         const char *instr, *in;
4537         int size;
4538         char outstr[VM_STRINGTEMP_LENGTH];
4539
4540         VM_SAFEPARMCOUNT( 1, VM_altstr_prepare );
4541
4542         instr = PRVM_G_STRING( OFS_PARM0 );
4543
4544         for( out = outstr, in = instr, size = sizeof(outstr) - 1 ; size && *in ; size--, in++, out++ )
4545                 if( *in == '\'' ) {
4546                         *out++ = '\\';
4547                         *out = '\'';
4548                         size--;
4549                 } else
4550                         *out = *in;
4551         *out = 0;
4552
4553         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
4554 }
4555
4556 /*
4557 ========================
4558 VM_altstr_get
4559
4560 string altstr_get(string, float)
4561 ========================
4562 */
4563 void VM_altstr_get( void )
4564 {
4565         const char *altstr, *pos;
4566         char *out;
4567         int count, size;
4568         char outstr[VM_STRINGTEMP_LENGTH];
4569
4570         VM_SAFEPARMCOUNT( 2, VM_altstr_get );
4571
4572         altstr = PRVM_G_STRING( OFS_PARM0 );
4573
4574         count = (int)PRVM_G_FLOAT( OFS_PARM1 );
4575         count = count * 2 + 1;
4576
4577         for( pos = altstr ; *pos && count ; pos++ )
4578                 if( *pos == '\\' ) {
4579                         if( !*++pos )
4580                                 break;
4581                 } else if( *pos == '\'' )
4582                         count--;
4583
4584         if( !*pos ) {
4585                 PRVM_G_INT( OFS_RETURN ) = 0;
4586                 return;
4587         }
4588
4589         for( out = outstr, size = sizeof(outstr) - 1 ; size && *pos ; size--, pos++, out++ )
4590                 if( *pos == '\\' ) {
4591                         if( !*++pos )
4592                                 break;
4593                         *out = *pos;
4594                         size--;
4595                 } else if( *pos == '\'' )
4596                         break;
4597                 else
4598                         *out = *pos;
4599
4600         *out = 0;
4601         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
4602 }
4603
4604 /*
4605 ========================
4606 VM_altstr_set
4607
4608 string altstr_set(string altstr, float num, string set)
4609 ========================
4610 */
4611 void VM_altstr_set( void )
4612 {
4613     int num;
4614         const char *altstr, *str;
4615         const char *in;
4616         char *out;
4617         char outstr[VM_STRINGTEMP_LENGTH];
4618
4619         VM_SAFEPARMCOUNT( 3, VM_altstr_set );
4620
4621         altstr = PRVM_G_STRING( OFS_PARM0 );
4622
4623         num = (int)PRVM_G_FLOAT( OFS_PARM1 );
4624
4625         str = PRVM_G_STRING( OFS_PARM2 );
4626
4627         out = outstr;
4628         for( num = num * 2 + 1, in = altstr; *in && num; *out++ = *in++ )
4629                 if( *in == '\\' ) {
4630                         if( !*++in ) {
4631                                 break;
4632                         }
4633                 } else if( *in == '\'' ) {
4634                         num--;
4635                 }
4636
4637         // copy set in
4638         for( ; *str; *out++ = *str++ );
4639         // now jump over the old content
4640         for( ; *in ; in++ )
4641                 if( *in == '\'' || (*in == '\\' && !*++in) )
4642                         break;
4643
4644         strlcpy(out, in, outstr + sizeof(outstr) - out);
4645         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
4646 }
4647
4648 /*
4649 ========================
4650 VM_altstr_ins
4651 insert after num
4652 string  altstr_ins(string altstr, float num, string set)
4653 ========================
4654 */
4655 void VM_altstr_ins(void)
4656 {
4657         int num;
4658         const char *set;
4659         const char *in;
4660         char *out;
4661         char outstr[VM_STRINGTEMP_LENGTH];
4662
4663         VM_SAFEPARMCOUNT(3, VM_altstr_ins);
4664
4665         in = PRVM_G_STRING( OFS_PARM0 );
4666         num = (int)PRVM_G_FLOAT( OFS_PARM1 );
4667         set = PRVM_G_STRING( OFS_PARM2 );
4668
4669         out = outstr;
4670         for( num = num * 2 + 2 ; *in && num > 0 ; *out++ = *in++ )
4671                 if( *in == '\\' ) {
4672                         if( !*++in ) {
4673                                 break;
4674                         }
4675                 } else if( *in == '\'' ) {
4676                         num--;
4677                 }
4678
4679         *out++ = '\'';
4680         for( ; *set ; *out++ = *set++ );
4681         *out++ = '\'';
4682
4683         strlcpy(out, in, outstr + sizeof(outstr) - out);
4684         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( outstr );
4685 }
4686
4687
4688 ////////////////////////////////////////
4689 // BufString functions
4690 ////////////////////////////////////////
4691 //[515]: string buffers support
4692
4693 static size_t stringbuffers_sortlength;
4694
4695 static void BufStr_Expand(prvm_stringbuffer_t *stringbuffer, int strindex)
4696 {
4697         if (stringbuffer->max_strings <= strindex)
4698         {
4699                 char **oldstrings = stringbuffer->strings;
4700                 stringbuffer->max_strings = max(stringbuffer->max_strings * 2, 128);
4701                 while (stringbuffer->max_strings <= strindex)
4702                         stringbuffer->max_strings *= 2;
4703                 stringbuffer->strings = (char **) Mem_Alloc(prog->progs_mempool, stringbuffer->max_strings * sizeof(stringbuffer->strings[0]));
4704                 if (stringbuffer->num_strings > 0)
4705                         memcpy(stringbuffer->strings, oldstrings, stringbuffer->num_strings * sizeof(stringbuffer->strings[0]));
4706                 if (oldstrings)
4707                         Mem_Free(oldstrings);
4708         }
4709 }
4710
4711 static void BufStr_Shrink(prvm_stringbuffer_t *stringbuffer)
4712 {
4713         // reduce num_strings if there are empty string slots at the end
4714         while (stringbuffer->num_strings > 0 && stringbuffer->strings[stringbuffer->num_strings - 1] == NULL)
4715                 stringbuffer->num_strings--;
4716
4717         // if empty, free the string pointer array
4718         if (stringbuffer->num_strings == 0)
4719         {
4720                 stringbuffer->max_strings = 0;
4721                 if (stringbuffer->strings)
4722                         Mem_Free(stringbuffer->strings);
4723                 stringbuffer->strings = NULL;
4724         }
4725 }
4726
4727 static int BufStr_SortStringsUP (const void *in1, const void *in2)
4728 {
4729         const char *a, *b;
4730         a = *((const char **) in1);
4731         b = *((const char **) in2);
4732         if(!a || !a[0]) return 1;
4733         if(!b || !b[0]) return -1;
4734         return strncmp(a, b, stringbuffers_sortlength);
4735 }
4736
4737 static int BufStr_SortStringsDOWN (const void *in1, const void *in2)
4738 {
4739         const char *a, *b;
4740         a = *((const char **) in1);
4741         b = *((const char **) in2);
4742         if(!a || !a[0]) return 1;
4743         if(!b || !b[0]) return -1;
4744         return strncmp(b, a, stringbuffers_sortlength);
4745 }
4746
4747 /*
4748 ========================
4749 VM_buf_create
4750 creates new buffer, and returns it's index, returns -1 if failed
4751 float buf_create(void) = #460;
4752 float newbuf(string format, float flags) = #460;
4753 ========================
4754 */
4755
4756 void VM_buf_create (void)
4757 {
4758         prvm_stringbuffer_t *stringbuffer;
4759         int i;
4760         
4761         VM_SAFEPARMCOUNTRANGE(0, 2, VM_buf_create);
4762
4763         // VorteX: optional parm1 (buffer format) is unfinished, to keep intact with future databuffers extension must be set to "string"
4764         if(prog->argc >= 1 && strcmp(PRVM_G_STRING(OFS_PARM0), "string"))
4765         {
4766                 PRVM_G_FLOAT(OFS_RETURN) = -1;
4767                 return;
4768         }
4769         stringbuffer = (prvm_stringbuffer_t *) Mem_ExpandableArray_AllocRecord(&prog->stringbuffersarray);
4770         for (i = 0;stringbuffer != Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, i);i++);
4771         stringbuffer->origin = PRVM_AllocationOrigin();
4772         // optional flags parm
4773         if (prog->argc >= 2)
4774                 stringbuffer->flags = (int)PRVM_G_FLOAT(OFS_PARM1) & 0xFF;
4775         PRVM_G_FLOAT(OFS_RETURN) = i;
4776 }
4777
4778
4779
4780 /*
4781 ========================
4782 VM_buf_del
4783 deletes buffer and all strings in it
4784 void buf_del(float bufhandle) = #461;
4785 ========================
4786 */
4787 void VM_buf_del (void)
4788 {
4789         prvm_stringbuffer_t *stringbuffer;
4790         VM_SAFEPARMCOUNT(1, VM_buf_del);
4791         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4792         if (stringbuffer)
4793         {
4794                 int i;
4795                 for (i = 0;i < stringbuffer->num_strings;i++)
4796                         if (stringbuffer->strings[i])
4797                                 Mem_Free(stringbuffer->strings[i]);
4798                 if (stringbuffer->strings)
4799                         Mem_Free(stringbuffer->strings);
4800                 if(stringbuffer->origin)
4801                         PRVM_Free((char *)stringbuffer->origin);
4802                 Mem_ExpandableArray_FreeRecord(&prog->stringbuffersarray, stringbuffer);
4803         }
4804         else
4805         {
4806                 VM_Warning("VM_buf_del: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4807                 return;
4808         }
4809 }
4810
4811 /*
4812 ========================
4813 VM_buf_getsize
4814 how many strings are stored in buffer
4815 float buf_getsize(float bufhandle) = #462;
4816 ========================
4817 */
4818 void VM_buf_getsize (void)
4819 {
4820         prvm_stringbuffer_t *stringbuffer;
4821         VM_SAFEPARMCOUNT(1, VM_buf_getsize);
4822
4823         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4824         if(!stringbuffer)
4825         {
4826                 PRVM_G_FLOAT(OFS_RETURN) = -1;
4827                 VM_Warning("VM_buf_getsize: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4828                 return;
4829         }
4830         else
4831                 PRVM_G_FLOAT(OFS_RETURN) = stringbuffer->num_strings;
4832 }
4833
4834 /*
4835 ========================
4836 VM_buf_copy
4837 copy all content from one buffer to another, make sure it exists
4838 void buf_copy(float bufhandle_from, float bufhandle_to) = #463;
4839 ========================
4840 */
4841 void VM_buf_copy (void)
4842 {
4843         prvm_stringbuffer_t *srcstringbuffer, *dststringbuffer;
4844         int i;
4845         VM_SAFEPARMCOUNT(2, VM_buf_copy);
4846
4847         srcstringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4848         if(!srcstringbuffer)
4849         {
4850                 VM_Warning("VM_buf_copy: invalid source buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4851                 return;
4852         }
4853         i = (int)PRVM_G_FLOAT(OFS_PARM1);
4854         if(i == (int)PRVM_G_FLOAT(OFS_PARM0))
4855         {
4856                 VM_Warning("VM_buf_copy: source == destination (%i) in %s\n", i, PRVM_NAME);
4857                 return;
4858         }
4859         dststringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4860         if(!dststringbuffer)
4861         {
4862                 VM_Warning("VM_buf_copy: invalid destination buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM1), PRVM_NAME);
4863                 return;
4864         }
4865
4866         for (i = 0;i < dststringbuffer->num_strings;i++)
4867                 if (dststringbuffer->strings[i])
4868                         Mem_Free(dststringbuffer->strings[i]);
4869         if (dststringbuffer->strings)
4870                 Mem_Free(dststringbuffer->strings);
4871         *dststringbuffer = *srcstringbuffer;
4872         if (dststringbuffer->max_strings)
4873                 dststringbuffer->strings = (char **)Mem_Alloc(prog->progs_mempool, sizeof(dststringbuffer->strings[0]) * dststringbuffer->max_strings);
4874
4875         for (i = 0;i < dststringbuffer->num_strings;i++)
4876         {
4877                 if (srcstringbuffer->strings[i])
4878                 {
4879                         size_t stringlen;
4880                         stringlen = strlen(srcstringbuffer->strings[i]) + 1;
4881                         dststringbuffer->strings[i] = (char *)Mem_Alloc(prog->progs_mempool, stringlen);
4882                         memcpy(dststringbuffer->strings[i], srcstringbuffer->strings[i], stringlen);
4883                 }
4884         }
4885 }
4886
4887 /*
4888 ========================
4889 VM_buf_sort
4890 sort buffer by beginnings of strings (cmplength defaults it's length)
4891 "backward == TRUE" means that sorting goes upside-down
4892 void buf_sort(float bufhandle, float cmplength, float backward) = #464;
4893 ========================
4894 */
4895 void VM_buf_sort (void)
4896 {
4897         prvm_stringbuffer_t *stringbuffer;
4898         VM_SAFEPARMCOUNT(3, VM_buf_sort);
4899
4900         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4901         if(!stringbuffer)
4902         {
4903                 VM_Warning("VM_buf_sort: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4904                 return;
4905         }
4906         if(stringbuffer->num_strings <= 0)
4907         {
4908                 VM_Warning("VM_buf_sort: tried to sort empty buffer %i in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4909                 return;
4910         }
4911         stringbuffers_sortlength = (int)PRVM_G_FLOAT(OFS_PARM1);
4912         if(stringbuffers_sortlength <= 0)
4913                 stringbuffers_sortlength = 0x7FFFFFFF;
4914
4915         if(!PRVM_G_FLOAT(OFS_PARM2))
4916                 qsort(stringbuffer->strings, stringbuffer->num_strings, sizeof(char*), BufStr_SortStringsUP);
4917         else
4918                 qsort(stringbuffer->strings, stringbuffer->num_strings, sizeof(char*), BufStr_SortStringsDOWN);
4919
4920         BufStr_Shrink(stringbuffer);
4921 }
4922
4923 /*
4924 ========================
4925 VM_buf_implode
4926 concantenates all buffer string into one with "glue" separator and returns it as tempstring
4927 string buf_implode(float bufhandle, string glue) = #465;
4928 ========================
4929 */
4930 void VM_buf_implode (void)
4931 {
4932         prvm_stringbuffer_t *stringbuffer;
4933         char                    k[VM_STRINGTEMP_LENGTH];
4934         const char              *sep;
4935         int                             i;
4936         size_t                  l;
4937         VM_SAFEPARMCOUNT(2, VM_buf_implode);
4938
4939         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4940         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
4941         if(!stringbuffer)
4942         {
4943                 VM_Warning("VM_buf_implode: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4944                 return;
4945         }
4946         if(!stringbuffer->num_strings)
4947                 return;
4948         sep = PRVM_G_STRING(OFS_PARM1);
4949         k[0] = 0;
4950         for(l = i = 0;i < stringbuffer->num_strings;i++)
4951         {
4952                 if(stringbuffer->strings[i])
4953                 {
4954                         l += (i > 0 ? strlen(sep) : 0) + strlen(stringbuffer->strings[i]);
4955                         if (l >= sizeof(k) - 1)
4956                                 break;
4957                         strlcat(k, sep, sizeof(k));
4958                         strlcat(k, stringbuffer->strings[i], sizeof(k));
4959                 }
4960         }
4961         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(k);
4962 }
4963
4964 /*
4965 ========================
4966 VM_bufstr_get
4967 get a string from buffer, returns tempstring, dont str_unzone it!
4968 string bufstr_get(float bufhandle, float string_index) = #465;
4969 ========================
4970 */
4971 void VM_bufstr_get (void)
4972 {
4973         prvm_stringbuffer_t *stringbuffer;
4974         int                             strindex;
4975         VM_SAFEPARMCOUNT(2, VM_bufstr_get);
4976
4977         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
4978         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
4979         if(!stringbuffer)
4980         {
4981                 VM_Warning("VM_bufstr_get: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
4982                 return;
4983         }
4984         strindex = (int)PRVM_G_FLOAT(OFS_PARM1);
4985         if (strindex < 0)
4986         {
4987                 // VM_Warning("VM_bufstr_get: invalid string index %i used in %s\n", strindex, PRVM_NAME);
4988                 return;
4989         }
4990         if (strindex < stringbuffer->num_strings && stringbuffer->strings[strindex])
4991                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(stringbuffer->strings[strindex]);
4992 }
4993
4994 /*
4995 ========================
4996 VM_bufstr_set
4997 copies a string into selected slot of buffer
4998 void bufstr_set(float bufhandle, float string_index, string str) = #466;
4999 ========================
5000 */
5001 void VM_bufstr_set (void)
5002 {
5003         size_t alloclen;
5004         int                             strindex;
5005         prvm_stringbuffer_t *stringbuffer;
5006         const char              *news;
5007
5008         VM_SAFEPARMCOUNT(3, VM_bufstr_set);
5009
5010         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
5011         if(!stringbuffer)
5012         {
5013                 VM_Warning("VM_bufstr_set: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
5014                 return;
5015         }
5016         strindex = (int)PRVM_G_FLOAT(OFS_PARM1);
5017         if(strindex < 0 || strindex >= 1000000) // huge number of strings
5018         {
5019                 VM_Warning("VM_bufstr_set: invalid string index %i used in %s\n", strindex, PRVM_NAME);
5020                 return;
5021         }
5022
5023         BufStr_Expand(stringbuffer, strindex);
5024         stringbuffer->num_strings = max(stringbuffer->num_strings, strindex + 1);
5025
5026         if(stringbuffer->strings[strindex])
5027                 Mem_Free(stringbuffer->strings[strindex]);
5028         stringbuffer->strings[strindex] = NULL;
5029
5030         if(PRVM_G_INT(OFS_PARM2))
5031         {
5032                 // not the NULL string!
5033                 news = PRVM_G_STRING(OFS_PARM2);
5034                 alloclen = strlen(news) + 1;
5035                 stringbuffer->strings[strindex] = (char *)Mem_Alloc(prog->progs_mempool, alloclen);
5036                 memcpy(stringbuffer->strings[strindex], news, alloclen);
5037         }
5038
5039         BufStr_Shrink(stringbuffer);
5040 }
5041
5042 /*
5043 ========================
5044 VM_bufstr_add
5045 adds string to buffer in first free slot and returns its index
5046 "order == TRUE" means that string will be added after last "full" slot
5047 float bufstr_add(float bufhandle, string str, float order) = #467;
5048 ========================
5049 */
5050 void VM_bufstr_add (void)
5051 {
5052         int                             order, strindex;
5053         prvm_stringbuffer_t *stringbuffer;
5054         const char              *string;
5055         size_t                  alloclen;
5056
5057         VM_SAFEPARMCOUNT(3, VM_bufstr_add);
5058
5059         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
5060         PRVM_G_FLOAT(OFS_RETURN) = -1;
5061         if(!stringbuffer)
5062         {
5063                 VM_Warning("VM_bufstr_add: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
5064                 return;
5065         }
5066         if(!PRVM_G_INT(OFS_PARM1)) // NULL string
5067         {
5068                 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);
5069                 return;
5070         }
5071         string = PRVM_G_STRING(OFS_PARM1);
5072         order = (int)PRVM_G_FLOAT(OFS_PARM2);
5073         if(order)
5074                 strindex = stringbuffer->num_strings;
5075         else
5076                 for (strindex = 0;strindex < stringbuffer->num_strings;strindex++)
5077                         if (stringbuffer->strings[strindex] == NULL)
5078                                 break;
5079
5080         BufStr_Expand(stringbuffer, strindex);
5081
5082         stringbuffer->num_strings = max(stringbuffer->num_strings, strindex + 1);
5083         alloclen = strlen(string) + 1;
5084         stringbuffer->strings[strindex] = (char *)Mem_Alloc(prog->progs_mempool, alloclen);
5085         memcpy(stringbuffer->strings[strindex], string, alloclen);
5086
5087         PRVM_G_FLOAT(OFS_RETURN) = strindex;
5088 }
5089
5090 /*
5091 ========================
5092 VM_bufstr_free
5093 delete string from buffer
5094 void bufstr_free(float bufhandle, float string_index) = #468;
5095 ========================
5096 */
5097 void VM_bufstr_free (void)
5098 {
5099         int                             i;
5100         prvm_stringbuffer_t     *stringbuffer;
5101         VM_SAFEPARMCOUNT(2, VM_bufstr_free);
5102
5103         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
5104         if(!stringbuffer)
5105         {
5106                 VM_Warning("VM_bufstr_free: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
5107                 return;
5108         }
5109         i = (int)PRVM_G_FLOAT(OFS_PARM1);
5110         if(i < 0)
5111         {
5112                 VM_Warning("VM_bufstr_free: invalid string index %i used in %s\n", i, PRVM_NAME);
5113                 return;
5114         }
5115
5116         if (i < stringbuffer->num_strings)
5117         {
5118                 if(stringbuffer->strings[i])
5119                         Mem_Free(stringbuffer->strings[i]);
5120                 stringbuffer->strings[i] = NULL;
5121         }
5122
5123         BufStr_Shrink(stringbuffer);
5124 }
5125
5126
5127
5128
5129
5130
5131
5132 void VM_buf_cvarlist(void)
5133 {
5134         cvar_t *cvar;
5135         const char *partial, *antipartial;
5136         size_t len, antilen;
5137         size_t alloclen;
5138         qboolean ispattern, antiispattern;
5139         int n;
5140         prvm_stringbuffer_t     *stringbuffer;
5141         VM_SAFEPARMCOUNTRANGE(2, 3, VM_buf_cvarlist);
5142
5143         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, (int)PRVM_G_FLOAT(OFS_PARM0));
5144         if(!stringbuffer)
5145         {
5146                 VM_Warning("VM_bufstr_free: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
5147                 return;
5148         }
5149
5150         partial = PRVM_G_STRING(OFS_PARM1);
5151         if(!partial)
5152                 len = 0;
5153         else
5154                 len = strlen(partial);
5155
5156         if(prog->argc == 3)
5157                 antipartial = PRVM_G_STRING(OFS_PARM2);
5158         else
5159                 antipartial = NULL;
5160         if(!antipartial)
5161                 antilen = 0;
5162         else
5163                 antilen = strlen(antipartial);
5164         
5165         for (n = 0;n < stringbuffer->num_strings;n++)
5166                 if (stringbuffer->strings[n])
5167                         Mem_Free(stringbuffer->strings[n]);
5168         if (stringbuffer->strings)
5169                 Mem_Free(stringbuffer->strings);
5170         stringbuffer->strings = NULL;
5171
5172         ispattern = partial && (strchr(partial, '*') || strchr(partial, '?'));
5173         antiispattern = antipartial && (strchr(antipartial, '*') || strchr(antipartial, '?'));
5174
5175         n = 0;
5176         for(cvar = cvar_vars; cvar; cvar = cvar->next)
5177         {
5178                 if(len && (ispattern ? !matchpattern_with_separator(cvar->name, partial, false, "", false) : strncmp(partial, cvar->name, len)))
5179                         continue;
5180
5181                 if(antilen && (antiispattern ? matchpattern_with_separator(cvar->name, antipartial, false, "", false) : !strncmp(antipartial, cvar->name, antilen)))
5182                         continue;
5183
5184                 ++n;
5185         }
5186
5187         stringbuffer->max_strings = stringbuffer->num_strings = n;
5188         if (stringbuffer->max_strings)
5189                 stringbuffer->strings = (char **)Mem_Alloc(prog->progs_mempool, sizeof(stringbuffer->strings[0]) * stringbuffer->max_strings);
5190         
5191         n = 0;
5192         for(cvar = cvar_vars; cvar; cvar = cvar->next)
5193         {
5194                 if(len && (ispattern ? !matchpattern_with_separator(cvar->name, partial, false, "", false) : strncmp(partial, cvar->name, len)))
5195                         continue;
5196
5197                 if(antilen && (antiispattern ? matchpattern_with_separator(cvar->name, antipartial, false, "", false) : !strncmp(antipartial, cvar->name, antilen)))
5198                         continue;
5199
5200                 alloclen = strlen(cvar->name) + 1;
5201                 stringbuffer->strings[n] = (char *)Mem_Alloc(prog->progs_mempool, alloclen);
5202                 memcpy(stringbuffer->strings[n], cvar->name, alloclen);
5203
5204                 ++n;
5205         }
5206 }
5207
5208
5209
5210
5211 //=============
5212
5213 /*
5214 ==============
5215 VM_changeyaw
5216
5217 This was a major timewaster in progs, so it was converted to C
5218 ==============
5219 */
5220 void VM_changeyaw (void)
5221 {
5222         prvm_edict_t            *ent;
5223         float           ideal, current, move, speed;
5224
5225         // this is called (VERY HACKISHLY) by SV_MoveToGoal, so it can not use any
5226         // parameters because they are the parameters to SV_MoveToGoal, not this
5227         //VM_SAFEPARMCOUNT(0, VM_changeyaw);
5228
5229         ent = PRVM_PROG_TO_EDICT(PRVM_gameglobaledict(self));
5230         if (ent == prog->edicts)
5231         {
5232                 VM_Warning("changeyaw: can not modify world entity\n");
5233                 return;
5234         }
5235         if (ent->priv.server->free)
5236         {
5237                 VM_Warning("changeyaw: can not modify free entity\n");
5238                 return;
5239         }
5240         current = PRVM_gameedictvector(ent, angles)[1];
5241         current = ANGLEMOD(current);
5242         ideal = PRVM_gameedictfloat(ent, ideal_yaw);
5243         speed = PRVM_gameedictfloat(ent, yaw_speed);
5244
5245         if (current == ideal)
5246                 return;
5247         move = ideal - current;
5248         if (ideal > current)
5249         {
5250                 if (move >= 180)
5251                         move = move - 360;
5252         }
5253         else
5254         {
5255                 if (move <= -180)
5256                         move = move + 360;
5257         }
5258         if (move > 0)
5259         {
5260                 if (move > speed)
5261                         move = speed;
5262         }
5263         else
5264         {
5265                 if (move < -speed)
5266                         move = -speed;
5267         }
5268
5269         current += move;
5270         PRVM_gameedictvector(ent, angles)[1] = ANGLEMOD(current);
5271 }
5272
5273 /*
5274 ==============
5275 VM_changepitch
5276 ==============
5277 */
5278 void VM_changepitch (void)
5279 {
5280         prvm_edict_t            *ent;
5281         float           ideal, current, move, speed;
5282
5283         VM_SAFEPARMCOUNT(1, VM_changepitch);
5284
5285         ent = PRVM_G_EDICT(OFS_PARM0);
5286         if (ent == prog->edicts)
5287         {
5288                 VM_Warning("changepitch: can not modify world entity\n");
5289                 return;
5290         }
5291         if (ent->priv.server->free)
5292         {
5293                 VM_Warning("changepitch: can not modify free entity\n");
5294                 return;
5295         }
5296         current = PRVM_gameedictvector(ent, angles)[0];
5297         current = ANGLEMOD(current);
5298         ideal = PRVM_gameedictfloat(ent, idealpitch);
5299         speed = PRVM_gameedictfloat(ent, pitch_speed);
5300
5301         if (current == ideal)
5302                 return;
5303         move = ideal - current;
5304         if (ideal > current)
5305         {
5306                 if (move >= 180)
5307                         move = move - 360;
5308         }
5309         else
5310         {
5311                 if (move <= -180)
5312                         move = move + 360;
5313         }
5314         if (move > 0)
5315         {
5316                 if (move > speed)
5317                         move = speed;
5318         }
5319         else
5320         {
5321                 if (move < -speed)
5322                         move = -speed;
5323         }
5324
5325         current += move;
5326         PRVM_gameedictvector(ent, angles)[0] = ANGLEMOD(current);
5327 }
5328
5329
5330 void VM_uncolorstring (void)
5331 {
5332         char szNewString[VM_STRINGTEMP_LENGTH];
5333         const char *szString;
5334
5335         // Prepare Strings
5336         VM_SAFEPARMCOUNT(1, VM_uncolorstring);
5337         szString = PRVM_G_STRING(OFS_PARM0);
5338         COM_StringDecolorize(szString, 0, szNewString, sizeof(szNewString), TRUE);
5339         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(szNewString);
5340         
5341 }
5342
5343 // #221 float(string str, string sub[, float startpos]) strstrofs (FTE_STRINGS)
5344 //strstr, without generating a new string. Use in conjunction with FRIK_FILE's substring for more similar strstr.
5345 void VM_strstrofs (void)
5346 {
5347         const char *instr, *match;
5348         int firstofs;
5349         VM_SAFEPARMCOUNTRANGE(2, 3, VM_strstrofs);
5350         instr = PRVM_G_STRING(OFS_PARM0);
5351         match = PRVM_G_STRING(OFS_PARM1);
5352         firstofs = (prog->argc > 2)?(int)PRVM_G_FLOAT(OFS_PARM2):0;
5353         firstofs = u8_bytelen(instr, firstofs);
5354
5355         if (firstofs && (firstofs < 0 || firstofs > (int)strlen(instr)))
5356         {
5357                 PRVM_G_FLOAT(OFS_RETURN) = -1;
5358                 return;
5359         }
5360
5361         match = strstr(instr+firstofs, match);
5362         if (!match)
5363                 PRVM_G_FLOAT(OFS_RETURN) = -1;
5364         else
5365                 PRVM_G_FLOAT(OFS_RETURN) = u8_strnlen(instr, match-instr);
5366 }
5367
5368 //#222 string(string s, float index) str2chr (FTE_STRINGS)
5369 void VM_str2chr (void)
5370 {
5371         const char *s;
5372         Uchar ch;
5373         int index;
5374         VM_SAFEPARMCOUNT(2, VM_str2chr);
5375         s = PRVM_G_STRING(OFS_PARM0);
5376         index = u8_bytelen(s, (int)PRVM_G_FLOAT(OFS_PARM1));
5377
5378         if((unsigned)index < strlen(s))
5379         {
5380                 if (utf8_enable.integer)
5381                         ch = u8_getchar_noendptr(s + index);
5382                 else
5383                         ch = (unsigned char)s[index];
5384                 PRVM_G_FLOAT(OFS_RETURN) = ch;
5385         }
5386         else
5387                 PRVM_G_FLOAT(OFS_RETURN) = 0;
5388 }
5389
5390 //#223 string(float c, ...) chr2str (FTE_STRINGS)
5391 void VM_chr2str (void)
5392 {
5393         /*
5394         char    t[9];
5395         int             i;
5396         VM_SAFEPARMCOUNTRANGE(0, 8, VM_chr2str);
5397         for(i = 0;i < prog->argc && i < (int)sizeof(t) - 1;i++)
5398                 t[i] = (unsigned char)PRVM_G_FLOAT(OFS_PARM0+i*3);
5399         t[i] = 0;
5400         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(t);
5401         */
5402         char t[9 * 4 + 1];
5403         int i;
5404         size_t len = 0;
5405         VM_SAFEPARMCOUNTRANGE(0, 8, VM_chr2str);
5406         for(i = 0; i < prog->argc && len < sizeof(t)-1; ++i)
5407                 len += u8_fromchar((Uchar)PRVM_G_FLOAT(OFS_PARM0+i*3), t + len, sizeof(t)-1);
5408         t[len] = 0;
5409         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(t);
5410 }
5411
5412 static int chrconv_number(int i, int base, int conv)
5413 {
5414         i -= base;
5415         switch (conv)
5416         {
5417         default:
5418         case 5:
5419         case 6:
5420         case 0:
5421                 break;
5422         case 1:
5423                 base = '0';
5424                 break;
5425         case 2:
5426                 base = '0'+128;
5427                 break;
5428         case 3:
5429                 base = '0'-30;
5430                 break;
5431         case 4:
5432                 base = '0'+128-30;
5433                 break;
5434         }
5435         return i + base;
5436 }
5437 static int chrconv_punct(int i, int base, int conv)
5438 {
5439         i -= base;
5440         switch (conv)
5441         {
5442         default:
5443         case 0:
5444                 break;
5445         case 1:
5446                 base = 0;
5447                 break;
5448         case 2:
5449                 base = 128;
5450                 break;
5451         }
5452         return i + base;
5453 }
5454
5455 static int chrchar_alpha(int i, int basec, int baset, int convc, int convt, int charnum)
5456 {
5457         //convert case and colour seperatly...
5458
5459         i -= baset + basec;
5460         switch (convt)
5461         {
5462         default:
5463         case 0:
5464                 break;
5465         case 1:
5466                 baset = 0;
5467                 break;
5468         case 2:
5469                 baset = 128;
5470                 break;
5471
5472         case 5:
5473         case 6:
5474                 baset = 128*((charnum&1) == (convt-5));
5475                 break;
5476         }
5477
5478         switch (convc)
5479         {
5480         default:
5481         case 0:
5482                 break;
5483         case 1:
5484                 basec = 'a';
5485                 break;
5486         case 2:
5487                 basec = 'A';
5488                 break;
5489         }
5490         return i + basec + baset;
5491 }
5492 // #224 string(float ccase, float calpha, float cnum, string s, ...) strconv (FTE_STRINGS)
5493 //bulk convert a string. change case or colouring.
5494 void VM_strconv (void)
5495 {
5496         int ccase, redalpha, rednum, len, i;
5497         unsigned char resbuf[VM_STRINGTEMP_LENGTH];
5498         unsigned char *result = resbuf;
5499
5500         VM_SAFEPARMCOUNTRANGE(3, 8, VM_strconv);
5501
5502         ccase = (int) PRVM_G_FLOAT(OFS_PARM0);  //0 same, 1 lower, 2 upper
5503         redalpha = (int) PRVM_G_FLOAT(OFS_PARM1);       //0 same, 1 white, 2 red,  5 alternate, 6 alternate-alternate
5504         rednum = (int) PRVM_G_FLOAT(OFS_PARM2); //0 same, 1 white, 2 red, 3 redspecial, 4 whitespecial, 5 alternate, 6 alternate-alternate
5505         VM_VarString(3, (char *) resbuf, sizeof(resbuf));
5506         len = strlen((char *) resbuf);
5507
5508         for (i = 0; i < len; i++, result++)     //should this be done backwards?
5509         {
5510                 if (*result >= '0' && *result <= '9')   //normal numbers...
5511                         *result = chrconv_number(*result, '0', rednum);
5512                 else if (*result >= '0'+128 && *result <= '9'+128)
5513                         *result = chrconv_number(*result, '0'+128, rednum);
5514                 else if (*result >= '0'+128-30 && *result <= '9'+128-30)
5515                         *result = chrconv_number(*result, '0'+128-30, rednum);
5516                 else if (*result >= '0'-30 && *result <= '9'-30)
5517                         *result = chrconv_number(*result, '0'-30, rednum);
5518
5519                 else if (*result >= 'a' && *result <= 'z')      //normal numbers...
5520                         *result = chrchar_alpha(*result, 'a', 0, ccase, redalpha, i);
5521                 else if (*result >= 'A' && *result <= 'Z')      //normal numbers...
5522                         *result = chrchar_alpha(*result, 'A', 0, ccase, redalpha, i);
5523                 else if (*result >= 'a'+128 && *result <= 'z'+128)      //normal numbers...
5524                         *result = chrchar_alpha(*result, 'a', 128, ccase, redalpha, i);
5525                 else if (*result >= 'A'+128 && *result <= 'Z'+128)      //normal numbers...
5526                         *result = chrchar_alpha(*result, 'A', 128, ccase, redalpha, i);
5527
5528                 else if ((*result & 127) < 16 || !redalpha)     //special chars..
5529                         *result = *result;
5530                 else if (*result < 128)
5531                         *result = chrconv_punct(*result, 0, redalpha);
5532                 else
5533                         *result = chrconv_punct(*result, 128, redalpha);
5534         }
5535         *result = '\0';
5536
5537         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString((char *) resbuf);
5538 }
5539
5540 // #225 string(float chars, string s, ...) strpad (FTE_STRINGS)
5541 void VM_strpad (void)
5542 {
5543         char src[VM_STRINGTEMP_LENGTH];
5544         char destbuf[VM_STRINGTEMP_LENGTH];
5545         int pad;
5546         VM_SAFEPARMCOUNTRANGE(1, 8, VM_strpad);
5547         pad = (int) PRVM_G_FLOAT(OFS_PARM0);
5548         VM_VarString(1, src, sizeof(src));
5549
5550         // note: < 0 = left padding, > 0 = right padding,
5551         // this is reverse logic of printf!
5552         dpsnprintf(destbuf, sizeof(destbuf), "%*s", -pad, src);
5553
5554         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(destbuf);
5555 }
5556
5557 // #226 string(string info, string key, string value, ...) infoadd (FTE_STRINGS)
5558 //uses qw style \key\value strings
5559 void VM_infoadd (void)
5560 {
5561         const char *info, *key;
5562         char value[VM_STRINGTEMP_LENGTH];
5563         char temp[VM_STRINGTEMP_LENGTH];
5564
5565         VM_SAFEPARMCOUNTRANGE(2, 8, VM_infoadd);
5566         info = PRVM_G_STRING(OFS_PARM0);
5567         key = PRVM_G_STRING(OFS_PARM1);
5568         VM_VarString(2, value, sizeof(value));
5569
5570         strlcpy(temp, info, VM_STRINGTEMP_LENGTH);
5571
5572         InfoString_SetValue(temp, VM_STRINGTEMP_LENGTH, key, value);
5573
5574         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(temp);
5575 }
5576
5577 // #227 string(string info, string key) infoget (FTE_STRINGS)
5578 //uses qw style \key\value strings
5579 void VM_infoget (void)
5580 {
5581         const char *info;
5582         const char *key;
5583         char value[VM_STRINGTEMP_LENGTH];
5584
5585         VM_SAFEPARMCOUNT(2, VM_infoget);
5586         info = PRVM_G_STRING(OFS_PARM0);
5587         key = PRVM_G_STRING(OFS_PARM1);
5588
5589         InfoString_GetValue(info, key, value, VM_STRINGTEMP_LENGTH);
5590
5591         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(value);
5592 }
5593
5594 //#228 float(string s1, string s2, float len) strncmp (FTE_STRINGS)
5595 // also float(string s1, string s2) strcmp (FRIK_FILE)
5596 void VM_strncmp (void)
5597 {
5598         const char *s1, *s2;
5599         VM_SAFEPARMCOUNTRANGE(2, 3, VM_strncmp);
5600         s1 = PRVM_G_STRING(OFS_PARM0);
5601         s2 = PRVM_G_STRING(OFS_PARM1);
5602         if (prog->argc > 2)
5603         {
5604                 PRVM_G_FLOAT(OFS_RETURN) = strncmp(s1, s2, (size_t)PRVM_G_FLOAT(OFS_PARM2));
5605         }
5606         else
5607         {
5608                 PRVM_G_FLOAT(OFS_RETURN) = strcmp(s1, s2);
5609         }
5610 }
5611
5612 // #229 float(string s1, string s2) strcasecmp (FTE_STRINGS)
5613 // #230 float(string s1, string s2, float len) strncasecmp (FTE_STRINGS)
5614 void VM_strncasecmp (void)
5615 {
5616         const char *s1, *s2;
5617         VM_SAFEPARMCOUNTRANGE(2, 3, VM_strncasecmp);
5618         s1 = PRVM_G_STRING(OFS_PARM0);
5619         s2 = PRVM_G_STRING(OFS_PARM1);
5620         if (prog->argc > 2)
5621         {
5622                 PRVM_G_FLOAT(OFS_RETURN) = strncasecmp(s1, s2, (size_t)PRVM_G_FLOAT(OFS_PARM2));
5623         }
5624         else
5625         {
5626                 PRVM_G_FLOAT(OFS_RETURN) = strcasecmp(s1, s2);
5627         }
5628 }
5629
5630 // #494 float(float caseinsensitive, string s, ...) crc16
5631 void VM_crc16(void)
5632 {
5633         float insensitive;
5634         static char s[VM_STRINGTEMP_LENGTH];
5635         VM_SAFEPARMCOUNTRANGE(2, 8, VM_hash);
5636         insensitive = PRVM_G_FLOAT(OFS_PARM0);
5637         VM_VarString(1, s, sizeof(s));
5638         PRVM_G_FLOAT(OFS_RETURN) = (unsigned short) ((insensitive ? CRC_Block_CaseInsensitive : CRC_Block) ((unsigned char *) s, strlen(s)));
5639 }
5640
5641 void VM_wasfreed (void)
5642 {
5643         VM_SAFEPARMCOUNT(1, VM_wasfreed);
5644         PRVM_G_FLOAT(OFS_RETURN) = PRVM_G_EDICT(OFS_PARM0)->priv.required->free;
5645 }
5646
5647 void VM_SetTraceGlobals(const trace_t *trace)
5648 {
5649         PRVM_gameglobalfloat(trace_allsolid) = trace->allsolid;
5650         PRVM_gameglobalfloat(trace_startsolid) = trace->startsolid;
5651         PRVM_gameglobalfloat(trace_fraction) = trace->fraction;
5652         PRVM_gameglobalfloat(trace_inwater) = trace->inwater;
5653         PRVM_gameglobalfloat(trace_inopen) = trace->inopen;
5654         VectorCopy(trace->endpos, PRVM_gameglobalvector(trace_endpos));
5655         VectorCopy(trace->plane.normal, PRVM_gameglobalvector(trace_plane_normal));
5656         PRVM_gameglobalfloat(trace_plane_dist) = trace->plane.dist;
5657         PRVM_gameglobaledict(trace_ent) = PRVM_EDICT_TO_PROG(trace->ent ? trace->ent : prog->edicts);
5658         PRVM_gameglobalfloat(trace_dpstartcontents) = trace->startsupercontents;
5659         PRVM_gameglobalfloat(trace_dphitcontents) = trace->hitsupercontents;
5660         PRVM_gameglobalfloat(trace_dphitq3surfaceflags) = trace->hitq3surfaceflags;
5661         PRVM_gameglobalstring(trace_dphittexturename) = trace->hittexture ? PRVM_SetTempString(trace->hittexture->name) : 0;
5662 }
5663
5664 void VM_ClearTraceGlobals(void)
5665 {
5666         // clean up all trace globals when leaving the VM (anti-triggerbot safeguard)
5667         PRVM_gameglobalfloat(trace_allsolid) = 0;
5668         PRVM_gameglobalfloat(trace_startsolid) = 0;
5669         PRVM_gameglobalfloat(trace_fraction) = 0;
5670         PRVM_gameglobalfloat(trace_inwater) = 0;
5671         PRVM_gameglobalfloat(trace_inopen) = 0;
5672         VectorClear(PRVM_gameglobalvector(trace_endpos));
5673         VectorClear(PRVM_gameglobalvector(trace_plane_normal));
5674         PRVM_gameglobalfloat(trace_plane_dist) = 0;
5675         PRVM_gameglobaledict(trace_ent) = PRVM_EDICT_TO_PROG(prog->edicts);
5676         PRVM_gameglobalfloat(trace_dpstartcontents) = 0;
5677         PRVM_gameglobalfloat(trace_dphitcontents) = 0;
5678         PRVM_gameglobalfloat(trace_dphitq3surfaceflags) = 0;
5679         PRVM_gameglobalstring(trace_dphittexturename) = 0;
5680 }
5681
5682 //=============
5683
5684 void VM_Cmd_Init(void)
5685 {
5686         // only init the stuff for the current prog
5687         VM_Files_Init();
5688         VM_Search_Init();
5689         VM_Gecko_Init();
5690 //      VM_BufStr_Init();
5691 }
5692
5693 void VM_Cmd_Reset(void)
5694 {
5695         CL_PurgeOwner( MENUOWNER );
5696         VM_Search_Reset();
5697         VM_Files_CloseAll();
5698         VM_Gecko_Destroy();
5699 //      VM_BufStr_ShutDown();
5700 }
5701
5702 // #510 string(string input, ...) uri_escape (DP_QC_URI_ESCAPE)
5703 // does URI escaping on a string (replace evil stuff by %AB escapes)
5704 void VM_uri_escape (void)
5705 {
5706         char src[VM_STRINGTEMP_LENGTH];
5707         char dest[VM_STRINGTEMP_LENGTH];
5708         char *p, *q;
5709         static const char *hex = "0123456789ABCDEF";
5710
5711         VM_SAFEPARMCOUNTRANGE(1, 8, VM_uri_escape);
5712         VM_VarString(0, src, sizeof(src));
5713
5714         for(p = src, q = dest; *p && q < dest + sizeof(dest) - 3; ++p)
5715         {
5716                 if((*p >= 'A' && *p <= 'Z')
5717                         || (*p >= 'a' && *p <= 'z')
5718                         || (*p >= '0' && *p <= '9')
5719                         || (*p == '-')  || (*p == '_') || (*p == '.')
5720                         || (*p == '!')  || (*p == '~')
5721                         || (*p == '\'') || (*p == '(') || (*p == ')'))
5722                         *q++ = *p;
5723                 else
5724                 {
5725                         *q++ = '%';
5726                         *q++ = hex[(*(unsigned char *)p >> 4) & 0xF];
5727                         *q++ = hex[ *(unsigned char *)p       & 0xF];
5728                 }
5729         }
5730         *q++ = 0;
5731
5732         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(dest);
5733 }
5734
5735 // #510 string(string input, ...) uri_unescape (DP_QC_URI_ESCAPE)
5736 // does URI unescaping on a string (get back the evil stuff)
5737 void VM_uri_unescape (void)
5738 {
5739         char src[VM_STRINGTEMP_LENGTH];
5740         char dest[VM_STRINGTEMP_LENGTH];
5741         char *p, *q;
5742         int hi, lo;
5743
5744         VM_SAFEPARMCOUNTRANGE(1, 8, VM_uri_unescape);
5745         VM_VarString(0, src, sizeof(src));
5746
5747         for(p = src, q = dest; *p; ) // no need to check size, because unescape can't expand
5748         {
5749                 if(*p == '%')
5750                 {
5751                         if(p[1] >= '0' && p[1] <= '9')
5752                                 hi = p[1] - '0';
5753                         else if(p[1] >= 'a' && p[1] <= 'f')
5754                                 hi = p[1] - 'a' + 10;
5755                         else if(p[1] >= 'A' && p[1] <= 'F')
5756                                 hi = p[1] - 'A' + 10;
5757                         else
5758                                 goto nohex;
5759                         if(p[2] >= '0' && p[2] <= '9')
5760                                 lo = p[2] - '0';
5761                         else if(p[2] >= 'a' && p[2] <= 'f')
5762                                 lo = p[2] - 'a' + 10;
5763                         else if(p[2] >= 'A' && p[2] <= 'F')
5764                                 lo = p[2] - 'A' + 10;
5765                         else
5766                                 goto nohex;
5767                         if(hi != 0 || lo != 0) // don't unescape NUL bytes
5768                                 *q++ = (char) (hi * 0x10 + lo);
5769                         p += 3;
5770                         continue;
5771                 }
5772
5773 nohex:
5774                 // otherwise:
5775                 *q++ = *p++;
5776         }
5777         *q++ = 0;
5778
5779         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(dest);
5780 }
5781
5782 // #502 string(string filename) whichpack (DP_QC_WHICHPACK)
5783 // returns the name of the pack containing a file, or "" if it is not in any pack (but local or non-existant)
5784 void VM_whichpack (void)
5785 {
5786         const char *fn, *pack;
5787
5788         VM_SAFEPARMCOUNT(1, VM_whichpack);
5789         fn = PRVM_G_STRING(OFS_PARM0);
5790         pack = FS_WhichPack(fn);
5791
5792         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(pack ? pack : "");
5793 }
5794
5795 typedef struct
5796 {
5797         int prognr;
5798         double starttime;
5799         float id;
5800         char buffer[MAX_INPUTLINE];
5801         unsigned char *postdata; // free when uri_to_prog_t is freed
5802         size_t postlen;
5803         char *sigdata; // free when uri_to_prog_t is freed
5804         size_t siglen;
5805 }
5806 uri_to_prog_t;
5807
5808 static void uri_to_string_callback(int status, size_t length_received, unsigned char *buffer, void *cbdata)
5809 {
5810         uri_to_prog_t *handle = (uri_to_prog_t *) cbdata;
5811
5812         if(!PRVM_ProgLoaded(handle->prognr))
5813         {
5814                 // curl reply came too late... so just drop it
5815                 if(handle->postdata)
5816                         Z_Free(handle->postdata);
5817                 if(handle->sigdata)
5818                         Z_Free(handle->sigdata);
5819                 Z_Free(handle);
5820                 return;
5821         }
5822                 
5823         PRVM_SetProg(handle->prognr);
5824         PRVM_Begin;
5825                 if((prog->starttime == handle->starttime) && (PRVM_allfunction(URI_Get_Callback)))
5826                 {
5827                         if(length_received >= sizeof(handle->buffer))
5828                                 length_received = sizeof(handle->buffer) - 1;
5829                         handle->buffer[length_received] = 0;
5830                 
5831                         PRVM_G_FLOAT(OFS_PARM0) = handle->id;
5832                         PRVM_G_FLOAT(OFS_PARM1) = status;
5833                         PRVM_G_INT(OFS_PARM2) = PRVM_SetTempString(handle->buffer);
5834                         PRVM_ExecuteProgram(PRVM_allfunction(URI_Get_Callback), "QC function URI_Get_Callback is missing");
5835                 }
5836         PRVM_End;
5837         
5838         if(handle->postdata)
5839                 Z_Free(handle->postdata);
5840         if(handle->sigdata)
5841                 Z_Free(handle->sigdata);
5842         Z_Free(handle);
5843 }
5844
5845 // 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
5846 // 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
5847 void VM_uri_get (void)
5848 {
5849         const char *url;
5850         float id;
5851         qboolean ret;
5852         uri_to_prog_t *handle;
5853         const char *posttype = NULL;
5854         const char *postseparator = NULL;
5855         int poststringbuffer = -1;
5856         int postkeyid = -1;
5857         const char *query_string = NULL;
5858         size_t lq;
5859
5860         if(!PRVM_allfunction(URI_Get_Callback))
5861                 PRVM_ERROR("uri_get called by %s without URI_Get_Callback defined", PRVM_NAME);
5862
5863         VM_SAFEPARMCOUNTRANGE(2, 6, VM_uri_get);
5864
5865         url = PRVM_G_STRING(OFS_PARM0);
5866         id = PRVM_G_FLOAT(OFS_PARM1);
5867         if(prog->argc >= 3)
5868                 posttype = PRVM_G_STRING(OFS_PARM2);
5869         if(prog->argc >= 4)
5870                 postseparator = PRVM_G_STRING(OFS_PARM3);
5871         if(prog->argc >= 5)
5872                 poststringbuffer = PRVM_G_FLOAT(OFS_PARM4);
5873         if(prog->argc >= 6)
5874                 postkeyid = PRVM_G_FLOAT(OFS_PARM5);
5875         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!
5876
5877         query_string = strchr(url, '?');
5878         if(query_string)
5879                 ++query_string;
5880         lq = query_string ? strlen(query_string) : 0;
5881
5882         handle->prognr = PRVM_GetProgNr();
5883         handle->starttime = prog->starttime;
5884         handle->id = id;
5885         if(postseparator)
5886         {
5887                 size_t l = strlen(postseparator);
5888                 if(poststringbuffer >= 0)
5889                 {
5890                         size_t ltotal;
5891                         int i;
5892                         // "implode"
5893                         prvm_stringbuffer_t *stringbuffer;
5894                         stringbuffer = (prvm_stringbuffer_t *)Mem_ExpandableArray_RecordAtIndex(&prog->stringbuffersarray, poststringbuffer);
5895                         if(!stringbuffer)
5896                         {
5897                                 VM_Warning("uri_get: invalid buffer %i used in %s\n", (int)PRVM_G_FLOAT(OFS_PARM0), PRVM_NAME);
5898                                 return;
5899                         }
5900                         ltotal = 0;
5901                         for(i = 0;i < stringbuffer->num_strings;i++)
5902                         {
5903                                 if(i > 0)
5904                                         ltotal += l;
5905                                 if(stringbuffer->strings[i])
5906                                         ltotal += strlen(stringbuffer->strings[i]);
5907                         }
5908                         handle->postdata = (unsigned char *)Z_Malloc(ltotal + 1 + lq);
5909                         handle->postlen = ltotal;
5910                         ltotal = 0;
5911                         for(i = 0;i < stringbuffer->num_strings;i++)
5912                         {
5913                                 if(i > 0)
5914                                 {
5915                                         memcpy(handle->postdata + ltotal, postseparator, l);
5916                                         ltotal += l;
5917                                 }
5918                                 if(stringbuffer->strings[i])
5919                                 {
5920                                         memcpy(handle->postdata + ltotal, stringbuffer->strings[i], strlen(stringbuffer->strings[i]));
5921                                         ltotal += strlen(stringbuffer->strings[i]);
5922                                 }
5923                         }
5924                         if(ltotal != handle->postlen)
5925                                 PRVM_ERROR ("%s: string buffer content size mismatch, possible overrun", PRVM_NAME);
5926                 }
5927                 else
5928                 {
5929                         handle->postdata = (unsigned char *)Z_Malloc(l + 1 + lq);
5930                         handle->postlen = l;
5931                         memcpy(handle->postdata, postseparator, l);
5932                 }
5933                 handle->postdata[handle->postlen] = 0;
5934                 if(query_string)
5935                         memcpy(handle->postdata + handle->postlen + 1, query_string, lq);
5936                 if(postkeyid >= 0)
5937                 {
5938                         // POST: we sign postdata \0 query string
5939                         size_t ll;
5940                         handle->sigdata = (char *)Z_Malloc(8192);
5941                         strlcpy(handle->sigdata, "X-D0-Blind-ID-Detached-Signature: ", 8192);
5942                         l = strlen(handle->sigdata);
5943                         handle->siglen = Crypto_SignDataDetached(handle->postdata, handle->postlen + 1 + lq, postkeyid, handle->sigdata + l, 8192 - l);
5944                         if(!handle->siglen)
5945                         {
5946                                 Z_Free(handle->sigdata);
5947                                 handle->sigdata = NULL;
5948                                 goto out1;
5949                         }
5950                         ll = base64_encode((unsigned char *) (handle->sigdata + l), handle->siglen, 8192 - l - 1);
5951                         if(!ll)
5952                         {
5953                                 Z_Free(handle->sigdata);
5954                                 handle->sigdata = NULL;
5955                                 goto out1;
5956                         }
5957                         handle->siglen = l + ll;
5958                         handle->sigdata[handle->siglen] = 0;
5959                 }
5960 out1:
5961                 ret = Curl_Begin_ToMemory_POST(url, handle->sigdata, 0, posttype, handle->postdata, handle->postlen, (unsigned char *) handle->buffer, sizeof(handle->buffer), uri_to_string_callback, handle);
5962         }
5963         else
5964         {
5965                 if(postkeyid >= 0 && query_string)
5966                 {
5967                         // GET: we sign JUST the query string
5968                         size_t l, ll;
5969                         handle->sigdata = (char *)Z_Malloc(8192);
5970                         strlcpy(handle->sigdata, "X-D0-Blind-ID-Detached-Signature: ", 8192);
5971                         l = strlen(handle->sigdata);
5972                         handle->siglen = Crypto_SignDataDetached(query_string, lq, postkeyid, handle->sigdata + l, 8192 - l);
5973                         if(!handle->siglen)
5974                         {
5975                                 Z_Free(handle->sigdata);
5976                                 handle->sigdata = NULL;
5977                                 goto out2;
5978                         }
5979                         ll = base64_encode((unsigned char *) (handle->sigdata + l), handle->siglen, 8192 - l - 1);
5980                         if(!ll)
5981                         {
5982                                 Z_Free(handle->sigdata);
5983                                 handle->sigdata = NULL;
5984                                 goto out2;
5985                         }
5986                         handle->siglen = l + ll;
5987                         handle->sigdata[handle->siglen] = 0;
5988                 }
5989 out2:
5990                 handle->postdata = NULL;
5991                 handle->postlen = 0;
5992                 ret = Curl_Begin_ToMemory(url, 0, (unsigned char *) handle->buffer, sizeof(handle->buffer), uri_to_string_callback, handle);
5993         }
5994         if(ret)
5995         {
5996                 PRVM_G_INT(OFS_RETURN) = 1;
5997         }
5998         else
5999         {
6000                 if(handle->postdata)
6001                         Z_Free(handle->postdata);
6002                 if(handle->sigdata)
6003                         Z_Free(handle->sigdata);
6004                 Z_Free(handle);
6005                 PRVM_G_INT(OFS_RETURN) = 0;
6006         }
6007 }
6008
6009 void VM_netaddress_resolve (void)
6010 {
6011         const char *ip;
6012         char normalized[128];
6013         int port;
6014         lhnetaddress_t addr;
6015
6016         VM_SAFEPARMCOUNTRANGE(1, 2, VM_netaddress_resolve);
6017
6018         ip = PRVM_G_STRING(OFS_PARM0);
6019         port = 0;
6020         if(prog->argc > 1)
6021                 port = (int) PRVM_G_FLOAT(OFS_PARM1);
6022
6023         if(LHNETADDRESS_FromString(&addr, ip, port) && LHNETADDRESS_ToString(&addr, normalized, sizeof(normalized), prog->argc > 1))
6024                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(normalized);
6025         else
6026                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString("");
6027 }
6028
6029 //string(void) getextresponse = #624; // returns the next extResponse packet that was sent to this client
6030 void VM_CL_getextresponse (void)
6031 {
6032         VM_SAFEPARMCOUNT(0,VM_argv);
6033
6034         if (cl_net_extresponse_count <= 0)
6035                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
6036         else
6037         {
6038                 int first;
6039                 --cl_net_extresponse_count;
6040                 first = (cl_net_extresponse_last + NET_EXTRESPONSE_MAX - cl_net_extresponse_count) % NET_EXTRESPONSE_MAX;
6041                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(cl_net_extresponse[first]);
6042         }
6043 }
6044
6045 void VM_SV_getextresponse (void)
6046 {
6047         VM_SAFEPARMCOUNT(0,VM_argv);
6048
6049         if (sv_net_extresponse_count <= 0)
6050                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
6051         else
6052         {
6053                 int first;
6054                 --sv_net_extresponse_count;
6055                 first = (sv_net_extresponse_last + NET_EXTRESPONSE_MAX - sv_net_extresponse_count) % NET_EXTRESPONSE_MAX;
6056                 PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(sv_net_extresponse[first]);
6057         }
6058 }
6059
6060 /*
6061 =========
6062 Common functions between menu.dat and clsprogs
6063 =========
6064 */
6065
6066 //#349 float() isdemo 
6067 void VM_CL_isdemo (void)
6068 {
6069         VM_SAFEPARMCOUNT(0, VM_CL_isdemo);
6070         PRVM_G_FLOAT(OFS_RETURN) = cls.demoplayback;
6071 }
6072
6073 //#355 float() videoplaying 
6074 void VM_CL_videoplaying (void)
6075 {
6076         VM_SAFEPARMCOUNT(0, VM_CL_videoplaying);
6077         PRVM_G_FLOAT(OFS_RETURN) = cl_videoplaying;
6078 }
6079
6080 /*
6081 =========
6082 VM_M_callfunction
6083
6084         callfunction(...,string function_name)
6085 Extension: pass
6086 =========
6087 */
6088 mfunction_t *PRVM_ED_FindFunction (const char *name);
6089 void VM_callfunction(void)
6090 {
6091         mfunction_t *func;
6092         const char *s;
6093
6094         VM_SAFEPARMCOUNTRANGE(1, 8, VM_callfunction);
6095
6096         s = PRVM_G_STRING(OFS_PARM0+(prog->argc - 1)*3);
6097
6098         VM_CheckEmptyString(s);
6099
6100         func = PRVM_ED_FindFunction(s);
6101
6102         if(!func)
6103                 PRVM_ERROR("VM_callfunciton: function %s not found !", s);
6104         else if (func->first_statement < 0)
6105         {
6106                 // negative statements are built in functions
6107                 int builtinnumber = -func->first_statement;
6108                 prog->xfunction->builtinsprofile++;
6109                 if (builtinnumber < prog->numbuiltins && prog->builtins[builtinnumber])
6110                         prog->builtins[builtinnumber]();
6111                 else
6112                         PRVM_ERROR("No such builtin #%i in %s; most likely cause: outdated engine build. Try updating!", builtinnumber, PRVM_NAME);
6113         }
6114         else if(func - prog->functions > 0)
6115         {
6116                 prog->argc--;
6117                 PRVM_ExecuteProgram(func - prog->functions,"");
6118                 prog->argc++;
6119         }
6120 }
6121
6122 /*
6123 =========
6124 VM_isfunction
6125
6126 float   isfunction(string function_name)
6127 =========
6128 */
6129 mfunction_t *PRVM_ED_FindFunction (const char *name);
6130 void VM_isfunction(void)
6131 {
6132         mfunction_t *func;
6133         const char *s;
6134
6135         VM_SAFEPARMCOUNT(1, VM_isfunction);
6136
6137         s = PRVM_G_STRING(OFS_PARM0);
6138
6139         VM_CheckEmptyString(s);
6140
6141         func = PRVM_ED_FindFunction(s);
6142
6143         if(!func)
6144                 PRVM_G_FLOAT(OFS_RETURN) = false;
6145         else
6146                 PRVM_G_FLOAT(OFS_RETURN) = true;
6147 }
6148
6149 /*
6150 =========
6151 VM_sprintf
6152
6153 string sprintf(string format, ...)
6154 =========
6155 */
6156
6157 void VM_sprintf(void)
6158 {
6159         const char *s, *s0;
6160         char outbuf[MAX_INPUTLINE];
6161         char *o = outbuf, *end = outbuf + sizeof(outbuf), *err;
6162         int argpos = 1;
6163         int width, precision, thisarg, flags;
6164         char formatbuf[16];
6165         char *f;
6166         int isfloat;
6167         static int dummyivec[3] = {0, 0, 0};
6168         static float dummyvec[3] = {0, 0, 0};
6169
6170 #define PRINTF_ALTERNATE 1
6171 #define PRINTF_ZEROPAD 2
6172 #define PRINTF_LEFT 4
6173 #define PRINTF_SPACEPOSITIVE 8
6174 #define PRINTF_SIGNPOSITIVE 16
6175
6176         formatbuf[0] = '%';
6177
6178         s = PRVM_G_STRING(OFS_PARM0);
6179
6180 #define GETARG_FLOAT(a) (((a)>=1 && (a)<prog->argc) ? (PRVM_G_FLOAT(OFS_PARM0 + 3 * (a))) : 0)
6181 #define GETARG_VECTOR(a) (((a)>=1 && (a)<prog->argc) ? (PRVM_G_VECTOR(OFS_PARM0 + 3 * (a))) : dummyvec)
6182 #define GETARG_INT(a) (((a)>=1 && (a)<prog->argc) ? (PRVM_G_INT(OFS_PARM0 + 3 * (a))) : 0)
6183 #define GETARG_INTVECTOR(a) (((a)>=1 && (a)<prog->argc) ? ((int*) PRVM_G_VECTOR(OFS_PARM0 + 3 * (a))) : dummyivec)
6184 #define GETARG_STRING(a) (((a)>=1 && (a)<prog->argc) ? (PRVM_G_STRING(OFS_PARM0 + 3 * (a))) : "")
6185
6186         for(;;)
6187         {
6188                 s0 = s;
6189                 switch(*s)
6190                 {
6191                         case 0:
6192                                 goto finished;
6193                         case '%':
6194                                 ++s;
6195
6196                                 if(*s == '%')
6197                                         goto verbatim;
6198
6199                                 // complete directive format:
6200                                 // %3$*1$.*2$ld
6201                                 
6202                                 width = -1;
6203                                 precision = -1;
6204                                 thisarg = -1;
6205                                 flags = 0;
6206                                 isfloat = -1;
6207
6208                                 // is number following?
6209                                 if(*s >= '0' && *s <= '9')
6210                                 {
6211                                         width = strtol(s, &err, 10);
6212                                         if(!err)
6213                                         {
6214                                                 VM_Warning("VM_sprintf: invalid directive in %s: %s\n", PRVM_NAME, s0);
6215                                                 goto finished;
6216                                         }
6217                                         if(*err == '$')
6218                                         {
6219                                                 thisarg = width;
6220                                                 width = -1;
6221                                                 s = err + 1;
6222                                         }
6223                                         else
6224                                         {
6225                                                 if(*s == '0')
6226                                                 {
6227                                                         flags |= PRINTF_ZEROPAD;
6228                                                         if(width == 0)
6229                                                                 width = -1; // it was just a flag
6230                                                 }
6231                                                 s = err;
6232                                         }
6233                                 }
6234
6235                                 if(width < 0)
6236                                 {
6237                                         for(;;)
6238                                         {
6239                                                 switch(*s)
6240                                                 {
6241                                                         case '#': flags |= PRINTF_ALTERNATE; break;
6242                                                         case '0': flags |= PRINTF_ZEROPAD; break;
6243                                                         case '-': flags |= PRINTF_LEFT; break;
6244                                                         case ' ': flags |= PRINTF_SPACEPOSITIVE; break;
6245                                                         case '+': flags |= PRINTF_SIGNPOSITIVE; break;
6246                                                         default:
6247                                                                 goto noflags;
6248                                                 }
6249                                                 ++s;
6250                                         }
6251 noflags:
6252                                         if(*s == '*')
6253                                         {
6254                                                 ++s;
6255                                                 if(*s >= '0' && *s <= '9')
6256                                                 {
6257                                                         width = strtol(s, &err, 10);
6258                                                         if(!err || *err != '$')
6259                                                         {
6260                                                                 VM_Warning("VM_sprintf: invalid directive in %s: %s\n", PRVM_NAME, s0);
6261                                                                 goto finished;
6262                                                         }
6263                                                         s = err + 1;
6264                                                 }
6265                                                 else
6266                                                         width = argpos++;
6267                                                 width = GETARG_FLOAT(width);
6268                                                 if(width < 0)
6269                                                 {
6270                                                         flags |= PRINTF_LEFT;
6271                                                         width = -width;
6272                                                 }
6273                                         }
6274                                         else if(*s >= '0' && *s <= '9')
6275                                         {
6276                                                 width = strtol(s, &err, 10);
6277                                                 if(!err)
6278                                                 {
6279                                                         VM_Warning("VM_sprintf: invalid directive in %s: %s\n", PRVM_NAME, s0);
6280                                                         goto finished;
6281                                                 }
6282                                                 s = err;
6283                                                 if(width < 0)
6284                                                 {
6285                                                         flags |= PRINTF_LEFT;
6286                                                         width = -width;
6287                                                 }
6288                                         }
6289                                         // otherwise width stays -1
6290                                 }
6291
6292                                 if(*s == '.')
6293                                 {
6294                                         ++s;
6295                                         if(*s == '*')
6296                                         {
6297                                                 ++s;
6298                                                 if(*s >= '0' && *s <= '9')
6299                                                 {
6300                                                         precision = strtol(s, &err, 10);
6301                                                         if(!err || *err != '$')
6302                                                         {
6303                                                                 VM_Warning("VM_sprintf: invalid directive in %s: %s\n", PRVM_NAME, s0);
6304                                                                 goto finished;
6305                                                         }
6306                                                         s = err + 1;
6307                                                 }
6308                                                 else
6309                                                         precision = argpos++;
6310                                                 precision = GETARG_FLOAT(precision);
6311                                         }
6312                                         else if(*s >= '0' && *s <= '9')
6313                                         {
6314                                                 precision = strtol(s, &err, 10);
6315                                                 if(!err)
6316                                                 {
6317                                                         VM_Warning("VM_sprintf: invalid directive in %s: %s\n", PRVM_NAME, s0);
6318                                                         goto finished;
6319                                                 }
6320                                                 s = err;
6321                                         }
6322                                         else
6323                                         {
6324                                                 VM_Warning("VM_sprintf: invalid directive in %s: %s\n", PRVM_NAME, s0);
6325                                                 goto finished;
6326                                         }
6327                                 }
6328
6329                                 for(;;)
6330                                 {
6331                                         switch(*s)
6332                                         {
6333                                                 case 'h': isfloat = 1; break;
6334                                                 case 'l': isfloat = 0; break;
6335                                                 case 'L': isfloat = 0; break;
6336                                                 case 'j': break;
6337                                                 case 'z': break;
6338                                                 case 't': break;
6339                                                 default:
6340                                                         goto nolength;
6341                                         }
6342                                         ++s;
6343                                 }
6344 nolength:
6345
6346                                 // now s points to the final directive char and is no longer changed
6347                                 if(isfloat < 0)
6348                                 {
6349                                         if(*s == 'i')
6350                                                 isfloat = 0;
6351                                         else
6352                                                 isfloat = 1;
6353                                 }
6354
6355                                 if(thisarg < 0)
6356                                         thisarg = argpos++;
6357
6358                                 if(o < end - 1)
6359                                 {
6360                                         f = &formatbuf[1];
6361                                         if(*s != 's' && *s != 'c')
6362                                                 if(flags & PRINTF_ALTERNATE) *f++ = '#';
6363                                         if(flags & PRINTF_ZEROPAD) *f++ = '0';
6364                                         if(flags & PRINTF_LEFT) *f++ = '-';
6365                                         if(flags & PRINTF_SPACEPOSITIVE) *f++ = ' ';
6366                                         if(flags & PRINTF_SIGNPOSITIVE) *f++ = '+';
6367                                         *f++ = '*';
6368                                         if(precision >= 0)
6369                                         {
6370                                                 *f++ = '.';
6371                                                 *f++ = '*';
6372                                         }
6373                                         *f++ = *s;
6374                                         *f++ = 0;
6375
6376                                         if(width < 0) // not set
6377                                                 width = 0;
6378
6379                                         switch(*s)
6380                                         {
6381                                                 case 'd': case 'i':
6382                                                         if(precision < 0) // not set
6383                                                                 o += dpsnprintf(o, end - o, formatbuf, width, (isfloat ? (int) GETARG_FLOAT(thisarg) : (int) GETARG_INT(thisarg)));
6384                                                         else
6385                                                                 o += dpsnprintf(o, end - o, formatbuf, width, precision, (isfloat ? (int) GETARG_FLOAT(thisarg) : (int) GETARG_INT(thisarg)));
6386                                                         break;
6387                                                 case 'o': case 'u': case 'x': case 'X':
6388                                                         if(precision < 0) // not set
6389                                                                 o += dpsnprintf(o, end - o, formatbuf, width, (isfloat ? (unsigned int) GETARG_FLOAT(thisarg) : (unsigned int) GETARG_INT(thisarg)));
6390                                                         else
6391                                                                 o += dpsnprintf(o, end - o, formatbuf, width, precision, (isfloat ? (unsigned int) GETARG_FLOAT(thisarg) : (unsigned int) GETARG_INT(thisarg)));
6392                                                         break;
6393                                                 case 'e': case 'E': case 'f': case 'F': case 'g': case 'G':
6394                                                         if(precision < 0) // not set
6395                                                                 o += dpsnprintf(o, end - o, formatbuf, width, (isfloat ? (double) GETARG_FLOAT(thisarg) : (double) GETARG_INT(thisarg)));
6396                                                         else
6397                                                                 o += dpsnprintf(o, end - o, formatbuf, width, precision, (isfloat ? (double) GETARG_FLOAT(thisarg) : (double) GETARG_INT(thisarg)));
6398                                                         break;
6399                                                 case 'v': case 'V':
6400                                                         f[-2] += 'g' - 'v';
6401                                                         if(precision < 0) // not set
6402                                                                 o += dpsnprintf(o, end - o, va("%s %s %s", /* NESTED SPRINTF IS NESTED */ formatbuf, formatbuf, formatbuf),
6403                                                                         width, (isfloat ? (double) GETARG_VECTOR(thisarg)[0] : (double) GETARG_INTVECTOR(thisarg)[0]),
6404                                                                         width, (isfloat ? (double) GETARG_VECTOR(thisarg)[1] : (double) GETARG_INTVECTOR(thisarg)[1]),
6405                                                                         width, (isfloat ? (double) GETARG_VECTOR(thisarg)[2] : (double) GETARG_INTVECTOR(thisarg)[2])
6406                                                                 );
6407                                                         else
6408                                                                 o += dpsnprintf(o, end - o, va("%s %s %s", /* NESTED SPRINTF IS NESTED */ formatbuf, formatbuf, formatbuf),
6409                                                                         width, precision, (isfloat ? (double) GETARG_VECTOR(thisarg)[0] : (double) GETARG_INTVECTOR(thisarg)[0]),
6410                                                                         width, precision, (isfloat ? (double) GETARG_VECTOR(thisarg)[1] : (double) GETARG_INTVECTOR(thisarg)[1]),
6411                                                                         width, precision, (isfloat ? (double) GETARG_VECTOR(thisarg)[2] : (double) GETARG_INTVECTOR(thisarg)[2])
6412                                                                 );
6413                                                         break;
6414                                                 case 'c':
6415                                                         if(flags & PRINTF_ALTERNATE)
6416                                                         {
6417                                                                 if(precision < 0) // not set
6418                                                                         o += dpsnprintf(o, end - o, formatbuf, width, (isfloat ? (unsigned int) GETARG_FLOAT(thisarg) : (unsigned int) GETARG_INT(thisarg)));
6419                                                                 else
6420                                                                         o += dpsnprintf(o, end - o, formatbuf, width, precision, (isfloat ? (unsigned int) GETARG_FLOAT(thisarg) : (unsigned int) GETARG_INT(thisarg)));
6421                                                         }
6422                                                         else
6423                                                         {
6424                                                                 unsigned int c = (isfloat ? (unsigned int) GETARG_FLOAT(thisarg) : (unsigned int) GETARG_INT(thisarg));
6425                                                                 const char *buf = u8_encodech(c, NULL);
6426                                                                 if(!buf)
6427                                                                         buf = "";
6428                                                                 if(precision < 0) // not set
6429                                                                         precision = end - o - 1;
6430                                                                 o += u8_strpad(o, end - o, buf, (flags & PRINTF_LEFT) != 0, width, precision);
6431                                                         }
6432                                                         break;
6433                                                 case 's':
6434                                                         if(flags & PRINTF_ALTERNATE)
6435                                                         {
6436                                                                 if(precision < 0) // not set
6437                                                                         o += dpsnprintf(o, end - o, formatbuf, width, GETARG_STRING(thisarg));
6438                                                                 else
6439                                                                         o += dpsnprintf(o, end - o, formatbuf, width, precision, GETARG_STRING(thisarg));
6440                                                         }
6441                                                         else
6442                                                         {
6443                                                                 if(precision < 0) // not set
6444                                                                         precision = end - o - 1;
6445                                                                 o += u8_strpad(o, end - o, GETARG_STRING(thisarg), (flags & PRINTF_LEFT) != 0, width, precision);
6446                                                         }
6447                                                         break;
6448                                                 default:
6449                                                         VM_Warning("VM_sprintf: invalid directive in %s: %s\n", PRVM_NAME, s0);
6450                                                         goto finished;
6451                                         }
6452                                 }
6453                                 ++s;
6454                                 break;
6455                         default:
6456 verbatim:
6457                                 if(o < end - 1)
6458                                         *o++ = *s++;
6459                                 break;
6460                 }
6461         }
6462 finished:
6463         *o = 0;
6464         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(outbuf);
6465 }
6466
6467
6468 // surface querying
6469
6470 static dp_model_t *getmodel(prvm_edict_t *ed)
6471 {
6472         switch(PRVM_GetProgNr())
6473         {
6474                 case PRVM_SERVERPROG:
6475                         return SV_GetModelFromEdict(ed);
6476                 case PRVM_CLIENTPROG:
6477                         return CL_GetModelFromEdict(ed);
6478                 default:
6479                         return NULL;
6480         }
6481 }
6482
6483 typedef struct
6484 {
6485         unsigned int progid;
6486         dp_model_t *model;
6487         frameblend_t frameblend[MAX_FRAMEBLENDS];
6488         skeleton_t *skeleton_p;
6489         skeleton_t skeleton;
6490         float *data_vertex3f;
6491         float *data_svector3f;
6492         float *data_tvector3f;
6493         float *data_normal3f;
6494         int max_vertices;
6495         float *buf_vertex3f;
6496         float *buf_svector3f;
6497         float *buf_tvector3f;
6498         float *buf_normal3f;
6499 }
6500 animatemodel_cache_t;
6501 static animatemodel_cache_t animatemodel_cache;
6502
6503 void animatemodel(dp_model_t *model, prvm_edict_t *ed)
6504 {
6505         skeleton_t *skeleton;
6506         int skeletonindex = -1;
6507         qboolean need = false;
6508         if(!(model->surfmesh.isanimated && model->AnimateVertices))
6509         {
6510                 animatemodel_cache.data_vertex3f = model->surfmesh.data_vertex3f;
6511                 animatemodel_cache.data_svector3f = model->surfmesh.data_svector3f;
6512                 animatemodel_cache.data_tvector3f = model->surfmesh.data_tvector3f;
6513                 animatemodel_cache.data_normal3f = model->surfmesh.data_normal3f;
6514                 return;
6515         }
6516         if(animatemodel_cache.progid != prog->id)
6517                 memset(&animatemodel_cache, 0, sizeof(animatemodel_cache));
6518         need |= (animatemodel_cache.model != model);
6519         VM_GenerateFrameGroupBlend(ed->priv.server->framegroupblend, ed);
6520         VM_FrameBlendFromFrameGroupBlend(ed->priv.server->frameblend, ed->priv.server->framegroupblend, model);
6521         need |= (memcmp(&animatemodel_cache.frameblend, &ed->priv.server->frameblend, sizeof(ed->priv.server->frameblend))) != 0;
6522         skeletonindex = (int)PRVM_gameedictfloat(ed, skeletonindex) - 1;
6523         if (!(skeletonindex >= 0 && skeletonindex < MAX_EDICTS && (skeleton = prog->skeletons[skeletonindex]) && skeleton->model->num_bones == ed->priv.server->skeleton.model->num_bones))
6524                 skeleton = NULL;
6525         need |= (animatemodel_cache.skeleton_p != skeleton);
6526         if(skeleton)
6527                 need |= (memcmp(&animatemodel_cache.skeleton, skeleton, sizeof(ed->priv.server->skeleton))) != 0;
6528         if(!need)
6529                 return;
6530         if(model->surfmesh.num_vertices > animatemodel_cache.max_vertices)
6531         {
6532                 animatemodel_cache.max_vertices = model->surfmesh.num_vertices * 2;
6533                 if(animatemodel_cache.buf_vertex3f) Mem_Free(animatemodel_cache.buf_vertex3f);
6534                 if(animatemodel_cache.buf_svector3f) Mem_Free(animatemodel_cache.buf_svector3f);
6535                 if(animatemodel_cache.buf_tvector3f) Mem_Free(animatemodel_cache.buf_tvector3f);
6536                 if(animatemodel_cache.buf_normal3f) Mem_Free(animatemodel_cache.buf_normal3f);
6537                 animatemodel_cache.buf_vertex3f = (float *)Mem_Alloc(prog->progs_mempool, sizeof(float[3]) * animatemodel_cache.max_vertices);
6538                 animatemodel_cache.buf_svector3f = (float *)Mem_Alloc(prog->progs_mempool, sizeof(float[3]) * animatemodel_cache.max_vertices);
6539                 animatemodel_cache.buf_tvector3f = (float *)Mem_Alloc(prog->progs_mempool, sizeof(float[3]) * animatemodel_cache.max_vertices);
6540                 animatemodel_cache.buf_normal3f = (float *)Mem_Alloc(prog->progs_mempool, sizeof(float[3]) * animatemodel_cache.max_vertices);
6541         }
6542         animatemodel_cache.data_vertex3f = animatemodel_cache.buf_vertex3f;
6543         animatemodel_cache.data_svector3f = animatemodel_cache.buf_svector3f;
6544         animatemodel_cache.data_tvector3f = animatemodel_cache.buf_tvector3f;
6545         animatemodel_cache.data_normal3f = animatemodel_cache.buf_normal3f;
6546         VM_UpdateEdictSkeleton(ed, model, ed->priv.server->frameblend);
6547         model->AnimateVertices(model, ed->priv.server->frameblend, &ed->priv.server->skeleton, animatemodel_cache.data_vertex3f, animatemodel_cache.data_normal3f, animatemodel_cache.data_svector3f, animatemodel_cache.data_tvector3f);
6548         animatemodel_cache.progid = prog->id;
6549         animatemodel_cache.model = model;
6550         memcpy(&animatemodel_cache.frameblend, &ed->priv.server->frameblend, sizeof(ed->priv.server->frameblend));
6551         animatemodel_cache.skeleton_p = skeleton;
6552         if(skeleton)
6553                 memcpy(&animatemodel_cache.skeleton, skeleton, sizeof(ed->priv.server->skeleton));
6554 }
6555
6556 static void getmatrix(prvm_edict_t *ed, matrix4x4_t *out)
6557 {
6558         switch(PRVM_GetProgNr())
6559         {
6560                 case PRVM_SERVERPROG:
6561                         SV_GetEntityMatrix(ed, out, false);
6562                         break;
6563                 case PRVM_CLIENTPROG:
6564                         CL_GetEntityMatrix(ed, out, false);
6565                         break;
6566                 default:
6567                         *out = identitymatrix;
6568                         break;
6569         }
6570 }
6571
6572 static void applytransform_forward(const vec3_t in, prvm_edict_t *ed, vec3_t out)
6573 {
6574         matrix4x4_t m;
6575         getmatrix(ed, &m);
6576         Matrix4x4_Transform(&m, in, out);
6577 }
6578
6579 static void applytransform_forward_direction(const vec3_t in, prvm_edict_t *ed, vec3_t out)
6580 {
6581         matrix4x4_t m;
6582         getmatrix(ed, &m);
6583         Matrix4x4_Transform3x3(&m, in, out);
6584 }
6585
6586 static void applytransform_inverted(const vec3_t in, prvm_edict_t *ed, vec3_t out)
6587 {
6588         matrix4x4_t m, n;
6589         getmatrix(ed, &m);
6590         Matrix4x4_Invert_Full(&n, &m);
6591         Matrix4x4_Transform3x3(&n, in, out);
6592 }
6593
6594 static void applytransform_forward_normal(const vec3_t in, prvm_edict_t *ed, vec3_t out)
6595 {
6596         matrix4x4_t m;
6597         float p[4];
6598         getmatrix(ed, &m);
6599         Matrix4x4_TransformPositivePlane(&m, in[0], in[1], in[2], 0, p);
6600         VectorCopy(p, out);
6601 }
6602
6603 static void clippointtosurface(prvm_edict_t *ed, dp_model_t *model, msurface_t *surface, vec3_t p, vec3_t out)
6604 {
6605         int i, j, k;
6606         float *v[3], facenormal[3], edgenormal[3], sidenormal[3], temp[3], offsetdist, dist, bestdist;
6607         const int *e;
6608         animatemodel(model, ed);
6609         bestdist = 1000000000;
6610         VectorCopy(p, out);
6611         for (i = 0, e = (model->surfmesh.data_element3i + 3 * surface->num_firsttriangle);i < surface->num_triangles;i++, e += 3)
6612         {
6613                 // clip original point to each triangle of the surface and find the
6614                 // triangle that is closest
6615                 v[0] = animatemodel_cache.data_vertex3f + e[0] * 3;
6616                 v[1] = animatemodel_cache.data_vertex3f + e[1] * 3;
6617                 v[2] = animatemodel_cache.data_vertex3f + e[2] * 3;
6618                 TriangleNormal(v[0], v[1], v[2], facenormal);
6619                 VectorNormalize(facenormal);
6620                 offsetdist = DotProduct(v[0], facenormal) - DotProduct(p, facenormal);
6621                 VectorMA(p, offsetdist, facenormal, temp);
6622                 for (j = 0, k = 2;j < 3;k = j, j++)
6623                 {
6624                         VectorSubtract(v[k], v[j], edgenormal);
6625                         CrossProduct(edgenormal, facenormal, sidenormal);
6626                         VectorNormalize(sidenormal);
6627                         offsetdist = DotProduct(v[k], sidenormal) - DotProduct(temp, sidenormal);
6628                         if (offsetdist < 0)
6629                                 VectorMA(temp, offsetdist, sidenormal, temp);
6630                 }
6631                 dist = VectorDistance2(temp, p);
6632                 if (bestdist > dist)
6633                 {
6634                         bestdist = dist;
6635                         VectorCopy(temp, out);
6636                 }
6637         }
6638 }
6639
6640 static msurface_t *getsurface(dp_model_t *model, int surfacenum)
6641 {
6642         if (surfacenum < 0 || surfacenum >= model->nummodelsurfaces)
6643                 return NULL;
6644         return model->data_surfaces + surfacenum + model->firstmodelsurface;
6645 }
6646
6647
6648 //PF_getsurfacenumpoints, // #434 float(entity e, float s) getsurfacenumpoints = #434;
6649 void VM_getsurfacenumpoints(void)
6650 {
6651         dp_model_t *model;
6652         msurface_t *surface;
6653         VM_SAFEPARMCOUNT(2, VM_getsurfacenumpoints);
6654         // return 0 if no such surface
6655         if (!(model = getmodel(PRVM_G_EDICT(OFS_PARM0))) || !(surface = getsurface(model, (int)PRVM_G_FLOAT(OFS_PARM1))))
6656         {
6657                 PRVM_G_FLOAT(OFS_RETURN) = 0;
6658                 return;
6659         }
6660
6661         // note: this (incorrectly) assumes it is a simple polygon
6662         PRVM_G_FLOAT(OFS_RETURN) = surface->num_vertices;
6663 }
6664 //PF_getsurfacepoint,     // #435 vector(entity e, float s, float n) getsurfacepoint = #435;
6665 void VM_getsurfacepoint(void)
6666 {
6667         prvm_edict_t *ed;
6668         dp_model_t *model;
6669         msurface_t *surface;
6670         int pointnum;
6671         VM_SAFEPARMCOUNT(3, VM_getsurfacepoint);
6672         VectorClear(PRVM_G_VECTOR(OFS_RETURN));
6673         ed = PRVM_G_EDICT(OFS_PARM0);
6674         if (!(model = getmodel(ed)) || !(surface = getsurface(model, (int)PRVM_G_FLOAT(OFS_PARM1))))
6675                 return;
6676         // note: this (incorrectly) assumes it is a simple polygon
6677         pointnum = (int)PRVM_G_FLOAT(OFS_PARM2);
6678         if (pointnum < 0 || pointnum >= surface->num_vertices)
6679                 return;
6680         animatemodel(model, ed);
6681         applytransform_forward(&(animatemodel_cache.data_vertex3f + 3 * surface->num_firstvertex)[pointnum * 3], ed, PRVM_G_VECTOR(OFS_RETURN));
6682 }
6683 //PF_getsurfacepointattribute,     // #486 vector(entity e, float s, float n, float a) getsurfacepointattribute = #486;
6684 // float SPA_POSITION = 0;
6685 // float SPA_S_AXIS = 1;
6686 // float SPA_T_AXIS = 2;
6687 // float SPA_R_AXIS = 3; // same as SPA_NORMAL
6688 // float SPA_TEXCOORDS0 = 4;
6689 // float SPA_LIGHTMAP0_TEXCOORDS = 5;
6690 // float SPA_LIGHTMAP0_COLOR = 6;
6691 void VM_getsurfacepointattribute(void)
6692 {
6693         prvm_edict_t *ed;
6694         dp_model_t *model;
6695         msurface_t *surface;
6696         int pointnum;
6697         int attributetype;
6698
6699         VM_SAFEPARMCOUNT(4, VM_getsurfacepoint);
6700         VectorClear(PRVM_G_VECTOR(OFS_RETURN));
6701         ed = PRVM_G_EDICT(OFS_PARM0);
6702         if (!(model = getmodel(ed)) || !(surface = getsurface(model, (int)PRVM_G_FLOAT(OFS_PARM1))))
6703                 return;
6704         pointnum = (int)PRVM_G_FLOAT(OFS_PARM2);
6705         if (pointnum < 0 || pointnum >= surface->num_vertices)
6706                 return;
6707         attributetype = (int) PRVM_G_FLOAT(OFS_PARM3);
6708
6709         animatemodel(model, ed);
6710
6711         switch( attributetype ) {
6712                 // float SPA_POSITION = 0;
6713                 case 0:
6714                         applytransform_forward(&(animatemodel_cache.data_vertex3f + 3 * surface->num_firstvertex)[pointnum * 3], ed, PRVM_G_VECTOR(OFS_RETURN));
6715                         break;
6716                 // float SPA_S_AXIS = 1;
6717                 case 1:
6718                         applytransform_forward_direction(&(animatemodel_cache.data_svector3f + 3 * surface->num_firstvertex)[pointnum * 3], ed, PRVM_G_VECTOR(OFS_RETURN));
6719                         break;
6720                 // float SPA_T_AXIS = 2;
6721                 case 2:
6722                         applytransform_forward_direction(&(animatemodel_cache.data_tvector3f + 3 * surface->num_firstvertex)[pointnum * 3], ed, PRVM_G_VECTOR(OFS_RETURN));
6723                         break;
6724                 // float SPA_R_AXIS = 3; // same as SPA_NORMAL
6725                 case 3:
6726                         applytransform_forward_direction(&(animatemodel_cache.data_normal3f + 3 * surface->num_firstvertex)[pointnum * 3], ed, PRVM_G_VECTOR(OFS_RETURN));
6727                         break;
6728                 // float SPA_TEXCOORDS0 = 4;
6729                 case 4: {
6730                         float *ret = PRVM_G_VECTOR(OFS_RETURN);
6731                         float *texcoord = &(model->surfmesh.data_texcoordtexture2f + 2 * surface->num_firstvertex)[pointnum * 2];
6732                         ret[0] = texcoord[0];
6733                         ret[1] = texcoord[1];
6734                         ret[2] = 0.0f;
6735                         break;
6736                 }
6737                 // float SPA_LIGHTMAP0_TEXCOORDS = 5;
6738                 case 5: {
6739                         float *ret = PRVM_G_VECTOR(OFS_RETURN);
6740                         float *texcoord = &(model->surfmesh.data_texcoordlightmap2f + 2 * surface->num_firstvertex)[pointnum * 2];
6741                         ret[0] = texcoord[0];
6742                         ret[1] = texcoord[1];
6743                         ret[2] = 0.0f;
6744                         break;
6745                 }
6746                 // float SPA_LIGHTMAP0_COLOR = 6;
6747                 case 6:
6748                         // ignore alpha for now..
6749                         VectorCopy( &(model->surfmesh.data_lightmapcolor4f + 4 * surface->num_firstvertex)[pointnum * 4], PRVM_G_VECTOR(OFS_RETURN));
6750                         break;
6751                 default:
6752                         VectorSet( PRVM_G_VECTOR(OFS_RETURN), 0.0f, 0.0f, 0.0f );
6753                         break;
6754         }
6755 }
6756 //PF_getsurfacenormal,    // #436 vector(entity e, float s) getsurfacenormal = #436;
6757 void VM_getsurfacenormal(void)
6758 {
6759         dp_model_t *model;
6760         msurface_t *surface;
6761         vec3_t normal;
6762         VM_SAFEPARMCOUNT(2, VM_getsurfacenormal);
6763         VectorClear(PRVM_G_VECTOR(OFS_RETURN));
6764         if (!(model = getmodel(PRVM_G_EDICT(OFS_PARM0))) || !(surface = getsurface(model, (int)PRVM_G_FLOAT(OFS_PARM1))))
6765                 return;
6766         // note: this only returns the first triangle, so it doesn't work very
6767         // well for curved surfaces or arbitrary meshes
6768         animatemodel(model, PRVM_G_EDICT(OFS_PARM0));
6769         TriangleNormal((animatemodel_cache.data_vertex3f + 3 * surface->num_firstvertex), (animatemodel_cache.data_vertex3f + 3 * surface->num_firstvertex) + 3, (animatemodel_cache.data_vertex3f + 3 * surface->num_firstvertex) + 6, normal);
6770         applytransform_forward_normal(normal, PRVM_G_EDICT(OFS_PARM0), PRVM_G_VECTOR(OFS_RETURN));
6771         VectorNormalize(PRVM_G_VECTOR(OFS_RETURN));
6772 }
6773 //PF_getsurfacetexture,   // #437 string(entity e, float s) getsurfacetexture = #437;
6774 void VM_getsurfacetexture(void)
6775 {
6776         dp_model_t *model;
6777         msurface_t *surface;
6778         VM_SAFEPARMCOUNT(2, VM_getsurfacetexture);
6779         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
6780         if (!(model = getmodel(PRVM_G_EDICT(OFS_PARM0))) || !(surface = getsurface(model, (int)PRVM_G_FLOAT(OFS_PARM1))))
6781                 return;
6782         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(surface->texture->name);
6783 }
6784 //PF_getsurfacenearpoint, // #438 float(entity e, vector p) getsurfacenearpoint = #438;
6785 void VM_getsurfacenearpoint(void)
6786 {
6787         int surfacenum, best;
6788         vec3_t clipped, p;
6789         vec_t dist, bestdist;
6790         prvm_edict_t *ed;
6791         dp_model_t *model;
6792         msurface_t *surface;
6793         vec_t *point;
6794         VM_SAFEPARMCOUNT(2, VM_getsurfacenearpoint);
6795         PRVM_G_FLOAT(OFS_RETURN) = -1;
6796         ed = PRVM_G_EDICT(OFS_PARM0);
6797         point = PRVM_G_VECTOR(OFS_PARM1);
6798
6799         if (!ed || ed->priv.server->free)
6800                 return;
6801         model = getmodel(ed);
6802         if (!model || !model->num_surfaces)
6803                 return;
6804
6805         animatemodel(model, ed);
6806
6807         applytransform_inverted(point, ed, p);
6808         best = -1;
6809         bestdist = 1000000000;
6810         for (surfacenum = 0;surfacenum < model->nummodelsurfaces;surfacenum++)
6811         {
6812                 surface = model->data_surfaces + surfacenum + model->firstmodelsurface;
6813                 // first see if the nearest point on the surface's box is closer than the previous match
6814                 clipped[0] = bound(surface->mins[0], p[0], surface->maxs[0]) - p[0];
6815                 clipped[1] = bound(surface->mins[1], p[1], surface->maxs[1]) - p[1];
6816                 clipped[2] = bound(surface->mins[2], p[2], surface->maxs[2]) - p[2];
6817                 dist = VectorLength2(clipped);
6818                 if (dist < bestdist)
6819                 {
6820                         // it is, check the nearest point on the actual geometry
6821                         clippointtosurface(ed, model, surface, p, clipped);
6822                         VectorSubtract(clipped, p, clipped);
6823                         dist += VectorLength2(clipped);
6824                         if (dist < bestdist)
6825                         {
6826                                 // that's closer too, store it as the best match
6827                                 best = surfacenum;
6828                                 bestdist = dist;
6829                         }
6830                 }
6831         }
6832         PRVM_G_FLOAT(OFS_RETURN) = best;
6833 }
6834 //PF_getsurfaceclippedpoint, // #439 vector(entity e, float s, vector p) getsurfaceclippedpoint = #439;
6835 void VM_getsurfaceclippedpoint(void)
6836 {
6837         prvm_edict_t *ed;
6838         dp_model_t *model;
6839         msurface_t *surface;
6840         vec3_t p, out;
6841         VM_SAFEPARMCOUNT(3, VM_te_getsurfaceclippedpoint);
6842         VectorClear(PRVM_G_VECTOR(OFS_RETURN));
6843         ed = PRVM_G_EDICT(OFS_PARM0);
6844         if (!(model = getmodel(ed)) || !(surface = getsurface(model, (int)PRVM_G_FLOAT(OFS_PARM1))))
6845                 return;
6846         animatemodel(model, ed);
6847         applytransform_inverted(PRVM_G_VECTOR(OFS_PARM2), ed, p);
6848         clippointtosurface(ed, model, surface, p, out);
6849         VectorAdd(out, PRVM_serveredictvector(ed, origin), PRVM_G_VECTOR(OFS_RETURN));
6850 }
6851
6852 //PF_getsurfacenumtriangles, // #??? float(entity e, float s) getsurfacenumtriangles = #???;
6853 void VM_getsurfacenumtriangles(void)
6854 {
6855        dp_model_t *model;
6856        msurface_t *surface;
6857        VM_SAFEPARMCOUNT(2, VM_SV_getsurfacenumtriangles);
6858        // return 0 if no such surface
6859        if (!(model = getmodel(PRVM_G_EDICT(OFS_PARM0))) || !(surface = getsurface(model, (int)PRVM_G_FLOAT(OFS_PARM1))))
6860        {
6861                PRVM_G_FLOAT(OFS_RETURN) = 0;
6862                return;
6863        }
6864
6865        // note: this (incorrectly) assumes it is a simple polygon
6866        PRVM_G_FLOAT(OFS_RETURN) = surface->num_triangles;
6867 }
6868 //PF_getsurfacetriangle,     // #??? vector(entity e, float s, float n) getsurfacetriangle = #???;
6869 void VM_getsurfacetriangle(void)
6870 {
6871        const vec3_t d = {-1, -1, -1};
6872        prvm_edict_t *ed;
6873        dp_model_t *model;
6874        msurface_t *surface;
6875        int trinum;
6876        VM_SAFEPARMCOUNT(3, VM_SV_getsurfacetriangle);
6877        VectorClear(PRVM_G_VECTOR(OFS_RETURN));
6878        ed = PRVM_G_EDICT(OFS_PARM0);
6879        if (!(model = getmodel(ed)) || !(surface = getsurface(model, (int)PRVM_G_FLOAT(OFS_PARM1))))
6880                return;
6881        trinum = (int)PRVM_G_FLOAT(OFS_PARM2);
6882        if (trinum < 0 || trinum >= surface->num_triangles)
6883                return;
6884        // FIXME: implement rotation/scaling
6885        VectorMA(&(model->surfmesh.data_element3i + 3 * surface->num_firsttriangle)[trinum * 3], surface->num_firstvertex, d, PRVM_G_VECTOR(OFS_RETURN));
6886 }
6887
6888 //
6889 // physics builtins
6890 //
6891
6892 void World_Physics_ApplyCmd(prvm_edict_t *ed, edict_odefunc_t *f);
6893
6894 #define VM_physics_ApplyCmd(ed,f) if (!ed->priv.server->ode_body) VM_physics_newstackfunction(ed, f); else World_Physics_ApplyCmd(ed, f)
6895
6896 edict_odefunc_t *VM_physics_newstackfunction(prvm_edict_t *ed, edict_odefunc_t *f)
6897 {
6898         edict_odefunc_t *newfunc, *func;
6899
6900         newfunc = (edict_odefunc_t *)Mem_Alloc(prog->progs_mempool, sizeof(edict_odefunc_t));
6901         memcpy(newfunc, f, sizeof(edict_odefunc_t));
6902         newfunc->next = NULL;
6903         if (!ed->priv.server->ode_func)
6904                 ed->priv.server->ode_func = newfunc;
6905         else
6906         {
6907                 for (func = ed->priv.server->ode_func; func->next; func = func->next);
6908                 func->next = newfunc;
6909         }
6910         return newfunc;
6911 }
6912
6913 // void(entity e, float physics_enabled) physics_enable = #;
6914 void VM_physics_enable(void)
6915 {
6916         prvm_edict_t *ed;
6917         edict_odefunc_t f;
6918         
6919         VM_SAFEPARMCOUNT(2, VM_physics_enable);
6920         ed = PRVM_G_EDICT(OFS_PARM0);
6921         if (!ed)
6922         {
6923                 if (developer.integer > 0)
6924                         VM_Warning("VM_physics_enable: null entity!\n");
6925                 return;
6926         }
6927         // entity should have MOVETYPE_PHYSICS already set, this can damage memory (making leaked allocation) so warn about this even if non-developer
6928         if (PRVM_serveredictfloat(ed, movetype) != MOVETYPE_PHYSICS)
6929         {
6930                 VM_Warning("VM_physics_enable: entity is not MOVETYPE_PHYSICS!\n");
6931                 return;
6932         }
6933         f.type = PRVM_G_FLOAT(OFS_PARM1) == 0 ? ODEFUNC_DISABLE : ODEFUNC_ENABLE;
6934         VM_physics_ApplyCmd(ed, &f);
6935 }
6936
6937 // void(entity e, vector force, vector relative_ofs) physics_addforce = #;
6938 void VM_physics_addforce(void)
6939 {
6940         prvm_edict_t *ed;
6941         edict_odefunc_t f;
6942         
6943         VM_SAFEPARMCOUNT(3, VM_physics_addforce);
6944         ed = PRVM_G_EDICT(OFS_PARM0);
6945         if (!ed)
6946         {
6947                 if (developer.integer > 0)
6948                         VM_Warning("VM_physics_addforce: null entity!\n");
6949                 return;
6950         }
6951         // entity should have MOVETYPE_PHYSICS already set, this can damage memory (making leaked allocation) so warn about this even if non-developer
6952         if (PRVM_serveredictfloat(ed, movetype) != MOVETYPE_PHYSICS)
6953         {
6954                 VM_Warning("VM_physics_addforce: entity is not MOVETYPE_PHYSICS!\n");
6955                 return;
6956         }
6957         f.type = ODEFUNC_RELFORCEATPOS;
6958         VectorCopy(PRVM_G_VECTOR(OFS_PARM1), f.v1);
6959         VectorSubtract(PRVM_serveredictvector(ed, origin), PRVM_G_VECTOR(OFS_PARM2), f.v2);
6960         VM_physics_ApplyCmd(ed, &f);
6961 }
6962
6963 // void(entity e, vector torque) physics_addtorque = #;
6964 void VM_physics_addtorque(void)
6965 {
6966         prvm_edict_t *ed;
6967         edict_odefunc_t f;
6968         
6969         VM_SAFEPARMCOUNT(2, VM_physics_addtorque);
6970         ed = PRVM_G_EDICT(OFS_PARM0);
6971         if (!ed)
6972         {
6973                 if (developer.integer > 0)
6974                         VM_Warning("VM_physics_addtorque: null entity!\n");
6975                 return;
6976         }
6977         // entity should have MOVETYPE_PHYSICS already set, this can damage memory (making leaked allocation) so warn about this even if non-developer
6978         if (PRVM_serveredictfloat(ed, movetype) != MOVETYPE_PHYSICS)
6979         {
6980                 VM_Warning("VM_physics_addtorque: entity is not MOVETYPE_PHYSICS!\n");
6981                 return;
6982         }
6983         f.type = ODEFUNC_RELTORQUE;
6984         VectorCopy(PRVM_G_VECTOR(OFS_PARM1), f.v1);
6985         VM_physics_ApplyCmd(ed, &f);
6986 }