summaryrefslogtreecommitdiffstats
path: root/jni/ToJava.h
blob: 59dc4c3662d91dbf284c69fb0bb41a56e5588290 (plain) (blame)
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
#pragma once

#include <jni.h>
#include <android/log.h>
extern JNIEnv* g_CurrentJNIEnv;

extern jobject g_JavaThread;
//extern jobject g_JavaActivity;

//__android_log_vprint(ANDROID_LOG_ERROR,"MCServer", a_Format, argList);

static void CallJavaFunction_Void_String( jobject a_Object, const std::string & a_FunctionName, const std::string & a_StringParam )
{
	//__android_log_print(ANDROID_LOG_ERROR,"MCServer", "JNIEnv: %i Object: %i", g_CurrentJNIEnv, a_Object );
	jclass cls = g_CurrentJNIEnv->GetObjectClass( a_Object );
	//__android_log_print(ANDROID_LOG_ERROR,"MCServer", "jclass: %i", cls );
	jmethodID mid = g_CurrentJNIEnv->GetMethodID( cls, a_FunctionName.c_str(), "(Ljava/lang/String;)V"); // void a_FunctionName( String )
	//__android_log_print(ANDROID_LOG_ERROR,"MCServer", "jmethodID: %i", mid );
	if (mid != 0)
	{
		//__android_log_print(ANDROID_LOG_ERROR,"MCServer", "Going to call right NOW! %s", a_FunctionName.c_str() );
		g_CurrentJNIEnv->CallVoidMethod( a_Object, mid, g_CurrentJNIEnv->NewStringUTF( a_StringParam.c_str() ) );
	}
	else
	{
		__android_log_print(ANDROID_LOG_ERROR,"MCServer", "It was 0, derp" );
	}
}


static void CallJavaFunction_Void_Void( jobject a_Object, const std::string & a_FunctionName )
{
	__android_log_print(ANDROID_LOG_ERROR,"MCServer", "JNIEnv: %i Object: %i", g_CurrentJNIEnv, a_Object );
	jclass cls = g_CurrentJNIEnv->GetObjectClass( a_Object );
	__android_log_print(ANDROID_LOG_ERROR,"MCServer", "jclass: %i", cls );
	jmethodID mid = g_CurrentJNIEnv->GetMethodID( cls, a_FunctionName.c_str(), "()V"); // void a_FunctionName( String )
	__android_log_print(ANDROID_LOG_ERROR,"MCServer", "jmethodID: %i", mid );
	if (mid != 0)
	{
		__android_log_print(ANDROID_LOG_ERROR,"MCServer", "Going to call right NOW! %s", a_FunctionName.c_str() );
		g_CurrentJNIEnv->CallVoidMethod( a_Object, mid );
	}
	else
	{
		__android_log_print(ANDROID_LOG_ERROR,"MCServer", "It was 0, derp" );
	}
}