Make LagCount get/set in IEmulator and refactored emulators. Implemented the Lag counter in the NES core.
This commit is contained in:
parent
2fa3561c45
commit
6732cd50ff
|
@ -663,7 +663,7 @@ namespace BizHawk.Emulation.Consoles.Calculator
|
|||
}
|
||||
|
||||
public int Frame {get; set;}
|
||||
public int LagCount { get { return 0; } }
|
||||
public int LagCount { get { return 0; } set { return; } }
|
||||
|
||||
public bool DeterministicEmulation { get { return true; } set { } }
|
||||
|
||||
|
|
|
@ -652,7 +652,7 @@ namespace BizHawk.Emulation.Consoles.Gameboy
|
|||
get { throw new NotImplementedException(); }
|
||||
}
|
||||
|
||||
public int LagCount { get { return 0; } } //TODO: implement
|
||||
public int LagCount { get { return 0; } set { return; } } //TODO: implement
|
||||
|
||||
public byte[] SaveRam
|
||||
{
|
||||
|
|
|
@ -65,7 +65,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
bool resetSignal;
|
||||
public void FrameAdvance(bool render)
|
||||
{
|
||||
if (resetSignal)
|
||||
lagged = true;
|
||||
if (resetSignal)
|
||||
{
|
||||
cpu.PC = cpu.ReadWord(MOS6502.ResetVector);
|
||||
apu.WriteReg(0x4015, 0);
|
||||
|
@ -77,6 +78,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
Controller.UnpressButton("Reset");
|
||||
resetSignal = Controller["Reset"];
|
||||
ppu.FrameAdvance();
|
||||
if (lagged)
|
||||
_lagcount++;
|
||||
}
|
||||
|
||||
protected void RunCpu(int ppu_cycles)
|
||||
|
@ -160,7 +163,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
//many todos here
|
||||
if (addr == 0x4016)
|
||||
{
|
||||
byte ret = ports[0].Read();
|
||||
lagged = false;
|
||||
byte ret = ports[0].Read();
|
||||
return ret;
|
||||
}
|
||||
else return 0;
|
||||
|
|
|
@ -214,8 +214,10 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
|||
|
||||
|
||||
int _frame;
|
||||
int _lagcount;
|
||||
bool lagged = true;
|
||||
public int Frame { get { return _frame; } set { _frame = value; } }
|
||||
public int LagCount { get { return 0; } } //TODO: implement this
|
||||
public int LagCount { get { return _lagcount; } set { _lagcount = value; } }
|
||||
|
||||
public bool DeterministicEmulation { get { return true; } set { } }
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@ namespace BizHawk.Emulation.Consoles.TurboGrafx
|
|||
}
|
||||
|
||||
public int Frame { get; set; }
|
||||
public int LagCount { get { return 0; } } //TODO: Implement this
|
||||
public int LagCount { get { return 0; } set { return; } } //TODO: Implement this
|
||||
|
||||
public void FrameAdvance(bool render)
|
||||
{
|
||||
|
|
|
@ -140,7 +140,7 @@ namespace BizHawk.Emulation.Consoles.Sega
|
|||
}
|
||||
|
||||
public int Frame { get; set; }
|
||||
public int LagCount { get { return 0; } } //TODO: Implement
|
||||
public int LagCount { get { return 0; } set { return; } } //TODO: Implement
|
||||
public bool DeterministicEmulation { get; set; }
|
||||
public string SystemId { get { return "GEN"; } }
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ namespace BizHawk.Emulation.Consoles.Sega
|
|||
public bool HasYM2413 = false;
|
||||
|
||||
public int Frame { get; set; }
|
||||
public int LagCount { get { return 0; } } //TODO: implement this
|
||||
public int LagCount { get { return 0; } set { return; } } //TODO: implement this
|
||||
private byte Port01 = 0xFF;
|
||||
private byte Port02 = 0xFF;
|
||||
private byte Port3E = 0xAF;
|
||||
|
|
|
@ -33,7 +33,9 @@ namespace BizHawk
|
|||
public void SetControllersAsMnemonic(string mnemonic) { return; }
|
||||
|
||||
public int Frame { get; set; }
|
||||
public int LagCount { get { return 0; } }
|
||||
//public int LagCount { get { return 0; } }
|
||||
public int LagCount { get; set; }
|
||||
|
||||
public byte[] SaveRam { get { return new byte[0]; } }
|
||||
public bool DeterministicEmulation { get; set; }
|
||||
public bool SaveRamModified { get; set; }
|
||||
|
|
|
@ -19,7 +19,7 @@ namespace BizHawk
|
|||
void FrameAdvance(bool render);
|
||||
|
||||
int Frame { get; }
|
||||
int LagCount { get; }
|
||||
int LagCount { get; set; }
|
||||
string SystemId { get; }
|
||||
bool DeterministicEmulation { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue