Merge remote-tracking branch 'sandstranger/android'
commit
f4ddf2a7b9
@ -0,0 +1,43 @@
|
|||||||
|
|
||||||
|
#include "../../SDL_internal.h"
|
||||||
|
|
||||||
|
#ifdef __ANDROID__
|
||||||
|
#include "SDL_main.h"
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
Functions called by JNI
|
||||||
|
*******************************************************************************/
|
||||||
|
#include <jni.h>
|
||||||
|
|
||||||
|
/* Called before to initialize JNI bindings */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
extern void SDL_Android_Init(JNIEnv* env, jclass cls);
|
||||||
|
|
||||||
|
|
||||||
|
int Java_org_libsdl_app_SDLActivity_nativeInit(JNIEnv* env, jclass cls, jobject obj)
|
||||||
|
{
|
||||||
|
|
||||||
|
SDL_Android_Init(env, cls);
|
||||||
|
|
||||||
|
SDL_SetMainReady();
|
||||||
|
|
||||||
|
|
||||||
|
/* Run the application code! */
|
||||||
|
|
||||||
|
int status;
|
||||||
|
char *argv[2];
|
||||||
|
argv[0] = SDL_strdup("openmw");
|
||||||
|
argv[1] = NULL;
|
||||||
|
status = main(1, argv);
|
||||||
|
|
||||||
|
/* Do not issue an exit or the whole application will terminate instead of just the SDL thread */
|
||||||
|
/* exit(status); */
|
||||||
|
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* __ANDROID__ */
|
||||||
|
|
@ -0,0 +1,94 @@
|
|||||||
|
#include "androidpath.hpp"
|
||||||
|
|
||||||
|
#if defined(__ANDROID__)
|
||||||
|
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cstring>
|
||||||
|
#include <pwd.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <boost/filesystem/fstream.hpp>
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
boost::filesystem::path getUserHome()
|
||||||
|
{
|
||||||
|
const char* dir = getenv("HOME");
|
||||||
|
if (dir == NULL)
|
||||||
|
{
|
||||||
|
struct passwd* pwd = getpwuid(getuid());
|
||||||
|
if (pwd != NULL)
|
||||||
|
{
|
||||||
|
dir = pwd->pw_dir;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (dir == NULL)
|
||||||
|
return boost::filesystem::path();
|
||||||
|
else
|
||||||
|
return boost::filesystem::path(dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
boost::filesystem::path getEnv(const std::string& envVariable, const boost::filesystem::path& fallback)
|
||||||
|
{
|
||||||
|
const char* result = getenv(envVariable.c_str());
|
||||||
|
if (!result)
|
||||||
|
return fallback;
|
||||||
|
boost::filesystem::path dir(result);
|
||||||
|
if (dir.empty())
|
||||||
|
return fallback;
|
||||||
|
else
|
||||||
|
return dir;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \namespace Files
|
||||||
|
*/
|
||||||
|
namespace Files
|
||||||
|
{
|
||||||
|
|
||||||
|
AndroidPath::AndroidPath(const std::string& application_name)
|
||||||
|
: mName(application_name)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
boost::filesystem::path AndroidPath::getUserConfigPath() const
|
||||||
|
{
|
||||||
|
return getEnv("XDG_CONFIG_HOME", "/sdcard/morrowind/config") / mName;
|
||||||
|
}
|
||||||
|
|
||||||
|
boost::filesystem::path AndroidPath::getUserDataPath() const
|
||||||
|
{
|
||||||
|
return getEnv("XDG_DATA_HOME", "/sdcard/morrowind/share") / mName;
|
||||||
|
}
|
||||||
|
|
||||||
|
boost::filesystem::path AndroidPath::getCachePath() const
|
||||||
|
{
|
||||||
|
return getEnv("XDG_CACHE_HOME", "/sdcard/morrowind/cache") / mName;
|
||||||
|
}
|
||||||
|
|
||||||
|
boost::filesystem::path AndroidPath::getGlobalConfigPath() const
|
||||||
|
{
|
||||||
|
boost::filesystem::path globalPath("/sdcard/morrowind/");
|
||||||
|
return globalPath / mName;
|
||||||
|
}
|
||||||
|
|
||||||
|
boost::filesystem::path AndroidPath::getLocalPath() const
|
||||||
|
{
|
||||||
|
return boost::filesystem::path("./");
|
||||||
|
}
|
||||||
|
|
||||||
|
boost::filesystem::path AndroidPath::getGlobalDataPath() const
|
||||||
|
{
|
||||||
|
boost::filesystem::path globalDataPath("/sdcard/morrowind/data");
|
||||||
|
return globalDataPath / mName;
|
||||||
|
}
|
||||||
|
|
||||||
|
boost::filesystem::path AndroidPath::getInstallPath() const
|
||||||
|
{
|
||||||
|
return boost::filesystem::path();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
} /* namespace Files */
|
||||||
|
|
||||||
|
#endif /* defined(__Android__) */
|
@ -0,0 +1,54 @@
|
|||||||
|
#ifndef COMPONENTS_FILES_ANDROIDPATH_H
|
||||||
|
#define COMPONENTS_FILES_ANDROIDPATH_H
|
||||||
|
|
||||||
|
#if defined(__ANDROID__)
|
||||||
|
|
||||||
|
#include <boost/filesystem.hpp>
|
||||||
|
/**
|
||||||
|
* \namespace Files
|
||||||
|
*/
|
||||||
|
namespace Files
|
||||||
|
{
|
||||||
|
|
||||||
|
struct AndroidPath
|
||||||
|
{
|
||||||
|
AndroidPath(const std::string& application_name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Return path to the user directory.
|
||||||
|
*/
|
||||||
|
boost::filesystem::path getUserConfigPath() const;
|
||||||
|
|
||||||
|
boost::filesystem::path getUserDataPath() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Return path to the global (system) directory where config files can be placed.
|
||||||
|
*/
|
||||||
|
boost::filesystem::path getGlobalConfigPath() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Return path to the runtime configuration directory which is the
|
||||||
|
* place where an application was started.
|
||||||
|
*/
|
||||||
|
boost::filesystem::path getLocalPath() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Return path to the global (system) directory where game files can be placed.
|
||||||
|
*/
|
||||||
|
boost::filesystem::path getGlobalDataPath() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief
|
||||||
|
*/
|
||||||
|
boost::filesystem::path getCachePath() const;
|
||||||
|
|
||||||
|
boost::filesystem::path getInstallPath() const;
|
||||||
|
|
||||||
|
std::string mName;
|
||||||
|
};
|
||||||
|
|
||||||
|
} /* namespace Files */
|
||||||
|
|
||||||
|
#endif /* defined(__Android__) */
|
||||||
|
|
||||||
|
#endif /* COMPONENTS_FILES_ANDROIDPATH_H */
|
Loading…
Reference in New Issue