godot/core/input_map.cpp

293 lines
8.7 KiB
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* input_map.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
2014-02-10 02:10:30 +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. */
/*************************************************************************/
2014-02-10 02:10:30 +01:00
#include "input_map.h"
#include "os/keyboard.h"
#include "project_settings.h"
2014-02-10 02:10:30 +01:00
InputMap *InputMap::singleton = NULL;
2014-02-10 02:10:30 +01:00
2014-04-24 03:48:16 +02:00
void InputMap::_bind_methods() {
ClassDB::bind_method(D_METHOD("has_action", "action"), &InputMap::has_action);
ClassDB::bind_method(D_METHOD("get_actions"), &InputMap::_get_actions);
ClassDB::bind_method(D_METHOD("add_action", "action"), &InputMap::add_action);
ClassDB::bind_method(D_METHOD("erase_action", "action"), &InputMap::erase_action);
ClassDB::bind_method(D_METHOD("action_add_event", "action", "event"), &InputMap::action_add_event);
ClassDB::bind_method(D_METHOD("action_has_event", "action", "event"), &InputMap::action_has_event);
ClassDB::bind_method(D_METHOD("action_erase_event", "action", "event"), &InputMap::action_erase_event);
ClassDB::bind_method(D_METHOD("get_action_list", "action"), &InputMap::_get_action_list);
ClassDB::bind_method(D_METHOD("event_is_action", "event", "action"), &InputMap::event_is_action);
ClassDB::bind_method(D_METHOD("load_from_globals"), &InputMap::load_from_globals);
2014-04-24 03:48:16 +02:00
}
void InputMap::add_action(const StringName &p_action) {
2014-04-24 03:48:16 +02:00
ERR_FAIL_COND(input_map.has(p_action));
input_map[p_action] = Action();
static int last_id = 1;
input_map[p_action].id = last_id;
2014-02-10 02:10:30 +01:00
last_id++;
}
void InputMap::erase_action(const StringName &p_action) {
2014-02-10 02:10:30 +01:00
ERR_FAIL_COND(!input_map.has(p_action));
2014-02-10 02:10:30 +01:00
input_map.erase(p_action);
}
Array InputMap::_get_actions() {
Array ret;
List<StringName> actions = get_actions();
if (actions.empty())
return ret;
for (const List<StringName>::Element *E = actions.front(); E; E = E->next()) {
ret.push_back(E->get());
}
return ret;
}
List<StringName> InputMap::get_actions() const {
List<StringName> actions = List<StringName>();
if (input_map.empty()) {
return actions;
}
for (Map<StringName, Action>::Element *E = input_map.front(); E; E = E->next()) {
actions.push_back(E->key());
}
return actions;
}
List<Ref<InputEvent> >::Element *InputMap::_find_event(List<Ref<InputEvent> > &p_list, const Ref<InputEvent> &p_event, bool p_action_test) const {
2014-02-10 02:10:30 +01:00
for (List<Ref<InputEvent> >::Element *E = p_list.front(); E; E = E->next()) {
2014-02-10 02:10:30 +01:00
const Ref<InputEvent> e = E->get();
2014-02-10 02:10:30 +01:00
//if (e.type != Ref<InputEvent>::KEY && e.device != p_event.device) -- unsure about the KEY comparison, why is this here?
// continue;
2014-02-10 02:10:30 +01:00
if (e->get_device() != p_event->get_device())
continue;
if (e->action_match(p_event))
2014-02-10 02:10:30 +01:00
return E;
}
return NULL;
}
bool InputMap::has_action(const StringName &p_action) const {
2014-02-10 02:10:30 +01:00
return input_map.has(p_action);
}
void InputMap::action_add_event(const StringName &p_action, const Ref<InputEvent> &p_event) {
2014-02-10 02:10:30 +01:00
ERR_FAIL_COND(p_event.is_null());
ERR_FAIL_COND(!input_map.has(p_action));
if (_find_event(input_map[p_action].inputs, p_event))
2014-02-10 02:10:30 +01:00
return; //already gots
input_map[p_action].inputs.push_back(p_event);
}
bool InputMap::action_has_event(const StringName &p_action, const Ref<InputEvent> &p_event) {
2014-02-10 02:10:30 +01:00
ERR_FAIL_COND_V(!input_map.has(p_action), false);
return (_find_event(input_map[p_action].inputs, p_event) != NULL);
2014-02-10 02:10:30 +01:00
}
void InputMap::action_erase_event(const StringName &p_action, const Ref<InputEvent> &p_event) {
2014-02-10 02:10:30 +01:00
ERR_FAIL_COND(!input_map.has(p_action));
2014-02-10 02:10:30 +01:00
List<Ref<InputEvent> >::Element *E = _find_event(input_map[p_action].inputs, p_event);
2014-02-10 02:10:30 +01:00
if (E)
input_map[p_action].inputs.erase(E);
2014-02-10 02:10:30 +01:00
}
Array InputMap::_get_action_list(const StringName &p_action) {
Array ret;
const List<Ref<InputEvent> > *al = get_action_list(p_action);
if (al) {
for (const List<Ref<InputEvent> >::Element *E = al->front(); E; E = E->next()) {
2017-01-14 18:03:38 +01:00
ret.push_back(E->get());
}
}
return ret;
}
const List<Ref<InputEvent> > *InputMap::get_action_list(const StringName &p_action) {
2014-02-10 02:10:30 +01:00
const Map<StringName, Action>::Element *E = input_map.find(p_action);
2014-02-10 02:10:30 +01:00
if (!E)
return NULL;
return &E->get().inputs;
}
bool InputMap::event_is_action(const Ref<InputEvent> &p_event, const StringName &p_action) const {
2014-02-10 02:10:30 +01:00
Map<StringName, Action>::Element *E = input_map.find(p_action);
if (!E) {
ERR_EXPLAIN("Request for nonexistent InputMap action: " + String(p_action));
ERR_FAIL_COND_V(!E, false);
2014-02-10 02:10:30 +01:00
}
Ref<InputEventAction> iea = p_event;
if (iea.is_valid()) {
return iea->get_action() == p_action;
2014-02-10 02:10:30 +01:00
}
return _find_event(E->get().inputs, p_event, true) != NULL;
2014-02-10 02:10:30 +01:00
}
const Map<StringName, InputMap::Action> &InputMap::get_action_map() const {
return input_map;
}
2014-02-10 02:10:30 +01:00
void InputMap::load_from_globals() {
2017-01-14 18:03:38 +01:00
input_map.clear();
2014-02-10 02:10:30 +01:00
List<PropertyInfo> pinfo;
ProjectSettings::get_singleton()->get_property_list(&pinfo);
2014-02-10 02:10:30 +01:00
for (List<PropertyInfo>::Element *E = pinfo.front(); E; E = E->next()) {
const PropertyInfo &pi = E->get();
2014-02-10 02:10:30 +01:00
if (!pi.name.begins_with("input/"))
continue;
String name = pi.name.substr(pi.name.find("/") + 1, pi.name.length());
2014-02-10 02:10:30 +01:00
add_action(name);
Array va = ProjectSettings::get_singleton()->get(pi.name);
2014-02-10 02:10:30 +01:00
for (int i = 0; i < va.size(); i++) {
2014-02-10 02:10:30 +01:00
Ref<InputEvent> ie = va[i];
if (ie.is_null())
2014-02-10 02:10:30 +01:00
continue;
action_add_event(name, ie);
2014-02-10 02:10:30 +01:00
}
}
}
void InputMap::load_default() {
Ref<InputEventKey> key;
add_action("ui_accept");
key.instance();
key->set_scancode(KEY_ENTER);
action_add_event("ui_accept", key);
key.instance();
key->set_scancode(KEY_KP_ENTER);
action_add_event("ui_accept", key);
key.instance();
key->set_scancode(KEY_SPACE);
action_add_event("ui_accept", key);
add_action("ui_select");
key.instance();
key->set_scancode(KEY_SPACE);
action_add_event("ui_select", key);
add_action("ui_cancel");
key.instance();
key->set_scancode(KEY_ESCAPE);
action_add_event("ui_cancel", key);
add_action("ui_focus_next");
key.instance();
key->set_scancode(KEY_TAB);
action_add_event("ui_focus_next", key);
add_action("ui_focus_prev");
key.instance();
key->set_scancode(KEY_TAB);
key->set_shift(true);
action_add_event("ui_focus_prev", key);
add_action("ui_left");
key.instance();
key->set_scancode(KEY_LEFT);
action_add_event("ui_left", key);
add_action("ui_right");
key.instance();
key->set_scancode(KEY_RIGHT);
action_add_event("ui_right", key);
add_action("ui_up");
key.instance();
key->set_scancode(KEY_UP);
action_add_event("ui_up", key);
add_action("ui_down");
key.instance();
key->set_scancode(KEY_DOWN);
action_add_event("ui_down", key);
add_action("ui_page_up");
key.instance();
key->set_scancode(KEY_PAGEUP);
action_add_event("ui_page_up", key);
add_action("ui_page_down");
key.instance();
key->set_scancode(KEY_PAGEDOWN);
action_add_event("ui_page_down", key);
//set("display/window/handheld/orientation", "landscape");
2014-02-10 02:10:30 +01:00
}
InputMap::InputMap() {
ERR_FAIL_COND(singleton);
singleton = this;
2014-02-10 02:10:30 +01:00
}