mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Refine the previous commit a bit. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4802 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
0b91499ee0
commit
735525758d
5 changed files with 40 additions and 40 deletions
|
@ -761,7 +761,6 @@ char *Bgetenv(const char *name);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
char *Bgethomedir(void);
|
char *Bgethomedir(void);
|
||||||
char *Bgetsupportdir(void);
|
|
||||||
char *Bgetappdir(void);
|
char *Bgetappdir(void);
|
||||||
uint32_t Bgetsysmemsize(void);
|
uint32_t Bgetsysmemsize(void);
|
||||||
int32_t Bcorrectfilename(char *filename, int32_t removefn);
|
int32_t Bcorrectfilename(char *filename, int32_t removefn);
|
||||||
|
|
|
@ -10,9 +10,9 @@ int32_t osx_msgbox(const char *name, const char *msg);
|
||||||
int32_t osx_ynbox(const char *name, const char *msg);
|
int32_t osx_ynbox(const char *name, const char *msg);
|
||||||
|
|
||||||
char *osx_gethomedir(void);
|
char *osx_gethomedir(void);
|
||||||
char *osx_getsupportdir(void);
|
char *osx_getsupportdir(int32_t local);
|
||||||
char *osx_getappdir(void);
|
char *osx_getappdir(void);
|
||||||
char *osx_getapplicationsdir(void);
|
char *osx_getapplicationsdir(int32_t local);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -419,15 +419,6 @@ char *Bgethomedir(void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
char *Bgetsupportdir(void)
|
|
||||||
{
|
|
||||||
#if defined __APPLE__
|
|
||||||
return osx_getsupportdir();
|
|
||||||
#else
|
|
||||||
return Bgethomedir();
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
char *Bgetappdir(void)
|
char *Bgetappdir(void)
|
||||||
{
|
{
|
||||||
char *dir = NULL;
|
char *dir = NULL;
|
||||||
|
|
|
@ -73,9 +73,9 @@ char *osx_gethomedir(void)
|
||||||
return returnpath;
|
return returnpath;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *osx_getsupportdir(void)
|
char *osx_getsupportdir(int32_t local)
|
||||||
{
|
{
|
||||||
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
|
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, local ? NSUserDomainMask : NSLocalDomainMask, YES);
|
||||||
char *returnpath = NULL;
|
char *returnpath = NULL;
|
||||||
|
|
||||||
if ([paths count] > 0)
|
if ([paths count] > 0)
|
||||||
|
@ -130,9 +130,9 @@ char *osx_getappdir(void)
|
||||||
return dir;
|
return dir;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *osx_getapplicationsdir(void)
|
char *osx_getapplicationsdir(int32_t local)
|
||||||
{
|
{
|
||||||
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSAllApplicationsDirectory, NSLocalDomainMask, YES);
|
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSAllApplicationsDirectory, local ? NSUserDomainMask : NSLocalDomainMask, YES);
|
||||||
char *returnpath = NULL;
|
char *returnpath = NULL;
|
||||||
|
|
||||||
if ([paths count] > 0)
|
if ([paths count] > 0)
|
||||||
|
|
|
@ -801,25 +801,35 @@ void G_AddSearchPaths(void)
|
||||||
addsearchpath("/usr/local/share/games/eduke32");
|
addsearchpath("/usr/local/share/games/eduke32");
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
char buf[BMAX_PATH];
|
char buf[BMAX_PATH];
|
||||||
char *applications = osx_getapplicationsdir();
|
int32_t i;
|
||||||
char *support = Bgetsupportdir();
|
char *applications[] = { osx_getapplicationsdir(0), osx_getapplicationsdir(1) };
|
||||||
|
char *support[] = { osx_getsupportdir(0), osx_getsupportdir(1) };
|
||||||
|
|
||||||
Bsnprintf(buf, sizeof(buf), "%s/Steam", support);
|
for (i = 0; i < 2; i++)
|
||||||
|
{
|
||||||
|
Bsnprintf(buf, sizeof(buf), "%s/Steam", support[i]);
|
||||||
G_AddSteamPathsApple(buf);
|
G_AddSteamPathsApple(buf);
|
||||||
|
|
||||||
Bsnprintf(buf, sizeof(buf), "%s/Steam/steamapps/libraryfolders.vdf", support);
|
Bsnprintf(buf, sizeof(buf), "%s/Steam/steamapps/libraryfolders.vdf", support[i]);
|
||||||
G_ParseSteamKeyValuesForPaths(buf);
|
G_ParseSteamKeyValuesForPaths(buf);
|
||||||
|
|
||||||
Bsnprintf(buf, sizeof(buf), "%s/Duke Nukem 3D.app/Contents/Resources/Duke Nukem 3D.boxer/C.harddisk", applications);
|
Bsnprintf(buf, sizeof(buf), "%s/Duke Nukem 3D.app/Contents/Resources/Duke Nukem 3D.boxer/C.harddisk", applications[i]);
|
||||||
addsearchpath(buf);
|
addsearchpath(buf);
|
||||||
|
}
|
||||||
|
|
||||||
Bsnprintf(buf, sizeof(buf), "%s/JFDuke3D", support);
|
for (i = 0; i < 2; i++)
|
||||||
|
{
|
||||||
|
Bsnprintf(buf, sizeof(buf), "%s/JFDuke3D", support[i]);
|
||||||
addsearchpath(buf);
|
addsearchpath(buf);
|
||||||
Bsnprintf(buf, sizeof(buf), "%s/EDuke32", support);
|
Bsnprintf(buf, sizeof(buf), "%s/EDuke32", support[i]);
|
||||||
addsearchpath(buf);
|
addsearchpath(buf);
|
||||||
|
}
|
||||||
|
|
||||||
Bfree(applications);
|
for (i = 0; i < 2; i++)
|
||||||
Bfree(support);
|
{
|
||||||
|
Bfree(applications[i]);
|
||||||
|
Bfree(support[i]);
|
||||||
|
}
|
||||||
#elif defined (_WIN32)
|
#elif defined (_WIN32)
|
||||||
char buf[BMAX_PATH];
|
char buf[BMAX_PATH];
|
||||||
const char* instpath;
|
const char* instpath;
|
||||||
|
|
Loading…
Reference in a new issue