OpenRCT2/src/openrct2/platform/Platform.macOS.mm

156 lines
4.5 KiB
Plaintext
Raw Normal View History

2017-12-01 01:54:03 +01:00
/*****************************************************************************
2020-07-21 15:04:34 +02:00
* Copyright (c) 2014-2020 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
2017-12-01 01:54:03 +01:00
2017-12-01 11:16:05 +01:00
#if defined(__APPLE__) && defined(__MACH__)
2017-12-01 01:54:03 +01:00
2018-07-21 16:17:06 +02:00
# include "../OpenRCT2.h"
# include "../core/Path.hpp"
# include "../core/String.hpp"
2018-07-21 16:17:06 +02:00
# include "Platform2.h"
2017-12-01 01:54:03 +01:00
2018-06-21 12:48:12 +02:00
// undefine `interface` and `abstract`, because it's causing conflicts with Objective-C's keywords
2018-07-21 16:17:06 +02:00
# undef interface
# undef abstract
2018-06-21 12:48:12 +02:00
2018-07-21 16:17:06 +02:00
# include <Foundation/Foundation.h>
# include <mach-o/dyld.h>
2018-06-21 12:48:12 +02:00
2017-12-01 01:54:03 +01:00
namespace Platform
{
std::string GetFolderPath(SPECIAL_FOLDER folder)
{
// macOS stores everything in ~/Library/Application Support/OpenRCT2
switch (folder)
{
2018-06-22 23:04:38 +02:00
case SPECIAL_FOLDER::USER_CACHE:
case SPECIAL_FOLDER::USER_CONFIG:
case SPECIAL_FOLDER::USER_DATA:
2017-12-01 01:54:03 +01:00
{
auto home = GetFolderPath(SPECIAL_FOLDER::USER_HOME);
return Path::Combine(home, "Library/Application Support");
}
2018-06-22 23:04:38 +02:00
case SPECIAL_FOLDER::USER_HOME:
return GetHomePath();
default:
return std::string();
2017-12-01 01:54:03 +01:00
}
}
2018-01-21 03:13:32 +01:00
2018-01-29 01:03:00 +01:00
static std::string GetBundlePath()
{
@autoreleasepool
{
2018-06-22 23:04:38 +02:00
NSBundle* bundle = [NSBundle mainBundle];
2018-01-29 01:03:00 +01:00
if (bundle)
{
// This method may return a valid bundle object even for unbundled apps.
// See https://developer.apple.com/documentation/foundation/nsbundle/1410786-mainbundle?language=objc
// Therefore, double check this is a valid bundle (has an ID string)
auto bundleId = bundle.bundleIdentifier.UTF8String;
if (bundleId)
2018-01-29 01:03:00 +01:00
{
auto resources = bundle.resourcePath.UTF8String;
if (Path::DirectoryExists(resources))
{
return resources;
}
2018-01-29 01:03:00 +01:00
}
}
return std::string();
}
}
std::string GetDocsPath()
{
return GetBundlePath();
}
2017-12-02 00:48:46 +01:00
std::string GetInstallPath()
{
auto path = std::string(gCustomOpenRCT2DataPath);
2017-12-02 00:48:46 +01:00
if (!path.empty())
{
2018-01-29 01:03:00 +01:00
path = Path::GetAbsolute(path);
return path;
2017-12-02 00:48:46 +01:00
}
else
{
// check if this is an app bundle
path = GetBundlePath();
if (!path.empty())
2017-12-02 00:48:46 +01:00
{
return path;
}
else
{
// this is not in an app bundle
auto exePath = GetCurrentExecutablePath();
auto exeDirectory = Path::GetDirectory(exePath);
// check build and install paths
NSArray *dataSearchLocations = @[@"data", @"../share/openrct2"];
for (NSString *searchLocation in dataSearchLocations) {
path = Path::Combine(exeDirectory, [searchLocation UTF8String]);
NSString* nsPath = [NSString stringWithUTF8String:path.c_str()];
if ([[NSFileManager defaultManager] fileExistsAtPath:nsPath])
{
return path;
}
2017-12-02 00:48:46 +01:00
}
}
}
return "/";
2017-12-02 00:48:46 +01:00
}
std::string GetCurrentExecutablePath()
{
char exePath[MAX_PATH];
uint32_t size = MAX_PATH;
2017-12-02 00:48:46 +01:00
int result = _NSGetExecutablePath(exePath, &size);
if (result == 0)
{
return exePath;
}
else
{
return std::string();
}
}
utf8* StrDecompToPrecomp(utf8* input)
{
@autoreleasepool
{
if (input == NULL)
{
return 0;
}
NSString* inputDecomp = [NSString stringWithUTF8String:input];
return strdup([inputDecomp.precomposedStringWithCanonicalMapping cStringUsingEncoding:NSUTF8StringEncoding]);
}
}
bool HandleSpecialCommandLineArgument(const char* argument)
{
if (String::Equals(argument, "-NSDocumentRevisionsDebugMode"))
{
return true;
}
if (String::StartsWith(argument, "-psn_"))
{
return true;
}
return false;
}
2017-12-01 01:54:03 +01:00
}
#endif