summaryrefslogtreecommitdiff
path: root/Source/Android/jni/AndroidCommon/IDCache.cpp
diff options
context:
space:
mode:
authorRyan Meredith <rwm@udel.edu>2020-07-24 13:58:46 -0400
committerRyan Meredith <rwm@udel.edu>2020-07-24 13:59:13 -0400
commitfdcc6a436b48ffa2b0b09c9f21045cd4f8945f88 (patch)
tree1d02fd2e0284077d9a4a306d30eb55b3c5d9bf54 /Source/Android/jni/AndroidCommon/IDCache.cpp
parent520af035d2dec281e8bc43440948621c7e7b1bd9 (diff)
Android: Add Log Configuration to UI
Diffstat (limited to 'Source/Android/jni/AndroidCommon/IDCache.cpp')
-rw-r--r--Source/Android/jni/AndroidCommon/IDCache.cpp31
1 files changed, 28 insertions, 3 deletions
diff --git a/Source/Android/jni/AndroidCommon/IDCache.cpp b/Source/Android/jni/AndroidCommon/IDCache.cpp
index 01f76f344a..32160edaee 100644
--- a/Source/Android/jni/AndroidCommon/IDCache.cpp
+++ b/Source/Android/jni/AndroidCommon/IDCache.cpp
@@ -12,6 +12,7 @@ static JavaVM* s_java_vm;
static jclass s_native_library_class;
static jmethodID s_display_alert_msg;
+static jmethodID s_do_rumble;
static jmethodID s_get_update_touch_pointer;
static jclass s_game_file_class;
@@ -25,7 +26,9 @@ static jclass s_analytics_class;
static jmethodID s_send_analytics_report;
static jmethodID s_get_analytics_value;
-static jmethodID s_do_rumble;
+static jclass s_linked_hash_map_class;
+static jmethodID s_linked_hash_map_init;
+static jmethodID s_linked_hash_map_put;
namespace IDCache
{
@@ -62,6 +65,11 @@ jmethodID GetDisplayAlertMsg()
return s_display_alert_msg;
}
+jmethodID GetDoRumble()
+{
+ return s_do_rumble;
+}
+
jmethodID GetUpdateTouchPointer()
{
return s_get_update_touch_pointer;
@@ -106,9 +114,19 @@ jfieldID GetGameFileCachePointer()
return s_game_file_cache_pointer;
}
-jmethodID GetDoRumble()
+jclass GetLinkedHashMapClass()
{
- return s_do_rumble;
+ return s_linked_hash_map_class;
+}
+
+jmethodID GetLinkedHashMapInit()
+{
+ return s_linked_hash_map_init;
+}
+
+jmethodID GetLinkedHashMapPut()
+{
+ return s_linked_hash_map_put;
}
} // namespace IDCache
@@ -150,6 +168,12 @@ jint JNI_OnLoad(JavaVM* vm, void* reserved)
s_get_analytics_value = env->GetStaticMethodID(s_analytics_class, "getValue",
"(Ljava/lang/String;)Ljava/lang/String;");
+ const jclass map_class = env->FindClass("java/util/LinkedHashMap");
+ s_linked_hash_map_class = reinterpret_cast<jclass>(env->NewGlobalRef(map_class));
+ s_linked_hash_map_init = env->GetMethodID(s_linked_hash_map_class, "<init>", "(I)V");
+ s_linked_hash_map_put = env->GetMethodID(
+ s_linked_hash_map_class, "put", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;");
+
return JNI_VERSION;
}
@@ -163,6 +187,7 @@ void JNI_OnUnload(JavaVM* vm, void* reserved)
env->DeleteGlobalRef(s_game_file_class);
env->DeleteGlobalRef(s_game_file_cache_class);
env->DeleteGlobalRef(s_analytics_class);
+ env->DeleteGlobalRef(s_linked_hash_map_class);
}
#ifdef __cplusplus