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