From c807e27496dc0a98f8a8c53e86f399814413851a Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 15 Jun 2014 13:03:24 +0000 Subject: [PATCH] Some movie code reorg and cleanup --- .../BizHawk.Client.Common.csproj | 1 + .../lua/EmuLuaLibrary.Joypad.cs | 2 +- .../lua/EmuLuaLibrary.Movie.cs | 2 +- BizHawk.Client.Common/movie/MovieSession.cs | 4 +- .../movie/bk2/Bk2LogEntryGenerator.cs | 20 +- .../movie/bkm/BkmMnemonicConstants.cs | 523 ------------------ .../DisplayManager/OSDManager.cs | 4 +- .../tools/VirtualPads/AnalogControlPanel.cs | 2 +- 8 files changed, 23 insertions(+), 535 deletions(-) diff --git a/BizHawk.Client.Common/BizHawk.Client.Common.csproj b/BizHawk.Client.Common/BizHawk.Client.Common.csproj index 78eb47e733..db5c0c6745 100644 --- a/BizHawk.Client.Common/BizHawk.Client.Common.csproj +++ b/BizHawk.Client.Common/BizHawk.Client.Common.csproj @@ -140,6 +140,7 @@ + diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs index cca705ca39..ed8797ab0c 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs @@ -73,7 +73,7 @@ namespace BizHawk.Client.Common )] public void SetFromMnemonicStr(string inputLogEntry) { - var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; + var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; m.SetControllersAsMnemonic(inputLogEntry); foreach (var button in m.Type.BoolButtons) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs index bd55b1aa4a..bd347a85e4 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs @@ -31,7 +31,7 @@ namespace BizHawk.Client.Common { var input = Lua.NewTable(); - var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; + var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; m.SetControllersAsMnemonic( Global.MovieSession.Movie.GetInput(frame)); diff --git a/BizHawk.Client.Common/movie/MovieSession.cs b/BizHawk.Client.Common/movie/MovieSession.cs index b34c8dbd48..0b146797ca 100644 --- a/BizHawk.Client.Common/movie/MovieSession.cs +++ b/BizHawk.Client.Common/movie/MovieSession.cs @@ -10,7 +10,7 @@ namespace BizHawk.Client.Common public class MovieSession { private readonly MultitrackRecording _multiTrack = new MultitrackRecording(); - private readonly MovieControllerAdapter _movieControllerAdapter = new MovieControllerAdapter(); + private readonly BkmControllerAdapter _movieControllerAdapter = new BkmControllerAdapter(); public MovieSession() { @@ -18,7 +18,7 @@ namespace BizHawk.Client.Common } public MultitrackRecording MultiTrack { get { return _multiTrack; } } - public MovieControllerAdapter MovieControllerAdapter { get { return _movieControllerAdapter; } } + public BkmControllerAdapter MovieControllerAdapter { get { return _movieControllerAdapter; } } public IMovie Movie { get; set; } public bool ReadOnly { get; set; } diff --git a/BizHawk.Client.Common/movie/bk2/Bk2LogEntryGenerator.cs b/BizHawk.Client.Common/movie/bk2/Bk2LogEntryGenerator.cs index 1072edc1cc..3b6303c2bf 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2LogEntryGenerator.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2LogEntryGenerator.cs @@ -42,9 +42,14 @@ namespace BizHawk.Client.Common sb.Append('.'); } - foreach (var floatBtn in _source.Type.FloatControls) + if (_source.Type.FloatControls.Any()) { - sb.Append("000 "); + foreach (var floatBtn in _source.Type.FloatControls) + { + sb.Append(" 000,"); + } + + sb.Remove(sb.Length - 1, 1); } sb.Append('|'); @@ -60,10 +65,15 @@ namespace BizHawk.Client.Common sb.Append(_source.IsPressed(button) ? '1' : '.'); } - foreach (var floatBtn in _source.Type.FloatControls) + if (_source.Type.FloatControls.Any()) { - var val = (int)_source.GetFloat(floatBtn); - sb.Append(val).Append(' '); + foreach (var floatBtn in _source.Type.FloatControls) + { + var val = (int)_source.GetFloat(floatBtn); + sb.Append(' ').Append(val).Append(','); + } + + sb.Remove(sb.Length - 1, 1); } sb.Append('|'); diff --git a/BizHawk.Client.Common/movie/bkm/BkmMnemonicConstants.cs b/BizHawk.Client.Common/movie/bkm/BkmMnemonicConstants.cs index a6aa64da7b..938407c5da 100644 --- a/BizHawk.Client.Common/movie/bkm/BkmMnemonicConstants.cs +++ b/BizHawk.Client.Common/movie/bkm/BkmMnemonicConstants.cs @@ -226,527 +226,4 @@ namespace BizHawk.Client.Common new Tuple(null, '|'), }; } - - public class MovieControllerAdapter : IController - { - //IController implementation: - public ControllerDefinition Type { get; set; } - public bool this[string button] { get { return MyBoolButtons[button]; } } - public bool IsPressed(string button) { return MyBoolButtons[button]; } - public float GetFloat(string name) { return MyFloatControls[name]; } - //-------- - - private readonly WorkingDictionary MyBoolButtons = new WorkingDictionary(); - private readonly WorkingDictionary MyFloatControls = new WorkingDictionary(); - - void Force(string button, bool state) - { - MyBoolButtons[button] = state; - } - - void Force(string name, float state) - { - MyFloatControls[name] = state; - } - - string ControlType { get { return Type.Name; } } - - class MnemonicChecker - { - private readonly string _mnemonic; - - public MnemonicChecker(string mnemonic) - { - _mnemonic = mnemonic; - } - - public bool this[int c] - { - get - { - if (string.IsNullOrEmpty(_mnemonic)) - { - return false; - } - - if (_mnemonic[c] == '.') - { - return false; - } - - if (_mnemonic[c] == '?') - { - return new Random((int)DateTime.Now.Ticks).Next(0, 10) > 5; - } - - return true; - } - } - } - - /// - /// latches one player from the source - /// - public void LatchPlayerFromSource(IController playerSource, int playerNum) - { - foreach (string button in playerSource.Type.BoolButtons) - { - ButtonNameParser bnp = ButtonNameParser.Parse(button); - if (bnp == null) continue; - if (bnp.PlayerNum != playerNum) continue; - bool val = playerSource[button]; - MyBoolButtons[button] = val; - } - } - - /// - /// latches all buttons from the provided source - /// - public void LatchFromSource(IController source) - { - foreach (string button in Type.BoolButtons) - { - MyBoolButtons[button] = source[button]; - } - - foreach (string name in Type.FloatControls) - { - MyFloatControls[name] = source.GetFloat(name); - } - } - - //Redundancy beats crazy if logic that makes new consoles annoying to add - - private void SetGBAControllersAsMnemonic(string mnemonic) - { - MnemonicChecker c = new MnemonicChecker(mnemonic); - MyBoolButtons.Clear(); - if (mnemonic.Length < 2) - { - return; - } - if (mnemonic[1] == 'P') - { - Force("Power", true); - } - int start = 3; - foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys) - { - Force(button, c[start++]); - } - } - - private void SetGensis6ControllersAsMnemonic(string mnemonic) - { - MnemonicChecker c = new MnemonicChecker(mnemonic); - MyBoolButtons.Clear(); - - if (mnemonic.Length < 2) - { - return; - } - - if (mnemonic[1] == 'P') - { - Force("Power", true); - } - else if (mnemonic[1] != '.' && mnemonic[1] != '0') - { - Force("Reset", true); - } - - if (mnemonic.Length < 9) - { - return; - } - - for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++) - { - int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1); - - if (mnemonic.Length < srcindex + 3 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1) - { - return; - } - - int start = 3; - foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys) - { - Force("P" + player + " " + button, c[srcindex + start++]); - } - } - } - - private void SetSNESControllersAsMnemonic(string mnemonic) - { - MnemonicChecker c = new MnemonicChecker(mnemonic); - MyBoolButtons.Clear(); - - if (mnemonic.Length < 2) - { - return; - } - - if (mnemonic[1] == 'P') - { - Force("Power", true); - } - else if (mnemonic[1] != '.' && mnemonic[1] != '0') - { - Force("Reset", true); - } - - for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++) - { - int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1); - - if (mnemonic.Length < srcindex + 3 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1) - { - return; - } - - int start = 3; - foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys) - { - Force("P" + player + " " + button, c[srcindex + start++]); - } - } - } - - private void SetN64ControllersAsMnemonic(string mnemonic) - { - MnemonicChecker c = new MnemonicChecker(mnemonic); - MyBoolButtons.Clear(); - - if (mnemonic.Length < 2) - { - return; - } - - if (mnemonic[1] == 'P') - { - Force("Power", true); - } - else if (mnemonic[1] != '.' && mnemonic[1] != '0') - { - Force("Reset", true); - } - - for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++) - { - int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + BkmMnemonicConstants.ANALOGS[ControlType].Count * 4 + 1 + 1); - - if (mnemonic.Length < srcindex + 3 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1) - { - return; - } - - int start = 3; - foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys) - { - Force("P" + player + " " + button, c[srcindex + start++]); - } - - foreach (string name in BkmMnemonicConstants.ANALOGS[ControlType].Keys) - { - Force("P" + player + " " + name, Int32.Parse(mnemonic.Substring(srcindex + start, 4))); - start += 5; - } - } - } - - private void SetSaturnControllersAsMnemonic(string mnemonic) - { - MnemonicChecker c = new MnemonicChecker(mnemonic); - MyBoolButtons.Clear(); - - if (mnemonic.Length < 2) - { - return; - } - - if (mnemonic[1] == 'P') - { - Force("Power", true); - } - else if (mnemonic[1] != '.' && mnemonic[1] != '0') - { - Force("Reset", true); - } - - for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++) - { - int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1); - - if (mnemonic.Length < srcindex + 3 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1) - { - return; - } - - int start = 3; - foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys) - { - Force("P" + player + " " + button, c[srcindex + start++]); - } - } - } - - private void SetAtari7800AsMnemonic(string mnemonic) - { - MnemonicChecker c = new MnemonicChecker(mnemonic); - MyBoolButtons.Clear(); - - if (mnemonic.Length < 5) - { - return; - } - if (mnemonic[1] == 'P') - { - Force("Power", true); - } - if (mnemonic[2] == 'r') - { - Force("Reset", true); - } - if (mnemonic[3] == 's') - { - Force("Select", true); - } - if (mnemonic[4] == 'p') - { - Force("Pause", true); - } - - for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++) - { - int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1); - int start = 6; - if (mnemonic.Length < srcindex + start + BkmMnemonicConstants.BUTTONS[ControlType].Count) - { - return; - } - - foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys) - { - Force("P" + player + " " + button, c[srcindex + start++]); - } - } - } - - private void SetDualGameBoyControllerAsMnemonic(string mnemonic) - { - var checker = new MnemonicChecker(mnemonic); - MyBoolButtons.Clear(); - for (int i = 0; i < BkmMnemonicConstants.DGBMnemonic.Length; i++) - { - var t = BkmMnemonicConstants.DGBMnemonic[i]; - if (t.Item1 != null) - { - Force(t.Item1, checker[i]); - } - } - } - - private void SetWonderSwanControllerAsMnemonic(string mnemonic) - { - var checker = new MnemonicChecker(mnemonic); - MyBoolButtons.Clear(); - for (int i = 0; i < BkmMnemonicConstants.WSMnemonic.Length; i++) - { - var t = BkmMnemonicConstants.WSMnemonic[i]; - if (t.Item1 != null) - { - Force(t.Item1, checker[i]); - } - } - } - - private void SetC64ControllersAsMnemonic(string mnemonic) - { - MnemonicChecker c = new MnemonicChecker(mnemonic); - MyBoolButtons.Clear(); - - - for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++) - { - int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1); - - if (mnemonic.Length < srcindex + 1 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1) - { - return; - } - - int start = 1; - foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys) - { - Force("P" + player + " " + button, c[srcindex + start++]); - } - } - - int startk = 13; - foreach (string button in BkmMnemonicConstants.BUTTONS["Commodore 64 Keyboard"].Keys) - { - Force(button, c[startk++]); - } - } - - /// - /// latches all buttons from the supplied mnemonic string - /// - public void SetControllersAsMnemonic(string mnemonic) - { - if (ControlType == "Null Controller") - { - return; - } - else if (ControlType == "SNES Controller") - { - SetSNESControllersAsMnemonic(mnemonic); - return; - } - else if (ControlType == "Commodore 64 Controller") - { - SetC64ControllersAsMnemonic(mnemonic); - return; - } - else if (ControlType == "GBA Controller") - { - SetGBAControllersAsMnemonic(mnemonic); - return; - } - else if (ControlType == "Atari 7800 ProLine Joystick Controller") - { - SetAtari7800AsMnemonic(mnemonic); - return; - } - else if (ControlType == "Dual Gameboy Controller") - { - SetDualGameBoyControllerAsMnemonic(mnemonic); - return; - } - else if (ControlType == "WonderSwan Controller") - { - SetWonderSwanControllerAsMnemonic(mnemonic); - return; - } - else if (ControlType == "Nintento 64 Controller") - { - SetN64ControllersAsMnemonic(mnemonic); - return; - } - else if (ControlType == "Saturn Controller") - { - SetSaturnControllersAsMnemonic(mnemonic); - return; - } - else if (ControlType == "PSP Controller") - { - // TODO - return; - } - else if (ControlType == "GPGX Genesis Controller") - { - SetGensis6ControllersAsMnemonic(mnemonic); - return; - } - - MnemonicChecker c = new MnemonicChecker(mnemonic); - - MyBoolButtons.Clear(); - - int start = 3; - if (ControlType == "NES Controller") - { - if (mnemonic.Length < 2) - { - return; - } - else if (mnemonic[1] == 'P') - { - Force("Power", true); - } - else if (mnemonic[1] == 'E') - { - Force("FDS Eject", true); - } - else if (mnemonic[1] == '0') - { - Force("FDS Insert 0", true); - } - else if (mnemonic[1] == '1') - { - Force("FDS Insert 1", true); - } - else if (mnemonic[1] == '2') - { - Force("FDS Insert 2", true); - } - else if (mnemonic[1] == '3') - { - Force("FDS Insert 3", true); - } - else if (mnemonic[1] == 'c') - { - Force("VS Coin 1", true); - } - else if (mnemonic[1] == 'C') - { - Force("VS Coin 2", true); - } - else if (mnemonic[1] != '.') - { - Force("Reset", true); - } - } - if (ControlType == "Gameboy Controller") - { - if (mnemonic.Length < 2) return; - Force("Power", mnemonic[1] != '.'); - } - if (ControlType == "Genesis 3-Button Controller") - { - if (mnemonic.Length < 2) return; - Force("Reset", mnemonic[1] != '.'); - } - if (ControlType == "SMS Controller" || ControlType == "TI83 Controller" || ControlType == "ColecoVision Basic Controller") - { - start = 1; - } - if (ControlType == "Atari 2600 Basic Controller") - { - if (mnemonic.Length < 2) return; - Force("Reset", mnemonic[1] != '.' && mnemonic[1] != '0'); - Force("Select", mnemonic[2] != '.' && mnemonic[2] != '0'); - start = 4; - } - for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++) - { - int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1); - int ctr = start; - if (mnemonic.Length < srcindex + ctr + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1) - { - return; - } - string prefix = ""; - if (ControlType != "Gameboy Controller" && ControlType != "TI83 Controller") - { - prefix = "P" + player + " "; - } - foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys) - { - Force(prefix + button, c[srcindex + ctr++]); - } - } - if (ControlType == "SMS Controller") - { - int srcindex = BkmMnemonicConstants.PLAYERS[ControlType] * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1); - int ctr = start; - foreach (string command in BkmMnemonicConstants.COMMANDS[ControlType].Keys) - { - Force(command, c[srcindex + ctr++]); - } - } - } - } - } diff --git a/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs b/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs index fde0b9b494..765a12f215 100644 --- a/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs +++ b/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs @@ -250,7 +250,7 @@ namespace BizHawk.Client.EmuHawk public string InputStrOrAll() { - var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; + var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; if (Global.MovieSession.Movie.IsActive) { @@ -286,7 +286,7 @@ namespace BizHawk.Client.EmuHawk { if (Global.MovieSession.Movie.IsActive) { - var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; + var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; m.SetControllersAsMnemonic( Global.MovieSession.Movie.GetInput(Global.Emulator.Frame - 1)); diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/AnalogControlPanel.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/AnalogControlPanel.cs index e37ad71832..4b67dd9499 100644 --- a/BizHawk.Client.EmuHawk/tools/VirtualPads/AnalogControlPanel.cs +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/AnalogControlPanel.cs @@ -89,7 +89,7 @@ namespace BizHawk.Client.EmuHawk if (Global.MovieSession.Movie.IsActive && !Global.MovieSession.Movie.IsFinished) { var mnemonicStr = Global.MovieSession.Movie.GetInput(Global.Emulator.Frame - 1); - var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; + var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type }; m.SetControllersAsMnemonic(mnemonicStr); var x = m.GetFloat(Controller + " X Axis");