From cdfeda8b71a55ff2971f17d25e12cabc510a2fca Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 14 Apr 2020 20:10:50 -0500 Subject: [PATCH] rename IMovieController methods and classes to better describe what they are --- .../inputAdapters/InputManager.cs | 4 ++-- BizHawk.Client.Common/movie/MovieSession.cs | 18 +++++++++--------- .../movie/bk2/Bk2Controller.cs | 6 +++--- BizHawk.Client.Common/movie/bk2/Bk2Movie.cs | 2 +- .../movie/import/bkm/BkmMovie.cs | 2 +- .../movie/interfaces/IMovieController.cs | 6 +++--- .../movie/interfaces/IMovieSession.cs | 4 ++-- .../movie/tasproj/TasMovie.Editing.cs | 2 +- .../DisplayManager/OSDManager.cs | 2 +- BizHawk.Client.EmuHawk/MainForm.cs | 2 +- .../tools/Lua/Libraries/TAStudioLuaLibrary.cs | 2 +- .../tools/Macros/MacroInput.ButtonSelect.cs | 2 +- .../tools/Macros/MovieZone.cs | 12 ++++++------ .../tools/TAStudio/PatternsForm.cs | 18 +++++++++--------- .../tools/TAStudio/TAStudio.ListView.cs | 2 +- .../tools/TAStudio/TAStudio.cs | 2 +- 16 files changed, 43 insertions(+), 43 deletions(-) diff --git a/BizHawk.Client.Common/inputAdapters/InputManager.cs b/BizHawk.Client.Common/inputAdapters/InputManager.cs index 779678202d..728a3c0019 100644 --- a/BizHawk.Client.Common/inputAdapters/InputManager.cs +++ b/BizHawk.Client.Common/inputAdapters/InputManager.cs @@ -65,13 +65,13 @@ namespace BizHawk.Client.Common MovieInputSourceAdapter.Source = MultitrackRewiringAdapter; ControllerOutput.Source = MovieOutputHardpoint; - Global.MovieSession.SetMovieController(MovieInputSourceAdapter.Definition); + Global.MovieSession.CreateMovieController(MovieInputSourceAdapter.Definition); // connect the movie session before MovieOutputHardpoint if it is doing anything // otherwise connect the MovieInputSourceAdapter to it, effectively bypassing the movie session if (Global.MovieSession != null) { - MovieOutputHardpoint.Source = Global.MovieSession.MovieControllerAdapter; + MovieOutputHardpoint.Source = Global.MovieSession.MovieController; } else { diff --git a/BizHawk.Client.Common/movie/MovieSession.cs b/BizHawk.Client.Common/movie/MovieSession.cs index 09b8c4e138..443d177fa1 100644 --- a/BizHawk.Client.Common/movie/MovieSession.cs +++ b/BizHawk.Client.Common/movie/MovieSession.cs @@ -27,7 +27,7 @@ namespace BizHawk.Client.Common public bool MovieIsQueued => QueuedMovie != null; public MultitrackRecorder MultiTrack { get; } = new MultitrackRecorder(); - public IMovieController MovieControllerAdapter { get; set; } = MovieService.DefaultInstance.LogGeneratorInstance().MovieControllerAdapter; + public IMovieController MovieController { get; set; } = MovieService.DefaultInstance.LogGeneratorInstance().MovieControllerAdapter; public IMovie Movie { get; set; } public bool ReadOnly { get; set; } = true; @@ -47,9 +47,9 @@ namespace BizHawk.Client.Common /// public Action ModeChangedCallback { get; set; } - public void SetMovieController(ControllerDefinition definition) + public void CreateMovieController(ControllerDefinition definition) { - MovieControllerAdapter = new Bk2Controller(definition); + MovieController = new Bk2Controller(definition); } /// @@ -118,16 +118,16 @@ namespace BizHawk.Client.Common if (Movie.InputLogLength > Global.Emulator.Frame) { var input = Movie.GetInputState(Global.Emulator.Frame); - MovieControllerAdapter.LatchFrom(input); + MovieController.SetFrom(input); } - MovieControllerAdapter.LatchPlayerFrom(rewiredSource, MultiTrack.CurrentPlayer); + MovieController.SetPlayerFrom(rewiredSource, MultiTrack.CurrentPlayer); } } public void LatchInputFromPlayer(IController source) { - MovieControllerAdapter.LatchFrom(source); + MovieController.SetFrom(source); } /// @@ -149,10 +149,10 @@ namespace BizHawk.Client.Common return; } - MovieControllerAdapter.LatchFrom(input); + MovieController.SetFrom(input); if (MultiTrack.IsActive) { - Global.InputManager.MultitrackRewiringAdapter.Source = MovieControllerAdapter; + Global.InputManager.MultitrackRewiringAdapter.Source = MovieController; } } @@ -304,7 +304,7 @@ namespace BizHawk.Client.Common // we don't want TasMovie to latch user input outside its internal recording mode, so limit it to autohold if (Movie is TasMovie && Movie.IsPlaying()) { - MovieControllerAdapter.LatchFromSticky(Global.InputManager.AutofireStickyXorAdapter); + MovieController.SetFromSticky(Global.InputManager.AutofireStickyXorAdapter); } else { diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs b/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs index 6747251c4e..a635c902d1 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs @@ -49,7 +49,7 @@ namespace BizHawk.Client.Common #region IMovieController Implementation - public void LatchFrom(IController source) + public void SetFrom(IController source) { foreach (var button in Definition.BoolButtons) { @@ -62,7 +62,7 @@ namespace BizHawk.Client.Common } } - public void LatchPlayerFrom(IController playerSource, int controllerNum) + public void SetPlayerFrom(IController playerSource, int controllerNum) { foreach (var button in playerSource.Definition.BoolButtons) { @@ -92,7 +92,7 @@ namespace BizHawk.Client.Common } } - public void LatchFromSticky(IStickyController controller) + public void SetFromSticky(IStickyController controller) { foreach (var button in Definition.BoolButtons) { diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs index cb1b28c93c..d0d85079e3 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs @@ -125,7 +125,7 @@ namespace BizHawk.Client.Common { if (frame < FrameCount && frame >= 0) { - _adapter ??= new Bk2Controller(Global.MovieSession.MovieControllerAdapter.Definition); + _adapter ??= new Bk2Controller(Global.MovieSession.MovieController.Definition); int getFrame; diff --git a/BizHawk.Client.Common/movie/import/bkm/BkmMovie.cs b/BizHawk.Client.Common/movie/import/bkm/BkmMovie.cs index 53f70b161d..957308e2ed 100644 --- a/BizHawk.Client.Common/movie/import/bkm/BkmMovie.cs +++ b/BizHawk.Client.Common/movie/import/bkm/BkmMovie.cs @@ -59,7 +59,7 @@ namespace BizHawk.Client.Common var adapter = new BkmControllerAdapter { - Definition = Global.MovieSession.MovieControllerAdapter.Definition + Definition = Global.MovieSession.MovieController.Definition }; adapter.SetControllersAsMnemonic(_log[getFrame]); return adapter; diff --git a/BizHawk.Client.Common/movie/interfaces/IMovieController.cs b/BizHawk.Client.Common/movie/interfaces/IMovieController.cs index b132536807..8b0ab97f92 100644 --- a/BizHawk.Client.Common/movie/interfaces/IMovieController.cs +++ b/BizHawk.Client.Common/movie/interfaces/IMovieController.cs @@ -7,18 +7,18 @@ namespace BizHawk.Client.Common /// /// Latches to the given /// - void LatchFrom(IController source); + void SetFrom(IController source); /// /// Latches to only the buttons in the given for the given controller /// - void LatchPlayerFrom(IController playerSource, int controllerNum); + void SetPlayerFrom(IController playerSource, int controllerNum); /// /// Latches to the given /// For buttons it latches autohold state, for analogs it latches mid value. /// - void LatchFromSticky(IStickyController controller); + void SetFromSticky(IStickyController controller); /// /// Sets the controller to the state represented by the given mnemonic string diff --git a/BizHawk.Client.Common/movie/interfaces/IMovieSession.cs b/BizHawk.Client.Common/movie/interfaces/IMovieSession.cs index a1f98c93d4..9a3d37e0ef 100644 --- a/BizHawk.Client.Common/movie/interfaces/IMovieSession.cs +++ b/BizHawk.Client.Common/movie/interfaces/IMovieSession.cs @@ -7,14 +7,14 @@ namespace BizHawk.Client.Common { IMovie Movie { get; set; } IMovie QueuedMovie { get; } - IMovieController MovieControllerAdapter { get; } + IMovieController MovieController { get; } IMovieController MovieControllerInstance(); MultitrackRecorder MultiTrack { get; } IController PreviousFrame { get; } IController CurrentInput { get; } - void SetMovieController(ControllerDefinition definition); + void CreateMovieController(ControllerDefinition definition); bool ReadOnly { get; set; } bool MovieIsQueued { get; } diff --git a/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs b/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs index e0576e3f40..89d9612ac3 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasMovie.Editing.cs @@ -393,7 +393,7 @@ namespace BizHawk.Client.Common int oldLength = InputLogLength; ChangeLog.AddGeneralUndo(oldLength, oldLength + numFrames - 1); - Global.MovieSession.MovieControllerAdapter.LatchFromSticky(Global.InputManager.AutofireStickyXorAdapter); + Global.MovieSession.MovieController.SetFromSticky(Global.InputManager.AutofireStickyXorAdapter); var lg = LogGeneratorInstance(); lg.SetSource(Global.InputManager.MovieOutputHardpoint); // account for autohold. needs autohold pattern to be already recorded in the current frame diff --git a/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs b/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs index 021d00cb2a..b4b772a708 100644 --- a/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs +++ b/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs @@ -188,7 +188,7 @@ namespace BizHawk.Client.EmuHawk public string InputStrMovie() { - return MakeStringFor(Global.MovieSession.MovieControllerAdapter); + return MakeStringFor(Global.MovieSession.MovieController); } public string InputStrImmediate() diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 861219e4a8..f0e7ff1bfe 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -210,7 +210,7 @@ namespace BizHawk.Client.EmuHawk MovieSession = new MovieSession { Movie = MovieService.DefaultInstance, - MovieControllerAdapter = MovieService.DefaultInstance.LogGeneratorInstance().MovieControllerAdapter, + MovieController = MovieService.DefaultInstance.LogGeneratorInstance().MovieControllerAdapter, MessageCallback = AddOnScreenMessage, PopupCallback = ShowMessageCoreComm, AskYesNoCallback = StateErrorAskUser, diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/TAStudioLuaLibrary.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/TAStudioLuaLibrary.cs index 8057e9aaa6..86614b98ce 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/TAStudioLuaLibrary.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/TAStudioLuaLibrary.cs @@ -375,7 +375,7 @@ namespace BizHawk.Client.EmuHawk var branch = Tastudio.CurrentTasMovie.Branches.FirstOrDefault(b => b.UniqueIdentifier.ToString() == branchId); if (branch != null && frame < branch.InputLog.Count) { - var adapter = new Bk2Controller(Global.MovieSession.MovieControllerAdapter.Definition); + var adapter = new Bk2Controller(Global.MovieSession.MovieController.Definition); adapter.SetFromMnemonic(branch.InputLog[frame]); foreach (var button in adapter.Definition.BoolButtons) diff --git a/BizHawk.Client.EmuHawk/tools/Macros/MacroInput.ButtonSelect.cs b/BizHawk.Client.EmuHawk/tools/Macros/MacroInput.ButtonSelect.cs index 5b0dfdea64..3acc6598e0 100644 --- a/BizHawk.Client.EmuHawk/tools/Macros/MacroInput.ButtonSelect.cs +++ b/BizHawk.Client.EmuHawk/tools/Macros/MacroInput.ButtonSelect.cs @@ -48,7 +48,7 @@ namespace BizHawk.Client.EmuHawk s.Refresh(); // Update the selected zone's key - var lg = Global.MovieSession.LogGeneratorInstance(Global.MovieSession.MovieControllerAdapter); + var lg = Global.MovieSession.LogGeneratorInstance(Global.MovieSession.MovieController); string key = lg.GenerateLogKey(); key = key.Replace("LogKey:", "").Replace("#", ""); diff --git a/BizHawk.Client.EmuHawk/tools/Macros/MovieZone.cs b/BizHawk.Client.EmuHawk/tools/Macros/MovieZone.cs index 1db588d1af..d05de07645 100644 --- a/BizHawk.Client.EmuHawk/tools/Macros/MovieZone.cs +++ b/BizHawk.Client.EmuHawk/tools/Macros/MovieZone.cs @@ -21,9 +21,9 @@ namespace BizHawk.Client.EmuHawk _emulator = emulator; _tools = tools; var lg = movie.LogGeneratorInstance(); - lg.SetSource(Global.MovieSession.MovieControllerAdapter); + lg.SetSource(Global.MovieSession.MovieController); _targetController = new Bk2Controller(_emulator.ControllerDefinition); - _targetController.LatchFrom(_targetController); // Reference and create all buttons + _targetController.SetFrom(_targetController); // Reference and create all buttons if (key == "") { @@ -72,7 +72,7 @@ namespace BizHawk.Client.EmuHawk { for (int i = 0; i < length; i++) { - _controller.LatchFrom(movie.GetInputState(i + start)); + _controller.SetFrom(movie.GetInputState(i + start)); _log[i] = logGenerator.GenerateLogEntry(); } } @@ -122,7 +122,7 @@ namespace BizHawk.Client.EmuHawk { _controller.SetFromMnemonic(_log[i]); LatchFromSourceButtons(_targetController, _controller); - newController.LatchFrom(_targetController); + newController.SetFrom(_targetController); _log[i] = logGenerator.GenerateLogEntry(); } @@ -229,7 +229,7 @@ namespace BizHawk.Client.EmuHawk // If the LogKey contains buttons/controls not accepted by the emulator, // tell the user and display the macro's controller name and player count _inputKey = readText[0]; - var lg = Global.MovieSession.LogGeneratorInstance(Global.MovieSession.MovieControllerAdapter); + var lg = Global.MovieSession.LogGeneratorInstance(Global.MovieSession.MovieController); string key = lg.GenerateLogKey(); key = key.Replace("LogKey:", "").Replace("#", ""); key = key.Substring(0, key.Length - 1); @@ -258,7 +258,7 @@ namespace BizHawk.Client.EmuHawk // Adapters _targetController = new Bk2Controller(_emulator.ControllerDefinition); - _targetController.LatchFrom(_targetController); // Reference and create all buttons + _targetController.SetFrom(_targetController); // Reference and create all buttons string[] keys = _inputKey.Split('|'); var d = new ControllerDefinition(_emulator.ControllerDefinition); foreach (var k in keys) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/PatternsForm.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/PatternsForm.cs index 9948710eda..576398e690 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/PatternsForm.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/PatternsForm.cs @@ -17,19 +17,19 @@ namespace BizHawk.Client.EmuHawk private string SelectedButton => ButtonBox.Text; - private bool IsBool => SelectedButton == "Default bool Auto-Fire" || Global.MovieSession.MovieControllerAdapter.Definition.BoolButtons.Contains(SelectedButton); + private bool IsBool => SelectedButton == "Default bool Auto-Fire" || Global.MovieSession.MovieController.Definition.BoolButtons.Contains(SelectedButton); public PatternsForm(TAStudio owner) { InitializeComponent(); _tastudio = owner; - foreach (var button in Global.MovieSession.MovieControllerAdapter.Definition.BoolButtons) + foreach (var button in Global.MovieSession.MovieController.Definition.BoolButtons) { ButtonBox.Items.Add(button); } - foreach (var button in Global.MovieSession.MovieControllerAdapter.Definition.AxisControls) + foreach (var button in Global.MovieSession.MovieController.Definition.AxisControls) { ButtonBox.Items.Add(button); } @@ -182,7 +182,7 @@ namespace BizHawk.Client.EmuHawk if (PatternList.SelectedIndex != -1 && PatternList.SelectedIndex < _values.Count) { - index = Global.MovieSession.MovieControllerAdapter.Definition.BoolButtons.IndexOf(SelectedButton); + index = Global.MovieSession.MovieController.Definition.BoolButtons.IndexOf(SelectedButton); if (SelectedButton == "Default bool Auto-Fire") { index = _tastudio.BoolPatterns.Length - 1; @@ -202,7 +202,7 @@ namespace BizHawk.Client.EmuHawk } else { - index = Global.MovieSession.MovieControllerAdapter.Definition.AxisControls.IndexOf(SelectedButton); + index = Global.MovieSession.MovieController.Definition.AxisControls.IndexOf(SelectedButton); } LagBox.Checked = _tastudio.FloatPatterns[index].SkipsLag; @@ -221,7 +221,7 @@ namespace BizHawk.Client.EmuHawk private void UpdatePattern() { - int index = Global.MovieSession.MovieControllerAdapter.Definition.BoolButtons.IndexOf(SelectedButton); + int index = Global.MovieSession.MovieController.Definition.BoolButtons.IndexOf(SelectedButton); if (SelectedButton == "Default bool Auto-Fire") { index = _tastudio.BoolPatterns.Length - 1; @@ -248,7 +248,7 @@ namespace BizHawk.Client.EmuHawk } else { - index = Global.MovieSession.MovieControllerAdapter.Definition.AxisControls.IndexOf(SelectedButton); + index = Global.MovieSession.MovieController.Definition.AxisControls.IndexOf(SelectedButton); } List p = new List(); @@ -271,7 +271,7 @@ namespace BizHawk.Client.EmuHawk private void GetPattern() { - int index = Global.MovieSession.MovieControllerAdapter.Definition.BoolButtons.IndexOf(SelectedButton); + int index = Global.MovieSession.MovieController.Definition.BoolButtons.IndexOf(SelectedButton); if (SelectedButton == "Default bool Auto-Fire") { @@ -310,7 +310,7 @@ namespace BizHawk.Client.EmuHawk } else { - index = Global.MovieSession.MovieControllerAdapter.Definition.AxisControls.IndexOf(SelectedButton); + index = Global.MovieSession.MovieController.Definition.AxisControls.IndexOf(SelectedButton); } float[] p = _tastudio.FloatPatterns[index].Pattern; diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index 5f31bee139..6a797ff354 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -60,7 +60,7 @@ namespace BizHawk.Client.EmuHawk private int? _seekStartFrame; private bool _unpauseAfterSeeking; - private ControllerDefinition ControllerType => Global.MovieSession.MovieControllerAdapter.Definition; + private ControllerDefinition ControllerType => Global.MovieSession.MovieController.Definition; public bool WasRecording { get; set; } public AutoPatternBool[] BoolPatterns; diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 3140a9345d..9bf9295f4d 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -414,7 +414,7 @@ namespace BizHawk.Client.EmuHawk }); var columnNames = Global.MovieSession - .LogGeneratorInstance(Global.MovieSession.MovieControllerAdapter) + .LogGeneratorInstance(Global.MovieSession.MovieController) .Map(); foreach (var kvp in columnNames)