mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-08 12:39:49 -06:00
113 lines
5.1 KiB
C++
113 lines
5.1 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2018 *
|
|
* *
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this *
|
|
* software and associated documentation files (the "Software"), to deal in the Software *
|
|
* without restriction, including without limitation the rights to use, copy, modify, *
|
|
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to *
|
|
* permit persons to whom the Software is furnished to do so, subject to the following *
|
|
* conditions: *
|
|
* *
|
|
* The above copyright notice and this permission notice shall be included in all copies *
|
|
* or substantial portions of the Software. *
|
|
* *
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, *
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A *
|
|
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT *
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF *
|
|
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE *
|
|
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
|
|
****************************************************************************************/
|
|
|
|
#include <modules/server/include/topics/shortcuttopic.h>
|
|
|
|
#include <modules/server/include/connection.h>
|
|
#include <openspace/engine/globals.h>
|
|
#include <openspace/interaction/shortcutmanager.h>
|
|
#include <openspace/interaction/keybindingmanager.h>
|
|
|
|
namespace {
|
|
constexpr const char* EventKey = "event";
|
|
constexpr const char* StartSubscription = "start_subscription";
|
|
constexpr const char* StopSubscription = "stop_subscription";
|
|
} // namespace
|
|
|
|
using nlohmann::json;
|
|
|
|
namespace openspace {
|
|
|
|
bool ShortcutTopic::isDone() const {
|
|
return true;
|
|
}
|
|
|
|
std::vector<nlohmann::json> ShortcutTopic::shortcutsJson() const {
|
|
using ShortcutInformation = interaction::ShortcutManager::ShortcutInformation;
|
|
|
|
const std::vector<ShortcutInformation>& shortcuts =
|
|
global::shortcutManager.shortcuts();
|
|
|
|
std::vector<nlohmann::json> json;
|
|
for (const ShortcutInformation& shortcut : shortcuts) {
|
|
nlohmann::json shortcutJson = {
|
|
{ "name", shortcut.name },
|
|
{ "script", shortcut.script },
|
|
{ "synchronization", static_cast<bool>(shortcut.synchronization) },
|
|
{ "documentation", shortcut.documentation },
|
|
{ "guiPath", shortcut.guiPath },
|
|
};
|
|
json.push_back(shortcutJson);
|
|
}
|
|
|
|
using KeyInformation = interaction::KeybindingManager::KeyInformation;
|
|
|
|
const std::multimap<KeyWithModifier, KeyInformation>& keyBindings =
|
|
global::keybindingManager.keyBindings();
|
|
|
|
for (const std::pair<KeyWithModifier, KeyInformation>& keyBinding : keyBindings) {
|
|
const KeyWithModifier& k = keyBinding.first;
|
|
const KeyInformation& info = keyBinding.second;
|
|
|
|
nlohmann::json shortcutJson = {
|
|
{ "key", ghoul::to_string(k.key) },
|
|
{ "modifiers",
|
|
{
|
|
{ "shift" , hasKeyModifier(k.modifier, KeyModifier::Shift) },
|
|
{ "control" , hasKeyModifier(k.modifier, KeyModifier::Control) },
|
|
{ "alt" , hasKeyModifier(k.modifier, KeyModifier::Alt) },
|
|
{ "super" , hasKeyModifier(k.modifier, KeyModifier::Super) }
|
|
}
|
|
},
|
|
{ "name", info.name },
|
|
{ "script", info.command },
|
|
{ "synchronization", static_cast<bool>(info.synchronization) },
|
|
{ "documentation", info.documentation },
|
|
{ "guiPath", info.guiPath },
|
|
};
|
|
json.push_back(shortcutJson);
|
|
}
|
|
return json;
|
|
}
|
|
|
|
void ShortcutTopic::sendData() const {
|
|
nlohmann::json data = { {"shortcuts", shortcutsJson()} };
|
|
_connection->sendJson(wrappedPayload(data));
|
|
}
|
|
|
|
void ShortcutTopic::handleJson(const nlohmann::json& input) {
|
|
const std::string& event = input.at(EventKey).get<std::string>();
|
|
if (event == StartSubscription) {
|
|
// TODO: Subscribe to shortcuts and keybindings
|
|
// shortcutManager.subscribe(); ...
|
|
} else if (event == StopSubscription) {
|
|
// TODO: Unsubscribe to shortcuts and keybindings
|
|
// shortcutManager.unsubscribe(); ...
|
|
return;
|
|
}
|
|
sendData();
|
|
}
|
|
|
|
} // namespace openspace
|