BizHawk/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs

118 lines
3.3 KiB
C#
Raw Normal View History

2012-03-07 00:40:20 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
2012-03-07 00:40:20 +00:00
2014-07-03 19:20:34 +00:00
using BizHawk.Common.BufferExtensions;
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Atari.Atari2600
2012-03-07 00:40:20 +00:00
{
[CoreAttributes(
"Atari2600Hawk",
"Micro500, Alyosha, adelikat, natt",
isPorted: false,
2017-04-24 15:09:17 +00:00
isReleased: true)]
[ServiceNotApplicable(typeof(ISaveRam), typeof(IDriveLight))]
public partial class Atari2600 : IEmulator, IStatable, IDebuggable, IInputPollable, IBoardInfo,
IRegionable, ICreateGameDBEntries, ISettable<Atari2600.A2600Settings, Atari2600.A2600SyncSettings>
2012-03-07 00:40:20 +00:00
{
[CoreConstructor("A26")]
public Atari2600(CoreComm comm, GameInfo game, byte[] rom, object settings, object syncSettings)
2012-03-07 00:40:20 +00:00
{
2015-01-15 15:56:41 +00:00
var ser = new BasicServiceProvider(this);
ServiceProvider = ser;
Ram = new byte[128];
CoreComm = comm;
Settings = (A2600Settings)settings ?? new A2600Settings();
SyncSettings = (A2600SyncSettings)syncSettings ?? new A2600SyncSettings();
_leftDifficultySwitchPressed = SyncSettings.LeftDifficulty;
_rightDifficultySwitchPressed = SyncSettings.RightDifficulty;
Rom = rom;
_game = game;
if (!game.GetOptionsDict().ContainsKey("m"))
{
game.AddOption("m", DetectMapper(rom));
}
if (Rom.HashSHA1() == "3A77DB43B6583E8689435F0F14AA04B9E57BDDED" ||
Rom.HashSHA1() == "E986E1818E747BEB9B33CE4DFF1CDC6B55BDB620")
{
game.RemoveOption("m");
game.AddOption("m", "F8_sega");
}
Console.WriteLine("Game uses mapper " + game.GetOptionsDict()["m"]);
Console.WriteLine(Rom.HashSHA1());
RebootCore();
SetupMemoryDomains();
2016-02-28 14:20:08 +00:00
Tracer = new TraceBuffer { Header = Cpu.TraceHeader };
ser.Register<IDisassemblable>(Cpu);
ser.Register<ITraceable>(Tracer);
ser.Register<IVideoProvider>(_tia);
ser.Register<ISoundProvider>(_dcfilter);
2012-03-07 00:40:20 +00:00
}
// IRegionable
2017-04-24 15:09:17 +00:00
public DisplayType Region => _pal ? DisplayType.PAL : DisplayType.NTSC;
// ITraceable
private ITraceable Tracer { get; }
// ICreateGameDBEntries
public CompactGameInfo GenerateGameDbEntry()
{
return new CompactGameInfo
{
Name = _game.Name,
System = "A26",
MetaData = "m=" + _mapper.GetType().ToString().Split('.').ToList().Last(),
2014-07-03 19:20:34 +00:00
Hash = Rom.HashSHA1(),
Region = _game.Region,
Status = RomStatus.Unknown
};
}
// IBoardInfo
public string BoardName => _mapper.GetType().Name;
private static bool DetectPal(GameInfo game, byte[] rom)
{
2014-05-23 15:47:48 +00:00
// force NTSC mode for the new core we instantiate
var newgame = game.Clone();
if (newgame["PAL"])
{
2014-05-23 15:47:48 +00:00
newgame.RemoveOption("PAL");
}
2014-05-23 15:47:48 +00:00
if (!newgame["NTSC"])
{
2014-05-23 15:47:48 +00:00
newgame.AddOption("NTSC");
}
2014-05-23 15:47:48 +00:00
2014-05-21 15:47:18 +00:00
// give the emu a minimal of input\output connections so it doesn't crash
var comm = new CoreComm(null, null);
2014-05-23 15:47:48 +00:00
using (Atari2600 emu = new Atari2600(new CoreComm(null, null), newgame, rom, null, null))
2014-05-21 15:47:18 +00:00
{
List<int> framecounts = new List<int>();
emu._tia.FrameEndCallBack = (i) => framecounts.Add(i);
for (int i = 0; i < 71; i++) // run for 71 * 262 lines, since we're in NTSC mode
{
emu.FrameAdvance(NullController.Instance, false, false);
}
2014-05-21 15:47:18 +00:00
int numpal = framecounts.Count((i) => i > 287);
2014-05-23 15:47:48 +00:00
bool pal = numpal >= 25;
Console.WriteLine("PAL Detection: {0} lines, {1}", numpal, pal);
return pal;
2014-05-21 15:47:18 +00:00
}
}
2012-03-07 00:40:20 +00:00
}
}