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