1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/************************************************************************
*
* Copyright (C) 2022-2025 IRCAD France
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#include "action.hpp"
#include <core/com/signal.hxx>
#include <core/ptree.hpp>
namespace sight::module::ui
{
//------------------------------------------------------------------------------
void action::configuring()
{
this->initialize();
const auto config = this->get_config();
m_sync = core::ptree::get_value(config, "sync", m_sync);
if(const auto& parameter = config.get_child_optional("parameter"); parameter)
{
// Convert to std::optional and check that the key is present
const auto& key = parameter->get_optional<std::string>("<xmlattr>.key");
SIGHT_THROW_IF("Parameter key is mandatory if a action must emit a parameterChanged signal.", !key);
m_key = std::make_optional(*key);
// Convert to std::optional.
const auto& clicked = parameter->get_optional<std::string>("<xmlattr>.clicked");
m_clicked = clicked ? std::make_optional(*clicked) : std::nullopt;
const auto& checked = parameter->get_optional<std::string>("<xmlattr>.checked");
m_checked = checked ? std::make_optional(*checked) : std::nullopt;
const auto& unchecked = parameter->get_optional<std::string>("<xmlattr>.unchecked");
m_unchecked = unchecked ? std::make_optional(*unchecked) : std::nullopt;
}
m_joystick_alias = sight::io::joystick::interactor::to_joystick(config.get<std::string>("joystick", ""));
}
//-----------------------------------------------------------------------------
void action::starting()
{
this->action_service_starting();
if(m_joystick_alias != sight::io::joystick::joystick_t::unknown)
{
this->start_listening_joystick();
}
}
//-----------------------------------------------------------------------------
void action::stopping()
{
this->action_service_stopping();
if(m_joystick_alias != sight::io::joystick::joystick_t::unknown)
{
this->stop_listening_joystick();
}
}
//-----------------------------------------------------------------------------
void action::updating()
{
if(this->confirm_action())
{
if(m_sync)
{
m_clicked_sig->emit();
}
else
{
m_clicked_sig->async_emit();
}
if(m_key)
{
const bool is_checked = this->checked();
if(m_sync)
{
m_parameter_changed_sig->emit(
m_clicked
? *m_clicked
: is_checked && m_checked
? *m_checked
: !is_checked && m_unchecked
? *m_unchecked
: sight::ui::parameter_t(is_checked),
*m_key
);
}
else
{
m_parameter_changed_sig->async_emit(
m_clicked
? *m_clicked
: is_checked && m_checked
? *m_checked
: !is_checked && m_unchecked
? *m_unchecked
: sight::ui::parameter_t(is_checked),
*m_key
);
}
}
}
}
//-----------------------------------------------------------------------------
void action::joystick_axis_direction_event(const sight::io::joystick::axis_direction_event& _event)
{
if(_event.device->alias == m_joystick_alias)
{
if(_event.axis_alias == sight::io::joystick::axis_t::tz and _event.value
== sight::io::joystick::axis_direction_event::direction_t::backward)
{
this->updating();
}
}
}
//-----------------------------------------------------------------------------
} // namespace sight::module::ui
|