mirror of
https://github.com/ReMinecraftPE/mcpe.git
synced 2025-01-22 17:23:32 -05:00
SDL Multitouch!
This commit is contained in:
parent
4ff68d1f87
commit
4830a6fcab
4 changed files with 149 additions and 70 deletions
|
@ -185,11 +185,15 @@ bool AppPlatform_sdlbase::GetMouseButtonState(SDL_Event event)
|
|||
{
|
||||
short wheelDelta = event.wheel.y;
|
||||
if (wheelDelta > 0)
|
||||
{
|
||||
// "A positive value indicates that the wheel was rotated forward, away from the user."
|
||||
result = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
// "A negative value indicates that the wheel was rotated backward, toward the user."
|
||||
result = true;
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
|
|
|
@ -14,6 +14,7 @@ typedef AppPlatform_sdl UsedAppPlatform;
|
|||
#endif
|
||||
|
||||
#include "client/app/NinecraftApp.hpp"
|
||||
#include "client/player/input/Multitouch.hpp"
|
||||
|
||||
#ifdef __EMSCRIPTEN__
|
||||
#include <emscripten.h>
|
||||
|
@ -54,6 +55,60 @@ static int TranslateSDLKeyCodeToVirtual(int sdlCode)
|
|||
return SDLVK_UNKNOWN;
|
||||
}
|
||||
|
||||
// Touch
|
||||
#define TOUCH_IDS_SIZE (MAX_TOUCHES - 1) // ID 0 Is Reserved For The Mouse
|
||||
struct touch_id_data {
|
||||
bool active = false;
|
||||
int id;
|
||||
};
|
||||
static touch_id_data touch_ids[TOUCH_IDS_SIZE];
|
||||
static char get_touch_id(int device, int finger) {
|
||||
int real_id = (device * 100) + finger;
|
||||
for (int i = 0; i < TOUCH_IDS_SIZE; i++) {
|
||||
touch_id_data &data = touch_ids[i];
|
||||
if (data.active && data.id == real_id) {
|
||||
return i + 1;
|
||||
}
|
||||
}
|
||||
// Not Found
|
||||
for (int i = 0; i < TOUCH_IDS_SIZE; i++) {
|
||||
// Find First Inactive ID, And Activate It
|
||||
touch_id_data &data = touch_ids[i];
|
||||
if (!data.active) {
|
||||
data.active = true;
|
||||
data.id = real_id;
|
||||
return i + 1;
|
||||
}
|
||||
}
|
||||
// Fail
|
||||
return 0;
|
||||
}
|
||||
static void drop_touch_id(int id) {
|
||||
touch_ids[id - 1].active = false;
|
||||
}
|
||||
static void handle_touch(int x, int y, int type, char id) {
|
||||
if (id == 0) {
|
||||
return;
|
||||
}
|
||||
switch (type) {
|
||||
case SDL_FINGERDOWN:
|
||||
case SDL_FINGERUP: {
|
||||
bool data = type == SDL_FINGERUP ? 0 : 1;
|
||||
Mouse::feed(BUTTON_LEFT, data, x, y);
|
||||
Multitouch::feed(BUTTON_LEFT, data, x, y, id);
|
||||
if (type == SDL_FINGERUP) {
|
||||
drop_touch_id(id);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case SDL_FINGERMOTION: {
|
||||
Mouse::feed(BUTTON_NONE, 0, x, y);
|
||||
Multitouch::feed(BUTTON_NONE, 0, x, y, id);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Resize From JS
|
||||
#ifdef __EMSCRIPTEN__
|
||||
extern "C" void resize_from_js(int new_width, int new_height)
|
||||
|
@ -98,22 +153,42 @@ static void handle_events()
|
|||
case SDL_MOUSEBUTTONDOWN:
|
||||
case SDL_MOUSEBUTTONUP:
|
||||
{
|
||||
if (event.button.which != SDL_TOUCH_MOUSEID) {
|
||||
const float scale = g_fPointToPixelScale;
|
||||
Mouse::feed(AppPlatform_sdlbase::GetMouseButtonType(event), AppPlatform_sdlbase::GetMouseButtonState(event), event.button.x * scale, event.button.y * scale);
|
||||
MouseButtonType type = AppPlatform_sdlbase::GetMouseButtonType(event);
|
||||
bool state = AppPlatform_sdlbase::GetMouseButtonState(event);
|
||||
float x = event.button.x * scale;
|
||||
float y = event.button.y * scale;
|
||||
Mouse::feed(type, state, x, y);
|
||||
Multitouch::feed(type, state, x, y, 0);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case SDL_MOUSEMOTION:
|
||||
{
|
||||
if (event.button.which != SDL_TOUCH_MOUSEID) {
|
||||
float scale = g_fPointToPixelScale;
|
||||
float x = event.motion.x * scale;
|
||||
float y = event.motion.y * scale;
|
||||
Multitouch::feed(BUTTON_NONE, 0, x, y, 0);
|
||||
Mouse::feed(BUTTON_NONE, false, x, y);
|
||||
g_pAppPlatform->setMouseDiff(event.motion.xrel * scale, event.motion.yrel * scale);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case SDL_MOUSEWHEEL:
|
||||
{
|
||||
if (event.button.which != SDL_TOUCH_MOUSEID) {
|
||||
Mouse::feed(BUTTON_SCROLLWHEEL, AppPlatform_sdlbase::GetMouseButtonState(event), Mouse::getX(), Mouse::getY());
|
||||
}
|
||||
break;
|
||||
}
|
||||
case SDL_FINGERDOWN:
|
||||
case SDL_FINGERUP:
|
||||
case SDL_FINGERMOTION: {
|
||||
float x = event.tfinger.x * Minecraft::width;
|
||||
float y = event.tfinger.y * Minecraft::height;
|
||||
handle_touch(x, y, event.type, get_touch_id(event.tfinger.touchId, event.tfinger.fingerId));
|
||||
break;
|
||||
}
|
||||
case SDL_TEXTINPUT:
|
||||
|
|
|
@ -90,6 +90,7 @@ add_library(reminecraftpe-core STATIC
|
|||
client/player/input/MouseTurnInput.cpp
|
||||
client/player/input/KeyboardInput.cpp
|
||||
client/player/input/ITurnInput.cpp
|
||||
client/network/ClientSideNetworkHandler.cpp
|
||||
client/player/input/IBuildInput.cpp
|
||||
client/player/input/IncludeExcludeArea.cpp
|
||||
client/player/input/MouseHandler.cpp
|
||||
|
@ -105,7 +106,6 @@ add_library(reminecraftpe-core STATIC
|
|||
client/player/input/TouchInputHolder.cpp
|
||||
client/player/input/TouchscreenInput_TestFps.cpp
|
||||
client/player/input/UnifiedTurnBuild.cpp
|
||||
client/network/ClientSideNetworkHandler.cpp
|
||||
network/packets/UpdateBlockPacket.cpp
|
||||
network/packets/RequestChunkPacket.cpp
|
||||
network/packets/PlayerEquipmentPacket.cpp
|
||||
|
|
Loading…
Reference in a new issue