From e930dd33262363f38c21b4cc4984b9870ef33284 Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 17 May 2017 11:53:42 -0500 Subject: [PATCH] some bk2 code cleanup --- .../movie/bk2/Bk2ControllerAdapter.cs | 36 +- .../movie/bk2/Bk2FloatConstants.cs | 50 +- .../movie/bk2/Bk2LogEntryGenerator.cs | 2 +- .../movie/bk2/Bk2MnemonicConstants.cs | 585 +++++++++--------- BizHawk.Client.Common/movie/bk2/StringLogs.cs | 6 +- 5 files changed, 323 insertions(+), 356 deletions(-) diff --git a/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs b/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs index b6b3e0bd99..fd42e5ce89 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2ControllerAdapter.cs @@ -10,11 +10,11 @@ namespace BizHawk.Client.Common public class Bk2ControllerAdapter : IMovieController { private readonly string _logKey = ""; - private readonly WorkingDictionary MyBoolButtons = new WorkingDictionary(); - private readonly WorkingDictionary MyFloatControls = new WorkingDictionary(); + private readonly WorkingDictionary _myBoolButtons = new WorkingDictionary(); + private readonly WorkingDictionary _myFloatControls = new WorkingDictionary(); public Bk2ControllerAdapter() - { + { } public Bk2ControllerAdapter(string key) @@ -41,14 +41,14 @@ namespace BizHawk.Client.Common { get { - return MyBoolButtons[button]; + return _myBoolButtons[button]; } set { - if (MyBoolButtons.ContainsKey(button)) + if (_myBoolButtons.ContainsKey(button)) { - MyBoolButtons[button] = value; + _myBoolButtons[button] = value; } } } @@ -57,12 +57,12 @@ namespace BizHawk.Client.Common public bool IsPressed(string button) { - return MyBoolButtons[button]; + return _myBoolButtons[button]; } public float GetFloat(string name) { - return MyFloatControls[name]; + return _myFloatControls[name]; } #endregion @@ -104,7 +104,7 @@ namespace BizHawk.Client.Common } var val = playerSource.IsPressed(button); - MyBoolButtons[button] = val; + _myBoolButtons[button] = val; } foreach (var button in Definition.FloatControls) @@ -122,7 +122,7 @@ namespace BizHawk.Client.Common var val = playerSource.GetFloat(button); - MyFloatControls[button] = val; + _myFloatControls[button] = val; } } @@ -133,12 +133,12 @@ namespace BizHawk.Client.Common { foreach (var button in Definition.BoolButtons) { - MyBoolButtons[button] = source.IsPressed(button); + _myBoolButtons[button] = source.IsPressed(button); } foreach (var name in Definition.FloatControls) { - MyFloatControls[name] = source.GetFloat(name); + _myFloatControls[name] = source.GetFloat(name); } } @@ -149,7 +149,7 @@ namespace BizHawk.Client.Common { foreach (var button in Definition.BoolButtons) { - MyBoolButtons[button] = Global.AutofireStickyXORAdapter.IsSticky(button); + _myBoolButtons[button] = Global.AutofireStickyXORAdapter.IsSticky(button); } } @@ -169,14 +169,14 @@ namespace BizHawk.Client.Common { if (def.BoolButtons.Contains(key)) { - MyBoolButtons[key] = trimmed[iterator] != '.'; + _myBoolButtons[key] = trimmed[iterator] != '.'; iterator++; } else if (def.FloatControls.Contains(key)) { var temp = trimmed.Substring(iterator, 5); var val = int.Parse(temp.Trim()); - MyFloatControls[key] = val; + _myFloatControls[key] = val; iterator += 6; } @@ -188,23 +188,21 @@ namespace BizHawk.Client.Common public void SetFloat(string buttonName, float value) { - MyFloatControls[buttonName] = value; + _myFloatControls[buttonName] = value; } public class Bk2ControllerDefinition : ControllerDefinition { public Bk2ControllerDefinition() { - } public Bk2ControllerDefinition(ControllerDefinition source) : base(source) { - } - public List> ControlsFromLog = new List>(); + public List> ControlsFromLog { private get; set; } = new List>(); public override IEnumerable> ControlsOrdered { diff --git a/BizHawk.Client.Common/movie/bk2/Bk2FloatConstants.cs b/BizHawk.Client.Common/movie/bk2/Bk2FloatConstants.cs index e222e58c80..2d024f7eda 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2FloatConstants.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2FloatConstants.cs @@ -30,34 +30,34 @@ namespace BizHawk.Client.Common } private readonly Dictionary BaseMnemonicLookupTable = new Dictionary - { - { "Zapper X", "zapX" }, - { "Zapper Y", "zapY" }, - { "Paddle", "Pad" }, - { "Pen", "Pen" }, - { "Mouse X", "mX" }, - { "Mouse Y", "mY" }, - { "Lightgun X", "lX" }, - { "Lightgun Y", "lY" }, - { "X Axis", "aX" }, - { "Y Axis", "aY" }, - { "LStick X", "lsX" }, - { "LStick Y", "lsY" }, - { "RStick X", "rsX" }, - { "RStick Y", "rsY" }, - { "Disc Select", "Disc" } - }; + { + { "Zapper X", "zapX" }, + { "Zapper Y", "zapY" }, + { "Paddle", "Pad" }, + { "Pen", "Pen" }, + { "Mouse X", "mX" }, + { "Mouse Y", "mY" }, + { "Lightgun X", "lX" }, + { "Lightgun Y", "lY" }, + { "X Axis", "aX" }, + { "Y Axis", "aY" }, + { "LStick X", "lsX" }, + { "LStick Y", "lsY" }, + { "RStick X", "rsX" }, + { "RStick Y", "rsY" }, + { "Disc Select", "Disc" } + }; private readonly Dictionary> SystemOverrides = new Dictionary> + { { + "A78", + new Dictionary { - "A78", - new Dictionary - { - { "VPos", "X" }, - { "HPos", "Y" } - } - }, - }; + { "VPos", "X" }, + { "HPos", "Y" } + } + }, + }; } } diff --git a/BizHawk.Client.Common/movie/bk2/Bk2LogEntryGenerator.cs b/BizHawk.Client.Common/movie/bk2/Bk2LogEntryGenerator.cs index 9bb17faaea..8ce9e4b093 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2LogEntryGenerator.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2LogEntryGenerator.cs @@ -11,8 +11,8 @@ namespace BizHawk.Client.Common private readonly Bk2MnemonicConstants Mnemonics = new Bk2MnemonicConstants(); private readonly Bk2FloatConstants FloatLookup = new Bk2FloatConstants(); + private readonly string _logKey; private IController _source; - private readonly string _logKey = ""; public Bk2LogEntryGenerator(string logKey) { diff --git a/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs b/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs index 05e5a8b66a..fc346d384a 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; +// ReSharper disable StyleCop.SA1509 namespace BizHawk.Client.Common { public class Bk2MnemonicConstants @@ -14,14 +15,14 @@ namespace BizHawk.Client.Common key = key.Substring(3); } - if (SystemOverrides.ContainsKey(Global.Emulator.SystemId) && SystemOverrides[Global.Emulator.SystemId].ContainsKey(key)) + if (_systemOverrides.ContainsKey(Global.Emulator.SystemId) && _systemOverrides[Global.Emulator.SystemId].ContainsKey(key)) { - return SystemOverrides[Global.Emulator.SystemId][key]; + return _systemOverrides[Global.Emulator.SystemId][key]; } - if (BaseMnemonicLookupTable.ContainsKey(key)) + if (_baseMnemonicLookupTable.ContainsKey(key)) { - return BaseMnemonicLookupTable[key]; + return _baseMnemonicLookupTable[key]; } if (key.Length == 1) @@ -33,336 +34,304 @@ namespace BizHawk.Client.Common } } - private readonly Dictionary BaseMnemonicLookupTable = new Dictionary - { - { "Power", 'P' }, - { "Reset", 'r' }, - { "Pause", 'p' }, - { "Rotate", 'R' }, + private readonly Dictionary _baseMnemonicLookupTable = new Dictionary + { + ["Power"] = 'P', + ["Reset"] = 'r', + ["Pause"] = 'p', + ["Rotate"] = 'R', - { "Up", 'U' }, - { "Down", 'D' }, - { "Left", 'L' }, - { "Right", 'R' }, + ["Up"] = 'U', + ["Down"] = 'D', + ["Left"] = 'L', + ["Right"] = 'R', - { "A", 'A' }, - { "B", 'B' }, - { "C", 'C' }, + ["A"] = 'A', + ["B"] = 'B', + ["C"] = 'C', - { "X", 'X' }, - { "Y", 'Y' }, - { "Z", 'Z' }, + ["X"] = 'X', + ["Y"] = 'Y', + ["Z"] = 'Z', - { "Select", 's' }, - { "Start", 'S' }, - { "Run", 'R' }, + ["Select"] = 's', + ["Start"] = 'S', + ["Run"] = 'R', - { "L", 'l' }, - { "R", 'r' }, + ["L"] = 'l', + ["R"] = 'r', - { "L1", 'l' }, - { "R1", 'r' }, + ["L1"] = 'l', + ["R1"] = 'r', - { "L2", 'L' }, - { "R2", 'R' }, + ["L2"] = 'L', + ["R2"] = 'R', - { "L3", '<' }, - { "R3", '>' }, + ["L3"] = '<', + ["R3"] = '>', - { "Button", 'B' }, - { "B1", '1' }, - { "B2", '2' }, + ["Button"] = 'B', + ["B1"] = '1', + ["B2"] = '2', - { "Trigger", '1' }, - { "Trigger 1", '1' }, - { "Trigger 2", '2' }, + ["Trigger"] = '1', + ["Trigger 1"] = '1', + ["Trigger 2"] = '2', - { "Mouse Left", 'l' }, - { "Mouse Right", 'r' }, - { "Mouse Center", 'c' }, - { "Mouse Start", 's' }, + ["Mouse Left"] = 'l', + ["Mouse Right"] = 'r', + ["Mouse Center"] = 'c', + ["Mouse Start"] = 's', - { "Mode", 'M' }, - { "MODE", 'M' }, + ["Mode"] = 'M', + ["MODE"] = 'M', - { "Fire", 'F' }, - { "Lightgun Trigger", 'T' }, - { "Lightgun Start", 'S' }, - { "Lightgun B", 'B' }, - { "Lightgun C", 'C' }, - { "Microphone", 'M' }, + ["Fire"] = 'F', + ["Lightgun Trigger"] = 'T', + ["Lightgun Start"] = 'S', + ["Lightgun B"] = 'B', + ["Lightgun C"] = 'C', + ["Microphone"] = 'M', - { "Star", '*' }, - { "Pound", '#' }, + ["Star"] = '*', + ["Pound"] = '#', - { "X1", '1' }, - { "X2", '2' }, - { "X3", '3' }, - { "X4", '4' }, + ["X1"] = '1', + ["X2"] = '2', + ["X3"] = '3', + ["X4"] = '4', - { "Y1", '1' }, - { "Y2", '2' }, - { "Y3", '3' }, - { "Y4", '4' }, + ["Y1"] = '1', + ["Y2"] = '2', + ["Y3"] = '3', + ["Y4"] = '4', - { "Triangle", 'T' }, - { "Circle", 'O' }, - { "Cross", 'X' }, - { "Square", 'Q' }, + ["Triangle"] = 'T', + ["Circle"] = 'O', + ["Cross"] = 'X', + ["Square"] = 'Q', - { "Toggle Left Difficulty", 'l' }, - { "Toggle Right Difficulty", 'r' }, + ["Toggle Left Difficulty"] = 'l', + ["Toggle Right Difficulty"] = 'r', - { "Open", 'O' }, - { "Close", 'C' }, - { "Pedal", 'P' } - }; + ["Open"] = 'O', + ["Close"] = 'C', + ["Pedal"] = 'P' + }; - private readonly Dictionary> SystemOverrides = new Dictionary> + private readonly Dictionary> _systemOverrides = new Dictionary> + { + ["NES"] = new Dictionary { - { - "NES", - new Dictionary - { - { "FDS Eject", 'E' }, - { "FDS Insert 0", '0' }, - { "FDS Insert 1", '1' }, - { "Insert Coin P1", 'c' }, - { "Insert Coin P2", 'C' }, - { "Service Switch", 'w' }, + ["FDS Eject"] = 'E', + ["FDS Insert 0"] = '0', + ["FDS Insert 1"] = '1', + ["Insert Coin P1"] = 'c', + ["Insert Coin P2"] = 'C', + ["Service Switch"] = 'w', - { "PP1", '1' }, - { "PP2", '2' }, - { "PP3", '3' }, - { "PP4", '4' }, + ["PP1"] = '1', + ["PP2"] = '2', + ["PP3"] = '3', + ["PP4"] = '4', - { "PP5", '5' }, - { "PP6", '6' }, - { "PP7", '7' }, - { "PP8", '8' }, + ["PP5"] = '5', + ["PP6"] = '6', + ["PP7"] = '7', + ["PP8"] = '8', - { "PP9", '9' }, - { "PP10", 'A' }, - { "PP11", 'B' }, - { "PP12", 'C' }, - { "Click", 'C' }, - { "Touch", 'T' }, - } - }, - { - "SNES", - new Dictionary - { - { "Cursor", 'c' }, - { "Turbo", 't' }, - { "Toggle Multitap", 't' }, + ["PP9"] = '9', + ["PP10"] = 'A', + ["PP11"] = 'B', + ["PP12"] = 'C', + ["Click"] = 'C', + ["Touch"] = 'T', + }, + ["SNES"] = new Dictionary + { + ["Cursor"] = 'c', + ["Turbo"] = 't', + ["Toggle Multitap"] = 't', - { "B0", '0' }, - { "B1", '1' }, - { "B2", '2' }, - { "B3", '3' }, - { "B4", '4' }, - { "B5", '5' }, - { "B6", '6' }, - { "B7", '7' }, - { "B8", '8' }, - { "B9", '9' }, - { "B10", 'a' }, + ["B0"] = '0', + ["B1"] = '1', + ["B2"] = '2', + ["B3"] = '3', + ["B4"] = '4', + ["B5"] = '5', + ["B6"] = '6', + ["B7"] = '7', + ["B8"] = '8', + ["B9"] = '9', + ["B10"] = 'a', + ["B11"] = 'b', + ["B12"] = 'c', + ["B13"] = 'd', + ["B14"] = 'e', + ["B15"] = 'f', + ["B16"] = 'g', + ["B17"] = 'h', + ["B18"] = 'i', + ["B19"] = 'j', + ["B20"] = 'k', + ["B21"] = 'l', + ["B22"] = 'm', + ["B23"] = 'n', + ["B24"] = 'o', + ["B25"] = 'p', + ["B26"] = 'q', + ["B27"] = 'r', + ["B28"] = 's', + ["B29"] = 't', + ["B30"] = 'u', + ["B31"] = 'v' + }, + ["TI83"] = new Dictionary + { + ["UP"] = 'U', + ["DOWN"] = 'D', + ["LEFT"] = 'L', + ["RIGHT"] = 'R', + ["DOT"] = '`', + ["ON"] = 'O', + ["ENTER"] = '=', + ["PLUS"] = '+', + ["MINUS"] = '_', + ["MULTIPLY"] = '*', + ["DIVIDE"] = '/', + ["CLEAR"] = 'c', + ["EXP"] = '^', + ["DASH"] = '-', + ["PARAOPEN"] = '(', + ["PARACLOSE"] = ')', + ["TAN"] = 'T', + ["VARS"] = 'V', + ["COS"] = 'C', + ["PRGM"] = 'P', + ["STAT"] = 's', + ["MATRIX"] = 'm', + ["X"] = 'X', + ["STO"] = '>', + ["LN"] = 'n', + ["LOG"] = 'L', + ["SQUARED"] = '2', + ["NEG1"] = '1', + ["MATH"] = 'H', + ["ALPHA"] = 'A', + ["GRAPH"] = 'G', + ["TRACE"] = 't', + ["ZOOM"] = 'Z', + ["WINDOW"] = 'W', + ["Y"] = 'Y', + ["2ND"] = '&', + ["MODE"] = 'O', + ["DEL"] = 'D', + ["COMMA"] = ',', + ["SIN"] = 'S' + }, + ["C64"] = new Dictionary + { + ["L"] = 'L', + ["R"] = 'R', + ["F1"] = '1', + ["F3"] = '3', + ["F5"] = '5', + ["F7"] = '7', + ["Left Arrow"] = 'l', + ["Plus"] = '+', + ["Minus"] = '-', + ["Pound"] = 'l', + ["Clear/Home"] = 'c', + ["Insert/Delete"] = 'i', + ["Control"] = 'c', + ["At"] = '@', + ["Asterisk"] = '*', + ["Up Arrow"] = 'u', + ["Restore"] = 'r', + ["Run/Stop"] = 's', + ["Lck"] = 'k', + ["Colon"] = ':', + ["Semicolon"] = ';', + ["Equal"] = '=', + ["Return"] = 'e', + ["Commodore"] = 'o', + ["Left Shift"] = 's', + ["Comma"] = ',', + ["Period"] = '>', + ["Slash"] = '/', + ["Right Shift"] = 's', + ["Cursor Up/Down"] = 'u', + ["Cursor Left/Right"] = 'l', + ["Space"] = '_' + }, + ["N64"] = new Dictionary + { + ["C Up"] = 'u', + ["C Down"] = 'd', + ["C Left"] = 'l', + ["C Right"] = 'r', - { "B11", 'b' }, - { "B12", 'c' }, - { "B13", 'd' }, - { "B14", 'e' }, - { "B15", 'f' }, - { "B16", 'g' }, - { "B17", 'h' }, - { "B18", 'i' }, - { "B19", 'j' }, - { "B20", 'k' }, + ["A Up"] = 'U', + ["A Down"] = 'D', + ["A Left"] = 'L', + ["A Right"] = 'R', - { "B21", 'l' }, - { "B22", 'm' }, - { "B23", 'n' }, - { "B24", 'o' }, - { "B25", 'p' }, - { "B26", 'q' }, - { "B27", 'r' }, - { "B28", 's' }, - { "B29", 't' }, - { "B30", 'u' }, - { "B31", 'v' } - } - }, - { - "TI83", - new Dictionary - { - { "UP", 'U' }, - { "DOWN", 'D' }, - { "LEFT", 'L' }, - { "RIGHT", 'R' }, - { "DOT", '`' }, - { "ON", 'O' }, - { "ENTER", '=' }, - { "PLUS", '+' }, - { "MINUS", '_' }, - { "MULTIPLY", '*' }, - { "DIVIDE", '/' }, - { "CLEAR", 'c' }, - { "EXP", '^' }, - { "DASH", '-' }, - { "PARAOPEN", '(' }, - { "PARACLOSE", ')' }, - { "TAN", 'T' }, - { "VARS", 'V' }, - { "COS", 'C' }, - { "PRGM", 'P' }, - { "STAT", 's' }, - { "MATRIX", 'm' }, - { "X", 'X' }, - { "STO", '>' }, - { "LN", 'n' }, - { "LOG", 'L' }, - { "SQUARED", '2' }, - { "NEG1", '1' }, - { "MATH", 'H' }, - { "ALPHA", 'A' }, - { "GRAPH", 'G' }, - { "TRACE", 't' }, - { "ZOOM", 'Z' }, - { "WINDOW", 'W' }, - { "Y", 'Y' }, - { "2ND", '&' }, - { "MODE", 'O' }, - { "DEL", 'D' }, - { "COMMA", ',' }, - { "SIN", 'S' } - } - }, - { - "C64", - new Dictionary - { - { "L", 'L' }, - { "R", 'R' }, - { "F1", '1' }, - { "F3", '3' }, - { "F5", '5' }, - { "F7", '7' }, - { "Left Arrow", 'l' }, - { "Plus", '+' }, - { "Minus", '-' }, - { "Pound", 'l' }, - { "Clear/Home", 'c' }, - { "Insert/Delete", 'i' }, - { "Control", 'c' }, - { "At", '@' }, - { "Asterisk", '*' }, - { "Up Arrow", 'u' }, - { "Restore", 'r' }, - { "Run/Stop", 's' }, - { "Lck", 'k' }, - { "Colon", ':' }, - { "Semicolon", ';' }, - { "Equal", '=' }, - { "Return", 'e' }, - { "Commodore", 'o' }, - { "Left Shift", 's' }, - { "Comma", ',' }, - { "Period", '>' }, - { "Slash", '/' }, - { "Right Shift", 's' }, - { "Cursor Up/Down", 'u' }, - { "Cursor Left/Right", 'l' }, - { "Space", '_' } - } - }, - { - "N64", - new Dictionary - { - { "C Up", 'u' }, - { "C Down", 'd' }, - { "C Left", 'l' }, - { "C Right", 'r' }, - - { "A Up", 'U' }, - { "A Down", 'D' }, - { "A Left", 'L' }, - { "A Right", 'R' }, - - { "DPad U", 'U' }, - { "DPad D", 'D' }, - { "DPad L", 'L' }, - { "DPad R", 'R' }, - } - }, - { - "DGB", - new Dictionary - { - { "Toggle Cable", 'L' }, - } - }, - { - "Lynx", - new Dictionary - { - { "Option 1", '1' }, - { "Option 2", '2' } - } - }, - { - "AppleII", - new Dictionary - { - { "Tab", 't' }, - { "Return", 'e' }, - { "Escape", 'x' }, - { "Delete", 'b' }, - { "Space", 's' }, - { "Control", 'c' }, - { "Shift", '^' }, - { "Caps Lock", 'C' }, - { "Next Disk", '>' }, - { "Previous Disk", '<' }, - { "White Apple", 'w' }, - { "Black Apple", 'b' }, - { "L", 'L' }, - { "R", 'R' } - } - }, - { - "INTV", - new Dictionary - { - { "Clear", 'C' }, - { "Enter", 'E' }, - { "Top", 'T' }, - { "NNE", 'n' }, - { "NE", '/' }, - { "ENE", 'e' }, - { "ESE", 'e' }, - { "SE", '\\' }, - { "SSE", 's' }, - { "SSW", 's' }, - { "SW", '/' }, - { "WSW", 'w' }, - { "WNW", 'w' }, - { "NW", '\\' }, - { "NNW", 'n' } - } - }, - { - "Coleco", - new Dictionary - { - { "Yellow", 'Y' }, - { "Red", 'R' }, - { "Blue", 'B' }, - { "Purple", 'P' } - } - } - }; + ["DPad U"] = 'U', + ["DPad D"] = 'D', + ["DPad L"] = 'L', + ["DPad R"] = 'R', + }, + ["DGB"] = new Dictionary + { + ["Toggle Cable"] = 'L' + }, + ["Lynx"] = new Dictionary + { + ["Option 1"] = '1', + ["Option 2"] = '2' + }, + ["AppleII"] = new Dictionary + { + ["Tab"] = 't' , + ["Return"] = 'e' , + ["Escape"] = 'x' , + ["Delete"] = 'b' , + ["Space"] = 's' , + ["Control"] = 'c' , + ["Shift"] = '^' , + ["Caps Lock"] = 'C' , + ["Next Disk"] = '>' , + ["Previous Disk"] = '<' , + ["White Apple"] = 'w' , + ["Black Apple"] = 'b' , + ["L"] = 'L' , + ["R"] = 'R' + }, + ["INTV"] = new Dictionary + { + ["Clear"] = 'C' , + ["Enter"] = 'E' , + ["Top"] = 'T' , + ["NNE"] = 'n' , + ["NE"] = '/' , + ["ENE"] = 'e' , + ["ESE"] = 'e' , + ["SE"] = '\\' , + ["SSE"] = 's' , + ["SSW"] = 's' , + ["SW"] = '/' , + ["WSW"] = 'w' , + ["WNW"] = 'w' , + ["NW"] = '\\' , + ["NNW"] = 'n' + }, + ["Coleco"] = new Dictionary + { + ["Yellow"] = 'Y', + ["Red"] = 'R', + ["Blue"] = 'B', + ["Purple"] = 'P' + } + }; } } diff --git a/BizHawk.Client.Common/movie/bk2/StringLogs.cs b/BizHawk.Client.Common/movie/bk2/StringLogs.cs index af5e3b2974..e5585b84c3 100644 --- a/BizHawk.Client.Common/movie/bk2/StringLogs.cs +++ b/BizHawk.Client.Common/movie/bk2/StringLogs.cs @@ -42,7 +42,7 @@ namespace BizHawk.Client.Common void CopyTo(int index, string[] array, int arrayIndex, int count); } - class ListStringLog : List, IStringLog + internal class ListStringLog : List, IStringLog { public IStringLog Clone() { @@ -60,7 +60,7 @@ namespace BizHawk.Client.Common /// It should be faster than those alternatives, but wasteful of disk space. /// It should also be easier to add new IList-like methods than dealing with a database /// - class StreamStringLog : IStringLog + internal class StreamStringLog : IStringLog { List Offsets = new List(); long cursor = 0; @@ -165,7 +165,7 @@ namespace BizHawk.Client.Common } } - class Enumerator : IEnumerator + private class Enumerator : IEnumerator { public StreamStringLog log; int index = -1;