yuzu/src/input_common/keyboard.cpp

119 lines
3.1 KiB
C++
Raw Normal View History

2017-01-21 10:53:03 +01:00
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <atomic>
#include <list>
#include <mutex>
#include <utility>
2017-01-21 10:53:03 +01:00
#include "input_common/keyboard.h"
namespace InputCommon {
class KeyButton final : public Input::ButtonDevice {
public:
explicit KeyButton(std::shared_ptr<KeyButtonList> key_button_list_, bool toggle_)
: key_button_list(std::move(key_button_list_)), toggle(toggle_) {}
2017-01-21 10:53:03 +01:00
~KeyButton() override;
2017-01-21 10:53:03 +01:00
bool GetStatus() const override {
if (toggle) {
return toggled_status.load();
}
2017-01-21 10:53:03 +01:00
return status.load();
}
void ToggleButton() {
if (!lock) {
lock = true;
toggled_status.store(!toggled_status.load());
}
}
void UnlockButton() {
lock = false;
}
2017-01-21 10:53:03 +01:00
friend class KeyButtonList;
private:
std::shared_ptr<KeyButtonList> key_button_list;
std::atomic<bool> status{false};
std::atomic<bool> toggled_status{false};
bool lock = {};
const bool toggle;
2017-01-21 10:53:03 +01:00
};
struct KeyButtonPair {
int key_code;
KeyButton* key_button;
};
class KeyButtonList {
public:
void AddKeyButton(int key_code, KeyButton* key_button) {
std::lock_guard guard{mutex};
2017-01-21 10:53:03 +01:00
list.push_back(KeyButtonPair{key_code, key_button});
}
void RemoveKeyButton(const KeyButton* key_button) {
std::lock_guard guard{mutex};
2017-01-21 10:53:03 +01:00
list.remove_if(
[key_button](const KeyButtonPair& pair) { return pair.key_button == key_button; });
}
void ChangeKeyStatus(int key_code, bool pressed) {
std::lock_guard guard{mutex};
2017-01-21 10:53:03 +01:00
for (const KeyButtonPair& pair : list) {
if (pair.key_code == key_code) {
2017-01-21 10:53:03 +01:00
pair.key_button->status.store(pressed);
if (pressed) {
pair.key_button->ToggleButton();
} else {
pair.key_button->UnlockButton();
}
}
2017-01-21 10:53:03 +01:00
}
}
void ChangeAllKeyStatus(bool pressed) {
std::lock_guard guard{mutex};
for (const KeyButtonPair& pair : list) {
pair.key_button->status.store(pressed);
}
}
2017-01-21 10:53:03 +01:00
private:
std::mutex mutex;
std::list<KeyButtonPair> list;
};
Keyboard::Keyboard() : key_button_list{std::make_shared<KeyButtonList>()} {}
KeyButton::~KeyButton() {
key_button_list->RemoveKeyButton(this);
}
std::unique_ptr<Input::ButtonDevice> Keyboard::Create(const Common::ParamPackage& params) {
const int key_code = params.Get("code", 0);
const bool toggle = params.Get("toggle", false);
std::unique_ptr<KeyButton> button = std::make_unique<KeyButton>(key_button_list, toggle);
2017-01-21 10:53:03 +01:00
key_button_list->AddKeyButton(key_code, button.get());
return button;
2017-01-21 10:53:03 +01:00
}
void Keyboard::PressKey(int key_code) {
key_button_list->ChangeKeyStatus(key_code, true);
}
void Keyboard::ReleaseKey(int key_code) {
key_button_list->ChangeKeyStatus(key_code, false);
}
void Keyboard::ReleaseAllKeys() {
key_button_list->ChangeAllKeyStatus(false);
}
2017-01-21 10:53:03 +01:00
} // namespace InputCommon