]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
load all tex-* paks, remove VFS double start
authorneumond <knifeslaughter@gmail.com>
Mon, 30 Jun 2014 22:24:10 +0000 (02:24 +0400)
committerThomas Debesse <dev@illwieckz.net>
Sun, 9 Apr 2017 12:52:00 +0000 (14:52 +0200)
plugins/vfspk3/vfs.cpp

index 9ec85fd818a292d44ca172fc6f1777fcf51f09da..ea786030ce495a9cc46bf632f26ca741f79eb8d4 100644 (file)
@@ -826,15 +826,31 @@ void initialise(){
                const char* pakname;
                g_loaded_unv_paks.clear();
 
-               pakname = GetLatestVersionOfUnvPak( "tex-common" );
-               if ( pakname ) LoadPakWithDeps( pakname );
-
                pakname = GetLatestVersionOfUnvPak( "radiant" );
                if ( pakname ) LoadPakWithDeps( pakname );
 
-               pakname = GetCurrentMapPakName();
-               if ( pakname && !string_empty( pakname ) ) {
-                       LoadPakWithDeps( pakname );
+               // prevent VFS double start, for MapName="" and MapName="unnamed.map"
+               if ( string_length( GlobalRadiant().getMapName() ) ){
+                       // map's tex-* paks have precedence over any other tex-* paks
+                       char* mappakname = GetCurrentMapPakName();
+                       if ( mappakname ) {
+                               LoadPakWithDeps( mappakname );
+                               string_release( mappakname, string_length( mappakname ) );
+                       }
+
+                       for ( PakfilePaths::iterator i = g_pakfile_paths.begin(); i != g_pakfile_paths.end(); ++i ) {
+                               if ( strncmp( i->first.c_str(), "tex-", 4 ) != 0 ) continue;
+                               // firstly load latest version of pak
+                               const char *paknamever = i->first.c_str();
+                               const char *c = strchr( paknamever, '_' );
+                               char *paknameonly;
+                               if ( c ) paknameonly = string_clone_range( StringRange( paknamever, c ) );
+                               pakname = GetLatestVersionOfUnvPak( paknameonly );
+                               LoadPakWithDeps( pakname );
+                               if ( c ) string_release( paknameonly, string_length( paknameonly ) );
+                               // then load this specific version
+                               LoadPakWithDeps( paknamever );
+                       }
                }
 
                g_pakfile_paths.clear();