summaryrefslogtreecommitdiffstats
path: root/Android/jni/app-android.cpp
blob: d9037422544b25d9073c0cfc33778f15cc913a64 (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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#include "Globals.h"

#include <jni.h>
#include <sys/time.h>
#include <time.h>
#include <stdint.h>

#include <stdlib.h>
#include <math.h>
#include <float.h>
#include <assert.h>

#include "OSSupport/CriticalSection.h"
#include "OSSupport/MakeDir.h"
#include "ToJava.h"

#include "Root.h"

#include <android/log.h>

cCriticalSection g_CriticalSection;

JNIEnv* g_CurrentJNIEnv = 0;
jobject g_JavaThread = 0;
JavaVM* g_JavaVM = 0;
//jobject g_JavaActivity = 0;

cRoot * pRoot = NULL;


class cMainThread :
	public cIsThread
{
public:
	cMainThread() :
	  cIsThread("cMainThread")
	  {
		  //Start();
		  __android_log_print(ANDROID_LOG_ERROR,"MCServer", "%s", "cMainThread");
	  }

	  void Stop(void)
	  {
		  m_ShouldTerminate = true;
		  Wait();
	  }

protected:

	virtual void Execute(void) override
	{
		__android_log_print(ANDROID_LOG_ERROR,"MCServer", "%s", "Execute");
		pRoot = new cRoot();
		pRoot->Start();
		delete pRoot;
	}

} ;

cMainThread * pMainThread = NULL;

jint JNI_OnLoad(JavaVM* vm, void* reserved)
{
	__android_log_print(ANDROID_LOG_ERROR,"MCServer", "%s", "JNI_OnLoad JNI_OnLoad JNI_OnLoad JNI_OnLoad");
	g_JavaVM = vm;
	return JNI_VERSION_1_4;
}

/* Called when program/activity is created */
extern "C" void Java_com_mcserver_MCServerActivity_NativeOnCreate( JNIEnv*  env, jobject thiz )
{
	g_CriticalSection.Lock();
	g_CurrentJNIEnv = env;
	g_JavaThread = thiz;
	//if( !cLogger::GetSingletonPtr() ) new cLogger();
	__android_log_print(ANDROID_LOG_ERROR,"MCServer", "%s", "Logging from C++!");
	g_CriticalSection.Unlock();

	//CallJavaFunction_Void_Void(g_JavaActivity, "TestTest" );
	//CallJavaFunction_Void_String(g_JavaThread, "AddToLog", "herpderpderp!!" );
	
	mkdir("/sdcard/mcserver", S_IRWXU | S_IRWXG | S_IRWXO);

// 	__android_log_print(ANDROID_LOG_ERROR,"MCServer", "%s", "Before mainthread");
// 	pMainThread = new cMainThread();
// 	pMainThread->Start();
// 	__android_log_print(ANDROID_LOG_ERROR,"MCServer", "%s", "AFter mainthread");

	pRoot = new cRoot();
	pRoot->Start();
	delete pRoot; pRoot = NULL;
}





extern "C" void Java_com_mcserver_MCServerActivity_NativeCleanUp( JNIEnv*  env, jobject thiz )
{
	g_CriticalSection.Lock();
	g_CurrentJNIEnv = env;
	g_JavaThread = thiz;
	g_CriticalSection.Unlock();

	__android_log_print(ANDROID_LOG_ERROR,"MCServer", "pRoot: %p", pRoot);
	if( pRoot != NULL )
	{
		pRoot->ServerCommand("stop");
	}
// 	pMainThread->Stop();
// 	delete pMainThread; pMainThread = NULL;
}




extern "C" jboolean Java_com_mcserver_MCServerActivity_NativeIsServerRunning( JNIEnv* env, jobject thiz )
{
	return pRoot != NULL;
}