2021-09-20 22:18:40 +00:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
2017-01-21 09:53:03 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2021-09-20 22:18:40 +00:00
|
|
|
// Refer to the license.txt file included
|
2017-01-21 09:53:03 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-09-20 22:18:40 +00:00
|
|
|
#include "input_common/input_engine.h"
|
2017-01-21 09:53:03 +00:00
|
|
|
|
|
|
|
namespace InputCommon {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A button device factory representing a keyboard. It receives keyboard events and forward them
|
|
|
|
* to all button devices it created.
|
|
|
|
*/
|
2021-09-20 22:18:40 +00:00
|
|
|
class Keyboard final : public InputCommon::InputEngine {
|
2017-01-21 09:53:03 +00:00
|
|
|
public:
|
2021-09-20 22:18:40 +00:00
|
|
|
explicit Keyboard(const std::string& input_engine_);
|
2017-01-21 09:53:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the status of all buttons bound with the key to pressed
|
|
|
|
* @param key_code the code of the key to press
|
|
|
|
*/
|
|
|
|
void PressKey(int key_code);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the status of all buttons bound with the key to released
|
|
|
|
* @param key_code the code of the key to release
|
|
|
|
*/
|
|
|
|
void ReleaseKey(int key_code);
|
|
|
|
|
2017-03-17 19:41:25 +00:00
|
|
|
void ReleaseAllKeys();
|
|
|
|
|
2021-09-20 22:18:40 +00:00
|
|
|
/// Used for automapping features
|
|
|
|
std::vector<Common::ParamPackage> GetInputDevices() const override;
|
2017-01-21 09:53:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace InputCommon
|