Add hydra touch support

This commit is contained in:
offtkp 2023-10-23 14:02:07 +03:00
parent 3ea29de2ee
commit dbacce0c56
2 changed files with 15 additions and 2 deletions

View file

@ -1,7 +1,6 @@
#include <emulator.hpp>
#include <hydra/core.hxx>
#include <renderer_gl/renderer_gl.hpp>
#include <stdexcept>
class HC_GLOBAL HydraCore final : public hydra::IBase, public hydra::IOpenGlRendered, public hydra::IFrontendDriven, public hydra::IInput {
@ -72,6 +71,20 @@ void HydraCore::runFrame() {
int y = !!checkButtonCallback(0, hydra::ButtonType::Analog1Up) - !!checkButtonCallback(0, hydra::ButtonType::Analog1Down);
hid.setCirclepadX(x * 0x9C);
hid.setCirclepadY(y * 0x9C);
u32 touch = checkButtonCallback(0, hydra::ButtonType::Touch);
if (touch != hydra::TOUCH_RELEASED) {
u16 x = touch >> 16;
u16 y = touch;
if (y >= 240 && y <= 480 && x >= 40 && x < 40 + 320) {
hid.setTouchScreenPress(x - 40, y - 240);
} else {
hid.releaseTouchScreen();
}
} else {
hid.releaseTouchScreen();
}
hid.updateInputs(emulator->getTicks());
emulator->runFrame();

@ -1 +1 @@
Subproject commit 5b7b38be0507ae2f4cc7026b3897f3db0b1bbc7e
Subproject commit e4cc6b0fc224583e509bc3472a4c11eafb69c041