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