mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-06 23:28:04 -04:00
add support for 4 player inputs
This commit is contained in:
parent
cfb49ab909
commit
25cfdf0a34
3 changed files with 26 additions and 7 deletions
|
@ -92,6 +92,22 @@ void config_write_keys(FILE *f)
|
|||
}
|
||||
}
|
||||
|
||||
kbinds = binds[IN_BIND_OFFS(k, IN_BINDTYPE_PLAYER34)];
|
||||
for (i = 0; kbinds && me_ctrl_actions[i].name != NULL; i++) {
|
||||
mask = me_ctrl_actions[i].mask;
|
||||
if (mask & kbinds) {
|
||||
strncpy(act, me_ctrl_actions[i].name, 31);
|
||||
fprintf(f, "bind %s = player3 %s\n", name, mystrip(act));
|
||||
kbinds &= ~mask;
|
||||
}
|
||||
mask = me_ctrl_actions[i].mask << 16;
|
||||
if (mask & kbinds) {
|
||||
strncpy(act, me_ctrl_actions[i].name, 31);
|
||||
fprintf(f, "bind %s = player4 %s\n", name, mystrip(act));
|
||||
kbinds &= ~mask;
|
||||
}
|
||||
}
|
||||
|
||||
kbinds = binds[IN_BIND_OFFS(k, IN_BINDTYPE_EMU)];
|
||||
for (i = 0; kbinds && emuctrl_actions[i].name != NULL; i++) {
|
||||
mask = emuctrl_actions[i].mask;
|
||||
|
@ -126,12 +142,12 @@ static int parse_bind_val(const char *val, int *type)
|
|||
int player, shift = 0;
|
||||
player = atoi(val + 6) - 1;
|
||||
|
||||
if ((unsigned int)player > 1)
|
||||
if ((unsigned int)player > 3)
|
||||
return -1;
|
||||
if (player == 1)
|
||||
if (player & 1)
|
||||
shift = 16;
|
||||
|
||||
*type = IN_BINDTYPE_PLAYER12;
|
||||
*type = IN_BINDTYPE_PLAYER12 + (player >> 1);
|
||||
for (i = 0; me_ctrl_actions[i].name != NULL; i++) {
|
||||
if (strncasecmp(me_ctrl_actions[i].name, val + 8, strlen(val + 8)) == 0)
|
||||
return me_ctrl_actions[i].mask << shift;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue