]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
improve path finding logic
authorRudolf Polzer <divverent@alientrap.org>
Sun, 1 May 2011 19:17:23 +0000 (21:17 +0200)
committerRudolf Polzer <divverent@alientrap.org>
Sun, 1 May 2011 19:17:23 +0000 (21:17 +0200)
radiant/mainframe.cpp

index 9dc8faf1730a967e11a4d7db364da9e02433b266..bddb333ef9acb01e4381cc573b700cca9569309c 100644 (file)
@@ -194,60 +194,53 @@ static HRESULT (WINAPI *qSHGetKnownFolderPath) (qREFKNOWNFOLDERID rfid, DWORD dw
 #endif
 void HomePaths_Realise()
 {
-#if defined(__APPLE__)
-  const char* prefix = g_pGameDescription->getKeyValue("prefix");
-  if(!string_empty(prefix))
+  do
   {
-    StringOutputStream path(256);
-    path << DirectoryCleaned(g_get_home_dir()) << "Library/Application Support" << (prefix+1) << "/";
-    if(!file_is_directory(path.c_str()))
+    const char* prefix = g_pGameDescription->getKeyValue("prefix");
+    if(!string_empty(prefix))
     {
+      StringOutputStream path(256);
+
+#if defined(__APPLE__)
       path.clear();
-      path << DirectoryCleaned(g_get_home_dir()) << prefix << "/";
-    }
-    g_qeglobals.m_userEnginePath = path.c_str();
-    Q_mkdir(g_qeglobals.m_userEnginePath.c_str());
-  }
-  else
-#elif defined(POSIX)
-  const char* prefix = g_pGameDescription->getKeyValue("prefix");
-  if(!string_empty(prefix))
-  {
-    StringOutputStream path(256);
-    path << DirectoryCleaned(g_get_home_dir()) << prefix << "/";
-    g_qeglobals.m_userEnginePath = path.c_str();
-    Q_mkdir(g_qeglobals.m_userEnginePath.c_str());
-  }
-  else
-#elif defined(WIN32)
-  const char* prefix = g_pGameDescription->getKeyValue("prefix");
-  if(!string_empty(prefix))
-  {
-    StringOutputStream path(256);
-    TCHAR mydocsdir[MAX_PATH + 1];
-    wchar_t *mydocsdirw;
-    HMODULE shfolder = LoadLibrary("shfolder.dll");
-    if(shfolder)
-      qSHGetKnownFolderPath = GetProcAddress("SHGetFolderPathA");
-    else
-      qSHGetKnownFolderPath = NULL;
-    CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
-    do
-    {
+      path << DirectoryCleaned(g_get_home_dir()) << "Library/Application Support" << (prefix+1) << "/";
+      if(file_is_directory(path.c_str()))
+      {
+        g_qeglobals.m_userEnginePath = path.c_str();
+        break;
+      }
+#endif
+
+#if defined(WIN32)
+      TCHAR mydocsdir[MAX_PATH + 1];
+      wchar_t *mydocsdirw;
+      HMODULE shfolder = LoadLibrary("shfolder.dll");
+      if(shfolder)
+        qSHGetKnownFolderPath = GetProcAddress("SHGetFolderPathA");
+      else
+        qSHGetKnownFolderPath = NULL;
+      CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
       if(qSHGetKnownFolderPath && qSHGetKnownFolderPath(qFOLDERID_SavedGames, qKF_FLAG_CREATE | qKF_FLAG_NO_ALIAS, NULL, &mydocsdirw) == S_OK)
       {
         memset(mydocsdir, 0, sizeof(mydocsdir));
         wctombs(mydocsdir, mydocsdirw, sizeof(mydocsdir)-1);
         CoTaskMemFree(mydocsdirw);
+        path.clear();
         path << DirectoryCleaned(mydocsdir) << (prefix+1) << "/";
         if(file_is_directory(path.c_str()))
         {
           g_qeglobals.m_userEnginePath = path.c_str();
+          CoUninitialize();
+          FreeLibrary(shfolder);
           break;
         }
       }
+      CoUninitialize();
+      if(shfolder)
+        FreeLibrary(shfolder);
       if(SHGetFolderPath(NULL, CSIDL_PERSONAL, NULL, 0, mydocsdir))
       {
+        path.clear();
         path << DirectoryCleaned(mydocsdir) << "My Games/" << (prefix+1) << "/";
         // win32: only add it if it already exists
         if(file_is_directory(path.c_str()))
@@ -256,18 +249,21 @@ void HomePaths_Realise()
           break;
         }
       }
-      g_qeglobals.m_userEnginePath = EnginePath_get();
-    }
-    while(0);
-    CoUninitialize();
-    if(shfolder)
-      FreeLibrary(shfolder);
-  }
-  else
 #endif
-  {
+
+#if defined(POSIX)
+      path.clear();
+      path << DirectoryCleaned(g_get_home_dir()) << prefix << "/";
+      g_qeglobals.m_userEnginePath = path.c_str();
+      break;
+#endif
+    }
+
     g_qeglobals.m_userEnginePath = EnginePath_get();
   }
+  while(0);
+
+  Q_mkdir(g_qeglobals.m_userEnginePath.c_str());
 
   {
     StringOutputStream path(256);