2023-04-01 15:20:53 +00:00
|
|
|
/*
|
|
|
|
DingusPPC - The Experimental PowerPC Macintosh emulator
|
|
|
|
Copyright (C) 2018-23 divingkatae and maximum
|
|
|
|
(theweirdo) spatium
|
|
|
|
|
|
|
|
(Contact divingkatae#1017 or powermax#2286 on Discord for more info)
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef EVENT_MANAGER_H
|
|
|
|
#define EVENT_MANAGER_H
|
|
|
|
|
2023-07-27 00:40:32 +00:00
|
|
|
#include <core/coresignal.h>
|
|
|
|
|
2023-04-01 15:20:53 +00:00
|
|
|
#include <cinttypes>
|
|
|
|
|
2023-07-27 00:40:32 +00:00
|
|
|
class WindowEvent {
|
2023-04-01 15:20:53 +00:00
|
|
|
public:
|
2023-07-27 00:40:32 +00:00
|
|
|
WindowEvent() = default;
|
|
|
|
~WindowEvent() = default;
|
|
|
|
|
|
|
|
uint16_t sub_type;
|
|
|
|
uint32_t window_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum : uint32_t {
|
|
|
|
MOUSE_EVENT_MOTION = 1 << 0,
|
|
|
|
MOUSE_EVENT_BUTTON = 1 << 1,
|
2023-08-02 05:43:11 +00:00
|
|
|
KEYBOARD_EVENT_DOWN = 1 << 0,
|
|
|
|
KEYBOARD_EVENT_UP = 1 << 1,
|
2023-04-01 15:20:53 +00:00
|
|
|
};
|
|
|
|
|
2023-07-27 00:40:32 +00:00
|
|
|
class MouseEvent {
|
2023-04-01 15:20:53 +00:00
|
|
|
public:
|
2023-07-27 00:40:32 +00:00
|
|
|
MouseEvent() = default;
|
|
|
|
~MouseEvent() = default;
|
2023-04-01 15:20:53 +00:00
|
|
|
|
2023-07-27 00:40:32 +00:00
|
|
|
uint32_t flags;
|
|
|
|
uint32_t xrel;
|
|
|
|
uint32_t yrel;
|
2023-08-01 21:57:16 +00:00
|
|
|
uint8_t buttons_state;
|
2023-04-01 15:20:53 +00:00
|
|
|
};
|
|
|
|
|
2023-08-02 05:43:11 +00:00
|
|
|
class KeyboardEvent {
|
|
|
|
public:
|
|
|
|
KeyboardEvent() = default;
|
|
|
|
~KeyboardEvent() = default;
|
|
|
|
|
|
|
|
uint32_t flags;
|
|
|
|
uint32_t key;
|
|
|
|
uint16_t keys_state;
|
|
|
|
};
|
|
|
|
|
2023-04-01 15:20:53 +00:00
|
|
|
class EventManager {
|
|
|
|
public:
|
|
|
|
static EventManager* get_instance() {
|
|
|
|
if (!event_manager) {
|
|
|
|
event_manager = new EventManager();
|
|
|
|
}
|
|
|
|
return event_manager;
|
|
|
|
};
|
|
|
|
|
|
|
|
void poll_events();
|
|
|
|
|
2023-07-27 00:40:32 +00:00
|
|
|
template <typename T>
|
|
|
|
void add_window_handler(T *inst, void (T::*func)(const WindowEvent&)) {
|
|
|
|
_window_signal.connect_method(inst, func);
|
|
|
|
}
|
2023-04-01 15:20:53 +00:00
|
|
|
|
2023-07-27 00:40:32 +00:00
|
|
|
template <typename T>
|
|
|
|
void add_mouse_handler(T *inst, void (T::*func)(const MouseEvent&)) {
|
|
|
|
_mouse_signal.connect_method(inst, func);
|
2023-04-01 15:20:53 +00:00
|
|
|
}
|
|
|
|
|
2023-08-02 05:43:11 +00:00
|
|
|
template <typename T>
|
|
|
|
void add_keyboard_handler(T* inst, void (T::*func)(const KeyboardEvent&)) {
|
|
|
|
_keyboard_signal.connect_method(inst, func);
|
|
|
|
}
|
|
|
|
|
2023-08-01 15:21:17 +00:00
|
|
|
template <typename T>
|
|
|
|
void add_post_handler(T *inst, void (T::*func)()) {
|
|
|
|
_post_signal.connect_method(inst, func);
|
|
|
|
}
|
|
|
|
|
2023-04-01 15:20:53 +00:00
|
|
|
private:
|
|
|
|
static EventManager* event_manager;
|
|
|
|
EventManager() {}; // private constructor to implement a singleton
|
|
|
|
|
2023-08-02 05:43:11 +00:00
|
|
|
CoreSignal<const WindowEvent&> _window_signal;
|
|
|
|
CoreSignal<const MouseEvent&> _mouse_signal;
|
|
|
|
CoreSignal<const KeyboardEvent&> _keyboard_signal;
|
|
|
|
CoreSignal<> _post_signal;
|
2023-04-01 15:20:53 +00:00
|
|
|
|
|
|
|
uint64_t events_captured = 0;
|
|
|
|
uint64_t unhandled_events = 0;
|
|
|
|
uint64_t key_downs = 0;
|
|
|
|
uint64_t key_ups = 0;
|
|
|
|
uint64_t mouse_motions = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EVENT_MANAGER_H
|