2016-05-15 10:48:16 +00:00
|
|
|
#include <sys/ipc.h>
|
|
|
|
#include <sys/shm.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
|
|
|
#include "keyboard/xlib.cpp"
|
|
|
|
#include "mouse/xlib.cpp"
|
|
|
|
|
|
|
|
struct InputXlib : Input {
|
|
|
|
InputKeyboardXlib xlibKeyboard;
|
|
|
|
InputMouseXlib xlibMouse;
|
|
|
|
InputXlib() : xlibKeyboard(*this), xlibMouse(*this) {}
|
|
|
|
~InputXlib() { term(); }
|
|
|
|
|
|
|
|
struct Settings {
|
2016-07-09 07:51:11 +00:00
|
|
|
uintptr_t handle = 0;
|
2016-05-15 10:48:16 +00:00
|
|
|
} settings;
|
|
|
|
|
|
|
|
auto cap(const string& name) -> bool {
|
|
|
|
if(name == Input::KeyboardSupport) return true;
|
|
|
|
if(name == Input::MouseSupport) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto get(const string& name) -> any {
|
|
|
|
if(name == Input::Handle) return (uintptr_t)settings.handle;
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
auto set(const string& name, const any& value) -> bool {
|
2016-07-09 07:51:11 +00:00
|
|
|
if(name == Input::Handle && value.is<uintptr_t>()) {
|
|
|
|
settings.handle = value.get<uintptr_t>();
|
2016-05-15 10:48:16 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto acquire() -> bool {
|
|
|
|
return xlibMouse.acquire();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto release() -> bool {
|
|
|
|
return xlibMouse.release();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto acquired() -> bool {
|
|
|
|
return xlibMouse.acquired();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto poll() -> vector<shared_pointer<HID::Device>> {
|
|
|
|
vector<shared_pointer<HID::Device>> devices;
|
|
|
|
xlibKeyboard.poll(devices);
|
|
|
|
xlibMouse.poll(devices);
|
|
|
|
return devices;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto rumble(uint64_t id, bool enable) -> bool {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto init() -> bool {
|
|
|
|
if(!xlibKeyboard.init()) return false;
|
|
|
|
if(!xlibMouse.init(settings.handle)) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto term() -> void {
|
|
|
|
xlibKeyboard.term();
|
|
|
|
xlibMouse.term();
|
|
|
|
}
|
|
|
|
};
|