BizHawk/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs

147 lines
3.7 KiB
C#
Raw Normal View History

2012-07-08 04:20:53 +00:00
using System;
using System.IO;
using System.Collections.Generic;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores.Components.CP1610;
2012-07-08 04:20:53 +00:00
namespace BizHawk.Emulation.Cores.Intellivision
2012-07-08 04:20:53 +00:00
{
[CoreAttributes(
"IntelliHawk",
"BrandonE",
isPorted: false,
isReleased: false
)]
[ServiceNotApplicable(typeof(ISaveRam), typeof(IDriveLight))]
public sealed partial class Intellivision : IEmulator, IStatable, IInputPollable, ISettable<Intellivision.IntvSettings, Intellivision.IntvSyncSettings>
{
2015-06-18 16:44:30 +00:00
[CoreConstructor("INTV")]
public Intellivision(CoreComm comm, GameInfo game, byte[] rom, object Settings, object SyncSettings)
2015-06-18 16:44:30 +00:00
{
ServiceProvider = new BasicServiceProvider(this);
CoreComm = comm;
_rom = rom;
_gameInfo = game;
this.Settings = (IntvSettings)Settings ?? new IntvSettings();
this.SyncSettings = (IntvSyncSettings)SyncSettings ?? new IntvSyncSettings();
ControllerDeck = new IntellivisionControllerDeck(this.SyncSettings.Port1, this.SyncSettings.Port2);
2015-06-18 16:44:30 +00:00
_cart = new Intellicart();
if (_cart.Parse(_rom) == -1)
{
_cart = new Cartridge();
_cart.Parse(_rom);
}
_cpu = new CP1610();
_cpu.ReadMemory = ReadMemory;
_cpu.WriteMemory = WriteMemory;
_cpu.Reset();
_stic = new STIC();
_stic.ReadMemory = ReadMemory;
_stic.WriteMemory = WriteMemory;
_stic.Reset();
(ServiceProvider as BasicServiceProvider).Register<IVideoProvider>(_stic);
_psg = new PSG();
_psg.Reset();
2015-06-18 16:44:30 +00:00
_psg.ReadMemory = ReadMemory;
_psg.WriteMemory = WriteMemory;
(ServiceProvider as BasicServiceProvider).Register<ISoundProvider>(_psg);
2015-06-18 16:44:30 +00:00
Connect();
2016-11-12 21:09:51 +00:00
//_cpu.LogData();
2015-06-18 16:44:30 +00:00
LoadExecutiveRom(CoreComm.CoreFileProvider.GetFirmware("INTV", "EROM", true, "Executive ROM is required."));
LoadGraphicsRom(CoreComm.CoreFileProvider.GetFirmware("INTV", "GROM", true, "Graphics ROM is required."));
Tracer = new TraceBuffer { Header = _cpu.TraceHeader };
(ServiceProvider as BasicServiceProvider).Register<ITraceable>(Tracer);
SetupMemoryDomains();
2015-06-18 16:44:30 +00:00
}
public IntellivisionControllerDeck ControllerDeck { get; private set; }
private ITraceable Tracer { get; set; }
public int LagCount
{
2016-12-27 21:31:33 +00:00
get {return lagcount;}
set{}
}
public bool IsLagFrame
{
2016-12-27 21:31:33 +00:00
get {return islag;}
set {}
}
public IInputCallbackSystem InputCallbacks
{
get { return _inputCallbacks; }
}
private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem();
2015-06-18 16:44:30 +00:00
private byte[] _rom;
private GameInfo _gameInfo;
private CP1610 _cpu;
private ICart _cart;
private STIC _stic;
private PSG _psg;
public void Connect()
{
2015-06-18 16:44:30 +00:00
_cpu.SetIntRM(_stic.GetSr1());
_cpu.SetBusRq(_stic.GetSr2());
_stic.SetSst(_cpu.GetBusAk());
}
public void LoadExecutiveRom(byte[] erom)
{
if (erom.Length != 8192)
{
throw new ApplicationException("EROM file is wrong size - expected 8192 bytes");
}
2015-06-18 16:44:30 +00:00
int index = 0;
// Combine every two bytes into a word.
while (index + 1 < erom.Length)
{
ExecutiveRom[index / 2] = (ushort)((erom[index++] << 8) | erom[index++]);
}
}
public void LoadGraphicsRom(byte[] grom)
{
if (grom.Length != 2048)
{
throw new ApplicationException("GROM file is wrong size - expected 2048 bytes");
}
2015-06-18 16:44:30 +00:00
GraphicsRom = grom;
}
public void get_controller_state()
{
InputCallbacks.Call();
ushort port1 = ControllerDeck.ReadPort1(Controller);
_psg.Register[15] = (ushort)(0xFF - port1);
ushort port2 = ControllerDeck.ReadPort2(Controller);
_psg.Register[14] = (ushort)(0xFF - port2);
}
}
2016-11-12 21:09:51 +00:00
}