axmol/core/platform/android/jni/TouchesJni.cpp

134 lines
5.3 KiB
C++

/****************************************************************************
Copyright (c) 2010 cocos2d-x.org
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
https://axmolengine.github.io/
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.
****************************************************************************/
#include "base/Director.h"
#include "base/EventKeyboard.h"
#include "base/EventDispatcher.h"
#include "platform/android/GLViewImpl-android.h"
#include <android/log.h>
#include <jni.h>
USING_NS_AX;
extern "C" {
JNIEXPORT void JNICALL
Java_org_axmol_lib_AxmolRenderer_nativeTouchesBegin(JNIEnv*, jclass, jint id, jfloat x, jfloat y)
{
intptr_t idlong = id;
ax::Director::getInstance()->getGLView()->handleTouchesBegin(1, &idlong, &x, &y);
}
JNIEXPORT void JNICALL
Java_org_axmol_lib_AxmolRenderer_nativeTouchesEnd(JNIEnv*, jclass, jint id, jfloat x, jfloat y)
{
intptr_t idlong = id;
ax::Director::getInstance()->getGLView()->handleTouchesEnd(1, &idlong, &x, &y);
}
JNIEXPORT void JNICALL Java_org_axmol_lib_AxmolRenderer_nativeTouchesMove(JNIEnv* env,
jclass,
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);
intptr_t idlong[size];
for (int i = 0; i < size; i++)
idlong[i] = id[i];
ax::Director::getInstance()->getGLView()->handleTouchesMove(size, idlong, x, y);
}
JNIEXPORT void JNICALL Java_org_axmol_lib_AxmolRenderer_nativeTouchesCancel(JNIEnv* env,
jclass,
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);
intptr_t idlong[size];
for (int i = 0; i < size; i++)
idlong[i] = id[i];
ax::Director::getInstance()->getGLView()->handleTouchesCancel(size, idlong, x, y);
}
#define KEYCODE_BACK 0x04
#define KEYCODE_MENU 0x52
#define KEYCODE_DPAD_UP 0x13
#define KEYCODE_DPAD_DOWN 0x14
#define KEYCODE_DPAD_LEFT 0x15
#define KEYCODE_DPAD_RIGHT 0x16
#define KEYCODE_ENTER 0x42
#define KEYCODE_PLAY 0x7e
#define KEYCODE_DPAD_CENTER 0x17
static std::unordered_map<int, ax::EventKeyboard::KeyCode> g_keyCodeMap = {
{KEYCODE_BACK, ax::EventKeyboard::KeyCode::KEY_ESCAPE},
{KEYCODE_MENU, ax::EventKeyboard::KeyCode::KEY_MENU},
{KEYCODE_DPAD_UP, ax::EventKeyboard::KeyCode::KEY_DPAD_UP},
{KEYCODE_DPAD_DOWN, ax::EventKeyboard::KeyCode::KEY_DPAD_DOWN},
{KEYCODE_DPAD_LEFT, ax::EventKeyboard::KeyCode::KEY_DPAD_LEFT},
{KEYCODE_DPAD_RIGHT, ax::EventKeyboard::KeyCode::KEY_DPAD_RIGHT},
{KEYCODE_ENTER, ax::EventKeyboard::KeyCode::KEY_ENTER},
{KEYCODE_PLAY, ax::EventKeyboard::KeyCode::KEY_PLAY},
{KEYCODE_DPAD_CENTER, ax::EventKeyboard::KeyCode::KEY_DPAD_CENTER},
};
JNIEXPORT jboolean JNICALL Java_org_axmol_lib_AxmolRenderer_nativeKeyEvent(JNIEnv*,
jclass,
jint keyCode,
jboolean isPressed)
{
auto iterKeyCode = g_keyCodeMap.find(keyCode);
if (iterKeyCode == g_keyCodeMap.end())
{
return JNI_FALSE;
}
ax::EventKeyboard::KeyCode cocos2dKey = g_keyCodeMap.at(keyCode);
ax::EventKeyboard event(cocos2dKey, isPressed);
ax::Director::getInstance()->getEventDispatcher()->dispatchEvent(&event);
return JNI_TRUE;
}
}