saturnus - wire up the needed analogs for 3d controller

This commit is contained in:
nattthebear 2020-06-13 17:00:59 -04:00
parent 77e3f9acb3
commit 7f83f311f9
1 changed files with 15 additions and 0 deletions

View File

@ -224,6 +224,21 @@ namespace BizHawk.Emulation.Cores.Waterbox
// ret.AxisRanges.Add(new ControllerDefinition.AxisRange(0, ????, ????, true));
// break;
}
case InputType.ButtonAnalog:
{
ret.AxisControls.Add(name);
ret.CategoryLabels[name] = category;
ret.AxisRanges.Add(new ControllerDefinition.AxisRange(
0, 0, 0xffff, false
));
_thunks.Add((c, b) =>
{
var val = c.AxisValue(name);
b[byteStart] = (byte)val;
b[byteStart + 1] = (byte)(val >> 8);
});
break;
}
// TODO: wire up statuses to something (not controller, of course)
default:
{