1
0
mirror of https://github.com/djhackersdev/bemanitools.git synced 2024-11-15 02:37:37 +01:00

popn hid lights

This commit is contained in:
10f2d26b708e9205de6ce889920e36b5596f4908 2020-06-08 11:17:22 +02:00
parent 1d0a96fa20
commit 77527e346b
3 changed files with 27 additions and 0 deletions

View File

@ -273,6 +273,15 @@ STRINGTABLE
IDS_PNM_BTN7 "Button 7"
IDS_PNM_BTN8 "Button 8"
IDS_PNM_BTN9 "Button 9"
IDS_PNM_TOP1 "Top neon 1 (topmost red)"
IDS_PNM_TOP2 "Top neon 2 (orange)"
IDS_PNM_TOP3 "Top neon 3 (green)"
IDS_PNM_TOP4 "Top neon 4 (green)"
IDS_PNM_TOP5 "Top neon 5 (bottom green)"
IDS_PNM_LB "Left lamp (blue)"
IDS_PNM_LR "Left lamp (red)"
IDS_PNM_RB "Right lamp (blue)"
IDS_PNM_RR "Right lamp (red)"
IDS_JB_SCHEMA "Jubeat"
IDS_JB_PANEL1 "Panel 1"
IDS_JB_PANEL2 "Panel 2"

View File

@ -243,3 +243,12 @@
#define IDS_IIDX_PANEL_S3 40200
#define IDS_IIDX_PANEL_S4 40201
#define IDS_IIDX_PANEL_S5 40202
#define IDS_PNM_TOP1 40203
#define IDS_PNM_TOP2 40204
#define IDS_PNM_TOP3 40205
#define IDS_PNM_TOP4 40206
#define IDS_PNM_TOP5 40207
#define IDS_PNM_LB 40208
#define IDS_PNM_LR 40209
#define IDS_PNM_RB 40210
#define IDS_PNM_RR 40211

View File

@ -165,6 +165,15 @@ static const struct light_def pnm_lights[] = {
{0x1D, IDS_PNM_BTN7},
{0x1E, IDS_PNM_BTN8},
{0x1F, IDS_PNM_BTN9},
{0x20, IDS_PNM_TOP1},
{0x21, IDS_PNM_TOP2},
{0x22, IDS_PNM_TOP3},
{0x23, IDS_PNM_TOP4},
{0x24, IDS_PNM_TOP5},
{0x25, IDS_PNM_LB},
{0x26, IDS_PNM_LR},
{0x27, IDS_PNM_RB},
{0x28, IDS_PNM_RR},
};
static const struct action_def jb_actions[] = {{0x10, IDS_GENERIC_TEST},