2 #include "../dpdefs/csprogsdefs.qh"
3 #include "../client/defs.qh"
6 #include "weapons/all.qh"
10 #include "../dpdefs/progsdefs.qh"
11 #include "../dpdefs/dpextensions.qh"
14 #include "monsters/all.qh"
18 // generic string stuff
20 int _MapInfo_Cache_Active;
21 int _MapInfo_Cache_DB_NameToIndex;
22 int _MapInfo_Cache_Buf_IndexToMapData;
24 void MapInfo_Cache_Destroy()
26 if(!_MapInfo_Cache_Active)
29 db_close(_MapInfo_Cache_DB_NameToIndex);
30 buf_del(_MapInfo_Cache_Buf_IndexToMapData);
31 _MapInfo_Cache_Active = 0;
34 void MapInfo_Cache_Create()
36 MapInfo_Cache_Destroy();
37 _MapInfo_Cache_DB_NameToIndex = db_create();
38 _MapInfo_Cache_Buf_IndexToMapData = buf_create();
39 _MapInfo_Cache_Active = 1;
42 void MapInfo_Cache_Invalidate()
44 if(!_MapInfo_Cache_Active)
47 MapInfo_Cache_Create();
50 void MapInfo_Cache_Store()
54 if(!_MapInfo_Cache_Active)
57 s = db_get(_MapInfo_Cache_DB_NameToIndex, MapInfo_Map_bspname);
60 i = buf_getsize(_MapInfo_Cache_Buf_IndexToMapData);
61 db_put(_MapInfo_Cache_DB_NameToIndex, MapInfo_Map_bspname, ftos(i));
66 // now store all the stuff
67 bufstr_set(_MapInfo_Cache_Buf_IndexToMapData, i, MapInfo_Map_bspname);
68 bufstr_set(_MapInfo_Cache_Buf_IndexToMapData, ++i, MapInfo_Map_title);
69 bufstr_set(_MapInfo_Cache_Buf_IndexToMapData, ++i, MapInfo_Map_titlestring);
70 bufstr_set(_MapInfo_Cache_Buf_IndexToMapData, ++i, MapInfo_Map_description);
71 bufstr_set(_MapInfo_Cache_Buf_IndexToMapData, ++i, MapInfo_Map_author);
72 bufstr_set(_MapInfo_Cache_Buf_IndexToMapData, ++i, ftos(MapInfo_Map_supportedGametypes));
73 bufstr_set(_MapInfo_Cache_Buf_IndexToMapData, ++i, ftos(MapInfo_Map_supportedFeatures));
74 bufstr_set(_MapInfo_Cache_Buf_IndexToMapData, ++i, ftos(MapInfo_Map_flags));
77 float MapInfo_Cache_Retrieve(string map)
81 if(!_MapInfo_Cache_Active)
84 s = db_get(_MapInfo_Cache_DB_NameToIndex, map);
89 // now retrieve all the stuff
90 MapInfo_Map_bspname = bufstr_get(_MapInfo_Cache_Buf_IndexToMapData, i);
91 MapInfo_Map_title = bufstr_get(_MapInfo_Cache_Buf_IndexToMapData, ++i);
92 MapInfo_Map_titlestring = bufstr_get(_MapInfo_Cache_Buf_IndexToMapData, ++i);
93 MapInfo_Map_description = bufstr_get(_MapInfo_Cache_Buf_IndexToMapData, ++i);
94 MapInfo_Map_author = bufstr_get(_MapInfo_Cache_Buf_IndexToMapData, ++i);
95 MapInfo_Map_supportedGametypes = stof(bufstr_get(_MapInfo_Cache_Buf_IndexToMapData, ++i));
96 MapInfo_Map_supportedFeatures = stof(bufstr_get(_MapInfo_Cache_Buf_IndexToMapData, ++i));
97 MapInfo_Map_flags = stof(bufstr_get(_MapInfo_Cache_Buf_IndexToMapData, ++i));
102 // GLOB HANDLING (for all BSP files)
103 float _MapInfo_globopen;
104 float _MapInfo_globcount;
105 float _MapInfo_globhandle;
106 string _MapInfo_GlobItem(float i)
109 if(!_MapInfo_globopen)
111 s = search_getfilename(_MapInfo_globhandle, i);
112 return substring(s, 5, strlen(s) - 9); // without maps/ and .bsp
115 void MapInfo_Enumerate()
117 if(_MapInfo_globopen)
119 search_end(_MapInfo_globhandle);
120 _MapInfo_globopen = 0;
122 MapInfo_Cache_Invalidate();
123 _MapInfo_globhandle = search_begin("maps/*.bsp", true, true);
124 if(_MapInfo_globhandle >= 0)
126 _MapInfo_globcount = search_getsize(_MapInfo_globhandle);
127 _MapInfo_globopen = 1;
130 _MapInfo_globcount = 0;
133 // filter the info by game type mask (updates MapInfo_count)
135 float _MapInfo_filtered;
136 float _MapInfo_filtered_allocated;
137 float MapInfo_FilterList_Lookup(float i)
139 return stof(bufstr_get(_MapInfo_filtered, i));
142 void _MapInfo_FilterList_swap(float i, float j, entity pass)
145 h = bufstr_get(_MapInfo_filtered, i);
146 bufstr_set(_MapInfo_filtered, i, bufstr_get(_MapInfo_filtered, j));
147 bufstr_set(_MapInfo_filtered, j, h);
150 float _MapInfo_FilterList_cmp(float i, float j, entity pass)
153 a = _MapInfo_GlobItem(stof(bufstr_get(_MapInfo_filtered, i)));
154 b = _MapInfo_GlobItem(stof(bufstr_get(_MapInfo_filtered, j)));
155 return strcasecmp(a, b);
158 float MapInfo_FilterGametype(int pGametype, int pFeatures, int pFlagsRequired, int pFlagsForbidden, bool pAbortOnGenerate)
161 if (!_MapInfo_filtered_allocated)
163 _MapInfo_filtered_allocated = 1;
164 _MapInfo_filtered = buf_create();
167 for(i = 0, j = -1; i < _MapInfo_globcount; ++i)
169 if(MapInfo_Get_ByName(_MapInfo_GlobItem(i), 1, 0) == 2) // if we generated one... BAIL OUT and let the caller continue in the next frame.
172 LOG_TRACE("Autogenerated a .mapinfo, doing the rest later.\n");
173 MapInfo_progress = i / _MapInfo_globcount;
176 if((MapInfo_Map_supportedGametypes & pGametype) != 0)
177 if((MapInfo_Map_supportedFeatures & pFeatures) == pFeatures)
178 if((MapInfo_Map_flags & pFlagsForbidden) == 0)
179 if((MapInfo_Map_flags & pFlagsRequired) == pFlagsRequired)
180 bufstr_set(_MapInfo_filtered, ++j, ftos(i));
182 MapInfo_count = j + 1;
183 MapInfo_ClearTemps();
185 // sometimes the glob isn't sorted nicely, so fix it here...
186 heapsort(MapInfo_count, _MapInfo_FilterList_swap, _MapInfo_FilterList_cmp, world);
190 void MapInfo_FilterString(string sf)
192 // this function further filters _MapInfo_filtered, which is prepared by MapInfo_FilterGametype by string
196 for(i = 0, j = -1; i < MapInfo_count; ++i)
198 if (MapInfo_Get_ByID(i))
200 // prepare for keyword filter
201 if (MapInfo_Map_title && strstrofs(MapInfo_Map_title, "<TITLE>", 0) == -1)
202 title = MapInfo_Map_title;
204 title = MapInfo_Map_bspname;
206 if((strstrofs(strtolower(title), strtolower(sf), 0)) >= 0)
207 bufstr_set(_MapInfo_filtered, ++j, bufstr_get(_MapInfo_filtered, i));
210 MapInfo_count = j + 1;
211 MapInfo_ClearTemps();
213 // sometimes the glob isn't sorted nicely, so fix it here...
214 heapsort(MapInfo_count, _MapInfo_FilterList_swap, _MapInfo_FilterList_cmp, world);
217 void MapInfo_Filter_Free()
219 if(_MapInfo_filtered_allocated)
221 buf_del(_MapInfo_filtered);
222 _MapInfo_filtered_allocated = 0;
226 // load info about the i-th map into the MapInfo_Map_* globals
227 string MapInfo_BSPName_ByID(float i)
229 return _MapInfo_GlobItem(MapInfo_FilterList_Lookup(i));
232 string unquote(string s)
237 for(i = 0; i < l; ++i)
240 ch = substring(s, i, 1);
241 if(ch != " ") if(ch != "\"")
243 for(j = strlen(s) - i - 1; j > 0; --j)
245 ch = substring(s, i+j, 1);
246 if(ch != " ") if(ch != "\"")
247 return substring(s, i, j+1);
249 return substring(s, i, 1);
255 float MapInfo_Get_ByID(float i)
257 if(MapInfo_Get_ByName(MapInfo_BSPName_ByID(i), 0, 0))
262 string _MapInfo_Map_worldspawn_music;
264 float _MapInfo_Generate(string pFilename) // 0: failure, 1: ok ent, 2: ok bsp
274 float diameter, spawnpoints;
277 vector mapMins, mapMaxs;
280 fn = strcat("maps/", pFilename, ".ent");
281 fh = fopen(fn, FILE_READ);
285 fn = strcat("maps/", pFilename, ".bsp");
286 fh = fopen(fn, FILE_READ);
290 LOG_INFO("Analyzing ", fn, " to generate initial mapinfo\n");
293 MapInfo_Map_flags = 0;
294 MapInfo_Map_supportedGametypes = 0;
297 _MapInfo_Map_worldspawn_music = "";
303 if (!((s = fgets(fh))))
305 if(inWorldspawn == 1)
306 if(startsWith(s, "}"))
312 if(k == "classname" && v == "worldspawn")
314 else if(k == "author")
315 MapInfo_Map_author = v;
316 else if(k == "_description")
317 MapInfo_Map_description = v;
318 else if(k == "music")
319 _MapInfo_Map_worldspawn_music = v;
320 else if(k == "noise")
321 _MapInfo_Map_worldspawn_music = v;
322 else if(k == "message")
324 i = strstrofs(v, " by ", 0);
325 if(MapInfo_Map_author == "<AUTHOR>" && i >= 0)
327 MapInfo_Map_title = substring(v, 0, i);
328 MapInfo_Map_author = substring(v, i + 4, strlen(v) - (i + 4));
331 MapInfo_Map_title = v;
338 o = stov(strcat("'", v, "'"));
339 mapMins.x = min(mapMins.x, o.x);
340 mapMins.y = min(mapMins.y, o.y);
341 mapMins.z = min(mapMins.z, o.z);
342 mapMaxs.x = max(mapMaxs.x, o.x);
343 mapMaxs.y = max(mapMaxs.y, o.y);
344 mapMaxs.z = max(mapMaxs.z, o.z);
346 else if(k == "race_place")
351 else if(k == "classname")
353 if(v == "dom_controlpoint")
354 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_DOMINATION;
355 else if(v == "item_flag_team2")
356 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_CTF;
357 else if(v == "team_CTF_blueflag")
358 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_CTF;
359 else if(v == "invasion_spawnpoint")
360 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_INVASION;
361 else if(v == "target_assault_roundend")
362 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_ASSAULT;
363 else if(v == "onslaught_generator")
364 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_ONSLAUGHT;
365 else if(substring(v, 0, 8) == "nexball_" || substring(v, 0, 4) == "ball")
366 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_NEXBALL;
367 else if(v == "info_player_team1")
369 else if(v == "info_player_team2")
371 else if(v == "info_player_start")
373 else if(v == "info_player_deathmatch")
375 else if(v == "trigger_race_checkpoint")
376 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_RACE;
377 else if(v == "target_startTimer")
378 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_CTS;
379 else if(v == "weapon_nex")
381 else if(v == "weapon_railgun")
383 else if(startsWith(v, "weapon_"))
384 MapInfo_Map_supportedFeatures |= MAPINFO_FEATURE_WEAPONS;
385 else if(startsWith(v, "turret_"))
386 MapInfo_Map_supportedFeatures |= MAPINFO_FEATURE_TURRETS;
387 else if(startsWith(v, "vehicle_"))
388 MapInfo_Map_supportedFeatures |= MAPINFO_FEATURE_VEHICLES;
389 else if(startsWith(v, "monster_"))
390 MapInfo_Map_supportedFeatures |= MAPINFO_FEATURE_MONSTERS;
391 else if(v == "target_music" || v == "trigger_music")
392 _MapInfo_Map_worldspawn_music = string_null; // don't use regular BGM
398 LOG_INFO(fn, " ended still in worldspawn, BUG\n");
401 diameter = vlen(mapMaxs - mapMins);
403 twoBaseModes = MapInfo_Map_supportedGametypes & (MAPINFO_TYPE_CTF | MAPINFO_TYPE_ASSAULT | MAPINFO_TYPE_RACE | MAPINFO_TYPE_NEXBALL);
404 if(twoBaseModes && (MapInfo_Map_supportedGametypes == twoBaseModes))
406 // we have a CTF-only or Assault-only map. Don't add other modes then,
407 // as the map is too symmetric for them.
411 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_DEATHMATCH; // DM always works
412 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_LMS; // LMS always works
413 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_KEEPAWAY; // Keepaway always works
415 if(spawnpoints >= 8 && diameter > 4096) {
416 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_TEAM_DEATHMATCH;
417 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_FREEZETAG;
418 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_CA;
420 if(spawnpoints >= 12 && diameter > 5120)
421 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_KEYHUNT;
424 if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_RACE)
427 MapInfo_Map_supportedGametypes &= ~MAPINFO_TYPE_RACE;
428 MapInfo_Map_supportedGametypes |= MAPINFO_TYPE_CTS;
431 LOG_TRACE("-> diameter ", ftos(diameter));
432 LOG_TRACE("; spawnpoints ", ftos(spawnpoints));
433 LOG_TRACE("; modes ", ftos(MapInfo_Map_supportedGametypes), "\n");
440 void _MapInfo_Map_Reset()
442 MapInfo_Map_title = "<TITLE>";
443 MapInfo_Map_titlestring = "<TITLE>";
444 MapInfo_Map_description = "<DESCRIPTION>";
445 MapInfo_Map_author = "<AUTHOR>";
446 MapInfo_Map_supportedGametypes = 0;
447 MapInfo_Map_supportedFeatures = 0;
448 MapInfo_Map_flags = 0;
449 MapInfo_Map_clientstuff = "";
450 MapInfo_Map_fog = "";
451 MapInfo_Map_mins = '0 0 0';
452 MapInfo_Map_maxs = '0 0 0';
455 string _MapInfo_GetDefault(float t)
459 case MAPINFO_TYPE_DEATHMATCH: return "30 20 0";
460 case MAPINFO_TYPE_TEAM_DEATHMATCH: return "50 20 2 0";
461 case MAPINFO_TYPE_DOMINATION: return "200 20 0";
462 case MAPINFO_TYPE_CTF: return "300 20 10 0";
463 case MAPINFO_TYPE_LMS: return "9 20 0";
464 case MAPINFO_TYPE_CA: return "10 20 0";
465 case MAPINFO_TYPE_KEYHUNT: return "1000 20 3 0";
466 case MAPINFO_TYPE_ASSAULT: return "20 0";
467 case MAPINFO_TYPE_RACE: return "20 5 7 15 0";
468 case MAPINFO_TYPE_ONSLAUGHT: return "20 0";
469 case MAPINFO_TYPE_NEXBALL: return "5 20 0";
470 case MAPINFO_TYPE_CTS: return "20 0 0";
471 case MAPINFO_TYPE_FREEZETAG: return "10 20 0";
472 // NOTE: DO NOT ADD ANY MORE GAME TYPES HERE
473 // THIS IS JUST LEGACY SUPPORT FOR NEXUIZ MAPS
474 // ONLY ADD NEW STUFF TO _MapInfo_GetDefaultEx
475 // THIS FUNCTION WILL EVENTUALLY BE REMOVED
480 void _MapInfo_Map_ApplyGametype(string s, int pWantedType, int pThisType, int load_default)
483 MapInfo_Map_supportedGametypes |= pThisType;
484 if(!(pThisType & pWantedType))
488 _MapInfo_Map_ApplyGametype(_MapInfo_GetDefault(pThisType), pWantedType, pThisType, false);
490 if(pWantedType == MAPINFO_TYPE_ASSAULT || pWantedType == MAPINFO_TYPE_ONSLAUGHT || pWantedType == MAPINFO_TYPE_RACE || pWantedType == MAPINFO_TYPE_CTS) // these modes don't use fraglimit
492 cvar_set("fraglimit", "0");
498 cvar_set("fraglimit", sa);
504 cvar_set("timelimit", sa);
507 if(pWantedType == MAPINFO_TYPE_TEAM_DEATHMATCH)
511 cvar_set("g_tdm_teams", sa);
515 if(pWantedType == MAPINFO_TYPE_KEYHUNT)
519 cvar_set("g_keyhunt_teams", sa);
523 if(pWantedType == MAPINFO_TYPE_CA)
527 cvar_set("g_ca_teams", sa);
531 if(pWantedType == MAPINFO_TYPE_FREEZETAG)
535 cvar_set("g_freezetag_teams", sa);
539 if(pWantedType == MAPINFO_TYPE_CTF)
543 cvar_set("fraglimit", sa);
548 if(pWantedType == MAPINFO_TYPE_KEEPAWAY)
552 cvar_set("fraglimit", sa);
557 // rc = timelimit timelimit_qualification laps laps_teamplay
558 if(pWantedType == MAPINFO_TYPE_RACE)
560 sa = car(s); if(sa == "") sa = cvar_string("timelimit");
561 cvar_set("g_race_qualifying_timelimit", sa);
566 if(cvar("g_race_teams") < 2)
567 cvar_set("fraglimit", sa);
572 if(cvar("g_race_teams") >= 2)
573 cvar_set("fraglimit", sa);
577 if(pWantedType == MAPINFO_TYPE_CTS)
581 // this is the skill of the map
582 // not parsed by anything yet
585 // cvar_set("fraglimit", sa);
590 if(pWantedType == MAPINFO_TYPE_ASSAULT || pWantedType == MAPINFO_TYPE_ONSLAUGHT || pWantedType == MAPINFO_TYPE_CTS) // these modes don't use fraglimit
592 cvar_set("leadlimit", "0");
598 cvar_set("leadlimit", sa);
603 string _MapInfo_GetDefaultEx(float t)
605 FOREACH(MAPINFO_TYPES, it.items == t, LAMBDA(return it.model2));
609 float _MapInfo_GetTeamPlayBool(float t)
611 FOREACH(MAPINFO_TYPES, it.items == t, LAMBDA(return it.team));
615 void _MapInfo_Map_ApplyGametypeEx(string s, int pWantedType, int pThisType)
619 string fraglimit_normal;
620 string fraglimit_teams;
622 MapInfo_Map_supportedGametypes |= pThisType;
623 if(!(pThisType & pWantedType))
626 // reset all the cvars to their defaults
628 cvar_set("timelimit", cvar_defstring("timelimit"));
629 cvar_set("leadlimit", cvar_defstring("leadlimit"));
630 cvar_set("fraglimit", cvar_defstring("fraglimit"));
631 cvar_set("g_tdm_teams", cvar_defstring("g_tdm_teams"));
632 cvar_set("g_ca_teams", cvar_defstring("g_ca_teams"));
633 cvar_set("g_freezetag_teams", cvar_defstring("g_freezetag_teams"));
634 cvar_set("g_keyhunt_teams", cvar_defstring("g_keyhunt_teams"));
635 cvar_set("g_domination_default_teams", cvar_defstring("g_domination_default_teams"));
636 cvar_set("g_race_qualifying_timelimit", cvar_defstring("g_race_qualifying_timelimit"));
638 fraglimit_normal = string_null;
639 fraglimit_teams = string_null;
641 s = strcat(_MapInfo_GetDefaultEx(pWantedType), " ", s);
650 p = strstrofs(sa, "=", 0);
653 LOG_INFO("Invalid gametype setting in mapinfo for gametype ", MapInfo_Type_ToString(pWantedType), ": ", sa, "\n");
656 k = substring(sa, 0, p);
657 v = substring(sa, p+1, -1);
661 cvar_set("timelimit", v);
663 else if(k == "leadlimit")
665 cvar_set("leadlimit", v);
667 else if(k == "pointlimit" || k == "fraglimit" || k == "lives" || k == "laplimit" || k == "caplimit")
669 fraglimit_normal = v;
671 else if(k == "teampointlimit" || k == "teamlaplimit")
675 else if(k == "teams")
677 cvar_set("g_tdm_teams", v);
678 cvar_set("g_ca_teams", v);
679 cvar_set("g_freezetag_teams", v);
680 cvar_set("g_keyhunt_teams", v);
681 cvar_set("g_domination_default_teams", v);
682 cvar_set("g_invasion_teams", v);
684 else if(k == "qualifying_timelimit")
686 cvar_set("g_race_qualifying_timelimit", v);
688 else if(k == "skill")
694 LOG_INFO("Invalid gametype setting in mapinfo for gametype ", MapInfo_Type_ToString(pWantedType), ": ", sa, "\n");
698 if(pWantedType == MAPINFO_TYPE_RACE && cvar("g_race_teams") >= 2)
701 cvar_set("fraglimit", fraglimit_teams);
706 cvar_set("fraglimit", fraglimit_normal);
710 float MapInfo_Type_FromString(string t)
714 LOG_INFO("MapInfo_Type_FromString (probably ", MapInfo_Map_bspname, "): using deprecated name '", t);
716 LOG_INFO("'. Should use '", t, "'.\n");
720 LOG_INFO("MapInfo_Type_FromString (probably ", MapInfo_Map_bspname, "): using deprecated name '", t);
722 LOG_INFO("'. Should use '", t, "'.\n");
726 LOG_INFO("MapInfo_Type_FromString (probably ", MapInfo_Map_bspname, "): using deprecated name '", t);
728 LOG_INFO("'. Should use '", t, "'.\n");
732 LOG_INFO("MapInfo_Type_FromString (probably ", MapInfo_Map_bspname, "): using deprecated name '", t);
734 LOG_INFO("'. Should use '", t, "'.\n");
738 LOG_INFO("MapInfo_Type_FromString (probably ", MapInfo_Map_bspname, "): using deprecated name '", t);
740 LOG_INFO("'. Should use '", t, "'.\n");
744 LOG_INFO("MapInfo_Type_FromString (probably ", MapInfo_Map_bspname, "): using deprecated name '", t);
746 LOG_INFO("'. Should use '", t, "'.\n");
749 return MAPINFO_TYPE_ALL;
750 FOREACH(MAPINFO_TYPES, it.mdl == t, LAMBDA(return it.items));
754 string MapInfo_Type_Description(float t)
756 FOREACH(MAPINFO_TYPES, it.items == t, LAMBDA(return it.gametype_description));
760 string MapInfo_Type_ToString(float t)
762 if(t == MAPINFO_TYPE_ALL)
764 FOREACH(MAPINFO_TYPES, it.items == t, LAMBDA(return it.mdl));
768 string MapInfo_Type_ToText(float t)
770 FOREACH(MAPINFO_TYPES, it.items == t, LAMBDA(return it.message));
771 /* xgettext:no-c-format */
772 return _("@!#%'n Tuba Throwing");
775 void _MapInfo_Parse_Settemp(string pFilename, string acl, float type, string s, float recurse)
779 t = car(s); s = cdr(s);
781 // limited support of "" and comments
782 // remove trailing and leading " of t
783 if(substring(t, 0, 1) == "\"")
785 if(substring(t, -1, 1) == "\"")
786 t = substring(t, 1, -2);
789 // remove leading " of s
790 if(substring(s, 0, 1) == "\"")
792 s = substring(s, 1, -1);
794 // remove trailing " of s, and all that follows (cvar description)
795 o = strstrofs(s, "\"", 0);
797 s = substring(s, 0, o);
799 // remove // comments
800 o = strstrofs(s, "//", 0);
802 s = substring(s, 0, o);
804 // remove trailing spaces
805 while(substring(s, -1, 1) == " ")
806 s = substring(s, 0, -2);
812 fh = fopen(s, FILE_READ);
814 LOG_INFO("Map ", pFilename, " references not existing config file ", s, "\n");
819 if (!((s = fgets(fh))))
822 // catch different sorts of comments
823 if(s == "") // empty lines
825 if(substring(s, 0, 1) == "#") // UNIX style
827 if(substring(s, 0, 2) == "//") // C++ style
829 if(substring(s, 0, 1) == "_") // q3map style
832 if(substring(s, 0, 4) == "set ")
833 s = substring(s, 4, -1);
834 if(substring(s, 0, 5) == "seta ")
835 s = substring(s, 5, -1);
837 _MapInfo_Parse_Settemp(pFilename, acl, type, s, recurse - 1);
843 LOG_INFO("Map ", pFilename, " uses too many levels of inclusion\n");
846 LOG_INFO("Map ", pFilename, " contains a potentially harmful setting, ignored\n");
847 else if (!cvar_value_issafe(t))
848 LOG_INFO("Map ", pFilename, " contains a potentially harmful setting, ignored\n");
849 else if (!cvar_value_issafe(s))
850 LOG_INFO("Map ", pFilename, " contains a potentially harmful setting, ignored\n");
851 else if(matchacl(MAPINFO_SETTEMP_ACL_SYSTEM, t) <= 0)
852 LOG_INFO("Map ", pFilename, " contains a potentially harmful setting, ignored\n");
853 else if(matchacl(acl, t) <= 0)
854 LOG_INFO("Map ", pFilename, " contains a denied setting, ignored\n");
857 if(type == 0) // server set
859 LOG_TRACE("Applying temporary setting ", t, " := ", s, "\n");
860 if(cvar("g_campaign"))
861 cvar_set(t, s); // this is a wrapper and is always temporary anyway; no need to backup old values then
867 LOG_TRACE("Applying temporary client setting ", t, " := ", s, "\n");
868 MapInfo_Map_clientstuff = strcat(
869 MapInfo_Map_clientstuff, "cl_cmd settemp \"", t, "\" \"", s, "\"\n"
875 float MapInfo_isRedundant(string fn, string t)
877 // normalize file name
878 fn = strreplace("_", "-", fn);
880 // normalize visible title
881 t = strreplace(": ", "-", t);
882 t = strreplace(":", "-", t);
883 t = strreplace(" ", "-", t);
884 t = strreplace("_", "-", t);
885 t = strreplace("'", "-", t);
887 if(!strcasecmp(fn, t))
890 // we allow the visible title to have punctuation the file name does
891 // not, but not vice versa
892 t = strreplace("-", "", t);
894 if(!strcasecmp(fn, t))
900 // load info about a map by name into the MapInfo_Map_* globals
901 float MapInfo_Get_ByName_NoFallbacks(string pFilename, int pAllowGenerate, int pGametypeToSet)
910 acl = MAPINFO_SETTEMP_ACL_USER;
912 if(strstrofs(pFilename, "/", 0) >= 0)
914 LOG_INFO("Invalid character in map name, ignored\n");
918 if(pGametypeToSet == 0)
919 if(MapInfo_Cache_Retrieve(pFilename))
924 MapInfo_Map_bspname = pFilename;
926 // default all generic fields so they have "good" values in case something fails
927 fn = strcat("maps/", pFilename, ".mapinfo");
928 fh = fopen(fn, FILE_READ);
931 fn = strcat("maps/autogenerated/", pFilename, ".mapinfo");
932 fh = fopen(fn, FILE_READ);
937 _MapInfo_Map_Reset();
938 r = _MapInfo_Generate(pFilename);
941 fh = fopen(fn, FILE_WRITE);
942 fputs(fh, strcat("title ", MapInfo_Map_title, "\n"));
943 fputs(fh, strcat("description ", MapInfo_Map_description, "\n"));
944 fputs(fh, strcat("author ", MapInfo_Map_author, "\n"));
945 if(_MapInfo_Map_worldspawn_music != "")
948 substring(_MapInfo_Map_worldspawn_music, strlen(_MapInfo_Map_worldspawn_music) - 4, 4) == ".wav"
950 substring(_MapInfo_Map_worldspawn_music, strlen(_MapInfo_Map_worldspawn_music) - 4, 4) == ".ogg"
952 fputs(fh, strcat("cdtrack ", substring(_MapInfo_Map_worldspawn_music, 0, strlen(_MapInfo_Map_worldspawn_music) - 4), "\n"));
954 fputs(fh, strcat("cdtrack ", _MapInfo_Map_worldspawn_music, "\n"));
958 n = tokenize_console(cvar_string("g_cdtracks_remaplist"));
959 s = strcat(" ", cvar_string("g_cdtracks_dontusebydefault"), " ");
962 i = floor(random() * n);
963 if(strstrofs(s, strcat(" ", argv(i), " "), 0) < 0)
966 fputs(fh, strcat("cdtrack ", ftos(i + 1), "\n"));
968 if(MapInfo_Map_supportedFeatures & MAPINFO_FEATURE_WEAPONS)
969 fputs(fh, "has weapons\n");
971 fputs(fh, "// uncomment this if you added weapon pickups: has weapons\n");
972 if(MapInfo_Map_supportedFeatures & MAPINFO_FEATURE_TURRETS)
973 fputs(fh, "has turrets\n");
975 fputs(fh, "// uncomment this if you added turrets: has turrets\n");
976 if(MapInfo_Map_supportedFeatures & MAPINFO_FEATURE_VEHICLES)
977 fputs(fh, "has vehicles\n");
979 fputs(fh, "// uncomment this if you added vehicles: has vehicles\n");
980 if(MapInfo_Map_flags & MAPINFO_FLAG_FRUSTRATING)
981 fputs(fh, "frustrating\n");
983 for(i = 1; i <= MapInfo_Map_supportedGametypes; i *= 2)
984 if(MapInfo_Map_supportedGametypes & i)
985 fputs(fh, sprintf("gametype %s // defaults: %s\n", MapInfo_Type_ToString(i), _MapInfo_GetDefaultEx(i)));
987 if(fexists(strcat("scripts/", pFilename, ".arena")))
988 fputs(fh, "settemp_for_type all sv_q3acompat_machineshotgunswap 1\n");
990 fputs(fh, "// optional: fog density red green blue alpha mindist maxdist\n");
991 fputs(fh, "// optional: settemp_for_type (all|gametypename) cvarname value\n");
992 fputs(fh, "// optional: clientsettemp_for_type (all|gametypename) cvarname value\n");
993 fputs(fh, "// optional: size mins_x mins_y mins_z maxs_x maxs_y maxs_z\n");
994 fputs(fh, "// optional: hidden\n");
999 fh = fopen(fn, FILE_READ);
1001 error("... but I just wrote it!");
1004 LOG_INFO("WARNING: autogenerated mapinfo file ", fn, " has been loaded; please edit that file and move it to maps/", pFilename, ".mapinfo\n");
1007 _MapInfo_Map_Reset();
1010 if (!((s = fgets(fh))))
1013 // catch different sorts of comments
1014 if(s == "") // empty lines
1016 if(substring(s, 0, 1) == "#") // UNIX style
1018 if(substring(s, 0, 2) == "//") // C++ style
1020 if(substring(s, 0, 1) == "_") // q3map style
1023 p = strstrofs(s, "//", 0);
1025 s = substring(s, 0, p);
1027 t = car(s); s = cdr(s);
1029 MapInfo_Map_title = s;
1030 else if(t == "description")
1031 MapInfo_Map_description = s;
1032 else if(t == "author")
1033 MapInfo_Map_author = s;
1036 t = car(s); // s = cdr(s);
1037 if (t == "weapons") MapInfo_Map_supportedFeatures |= MAPINFO_FEATURE_WEAPONS;
1038 else if(t == "turrets") MapInfo_Map_supportedFeatures |= MAPINFO_FEATURE_TURRETS;
1039 else if(t == "vehicles") MapInfo_Map_supportedFeatures |= MAPINFO_FEATURE_VEHICLES;
1040 else if(t == "monsters") MapInfo_Map_supportedFeatures |= MAPINFO_FEATURE_MONSTERS;
1041 else if(t == "new_toys") MapInfo_Map_supportedFeatures |= MAPINFO_FEATURE_WEAPONS;
1043 LOG_TRACE("Map ", pFilename, " supports unknown feature ", t, ", ignored\n");
1045 else if(t == "hidden")
1047 MapInfo_Map_flags |= MAPINFO_FLAG_HIDDEN;
1049 else if(t == "forbidden")
1051 MapInfo_Map_flags |= MAPINFO_FLAG_FORBIDDEN;
1053 else if(t == "frustrating")
1055 MapInfo_Map_flags |= MAPINFO_FLAG_FRUSTRATING;
1057 else if(t == "noautomaplist")
1059 MapInfo_Map_flags |= MAPINFO_FLAG_NOAUTOMAPLIST;
1061 else if(t == "type")
1063 t = car(s); s = cdr(s);
1064 f = MapInfo_Type_FromString(t);
1065 LOG_TRACE("Map ", pFilename, " contains the legacy 'type' keyword which is deprecated and will be removed in the future. Please migrate the mapinfo file to 'gametype'.\n");
1067 _MapInfo_Map_ApplyGametype (s, pGametypeToSet, f, true);
1069 LOG_TRACE("Map ", pFilename, " supports unknown game type ", t, ", ignored\n");
1071 else if(t == "gametype")
1073 t = car(s); s = cdr(s);
1074 f = MapInfo_Type_FromString(t);
1076 _MapInfo_Map_ApplyGametypeEx (s, pGametypeToSet, f);
1078 LOG_TRACE("Map ", pFilename, " supports unknown game type ", t, ", ignored\n");
1080 else if(t == "size")
1082 float a, b, c, d, e;
1083 t = car(s); s = cdr(s); a = stof(t);
1084 t = car(s); s = cdr(s); b = stof(t);
1085 t = car(s); s = cdr(s); c = stof(t);
1086 t = car(s); s = cdr(s); d = stof(t);
1087 t = car(s); s = cdr(s); e = stof(t);
1089 LOG_INFO("Map ", pFilename, " contains an incorrect size line (not enough params), syntax: size mins_x mins_y mins_z maxs_x maxs_y maxs_z\n");
1092 t = car(s); s = cdr(s); f = stof(t);
1094 LOG_INFO("Map ", pFilename, " contains an incorrect size line (too many params), syntax: size mins_x mins_y mins_z maxs_x maxs_y maxs_z\n");
1097 if(a >= d || b >= e || c >= f)
1098 LOG_INFO("Map ", pFilename, " contains an incorrect size line, mins have to be < maxs\n");
1101 MapInfo_Map_mins.x = a;
1102 MapInfo_Map_mins.y = b;
1103 MapInfo_Map_mins.z = c;
1104 MapInfo_Map_maxs.x = d;
1105 MapInfo_Map_maxs.y = e;
1106 MapInfo_Map_maxs.z = f;
1111 else if(t == "settemp_for_type")
1113 t = car(s); s = cdr(s);
1114 if((f = MapInfo_Type_FromString(t)))
1116 if(f & pGametypeToSet)
1118 _MapInfo_Parse_Settemp(pFilename, acl, 0, s, 1);
1123 LOG_TRACE("Map ", pFilename, " has a setting for unknown game type ", t, ", ignored\n");
1126 else if(t == "clientsettemp_for_type")
1128 t = car(s); s = cdr(s);
1129 if((f = MapInfo_Type_FromString(t)))
1131 if(f & pGametypeToSet)
1133 _MapInfo_Parse_Settemp(pFilename, acl, 1, s, 1);
1138 LOG_TRACE("Map ", pFilename, " has a client setting for unknown game type ", t, ", ignored\n");
1143 if (!cvar_value_issafe(s))
1144 LOG_INFO("Map ", pFilename, " contains a potentially harmful fog setting, ignored\n");
1146 MapInfo_Map_fog = s;
1148 else if(t == "cdtrack")
1150 t = car(s); s = cdr(s);
1151 // We do this only if pGametypeToSet even though this
1152 // content is theoretically game type independent,
1153 // because MapInfo_Map_clientstuff contains otherwise
1154 // game type dependent stuff. That way this value stays
1155 // empty when not setting a game type to not set any
1156 // false expectations.
1159 if (!cvar_value_issafe(t))
1160 LOG_INFO("Map ", pFilename, " contains a potentially harmful cdtrack, ignored\n");
1162 MapInfo_Map_clientstuff = strcat(
1163 MapInfo_Map_clientstuff, "cd loop \"", t, "\"\n"
1168 LOG_TRACE("Map ", pFilename, " provides unknown info item ", t, ", ignored\n");
1172 if(MapInfo_Map_title == "<TITLE>")
1173 MapInfo_Map_titlestring = MapInfo_Map_bspname;
1174 else if(MapInfo_isRedundant(MapInfo_Map_bspname, MapInfo_Map_title))
1175 MapInfo_Map_titlestring = MapInfo_Map_title;
1177 MapInfo_Map_titlestring = sprintf("%s: %s", MapInfo_Map_bspname, MapInfo_Map_title);
1179 MapInfo_Cache_Store();
1180 if(MapInfo_Map_supportedGametypes != 0)
1182 LOG_TRACE("Map ", pFilename, " supports no game types, ignored\n");
1185 float MapInfo_Get_ByName(string pFilename, float pAllowGenerate, int pGametypeToSet)
1187 float r = MapInfo_Get_ByName_NoFallbacks(pFilename, pAllowGenerate, pGametypeToSet);
1189 if(cvar("g_tdm_on_dm_maps"))
1191 // if this is set, all DM maps support TDM too
1192 if (!(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_TEAM_DEATHMATCH))
1193 if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_DEATHMATCH)
1194 _MapInfo_Map_ApplyGametypeEx ("", pGametypeToSet, MAPINFO_TYPE_TEAM_DEATHMATCH);
1199 if(!(MapInfo_Map_supportedGametypes & pGametypeToSet))
1201 error("Can't select the requested game type. This should never happen as the caller should prevent it!\n");
1202 //_MapInfo_Map_ApplyGametypeEx("", pGametypeToSet, MAPINFO_TYPE_DEATHMATCH);
1210 float MapInfo_FindName(string s)
1212 // if there is exactly one map of prefix s, return it
1213 // if not, return the null string
1214 // note that DP sorts glob results... so I can use a binary search
1218 // invariants: r is behind s, l-1 is equal or before
1221 m = floor((l + r) / 2);
1222 MapInfo_FindName_match = _MapInfo_GlobItem(MapInfo_FilterList_Lookup(m));
1223 cmp = strcasecmp(MapInfo_FindName_match, s);
1225 return m; // found and good
1227 l = m + 1; // l-1 is before s
1231 MapInfo_FindName_match = _MapInfo_GlobItem(MapInfo_FilterList_Lookup(l));
1232 MapInfo_FindName_firstResult = l;
1233 // r == l, so: l is behind s, l-1 is before
1234 // SO: if there is any, l is the one with the right prefix
1235 // and l+1 may be one too
1236 if(l == MapInfo_count)
1238 MapInfo_FindName_match = string_null;
1239 MapInfo_FindName_firstResult = -1;
1240 return -1; // no MapInfo_FindName_match, behind last item
1242 if(!startsWithNocase(MapInfo_FindName_match, s))
1244 MapInfo_FindName_match = string_null;
1245 MapInfo_FindName_firstResult = -1;
1246 return -1; // wrong prefix
1248 if(l == MapInfo_count - 1)
1249 return l; // last one, nothing can follow => unique
1250 if(startsWithNocase(_MapInfo_GlobItem(MapInfo_FilterList_Lookup(l + 1)), s))
1252 MapInfo_FindName_match = string_null;
1253 return -1; // ambigous MapInfo_FindName_match
1258 string MapInfo_FixName(string s)
1260 MapInfo_FindName(s);
1261 return MapInfo_FindName_match;
1264 int MapInfo_CurrentFeatures()
1267 if(!(cvar("g_lms") || cvar("g_instagib") || cvar("g_overkill") || cvar("g_nix") || cvar("g_weaponarena") || !cvar("g_pickup_items") || cvar("g_race") || cvar("g_cts") || cvar("g_nexball")))
1268 req |= MAPINFO_FEATURE_WEAPONS;
1272 int MapInfo_CurrentGametype()
1274 int prev = cvar("gamecfg");
1275 FOREACH(MAPINFO_TYPES, cvar(it.netname) && it.items != prev, LAMBDA(return it.items));
1276 if (prev) return prev;
1277 return MAPINFO_TYPE_DEATHMATCH;
1280 float _MapInfo_CheckMap(string s) // returns 0 if the map can't be played with the current settings, 1 otherwise
1282 if(!MapInfo_Get_ByName(s, 1, 0))
1284 if((MapInfo_Map_supportedGametypes & MapInfo_CurrentGametype()) == 0)
1286 if((MapInfo_Map_supportedFeatures & MapInfo_CurrentFeatures()) != MapInfo_CurrentFeatures())
1291 float MapInfo_CheckMap(string s) // returns 0 if the map can't be played with the current settings, 1 otherwise
1294 r = _MapInfo_CheckMap(s);
1295 MapInfo_ClearTemps();
1299 void MapInfo_SwitchGameType(int t)
1301 FOREACH(MAPINFO_TYPES, true, LAMBDA(
1302 cvar_set(it.netname, (it.items == t) ? "1" : "0")
1306 void MapInfo_LoadMap(string s, float reinit)
1308 MapInfo_Map_supportedGametypes = 0;
1309 // we shouldn't need this, as LoadMapSettings already fixes the gametype
1310 //if(!MapInfo_CheckMap(s))
1312 // print("EMERGENCY: can't play the selected map in the given game mode. Falling back to DM.\n");
1313 // MapInfo_SwitchGameType(MAPINFO_TYPE_DEATHMATCH);
1316 cvar_settemp_restore();
1318 localcmd(strcat("\nmap ", s, "\n"));
1320 localcmd(strcat("\nchangelevel ", s, "\n"));
1323 string MapInfo_ListAllowedMaps(float type, float pRequiredFlags, float pForbiddenFlags)
1328 // to make absolutely sure:
1329 MapInfo_Enumerate();
1330 MapInfo_FilterGametype(type, MapInfo_CurrentFeatures(), pRequiredFlags, pForbiddenFlags, 0);
1333 for(i = 0; i < MapInfo_count; ++i)
1334 out = strcat(out, " ", _MapInfo_GlobItem(MapInfo_FilterList_Lookup(i)));
1335 return substring(out, 1, strlen(out) - 1);
1338 string MapInfo_ListAllAllowedMaps(float pRequiredFlags, float pForbiddenFlags)
1343 // to make absolutely sure:
1344 MapInfo_Enumerate();
1345 MapInfo_FilterGametype(MAPINFO_TYPE_ALL, 0, pRequiredFlags, pForbiddenFlags, 0);
1348 for(i = 0; i < MapInfo_count; ++i)
1349 out = strcat(out, " ", _MapInfo_GlobItem(MapInfo_FilterList_Lookup(i)));
1351 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), pRequiredFlags, pForbiddenFlags, 0);
1353 return substring(out, 1, strlen(out) - 1);
1356 void MapInfo_LoadMapSettings_SaveGameType(float t)
1358 MapInfo_SwitchGameType(t);
1359 cvar_set("gamecfg", ftos(t));
1360 MapInfo_LoadedGametype = t;
1363 void MapInfo_LoadMapSettings(string s) // to be called from worldspawn
1367 t = MapInfo_CurrentGametype();
1368 MapInfo_LoadMapSettings_SaveGameType(t);
1370 if(!_MapInfo_CheckMap(s)) // with underscore, it keeps temps
1372 if(cvar("g_mapinfo_allow_unsupported_modes_and_let_stuff_break"))
1374 LOG_INFO("EMERGENCY: can't play the selected map in the given game mode. Working with only the override settings.\n");
1375 _MapInfo_Map_ApplyGametypeEx("", t, t);
1376 return; // do not call Get_ByName!
1379 if(MapInfo_Map_supportedGametypes == 0)
1381 LOG_INFO("Mapinfo system is not functional at all. Assuming deathmatch.\n");
1382 MapInfo_Map_supportedGametypes = MAPINFO_TYPE_DEATHMATCH;
1383 MapInfo_LoadMapSettings_SaveGameType(MAPINFO_TYPE_DEATHMATCH);
1384 _MapInfo_Map_ApplyGametypeEx("", MAPINFO_TYPE_DEATHMATCH, MAPINFO_TYPE_DEATHMATCH);
1385 return; // do not call Get_ByName!
1389 while(!(MapInfo_Map_supportedGametypes & 1))
1392 MapInfo_Map_supportedGametypes = floor(MapInfo_Map_supportedGametypes / 2);
1395 // t is now a supported mode!
1396 LOG_INFO("EMERGENCY: can't play the selected map in the given game mode. Falling back to a supported mode.\n");
1397 MapInfo_LoadMapSettings_SaveGameType(t);
1399 MapInfo_Get_ByName(s, 1, t);
1402 void MapInfo_ClearTemps()
1404 MapInfo_Map_bspname = string_null;
1405 MapInfo_Map_title = string_null;
1406 MapInfo_Map_titlestring = string_null;
1407 MapInfo_Map_description = string_null;
1408 MapInfo_Map_author = string_null;
1409 MapInfo_Map_clientstuff = string_null;
1410 MapInfo_Map_supportedGametypes = 0;
1411 MapInfo_Map_supportedFeatures = 0;
1414 void MapInfo_Shutdown()
1416 MapInfo_ClearTemps();
1417 MapInfo_Filter_Free();
1418 MapInfo_Cache_Destroy();
1419 if(_MapInfo_globopen)
1421 search_end(_MapInfo_globhandle);
1422 _MapInfo_globhandle = -1;
1423 _MapInfo_globopen = false;
1427 int MapInfo_ForbiddenFlags()
1429 int f = MAPINFO_FLAG_FORBIDDEN;
1432 if (!cvar("g_maplist_allow_hidden"))
1434 f |= MAPINFO_FLAG_HIDDEN;
1436 if (!cvar("g_maplist_allow_frustrating"))
1437 f |= MAPINFO_FLAG_FRUSTRATING;
1442 int MapInfo_RequiredFlags()
1446 if(cvar("g_maplist_allow_frustrating") > 1)
1447 f |= MAPINFO_FLAG_FRUSTRATING;