]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
q3compat: check for a map-specific .arena file even when there's another one in the pk3 1433/head
authorbones_was_here <bones_was_here@xonotic.au>
Mon, 13 Jan 2025 08:27:37 +0000 (18:27 +1000)
committerbones_was_here <bones_was_here@xonotic.au>
Sun, 26 Jan 2025 07:55:08 +0000 (17:55 +1000)
This allows the server admin to work around pk3s containing an .arena
file (or .defi file) that isn't valid for some map(s) in the pk3,
without modifying the pk3.
Or they could override the one in the pk3 (on a map-specific basis) to
change some value(s).

qcsrc/common/mapinfo.qc

index db4296196b85facd4b6a2b33cb8ed3b498798f61..c928fcaf0ddb6cedecca7bb78f643a247abdfa0c 100644 (file)
@@ -1007,28 +1007,33 @@ string _MapInfo_CheckArenaFile(string pFilename, string pMapname)
 
 string _MapInfo_FindArenaFile(string pFilename, string extension)
 {
-       string fallback = strcat("scripts/", pFilename, extension);
-       if(!checkextension("DP_QC_FS_SEARCH_PACKFILE"))
-               return _MapInfo_CheckArenaFile(fallback, pFilename);
+       // A valid arena file with the "default" name may have been created as a map-specific
+       // override of an arena file with a different name (possibly multi-map) in the pk3
+       // (occasionally in the wild such file exists in the pk3 but isn't valid for a map in the pk3).
+       // Therefore we try the "default" name first.
+       string afile = _MapInfo_CheckArenaFile(strcat("scripts/", pFilename, extension), pFilename);
+       if (afile != ""
+       || !checkextension("DP_QC_FS_SEARCH_PACKFILE"))
+               return afile;
+
        string base_pack = whichpack(strcat("maps/", pFilename, ".bsp"));
        if(base_pack == "") // this map isn't packaged!
-               return _MapInfo_CheckArenaFile(fallback, pFilename);
-
+               return "";
        int glob = search_packfile_begin(strcat("scripts/*", extension), true, true, base_pack);
-       if(glob < 0)
-               return _MapInfo_CheckArenaFile(fallback, pFilename);
+       if(glob < 0) // there's no matching file in the pack
+               return "";
        int n = search_getsize(glob);
        for(int j = 0; j < n; ++j)
        {
-               string file = search_getfilename(glob, j);
-               if(_MapInfo_CheckArenaFile(file, pFilename) != "")
+               afile = search_getfilename(glob, j);
+               if(_MapInfo_CheckArenaFile(afile, pFilename) != "")
                {
                        search_end(glob);
-                       return file;
+                       return afile;
                }
        }
-
        search_end(glob);
+
        return ""; // if we get here, a valid .arena file could not be found
 }