Some movie code reorg and cleanup
This commit is contained in:
parent
1768350d65
commit
c807e27496
|
@ -140,6 +140,7 @@
|
|||
<Compile Include="movie\bk2\Bk2Movie.InputLog.cs" />
|
||||
<Compile Include="movie\bk2\Bk2Movie.IO.cs" />
|
||||
<Compile Include="movie\bk2\Bk2Movie.ModeApi.cs" />
|
||||
<Compile Include="movie\bkm\BkmControllerAdapter.cs" />
|
||||
<Compile Include="movie\bkm\BkmHeader.cs" />
|
||||
<Compile Include="movie\bkm\BkmLogEntryGenerator.cs" />
|
||||
<Compile Include="movie\bkm\BkmMnemonicConstants.cs" />
|
||||
|
|
|
@ -73,7 +73,7 @@ namespace BizHawk.Client.Common
|
|||
)]
|
||||
public void SetFromMnemonicStr(string inputLogEntry)
|
||||
{
|
||||
var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
m.SetControllersAsMnemonic(inputLogEntry);
|
||||
|
||||
foreach (var button in m.Type.BoolButtons)
|
||||
|
|
|
@ -31,7 +31,7 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
var input = Lua.NewTable();
|
||||
|
||||
var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
m.SetControllersAsMnemonic(
|
||||
Global.MovieSession.Movie.GetInput(frame));
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ namespace BizHawk.Client.Common
|
|||
public class MovieSession
|
||||
{
|
||||
private readonly MultitrackRecording _multiTrack = new MultitrackRecording();
|
||||
private readonly MovieControllerAdapter _movieControllerAdapter = new MovieControllerAdapter();
|
||||
private readonly BkmControllerAdapter _movieControllerAdapter = new BkmControllerAdapter();
|
||||
|
||||
public MovieSession()
|
||||
{
|
||||
|
@ -18,7 +18,7 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
|
||||
public MultitrackRecording MultiTrack { get { return _multiTrack; } }
|
||||
public MovieControllerAdapter MovieControllerAdapter { get { return _movieControllerAdapter; } }
|
||||
public BkmControllerAdapter MovieControllerAdapter { get { return _movieControllerAdapter; } }
|
||||
|
||||
public IMovie Movie { get; set; }
|
||||
public bool ReadOnly { get; set; }
|
||||
|
|
|
@ -42,9 +42,14 @@ namespace BizHawk.Client.Common
|
|||
sb.Append('.');
|
||||
}
|
||||
|
||||
foreach (var floatBtn in _source.Type.FloatControls)
|
||||
if (_source.Type.FloatControls.Any())
|
||||
{
|
||||
sb.Append("000 ");
|
||||
foreach (var floatBtn in _source.Type.FloatControls)
|
||||
{
|
||||
sb.Append(" 000,");
|
||||
}
|
||||
|
||||
sb.Remove(sb.Length - 1, 1);
|
||||
}
|
||||
|
||||
sb.Append('|');
|
||||
|
@ -60,10 +65,15 @@ namespace BizHawk.Client.Common
|
|||
sb.Append(_source.IsPressed(button) ? '1' : '.');
|
||||
}
|
||||
|
||||
foreach (var floatBtn in _source.Type.FloatControls)
|
||||
if (_source.Type.FloatControls.Any())
|
||||
{
|
||||
var val = (int)_source.GetFloat(floatBtn);
|
||||
sb.Append(val).Append(' ');
|
||||
foreach (var floatBtn in _source.Type.FloatControls)
|
||||
{
|
||||
var val = (int)_source.GetFloat(floatBtn);
|
||||
sb.Append(' ').Append(val).Append(',');
|
||||
}
|
||||
|
||||
sb.Remove(sb.Length - 1, 1);
|
||||
}
|
||||
|
||||
sb.Append('|');
|
||||
|
|
|
@ -226,527 +226,4 @@ namespace BizHawk.Client.Common
|
|||
new Tuple<string, char>(null, '|'),
|
||||
};
|
||||
}
|
||||
|
||||
public class MovieControllerAdapter : IController
|
||||
{
|
||||
//IController implementation:
|
||||
public ControllerDefinition Type { get; set; }
|
||||
public bool this[string button] { get { return MyBoolButtons[button]; } }
|
||||
public bool IsPressed(string button) { return MyBoolButtons[button]; }
|
||||
public float GetFloat(string name) { return MyFloatControls[name]; }
|
||||
//--------
|
||||
|
||||
private readonly WorkingDictionary<string, bool> MyBoolButtons = new WorkingDictionary<string, bool>();
|
||||
private readonly WorkingDictionary<string, float> MyFloatControls = new WorkingDictionary<string, float>();
|
||||
|
||||
void Force(string button, bool state)
|
||||
{
|
||||
MyBoolButtons[button] = state;
|
||||
}
|
||||
|
||||
void Force(string name, float state)
|
||||
{
|
||||
MyFloatControls[name] = state;
|
||||
}
|
||||
|
||||
string ControlType { get { return Type.Name; } }
|
||||
|
||||
class MnemonicChecker
|
||||
{
|
||||
private readonly string _mnemonic;
|
||||
|
||||
public MnemonicChecker(string mnemonic)
|
||||
{
|
||||
_mnemonic = mnemonic;
|
||||
}
|
||||
|
||||
public bool this[int c]
|
||||
{
|
||||
get
|
||||
{
|
||||
if (string.IsNullOrEmpty(_mnemonic))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (_mnemonic[c] == '.')
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (_mnemonic[c] == '?')
|
||||
{
|
||||
return new Random((int)DateTime.Now.Ticks).Next(0, 10) > 5;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// latches one player from the source
|
||||
/// </summary>
|
||||
public void LatchPlayerFromSource(IController playerSource, int playerNum)
|
||||
{
|
||||
foreach (string button in playerSource.Type.BoolButtons)
|
||||
{
|
||||
ButtonNameParser bnp = ButtonNameParser.Parse(button);
|
||||
if (bnp == null) continue;
|
||||
if (bnp.PlayerNum != playerNum) continue;
|
||||
bool val = playerSource[button];
|
||||
MyBoolButtons[button] = val;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// latches all buttons from the provided source
|
||||
/// </summary>
|
||||
public void LatchFromSource(IController source)
|
||||
{
|
||||
foreach (string button in Type.BoolButtons)
|
||||
{
|
||||
MyBoolButtons[button] = source[button];
|
||||
}
|
||||
|
||||
foreach (string name in Type.FloatControls)
|
||||
{
|
||||
MyFloatControls[name] = source.GetFloat(name);
|
||||
}
|
||||
}
|
||||
|
||||
//Redundancy beats crazy if logic that makes new consoles annoying to add
|
||||
|
||||
private void SetGBAControllersAsMnemonic(string mnemonic)
|
||||
{
|
||||
MnemonicChecker c = new MnemonicChecker(mnemonic);
|
||||
MyBoolButtons.Clear();
|
||||
if (mnemonic.Length < 2)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (mnemonic[1] == 'P')
|
||||
{
|
||||
Force("Power", true);
|
||||
}
|
||||
int start = 3;
|
||||
foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys)
|
||||
{
|
||||
Force(button, c[start++]);
|
||||
}
|
||||
}
|
||||
|
||||
private void SetGensis6ControllersAsMnemonic(string mnemonic)
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
||||
for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++)
|
||||
{
|
||||
int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1);
|
||||
|
||||
if (mnemonic.Length < srcindex + 3 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
int start = 3;
|
||||
foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys)
|
||||
{
|
||||
Force("P" + player + " " + button, c[srcindex + start++]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetSNESControllersAsMnemonic(string mnemonic)
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++)
|
||||
{
|
||||
int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1);
|
||||
|
||||
if (mnemonic.Length < srcindex + 3 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
int start = 3;
|
||||
foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys)
|
||||
{
|
||||
Force("P" + player + " " + button, c[srcindex + start++]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetN64ControllersAsMnemonic(string mnemonic)
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++)
|
||||
{
|
||||
int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + BkmMnemonicConstants.ANALOGS[ControlType].Count * 4 + 1 + 1);
|
||||
|
||||
if (mnemonic.Length < srcindex + 3 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
int start = 3;
|
||||
foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys)
|
||||
{
|
||||
Force("P" + player + " " + button, c[srcindex + start++]);
|
||||
}
|
||||
|
||||
foreach (string name in BkmMnemonicConstants.ANALOGS[ControlType].Keys)
|
||||
{
|
||||
Force("P" + player + " " + name, Int32.Parse(mnemonic.Substring(srcindex + start, 4)));
|
||||
start += 5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetSaturnControllersAsMnemonic(string mnemonic)
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++)
|
||||
{
|
||||
int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1);
|
||||
|
||||
if (mnemonic.Length < srcindex + 3 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
int start = 3;
|
||||
foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys)
|
||||
{
|
||||
Force("P" + player + " " + button, c[srcindex + start++]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetAtari7800AsMnemonic(string mnemonic)
|
||||
{
|
||||
MnemonicChecker c = new MnemonicChecker(mnemonic);
|
||||
MyBoolButtons.Clear();
|
||||
|
||||
if (mnemonic.Length < 5)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (mnemonic[1] == 'P')
|
||||
{
|
||||
Force("Power", true);
|
||||
}
|
||||
if (mnemonic[2] == 'r')
|
||||
{
|
||||
Force("Reset", true);
|
||||
}
|
||||
if (mnemonic[3] == 's')
|
||||
{
|
||||
Force("Select", true);
|
||||
}
|
||||
if (mnemonic[4] == 'p')
|
||||
{
|
||||
Force("Pause", true);
|
||||
}
|
||||
|
||||
for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++)
|
||||
{
|
||||
int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1);
|
||||
int start = 6;
|
||||
if (mnemonic.Length < srcindex + start + BkmMnemonicConstants.BUTTONS[ControlType].Count)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys)
|
||||
{
|
||||
Force("P" + player + " " + button, c[srcindex + start++]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetDualGameBoyControllerAsMnemonic(string mnemonic)
|
||||
{
|
||||
var checker = new MnemonicChecker(mnemonic);
|
||||
MyBoolButtons.Clear();
|
||||
for (int i = 0; i < BkmMnemonicConstants.DGBMnemonic.Length; i++)
|
||||
{
|
||||
var t = BkmMnemonicConstants.DGBMnemonic[i];
|
||||
if (t.Item1 != null)
|
||||
{
|
||||
Force(t.Item1, checker[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetWonderSwanControllerAsMnemonic(string mnemonic)
|
||||
{
|
||||
var checker = new MnemonicChecker(mnemonic);
|
||||
MyBoolButtons.Clear();
|
||||
for (int i = 0; i < BkmMnemonicConstants.WSMnemonic.Length; i++)
|
||||
{
|
||||
var t = BkmMnemonicConstants.WSMnemonic[i];
|
||||
if (t.Item1 != null)
|
||||
{
|
||||
Force(t.Item1, checker[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetC64ControllersAsMnemonic(string mnemonic)
|
||||
{
|
||||
MnemonicChecker c = new MnemonicChecker(mnemonic);
|
||||
MyBoolButtons.Clear();
|
||||
|
||||
|
||||
for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++)
|
||||
{
|
||||
int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1);
|
||||
|
||||
if (mnemonic.Length < srcindex + 1 + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
int start = 1;
|
||||
foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys)
|
||||
{
|
||||
Force("P" + player + " " + button, c[srcindex + start++]);
|
||||
}
|
||||
}
|
||||
|
||||
int startk = 13;
|
||||
foreach (string button in BkmMnemonicConstants.BUTTONS["Commodore 64 Keyboard"].Keys)
|
||||
{
|
||||
Force(button, c[startk++]);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// latches all buttons from the supplied mnemonic string
|
||||
/// </summary>
|
||||
public void SetControllersAsMnemonic(string mnemonic)
|
||||
{
|
||||
if (ControlType == "Null Controller")
|
||||
{
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "SNES Controller")
|
||||
{
|
||||
SetSNESControllersAsMnemonic(mnemonic);
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "Commodore 64 Controller")
|
||||
{
|
||||
SetC64ControllersAsMnemonic(mnemonic);
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "GBA Controller")
|
||||
{
|
||||
SetGBAControllersAsMnemonic(mnemonic);
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "Atari 7800 ProLine Joystick Controller")
|
||||
{
|
||||
SetAtari7800AsMnemonic(mnemonic);
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "Dual Gameboy Controller")
|
||||
{
|
||||
SetDualGameBoyControllerAsMnemonic(mnemonic);
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "WonderSwan Controller")
|
||||
{
|
||||
SetWonderSwanControllerAsMnemonic(mnemonic);
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "Nintento 64 Controller")
|
||||
{
|
||||
SetN64ControllersAsMnemonic(mnemonic);
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "Saturn Controller")
|
||||
{
|
||||
SetSaturnControllersAsMnemonic(mnemonic);
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "PSP Controller")
|
||||
{
|
||||
// TODO
|
||||
return;
|
||||
}
|
||||
else if (ControlType == "GPGX Genesis Controller")
|
||||
{
|
||||
SetGensis6ControllersAsMnemonic(mnemonic);
|
||||
return;
|
||||
}
|
||||
|
||||
MnemonicChecker c = new MnemonicChecker(mnemonic);
|
||||
|
||||
MyBoolButtons.Clear();
|
||||
|
||||
int start = 3;
|
||||
if (ControlType == "NES Controller")
|
||||
{
|
||||
if (mnemonic.Length < 2)
|
||||
{
|
||||
return;
|
||||
}
|
||||
else if (mnemonic[1] == 'P')
|
||||
{
|
||||
Force("Power", true);
|
||||
}
|
||||
else if (mnemonic[1] == 'E')
|
||||
{
|
||||
Force("FDS Eject", true);
|
||||
}
|
||||
else if (mnemonic[1] == '0')
|
||||
{
|
||||
Force("FDS Insert 0", true);
|
||||
}
|
||||
else if (mnemonic[1] == '1')
|
||||
{
|
||||
Force("FDS Insert 1", true);
|
||||
}
|
||||
else if (mnemonic[1] == '2')
|
||||
{
|
||||
Force("FDS Insert 2", true);
|
||||
}
|
||||
else if (mnemonic[1] == '3')
|
||||
{
|
||||
Force("FDS Insert 3", true);
|
||||
}
|
||||
else if (mnemonic[1] == 'c')
|
||||
{
|
||||
Force("VS Coin 1", true);
|
||||
}
|
||||
else if (mnemonic[1] == 'C')
|
||||
{
|
||||
Force("VS Coin 2", true);
|
||||
}
|
||||
else if (mnemonic[1] != '.')
|
||||
{
|
||||
Force("Reset", true);
|
||||
}
|
||||
}
|
||||
if (ControlType == "Gameboy Controller")
|
||||
{
|
||||
if (mnemonic.Length < 2) return;
|
||||
Force("Power", mnemonic[1] != '.');
|
||||
}
|
||||
if (ControlType == "Genesis 3-Button Controller")
|
||||
{
|
||||
if (mnemonic.Length < 2) return;
|
||||
Force("Reset", mnemonic[1] != '.');
|
||||
}
|
||||
if (ControlType == "SMS Controller" || ControlType == "TI83 Controller" || ControlType == "ColecoVision Basic Controller")
|
||||
{
|
||||
start = 1;
|
||||
}
|
||||
if (ControlType == "Atari 2600 Basic Controller")
|
||||
{
|
||||
if (mnemonic.Length < 2) return;
|
||||
Force("Reset", mnemonic[1] != '.' && mnemonic[1] != '0');
|
||||
Force("Select", mnemonic[2] != '.' && mnemonic[2] != '0');
|
||||
start = 4;
|
||||
}
|
||||
for (int player = 1; player <= BkmMnemonicConstants.PLAYERS[ControlType]; player++)
|
||||
{
|
||||
int srcindex = (player - 1) * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1);
|
||||
int ctr = start;
|
||||
if (mnemonic.Length < srcindex + ctr + BkmMnemonicConstants.BUTTONS[ControlType].Count - 1)
|
||||
{
|
||||
return;
|
||||
}
|
||||
string prefix = "";
|
||||
if (ControlType != "Gameboy Controller" && ControlType != "TI83 Controller")
|
||||
{
|
||||
prefix = "P" + player + " ";
|
||||
}
|
||||
foreach (string button in BkmMnemonicConstants.BUTTONS[ControlType].Keys)
|
||||
{
|
||||
Force(prefix + button, c[srcindex + ctr++]);
|
||||
}
|
||||
}
|
||||
if (ControlType == "SMS Controller")
|
||||
{
|
||||
int srcindex = BkmMnemonicConstants.PLAYERS[ControlType] * (BkmMnemonicConstants.BUTTONS[ControlType].Count + 1);
|
||||
int ctr = start;
|
||||
foreach (string command in BkmMnemonicConstants.COMMANDS[ControlType].Keys)
|
||||
{
|
||||
Force(command, c[srcindex + ctr++]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -250,7 +250,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
public string InputStrOrAll()
|
||||
{
|
||||
var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
|
||||
if (Global.MovieSession.Movie.IsActive)
|
||||
{
|
||||
|
@ -286,7 +286,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
if (Global.MovieSession.Movie.IsActive)
|
||||
{
|
||||
var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
m.SetControllersAsMnemonic(
|
||||
Global.MovieSession.Movie.GetInput(Global.Emulator.Frame - 1));
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (Global.MovieSession.Movie.IsActive && !Global.MovieSession.Movie.IsFinished)
|
||||
{
|
||||
var mnemonicStr = Global.MovieSession.Movie.GetInput(Global.Emulator.Frame - 1);
|
||||
var m = new MovieControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
var m = new BkmControllerAdapter { Type = Global.MovieSession.MovieControllerAdapter.Type };
|
||||
m.SetControllersAsMnemonic(mnemonicStr);
|
||||
|
||||
var x = m.GetFloat(Controller + " X Axis");
|
||||
|
|
Loading…
Reference in New Issue