1
0
mirror of https://github.com/bsnes-emu/bsnes.git synced 2025-04-30 23:54:41 +02:00
byuu 903d1e4012 v107.8
* GB: integrated SameBoy v0.12.1 by Lior Halphon
* SFC: added HG51B169 (Cx4) math tables into bsnes binary
2019-07-17 21:11:46 +09:00

69 lines
1.7 KiB
C++
Executable File

#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/poll.h>
#include <fcntl.h>
#include <libudev.h>
#include <linux/types.h>
#include <linux/input.h>
#include "keyboard/xlib.cpp"
#include "mouse/xlib.cpp"
#include "joypad/udev.cpp"
struct InputUdev : InputDriver {
InputUdev& self = *this;
InputUdev(Input& super) : InputDriver(super), keyboard(super), mouse(super), joypad(super) {}
~InputUdev() { terminate(); }
auto create() -> bool override {
return initialize();
}
auto driver() -> string override { return "udev"; }
auto ready() -> bool { return isReady; }
auto hasContext() -> bool override { return true; }
auto setContext(uintptr context) -> bool override { return initialize(); }
auto acquired() -> bool override { return mouse.acquired(); }
auto acquire() -> bool override { return mouse.acquire(); }
auto release() -> bool override { return mouse.release(); }
auto poll() -> vector<shared_pointer<HID::Device>> override {
vector<shared_pointer<HID::Device>> devices;
keyboard.poll(devices);
mouse.poll(devices);
joypad.poll(devices);
return devices;
}
auto rumble(uint64_t id, bool enable) -> bool override {
return joypad.rumble(id, enable);
}
private:
auto initialize() -> bool {
terminate();
if(!self.context) return false;
if(!keyboard.initialize()) return false;
if(!mouse.initialize(self.context)) return false;
if(!joypad.initialize()) return false;
return isReady = true;
}
auto terminate() -> void {
isReady = false;
keyboard.terminate();
mouse.terminate();
joypad.terminate();
}
bool isReady = false;
InputKeyboardXlib keyboard;
InputMouseXlib mouse;
InputJoypadUdev joypad;
};