117 lines
2.2 KiB
C++
117 lines
2.2 KiB
C++
#include "android_api.h"
|
|
|
|
#include "main_code.h"
|
|
|
|
boost::shared_ptr<TMyApplication> App(new TMyApplication);
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_Init(JNIEnv * env, jobject obj, jint width, jint height)
|
|
{
|
|
try
|
|
{
|
|
if (App->IsInited())
|
|
{
|
|
App->OuterDeinit(); //Clean up what is left at previous launch (if applicable)
|
|
}
|
|
|
|
App->OuterInit(width, height, 480.f, 320.f);
|
|
|
|
App->Inited = true;
|
|
}
|
|
catch (...)
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_StopSounds(JNIEnv * env, jobject obj)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_Update(JNIEnv * env, jobject obj, long dt)
|
|
{
|
|
try
|
|
{
|
|
if (App->IsInited())
|
|
{
|
|
App->OuterDraw();
|
|
App->OuterUpdate(dt);
|
|
}
|
|
|
|
}
|
|
catch (...)
|
|
{
|
|
throw;
|
|
}
|
|
|
|
}
|
|
|
|
JNIEXPORT int JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_IsInited(JNIEnv * env, jobject obj)
|
|
{
|
|
|
|
if (App->IsInited())
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_Destroy(JNIEnv * env, jobject obj)
|
|
{
|
|
try
|
|
{
|
|
if (App->IsInited())
|
|
{
|
|
App->OuterDeinit();
|
|
}
|
|
|
|
}
|
|
catch (...)
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_OnTapDown(JNIEnv * env, jobject obj, float x, float y, long time)
|
|
{
|
|
|
|
try
|
|
{
|
|
|
|
}
|
|
catch (...)
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_OnTapUp(JNIEnv * env, jobject obj, float x, float y, long time)
|
|
{
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_OnTapMove(JNIEnv * env, jobject obj, float x, float y, long time)
|
|
{
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_OnFling(JNIEnv * env, jobject obj, jfloat velocityX, jfloat velocityY, long time)
|
|
{
|
|
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_OnScroll(JNIEnv * env, jobject obj, jfloat distanceX, jfloat distanceY, long time)
|
|
{
|
|
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_halibutjnitemplate_JniWrapper_OnKeyPress(JNIEnv * env, jobject obj, jint keyCode)
|
|
{
|
|
App->OnKeyPress(keyCode);
|
|
}
|