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