mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
Apply clang-format to code base
This commit is contained in:
parent
f37d0be806
commit
ddb0522bbf
2199 changed files with 118692 additions and 114392 deletions
|
@ -2,20 +2,21 @@
|
|||
|
||||
#if defined(__ANDROID__)
|
||||
|
||||
#include <jni.h>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <filesystem>
|
||||
#include <jni.h>
|
||||
#include <pwd.h>
|
||||
#include <unistd.h>
|
||||
#include <filesystem>
|
||||
|
||||
static const char *g_path_global; //< Path to global directory root, e.g. /data/data/com.libopenmw.openmw
|
||||
static const char *g_path_user; //< Path to user root, e.g. /sdcard/Android/data/com.libopenmw.openmw
|
||||
static const char* g_path_global; //< Path to global directory root, e.g. /data/data/com.libopenmw.openmw
|
||||
static const char* g_path_user; //< Path to user root, e.g. /sdcard/Android/data/com.libopenmw.openmw
|
||||
|
||||
/**
|
||||
* \brief Called by java code to set up directory paths
|
||||
*/
|
||||
extern "C" JNIEXPORT void JNICALL Java_ui_activity_GameActivity_getPathToJni(JNIEnv *env, jobject obj, jstring global, jstring user)
|
||||
extern "C" JNIEXPORT void JNICALL Java_ui_activity_GameActivity_getPathToJni(
|
||||
JNIEnv* env, jobject obj, jstring global, jstring user)
|
||||
{
|
||||
g_path_global = env->GetStringUTFChars(global, nullptr);
|
||||
g_path_user = env->GetStringUTFChars(user, nullptr);
|
||||
|
@ -24,54 +25,51 @@ extern "C" JNIEXPORT void JNICALL Java_ui_activity_GameActivity_getPathToJni(JNI
|
|||
namespace Files
|
||||
{
|
||||
|
||||
AndroidPath::AndroidPath(const std::string& application_name)
|
||||
{
|
||||
}
|
||||
AndroidPath::AndroidPath(const std::string& application_name) {}
|
||||
|
||||
// /sdcard/Android/data/com.libopenmw.openmw/config
|
||||
std::filesystem::path AndroidPath::getUserConfigPath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_user) / "config";
|
||||
}
|
||||
// /sdcard/Android/data/com.libopenmw.openmw/config
|
||||
std::filesystem::path AndroidPath::getUserConfigPath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_user) / "config";
|
||||
}
|
||||
|
||||
// /sdcard/Android/data/com.libopenmw.openmw/
|
||||
// (so that saves are placed at /sdcard/Android/data/com.libopenmw.openmw/saves)
|
||||
std::filesystem::path AndroidPath::getUserDataPath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_user);
|
||||
}
|
||||
// /sdcard/Android/data/com.libopenmw.openmw/
|
||||
// (so that saves are placed at /sdcard/Android/data/com.libopenmw.openmw/saves)
|
||||
std::filesystem::path AndroidPath::getUserDataPath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_user);
|
||||
}
|
||||
|
||||
// /data/data/com.libopenmw.openmw/cache
|
||||
// (supposed to be "official" android cache location)
|
||||
std::filesystem::path AndroidPath::getCachePath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_global) / "cache";
|
||||
}
|
||||
// /data/data/com.libopenmw.openmw/cache
|
||||
// (supposed to be "official" android cache location)
|
||||
std::filesystem::path AndroidPath::getCachePath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_global) / "cache";
|
||||
}
|
||||
|
||||
// /data/data/com.libopenmw.openmw/files/config
|
||||
// (note the addition of "files")
|
||||
std::filesystem::path AndroidPath::getGlobalConfigPath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_global) / "files" / "config";
|
||||
}
|
||||
// /data/data/com.libopenmw.openmw/files/config
|
||||
// (note the addition of "files")
|
||||
std::filesystem::path AndroidPath::getGlobalConfigPath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_global) / "files" / "config";
|
||||
}
|
||||
|
||||
std::filesystem::path AndroidPath::getLocalPath() const
|
||||
{
|
||||
return std::filesystem::path("./");
|
||||
}
|
||||
std::filesystem::path AndroidPath::getLocalPath() const
|
||||
{
|
||||
return std::filesystem::path("./");
|
||||
}
|
||||
|
||||
// /sdcard/Android/data/com.libopenmw.openmw
|
||||
// (so that the data is at /sdcard/Android/data/com.libopenmw.openmw/data)
|
||||
std::filesystem::path AndroidPath::getGlobalDataPath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_user);
|
||||
}
|
||||
|
||||
std::filesystem::path AndroidPath::getInstallPath() const
|
||||
{
|
||||
return std::filesystem::path();
|
||||
}
|
||||
// /sdcard/Android/data/com.libopenmw.openmw
|
||||
// (so that the data is at /sdcard/Android/data/com.libopenmw.openmw/data)
|
||||
std::filesystem::path AndroidPath::getGlobalDataPath() const
|
||||
{
|
||||
return std::filesystem::path(g_path_user);
|
||||
}
|
||||
|
||||
std::filesystem::path AndroidPath::getInstallPath() const
|
||||
{
|
||||
return std::filesystem::path();
|
||||
}
|
||||
|
||||
} /* namespace Files */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue