mirror of
https://github.com/PixlOne/logiops.git
synced 2025-07-13 21:02:43 +08:00
127 lines
4.3 KiB
C++
127 lines
4.3 KiB
C++
/*
|
|
* Copyright 2019-2023 PixlOne
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
#include <actions/KeypressAction.h>
|
|
#include <Device.h>
|
|
#include <InputDevice.h>
|
|
#include <backend/hidpp20/features/ReprogControls.h>
|
|
#include <util/log.h>
|
|
|
|
using namespace logid::actions;
|
|
using namespace logid::backend;
|
|
|
|
const char* KeypressAction::interface_name = "Keypress";
|
|
|
|
KeypressAction::KeypressAction(
|
|
Device* device, config::KeypressAction& config,
|
|
[[maybe_unused]] const std::shared_ptr<ipcgull::node>& parent) :
|
|
Action(device, interface_name, {
|
|
{
|
|
{"GetKeys", {this, &KeypressAction::getKeys, {"keys"}}},
|
|
{"SetKeys", {this, &KeypressAction::setKeys, {"keys"}}}
|
|
},
|
|
{},
|
|
{}
|
|
}), _config(config) {
|
|
_setConfig();
|
|
}
|
|
|
|
void KeypressAction::press() {
|
|
std::shared_lock lock(_config_mutex);
|
|
_pressed = true;
|
|
for (auto& key: _keys)
|
|
_device->virtualInput()->pressKey(key);
|
|
}
|
|
|
|
void KeypressAction::release() {
|
|
std::shared_lock lock(_config_mutex);
|
|
_pressed = false;
|
|
for (auto& key: _keys)
|
|
_device->virtualInput()->releaseKey(key);
|
|
}
|
|
|
|
void KeypressAction::_setConfig() {
|
|
_keys.clear();
|
|
|
|
if (!_config.keys.has_value())
|
|
return;
|
|
|
|
auto& config = _config.keys.value();
|
|
|
|
if (std::holds_alternative<std::string>(config)) {
|
|
const auto& key = std::get<std::string>(config);
|
|
try {
|
|
auto code = _device->virtualInput()->toKeyCode(key);
|
|
_device->virtualInput()->registerKey(code);
|
|
_keys.emplace_back(code);
|
|
} catch (InputDevice::InvalidEventCode& e) {
|
|
logPrintf(WARN, "Invalid keycode %s, skipping.", key.c_str());
|
|
}
|
|
} else if (std::holds_alternative<uint>(_config.keys.value())) {
|
|
const auto& key = std::get<uint>(config);
|
|
_device->virtualInput()->registerKey(key);
|
|
_keys.emplace_back(key);
|
|
} else if (std::holds_alternative<
|
|
std::list<std::variant<uint, std::string>>>(config)) {
|
|
const auto& keys = std::get<
|
|
std::list<std::variant<uint, std::string>>>(config);
|
|
for (const auto& key: keys) {
|
|
if (std::holds_alternative<std::string>(key)) {
|
|
const auto& key_str = std::get<std::string>(key);
|
|
try {
|
|
auto code = _device->virtualInput()->toKeyCode(key_str);
|
|
_device->virtualInput()->registerKey(code);
|
|
_keys.emplace_back(code);
|
|
} catch (InputDevice::InvalidEventCode& e) {
|
|
logPrintf(WARN, "Invalid keycode %s, skipping.",
|
|
key_str.c_str());
|
|
}
|
|
} else if (std::holds_alternative<uint>(key)) {
|
|
auto& code = std::get<uint>(key);
|
|
_device->virtualInput()->registerKey(code);
|
|
_keys.emplace_back(code);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
uint8_t KeypressAction::reprogFlags() const {
|
|
return hidpp20::ReprogControls::TemporaryDiverted;
|
|
}
|
|
|
|
std::vector<std::string> KeypressAction::getKeys() const {
|
|
std::shared_lock lock(_config_mutex);
|
|
std::vector<std::string> ret;
|
|
for (auto& x: _keys)
|
|
ret.push_back(InputDevice::toKeyName(x));
|
|
|
|
return ret;
|
|
}
|
|
|
|
void KeypressAction::setKeys(const std::vector<std::string>& keys) {
|
|
std::unique_lock lock(_config_mutex);
|
|
if (_pressed)
|
|
for (auto& key: _keys)
|
|
_device->virtualInput()->releaseKey(key);
|
|
_config.keys = std::list<std::variant<uint, std::string>>();
|
|
auto& config = std::get<std::list<std::variant<uint, std::string>>>(
|
|
_config.keys.value());
|
|
for (auto& x: keys)
|
|
config.emplace_back(x);
|
|
_setConfig();
|
|
}
|