2022-07-30 12:24:03 -04:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
2022-10-17 08:46:36 -04:00
|
|
|
#include "../cocoa/CCSet.h"
|
2022-07-30 12:24:03 -04:00
|
|
|
#include "CCDirector.h"
|
|
|
|
#include "keypad_dispatcher/CCKeypadDispatcher.h"
|
2022-10-17 08:46:36 -04:00
|
|
|
#include "../touch_dispatcher/CCTouch.h"
|
2022-07-30 12:24:03 -04:00
|
|
|
#include "../CCEGLView.h"
|
2022-10-17 08:46:36 -04:00
|
|
|
#include "../touch_dispatcher/CCTouchDispatcher.h"
|
2022-07-30 12:24:03 -04:00
|
|
|
|
|
|
|
#include <android/log.h>
|
|
|
|
#include <jni.h>
|
|
|
|
|
|
|
|
using namespace cocos2d;
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
JNIEXPORT void JNICALL Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeTouchesBegin(JNIEnv * env, jobject thiz, jint id, jfloat x, jfloat y) {
|
|
|
|
cocos2d::CCDirector::sharedDirector()->getOpenGLView()->handleTouchesBegin(1, &id, &x, &y);
|
|
|
|
}
|
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeTouchesEnd(JNIEnv * env, jobject thiz, jint id, jfloat x, jfloat y) {
|
|
|
|
cocos2d::CCDirector::sharedDirector()->getOpenGLView()->handleTouchesEnd(1, &id, &x, &y);
|
|
|
|
}
|
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeTouchesMove(JNIEnv * env, jobject thiz, jintArray ids, jfloatArray xs, jfloatArray ys) {
|
|
|
|
int size = env->GetArrayLength(ids);
|
|
|
|
jint id[size];
|
|
|
|
jfloat x[size];
|
|
|
|
jfloat y[size];
|
|
|
|
|
|
|
|
env->GetIntArrayRegion(ids, 0, size, id);
|
|
|
|
env->GetFloatArrayRegion(xs, 0, size, x);
|
|
|
|
env->GetFloatArrayRegion(ys, 0, size, y);
|
|
|
|
|
|
|
|
cocos2d::CCDirector::sharedDirector()->getOpenGLView()->handleTouchesMove(size, id, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeTouchesCancel(JNIEnv * env, jobject thiz, jintArray ids, jfloatArray xs, jfloatArray ys) {
|
|
|
|
int size = env->GetArrayLength(ids);
|
|
|
|
jint id[size];
|
|
|
|
jfloat x[size];
|
|
|
|
jfloat y[size];
|
|
|
|
|
|
|
|
env->GetIntArrayRegion(ids, 0, size, id);
|
|
|
|
env->GetFloatArrayRegion(xs, 0, size, x);
|
|
|
|
env->GetFloatArrayRegion(ys, 0, size, y);
|
|
|
|
|
|
|
|
cocos2d::CCDirector::sharedDirector()->getOpenGLView()->handleTouchesCancel(size, id, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define KEYCODE_BACK 0x04
|
|
|
|
#define KEYCODE_MENU 0x52
|
|
|
|
|
|
|
|
JNIEXPORT jboolean JNICALL Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeKeyDown(JNIEnv * env, jobject thiz, jint keyCode) {
|
|
|
|
CCDirector* pDirector = CCDirector::sharedDirector();
|
|
|
|
switch (keyCode) {
|
|
|
|
case KEYCODE_BACK:
|
|
|
|
if (pDirector->getKeypadDispatcher()->dispatchKeypadMSG(kTypeBackClicked))
|
|
|
|
return JNI_TRUE;
|
|
|
|
break;
|
|
|
|
case KEYCODE_MENU:
|
|
|
|
if (pDirector->getKeypadDispatcher()->dispatchKeypadMSG(kTypeMenuClicked))
|
|
|
|
return JNI_TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return JNI_FALSE;
|
|
|
|
}
|
|
|
|
return JNI_FALSE;
|
|
|
|
}
|
|
|
|
}
|