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