From a519ae025fce6810c29f5c0955ead1d96311c28a Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 3 Jan 2014 02:29:42 +0000 Subject: [PATCH] This should have fixed genesis mnemonics to be 2 player --- .../movie/MnemonicsGenerator.cs | 23 +++++++++++-- BizHawk.Client.Common/movie/MovieMnemonics.cs | 33 +++++++++++++++++-- 2 files changed, 51 insertions(+), 5 deletions(-) diff --git a/BizHawk.Client.Common/movie/MnemonicsGenerator.cs b/BizHawk.Client.Common/movie/MnemonicsGenerator.cs index f0329f6176..011d8c76e0 100644 --- a/BizHawk.Client.Common/movie/MnemonicsGenerator.cs +++ b/BizHawk.Client.Common/movie/MnemonicsGenerator.cs @@ -330,9 +330,28 @@ namespace BizHawk.Client.Common { var input = new StringBuilder("|"); - foreach (var button in MnemonicConstants.BUTTONS[_controlType].Keys) + if (IsBasePressed("Power")) { - input.Append(IsBasePressed(button) ? MnemonicConstants.BUTTONS[_controlType][button] : "."); + input.Append(MnemonicConstants.COMMANDS[_controlType]["Power"]); + } + else if (IsBasePressed("Reset")) + { + input.Append(MnemonicConstants.COMMANDS[_controlType]["Reset"]); + } + else + { + input.Append('.'); + } + + input.Append("|"); + for (int player = 1; player <= MnemonicConstants.PLAYERS[_controlType]; player++) + { + foreach (var button in MnemonicConstants.BUTTONS[_controlType].Keys) + { + input.Append(IsBasePressed("P" + player + " " + button) ? MnemonicConstants.BUTTONS[_controlType][button] : "."); + } + + input.Append("|"); } input.Append("|"); diff --git a/BizHawk.Client.Common/movie/MovieMnemonics.cs b/BizHawk.Client.Common/movie/MovieMnemonics.cs index 39fb0d0c6d..d4e3874687 100644 --- a/BizHawk.Client.Common/movie/MovieMnemonics.cs +++ b/BizHawk.Client.Common/movie/MovieMnemonics.cs @@ -148,6 +148,7 @@ namespace BizHawk.Client.Common {"Gameboy Controller", new Dictionary {{"Power", "P"}}}, {"GBA Controller", new Dictionary {{"Power", "P"}}}, {"Genesis 3-Button Controller", new Dictionary {{"Reset", "r"}}}, + {"GPGX Genesis Controller", new Dictionary {{"Power", "P"}, {"Reset", "r"}}}, {"NES Controller", new Dictionary {{"Reset", "r"}, {"Power", "P"}, {"FDS Eject", "E"}, {"FDS Insert 0", "0"}, {"FDS Insert 1", "1"}, {"VS Coin 1", "c"}, {"VS Coin 2", "C"}}}, {"SNES Controller", new Dictionary {{"Power", "P"}, {"Reset", "r"}}}, {"PC Engine Controller", new Dictionary()}, @@ -303,14 +304,40 @@ namespace BizHawk.Client.Common { 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; } - int start = 1; - foreach (string button in MnemonicConstants.BUTTONS[ControlType].Keys) + + for (int player = 1; player <= MnemonicConstants.PLAYERS[ControlType]; player++) { - Force(button, c[start++]); + int srcindex = (player - 1) * (MnemonicConstants.BUTTONS[ControlType].Count + 1); + + if (mnemonic.Length < srcindex + 3 + MnemonicConstants.BUTTONS[ControlType].Count - 1) + { + return; + } + + int start = 3; + foreach (string button in MnemonicConstants.BUTTONS[ControlType].Keys) + { + Force("P" + player + " " + button, c[srcindex + start++]); + } } }