From e2d5a1d390cfb4c08c582354a18620569225db27 Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 12 Nov 2016 15:30:09 +0300 Subject: [PATCH] tastudio analog editing: typing past max digits overwrites existing value this required a new method in FloatRange class --- .../tools/TAStudio/TAStudio.ListView.cs | 28 ++++++++++++++++++- .../ControllerDefinition.cs | 10 +++++++ 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index 7e9b8c76e2..7eeea8b429 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -972,22 +972,48 @@ namespace BizHawk.Client.EmuHawk Emulation.Common.ControllerDefinition.FloatRange range = Global.MovieSession.MovieControllerAdapter.Type.FloatRanges [Global.MovieSession.MovieControllerAdapter.Type.FloatControls.IndexOf(_floatEditColumn)]; - // Range for N64 Y axis has max -128 and min 127. That should probably be fixed ControllerDefinition.cs, but I'll put a quick fix here anyway. + float rMax = range.Max; float rMin = range.Min; + // Range for N64 Y axis has max -128 and min 127. That should probably be fixed ControllerDefinition.cs, but I'll put a quick fix here anyway. if (rMax < rMin) { rMax = range.Min; rMin = range.Max; } + + // 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 + // it just uses 3 as maxDigits there too, leaving room for typing impossible values (that are still ignored by the game and then clamped) + int maxDigits = range.MaxDigits(); + int curDigits = _floatTypedValue.Length; + string curMinus; + if (_floatTypedValue.StartsWith("-")) + { + curDigits -= 1; + curMinus = "-"; + } + else + { + curMinus = ""; + } + if (e.KeyCode == Keys.Right) value = rMax; else if (e.KeyCode == Keys.Left) value = rMin; else if (e.KeyCode >= Keys.D0 && e.KeyCode <= Keys.D9) + { + if (curDigits >= maxDigits) + _floatTypedValue = curMinus; _floatTypedValue += e.KeyCode - Keys.D0; + } else if (e.KeyCode >= Keys.NumPad0 && e.KeyCode <= Keys.NumPad9) + { + if (curDigits >= maxDigits) + _floatTypedValue = curMinus; _floatTypedValue += e.KeyCode - Keys.NumPad0; + } else if (e.KeyCode == Keys.OemMinus || e.KeyCode == Keys.Subtract) { if (_floatTypedValue.StartsWith("-")) diff --git a/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs b/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs index 40d981a9eb..a0c1316daa 100644 --- a/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs +++ b/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs @@ -65,6 +65,16 @@ namespace BizHawk.Emulation.Common return new FloatRange(f[0], f[1], f[2]); } + + /// + /// Gets maximum decimal digits analog input can occupy. Discards negative sign and possible fractional part (analog devices don't use floats anyway). + /// + public int MaxDigits() + { + return Math.Max( + Math.Abs((int)Min).ToString().Length, + Math.Abs((int)Max).ToString().Length); + } } public enum AxisConstraintType