mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-02 06:40:42 -07:00
a9fc6ef1b2
## Link to GitHub Issue, if one exists n/a ## Description of change Adds support for Polaris Chord ## Testing Tested with XIF:J:A:A:2024122300. IO/ICCA works, game successfully connects to server and is playable.
73 lines
1.6 KiB
C++
73 lines
1.6 KiB
C++
#include "io.h"
|
|
|
|
std::vector<Button> &games::pc::get_buttons() {
|
|
static std::vector<Button> buttons;
|
|
|
|
if (buttons.empty()) {
|
|
buttons = GameAPI::Buttons::getButtons("Polaris Chord");
|
|
|
|
GameAPI::Buttons::sortButtons(
|
|
&buttons,
|
|
"Service",
|
|
"Test",
|
|
"Coin Mech",
|
|
"Button 1",
|
|
"Button 2",
|
|
"Button 3",
|
|
"Button 4",
|
|
"Button 5",
|
|
"Button 6",
|
|
"Button 7",
|
|
"Button 8",
|
|
"Button 9",
|
|
"Button 10",
|
|
"Button 11",
|
|
"Button 12",
|
|
"Fader-L Left",
|
|
"Fader-L Right",
|
|
"Fader-R Left",
|
|
"Fader-R Right",
|
|
"Headphone"
|
|
);
|
|
}
|
|
|
|
return buttons;
|
|
}
|
|
|
|
std::string games::pc::get_buttons_help() {
|
|
return "";
|
|
}
|
|
|
|
std::vector<Analog> &games::pc::get_analogs() {
|
|
static std::vector<Analog> analogs;
|
|
|
|
if (analogs.empty()) {
|
|
analogs = GameAPI::Analogs::getAnalogs("Polaris Chord");
|
|
|
|
GameAPI::Analogs::sortAnalogs(
|
|
&analogs,
|
|
"Fader-L",
|
|
"Fader-R"
|
|
);
|
|
}
|
|
|
|
return analogs;
|
|
}
|
|
|
|
std::vector<Light> &games::pc::get_lights() {
|
|
static std::vector<Light> lights;
|
|
|
|
if (lights.empty()) {
|
|
lights = GameAPI::Lights::getLights("Polaris Chord");
|
|
|
|
GameAPI::Lights::sortLights(
|
|
&lights,
|
|
"IC Reader R",
|
|
"IC Reader G",
|
|
"IC Reader B"
|
|
);
|
|
}
|
|
|
|
return lights;
|
|
}
|