]> git.xonotic.org Git - xonotic/darkplaces.git/blob - mvm_cmds.c
Prevent players moving too far when stepping up
[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 #include "csprogs.h"
7
8 // TODO check which strings really should be engine strings
9
10 //============================================================================
11 // Menu
12
13 const char *vm_m_extensions[] = {
14 "BX_WAL_SUPPORT",
15 "DP_CINEMATIC_DPV",
16 "DP_COVERAGE",
17 "DP_CRYPTO",
18 "DP_CSQC_BINDMAPS",
19 "DP_GFX_FONTS",
20 "DP_GFX_FONTS_FREETYPE",
21 "DP_UTF8",
22 "DP_FONT_VARIABLEWIDTH",
23 "DP_MENU_EXTRESPONSEPACKET",
24 "DP_QC_ASINACOSATANATAN2TAN",
25 "DP_QC_AUTOCVARS",
26 "DP_QC_CMD",
27 "DP_QC_CRC16",
28 "DP_QC_CVAR_TYPE",
29 "DP_QC_CVAR_DESCRIPTION",
30 "DP_QC_DIGEST",
31 "DP_QC_DIGEST_SHA256",
32 "DP_QC_FINDCHAIN_TOFIELD",
33 "DP_QC_I18N",
34 "DP_QC_LOG",
35 "DP_QC_RENDER_SCENE",
36 "DP_QC_SPRINTF",
37 "DP_QC_STRFTIME",
38 "DP_QC_STRINGBUFFERS",
39 "DP_QC_STRINGBUFFERS_CVARLIST",
40 "DP_QC_STRINGBUFFERS_EXT_WIP",
41 "DP_QC_STRINGCOLORFUNCTIONS",
42 "DP_QC_STRING_CASE_FUNCTIONS",
43 "DP_QC_STRREPLACE",
44 "DP_QC_TOKENIZEBYSEPARATOR",
45 "DP_QC_TOKENIZE_CONSOLE",
46 "DP_QC_UNLIMITEDTEMPSTRINGS",
47 "DP_QC_URI_ESCAPE",
48 "DP_QC_URI_GET",
49 "DP_QC_URI_POST",
50 "DP_QC_WHICHPACK",
51 "FTE_STRINGS",
52 "DP_QC_FS_SEARCH_PACKFILE",
53 NULL
54 };
55
56 qbool MP_ConsoleCommand(const char *text)
57 {
58         prvm_prog_t *prog = MVM_prog;
59         return PRVM_ConsoleCommand(prog, text, &prog->funcoffsets.GameCommand, false, -1, 0, prog->loaded, "QC function GameCommand is missing");
60 }
61
62 /*
63 =========
64 VM_M_setmousetarget
65
66 setmousetarget(float target)
67 =========
68 */
69 static void VM_M_setmousetarget(prvm_prog_t *prog)
70 {
71         VM_SAFEPARMCOUNT(1, VM_M_setmousetarget);
72
73         switch((int)PRVM_G_FLOAT(OFS_PARM0))
74         {
75         case 1:
76                 in_client_mouse = false;
77                 break;
78         case 2:
79                 in_client_mouse = true;
80                 break;
81         default:
82                 prog->error_cmd("VM_M_setmousetarget: wrong destination %f !",PRVM_G_FLOAT(OFS_PARM0));
83         }
84 }
85
86 /*
87 =========
88 VM_M_getmousetarget
89
90 float   getmousetarget
91 =========
92 */
93 static void VM_M_getmousetarget(prvm_prog_t *prog)
94 {
95         VM_SAFEPARMCOUNT(0,VM_M_getmousetarget);
96
97         if(in_client_mouse)
98                 PRVM_G_FLOAT(OFS_RETURN) = 2;
99         else
100                 PRVM_G_FLOAT(OFS_RETURN) = 1;
101 }
102
103
104
105 /*
106 =========
107 VM_M_setkeydest
108
109 setkeydest(float dest)
110 =========
111 */
112 static void VM_M_setkeydest(prvm_prog_t *prog)
113 {
114         VM_SAFEPARMCOUNT(1,VM_M_setkeydest);
115
116         switch((int)PRVM_G_FLOAT(OFS_PARM0))
117         {
118         case 0:
119                 // key_game
120                 key_dest = key_game;
121                 break;
122         case 2:
123                 // key_menu
124                 key_dest = key_menu;
125                 break;
126         case 3:
127                 // key_menu_grabbed
128                 key_dest = key_menu_grabbed;
129                 break;
130         case 1:
131                 // key_message
132                 // key_dest = key_message
133                 // break;
134         default:
135                 prog->error_cmd("VM_M_setkeydest: wrong destination %f !", PRVM_G_FLOAT(OFS_PARM0));
136         }
137 }
138
139 /*
140 =========
141 VM_M_getkeydest
142
143 float   getkeydest
144 =========
145 */
146 static void VM_M_getkeydest(prvm_prog_t *prog)
147 {
148         VM_SAFEPARMCOUNT(0,VM_M_getkeydest);
149
150         // key_game = 0, key_message = 1, key_menu = 2, key_menu_grabbed = 3, unknown = -1
151         switch(key_dest)
152         {
153         case key_game:
154                 PRVM_G_FLOAT(OFS_RETURN) = 0;
155                 break;
156         case key_menu:
157                 PRVM_G_FLOAT(OFS_RETURN) = 2;
158                 break;
159         case key_menu_grabbed:
160                 PRVM_G_FLOAT(OFS_RETURN) = 3;
161                 break;
162         case key_message:
163                 // not supported
164                 // PRVM_G_FLOAT(OFS_RETURN) = 1;
165                 // break;
166         default:
167                 PRVM_G_FLOAT(OFS_RETURN) = -1;
168         }
169 }
170
171
172 /*
173 =========
174 VM_M_getresolution
175
176 vector  getresolution(float number)
177 =========
178 */
179 static void VM_M_getresolution(prvm_prog_t *prog)
180 {
181         int nr, fs;
182         VM_SAFEPARMCOUNTRANGE(1, 2, VM_M_getresolution);
183
184         nr = (int)PRVM_G_FLOAT(OFS_PARM0);
185
186         fs = ((prog->argc <= 1) || ((int)PRVM_G_FLOAT(OFS_PARM1)));
187
188         if(nr < -1 || nr >= (fs ? video_resolutions_count : video_resolutions_hardcoded_count))
189         {
190                 PRVM_G_VECTOR(OFS_RETURN)[0] = 0;
191                 PRVM_G_VECTOR(OFS_RETURN)[1] = 0;
192                 PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
193         }
194         else if(nr == -1)
195         {
196                 vid_mode_t *m = VID_GetDesktopMode();
197                 if (m)
198                 {
199                         PRVM_G_VECTOR(OFS_RETURN)[0] = m->width;
200                         PRVM_G_VECTOR(OFS_RETURN)[1] = m->height;
201                         PRVM_G_VECTOR(OFS_RETURN)[2] = m->pixelheight_num / (prvm_vec_t) m->pixelheight_denom;
202                 }
203                 else
204                 {
205                         PRVM_G_VECTOR(OFS_RETURN)[0] = 0;
206                         PRVM_G_VECTOR(OFS_RETURN)[1] = 0;
207                         PRVM_G_VECTOR(OFS_RETURN)[2] = 0;
208                 }
209         }
210         else
211         {
212                 video_resolution_t *r = &((fs ? video_resolutions : video_resolutions_hardcoded)[nr]);
213                 PRVM_G_VECTOR(OFS_RETURN)[0] = r->width;
214                 PRVM_G_VECTOR(OFS_RETURN)[1] = r->height;
215                 PRVM_G_VECTOR(OFS_RETURN)[2] = r->pixelheight;
216         }
217 }
218
219 static void VM_M_getgamedirinfo(prvm_prog_t *prog)
220 {
221         int nr, item;
222         VM_SAFEPARMCOUNT(2, VM_getgamedirinfo);
223
224         nr = (int)PRVM_G_FLOAT(OFS_PARM0);
225         item = (int)PRVM_G_FLOAT(OFS_PARM1);
226
227         PRVM_G_INT( OFS_RETURN ) = OFS_NULL;
228
229         if(nr >= 0 && nr < fs_all_gamedirs_count)
230         {
231                 if(item == 0)
232                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, fs_all_gamedirs[nr].name );
233                 else if(item == 1)
234                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, fs_all_gamedirs[nr].description );
235         }
236 }
237
238 /*
239 =========
240 VM_M_getserverliststat
241
242 float   getserverliststat(float type)
243 =========
244 */
245 /*
246         type:
247 0       serverlist_viewcount
248 1   serverlist_totalcount
249 2       masterquerycount
250 3       masterreplycount
251 4       serverquerycount
252 5       serverreplycount
253 6       sortfield
254 7       sortflags
255 */
256 static void VM_M_getserverliststat(prvm_prog_t *prog)
257 {
258         int type;
259         VM_SAFEPARMCOUNT ( 1, VM_M_getserverliststat );
260
261         PRVM_G_FLOAT( OFS_RETURN ) = 0;
262
263         type = (int)PRVM_G_FLOAT( OFS_PARM0 );
264         switch(type)
265         {
266         case 0:
267                 PRVM_G_FLOAT ( OFS_RETURN ) = serverlist_viewcount;
268                 return;
269         case 1:
270                 PRVM_G_FLOAT ( OFS_RETURN ) = serverlist_cachecount;
271                 return;
272         case 2:
273                 PRVM_G_FLOAT ( OFS_RETURN ) = masterquerycount;
274                 return;
275         case 3:
276                 PRVM_G_FLOAT ( OFS_RETURN ) = masterreplycount;
277                 return;
278         case 4:
279                 PRVM_G_FLOAT ( OFS_RETURN ) = serverquerycount;
280                 return;
281         case 5:
282                 PRVM_G_FLOAT ( OFS_RETURN ) = serverreplycount;
283                 return;
284         case 6:
285                 PRVM_G_FLOAT ( OFS_RETURN ) = serverlist_sortbyfield;
286                 return;
287         case 7:
288                 PRVM_G_FLOAT ( OFS_RETURN ) = serverlist_sortflags;
289                 return;
290         default:
291                 VM_Warning(prog, "VM_M_getserverliststat: bad type %i!\n", type );
292         }
293 }
294
295 /*
296 ========================
297 VM_M_resetserverlistmasks
298
299 resetserverlistmasks()
300 ========================
301 */
302 static void VM_M_resetserverlistmasks(prvm_prog_t *prog)
303 {
304         VM_SAFEPARMCOUNT(0, VM_M_resetserverlistmasks);
305         ServerList_ResetMasks();
306 }
307
308
309 /*
310 ========================
311 VM_M_setserverlistmaskstring
312
313 setserverlistmaskstring(float mask, float fld, string str, float op)
314 0-511           and
315 512 - 1024      or
316 ========================
317 */
318 static void VM_M_setserverlistmaskstring(prvm_prog_t *prog)
319 {
320         const char *str;
321         int masknr;
322         serverlist_mask_t *mask;
323         int field;
324
325         VM_SAFEPARMCOUNT( 4, VM_M_setserverlistmaskstring );
326         str = PRVM_G_STRING( OFS_PARM2 );
327
328         masknr = (int)PRVM_G_FLOAT( OFS_PARM0 );
329         if( masknr >= 0 && masknr < SERVERLIST_ANDMASKCOUNT )
330                 mask = &serverlist_andmasks[masknr];
331         else if( masknr >= 512 && masknr - 512 < SERVERLIST_ORMASKCOUNT )
332                 mask = &serverlist_ormasks[masknr - 512 ];
333         else
334         {
335                 VM_Warning(prog, "VM_M_setserverlistmaskstring: invalid mask number %i\n", masknr );
336                 return;
337         }
338
339         field = (int) PRVM_G_FLOAT( OFS_PARM1 );
340
341         switch( field ) {
342                 case SLIF_CNAME:
343                         strlcpy( mask->info.cname, str, sizeof(mask->info.cname) );
344                         break;
345                 case SLIF_NAME:
346                         strlcpy( mask->info.name, str, sizeof(mask->info.name)  );
347                         break;
348                 case SLIF_QCSTATUS:
349                         strlcpy( mask->info.qcstatus, str, sizeof(mask->info.qcstatus)  );
350                         break;
351                 case SLIF_PLAYERS:
352                         strlcpy( mask->info.players, str, sizeof(mask->info.players)  );
353                         break;
354                 case SLIF_MAP:
355                         strlcpy( mask->info.map, str, sizeof(mask->info.map)  );
356                         break;
357                 case SLIF_MOD:
358                         strlcpy( mask->info.mod, str, sizeof(mask->info.mod)  );
359                         break;
360                 case SLIF_GAME:
361                         strlcpy( mask->info.game, str, sizeof(mask->info.game)  );
362                         break;
363                 default:
364                         VM_Warning(prog, "VM_M_setserverlistmaskstring: Bad field number %i passed!\n", field );
365                         return;
366         }
367
368         mask->active = true;
369         mask->tests[field] = (serverlist_maskop_t)((int)PRVM_G_FLOAT( OFS_PARM3 ));
370 }
371
372 /*
373 ========================
374 VM_M_setserverlistmasknumber
375
376 setserverlistmasknumber(float mask, float fld, float num, float op)
377
378 0-511           and
379 512 - 1024      or
380 ========================
381 */
382 static void VM_M_setserverlistmasknumber(prvm_prog_t *prog)
383 {
384         int number;
385         serverlist_mask_t *mask;
386         int     masknr;
387         int field;
388         VM_SAFEPARMCOUNT( 4, VM_M_setserverlistmasknumber );
389
390         masknr = (int)PRVM_G_FLOAT( OFS_PARM0 );
391         if( masknr >= 0 && masknr < SERVERLIST_ANDMASKCOUNT )
392                 mask = &serverlist_andmasks[masknr];
393         else if( masknr >= 512 && masknr - 512 < SERVERLIST_ORMASKCOUNT )
394                 mask = &serverlist_ormasks[masknr - 512 ];
395         else
396         {
397                 VM_Warning(prog, "VM_M_setserverlistmasknumber: invalid mask number %i\n", masknr );
398                 return;
399         }
400
401         number = (int)PRVM_G_FLOAT( OFS_PARM2 );
402         field = (int) PRVM_G_FLOAT( OFS_PARM1 );
403
404         switch( field ) {
405                 case SLIF_MAXPLAYERS:
406                         mask->info.maxplayers = number;
407                         break;
408                 case SLIF_NUMPLAYERS:
409                         mask->info.numplayers = number;
410                         break;
411                 case SLIF_NUMBOTS:
412                         mask->info.numbots = number;
413                         break;
414                 case SLIF_NUMHUMANS:
415                         mask->info.numhumans = number;
416                         break;
417                 case SLIF_PING:
418                         mask->info.ping = number;
419                         break;
420                 case SLIF_PROTOCOL:
421                         mask->info.protocol = number;
422                         break;
423                 case SLIF_FREESLOTS:
424                         mask->info.freeslots = number;
425                         break;
426                 case SLIF_CATEGORY:
427                         mask->info.category = number;
428                         break;
429                 case SLIF_ISFAVORITE:
430                         mask->info.isfavorite = number != 0;
431                         break;
432                 default:
433                         VM_Warning(prog, "VM_M_setserverlistmasknumber: Bad field number %i passed!\n", field );
434                         return;
435         }
436
437         mask->active = true;
438         mask->tests[field] = (serverlist_maskop_t)((int)PRVM_G_FLOAT( OFS_PARM3 ));
439 }
440
441
442 /*
443 ========================
444 VM_M_resortserverlist
445
446 resortserverlist
447 ========================
448 */
449 static void VM_M_resortserverlist(prvm_prog_t *prog)
450 {
451         VM_SAFEPARMCOUNT(0, VM_M_resortserverlist);
452         ServerList_RebuildViewList();
453 }
454
455 /*
456 =========
457 VM_M_getserverliststring
458
459 string  getserverliststring(float field, float hostnr)
460 =========
461 */
462 static void VM_M_getserverliststring(prvm_prog_t *prog)
463 {
464         const serverlist_entry_t *cache;
465         int hostnr;
466
467         VM_SAFEPARMCOUNT(2, VM_M_getserverliststring);
468
469         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
470
471         hostnr = (int)PRVM_G_FLOAT(OFS_PARM1);
472
473         if(hostnr == -1 && serverlist_callbackentry)
474         {
475                 cache = serverlist_callbackentry;
476         }
477         else
478         {
479                 if(hostnr < 0 || hostnr >= serverlist_viewcount)
480                 {
481                         Con_Print("VM_M_getserverliststring: bad hostnr passed!\n");
482                         return;
483                 }
484                 cache = ServerList_GetViewEntry(hostnr);
485         }
486         switch( (int) PRVM_G_FLOAT(OFS_PARM0) ) {
487                 case SLIF_CNAME:
488                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, cache->info.cname );
489                         break;
490                 case SLIF_NAME:
491                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, cache->info.name );
492                         break;
493                 case SLIF_QCSTATUS:
494                         PRVM_G_INT (OFS_RETURN ) = PRVM_SetTempString( prog, cache->info.qcstatus );
495                         break;
496                 case SLIF_PLAYERS:
497                         PRVM_G_INT (OFS_RETURN ) = PRVM_SetTempString( prog, cache->info.players );
498                         break;
499                 case SLIF_GAME:
500                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, cache->info.game );
501                         break;
502                 case SLIF_MOD:
503                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, cache->info.mod );
504                         break;
505                 case SLIF_MAP:
506                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, cache->info.map );
507                         break;
508                 // TODO remove this again
509                 case 1024:
510                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, cache->line1 );
511                         break;
512                 case 1025:
513                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, 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 static void VM_M_getserverlistnumber(prvm_prog_t *prog)
528 {
529         const serverlist_entry_t *cache;
530         int hostnr;
531
532         VM_SAFEPARMCOUNT(2, VM_M_getserverlistnumber);
533
534         PRVM_G_INT(OFS_RETURN) = OFS_NULL;
535
536         hostnr = (int)PRVM_G_FLOAT(OFS_PARM1);
537
538         if(hostnr == -1 && serverlist_callbackentry)
539         {
540                 cache = serverlist_callbackentry;
541         }
542         else
543         {
544                 if(hostnr < 0 || hostnr >= serverlist_viewcount)
545                 {
546                         Con_Print("VM_M_getserverliststring: bad hostnr passed!\n");
547                         return;
548                 }
549                 cache = ServerList_GetViewEntry(hostnr);
550         }
551         switch( (int) PRVM_G_FLOAT(OFS_PARM0) ) {
552                 case SLIF_MAXPLAYERS:
553                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.maxplayers;
554                         break;
555                 case SLIF_NUMPLAYERS:
556                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.numplayers;
557                         break;
558                 case SLIF_NUMBOTS:
559                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.numbots;
560                         break;
561                 case SLIF_NUMHUMANS:
562                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.numhumans;
563                         break;
564                 case SLIF_FREESLOTS:
565                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.freeslots;
566                         break;
567                 case SLIF_PING:
568                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.ping;
569                         break;
570                 case SLIF_PROTOCOL:
571                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.protocol;
572                         break;
573                 case SLIF_CATEGORY:
574                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.category;
575                         break;
576                 case SLIF_ISFAVORITE:
577                         PRVM_G_FLOAT( OFS_RETURN ) = cache->info.isfavorite;
578                         break;
579                 default:
580                         Con_Print("VM_M_getserverlistnumber: bad field number passed!\n");
581         }
582 }
583
584 /*
585 ========================
586 VM_M_setserverlistsort
587
588 setserverlistsort(float field, float flags)
589 ========================
590 */
591 static void VM_M_setserverlistsort(prvm_prog_t *prog)
592 {
593         VM_SAFEPARMCOUNT( 2, VM_M_setserverlistsort );
594
595         serverlist_sortbyfield = (serverlist_infofield_t)((int)PRVM_G_FLOAT( OFS_PARM0 ));
596         serverlist_sortflags = (int) PRVM_G_FLOAT( OFS_PARM1 );
597 }
598
599 /*
600 ========================
601 VM_M_refreshserverlist
602
603 refreshserverlist()
604 ========================
605 */
606 static void VM_M_refreshserverlist(prvm_prog_t *prog)
607 {
608         qbool do_reset = false;
609         VM_SAFEPARMCOUNTRANGE( 0, 1, VM_M_refreshserverlist );
610         if (prog->argc >= 1 && PRVM_G_FLOAT(OFS_PARM0))
611                 do_reset = true;
612         ServerList_QueryList(do_reset, true, false, false);
613 }
614
615 /*
616 ========================
617 VM_M_getserverlistindexforkey
618
619 float getserverlistindexforkey(string key)
620 ========================
621 */
622 static void VM_M_getserverlistindexforkey(prvm_prog_t *prog)
623 {
624         const char *key;
625         VM_SAFEPARMCOUNT( 1, VM_M_getserverlistindexforkey );
626
627         key = PRVM_G_STRING( OFS_PARM0 );
628         VM_CheckEmptyString( prog, key );
629
630         if( !strcmp( key, "cname" ) )
631                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_CNAME;
632         else if( !strcmp( key, "ping" ) )
633                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_PING;
634         else if( !strcmp( key, "game" ) )
635                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_GAME;
636         else if( !strcmp( key, "mod" ) )
637                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_MOD;
638         else if( !strcmp( key, "map" ) )
639                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_MAP;
640         else if( !strcmp( key, "name" ) )
641                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_NAME;
642         else if( !strcmp( key, "qcstatus" ) )
643                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_QCSTATUS;
644         else if( !strcmp( key, "players" ) )
645                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_PLAYERS;
646         else if( !strcmp( key, "maxplayers" ) )
647                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_MAXPLAYERS;
648         else if( !strcmp( key, "numplayers" ) )
649                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_NUMPLAYERS;
650         else if( !strcmp( key, "numbots" ) )
651                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_NUMBOTS;
652         else if( !strcmp( key, "numhumans" ) )
653                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_NUMHUMANS;
654         else if( !strcmp( key, "freeslots" ) )
655                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_FREESLOTS;
656         else if( !strcmp( key, "protocol" ) )
657                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_PROTOCOL;
658         else if( !strcmp( key, "category" ) )
659                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_CATEGORY;
660         else if( !strcmp( key, "isfavorite" ) )
661                 PRVM_G_FLOAT( OFS_RETURN ) = SLIF_ISFAVORITE;
662         else
663                 PRVM_G_FLOAT( OFS_RETURN ) = -1;
664 }
665
666 /*
667 ========================
668 VM_M_addwantedserverlistkey
669
670 addwantedserverlistkey(string key)
671 ========================
672 */
673 static void VM_M_addwantedserverlistkey(prvm_prog_t *prog)
674 {
675         VM_SAFEPARMCOUNT( 1, VM_M_addwantedserverlistkey );
676 }
677
678 /*
679 ===============================================================================
680 MESSAGE WRITING
681
682 used only for client and menu
683 server uses VM_SV_...
684
685 Write*(* data, float type, float to)
686
687 ===============================================================================
688 */
689
690 #define MSG_BROADCAST   0               // unreliable to all
691 #define MSG_ONE                 1               // reliable to one (msg_entity)
692 #define MSG_ALL                 2               // reliable to all
693 #define MSG_INIT                3               // write to the init string
694
695 static sizebuf_t *VM_M_WriteDest (prvm_prog_t *prog)
696 {
697         int             dest;
698         int             destclient;
699
700         if(!sv.active)
701                 prog->error_cmd("VM_M_WriteDest: game is not server (%s)", prog->name);
702
703         dest = (int)PRVM_G_FLOAT(OFS_PARM1);
704         switch (dest)
705         {
706         case MSG_BROADCAST:
707                 return &sv.datagram;
708
709         case MSG_ONE:
710                 destclient = (int) PRVM_G_FLOAT(OFS_PARM2);
711                 if (destclient < 0 || destclient >= svs.maxclients || !svs.clients[destclient].active || !svs.clients[destclient].netconnection)
712                         prog->error_cmd("VM_clientcommand: %s: invalid client !", prog->name);
713
714                 return &svs.clients[destclient].netconnection->message;
715
716         case MSG_ALL:
717                 return &sv.reliable_datagram;
718
719         case MSG_INIT:
720                 return &sv.signon;
721
722         default:
723                 prog->error_cmd("WriteDest: bad destination");
724                 break;
725         }
726
727         return NULL;
728 }
729
730 static void VM_M_WriteByte (prvm_prog_t *prog)
731 {
732         VM_SAFEPARMCOUNT(1, VM_M_WriteByte);
733         MSG_WriteByte (VM_M_WriteDest(prog), (int)PRVM_G_FLOAT(OFS_PARM0));
734 }
735
736 static void VM_M_WriteChar (prvm_prog_t *prog)
737 {
738         VM_SAFEPARMCOUNT(1, VM_M_WriteChar);
739         MSG_WriteChar (VM_M_WriteDest(prog), (int)PRVM_G_FLOAT(OFS_PARM0));
740 }
741
742 static void VM_M_WriteShort (prvm_prog_t *prog)
743 {
744         VM_SAFEPARMCOUNT(1, VM_M_WriteShort);
745         MSG_WriteShort (VM_M_WriteDest(prog), (int)PRVM_G_FLOAT(OFS_PARM0));
746 }
747
748 static void VM_M_WriteLong (prvm_prog_t *prog)
749 {
750         VM_SAFEPARMCOUNT(1, VM_M_WriteLong);
751         MSG_WriteLong (VM_M_WriteDest(prog), (int)PRVM_G_FLOAT(OFS_PARM0));
752 }
753
754 static void VM_M_WriteAngle (prvm_prog_t *prog)
755 {
756         VM_SAFEPARMCOUNT(1, VM_M_WriteAngle);
757         MSG_WriteAngle (VM_M_WriteDest(prog), PRVM_G_FLOAT(OFS_PARM0), sv.protocol);
758 }
759
760 static void VM_M_WriteCoord (prvm_prog_t *prog)
761 {
762         VM_SAFEPARMCOUNT(1, VM_M_WriteCoord);
763         MSG_WriteCoord (VM_M_WriteDest(prog), PRVM_G_FLOAT(OFS_PARM0), sv.protocol);
764 }
765
766 static void VM_M_WriteString (prvm_prog_t *prog)
767 {
768         VM_SAFEPARMCOUNT(1, VM_M_WriteString);
769         MSG_WriteString (VM_M_WriteDest(prog), PRVM_G_STRING(OFS_PARM0));
770 }
771
772 static void VM_M_WriteEntity (prvm_prog_t *prog)
773 {
774         VM_SAFEPARMCOUNT(1, VM_M_WriteEntity);
775         MSG_WriteShort (VM_M_WriteDest(prog), PRVM_G_EDICTNUM(OFS_PARM0));
776 }
777
778 /*
779 =================
780 VM_M_copyentity
781
782 copies data from one entity to another
783
784 copyentity(entity src, entity dst)
785 =================
786 */
787 static void VM_M_copyentity (prvm_prog_t *prog)
788 {
789         prvm_edict_t *in, *out;
790         VM_SAFEPARMCOUNT(2,VM_M_copyentity);
791         in = PRVM_G_EDICT(OFS_PARM0);
792         out = PRVM_G_EDICT(OFS_PARM1);
793         memcpy(out->fields.fp, in->fields.fp, prog->entityfields * sizeof(prvm_vec_t));
794 }
795
796 //#66 vector() getmousepos (EXT_CSQC)
797 static void VM_M_getmousepos(prvm_prog_t *prog)
798 {
799         VM_SAFEPARMCOUNT(0,VM_M_getmousepos);
800
801         if (key_consoleactive || (key_dest != key_menu && key_dest != key_menu_grabbed))
802                 VectorSet(PRVM_G_VECTOR(OFS_RETURN), 0, 0, 0);
803         else if (in_client_mouse)
804                 VectorSet(PRVM_G_VECTOR(OFS_RETURN), in_windowmouse_x * vid_conwidth.integer / vid.width, in_windowmouse_y * vid_conheight.integer / vid.height, 0);
805         else
806                 VectorSet(PRVM_G_VECTOR(OFS_RETURN), in_mouse_x * vid_conwidth.integer / vid.width, in_mouse_y * vid_conheight.integer / vid.height, 0);
807 }
808
809 static void VM_M_crypto_getkeyfp(prvm_prog_t *prog)
810 {
811         lhnetaddress_t addr;
812         const char *s;
813         char keyfp[FP64_SIZE + 1];
814
815         VM_SAFEPARMCOUNT(1,VM_M_crypto_getkeyfp);
816
817         s = PRVM_G_STRING( OFS_PARM0 );
818         VM_CheckEmptyString( prog, s );
819
820         if(LHNETADDRESS_FromString(&addr, s, 26000) && Crypto_RetrieveHostKey(&addr, NULL, keyfp, sizeof(keyfp), NULL, 0, NULL, NULL))
821                 PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, keyfp );
822         else
823                 PRVM_G_INT( OFS_RETURN ) = OFS_NULL;
824 }
825 static void VM_M_crypto_getidfp(prvm_prog_t *prog)
826 {
827         lhnetaddress_t addr;
828         const char *s;
829         char idfp[FP64_SIZE + 1];
830
831         VM_SAFEPARMCOUNT(1,VM_M_crypto_getidfp);
832
833         s = PRVM_G_STRING( OFS_PARM0 );
834         VM_CheckEmptyString( prog, s );
835
836         if(LHNETADDRESS_FromString(&addr, s, 26000) && Crypto_RetrieveHostKey(&addr, NULL, NULL, 0, idfp, sizeof(idfp), NULL, NULL))
837                 PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString( prog, idfp );
838         else
839                 PRVM_G_INT( OFS_RETURN ) = OFS_NULL;
840 }
841 static void VM_M_crypto_getidstatus(prvm_prog_t *prog)
842 {
843         lhnetaddress_t addr;
844         const char *s;
845         qbool issigned;
846
847         VM_SAFEPARMCOUNT(1,VM_M_crypto_getidstatus);
848
849         s = PRVM_G_STRING( OFS_PARM0 );
850         VM_CheckEmptyString( prog, s );
851
852         if(LHNETADDRESS_FromString(&addr, s, 26000) && Crypto_RetrieveHostKey(&addr, NULL, NULL, 0, NULL, 0, NULL, &issigned))
853                 PRVM_G_FLOAT( OFS_RETURN ) = issigned ? 2 : 1;
854         else
855                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
856 }
857 static void VM_M_crypto_getencryptlevel(prvm_prog_t *prog)
858 {
859         lhnetaddress_t addr;
860         const char *s;
861         int aeslevel;
862         char vabuf[1024];
863
864         VM_SAFEPARMCOUNT(1,VM_M_crypto_getencryptlevel);
865
866         s = PRVM_G_STRING( OFS_PARM0 );
867         VM_CheckEmptyString( prog, s );
868
869         if(LHNETADDRESS_FromString(&addr, s, 26000) && Crypto_RetrieveHostKey(&addr, NULL, NULL, 0, NULL, 0, &aeslevel, NULL))
870                 PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString(prog, aeslevel ? va(vabuf, sizeof(vabuf), "%d AES128", aeslevel) : "0");
871         else
872                 PRVM_G_INT( OFS_RETURN ) = OFS_NULL;
873 }
874 static void VM_M_crypto_getmykeyfp(prvm_prog_t *prog)
875 {
876         int i;
877         char keyfp[FP64_SIZE + 1];
878
879         VM_SAFEPARMCOUNT(1, VM_M_crypto_getmykeyfp);
880
881         i = PRVM_G_FLOAT( OFS_PARM0 );
882         switch(Crypto_RetrieveLocalKey(i, keyfp, sizeof(keyfp), NULL, 0, NULL))
883         {
884                 case -1:
885                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString(prog, "");
886                         break;
887                 case 0:
888                         PRVM_G_INT( OFS_RETURN ) = OFS_NULL;
889                         break;
890                 default:
891                 case 1:
892                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString(prog, keyfp);
893                         break;
894         }
895 }
896 static void VM_M_crypto_getmyidfp(prvm_prog_t *prog)
897 {
898         int i;
899         char idfp[FP64_SIZE + 1];
900
901         VM_SAFEPARMCOUNT(1, VM_M_crypto_getmyidfp);
902
903         i = PRVM_G_FLOAT( OFS_PARM0 );
904         switch(Crypto_RetrieveLocalKey(i, NULL, 0, idfp, sizeof(idfp), NULL))
905         {
906                 case -1:
907                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString(prog, "");
908                         break;
909                 case 0:
910                         PRVM_G_INT( OFS_RETURN ) = OFS_NULL;
911                         break;
912                 default:
913                 case 1:
914                         PRVM_G_INT( OFS_RETURN ) = PRVM_SetTempString(prog, idfp);
915                         break;
916         }
917 }
918 static void VM_M_crypto_getmyidstatus(prvm_prog_t *prog)
919 {
920         int i;
921         qbool issigned;
922
923         VM_SAFEPARMCOUNT(1, VM_M_crypto_getmyidstatus);
924
925         i = PRVM_G_FLOAT( OFS_PARM0 );
926         switch(Crypto_RetrieveLocalKey(i, NULL, 0, NULL, 0, &issigned))
927         {
928                 case -1:
929                         PRVM_G_FLOAT( OFS_RETURN ) = 0; // have no ID there
930                         break;
931                 case 0:
932                         PRVM_G_FLOAT( OFS_RETURN ) = -1; // out of range
933                         break;
934                 default:
935                 case 1:
936                         PRVM_G_FLOAT( OFS_RETURN ) = issigned ? 2 : 1;
937                         break;
938         }
939 }
940
941 // CL_Video interface functions
942
943 /*
944 ========================
945 VM_cin_open
946
947 float cin_open(string file, string name)
948 ========================
949 */
950 void VM_cin_open(prvm_prog_t *prog)
951 {
952         const char *file;
953         const char *name;
954
955         VM_SAFEPARMCOUNT( 2, VM_cin_open );
956
957         file = PRVM_G_STRING( OFS_PARM0 );
958         name = PRVM_G_STRING( OFS_PARM1 );
959
960         VM_CheckEmptyString(prog,  file );
961     VM_CheckEmptyString(prog,  name );
962
963         if( CL_OpenVideo( file, name, MENUOWNER, "" ) )
964                 PRVM_G_FLOAT( OFS_RETURN ) = 1;
965         else
966                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
967 }
968
969 /*
970 ========================
971 VM_cin_close
972
973 void cin_close(string name)
974 ========================
975 */
976 void VM_cin_close(prvm_prog_t *prog)
977 {
978         const char *name;
979
980         VM_SAFEPARMCOUNT( 1, VM_cin_close );
981
982         name = PRVM_G_STRING( OFS_PARM0 );
983         VM_CheckEmptyString(prog,  name );
984
985         CL_CloseVideo( CL_GetVideoByName( name ) );
986 }
987
988 /*
989 ========================
990 VM_cin_setstate
991 void cin_setstate(string name, float type)
992 ========================
993 */
994 void VM_cin_setstate(prvm_prog_t *prog)
995 {
996         const char *name;
997         clvideostate_t  state;
998         clvideo_t               *video;
999
1000         VM_SAFEPARMCOUNT( 2, VM_cin_setstate );
1001
1002         name = PRVM_G_STRING( OFS_PARM0 );
1003         VM_CheckEmptyString(prog,  name );
1004
1005         state = (clvideostate_t)((int)PRVM_G_FLOAT( OFS_PARM1 ));
1006
1007         video = CL_GetVideoByName( name );
1008         if( video && state > CLVIDEO_UNUSED && state < CLVIDEO_STATECOUNT )
1009                 CL_SetVideoState( video, state );
1010 }
1011
1012 /*
1013 ========================
1014 VM_cin_getstate
1015
1016 float cin_getstate(string name)
1017 ========================
1018 */
1019 void VM_cin_getstate(prvm_prog_t *prog)
1020 {
1021         const char *name;
1022         clvideo_t               *video;
1023
1024         VM_SAFEPARMCOUNT( 1, VM_cin_getstate );
1025
1026         name = PRVM_G_STRING( OFS_PARM0 );
1027         VM_CheckEmptyString(prog,  name );
1028
1029         video = CL_GetVideoByName( name );
1030         if( video )
1031                 PRVM_G_FLOAT( OFS_RETURN ) = (int)video->state;
1032         else
1033                 PRVM_G_FLOAT( OFS_RETURN ) = 0;
1034 }
1035
1036 /*
1037 ========================
1038 VM_cin_restart
1039
1040 void cin_restart(string name)
1041 ========================
1042 */
1043 void VM_cin_restart(prvm_prog_t *prog)
1044 {
1045         const char *name;
1046         clvideo_t               *video;
1047
1048         VM_SAFEPARMCOUNT( 1, VM_cin_restart );
1049
1050         name = PRVM_G_STRING( OFS_PARM0 );
1051         VM_CheckEmptyString(prog,  name );
1052
1053         video = CL_GetVideoByName( name );
1054         if( video )
1055                 CL_RestartVideo( video );
1056 }
1057
1058 static void VM_M_registercommand(prvm_prog_t *prog)
1059 {
1060         VM_SAFEPARMCOUNT(1, VM_M_registercommand);
1061         if(!Cmd_Exists(cmd_local, PRVM_G_STRING(OFS_PARM0)))
1062                 Cmd_AddCommand(CF_CLIENT, PRVM_G_STRING(OFS_PARM0), NULL, "console command created by QuakeC");
1063 }
1064
1065 prvm_builtin_t vm_m_builtins[] = {
1066 NULL,                                                                   //   #0 NULL function (not callable)
1067 VM_checkextension,                              //   #1
1068 VM_error,                                                       //   #2
1069 VM_objerror,                                            //   #3
1070 VM_print,                                                       //   #4
1071 VM_bprint,                                                      //   #5
1072 VM_sprint,                                                      //   #6
1073 VM_centerprint,                                 //   #7
1074 VM_normalize,                                           //   #8
1075 VM_vlen,                                                                //   #9
1076 VM_vectoyaw,                                            //  #10
1077 VM_vectoangles,                                 //  #11
1078 VM_random,                                                      //  #12
1079 VM_localcmd_local,                                              //  #13
1080 VM_cvar,                                                                //  #14
1081 VM_cvar_set,                                            //  #15
1082 VM_dprint,                                                      //  #16
1083 VM_ftos,                                                                //  #17
1084 VM_fabs,                                                                //  #18
1085 VM_vtos,                                                                //  #19
1086 VM_etos,                                                                //  #20
1087 VM_stof,                                                                //  #21
1088 VM_spawn,                                                       //  #22
1089 VM_remove,                                                      //  #23
1090 VM_find,                                                                //  #24
1091 VM_findfloat,                                           //  #25
1092 VM_findchain,                                           //  #26
1093 VM_findchainfloat,                              //  #27
1094 VM_precache_file,                                       //  #28
1095 VM_precache_sound,                              //  #29
1096 VM_coredump,                                            //  #30
1097 VM_traceon,                                                     //  #31
1098 VM_traceoff,                                            //  #32
1099 VM_eprint,                                                      //  #33
1100 VM_rint,                                                                //  #34
1101 VM_floor,                                                       //  #35
1102 VM_ceil,                                                                //  #36
1103 VM_nextent,                                                     //  #37
1104 VM_sin,                                                         //  #38
1105 VM_cos,                                                         //  #39
1106 VM_sqrt,                                                                //  #40
1107 VM_randomvec,                                           //  #41
1108 VM_registercvar,                                        //  #42
1109 VM_min,                                                         //  #43
1110 VM_max,                                                         //  #44
1111 VM_bound,                                                       //  #45
1112 VM_pow,                                                         //  #46
1113 VM_M_copyentity,                                        //  #47
1114 VM_fopen,                                                       //  #48
1115 VM_fclose,                                                      //  #49
1116 VM_fgets,                                                       //  #50
1117 VM_fputs,                                                       //  #51
1118 VM_strlen,                                                      //  #52
1119 VM_strcat,                                                      //  #53
1120 VM_substring,                                           //  #54
1121 VM_stov,                                                                //  #55
1122 VM_strzone,                                                     //  #56
1123 VM_strunzone,                                           //  #57
1124 VM_tokenize,                                            //  #58
1125 VM_argv,                                                                //  #59
1126 VM_isserver,                                            //  #60
1127 VM_clientcount,                                 //  #61
1128 VM_clientstate,                                 //  #62
1129 NULL,                                           //  #63 FIXME
1130 VM_changelevel,                                 //  #64
1131 VM_localsound,                                          //  #65
1132 VM_M_getmousepos,                                       //  #66
1133 VM_gettime,                                                     //  #67
1134 VM_loadfromdata,                                        //  #68
1135 VM_loadfromfile,                                        //  #69
1136 VM_modulo,                                                      //  #70
1137 VM_cvar_string,                                 //  #71
1138 VM_crash,                                                       //  #72
1139 VM_stackdump,                                           //  #73
1140 VM_search_begin,                                        //  #74
1141 VM_search_end,                                          //  #75
1142 VM_search_getsize,                              //  #76
1143 VM_search_getfilename,                  //  #77
1144 VM_chr,                                                         //  #78
1145 VM_itof,                                                                //  #79
1146 VM_ftoe,                                                                //  #80
1147 VM_itof,                                                                //  #81 isString
1148 VM_altstr_count,                                        //  #82
1149 VM_altstr_prepare,                              //  #83
1150 VM_altstr_get,                                          //  #84
1151 VM_altstr_set,                                          //  #85
1152 VM_altstr_ins,                                          //  #86
1153 VM_findflags,                                           //  #87
1154 VM_findchainflags,                              //  #88
1155 VM_cvar_defstring,                              //  #89
1156 // deactivate support for model rendering in the menu until someone has time to do it right [3/2/2008 Andreas]
1157 #if 0
1158 VM_CL_setmodel,                                 // #90 void(entity e, string m) setmodel (QUAKE)
1159 VM_CL_precache_model,                   // #91 void(string s) precache_model (QUAKE)
1160 VM_CL_setorigin,                                // #92 void(entity e, vector o) setorigin (QUAKE)
1161 #else
1162 NULL,
1163 NULL,
1164 NULL,
1165 #endif
1166 NULL,                                                                   //  #93
1167 NULL,                                                                   //  #94
1168 NULL,                                                                   //  #95
1169 NULL,                                                                   //  #96
1170 NULL,                                                                   //  #97
1171 NULL,                                                                   //  #98
1172 NULL,                                                                   //  #99
1173 NULL,                                                                   // #100
1174 NULL,                                                                   // #101
1175 NULL,                                                                   // #102
1176 NULL,                                                                   // #103
1177 NULL,                                                                   // #104
1178 NULL,                                                                   // #105
1179 NULL,                                                                   // #106
1180 NULL,                                                                   // #107
1181 NULL,                                                                   // #108
1182 NULL,                                                                   // #109
1183 NULL,                                                                   // #110
1184 NULL,                                                                   // #111
1185 NULL,                                                                   // #112
1186 NULL,                                                                   // #113
1187 NULL,                                                                   // #114
1188 NULL,                                                                   // #115
1189 NULL,                                                                   // #116
1190 NULL,                                                                   // #117
1191 NULL,                                                                   // #118
1192 NULL,                                                                   // #119
1193 NULL,                                                                   // #120
1194 NULL,                                                                   // #121
1195 NULL,                                                                   // #122
1196 NULL,                                                                   // #123
1197 NULL,                                                                   // #124
1198 NULL,                                                                   // #125
1199 NULL,                                                                   // #126
1200 NULL,                                                                   // #127
1201 NULL,                                                                   // #128
1202 NULL,                                                                   // #129
1203 NULL,                                                                   // #130
1204 NULL,                                                                   // #131
1205 NULL,                                                                   // #132
1206 NULL,                                                                   // #133
1207 NULL,                                                                   // #134
1208 NULL,                                                                   // #135
1209 NULL,                                                                   // #136
1210 NULL,                                                                   // #137
1211 NULL,                                                                   // #138
1212 NULL,                                                                   // #139
1213 NULL,                                                                   // #140
1214 NULL,                                                                   // #141
1215 NULL,                                                                   // #142
1216 NULL,                                                                   // #143
1217 NULL,                                                                   // #144
1218 NULL,                                                                   // #145
1219 NULL,                                                                   // #146
1220 NULL,                                                                   // #147
1221 NULL,                                                                   // #148
1222 NULL,                                                                   // #149
1223 NULL,                                                                   // #150
1224 NULL,                                                                   // #151
1225 NULL,                                                                   // #152
1226 NULL,                                                                   // #153
1227 NULL,                                                                   // #154
1228 NULL,                                                                   // #155
1229 NULL,                                                                   // #156
1230 NULL,                                                                   // #157
1231 NULL,                                                                   // #158
1232 NULL,                                                                   // #159
1233 NULL,                                                                   // #160
1234 NULL,                                                                   // #161
1235 NULL,                                                                   // #162
1236 NULL,                                                                   // #163
1237 NULL,                                                                   // #164
1238 NULL,                                                                   // #165
1239 NULL,                                                                   // #166
1240 NULL,                                                                   // #167
1241 NULL,                                                                   // #168
1242 NULL,                                                                   // #169
1243 NULL,                                                                   // #170
1244 NULL,                                                                   // #171
1245 NULL,                                                                   // #172
1246 NULL,                                                                   // #173
1247 NULL,                                                                   // #174
1248 NULL,                                                                   // #175
1249 NULL,                                                                   // #176
1250 NULL,                                                                   // #177
1251 NULL,                                                                   // #178
1252 NULL,                                                                   // #179
1253 NULL,                                                                   // #180
1254 NULL,                                                                   // #181
1255 NULL,                                                                   // #182
1256 NULL,                                                                   // #183
1257 NULL,                                                                   // #184
1258 NULL,                                                                   // #185
1259 NULL,                                                                   // #186
1260 NULL,                                                                   // #187
1261 NULL,                                                                   // #188
1262 NULL,                                                                   // #189
1263 NULL,                                                                   // #190
1264 NULL,                                                                   // #191
1265 NULL,                                                                   // #192
1266 NULL,                                                                   // #193
1267 NULL,                                                                   // #194
1268 NULL,                                                                   // #195
1269 NULL,                                                                   // #196
1270 NULL,                                                                   // #197
1271 NULL,                                                                   // #198
1272 NULL,                                                                   // #199
1273 NULL,                                                                   // #200
1274 NULL,                                                                   // #201
1275 NULL,                                                                   // #202
1276 NULL,                                                                   // #203
1277 NULL,                                                                   // #204
1278 NULL,                                                                   // #205
1279 NULL,                                                                   // #206
1280 NULL,                                                                   // #207
1281 NULL,                                                                   // #208
1282 NULL,                                                                   // #209
1283 NULL,                                                                   // #210
1284 NULL,                                                                   // #211
1285 NULL,                                                                   // #212
1286 NULL,                                                                   // #213
1287 NULL,                                                                   // #214
1288 NULL,                                                                   // #215
1289 NULL,                                                                   // #216
1290 NULL,                                                                   // #217
1291 NULL,                                                                   // #218
1292 NULL,                                                                   // #219
1293 NULL,                                                                   // #220
1294 VM_strstrofs,                                           // #221 float(string str, string sub[, float startpos]) strstrofs (FTE_STRINGS)
1295 VM_str2chr,                                             // #222 float(string str, float ofs) str2chr (FTE_STRINGS)
1296 VM_chr2str,                                             // #223 string(float c, ...) chr2str (FTE_STRINGS)
1297 VM_strconv,                                             // #224 string(float ccase, float calpha, float cnum, string s, ...) strconv (FTE_STRINGS)
1298 VM_strpad,                                              // #225 string(float chars, string s, ...) strpad (FTE_STRINGS)
1299 VM_infoadd,                                             // #226 string(string info, string key, string value, ...) infoadd (FTE_STRINGS)
1300 VM_infoget,                                             // #227 string(string info, string key) infoget (FTE_STRINGS)
1301 VM_strncmp,                                                     // #228 float(string s1, string s2, float len) strncmp (FTE_STRINGS)
1302 VM_strncasecmp,                                 // #229 float(string s1, string s2) strcasecmp (FTE_STRINGS)
1303 VM_strncasecmp,                                 // #230 float(string s1, string s2, float len) strncasecmp (FTE_STRINGS)
1304 NULL,                                                                   // #231
1305 NULL,                                                                   // #232
1306 NULL,                                                                   // #233
1307 NULL,                                                                   // #234
1308 NULL,                                                                   // #235
1309 NULL,                                                                   // #236
1310 NULL,                                                                   // #237
1311 NULL,                                                                   // #238
1312 NULL,                                                                   // #239
1313 NULL,                                                                   // #240
1314 NULL,                                                                   // #241
1315 NULL,                                                                   // #242
1316 NULL,                                                                   // #243
1317 NULL,                                                                   // #244
1318 NULL,                                                                   // #245
1319 NULL,                                                                   // #246
1320 NULL,                                                                   // #247
1321 NULL,                                                                   // #248
1322 NULL,                                                                   // #249
1323 NULL,                                                                   // #250
1324 NULL,                                                                   // #251
1325 NULL,                                                                   // #252
1326 NULL,                                                                   // #253
1327 NULL,                                                                   // #254
1328 NULL,                                                                   // #255
1329 NULL,                                                                   // #256
1330 NULL,                                                                   // #257
1331 NULL,                                                                   // #258
1332 NULL,                                                                   // #259
1333 NULL,                                                                   // #260
1334 NULL,                                                                   // #261
1335 NULL,                                                                   // #262
1336 NULL,                                                                   // #263
1337 NULL,                                                                   // #264
1338 NULL,                                                                   // #265
1339 NULL,                                                                   // #266
1340 NULL,                                                                   // #267
1341 NULL,                                                                   // #268
1342 NULL,                                                                   // #269
1343 NULL,                                                                   // #270
1344 NULL,                                                                   // #271
1345 NULL,                                                                   // #272
1346 NULL,                                                                   // #273
1347 NULL,                                                                   // #274
1348 NULL,                                                                   // #275
1349 NULL,                                                                   // #276
1350 NULL,                                                                   // #277
1351 NULL,                                                                   // #278
1352 NULL,                                                                   // #279
1353 NULL,                                                                   // #280
1354 NULL,                                                                   // #281
1355 NULL,                                                                   // #282
1356 NULL,                                                                   // #283
1357 NULL,                                                                   // #284
1358 NULL,                                                                   // #285
1359 NULL,                                                                   // #286
1360 NULL,                                                                   // #287
1361 NULL,                                                                   // #288
1362 NULL,                                                                   // #289
1363 NULL,                                                                   // #290
1364 NULL,                                                                   // #291
1365 NULL,                                                                   // #292
1366 NULL,                                                                   // #293
1367 NULL,                                                                   // #294
1368 NULL,                                                                   // #295
1369 NULL,                                                                   // #296
1370 NULL,                                                                   // #297
1371 NULL,                                                                   // #298
1372 NULL,                                                                   // #299
1373 // deactivate support for model rendering in the menu until someone has time to do it right [3/2/2008 Andreas]
1374 #if 0
1375 // CSQC range #300-#399
1376 VM_CL_R_ClearScene,                             // #300 void() clearscene (DP_QC_RENDER_SCENE)
1377 VM_CL_R_AddEntities,                    // #301 void(float mask) addentities (DP_QC_RENDER_SCENE)
1378 VM_CL_R_AddEntity,                              // #302 void(entity ent) addentity (DP_QC_RENDER_SCENE)
1379 VM_CL_R_SetView,                                // #303 float(float property, ...) setproperty (DP_QC_RENDER_SCENE)
1380 VM_CL_R_RenderScene,                    // #304 void() renderscene (DP_QC_RENDER_SCENE)
1381 VM_CL_R_AddDynamicLight,                // #305 void(vector org, float radius, vector lightcolours) adddynamiclight (DP_QC_RENDER_SCENE)
1382 VM_CL_R_PolygonBegin,                   // #306 void(string texturename, float flag[, float is2d, float lines]) R_BeginPolygon (DP_QC_RENDER_SCENE)
1383 VM_CL_R_PolygonVertex,                  // #307 void(vector org, vector texcoords, vector rgb, float alpha) R_PolygonVertex (DP_QC_RENDER_SCENE)
1384 VM_CL_R_PolygonEnd,                             // #308 void() R_EndPolygon
1385 NULL/*VM_CL_R_LoadWorldModel*/,                         // #309 void(string modelname) R_LoadWorldModel
1386 // TODO: rearrange and merge all builtin lists and share as many extensions as possible between all VM instances [1/27/2008 Andreas]
1387 VM_CL_setattachment,                            // #310 void(entity e, entity tagentity, string tagname) setattachment (DP_GFX_QUAKE3MODELTAGS) (DP_QC_RENDER_SCENE)
1388 VM_CL_gettagindex,                              // #311 float(entity ent, string tagname) gettagindex (DP_QC_GETTAGINFO) (DP_QC_RENDER_SCENE)
1389 VM_CL_gettaginfo,                                       // #312 vector(entity ent, float tagindex) gettaginfo (DP_QC_GETTAGINFO) (DP_QC_RENDER_SCENE)
1390 #else
1391 // CSQC range #300-#399
1392 NULL,           
1393 NULL,           
1394 NULL,           
1395 NULL,           
1396 NULL,           
1397 NULL,           
1398 NULL,           
1399 NULL,   
1400 NULL,   
1401 NULL,
1402 NULL,   
1403 NULL,   
1404 NULL,   
1405 #endif
1406 NULL,                                                                   // #313
1407 NULL,                                                                   // #314
1408 NULL,                                                                   // #315
1409 NULL,                                                                   // #316
1410 NULL,                                                                   // #317
1411 NULL,                                                                   // #318
1412 NULL,                                                                   // #319
1413 NULL,                                                                   // #320
1414 NULL,                                                                   // #321
1415 NULL,                                                                   // #322
1416 NULL,                                                                   // #323
1417 NULL,                                                                   // #324
1418 NULL,                                                                   // #325
1419 NULL,                                                                   // #326
1420 NULL,                                                                   // #327
1421 NULL,                                                                   // #328
1422 NULL,                                                                   // #329
1423 NULL,                                                                   // #330
1424 NULL,                                                                   // #331
1425 NULL,                                                                   // #332
1426 NULL,                                                                   // #333
1427 NULL,                                                                   // #334
1428 NULL,                                                                   // #335
1429 NULL,                                                                   // #336
1430 NULL,                                                                   // #337
1431 NULL,                                                                   // #338
1432 NULL,                                                                   // #339
1433 VM_keynumtostring,                              // #340 string keynumtostring(float keynum)
1434 VM_stringtokeynum,                              // #341 float stringtokeynum(string key)
1435 VM_getkeybind,                                                  // #342 string(float keynum[, float bindmap]) getkeybind (EXT_CSQC)
1436 NULL,                                                                   // #343
1437 NULL,                                                                   // #344
1438 NULL,                                                                   // #345
1439 NULL,                                                                   // #346
1440 NULL,                                                                   // #347
1441 NULL,                                                                   // #348
1442 VM_CL_isdemo,                                                   // #349
1443 NULL,                                                                   // #350
1444 NULL,                                                                   // #351
1445 VM_M_registercommand,                                   // #352 void(string cmdname)
1446 VM_wasfreed,                                                    // #353 float(entity ent) wasfreed
1447 NULL,                                                                   // #354
1448 VM_CL_videoplaying,                                             // #355
1449 VM_findfont,                                                    // #356 float(string fontname) loadfont (DP_GFX_FONTS)
1450 VM_loadfont,                                                    // #357 float(string fontname, string fontmaps, string sizes, float slot) loadfont (DP_GFX_FONTS)
1451 NULL,                                                                   // #358
1452 NULL,                                                                   // #359
1453 NULL,                                                                   // #360
1454 NULL,                                                                   // #361
1455 NULL,                                                                   // #362
1456 NULL,                                                                   // #363
1457 NULL,                                                                   // #364
1458 NULL,                                                                   // #365
1459 NULL,                                                                   // #366
1460 NULL,                                                                   // #367
1461 NULL,                                                                   // #368
1462 NULL,                                                                   // #369
1463 NULL,                                                                   // #370
1464 NULL,                                                                   // #371
1465 NULL,                                                                   // #372
1466 NULL,                                                                   // #373
1467 NULL,                                                                   // #374
1468 NULL,                                                                   // #375
1469 NULL,                                                                   // #376
1470 NULL,                                                                   // #377
1471 NULL,                                                                   // #378
1472 NULL,                                                                   // #379
1473 NULL,                                                                   // #380
1474 NULL,                                                                   // #381
1475 NULL,                                                                   // #382
1476 NULL,                                                                   // #383
1477 NULL,                                                                   // #384
1478 NULL,                                                                   // #385
1479 NULL,                                                                   // #386
1480 NULL,                                                                   // #387
1481 NULL,                                                                   // #388
1482 NULL,                                                                   // #389
1483 NULL,                                                                   // #390
1484 NULL,                                                                   // #391
1485 NULL,                                                                   // #392
1486 NULL,                                                                   // #393
1487 NULL,                                                                   // #394
1488 NULL,                                                                   // #395
1489 NULL,                                                                   // #396
1490 NULL,                                                                   // #397
1491 NULL,                                                                   // #398
1492 NULL,                                                                   // #399
1493 NULL,                                                                   // #400
1494 VM_M_WriteByte,                                 // #401
1495 VM_M_WriteChar,                                 // #402
1496 VM_M_WriteShort,                                        // #403
1497 VM_M_WriteLong,                                 // #404
1498 VM_M_WriteAngle,                                        // #405
1499 VM_M_WriteCoord,                                        // #406
1500 VM_M_WriteString,                                       // #407
1501 VM_M_WriteEntity,                                       // #408
1502 NULL,                                                                   // #409
1503 NULL,                                                                   // #410
1504 NULL,                                                                   // #411
1505 NULL,                                                                   // #412
1506 NULL,                                                                   // #413
1507 NULL,                                                                   // #414
1508 NULL,                                                                   // #415
1509 NULL,                                                                   // #416
1510 NULL,                                                                   // #417
1511 NULL,                                                                   // #418
1512 NULL,                                                                   // #419
1513 NULL,                                                                   // #420
1514 NULL,                                                                   // #421
1515 NULL,                                                                   // #422
1516 NULL,                                                                   // #423
1517 NULL,                                                                   // #424
1518 NULL,                                                                   // #425
1519 NULL,                                                                   // #426
1520 NULL,                                                                   // #427
1521 NULL,                                                                   // #428
1522 NULL,                                                                   // #429
1523 NULL,                                                                   // #430
1524 NULL,                                                                   // #431
1525 NULL,                                                                   // #432
1526 NULL,                                                                   // #433
1527 NULL,                                                                   // #434
1528 NULL,                                                                   // #435
1529 NULL,                                                                   // #436
1530 NULL,                                                                   // #437
1531 NULL,                                                                   // #438
1532 NULL,                                                                   // #439
1533 VM_buf_create,                                  // #440 float() buf_create (DP_QC_STRINGBUFFERS)
1534 VM_buf_del,                                             // #441 void(float bufhandle) buf_del (DP_QC_STRINGBUFFERS)
1535 VM_buf_getsize,                                 // #442 float(float bufhandle) buf_getsize (DP_QC_STRINGBUFFERS)
1536 VM_buf_copy,                                    // #443 void(float bufhandle_from, float bufhandle_to) buf_copy (DP_QC_STRINGBUFFERS)
1537 VM_buf_sort,                                    // #444 void(float bufhandle, float sortpower, float backward) buf_sort (DP_QC_STRINGBUFFERS)
1538 VM_buf_implode,                                 // #445 string(float bufhandle, string glue) buf_implode (DP_QC_STRINGBUFFERS)
1539 VM_bufstr_get,                                  // #446 string(float bufhandle, float string_index) bufstr_get (DP_QC_STRINGBUFFERS)
1540 VM_bufstr_set,                                  // #447 void(float bufhandle, float string_index, string str) bufstr_set (DP_QC_STRINGBUFFERS)
1541 VM_bufstr_add,                                  // #448 float(float bufhandle, string str, float order) bufstr_add (DP_QC_STRINGBUFFERS)
1542 VM_bufstr_free,                                 // #449 void(float bufhandle, float string_index) bufstr_free (DP_QC_STRINGBUFFERS)
1543 NULL,                                                                   // #450
1544 VM_iscachedpic,                                 // #451 draw functions...
1545 VM_precache_pic,                                        // #452
1546 VM_freepic,                                                     // #453
1547 VM_drawcharacter,                                       // #454
1548 VM_drawstring,                                          // #455
1549 VM_drawpic,                                                     // #456
1550 VM_drawfill,                                            // #457
1551 VM_drawsetcliparea,                             // #458
1552 VM_drawresetcliparea,                   // #459
1553 VM_getimagesize,                                        // #460
1554 VM_cin_open,                                            // #461
1555 VM_cin_close,                                           // #462
1556 VM_cin_setstate,                                        // #463
1557 VM_cin_getstate,                                        // #464
1558 VM_cin_restart,                                         // #465
1559 VM_drawline,                                            // #466
1560 VM_drawcolorcodedstring,                // #467
1561 VM_stringwidth,                                 // #468
1562 VM_drawsubpic,                                          // #469
1563 VM_drawrotpic,                                          // #470
1564 VM_asin,                                                                // #471 float(float s) VM_asin (DP_QC_ASINACOSATANATAN2TAN)
1565 VM_acos,                                                                // #472 float(float c) VM_acos (DP_QC_ASINACOSATANATAN2TAN)
1566 VM_atan,                                                                // #473 float(float t) VM_atan (DP_QC_ASINACOSATANATAN2TAN)
1567 VM_atan2,                                                       // #474 float(float c, float s) VM_atan2 (DP_QC_ASINACOSATANATAN2TAN)
1568 VM_tan,                                                         // #475 float(float a) VM_tan (DP_QC_ASINACOSATANATAN2TAN)
1569 VM_strlennocol,                                 // #476 float(string s) : DRESK - String Length (not counting color codes) (DP_QC_STRINGCOLORFUNCTIONS)
1570 VM_strdecolorize,                                       // #477 string(string s) : DRESK - Decolorized String (DP_QC_STRINGCOLORFUNCTIONS)
1571 VM_strftime,                                            // #478 string(float uselocaltime, string format, ...) (DP_QC_STRFTIME)
1572 VM_tokenizebyseparator,                 // #479 float(string s) tokenizebyseparator (DP_QC_TOKENIZEBYSEPARATOR)
1573 VM_strtolower,                                          // #480 string(string s) VM_strtolower : DRESK - Return string as lowercase
1574 VM_strtoupper,                                          // #481 string(string s) VM_strtoupper : DRESK - Return string as uppercase
1575 NULL,                                                                   // #482
1576 NULL,                                                                   // #483
1577 VM_strreplace,                                          // #484 string(string search, string replace, string subject) strreplace (DP_QC_STRREPLACE)
1578 VM_strireplace,                                 // #485 string(string search, string replace, string subject) strireplace (DP_QC_STRREPLACE)
1579 NULL,                                                                   // #486
1580 VM_gecko_create,                                        // #487 float gecko_create( string name )
1581 VM_gecko_destroy,                                       // #488 void gecko_destroy( string name )
1582 VM_gecko_navigate,                              // #489 void gecko_navigate( string name, string URI )
1583 VM_gecko_keyevent,                              // #490 float gecko_keyevent( string name, float key, float eventtype )
1584 VM_gecko_movemouse,                             // #491 void gecko_mousemove( string name, float x, float y )
1585 VM_gecko_resize,                                        // #492 void gecko_resize( string name, float w, float h )
1586 VM_gecko_get_texture_extent,    // #493 vector gecko_get_texture_extent( string name )
1587 VM_crc16,                                               // #494 float(float caseinsensitive, string s, ...) crc16 = #494 (DP_QC_CRC16)
1588 VM_cvar_type,                                   // #495 float(string name) cvar_type = #495; (DP_QC_CVAR_TYPE)
1589 VM_numentityfields,                             // #496 float() numentityfields = #496; (QP_QC_ENTITYDATA)
1590 VM_entityfieldname,                             // #497 string(float fieldnum) entityfieldname = #497; (DP_QC_ENTITYDATA)
1591 VM_entityfieldtype,                             // #498 float(float fieldnum) entityfieldtype = #498; (DP_QC_ENTITYDATA)
1592 VM_getentityfieldstring,                // #499 string(float fieldnum, entity ent) getentityfieldstring = #499; (DP_QC_ENTITYDATA)
1593 VM_putentityfieldstring,                // #500 float(float fieldnum, entity ent, string s) putentityfieldstring = #500; (DP_QC_ENTITYDATA)
1594 NULL,                                                                   // #501
1595 NULL,                                                                   // #502
1596 VM_whichpack,                                   // #503 string(string) whichpack = #503;
1597 NULL,                                                                   // #504
1598 NULL,                                                                   // #505
1599 NULL,                                                                   // #506
1600 NULL,                                                                   // #507
1601 NULL,                                                                   // #508
1602 NULL,                                                                   // #509
1603 VM_uri_escape,                                  // #510 string(string in) uri_escape = #510;
1604 VM_uri_unescape,                                // #511 string(string in) uri_unescape = #511;
1605 VM_etof,                                        // #512 float(entity ent) num_for_edict = #512 (DP_QC_NUM_FOR_EDICT)
1606 VM_uri_get,                                             // #513 float(string uri, float id, [string post_contenttype, string post_delim, [float buf]]) uri_get = #513; (DP_QC_URI_GET, DP_QC_URI_POST)
1607 VM_tokenize_console,                                    // #514 float(string str) tokenize_console = #514; (DP_QC_TOKENIZE_CONSOLE)
1608 VM_argv_start_index,                                    // #515 float(float idx) argv_start_index = #515; (DP_QC_TOKENIZE_CONSOLE)
1609 VM_argv_end_index,                                              // #516 float(float idx) argv_end_index = #516; (DP_QC_TOKENIZE_CONSOLE)
1610 VM_buf_cvarlist,                                                // #517 void(float buf, string prefix, string antiprefix) buf_cvarlist = #517; (DP_QC_STRINGBUFFERS_CVARLIST)
1611 VM_cvar_description,                                    // #518 float(string name) cvar_description = #518; (DP_QC_CVAR_DESCRIPTION)
1612 NULL,                                                                   // #519
1613 NULL,                                                                   // #520
1614 NULL,                                                                   // #521
1615 NULL,                                                                   // #522
1616 NULL,                                                                   // #523
1617 NULL,                                                                   // #524
1618 NULL,                                                                   // #525
1619 NULL,                                                                   // #526
1620 NULL,                                                                   // #527
1621 NULL,                                                                   // #528
1622 NULL,                                                                   // #529
1623 NULL,                                                                   // #530
1624 NULL,                                                                   // #531
1625 VM_log,                                                                 // #532
1626 VM_getsoundtime,                                                // #533 float(entity e, float channel) getsoundtime = #533; (DP_SND_GETSOUNDTIME)
1627 VM_soundlength,                                                 // #534 float(string sample) soundlength = #534; (DP_SND_GETSOUNDTIME)
1628 VM_buf_loadfile,                        // #535 float(string filename, float bufhandle) buf_loadfile (DP_QC_STRINGBUFFERS_EXT_WIP)
1629 VM_buf_writefile,                       // #536 float(float filehandle, float bufhandle, float startpos, float numstrings) buf_writefile (DP_QC_STRINGBUFFERS_EXT_WIP)
1630 VM_bufstr_find,                         // #537 float(float bufhandle, string match, float matchrule, float startpos) bufstr_find (DP_QC_STRINGBUFFERS_EXT_WIP)
1631 VM_matchpattern,                        // #538 float(string s, string pattern, float matchrule) matchpattern (DP_QC_STRINGBUFFERS_EXT_WIP)
1632 NULL,                                                                   // #539
1633 NULL,                                                                   // #540
1634 NULL,                                                                   // #541
1635 NULL,                                                                   // #542
1636 NULL,                                                                   // #543
1637 NULL,                                                                   // #544
1638 NULL,                                                                   // #545
1639 NULL,                                                                   // #546
1640 NULL,                                                                   // #547
1641 NULL,                                                                   // #548
1642 NULL,                                                                   // #549
1643 NULL,                                                                   // #550
1644 NULL,                                                                   // #551
1645 NULL,                                                                   // #552
1646 NULL,                                                                   // #553
1647 NULL,                                                                   // #554
1648 NULL,                                                                   // #555
1649 NULL,                                                                   // #556
1650 NULL,                                                                   // #557
1651 NULL,                                                                   // #558
1652 NULL,                                                                   // #559
1653 NULL,                                                                   // #560
1654 NULL,                                                                   // #561
1655 NULL,                                                                   // #562
1656 NULL,                                                                   // #563
1657 NULL,                                                                   // #564
1658 NULL,                                                                   // #565
1659 NULL,                                                                   // #566
1660 NULL,                                                                   // #567
1661 NULL,                                                                   // #568
1662 NULL,                                                                   // #569
1663 NULL,                                                                   // #570
1664 NULL,                                                                   // #571
1665 NULL,                                                                   // #572
1666 NULL,                                                                   // #573
1667 NULL,                                                                   // #574
1668 NULL,                                                                   // #575
1669 NULL,                                                                   // #576
1670 NULL,                                                                   // #577
1671 NULL,                                                                   // #578
1672 NULL,                                                                   // #579
1673 NULL,                                                                   // #580
1674 NULL,                                                                   // #581
1675 NULL,                                                                   // #582
1676 NULL,                                                                   // #583
1677 NULL,                                                                   // #584
1678 NULL,                                                                   // #585
1679 NULL,                                                                   // #586
1680 NULL,                                                                   // #587
1681 NULL,                                                                   // #588
1682 NULL,                                                                   // #589
1683 NULL,                                                                   // #590
1684 NULL,                                                                   // #591
1685 NULL,                                                                   // #592
1686 NULL,                                                                   // #593
1687 NULL,                                                                   // #594
1688 NULL,                                                                   // #595
1689 NULL,                                                                   // #596
1690 NULL,                                                                   // #597
1691 NULL,                                                                   // #598
1692 NULL,                                                                   // #599
1693 NULL,                                                                   // #600
1694 VM_M_setkeydest,                                        // #601 void setkeydest(float dest)
1695 VM_M_getkeydest,                                        // #602 float getkeydest(void)
1696 VM_M_setmousetarget,                            // #603 void setmousetarget(float trg)
1697 VM_M_getmousetarget,                            // #604 float getmousetarget(void)
1698 VM_callfunction,                                // #605 void callfunction(...)
1699 VM_writetofile,                                 // #606 void writetofile(float fhandle, entity ent)
1700 VM_isfunction,                                  // #607 float isfunction(string function_name)
1701 VM_M_getresolution,                             // #608 vector getresolution(float number, [float forfullscreen])
1702 VM_keynumtostring,                              // #609 string keynumtostring(float keynum)
1703 VM_findkeysforcommand,          // #610 string findkeysforcommand(string command[, float bindmap])
1704 VM_M_getserverliststat,                 // #611 float gethostcachevalue(float type)
1705 VM_M_getserverliststring,               // #612 string gethostcachestring(float type, float hostnr)
1706 VM_parseentitydata,                             // #613 void parseentitydata(entity ent, string data)
1707 VM_stringtokeynum,                              // #614 float stringtokeynum(string key)
1708 VM_M_resetserverlistmasks,              // #615 void resethostcachemasks(void)
1709 VM_M_setserverlistmaskstring,   // #616 void sethostcachemaskstring(float mask, float fld, string str, float op)
1710 VM_M_setserverlistmasknumber,   // #617 void sethostcachemasknumber(float mask, float fld, float num, float op)
1711 VM_M_resortserverlist,                  // #618 void resorthostcache(void)
1712 VM_M_setserverlistsort,                 // #619 void sethostcachesort(float fld, float descending)
1713 VM_M_refreshserverlist,                 // #620 void refreshhostcache(void)
1714 VM_M_getserverlistnumber,               // #621 float gethostcachenumber(float fld, float hostnr)
1715 VM_M_getserverlistindexforkey,// #622 float gethostcacheindexforkey(string key)
1716 VM_M_addwantedserverlistkey,    // #623 void addwantedhostcachekey(string key)
1717 VM_CL_getextresponse,                   // #624 string getextresponse(void)
1718 VM_netaddress_resolve,          // #625 string netaddress_resolve(string, float)
1719 VM_M_getgamedirinfo,            // #626 string getgamedirinfo(float n, float prop)
1720 VM_sprintf,                     // #627 string sprintf(string format, ...)
1721 NULL, // #628
1722 NULL, // #629
1723 VM_setkeybind,                                          // #630 float(float key, string bind[, float bindmap]) setkeybind
1724 VM_getbindmaps,                                         // #631 vector(void) getbindmap
1725 VM_setbindmaps,                                         // #632 float(vector bm) setbindmap
1726 VM_M_crypto_getkeyfp,                                   // #633 string(string addr) crypto_getkeyfp
1727 VM_M_crypto_getidfp,                                    // #634 string(string addr) crypto_getidfp
1728 VM_M_crypto_getencryptlevel,                            // #635 string(string addr) crypto_getencryptlevel
1729 VM_M_crypto_getmykeyfp,                                 // #636 string(float addr) crypto_getmykeyfp
1730 VM_M_crypto_getmyidfp,                                  // #637 string(float addr) crypto_getmyidfp
1731 NULL,                                                   // #638
1732 VM_digest_hex,                                          // #639
1733 NULL,                                                   // #640
1734 VM_M_crypto_getmyidstatus,                              // #641 float(float i) crypto_getmyidstatus
1735 VM_coverage,                                            // #642
1736 VM_M_crypto_getidstatus,                                // #643 float(string addr) crypto_getidstatus
1737 NULL
1738 };
1739
1740 const int vm_m_numbuiltins = sizeof(vm_m_builtins) / sizeof(prvm_builtin_t);
1741
1742 void MVM_init_cmd(prvm_prog_t *prog)
1743 {
1744         r_refdef_scene_t *scene;
1745
1746         VM_Cmd_Init(prog);
1747         prog->polygonbegin_model = NULL;
1748         prog->polygonbegin_guess2d = 0;
1749
1750         scene = R_GetScenePointer( RST_MENU );
1751
1752         memset (scene, 0, sizeof (*scene));
1753
1754         scene->maxtempentities = 128;
1755         scene->tempentities = (entity_render_t*) Mem_Alloc(prog->progs_mempool, sizeof(entity_render_t) * scene->maxtempentities);
1756
1757         scene->maxentities = MAX_EDICTS + 256 + 512;
1758         scene->entities = (entity_render_t **)Mem_Alloc(prog->progs_mempool, sizeof(entity_render_t *) * scene->maxentities);
1759
1760         // LadyHavoc: what is this for?
1761         scene->ambientintensity = 32.0f;
1762 }
1763
1764 void MVM_reset_cmd(prvm_prog_t *prog)
1765 {
1766         // note: the menu's render entities are automatically freed when the prog's pool is freed
1767
1768         //VM_Cmd_Init();
1769         VM_Cmd_Reset(prog);
1770         prog->polygonbegin_model = NULL;
1771         prog->polygonbegin_guess2d = 0;
1772 }