2014-09-13 02:06:13 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 02:06:13 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-08-03 18:55:58 +02:00
|
|
|
#include "core/core.h"
|
2016-04-11 14:38:42 +02:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2017-01-20 21:46:39 +01:00
|
|
|
#include "core/hle/service/hid/hid.h"
|
2017-05-28 01:31:42 +02:00
|
|
|
#include "core/settings.h"
|
2018-08-02 02:59:42 +02:00
|
|
|
#include "video_core/renderer_base.h"
|
2016-04-11 14:38:42 +02:00
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
namespace Settings {
|
|
|
|
|
2018-11-03 17:55:39 +01:00
|
|
|
namespace NativeButton {
|
|
|
|
const std::array<const char*, NumButtons> mapping = {{
|
|
|
|
"button_a",
|
|
|
|
"button_b",
|
|
|
|
"button_x",
|
|
|
|
"button_y",
|
|
|
|
"button_lstick",
|
|
|
|
"button_rstick",
|
|
|
|
"button_l",
|
|
|
|
"button_r",
|
|
|
|
"button_zl",
|
|
|
|
"button_zr",
|
|
|
|
"button_plus",
|
|
|
|
"button_minus",
|
|
|
|
"button_dleft",
|
|
|
|
"button_dup",
|
|
|
|
"button_dright",
|
|
|
|
"button_ddown",
|
|
|
|
"button_lstick_left",
|
|
|
|
"button_lstick_up",
|
|
|
|
"button_lstick_right",
|
|
|
|
"button_lstick_down",
|
|
|
|
"button_rstick_left",
|
|
|
|
"button_rstick_up",
|
|
|
|
"button_rstick_right",
|
|
|
|
"button_rstick_down",
|
|
|
|
"button_sl",
|
|
|
|
"button_sr",
|
|
|
|
"button_home",
|
|
|
|
"button_screenshot",
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace NativeAnalog {
|
|
|
|
const std::array<const char*, NumAnalogs> mapping = {{
|
|
|
|
"lstick",
|
|
|
|
"rstick",
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace NativeMouseButton {
|
|
|
|
const std::array<const char*, NumMouseButtons> mapping = {{
|
|
|
|
"left",
|
|
|
|
"right",
|
|
|
|
"middle",
|
|
|
|
"forward",
|
|
|
|
"back",
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
Values values = {};
|
|
|
|
|
2016-04-11 14:38:42 +02:00
|
|
|
void Apply() {
|
2017-01-31 18:44:23 +01:00
|
|
|
GDBStub::SetServerPort(values.gdbstub_port);
|
2016-04-11 14:38:42 +02:00
|
|
|
GDBStub::ToggleServer(values.use_gdbstub);
|
|
|
|
|
2018-08-03 18:55:58 +02:00
|
|
|
auto& system_instance = Core::System::GetInstance();
|
|
|
|
if (system_instance.IsPoweredOn()) {
|
2018-08-11 00:39:37 +02:00
|
|
|
system_instance.Renderer().RefreshBaseSettings();
|
2016-05-03 08:07:17 +02:00
|
|
|
}
|
|
|
|
|
2017-01-20 21:46:39 +01:00
|
|
|
Service::HID::ReloadInputDevices();
|
2014-09-13 02:06:13 +02:00
|
|
|
}
|
2016-04-11 14:38:42 +02:00
|
|
|
|
2017-08-25 23:53:07 +02:00
|
|
|
} // namespace Settings
|