2013-01-22 21:45:59 -05:00
|
|
|
/* TODO, WinRT: include copyright info in SDL_winrtpaths.cpp
|
2013-10-28 15:41:22 -04:00
|
|
|
TODO, WinRT: remove the need to compile this with C++/CX (/ZW) extensions, and if possible, without C++ at all
|
2013-01-22 21:45:59 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SDL_config.h"
|
|
|
|
|
|
|
|
#ifdef __WINRT__
|
|
|
|
|
|
|
|
extern "C" {
|
2013-10-28 15:41:22 -04:00
|
|
|
#include "SDL_filesystem.h"
|
2013-02-03 12:34:34 -05:00
|
|
|
#include "SDL_error.h"
|
|
|
|
#include "SDL_stdinc.h"
|
2013-01-22 21:45:59 -05:00
|
|
|
#include "SDL_system.h"
|
2013-10-28 15:41:22 -04:00
|
|
|
#include "../../core/windows/SDL_windows.h"
|
2013-01-22 21:45:59 -05:00
|
|
|
}
|
|
|
|
|
2013-02-03 13:18:31 -05:00
|
|
|
#include <string>
|
2013-04-01 21:33:06 -04:00
|
|
|
#include <unordered_map>
|
2013-01-22 21:45:59 -05:00
|
|
|
|
2013-02-03 13:18:31 -05:00
|
|
|
using namespace std;
|
|
|
|
using namespace Windows::Storage;
|
2013-02-03 12:34:34 -05:00
|
|
|
|
2013-02-03 12:49:12 -05:00
|
|
|
extern "C" const wchar_t *
|
2013-04-01 21:33:06 -04:00
|
|
|
SDL_WinRTGetFSPathUNICODE(SDL_WinRT_Path pathType)
|
2013-02-03 12:49:12 -05:00
|
|
|
{
|
2013-02-09 22:48:19 -05:00
|
|
|
switch (pathType) {
|
|
|
|
case SDL_WINRT_PATH_INSTALLED_LOCATION:
|
|
|
|
{
|
|
|
|
static wstring path;
|
|
|
|
if (path.empty()) {
|
|
|
|
path = Windows::ApplicationModel::Package::Current->InstalledLocation->Path->Data();
|
|
|
|
}
|
|
|
|
return path.c_str();
|
|
|
|
}
|
2013-02-03 12:49:12 -05:00
|
|
|
|
2013-02-09 22:48:19 -05:00
|
|
|
case SDL_WINRT_PATH_LOCAL_FOLDER:
|
|
|
|
{
|
|
|
|
static wstring path;
|
|
|
|
if (path.empty()) {
|
|
|
|
path = ApplicationData::Current->LocalFolder->Path->Data();
|
|
|
|
}
|
|
|
|
return path.c_str();
|
|
|
|
}
|
2013-01-22 21:45:59 -05:00
|
|
|
|
2013-02-09 22:48:19 -05:00
|
|
|
#if WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP
|
|
|
|
case SDL_WINRT_PATH_ROAMING_FOLDER:
|
|
|
|
{
|
|
|
|
static wstring path;
|
|
|
|
if (path.empty()) {
|
|
|
|
path = ApplicationData::Current->RoamingFolder->Path->Data();
|
|
|
|
}
|
|
|
|
return path.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
case SDL_WINRT_PATH_TEMP_FOLDER:
|
|
|
|
{
|
|
|
|
static wstring path;
|
|
|
|
if (path.empty()) {
|
|
|
|
path = ApplicationData::Current->TemporaryFolder->Path->Data();
|
|
|
|
}
|
|
|
|
return path.c_str();
|
|
|
|
}
|
2013-02-03 12:38:55 -05:00
|
|
|
#endif
|
2013-01-22 21:45:59 -05:00
|
|
|
|
2013-02-09 22:48:19 -05:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-02-03 12:38:55 -05:00
|
|
|
SDL_Unsupported();
|
|
|
|
return NULL;
|
2013-01-22 21:45:59 -05:00
|
|
|
}
|
|
|
|
|
2013-04-01 21:33:06 -04:00
|
|
|
extern "C" const char *
|
|
|
|
SDL_WinRTGetFSPathUTF8(SDL_WinRT_Path pathType)
|
|
|
|
{
|
|
|
|
typedef unordered_map<SDL_WinRT_Path, string> UTF8PathMap;
|
|
|
|
static UTF8PathMap utf8Paths;
|
|
|
|
|
|
|
|
UTF8PathMap::iterator searchResult = utf8Paths.find(pathType);
|
|
|
|
if (searchResult != utf8Paths.end()) {
|
|
|
|
return searchResult->second.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
const wchar_t * ucs2Path = SDL_WinRTGetFSPathUNICODE(pathType);
|
|
|
|
if (!ucs2Path) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char * utf8Path = WIN_StringToUTF8(ucs2Path);
|
|
|
|
utf8Paths[pathType] = utf8Path;
|
|
|
|
SDL_free(utf8Path);
|
|
|
|
return utf8Paths[pathType].c_str();
|
|
|
|
}
|
|
|
|
|
2013-10-28 15:41:22 -04:00
|
|
|
extern "C" char *
|
|
|
|
SDL_GetBasePath(void)
|
|
|
|
{
|
|
|
|
const char * srcPath = SDL_WinRTGetFSPathUTF8(SDL_WINRT_PATH_INSTALLED_LOCATION);
|
|
|
|
size_t destPathLen;
|
|
|
|
char * destPath = NULL;
|
|
|
|
|
|
|
|
if (!srcPath) {
|
|
|
|
SDL_SetError("Couldn't locate our basepath: %s", SDL_GetError());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
destPathLen = SDL_strlen(srcPath) + 2;
|
|
|
|
destPath = (char *) SDL_malloc(destPathLen);
|
|
|
|
if (!destPath) {
|
|
|
|
SDL_OutOfMemory();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_snprintf(destPath, destPathLen, "%s\\", srcPath);
|
|
|
|
return destPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" char *
|
|
|
|
SDL_GetPrefPath(const char *org, const char *app)
|
|
|
|
{
|
2013-10-28 15:52:04 -04:00
|
|
|
/* WinRT note: The 'SHGetFolderPath' API that is used in Windows 7 and
|
|
|
|
* earlier is not available on WinRT or Windows Phone. WinRT provides
|
|
|
|
* a similar API, but SHGetFolderPath can't be called, at least not
|
|
|
|
* without violating Microsoft's app-store requirements.
|
|
|
|
*/
|
|
|
|
|
2013-10-28 15:41:22 -04:00
|
|
|
#if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
|
|
|
|
/* A 'Roaming' folder is not available in Windows Phone 8, however a 'Local' folder is. */
|
|
|
|
const char * srcPath = SDL_WinRTGetFSPathUTF8(SDL_WINRT_PATH_LOCAL_FOLDER);
|
|
|
|
#else
|
|
|
|
/* A 'Roaming' folder is available on Windows 8 and 8.1. Use that. */
|
|
|
|
const char * srcPath = SDL_WinRTGetFSPathUTF8(SDL_WINRT_PATH_ROAMING_FOLDER);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
size_t destPathLen;
|
|
|
|
char * destPath = NULL;
|
|
|
|
|
|
|
|
if (!srcPath) {
|
|
|
|
SDL_SetError("Couldn't locate our basepath: %s", SDL_GetError());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
destPathLen = SDL_strlen(srcPath) + SDL_strlen(org) + SDL_strlen(app) + 4;
|
|
|
|
destPath = (char *) SDL_malloc(destPathLen);
|
|
|
|
if (!destPath) {
|
|
|
|
SDL_OutOfMemory();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_snprintf(destPath, destPathLen, "%s\\%s\\%s\\", srcPath, org, app);
|
|
|
|
return destPath;
|
|
|
|
}
|
|
|
|
|
2013-01-22 21:45:59 -05:00
|
|
|
#endif /* __WINRT__ */
|