#include "dinput.h" static int gTouchMouseLastX = 0; static int gTouchMouseLastY = 0; static int gTouchMouseDeltaX = 0; static int gTouchMouseDeltaY = 0; static int gTouchFingers = 0; static unsigned int gTouchGestureLastTouchDownTimestamp = 0; static unsigned int gTouchGestureLastTouchUpTimestamp = 0; static int gTouchGestureTaps = 0; static bool gTouchGestureHandled = false; extern int screenGetWidth(); extern int screenGetHeight(); // 0x4E0400 bool directInputInit() { if (SDL_InitSubSystem(SDL_INIT_EVENTS) != 0) { return false; } if (!mouseDeviceInit()) { goto err; } if (!keyboardDeviceInit()) { goto err; } return true; err: directInputFree(); return false; } // 0x4E0478 void directInputFree() { SDL_QuitSubSystem(SDL_INIT_EVENTS); } // 0x4E04E8 bool mouseDeviceAcquire() { return true; } // 0x4E0514 bool mouseDeviceUnacquire() { return true; } // 0x4E053C bool mouseDeviceGetData(MouseData* mouseState) { #if __ANDROID__ mouseState->x = gTouchMouseDeltaX; mouseState->y = gTouchMouseDeltaY; mouseState->buttons[0] = 0; mouseState->buttons[1] = 0; gTouchMouseDeltaX = 0; gTouchMouseDeltaY = 0; if (gTouchFingers == 0) { if (SDL_GetTicks() - gTouchGestureLastTouchUpTimestamp > 150) { if (!gTouchGestureHandled) { if (gTouchGestureTaps == 2) { mouseState->buttons[0] = 1; gTouchGestureHandled = true; } else if (gTouchGestureTaps == 3) { mouseState->buttons[1] = 1; gTouchGestureHandled = true; } } } } else if (gTouchFingers == 1) { if (SDL_GetTicks() - gTouchGestureLastTouchDownTimestamp > 150) { if (gTouchGestureTaps == 1) { mouseState->buttons[0] = 1; gTouchGestureHandled = true; } else if (gTouchGestureTaps == 2) { mouseState->buttons[1] = 1; gTouchGestureHandled = true; } } } #else Uint32 buttons = SDL_GetRelativeMouseState(&(mouseState->x), &(mouseState->y)); mouseState->buttons[0] = (buttons & SDL_BUTTON(SDL_BUTTON_LEFT)) != 0; mouseState->buttons[1] = (buttons & SDL_BUTTON(SDL_BUTTON_RIGHT)) != 0; #endif return true; } // 0x4E05A8 bool keyboardDeviceAcquire() { return true; } // 0x4E05D4 bool keyboardDeviceUnacquire() { return true; } // 0x4E05FC bool keyboardDeviceReset() { SDL_FlushEvents(SDL_KEYDOWN, SDL_TEXTINPUT); return true; } // 0x4E0650 bool keyboardDeviceGetData(KeyboardData* keyboardData) { return true; } // 0x4E070C bool mouseDeviceInit() { return SDL_SetRelativeMouseMode(SDL_TRUE) == 0; } // 0x4E078C void mouseDeviceFree() { } // 0x4E07B8 bool keyboardDeviceInit() { return true; } // 0x4E0874 void keyboardDeviceFree() { } void handleTouchFingerEvent(SDL_TouchFingerEvent* event) { int windowWidth = screenGetWidth(); int windowHeight = screenGetHeight(); if (event->type == SDL_FINGERDOWN) { gTouchFingers++; gTouchMouseLastX = (int)(event->x * windowWidth); gTouchMouseLastY = (int)(event->y * windowHeight); gTouchMouseDeltaX = 0; gTouchMouseDeltaY = 0; if (event->timestamp - gTouchGestureLastTouchDownTimestamp > 250) { gTouchGestureTaps = 0; gTouchGestureHandled = false; } gTouchGestureLastTouchDownTimestamp = event->timestamp; } else if (event->type == SDL_FINGERMOTION) { int prevX = gTouchMouseLastX; int prevY = gTouchMouseLastY; gTouchMouseLastX = (int)(event->x * windowWidth); gTouchMouseLastY = (int)(event->y * windowHeight); gTouchMouseDeltaX += gTouchMouseLastX - prevX; gTouchMouseDeltaY += gTouchMouseLastY - prevY; } else if (event->type == SDL_FINGERUP) { gTouchFingers--; int prevX = gTouchMouseLastX; int prevY = gTouchMouseLastY; gTouchMouseLastX = (int)(event->x * windowWidth); gTouchMouseLastY = (int)(event->y * windowHeight); gTouchMouseDeltaX += gTouchMouseLastX - prevX; gTouchMouseDeltaY += gTouchMouseLastY - prevY; gTouchGestureTaps++; gTouchGestureLastTouchUpTimestamp = event->timestamp; } }