some Atari 2600,7800 reorg

This commit is contained in:
adelikat 2014-12-01 14:21:37 +00:00
parent bd458fc0dc
commit a283063f5f
5 changed files with 49 additions and 11 deletions

View File

@ -86,7 +86,7 @@
<Link>VersionInfo.cs</Link>
</Compile>
<Compile Include="Calculator\TI83.IInputPollable.cs">
<DependentUpon>TI83.cs</DependentUpon>
<DependentUpon>TI83.cs</DependentUpon>
</Compile>
<Compile Include="Calculator\TI83.IMemoryDomains.cs">
<DependentUpon>TI83.cs</DependentUpon>
@ -162,6 +162,9 @@
<Compile Include="Consoles\Atari\2600\Atari2600.IDebuggable.cs">
<DependentUpon>Atari2600.cs</DependentUpon>
</Compile>
<Compile Include="Consoles\Atari\2600\Atari2600.IInputPollable.cs">
<DependentUpon>Atari2600.cs</DependentUpon>
</Compile>
<Compile Include="Consoles\Atari\2600\Atari2600.IMemoryDomains.cs">
<DependentUpon>Atari2600.cs</DependentUpon>
</Compile>
@ -219,6 +222,9 @@
<Compile Include="Consoles\Atari\7800\Atari7800.IDebuggable.cs">
<DependentUpon>Atari7800.cs</DependentUpon>
</Compile>
<Compile Include="Consoles\Atari\7800\Atari7800.IInputPollable.cs">
<DependentUpon>Atari7800.cs</DependentUpon>
</Compile>
<Compile Include="Consoles\Atari\7800\Atari7800.IMemoryDomains.cs">
<DependentUpon>Atari7800.cs</DependentUpon>
</Compile>

View File

@ -0,0 +1,21 @@
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Atari.Atari2600
{
public partial class Atari2600 : IInputPollable
{
public int LagCount
{
get { return _lagcount; }
set { _lagcount = value; }
}
public bool IsLagFrame
{
get { return _islag; }
}
private bool _islag = true;
private int _lagcount;
}
}

View File

@ -19,8 +19,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
public partial class Atari2600 : IEmulator, IMemoryDomains, IStatable, IDebuggable, IInputPollable, ISettable<Atari2600.A2600Settings, Atari2600.A2600SyncSettings>
{
private readonly GameInfo _game;
private bool _islag = true;
private int _lagcount;
private int _frame;
[CoreConstructor("A26")]
@ -70,10 +68,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
public int Frame { get { return _frame; } set { _frame = value; } }
public int LagCount { get { return _lagcount; } set { _lagcount = value; } }
public bool IsLagFrame { get { return _islag; } }
public bool DeterministicEmulation { get; set; }
public A2600Settings Settings { get; private set; }

View File

@ -0,0 +1,21 @@
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Atari.Atari7800
{
public partial class Atari7800 : IInputPollable
{
public int LagCount
{
get { return _lagcount; }
set { _lagcount = value; }
}
public bool IsLagFrame
{
get { return _islag; }
}
private bool _islag = true;
private int _lagcount;
}
}

View File

@ -73,10 +73,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800
public bool DeterministicEmulation { get; set; }
public int Frame { get { return _frame; } set { _frame = value; } }
public int LagCount { get { return _lagcount; } set { _lagcount = value; } }
public bool IsLagFrame { get { return _islag; } }
private bool _islag = true;
private int _lagcount = 0;
private int _frame = 0;
public void Dispose()