2017-05-25 19:57:20 +02:00
|
|
|
/*
|
|
|
|
* CAndroidVMHelper.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-07-22 21:27:25 +02:00
|
|
|
#include "Global.h"
|
|
|
|
|
2017-06-29 01:03:37 +02:00
|
|
|
#ifdef VCMI_ANDROID
|
2017-07-23 19:23:48 +02:00
|
|
|
|
2017-05-25 19:57:20 +02:00
|
|
|
#include <jni.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
/// helper class that allows access to java vm to communicate with java code from native
|
|
|
|
class CAndroidVMHelper
|
|
|
|
{
|
|
|
|
JNIEnv * envPtr;
|
|
|
|
bool detachInDestructor;
|
|
|
|
|
|
|
|
jclass findClass(const std::string & name, bool classloaded);
|
|
|
|
|
|
|
|
public:
|
|
|
|
CAndroidVMHelper();
|
|
|
|
|
|
|
|
~CAndroidVMHelper();
|
|
|
|
|
|
|
|
JNIEnv * get();
|
|
|
|
|
|
|
|
jclass findClassloadedClass(const std::string & name);
|
|
|
|
|
|
|
|
void callStaticVoidMethod(const std::string & cls, const std::string & method, bool classloaded = false);
|
|
|
|
|
|
|
|
std::string callStaticStringMethod(const std::string & cls, const std::string & method, bool classloaded = false);
|
|
|
|
|
2017-07-23 19:23:48 +02:00
|
|
|
void callCustomMethod(const std::string & cls, const std::string & method, const std::string & signature,
|
|
|
|
std::function<void(JNIEnv *, jclass, jmethodID)> fun, bool classloaded = false);
|
|
|
|
|
2017-05-25 19:57:20 +02:00
|
|
|
static void cacheVM(JNIEnv * env);
|
|
|
|
|
|
|
|
static void cacheVM(JavaVM * vm);
|
|
|
|
|
|
|
|
static constexpr const char * NATIVE_METHODS_DEFAULT_CLASS = "eu/vcmi/vcmi/NativeMethods";
|
|
|
|
};
|
2017-06-29 01:03:37 +02:00
|
|
|
|
|
|
|
#endif
|