2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-07-22 14:39:53 +00:00
|
|
|
|
2021-04-14 23:07:40 +00:00
|
|
|
#include "common/settings_input.h"
|
2020-07-22 14:39:53 +00:00
|
|
|
|
|
|
|
namespace Settings {
|
|
|
|
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_sl", "button_sr", "button_home", "button_screenshot",
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace NativeAnalog {
|
|
|
|
const std::array<const char*, NumAnalogs> mapping = {{
|
|
|
|
"lstick",
|
|
|
|
"rstick",
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2020-10-20 17:55:25 +00:00
|
|
|
namespace NativeVibration {
|
|
|
|
const std::array<const char*, NumVibrations> mapping = {{
|
|
|
|
"left_vibration_device",
|
|
|
|
"right_vibration_device",
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace NativeMotion {
|
|
|
|
const std::array<const char*, NumMotions> mapping = {{
|
|
|
|
"motionleft",
|
|
|
|
"motionright",
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:39:53 +00:00
|
|
|
namespace NativeMouseButton {
|
|
|
|
const std::array<const char*, NumMouseButtons> mapping = {{
|
|
|
|
"left",
|
|
|
|
"right",
|
|
|
|
"middle",
|
|
|
|
"forward",
|
|
|
|
"back",
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
} // namespace Settings
|