Merge pull request #47988 from madmiraal/fix-46754-3.x
[3.x] Avoid creating joy_names map entries when using Map operator[]
This commit is contained in:
commit
eaeb650367
1 changed files with 15 additions and 8 deletions
|
@ -1216,9 +1216,10 @@ void InputDefault::add_joy_mapping(String p_mapping, bool p_update_existing) {
|
||||||
if (p_update_existing) {
|
if (p_update_existing) {
|
||||||
Vector<String> entry = p_mapping.split(",");
|
Vector<String> entry = p_mapping.split(",");
|
||||||
String uid = entry[0];
|
String uid = entry[0];
|
||||||
for (int i = 0; i < joy_names.size(); i++) {
|
for (Map<int, Joypad>::Element *E = joy_names.front(); E; E = E->next()) {
|
||||||
if (uid == joy_names[i].uid) {
|
Joypad &joy = E->get();
|
||||||
joy_names[i].mapping = map_db.size() - 1;
|
if (joy.uid == uid) {
|
||||||
|
joy.mapping = map_db.size() - 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1230,9 +1231,10 @@ void InputDefault::remove_joy_mapping(String p_guid) {
|
||||||
map_db.remove(i);
|
map_db.remove(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (int i = 0; i < joy_names.size(); i++) {
|
for (Map<int, Joypad>::Element *E = joy_names.front(); E; E = E->next()) {
|
||||||
if (joy_names[i].uid == p_guid) {
|
Joypad &joy = E->get();
|
||||||
joy_names[i].mapping = -1;
|
if (joy.uid == p_guid) {
|
||||||
|
joy.mapping = -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1259,8 +1261,13 @@ String InputDefault::get_joy_guid(int p_device) const {
|
||||||
|
|
||||||
//platforms that use the remapping system can override and call to these ones
|
//platforms that use the remapping system can override and call to these ones
|
||||||
bool InputDefault::is_joy_mapped(int p_device) {
|
bool InputDefault::is_joy_mapped(int p_device) {
|
||||||
int mapping = joy_names[p_device].mapping;
|
if (joy_names.has(p_device)) {
|
||||||
return mapping != -1 ? (mapping != fallback_mapping) : false;
|
int mapping = joy_names[p_device].mapping;
|
||||||
|
if (mapping != -1 && mapping != fallback_mapping) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
String InputDefault::get_joy_guid_remapped(int p_device) const {
|
String InputDefault::get_joy_guid_remapped(int p_device) const {
|
||||||
|
|
Loading…
Reference in a new issue