mirror of
https://github.com/Relintai/ui_extensions.git
synced 2024-11-14 10:27:48 +01:00
65 lines
2.2 KiB
C++
65 lines
2.2 KiB
C++
/*
|
|
Copyright (c) 2019-2020 Péter Magyar
|
|
|
|
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 "bs_input_event_key.h"
|
|
|
|
void BSInputEventKey::from_input_event_key(const Ref<InputEventKey> event) {
|
|
set_device(event->get_device());
|
|
|
|
set_shift(event->get_shift());
|
|
set_alt(event->get_alt());
|
|
set_control(event->get_control());
|
|
set_metakey(event->get_metakey());
|
|
set_command(event->get_command());
|
|
|
|
set_pressed(event->is_pressed());
|
|
set_scancode(event->get_scancode());
|
|
set_unicode(event->get_unicode());
|
|
set_echo(event->is_echo());
|
|
}
|
|
|
|
bool BSInputEventKey::action_match(const Ref<InputEvent> &p_event, bool *p_pressed, float *p_strength, float p_deadzone) const {
|
|
|
|
Ref<InputEventKey> key = p_event;
|
|
if (key.is_null())
|
|
return false;
|
|
|
|
uint32_t code = get_scancode_with_modifiers();
|
|
uint32_t event_code = key->get_scancode_with_modifiers();
|
|
|
|
bool match = code == event_code;
|
|
if (match) {
|
|
if (p_pressed != NULL)
|
|
*p_pressed = key->is_pressed();
|
|
if (p_strength != NULL)
|
|
*p_strength = (p_pressed != NULL && *p_pressed) ? 1.0f : 0.0f;
|
|
}
|
|
return match;
|
|
}
|
|
|
|
BSInputEventKey::BSInputEventKey() {
|
|
}
|
|
|
|
void BSInputEventKey::_bind_methods() {
|
|
ClassDB::bind_method(D_METHOD("from_input_event_key", "event"), &BSInputEventKey::from_input_event_key);
|
|
}
|