mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-06 19:11:39 +12:00
[Emulator] Handle left click
This commit is contained in:
parent
f9f34d564f
commit
5200c10b27
4 changed files with 90 additions and 47 deletions
|
@ -49,10 +49,12 @@ class HIDService {
|
|||
u32 oldButtons; // The previous pad state
|
||||
|
||||
s16 circlePadX, circlePadY; // Circlepad state
|
||||
s16 touchScreenX, touchScreenY; // Touchscreen state
|
||||
|
||||
bool accelerometerEnabled;
|
||||
bool eventsInitialized;
|
||||
bool gyroEnabled;
|
||||
bool touchScreenPressed;
|
||||
|
||||
std::array<std::optional<Handle>, 5> events;
|
||||
|
||||
|
@ -116,4 +118,14 @@ public:
|
|||
std::memset(ptr, 0, 0x2b0);
|
||||
}
|
||||
}
|
||||
|
||||
void setTouchScreenPress(u16 x, u16 y) {
|
||||
touchScreenX = x;
|
||||
touchScreenY = y;
|
||||
touchScreenPressed = true;
|
||||
}
|
||||
|
||||
void releaseTouchScreen() {
|
||||
touchScreenPressed = false;
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue