File: androidpath.cpp

package info (click to toggle)
openmw 0.50.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,076 kB
  • sloc: cpp: 380,958; xml: 2,192; sh: 1,449; python: 911; makefile: 26; javascript: 5
file content (76 lines) | stat: -rw-r--r-- 2,281 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include "androidpath.hpp"

#if defined(__ANDROID__)

#include <cstdlib>
#include <cstring>
#include <filesystem>
#include <jni.h>
#include <pwd.h>
#include <unistd.h>

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)
{
    g_path_global = env->GetStringUTFChars(global, nullptr);
    g_path_user = env->GetStringUTFChars(user, nullptr);
}

namespace Files
{

    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/
    // (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/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("./");
    }

    // /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 */

#endif /* defined(__Android__) */