]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - mvm_cmds.c
0581a1c8446ea25c17696016c0e98c530472b2fe
[xonotic/darkplaces.git] / mvm_cmds.c
1 #include "quakedef.h"
2
3 #include "prvm_cmds.h"
4 #include "clvm_cmds.h"
5 #include "menu.h"
6
7 //============================================================================
8 // Menu
9
10 char *vm_m_extensions =
11 "BX_WAL_SUPPORT "
12 "DP_CINEMATIC_DPV "
13 "DP_FONT_VARIABLEWIDTH "
14 "DP_GECKO_SUPPORT "
15 "DP_MENU_EXTRESPONSEPACKET "
16 "DP_QC_ASINACOSATANATAN2TAN "
17 "DP_QC_CMD "
18 "DP_QC_CRC16 "
19 "DP_QC_CVAR_TYPE "
20 "DP_QC_RENDER_SCENE "
21 "DP_QC_STRFTIME "
22 "DP_QC_STRINGBUFFERS "
23 "DP_QC_STRINGCOLORFUNCTIONS "
24 "DP_QC_STRING_CASE_FUNCTIONS "
25 "DP_QC_STRREPLACE "
26 "DP_QC_TOKENIZEBYSEPARATOR "
27 "DP_QC_UNLIMITEDTEMPSTRINGS "
28 "DP_QC_URI_ESCAPE "
29 "DP_QC_WHICHPACK "
30 "FTE_STRINGS "
31 ;
32
33 /*
34 =========
35 VM_M_setmousetarget
36
37 setmousetarget(float target)
38 =========
39 */
40 void VM_M_setmousetarget(void)
41 {
42         VM_SAFEPARMCOUNT(1, VM_M_setmousetarget);
43
44         switch((int)PRVM_G_FLOAT(OFS_PARM0))
45         {
46         case 1:
47                 in_client_mouse = false;
48                 break;
49         case 2:
50                 in_client_mouse = true;
51                 break;
52         default:
53                 PRVM_ERROR("VM_M_setmousetarget: wrong destination %f !",PRVM_G_FLOAT(OFS_PARM0));
54         }
55 }
56
57 /*
58 =========
59 VM_M_getmousetarget
60
61 float   getmousetarget
62 =========
63 */
64 void VM_M_getmousetarget(void)
65 {
66         VM_SAFEPARMCOUNT(0,VM_M_getmousetarget);
67
68         if(in_client_mouse)
69                 PRVM_G_FLOAT(OFS_RETURN) = 2;
70         else
71                 PRVM_G_FLOAT(OFS_RETURN) = 1;
72 }
73
74
75
76 /*
77 =========
78 VM_M_setkeydest
79
80 setkeydest(float dest)
81 =========
82 */
83 void VM_M_setkeydest(void)
84 {
85         VM_SAFEPARMCOUNT(1,VM_M_setkeydest);
86
87         switch((int)PRVM_G_FLOAT(OFS_PARM0))
88         {
89         case 0:
90                 // key_game
91                 key_dest = key_game;
92                 break;
93         case 2:
94                 // key_menu
95                 key_dest = key_menu;
96                 break;
97         case 3:
98                 // key_menu_grabbed
99                 key_dest = key_menu_grabbed;
100                 break;
101         case 1:
102                 // key_message
103                 // key_dest = key_message
104                 // break;
105         default:
106                 PRVM_ERROR("VM_M_setkeydest: wrong destination %f !", PRVM_G_FLOAT(OFS_PARM0));
107         }
108 }
109
110 /*
111 =========
112 VM_M_getkeydest
113
114 float   getkeydest
115 =========
116 */
117 void VM_M_getkeydest(void)
118 {
119         VM_SAFEPARMCOUNT(0,VM_M_getkeydest);
120
121         // key_game = 0, key_message = 1, key_menu = 2, key_menu_grabbed = 3, unknown = -1
122         switch(key_dest)
123         {
124         case key_game:
125                 PRVM_G_FLOAT(OFS_RETURN) = 0;
126                 break;
127         case key_menu:
128                 PRVM_G_FLOAT(OFS_RETURN) = 2;
129                 break;
130         case key_menu_grabbed:
131                 PRVM_G_FLOAT(OFS_RETURN) = 3;
132                 break;
133         case key_message:
134                 // not supported
135                 // PRVM_G_FLOAT(OFS_RETURN) = 1;
136                 // break;
137         default:
138                 PRVM_G_FLOAT(OFS_RETURN) = -1;
139         }
140 }
141
142 /*
143 =========
144 VM_M_callfunction
145
146         callfunction(...,string function_name)
147 Extension: pass
148 =========
149 */
150 mfunction_t *PRVM_ED_FindFunction (const char *name);
151 void VM_M_callfunction(void)
152 {
153         mfunction_t *func;
154         const char *s;
155
156         VM_SAFEPARMCOUNTRANGE(1, 8, VM_M_callfunction);
157
158         s = PRVM_G_STRING(OFS_PARM0+(prog->argc - 1)*3);
159
160         VM_CheckEmptyString(s);
161
162         func = PRVM_ED_FindFunction(s);
163
164         if(!func)
165                 PRVM_ERROR("VM_M_callfunciton: function %s not found !", s);
166         else if (func->first_statement < 0)
167         {
168                 // negative statements are built in functions
169                 int builtinnumber = -func->first_statement;
170                 prog->xfunction->builtinsprofile++;
171                 if (builtinnumber < prog->numbuiltins && prog->builtins[builtinnumber])
172                         prog->builtins[builtinnumber]();
173                 else
174                         PRVM_ERROR("No such builtin #%i in %s; most likely cause: outdated engine build. Try updating!", builtinnumber, PRVM_NAME);
175         }
176         else if(func - prog->functions > 0)
177         {
178                 prog->argc--;
179                 PRVM_ExecuteProgram(func - prog->functions,"");
180                 prog->argc++;
181         }
182 }
183
184 /*
185 =========
186 VM_M_isfunction
187
188 float   isfunction(string function_name)
189 =========
190 */
191 mfunction_t *PRVM_ED_FindFunction (const char *name);
192 void VM_M_isfunction(void)
193 {
194         mfunction_t *func;
195         const char *s;
196
197         VM_SAFEPARMCOUNT(1, VM_M_isfunction);
198
199         s = PRVM_G_STRING(OFS_PARM0);
200
201         VM_CheckEmptyString(s);
202
203         func = PRVM_ED_FindFunction(s);
204
205         if(!func)
206                 PRVM_G_FLOAT(OFS_RETURN) = false;
207         else
208                 PRVM_G_FLOAT(OFS_RETURN) = true;
209 }
210
211 /*
212 =========
213 VM_M_getresolution
214
215 vector  getresolution(float number)
216 =========
217 */
218 void VM_M_getresolution(void)
219 {
220         int nr;
221         VM_SAFEPARMCOUNT(1, VM_getresolution);
222
223         nr = (int)PRVM_G_FLOAT(OFS_PARM0);
224
225         // FIXME bounds check
226         PRVM_G_VECTOR(OFS_RETURN)[0] = video_resolutions[nr].width;
227         PRVM_G_VECTOR(OFS_RETURN)[1] = video_resolutions[nr].height;
228         PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
229 }
230
231 /*
232 =========
233 VM_M_findkeysforcommand
234
235 string  findkeysforcommand(string command)
236
237 the returned string is an altstring
238 =========
239 */
240 #define NUMKEYS 5 // TODO: merge the constant in keys.c with this one somewhen
241
242 void M_FindKeysForCommand(const char *command, int *keys);
243 void VM_M_findkeysforcommand(void)
244 {
245         const char *cmd;
246         char ret[VM_STRINGTEMP_LENGTH];
247         int keys[NUMKEYS];
248         int i;
249
250         VM_SAFEPARMCOUNT(1, VM_M_findkeysforcommand);
251
252         cmd = PRVM_G_STRING(OFS_PARM0);
253
254         VM_CheckEmptyString(cmd);
255
256         M_FindKeysForCommand(cmd, keys);
257
258         ret[0] = 0;
259         for(i = 0; i < NUMKEYS; i++)
260                 strlcat(ret, va(" \'%i\'", keys[i]), sizeof(ret));
261
262         PRVM_G_INT(OFS_RETURN) = PRVM_SetTempString(ret);
263 }
264
265 /*
266 =========
267 VM_M_getserverliststat
268
269 float   getserverliststat(float type)
270 =========
271 */
272 /*
273         type:
274 0       serverlist_viewcount
275 1   serverlist_totalcount
276 2       masterquerycount
277 3       masterreplycount
278 4       serverquerycount
279 5       serverreplycount
280 6       sortfield
281 7       sortdescending
282 */
283 void VM_M_getserverliststat( void )
284 {
285         int type;
286         VM_SAFEPARMCOUNT ( 1, VM_M_getserverliststat );
287
288         PRVM_G_FLOAT( OFS_RETURN ) = 0;
289
290         type = (int)PRVM_G_FLOAT( OFS_PARM0 );
291         switch(type)
292         {
293         case 0:
294                 PRVM_G_FLOAT ( OFS_RETURN ) = serverlist_viewcount;
295                 return;
296         case 1:
297                 PRVM_G_FLOAT ( OFS_RETURN ) = serverlist_cachecount;
298         case 2:
299                 PRVM_G_FLOAT ( OFS_RETURN ) = masterquerycount;
300                 return;
301         case 3:
302                 PRVM_G_FLOAT ( OFS_RETURN ) = masterreplycount;
303                 return;
304         case 4:
305                 PRVM_G_FLOAT ( OFS_RETURN ) = serverquerycount;
306                 return;
307         case 5:
308                 PRVM_G_FLOAT ( OFS_RETURN ) = serverreplycount;
309                 return;
310         case 6:
311                 PRVM_G_FLOAT ( OFS_RETURN ) = serverlist_sortbyfield;
312                 return;
313         case 7:
314                 PRVM_G_FLOAT ( OFS_RETURN ) = serverlist_sortdescending;
315                 return;
316         default:
317                 VM_Warning( "VM_M_getserverliststat: bad type %i!\n", type );
318         }
319 }
320
321 /*
322 ========================
323 VM_M_resetserverlistmasks
324
325 resetserverlistmasks()
326 ========================
327 */
328 void VM_M_resetserverlistmasks( void )
329 {
330         VM_SAFEPARMCOUNT(0, VM_M_resetserverlistmasks);
331         ServerList_ResetMasks();
332 }
333
334
335 /*
336 ========================
337 VM_M_setserverlistmaskstring
338
339 setserverlistmaskstring(float mask, float fld, string str, float op)
340 0-511           and
341 512 - 1024      or
342 ========================
343 */
344 void VM_M_setserverlistmaskstring( void )
345 {
346         const char *str;
347         int masknr;
348         serverlist_mask_t *mask;
349         int field;
350
351         VM_SAFEPARMCOUNT( 4, VM_M_setserverlistmaskstring );
352         str = PRVM_G_STRING( OFS_PARM2 );
353
354         masknr = (int)PRVM_G_FLOAT( OFS_PARM0 );
355         if( masknr >= 0 && masknr <= SERVERLIST_ANDMASKCOUNT )
356                 mask = &serverlist_andmasks[masknr];
357         else if( masknr >= 512 && masknr - 512 <= SERVERLIST_ORMASKCOUNT )
358                 mask = &serverlist_ormasks[masknr - 512 ];
359         else
360         {
361                 VM_Warning( "VM_M_setserverlistmaskstring: invalid mask number %i\n", masknr );
362                 return;
363         }
364
365         field = (int) PRVM_G_FLOAT( OFS_PARM1 );
366
367         switch( field ) {
368                 case SLIF_CNAME:
369                         strlcpy( mask->info.cname, PRVM_G_STRING( OFS_PARM2 ), sizeof(mask->info.cname) );
370                         break;
371                 case SLIF_NAME:
372                         strlcpy( mask->info.name, PRVM_G_STRING( OFS_PARM2 ), sizeof(mask->info.name)  );
373                         break;
374                 case SLIF_QCSTATUS:
375                         strlcpy( mask->info.qcstatus, PRVM_G_STRING( OFS_PARM2 ), sizeof(mask->info.qcstatus)  );
376                         break;
377                 case SLIF_PLAYERS:
378                         strlcpy( mask->info.players, PRVM_G_STRING( OFS_PARM2 ), sizeof(mask->info.players)  );
379                         break;
380                 case SLIF_MAP:
381                         strlcpy( mask->info.map, PRVM_G_STRING( OFS_PARM2 ), sizeof(mask->info.map)  );
382                         break;
383                 case SLIF_MOD:
384                         strlcpy( mask->info.mod, PRVM_G_STRING( OFS_PARM2 ), sizeof(mask->info.mod)  );
385                         break;
386                 case SLIF_GAME:
387                         strlcpy( mask->info.game, PRVM_G_STRING( OFS_PARM2 ), sizeof(mask->info.game)  );
388                         break;
389                 default:
390                         VM_Warning( "VM_M_setserverlistmaskstring: Bad field number %i passed!\n", field );
391                         return;
392         }
393
394         mask->active = true;
395         mask->tests[field] = (serverlist_maskop_t)((int)PRVM_G_FLOAT( OFS_PARM3 ));
396 }
397
398 /*
399 ========================
400 VM_M_setserverlistmasknumber
401
402 setserverlistmasknumber(float mask, float fld, float num, float op)
403
404 0-511           and
405 512 - 1024      or
406 ========================
407 */
408 void VM_M_setserverlistmasknumber( void )
409 {
410         int number;
411         serverlist_mask_t *mask;
412         int     masknr;
413         int field;
414         VM_SAFEPARMCOUNT( 4, VM_M_setserverlistmasknumber );
415
416         masknr = (int)PRVM_G_FLOAT( OFS_PARM0 );
417         if( masknr >= 0 && masknr <= SERVERLIST_ANDMASKCOUNT )
418                 mask = &serverlist_andmasks[masknr];
419         else if( masknr >= 512 && masknr - 512 <= SERVERLIST_ORMASKCOUNT )
420                 mask = &serverlist_ormasks[masknr - 512 ];
421         else
422         {
423                 VM_Warning( "VM_M_setserverlistmasknumber: invalid mask number %i\n", masknr );
424                 return;
425         }
426
427         number = (int)PRVM_G_FLOAT( OFS_PARM2 );
428         field = (int) PRVM_G_FLOAT( OFS_PARM1 );
429
430         switch( field ) {
431                 case SLIF_MAXPLAYERS:
432                         mask->info.maxplayers = number;
433                         break;
434                 case SLIF_NUMPLAYERS:
435                         mask->info.numplayers = number;
436                         break;
437                 case SLIF_NUMBOTS:
438                         mask->info.numbots = number;
439                         break;
440                 case SLIF_NUMHUMANS:
441                         mask->info.numhumans = number;
442                         break;
443                 case SLIF_PING:
444                         mask->info.ping = number;
445                         break;
446                 case SLIF_PROTOCOL:
447                         mask->info.protocol = number;
448                         break;
449                 case SLIF_FREESLOTS:
450                         mask->info.freeslots = number;
451                         break;
452                 default:
453                         VM_Warning( "VM_M_setserverlistmasknumber: Bad field number %i passed!\n", field );
454                         return;
455         }
456
457         mask->active = true;
458         mask->tests[field] = (serverlist_maskop_t)((int)PRVM_G_FLOAT( OFS_PARM3 ));
459 }
460
461
462 /*
463 ========================
464 VM_M_resortserverlist
465
466 resortserverlist
467 ========================
468 */
469 void VM_M_resortserverlist( void )
470 {
471         VM_SAFEPARMCOUNT(0, VM_M_resortserverlist);
472         ServerList_RebuildViewList();
473 }
474
475 /*
476 =========
477 VM_M_getserverliststring
478
479 string  getserverliststring(float field, float hostnr)
480 =========
481 */
482 void VM_M_getserverliststring(void)
483 {
484         serverlist_entry_t *cache;
485         int hostnr;
486
487         VM_SAFEPARMCOUNT(2, VM_M_getserverliststring);
488
489         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
490
491         hostnr = (int)PRVM_G_FLOAT(OFS_PARM1);
492
493         if(hostnr < 0 || hostnr >= serverlist_viewcount)
494         {
495                 Con_Print("VM_M_getserverliststring: bad hostnr passed!\n");
496                 return;
497         }
498         cache = serverlist_viewlist[hostnr];
499         switch( (int) PRVM_G_FLOAT(OFS_PARM0) ) {
500                 case SLIF_CNAME:
501                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetEngineString( cache->info.cname );
502                         break;
503                 case SLIF_NAME:
504                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetEngineString( cache->info.name );
505                         break;
506                 case SLIF_QCSTATUS:
507                         PRVM_G_INT (OFS_RETURN ) = PRVM_SetEngineString (cache->info.qcstatus );
508                         break;
509                 case SLIF_PLAYERS:
510                         PRVM_G_INT (OFS_RETURN ) = PRVM_SetEngineString (cache->info.players );
511                         break;
512                 case SLIF_GAME:
513                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetEngineString( cache->info.game );
514                         break;
515                 case SLIF_MOD:
516                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetEngineString( cache->info.mod );
517                         break;
518                 case SLIF_MAP:
519                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetEngineString( cache->info.map );
520                         break;
521                 // TODO remove this again
522                 case 1024:
523                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetEngineString( cache->line1 );
524                         break;
525                 case 1025:
526                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetEngineString( cache->line2 );
527                         break;
528                 default:
529                         Con_Print("VM_M_getserverliststring: bad field number passed!\n");
530         }
531 }
532
533 /*
534 =========
535 VM_M_getserverlistnumber
536
537 float   getserverlistnumber(float field, float hostnr)
538 =========
539 */
540 void VM_M_getserverlistnumber(void)
541 {
542         serverlist_entry_t *cache;
543         int hostnr;
544
545         VM_SAFEPARMCOUNT(2, VM_M_getserverliststring);
546
547         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
548
549         hostnr = (int)PRVM_G_FLOAT(OFS_PARM1);
550
551         if(hostnr < 0 || hostnr >= serverlist_viewcount)
552         {
553                 Con_Print("VM_M_getserverliststring: bad hostnr passed!\n");
554                 return;
555         }
556         cache = serverlist_viewlist[hostnr];
557         switch( (int) PRVM_G_FLOAT(OFS_PARM0) ) {
558                 case SLIF_MAXPLAYERS:
559                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.maxplayers;
560                         break;
561                 case SLIF_NUMPLAYERS:
562                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.numplayers;
563                         break;
564                 case SLIF_NUMBOTS:
565                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.numbots;
566                         break;
567                 case SLIF_NUMHUMANS:
568                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.numhumans;
569                         break;
570                 case SLIF_FREESLOTS:
571                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.freeslots;
572                         break;
573                 case SLIF_PING:
574                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.ping;
575                         break;
576                 case SLIF_PROTOCOL:
577                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.protocol;
578                         break;
579                 default:
580                         Con_Print("VM_M_getserverlistnumber: bad field number passed!\n");
581         }
582 }
583
584 /*
585 ========================
586 VM_M_setserverlistsort
587
588 setserverlistsort(float field, float descending)
589 ========================
590 */
591 void VM_M_setserverlistsort( void )
592 {
593         VM_SAFEPARMCOUNT( 2, VM_M_setserverlistsort );
594
595         serverlist_sortbyfield = (serverlist_infofield_t)((int)PRVM_G_FLOAT( OFS_PARM0 ));
596         serverlist_sortdescending = (qboolean) PRVM_G_FLOAT( OFS_PARM1 );
597 }
598
599 /*
600 ========================
601 VM_M_refreshserverlist
602
603 refreshserverlist()
604 ========================
605 */
606 void VM_M_refreshserverlist( void )
607 {
608         VM_SAFEPARMCOUNT( 0, VM_M_refreshserverlist );
609         ServerList_QueryList(false, true, false, false);
610 }
611
612 /*
613 ========================
614 VM_M_getserverlistindexforkey
615
616 float getserverlistindexforkey(string key)
617 ========================
618 */
619 void VM_M_getserverlistindexforkey( void )
620 {
621         const char *key;
622         VM_SAFEPARMCOUNT( 1, VM_M_getserverlistindexforkey );
623
624         key = PRVM_G_STRING( OFS_PARM0 );
625         VM_CheckEmptyString( key );
626
627         if( !strcmp( key, "cname" ) )
628                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_CNAME;
629         else if( !strcmp( key, "ping" ) )
630                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_PING;
631         else if( !strcmp( key, "game" ) )
632                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_GAME;
633         else if( !strcmp( key, "mod" ) )
634                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_MOD;
635         else if( !strcmp( key, "map" ) )
636                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_MAP;
637         else if( !strcmp( key, "name" ) )
638                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_NAME;
639         else if( !strcmp( key, "qcstatus" ) )
640                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_QCSTATUS;
641         else if( !strcmp( key, "players" ) )
642                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_PLAYERS;
643         else if( !strcmp( key, "maxplayers" ) )
644                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_MAXPLAYERS;
645         else if( !strcmp( key, "numplayers" ) )
646                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_NUMPLAYERS;
647         else if( !strcmp( key, "numbots" ) )
648                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_NUMBOTS;
649         else if( !strcmp( key, "numhumans" ) )
650                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_NUMHUMANS;
651         else if( !strcmp( key, "freeslots" ) )
652                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_FREESLOTS;
653         else if( !strcmp( key, "protocol" ) )
654                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_PROTOCOL;
655         else
656                 PRVM_G_FLOAT( OFS_RETURN ) = -1;
657 }
658
659 /*
660 ========================
661 VM_M_addwantedserverlistkey
662
663 addwantedserverlistkey(string key)
664 ========================
665 */
666 void VM_M_addwantedserverlistkey( void )
667 {
668         VM_SAFEPARMCOUNT( 1, VM_M_addwantedserverlistkey );
669 }
670
671 /*
672 ===============================================================================
673 MESSAGE WRITING
674
675 used only for client and menu
676 server uses VM_SV_...
677
678 Write*(* data, float type, float to)
679
680 ===============================================================================
681 */
682
683 #define MSG_BROADCAST   0               // unreliable to all
684 #define MSG_ONE                 1               // reliable to one (msg_entity)
685 #define MSG_ALL                 2               // reliable to all
686 #define MSG_INIT                3               // write to the init string
687
688 sizebuf_t *VM_M_WriteDest (void)
689 {
690         int             dest;
691         int             destclient;
692
693         if(!sv.active)
694                 PRVM_ERROR("VM_M_WriteDest: game is not server (%s)", PRVM_NAME);
695
696         dest = (int)PRVM_G_FLOAT(OFS_PARM1);
697         switch (dest)
698         {
699         case MSG_BROADCAST:
700                 return &sv.datagram;
701
702         case MSG_ONE:
703                 destclient = (int) PRVM_G_FLOAT(OFS_PARM2);
704                 if (destclient < 0 || destclient >= svs.maxclients || !svs.clients[destclient].active || !svs.clients[destclient].netconnection)
705                         PRVM_ERROR("VM_clientcommand: %s: invalid client !", PRVM_NAME);
706
707                 return &svs.clients[destclient].netconnection->message;
708
709         case MSG_ALL:
710                 return &sv.reliable_datagram;
711
712         case MSG_INIT:
713                 return &sv.signon;
714
715         default:
716                 PRVM_ERROR ("WriteDest: bad destination");
717                 break;
718         }
719
720         return NULL;
721 }
722
723 void VM_M_WriteByte (void)
724 {
725         VM_SAFEPARMCOUNT(1, VM_M_WriteByte);
726         MSG_WriteByte (VM_M_WriteDest(), (int)PRVM_G_FLOAT(OFS_PARM0));
727 }
728
729 void VM_M_WriteChar (void)
730 {
731         VM_SAFEPARMCOUNT(1, VM_M_WriteChar);
732         MSG_WriteChar (VM_M_WriteDest(), (int)PRVM_G_FLOAT(OFS_PARM0));
733 }
734
735 void VM_M_WriteShort (void)
736 {
737         VM_SAFEPARMCOUNT(1, VM_M_WriteShort);
738         MSG_WriteShort (VM_M_WriteDest(), (int)PRVM_G_FLOAT(OFS_PARM0));
739 }
740
741 void VM_M_WriteLong (void)
742 {
743         VM_SAFEPARMCOUNT(1, VM_M_WriteLong);
744         MSG_WriteLong (VM_M_WriteDest(), (int)PRVM_G_FLOAT(OFS_PARM0));
745 }
746
747 void VM_M_WriteAngle (void)
748 {
749         VM_SAFEPARMCOUNT(1, VM_M_WriteAngle);
750         MSG_WriteAngle (VM_M_WriteDest(), PRVM_G_FLOAT(OFS_PARM0), sv.protocol);
751 }
752
753 void VM_M_WriteCoord (void)
754 {
755         VM_SAFEPARMCOUNT(1, VM_M_WriteCoord);
756         MSG_WriteCoord (VM_M_WriteDest(), PRVM_G_FLOAT(OFS_PARM0), sv.protocol);
757 }
758
759 void VM_M_WriteString (void)
760 {
761         VM_SAFEPARMCOUNT(1, VM_M_WriteString);
762         MSG_WriteString (VM_M_WriteDest(), PRVM_G_STRING(OFS_PARM0));
763 }
764
765 void VM_M_WriteEntity (void)
766 {
767         VM_SAFEPARMCOUNT(1, VM_M_WriteEntity);
768         MSG_WriteShort (VM_M_WriteDest(), PRVM_G_EDICTNUM(OFS_PARM0));
769 }
770
771 //string(void) getextresponse = #624; // returns the next extResponse packet that was sent to this client
772 void VM_M_getextresponse (void)
773 {
774         VM_SAFEPARMCOUNT(0,VM_argv);
775
776         if (net_extresponse_count <= 0)
777                 PRVM_G_INT(OFS_RETURN) = OFS_NULL;
778         else
779         {
780                 int first;
781                 --net_extresponse_count;
782                 first = (net_extresponse_last + NET_EXTRESPONSE_MAX - net_extresponse_count) % NET_EXTRESPONSE_MAX;
783                 PRVM_G_INT(OFS_RETURN) = PRVM_SetEngineString(net_extresponse[first]);
784         }
785 }
786
787 /*
788 =================
789 VM_M_copyentity
790
791 copies data from one entity to another
792
793 copyentity(entity src, entity dst)
794 =================
795 */
796 static void VM_M_copyentity (void)
797 {
798         prvm_edict_t *in, *out;
799         VM_SAFEPARMCOUNT(2,VM_M_copyentity);
800         in = PRVM_G_EDICT(OFS_PARM0);
801         out = PRVM_G_EDICT(OFS_PARM1);
802         memcpy(out->fields.vp, in->fields.vp, prog->progs->entityfields * 4);
803 }
804
805 //#66 vector() getmousepos (EXT_CSQC)
806 static void VM_M_getmousepos(void)
807 {
808         VM_SAFEPARMCOUNT(0,VM_M_getmousepos);
809
810         if (key_consoleactive || (key_dest != key_menu && key_dest != key_menu_grabbed))
811                 VectorSet(PRVM_G_VECTOR(OFS_RETURN), 0, 0, 0);
812         else if (in_client_mouse)
813                 VectorSet(PRVM_G_VECTOR(OFS_RETURN), in_windowmouse_x * vid_conwidth.integer / vid.width, in_windowmouse_y * vid_conheight.integer / vid.height, 0);
814         else
815                 VectorSet(PRVM_G_VECTOR(OFS_RETURN), in_mouse_x * vid_conwidth.integer / vid.width, in_mouse_y * vid_conheight.integer / vid.height, 0);
816 }
817
818 prvm_builtin_t vm_m_builtins[] = {
819 NULL,                                                                   //   #0 NULL function (not callable)
820 VM_checkextension,                              //   #1
821 VM_error,                                                       //   #2
822 VM_objerror,                                            //   #3
823 VM_print,                                                       //   #4
824 VM_bprint,                                                      //   #5
825 VM_sprint,                                                      //   #6
826 VM_centerprint,                                 //   #7
827 VM_normalize,                                           //   #8
828 VM_vlen,                                                                //   #9
829 VM_vectoyaw,                                            //  #10
830 VM_vectoangles,                                 //  #11
831 VM_random,                                                      //  #12
832 VM_localcmd,                                            //  #13
833 VM_cvar,                                                                //  #14
834 VM_cvar_set,                                            //  #15
835 VM_dprint,                                                      //  #16
836 VM_ftos,                                                                //  #17
837 VM_fabs,                                                                //  #18
838 VM_vtos,                                                                //  #19
839 VM_etos,                                                                //  #20
840 VM_stof,                                                                //  #21
841 VM_spawn,                                                       //  #22
842 VM_remove,                                                      //  #23
843 VM_find,                                                                //  #24
844 VM_findfloat,                                           //  #25
845 VM_findchain,                                           //  #26
846 VM_findchainfloat,                              //  #27
847 VM_precache_file,                                       //  #28
848 VM_precache_sound,                              //  #29
849 VM_coredump,                                            //  #30
850 VM_traceon,                                                     //  #31
851 VM_traceoff,                                            //  #32
852 VM_eprint,                                                      //  #33
853 VM_rint,                                                                //  #34
854 VM_floor,                                                       //  #35
855 VM_ceil,                                                                //  #36
856 VM_nextent,                                                     //  #37
857 VM_sin,                                                         //  #38
858 VM_cos,                                                         //  #39
859 VM_sqrt,                                                                //  #40
860 VM_randomvec,                                           //  #41
861 VM_registercvar,                                        //  #42
862 VM_min,                                                         //  #43
863 VM_max,                                                         //  #44
864 VM_bound,                                                       //  #45
865 VM_pow,                                                         //  #46
866 VM_M_copyentity,                                        //  #47
867 VM_fopen,                                                       //  #48
868 VM_fclose,                                                      //  #49
869 VM_fgets,                                                       //  #50
870 VM_fputs,                                                       //  #51
871 VM_strlen,                                                      //  #52
872 VM_strcat,                                                      //  #53
873 VM_substring,                                           //  #54
874 VM_stov,                                                                //  #55
875 VM_strzone,                                                     //  #56
876 VM_strunzone,                                           //  #57
877 VM_tokenize,                                            //  #58
878 VM_argv,                                                                //  #59
879 VM_isserver,                                            //  #60
880 VM_clientcount,                                 //  #61
881 VM_clientstate,                                 //  #62
882 VM_clcommand,                                           //  #63
883 VM_changelevel,                                 //  #64
884 VM_localsound,                                          //  #65
885 VM_M_getmousepos,                                       //  #66
886 VM_gettime,                                                     //  #67
887 VM_loadfromdata,                                        //  #68
888 VM_loadfromfile,                                        //  #69
889 VM_modulo,                                                      //  #70
890 VM_cvar_string,                                 //  #71
891 VM_crash,                                                       //  #72
892 VM_stackdump,                                           //  #73
893 VM_search_begin,                                        //  #74
894 VM_search_end,                                          //  #75
895 VM_search_getsize,                              //  #76
896 VM_search_getfilename,                  //  #77
897 VM_chr,                                                         //  #78
898 VM_itof,                                                                //  #79
899 VM_ftoe,                                                                //  #80
900 VM_itof,                                                                //  #81 isString
901 VM_altstr_count,                                        //  #82
902 VM_altstr_prepare,                              //  #83
903 VM_altstr_get,                                          //  #84
904 VM_altstr_set,                                          //  #85
905 VM_altstr_ins,                                          //  #86
906 VM_findflags,                                           //  #87
907 VM_findchainflags,                              //  #88
908 VM_cvar_defstring,                              //  #89
909 // deactivate support for model rendering in the menu until someone has time to do it right [3/2/2008 Andreas]
910 #if 0
911 VM_CL_setmodel,                                 // #90 void(entity e, string m) setmodel (QUAKE)
912 VM_CL_precache_model,                   // #91 void(string s) precache_model (QUAKE)
913 VM_CL_setorigin,                                // #92 void(entity e, vector o) setorigin (QUAKE)
914 #else
915 NULL,
916 NULL,
917 NULL,
918 #endif
919 NULL,                                                                   //  #93
920 NULL,                                                                   //  #94
921 NULL,                                                                   //  #95
922 NULL,                                                                   //  #96
923 NULL,                                                                   //  #97
924 NULL,                                                                   //  #98
925 NULL,                                                                   //  #99
926 NULL,                                                                   // #100
927 NULL,                                                                   // #101
928 NULL,                                                                   // #102
929 NULL,                                                                   // #103
930 NULL,                                                                   // #104
931 NULL,                                                                   // #105
932 NULL,                                                                   // #106
933 NULL,                                                                   // #107
934 NULL,                                                                   // #108
935 NULL,                                                                   // #109
936 NULL,                                                                   // #110
937 NULL,                                                                   // #111
938 NULL,                                                                   // #112
939 NULL,                                                                   // #113
940 NULL,                                                                   // #114
941 NULL,                                                                   // #115
942 NULL,                                                                   // #116
943 NULL,                                                                   // #117
944 NULL,                                                                   // #118
945 NULL,                                                                   // #119
946 NULL,                                                                   // #120
947 NULL,                                                                   // #121
948 NULL,                                                                   // #122
949 NULL,                                                                   // #123
950 NULL,                                                                   // #124
951 NULL,                                                                   // #125
952 NULL,                                                                   // #126
953 NULL,                                                                   // #127
954 NULL,                                                                   // #128
955 NULL,                                                                   // #129
956 NULL,                                                                   // #130
957 NULL,                                                                   // #131
958 NULL,                                                                   // #132
959 NULL,                                                                   // #133
960 NULL,                                                                   // #134
961 NULL,                                                                   // #135
962 NULL,                                                                   // #136
963 NULL,                                                                   // #137
964 NULL,                                                                   // #138
965 NULL,                                                                   // #139
966 NULL,                                                                   // #140
967 NULL,                                                                   // #141
968 NULL,                                                                   // #142
969 NULL,                                                                   // #143
970 NULL,                                                                   // #144
971 NULL,                                                                   // #145
972 NULL,                                                                   // #146
973 NULL,                                                                   // #147
974 NULL,                                                                   // #148
975 NULL,                                                                   // #149
976 NULL,                                                                   // #150
977 NULL,                                                                   // #151
978 NULL,                                                                   // #152
979 NULL,                                                                   // #153
980 NULL,                                                                   // #154
981 NULL,                                                                   // #155
982 NULL,                                                                   // #156
983 NULL,                                                                   // #157
984 NULL,                                                                   // #158
985 NULL,                                                                   // #159
986 NULL,                                                                   // #160
987 NULL,                                                                   // #161
988 NULL,                                                                   // #162
989 NULL,                                                                   // #163
990 NULL,                                                                   // #164
991 NULL,                                                                   // #165
992 NULL,                                                                   // #166
993 NULL,                                                                   // #167
994 NULL,                                                                   // #168
995 NULL,                                                                   // #169
996 NULL,                                                                   // #170
997 NULL,                                                                   // #171
998 NULL,                                                                   // #172
999 NULL,                                                                   // #173
1000 NULL,                                                                   // #174
1001 NULL,                                                                   // #175
1002 NULL,                                                                   // #176
1003 NULL,                                                                   // #177
1004 NULL,                                                                   // #178
1005 NULL,                                                                   // #179
1006 NULL,                                                                   // #180
1007 NULL,                                                                   // #181
1008 NULL,                                                                   // #182
1009 NULL,                                                                   // #183
1010 NULL,                                                                   // #184
1011 NULL,                                                                   // #185
1012 NULL,                                                                   // #186
1013 NULL,                                                                   // #187
1014 NULL,                                                                   // #188
1015 NULL,                                                                   // #189
1016 NULL,                                                                   // #190
1017 NULL,                                                                   // #191
1018 NULL,                                                                   // #192
1019 NULL,                                                                   // #193
1020 NULL,                                                                   // #194
1021 NULL,                                                                   // #195
1022 NULL,                                                                   // #196
1023 NULL,                                                                   // #197
1024 NULL,                                                                   // #198
1025 NULL,                                                                   // #199
1026 NULL,                                                                   // #200
1027 NULL,                                                                   // #201
1028 NULL,                                                                   // #202
1029 NULL,                                                                   // #203
1030 NULL,                                                                   // #204
1031 NULL,                                                                   // #205
1032 NULL,                                                                   // #206
1033 NULL,                                                                   // #207
1034 NULL,                                                                   // #208
1035 NULL,                                                                   // #209
1036 NULL,                                                                   // #210
1037 NULL,                                                                   // #211
1038 NULL,                                                                   // #212
1039 NULL,                                                                   // #213
1040 NULL,                                                                   // #214
1041 NULL,                                                                   // #215
1042 NULL,                                                                   // #216
1043 NULL,                                                                   // #217
1044 NULL,                                                                   // #218
1045 NULL,                                                                   // #219
1046 NULL,                                                                   // #220
1047 VM_strstrofs,                                           // #221 float(string str, string sub[, float startpos]) strstrofs (FTE_STRINGS)
1048 VM_str2chr,                                             // #222 float(string str, float ofs) str2chr (FTE_STRINGS)
1049 VM_chr2str,                                             // #223 string(float c, ...) chr2str (FTE_STRINGS)
1050 VM_strconv,                                             // #224 string(float ccase, float calpha, float cnum, string s, ...) strconv (FTE_STRINGS)
1051 VM_strpad,                                              // #225 string(float chars, string s, ...) strpad (FTE_STRINGS)
1052 VM_infoadd,                                             // #226 string(string info, string key, string value, ...) infoadd (FTE_STRINGS)
1053 VM_infoget,                                             // #227 string(string info, string key) infoget (FTE_STRINGS)
1054 VM_strncmp,                                                     // #228 float(string s1, string s2, float len) strncmp (FTE_STRINGS)
1055 VM_strncasecmp,                                 // #229 float(string s1, string s2) strcasecmp (FTE_STRINGS)
1056 VM_strncasecmp,                                 // #230 float(string s1, string s2, float len) strncasecmp (FTE_STRINGS)
1057 NULL,                                                                   // #231
1058 NULL,                                                                   // #232
1059 NULL,                                                                   // #233
1060 NULL,                                                                   // #234
1061 NULL,                                                                   // #235
1062 NULL,                                                                   // #236
1063 NULL,                                                                   // #237
1064 NULL,                                                                   // #238
1065 NULL,                                                                   // #239
1066 NULL,                                                                   // #240
1067 NULL,                                                                   // #241
1068 NULL,                                                                   // #242
1069 NULL,                                                                   // #243
1070 NULL,                                                                   // #244
1071 NULL,                                                                   // #245
1072 NULL,                                                                   // #246
1073 NULL,                                                                   // #247
1074 NULL,                                                                   // #248
1075 NULL,                                                                   // #249
1076 NULL,                                                                   // #250
1077 NULL,                                                                   // #251
1078 NULL,                                                                   // #252
1079 NULL,                                                                   // #253
1080 NULL,                                                                   // #254
1081 NULL,                                                                   // #255
1082 NULL,                                                                   // #256
1083 NULL,                                                                   // #257
1084 NULL,                                                                   // #258
1085 NULL,                                                                   // #259
1086 NULL,                                                                   // #260
1087 NULL,                                                                   // #261
1088 NULL,                                                                   // #262
1089 NULL,                                                                   // #263
1090 NULL,                                                                   // #264
1091 NULL,                                                                   // #265
1092 NULL,                                                                   // #266
1093 NULL,                                                                   // #267
1094 NULL,                                                                   // #268
1095 NULL,                                                                   // #269
1096 NULL,                                                                   // #270
1097 NULL,                                                                   // #271
1098 NULL,                                                                   // #272
1099 NULL,                                                                   // #273
1100 NULL,                                                                   // #274
1101 NULL,                                                                   // #275
1102 NULL,                                                                   // #276
1103 NULL,                                                                   // #277
1104 NULL,                                                                   // #278
1105 NULL,                                                                   // #279
1106 NULL,                                                                   // #280
1107 NULL,                                                                   // #281
1108 NULL,                                                                   // #282
1109 NULL,                                                                   // #283
1110 NULL,                                                                   // #284
1111 NULL,                                                                   // #285
1112 NULL,                                                                   // #286
1113 NULL,                                                                   // #287
1114 NULL,                                                                   // #288
1115 NULL,                                                                   // #289
1116 NULL,                                                                   // #290
1117 NULL,                                                                   // #291
1118 NULL,                                                                   // #292
1119 NULL,                                                                   // #293
1120 NULL,                                                                   // #294
1121 NULL,                                                                   // #295
1122 NULL,                                                                   // #296
1123 NULL,                                                                   // #297
1124 NULL,                                                                   // #298
1125 NULL,                                                                   // #299
1126 // deactivate support for model rendering in the menu until someone has time to do it right [3/2/2008 Andreas]
1127 #if 0
1128 // CSQC range #300-#399
1129 VM_CL_R_ClearScene,                             // #300 void() clearscene (DP_QC_RENDER_SCENE)
1130 VM_CL_R_AddEntities,                    // #301 void(float mask) addentities (DP_QC_RENDER_SCENE)
1131 VM_CL_R_AddEntity,                              // #302 void(entity ent) addentity (DP_QC_RENDER_SCENE)
1132 VM_CL_R_SetView,                                // #303 float(float property, ...) setproperty (DP_QC_RENDER_SCENE)
1133 VM_CL_R_RenderScene,                    // #304 void() renderscene (DP_QC_RENDER_SCENE)
1134 VM_CL_R_AddDynamicLight,                // #305 void(vector org, float radius, vector lightcolours) adddynamiclight (DP_QC_RENDER_SCENE)
1135 VM_CL_R_PolygonBegin,                   // #306 void(string texturename, float flag[, float is2d, float lines]) R_BeginPolygon (DP_QC_RENDER_SCENE)
1136 VM_CL_R_PolygonVertex,                  // #307 void(vector org, vector texcoords, vector rgb, float alpha) R_PolygonVertex (DP_QC_RENDER_SCENE)
1137 VM_CL_R_PolygonEnd,                             // #308 void() R_EndPolygon
1138 NULL/*VM_CL_R_LoadWorldModel*/,                         // #309 void(string modelname) R_LoadWorldModel
1139 // TODO: rearrange and merge all builtin lists and share as many extensions as possible between all VM instances [1/27/2008 Andreas]
1140 VM_CL_setattachment,                            // #310 void(entity e, entity tagentity, string tagname) setattachment (DP_GFX_QUAKE3MODELTAGS) (DP_QC_RENDER_SCENE)
1141 VM_CL_gettagindex,                              // #311 float(entity ent, string tagname) gettagindex (DP_QC_GETTAGINFO) (DP_QC_RENDER_SCENE)
1142 VM_CL_gettaginfo,                                       // #312 vector(entity ent, float tagindex) gettaginfo (DP_QC_GETTAGINFO) (DP_QC_RENDER_SCENE)
1143 #else
1144 // CSQC range #300-#399
1145 NULL,           
1146 NULL,           
1147 NULL,           
1148 NULL,           
1149 NULL,           
1150 NULL,           
1151 NULL,           
1152 NULL,   
1153 NULL,   
1154 NULL,
1155 NULL,   
1156 NULL,   
1157 NULL,   
1158 #endif
1159 NULL,                                                                   // #313
1160 NULL,                                                                   // #314
1161 NULL,                                                                   // #315
1162 NULL,                                                                   // #316
1163 NULL,                                                                   // #317
1164 NULL,                                                                   // #318
1165 NULL,                                                                   // #319
1166 NULL,                                                                   // #320
1167 NULL,                                                                   // #321
1168 NULL,                                                                   // #322
1169 NULL,                                                                   // #323
1170 NULL,                                                                   // #324
1171 NULL,                                                                   // #325
1172 NULL,                                                                   // #326
1173 NULL,                                                                   // #327
1174 NULL,                                                                   // #328
1175 NULL,                                                                   // #329
1176 NULL,                                                                   // #330
1177 NULL,                                                                   // #331
1178 NULL,                                                                   // #332
1179 NULL,                                                                   // #333
1180 NULL,                                                                   // #334
1181 NULL,                                                                   // #335
1182 NULL,                                                                   // #336
1183 NULL,                                                                   // #337
1184 NULL,                                                                   // #338
1185 NULL,                                                                   // #339
1186 NULL,                                                                   // #340
1187 NULL,                                                                   // #341
1188 NULL,                                                                   // #342
1189 NULL,                                                                   // #343
1190 NULL,                                                                   // #344
1191 NULL,                                                                   // #345
1192 NULL,                                                                   // #346
1193 NULL,                                                                   // #347
1194 NULL,                                                                   // #348
1195 NULL,                                                                   // #349
1196 NULL,                                                                   // #350
1197 NULL,                                                                   // #351
1198 NULL,                                                                   // #352
1199 NULL,                                                                   // #353
1200 NULL,                                                                   // #354
1201 NULL,                                                                   // #355
1202 NULL,                                                                   // #356
1203 NULL,                                                                   // #357
1204 NULL,                                                                   // #358
1205 NULL,                                                                   // #359
1206 NULL,                                                                   // #360
1207 NULL,                                                                   // #361
1208 NULL,                                                                   // #362
1209 NULL,                                                                   // #363
1210 NULL,                                                                   // #364
1211 NULL,                                                                   // #365
1212 NULL,                                                                   // #366
1213 NULL,                                                                   // #367
1214 NULL,                                                                   // #368
1215 NULL,                                                                   // #369
1216 NULL,                                                                   // #370
1217 NULL,                                                                   // #371
1218 NULL,                                                                   // #372
1219 NULL,                                                                   // #373
1220 NULL,                                                                   // #374
1221 NULL,                                                                   // #375
1222 NULL,                                                                   // #376
1223 NULL,                                                                   // #377
1224 NULL,                                                                   // #378
1225 NULL,                                                                   // #379
1226 NULL,                                                                   // #380
1227 NULL,                                                                   // #381
1228 NULL,                                                                   // #382
1229 NULL,                                                                   // #383
1230 NULL,                                                                   // #384
1231 NULL,                                                                   // #385
1232 NULL,                                                                   // #386
1233 NULL,                                                                   // #387
1234 NULL,                                                                   // #388
1235 NULL,                                                                   // #389
1236 NULL,                                                                   // #390
1237 NULL,                                                                   // #391
1238 NULL,                                                                   // #392
1239 NULL,                                                                   // #393
1240 NULL,                                                                   // #394
1241 NULL,                                                                   // #395
1242 NULL,                                                                   // #396
1243 NULL,                                                                   // #397
1244 NULL,                                                                   // #398
1245 NULL,                                                                   // #399
1246 NULL,                                                                   // #400
1247 VM_M_WriteByte,                                 // #401
1248 VM_M_WriteChar,                                 // #402
1249 VM_M_WriteShort,                                        // #403
1250 VM_M_WriteLong,                                 // #404
1251 VM_M_WriteAngle,                                        // #405
1252 VM_M_WriteCoord,                                        // #406
1253 VM_M_WriteString,                                       // #407
1254 VM_M_WriteEntity,                                       // #408
1255 NULL,                                                                   // #409
1256 NULL,                                                                   // #410
1257 NULL,                                                                   // #411
1258 NULL,                                                                   // #412
1259 NULL,                                                                   // #413
1260 NULL,                                                                   // #414
1261 NULL,                                                                   // #415
1262 NULL,                                                                   // #416
1263 NULL,                                                                   // #417
1264 NULL,                                                                   // #418
1265 NULL,                                                                   // #419
1266 NULL,                                                                   // #420
1267 NULL,                                                                   // #421
1268 NULL,                                                                   // #422
1269 NULL,                                                                   // #423
1270 NULL,                                                                   // #424
1271 NULL,                                                                   // #425
1272 NULL,                                                                   // #426
1273 NULL,                                                                   // #427
1274 NULL,                                                                   // #428
1275 NULL,                                                                   // #429
1276 NULL,                                                                   // #430
1277 NULL,                                                                   // #431
1278 NULL,                                                                   // #432
1279 NULL,                                                                   // #433
1280 NULL,                                                                   // #434
1281 NULL,                                                                   // #435
1282 NULL,                                                                   // #436
1283 NULL,                                                                   // #437
1284 NULL,                                                                   // #438
1285 NULL,                                                                   // #439
1286 VM_buf_create,                                  // #440 float() buf_create (DP_QC_STRINGBUFFERS)
1287 VM_buf_del,                                             // #441 void(float bufhandle) buf_del (DP_QC_STRINGBUFFERS)
1288 VM_buf_getsize,                                 // #442 float(float bufhandle) buf_getsize (DP_QC_STRINGBUFFERS)
1289 VM_buf_copy,                                    // #443 void(float bufhandle_from, float bufhandle_to) buf_copy (DP_QC_STRINGBUFFERS)
1290 VM_buf_sort,                                    // #444 void(float bufhandle, float sortpower, float backward) buf_sort (DP_QC_STRINGBUFFERS)
1291 VM_buf_implode,                                 // #445 string(float bufhandle, string glue) buf_implode (DP_QC_STRINGBUFFERS)
1292 VM_bufstr_get,                                  // #446 string(float bufhandle, float string_index) bufstr_get (DP_QC_STRINGBUFFERS)
1293 VM_bufstr_set,                                  // #447 void(float bufhandle, float string_index, string str) bufstr_set (DP_QC_STRINGBUFFERS)
1294 VM_bufstr_add,                                  // #448 float(float bufhandle, string str, float order) bufstr_add (DP_QC_STRINGBUFFERS)
1295 VM_bufstr_free,                                 // #449 void(float bufhandle, float string_index) bufstr_free (DP_QC_STRINGBUFFERS)
1296 NULL,                                                                   // #450
1297 VM_iscachedpic,                                 // #451 draw functions...
1298 VM_precache_pic,                                        // #452
1299 VM_freepic,                                                     // #453
1300 VM_drawcharacter,                                       // #454
1301 VM_drawstring,                                          // #455
1302 VM_drawpic,                                                     // #456
1303 VM_drawfill,                                            // #457
1304 VM_drawsetcliparea,                             // #458
1305 VM_drawresetcliparea,                   // #459
1306 VM_getimagesize,                                        // #460
1307 VM_cin_open,                                            // #461
1308 VM_cin_close,                                           // #462
1309 VM_cin_setstate,                                        // #463
1310 VM_cin_getstate,                                        // #464
1311 VM_cin_restart,                                         // #465
1312 VM_drawline,                                            // #466
1313 VM_drawcolorcodedstring,                // #467
1314 VM_stringwidth,                                 // #468
1315 VM_drawsubpic,                                          // #469
1316 NULL,                                                                   // #470
1317 VM_asin,                                                                // #471 float(float s) VM_asin (DP_QC_ASINACOSATANATAN2TAN)
1318 VM_acos,                                                                // #472 float(float c) VM_acos (DP_QC_ASINACOSATANATAN2TAN)
1319 VM_atan,                                                                // #473 float(float t) VM_atan (DP_QC_ASINACOSATANATAN2TAN)
1320 VM_atan2,                                                       // #474 float(float c, float s) VM_atan2 (DP_QC_ASINACOSATANATAN2TAN)
1321 VM_tan,                                                         // #475 float(float a) VM_tan (DP_QC_ASINACOSATANATAN2TAN)
1322 VM_strlennocol,                                 // #476 float(string s) : DRESK - String Length (not counting color codes) (DP_QC_STRINGCOLORFUNCTIONS)
1323 VM_strdecolorize,                                       // #477 string(string s) : DRESK - Decolorized String (DP_QC_STRINGCOLORFUNCTIONS)
1324 VM_strftime,                                            // #478 string(float uselocaltime, string format, ...) (DP_QC_STRFTIME)
1325 VM_tokenizebyseparator,                 // #479 float(string s) tokenizebyseparator (DP_QC_TOKENIZEBYSEPARATOR)
1326 VM_strtolower,                                          // #480 string(string s) VM_strtolower : DRESK - Return string as lowercase
1327 VM_strtoupper,                                          // #481 string(string s) VM_strtoupper : DRESK - Return string as uppercase
1328 NULL,                                                                   // #482
1329 NULL,                                                                   // #483
1330 VM_strreplace,                                          // #484 string(string search, string replace, string subject) strreplace (DP_QC_STRREPLACE)
1331 VM_strireplace,                                 // #485 string(string search, string replace, string subject) strireplace (DP_QC_STRREPLACE)
1332 NULL,                                                                   // #486
1333 VM_gecko_create,                                        // #487 float gecko_create( string name )
1334 VM_gecko_destroy,                                       // #488 void gecko_destroy( string name )
1335 VM_gecko_navigate,                              // #489 void gecko_navigate( string name, string URI )
1336 VM_gecko_keyevent,                              // #490 float gecko_keyevent( string name, float key, float eventtype )
1337 VM_gecko_movemouse,                             // #491 void gecko_mousemove( string name, float x, float y )
1338 VM_gecko_resize,                                        // #492 void gecko_resize( string name, float w, float h )
1339 VM_gecko_get_texture_extent,    // #493 vector gecko_get_texture_extent( string name )
1340 VM_crc16,                                               // #494 float(float caseinsensitive, string s, ...) crc16 = #494 (DP_QC_CRC16)
1341 VM_cvar_type,                                   // #495 float(string name) cvar_type = #495; (DP_QC_CVAR_TYPE)
1342 NULL,                                                                   // #496
1343 NULL,                                                                   // #497
1344 NULL,                                                                   // #498
1345 NULL,                                                                   // #499
1346 NULL,                                                                   // #500
1347 NULL,                                                                   // #501
1348 NULL,                                                                   // #502
1349 VM_whichpack,                                   // #503 string(string) whichpack = #503;
1350 NULL,                                                                   // #504
1351 NULL,                                                                   // #505
1352 NULL,                                                                   // #506
1353 NULL,                                                                   // #507
1354 NULL,                                                                   // #508
1355 NULL,                                                                   // #509
1356 VM_uri_escape,                                  // #510 string(string in) uri_escape = #510;
1357 VM_uri_unescape,                                // #511 string(string in) uri_unescape = #511;
1358 VM_etof,                                        // #512 float(entity ent) num_for_edict = #512 (DP_QC_NUM_FOR_EDICT)
1359 NULL,                                                                   // #513
1360 NULL,                                                                   // #514
1361 NULL,                                                                   // #515
1362 NULL,                                                                   // #516
1363 NULL,                                                                   // #517
1364 NULL,                                                                   // #518
1365 NULL,                                                                   // #519
1366 NULL,                                                                   // #520
1367 NULL,                                                                   // #521
1368 NULL,                                                                   // #522
1369 NULL,                                                                   // #523
1370 NULL,                                                                   // #524
1371 NULL,                                                                   // #525
1372 NULL,                                                                   // #526
1373 NULL,                                                                   // #527
1374 NULL,                                                                   // #528
1375 NULL,                                                                   // #529
1376 NULL,                                                                   // #530
1377 NULL,                                                                   // #531
1378 NULL,                                                                   // #532
1379 NULL,                                                                   // #533
1380 NULL,                                                                   // #534
1381 NULL,                                                                   // #535
1382 NULL,                                                                   // #536
1383 NULL,                                                                   // #537
1384 NULL,                                                                   // #538
1385 NULL,                                                                   // #539
1386 NULL,                                                                   // #540
1387 NULL,                                                                   // #541
1388 NULL,                                                                   // #542
1389 NULL,                                                                   // #543
1390 NULL,                                                                   // #544
1391 NULL,                                                                   // #545
1392 NULL,                                                                   // #546
1393 NULL,                                                                   // #547
1394 NULL,                                                                   // #548
1395 NULL,                                                                   // #549
1396 NULL,                                                                   // #550
1397 NULL,                                                                   // #551
1398 NULL,                                                                   // #552
1399 NULL,                                                                   // #553
1400 NULL,                                                                   // #554
1401 NULL,                                                                   // #555
1402 NULL,                                                                   // #556
1403 NULL,                                                                   // #557
1404 NULL,                                                                   // #558
1405 NULL,                                                                   // #559
1406 NULL,                                                                   // #560
1407 NULL,                                                                   // #561
1408 NULL,                                                                   // #562
1409 NULL,                                                                   // #563
1410 NULL,                                                                   // #564
1411 NULL,                                                                   // #565
1412 NULL,                                                                   // #566
1413 NULL,                                                                   // #567
1414 NULL,                                                                   // #568
1415 NULL,                                                                   // #569
1416 NULL,                                                                   // #570
1417 NULL,                                                                   // #571
1418 NULL,                                                                   // #572
1419 NULL,                                                                   // #573
1420 NULL,                                                                   // #574
1421 NULL,                                                                   // #575
1422 NULL,                                                                   // #576
1423 NULL,                                                                   // #577
1424 NULL,                                                                   // #578
1425 NULL,                                                                   // #579
1426 NULL,                                                                   // #580
1427 NULL,                                                                   // #581
1428 NULL,                                                                   // #582
1429 NULL,                                                                   // #583
1430 NULL,                                                                   // #584
1431 NULL,                                                                   // #585
1432 NULL,                                                                   // #586
1433 NULL,                                                                   // #587
1434 NULL,                                                                   // #588
1435 NULL,                                                                   // #589
1436 NULL,                                                                   // #590
1437 NULL,                                                                   // #591
1438 NULL,                                                                   // #592
1439 NULL,                                                                   // #593
1440 NULL,                                                                   // #594
1441 NULL,                                                                   // #595
1442 NULL,                                                                   // #596
1443 NULL,                                                                   // #597
1444 NULL,                                                                   // #598
1445 NULL,                                                                   // #599
1446 NULL,                                                                   // #600
1447 VM_M_setkeydest,                                        // #601 void setkeydest(float dest)
1448 VM_M_getkeydest,                                        // #602 float getkeydest(void)
1449 VM_M_setmousetarget,                            // #603 void setmousetarget(float trg)
1450 VM_M_getmousetarget,                            // #604 float getmousetarget(void)
1451 VM_M_callfunction,                              // #605 void callfunction(...)
1452 VM_writetofile,                                 // #606 void writetofile(float fhandle, entity ent)
1453 VM_M_isfunction,                                        // #607 float isfunction(string function_name)
1454 VM_M_getresolution,                             // #608 vector getresolution(float number)
1455 VM_keynumtostring,                              // #609 string keynumtostring(float keynum)
1456 VM_M_findkeysforcommand,                // #610 string findkeysforcommand(string command)
1457 VM_M_getserverliststat,                 // #611 float gethostcachevalue(float type)
1458 VM_M_getserverliststring,               // #612 string gethostcachestring(float type, float hostnr)
1459 VM_parseentitydata,                             // #613 void parseentitydata(entity ent, string data)
1460 VM_stringtokeynum,                              // #614 float stringtokeynum(string key)
1461 VM_M_resetserverlistmasks,              // #615 void resethostcachemasks(void)
1462 VM_M_setserverlistmaskstring,   // #616 void sethostcachemaskstring(float mask, float fld, string str, float op)
1463 VM_M_setserverlistmasknumber,   // #617 void sethostcachemasknumber(float mask, float fld, float num, float op)
1464 VM_M_resortserverlist,                  // #618 void resorthostcache(void)
1465 VM_M_setserverlistsort,                 // #619 void sethostcachesort(float fld, float descending)
1466 VM_M_refreshserverlist,                 // #620 void refreshhostcache(void)
1467 VM_M_getserverlistnumber,               // #621 float gethostcachenumber(float fld, float hostnr)
1468 VM_M_getserverlistindexforkey,// #622 float gethostcacheindexforkey(string key)
1469 VM_M_addwantedserverlistkey,    // #623 void addwantedhostcachekey(string key)
1470 VM_M_getextresponse                             // #624 string getextresponse(void)
1471 };
1472
1473 const int vm_m_numbuiltins = sizeof(vm_m_builtins) / sizeof(prvm_builtin_t);
1474
1475 void VM_M_Cmd_Init(void)
1476 {
1477         r_refdef_scene_t *scene;
1478
1479         VM_Cmd_Init();
1480         VM_Polygons_Reset();
1481
1482         scene = R_GetScenePointer( RST_MENU );
1483
1484         memset (scene, 0, sizeof (*scene));
1485
1486         scene->maxtempentities = 128;
1487         scene->tempentities = (entity_render_t*) Mem_Alloc(prog->progs_mempool, sizeof(entity_render_t) * scene->maxtempentities);
1488
1489         scene->maxentities = MAX_EDICTS + 256 + 512;
1490         scene->entities = (entity_render_t **)Mem_Alloc(prog->progs_mempool, sizeof(entity_render_t *) * scene->maxentities);
1491
1492         scene->ambient = 32.0f;
1493 }
1494
1495 void VM_M_Cmd_Reset(void)
1496 {
1497         // note: the menu's render entities are automatically freed when the prog's pool is freed
1498
1499         //VM_Cmd_Init();
1500         VM_Cmd_Reset();
1501         VM_Polygons_Reset();
1502 }