2017-03-05 15:47:28 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* input_action.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-08 00:11:42 +02:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2017-03-05 15:47:28 +01:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2016-06-05 02:31:29 +02:00
|
|
|
#include "input_action.h"
|
|
|
|
#include "os/keyboard.h"
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
void ShortCut::set_shortcut(const Ref<InputEvent> &p_shortcut) {
|
2016-06-05 02:31:29 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
shortcut = p_shortcut;
|
2016-06-05 02:31:29 +02:00
|
|
|
emit_changed();
|
|
|
|
}
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
Ref<InputEvent> ShortCut::get_shortcut() const {
|
2016-06-05 02:31:29 +02:00
|
|
|
|
|
|
|
return shortcut;
|
|
|
|
}
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
bool ShortCut::is_shortcut(const Ref<InputEvent> &p_event) const {
|
2016-06-05 02:31:29 +02:00
|
|
|
|
2017-06-23 00:57:59 +02:00
|
|
|
return shortcut.is_valid() && shortcut->shortcut_match(p_event);
|
2016-06-05 02:31:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
String ShortCut::get_as_text() const {
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (shortcut.is_valid())
|
|
|
|
return shortcut->as_text();
|
|
|
|
else
|
|
|
|
return "None";
|
|
|
|
#if 0
|
2017-03-05 16:44:50 +01:00
|
|
|
switch (shortcut.type) {
|
2016-06-05 02:31:29 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
case Ref<InputEvent>::NONE: {
|
2016-06-05 02:31:29 +02:00
|
|
|
|
|
|
|
return "None";
|
|
|
|
} break;
|
2017-05-20 17:38:03 +02:00
|
|
|
case Ref<InputEvent>::KEY: {
|
2016-06-05 02:31:29 +02:00
|
|
|
|
|
|
|
String str;
|
2017-05-20 17:38:03 +02:00
|
|
|
if (shortcut->get_shift())
|
2017-03-05 16:44:50 +01:00
|
|
|
str += RTR("Shift+");
|
2017-05-20 17:38:03 +02:00
|
|
|
if (shortcut->get_alt())
|
2017-03-05 16:44:50 +01:00
|
|
|
str += RTR("Alt+");
|
2017-05-20 17:38:03 +02:00
|
|
|
if (shortcut->get_control())
|
2017-03-05 16:44:50 +01:00
|
|
|
str += RTR("Ctrl+");
|
2017-05-20 17:38:03 +02:00
|
|
|
if (shortcut->get_metakey())
|
2017-03-05 16:44:50 +01:00
|
|
|
str += RTR("Meta+");
|
2016-06-05 02:31:29 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
str += keycode_get_string(shortcut->get_scancode()).capitalize();
|
2016-06-05 02:31:29 +02:00
|
|
|
|
|
|
|
return str;
|
|
|
|
} break;
|
2017-05-20 17:38:03 +02:00
|
|
|
case Ref<InputEvent>::JOYPAD_BUTTON: {
|
2016-06-05 02:31:29 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
String str = RTR("Device") + " " + itos(shortcut.device) + ", " + RTR("Button") + " " + itos(shortcut.joy_button->get_button_index());
|
2017-03-05 16:44:50 +01:00
|
|
|
str += ".";
|
2016-06-05 02:31:29 +02:00
|
|
|
|
|
|
|
return str;
|
|
|
|
} break;
|
2017-05-20 17:38:03 +02:00
|
|
|
case Ref<InputEvent>::MOUSE_BUTTON: {
|
2016-06-05 02:31:29 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String str = RTR("Device") + " " + itos(shortcut.device) + ", ";
|
2017-05-20 17:38:03 +02:00
|
|
|
switch (shortcut->get_button_index()) {
|
2017-03-05 16:44:50 +01:00
|
|
|
case BUTTON_LEFT: str += RTR("Left Button."); break;
|
|
|
|
case BUTTON_RIGHT: str += RTR("Right Button."); break;
|
|
|
|
case BUTTON_MIDDLE: str += RTR("Middle Button."); break;
|
|
|
|
case BUTTON_WHEEL_UP: str += RTR("Wheel Up."); break;
|
|
|
|
case BUTTON_WHEEL_DOWN: str += RTR("Wheel Down."); break;
|
2017-05-20 17:38:03 +02:00
|
|
|
default: str += RTR("Button") + " " + itos(shortcut->get_button_index()) + ".";
|
2016-06-05 02:31:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
} break;
|
2017-05-20 17:38:03 +02:00
|
|
|
case Ref<InputEvent>::JOYPAD_MOTION: {
|
2016-06-05 02:31:29 +02:00
|
|
|
|
|
|
|
int ax = shortcut.joy_motion.axis;
|
2017-03-05 16:44:50 +01:00
|
|
|
String str = RTR("Device") + " " + itos(shortcut.device) + ", " + RTR("Axis") + " " + itos(ax) + ".";
|
2016-06-05 02:31:29 +02:00
|
|
|
|
|
|
|
return str;
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
2017-05-20 17:38:03 +02:00
|
|
|
#endif
|
2016-06-05 02:31:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ShortCut::is_valid() const {
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
return shortcut.is_valid();
|
2016-06-05 02:31:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ShortCut::_bind_methods() {
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_shortcut", "event:InputEvent"), &ShortCut::set_shortcut);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_shortcut:InputEvent"), &ShortCut::get_shortcut);
|
2016-06-05 02:31:29 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("is_valid"), &ShortCut::is_valid);
|
2016-06-05 02:31:29 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("is_shortcut", "event:InputEvent"), &ShortCut::is_shortcut);
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("get_as_text"), &ShortCut::get_as_text);
|
2016-06-05 02:31:29 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "shortcut", PROPERTY_HINT_RESOURCE_TYPE, "InputEvent"), "set_shortcut", "get_shortcut");
|
2016-06-05 02:31:29 +02:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ShortCut::ShortCut() {
|
2016-06-05 02:31:29 +02:00
|
|
|
}
|