ugh, oops
This commit is contained in:
parent
602b47deba
commit
95bdfaba42
|
@ -28,6 +28,7 @@ namespace BizHawk.Client.Common
|
|||
//the movie will be spliced inbetween these if it is present
|
||||
public static CopyControllerAdapter MovieInputSourceAdapter = new CopyControllerAdapter();
|
||||
public static CopyControllerAdapter MovieOutputHardpoint = new CopyControllerAdapter();
|
||||
public static MultitrackRewiringControllerAdapter MultitrackRewiringAdapter = new MultitrackRewiringControllerAdapter();
|
||||
|
||||
//dont take my word for it, since the final word is actually in RewireInputChain, but here is a guide...
|
||||
//user -> Input -> ActiveController -> UDLR -> StickyXORPlayerInputAdapter -> TurboAdapter(TBD) -> Lua(?TBD?) -> ..
|
||||
|
|
|
@ -16,8 +16,8 @@ namespace BizHawk.Client.Common
|
|||
Global.StickyXORAdapter.Source = Global.UD_LR_ControllerAdapter;
|
||||
Global.AutofireStickyXORAdapter.Source = Global.StickyXORAdapter;
|
||||
|
||||
Global.MovieSession.MultiTrack.MultitrackRewiringAdapter.Source = Global.AutofireStickyXORAdapter;
|
||||
Global.MovieInputSourceAdapter.Source = Global.MovieSession.MultiTrack.MultitrackRewiringAdapter;
|
||||
Global.MultitrackRewiringAdapter.Source = Global.AutofireStickyXORAdapter;
|
||||
Global.MovieInputSourceAdapter.Source = Global.MultitrackRewiringAdapter;
|
||||
Global.ControllerOutput.Source = Global.MovieOutputHardpoint;
|
||||
|
||||
Global.Emulator.Controller = Global.ControllerOutput;
|
||||
|
|
|
@ -138,7 +138,7 @@ namespace BizHawk.Client.Common
|
|||
MovieControllerAdapter.LatchFromSource(input);
|
||||
if (MultiTrack.IsActive)
|
||||
{
|
||||
MultiTrack.MultitrackRewiringAdapter.Source = MovieControllerAdapter;
|
||||
Global.MultitrackRewiringAdapter.Source = MovieControllerAdapter;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -275,7 +275,7 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
if (MultiTrack.IsActive)
|
||||
{
|
||||
LatchMultitrackPlayerInput(Global.MovieInputSourceAdapter, MultiTrack.MultitrackRewiringAdapter);
|
||||
LatchMultitrackPlayerInput(Global.MovieInputSourceAdapter, Global.MultitrackRewiringAdapter);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using BizHawk.Emulation.Common;
|
||||
using System.Collections.Generic;
|
||||
using BizHawk.Emulation.Common;
|
||||
|
||||
namespace BizHawk.Client.Common
|
||||
{
|
||||
|
@ -9,8 +10,6 @@ namespace BizHawk.Client.Common
|
|||
Restart();
|
||||
}
|
||||
|
||||
public MultitrackRewiringControllerAdapter MultitrackRewiringAdapter { get; private set; }
|
||||
|
||||
public bool IsActive { get; set; }
|
||||
public int CurrentPlayer{ get; set; }
|
||||
public bool RecordAll { get; set; }
|
||||
|
@ -46,7 +45,6 @@ namespace BizHawk.Client.Common
|
|||
IsActive = false;
|
||||
CurrentPlayer = 0;
|
||||
RecordAll = false;
|
||||
MultitrackRewiringAdapter = new MultitrackRewiringControllerAdapter();
|
||||
}
|
||||
|
||||
public void SelectAll()
|
||||
|
|
Loading…
Reference in New Issue