Fix scaling of axes (#2334)
* Cleanup NormalizeAxes no behaviour change yet * Use a more sensible scaling algorithm in NormalizeAxes * Replace AxisSpec.FloatRange with AxisSpec.Range (ints) * Use 0..255 for GBA light sensor, and set its Mid to 0 (fixes #2323)
This commit is contained in:
parent
4456e84bf0
commit
a11a7017a7
|
@ -49,52 +49,31 @@ namespace BizHawk.Client.Common
|
||||||
.SelectMany(kvp => kvp.Value)
|
.SelectMany(kvp => kvp.Value)
|
||||||
.Any(boundButton => boundButton == button);
|
.Any(boundButton => boundButton == button);
|
||||||
|
|
||||||
public void NormalizeAxes(IController controller)
|
public void NormalizeAxes()
|
||||||
{
|
{
|
||||||
foreach (var kvp in _axisBindings)
|
foreach (var kvp in _axisBindings)
|
||||||
{
|
{
|
||||||
var input = (float) _axes[kvp.Key];
|
if (!_axisRanges.TryGetValue(kvp.Key, out var range)) continue; //TODO throw (or use indexer instead of TryGetValue)? this `continue` should never be hit --yoshi
|
||||||
string outKey = kvp.Key;
|
|
||||||
float multiplier = kvp.Value.Mult;
|
|
||||||
float deadZone = kvp.Value.Deadzone;
|
|
||||||
if (_axisRanges.TryGetValue(outKey, out var range))
|
|
||||||
{
|
|
||||||
// input range is assumed to be -10000,0,10000
|
|
||||||
|
|
||||||
// first, modify for deadZone
|
// values of _axes are ints in -10000..10000 (or 0..10000), so scale to -1..1, using floats to keep fractional part
|
||||||
float absInput = Math.Abs(input);
|
var value = _axes[kvp.Key] / 10000.0f;
|
||||||
float zeroPoint = deadZone * 10000.0f;
|
|
||||||
if (absInput < zeroPoint)
|
|
||||||
{
|
|
||||||
input = 0.0f;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
absInput -= zeroPoint;
|
|
||||||
absInput *= 10000.0f;
|
|
||||||
absInput /= 10000.0f - zeroPoint;
|
|
||||||
input = absInput * Math.Sign(input);
|
|
||||||
}
|
|
||||||
|
|
||||||
// zero 09-mar-2015 - not sure if adding + 1 here is correct.. but... maybe?
|
// apply deadzone (and scale diminished range back up to -1..1)
|
||||||
float output;
|
var deadzone = kvp.Value.Deadzone;
|
||||||
|
if (value < -deadzone) value += deadzone;
|
||||||
|
else if (value < deadzone) value = 0.0f;
|
||||||
|
else value -= deadzone;
|
||||||
|
value /= 1.0f - deadzone;
|
||||||
|
|
||||||
if (range.IsReversed)
|
// scale by user-set multiplier (which is 0..1, i.e. value can only shrink and is therefore still in -1..1)
|
||||||
{
|
value *= kvp.Value.Mult;
|
||||||
output = (((input * multiplier) + 10000.0f) * (range.Min - range.Max + 1) / 20000.0f) + range.Max;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
output = (((input * multiplier) + 10000.0f) * (range.Max - range.Min + 1) / 20000.0f) + range.Min;
|
|
||||||
}
|
|
||||||
|
|
||||||
// zero 09-mar-2015 - at this point, we should only have integers, since that's all 100% of consoles ever see
|
// -1..1 -> range
|
||||||
// if this becomes a problem we can add flags to the range and update GUIs to be able to display floats
|
value += range.Mid;
|
||||||
|
value *= Math.Max(range.Mid - range.Min, range.Max - range.Mid);
|
||||||
|
|
||||||
// fixed maybe? --yoshi
|
// finally, constrain to range again in case the original value was unexpectedly large, or the deadzone and scale made it so, or the axis is lopsided
|
||||||
|
_axes[kvp.Key] = ((int) value).ConstrainWithin(range.Range);
|
||||||
_axes[outKey] = (int) output.ConstrainWithin(range.FloatRange);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -129,7 +108,7 @@ namespace BizHawk.Client.Common
|
||||||
}
|
}
|
||||||
|
|
||||||
// it's not sure where this should happen, so for backwards compatibility.. do it every time
|
// it's not sure where this should happen, so for backwards compatibility.. do it every time
|
||||||
NormalizeAxes(controller);
|
NormalizeAxes();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ApplyAxisConstraints(string constraintClass)
|
public void ApplyAxisConstraints(string constraintClass)
|
||||||
|
|
|
@ -1267,7 +1267,8 @@ namespace BizHawk.Client.EmuHawk
|
||||||
string prevTyped = _axisTypedValue;
|
string prevTyped = _axisTypedValue;
|
||||||
|
|
||||||
var range = ControllerType.Axes[_axisEditColumn];
|
var range = ControllerType.Axes[_axisEditColumn];
|
||||||
var (rMin, rMax) = range.FloatRange;
|
float rMin = range.Min;
|
||||||
|
float rMax = range.Max;
|
||||||
|
|
||||||
// feos: typing past max digits overwrites existing value, not touching the sign
|
// feos: typing past max digits overwrites existing value, not touching the sign
|
||||||
// but doesn't handle situations where the range is like -50 through 100, where minimum is negative and has less digits
|
// but doesn't handle situations where the range is like -50 through 100, where minimum is negative and has less digits
|
||||||
|
|
|
@ -15,8 +15,6 @@ namespace BizHawk.Emulation.Common
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly AxisConstraint? Constraint;
|
public readonly AxisConstraint? Constraint;
|
||||||
|
|
||||||
public Range<float> FloatRange => ((float) Min).RangeTo(Max);
|
|
||||||
|
|
||||||
public readonly bool IsReversed;
|
public readonly bool IsReversed;
|
||||||
|
|
||||||
public int Max => Range.EndInclusive;
|
public int Max => Range.EndInclusive;
|
||||||
|
|
|
@ -267,6 +267,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
||||||
Name = "GBA Controller",
|
Name = "GBA Controller",
|
||||||
BoolButtons = { "Up", "Down", "Left", "Right", "Start", "Select", "B", "A", "L", "R", "Power" }
|
BoolButtons = { "Up", "Down", "Left", "Right", "Start", "Select", "B", "A", "L", "R", "Power" }
|
||||||
}.AddXYZTriple("Tilt {0}", (-32767).RangeTo(32767), 0)
|
}.AddXYZTriple("Tilt {0}", (-32767).RangeTo(32767), 0)
|
||||||
.AddAxis("Light Sensor", 0.RangeTo(200), 100);
|
.AddAxis("Light Sensor", 0.RangeTo(255), 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue