rename IMovieController methods and classes to better describe what they are
This commit is contained in:
parent
919266d2dc
commit
cdfeda8b71
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
|||
/// </summary>
|
||||
public Action ModeChangedCallback { get; set; }
|
||||
|
||||
public void SetMovieController(ControllerDefinition definition)
|
||||
public void CreateMovieController(ControllerDefinition definition)
|
||||
{
|
||||
MovieControllerAdapter = new Bk2Controller(definition);
|
||||
MovieController = new Bk2Controller(definition);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -7,18 +7,18 @@ namespace BizHawk.Client.Common
|
|||
/// <summary>
|
||||
/// Latches to the given <see cref="IController" />
|
||||
/// </summary>
|
||||
void LatchFrom(IController source);
|
||||
void SetFrom(IController source);
|
||||
|
||||
/// <summary>
|
||||
/// Latches to only the buttons in the given <see cref="IController" /> for the given controller
|
||||
/// </summary>
|
||||
void LatchPlayerFrom(IController playerSource, int controllerNum);
|
||||
void SetPlayerFrom(IController playerSource, int controllerNum);
|
||||
|
||||
/// <summary>
|
||||
/// Latches to the given <see cref="IStickyController" />
|
||||
/// For buttons it latches autohold state, for analogs it latches mid value.
|
||||
/// </summary>
|
||||
void LatchFromSticky(IStickyController controller);
|
||||
void SetFromSticky(IStickyController controller);
|
||||
|
||||
/// <summary>
|
||||
/// Sets the controller to the state represented by the given mnemonic string
|
||||
|
|
|
@ -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; }
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -188,7 +188,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
public string InputStrMovie()
|
||||
{
|
||||
return MakeStringFor(Global.MovieSession.MovieControllerAdapter);
|
||||
return MakeStringFor(Global.MovieSession.MovieController);
|
||||
}
|
||||
|
||||
public string InputStrImmediate()
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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("#", "");
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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<float> p = new List<float>();
|
||||
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue