2024-07-25 11:03:58 +08:00
|
|
|
|
using Codice.CM.Client.Differences;
|
2024-07-23 18:31:59 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2024-07-25 11:03:58 +08:00
|
|
|
|
using System.Text;
|
2024-07-23 18:31:59 +08:00
|
|
|
|
using VirtualNes.Core.Debug;
|
|
|
|
|
|
|
|
|
|
namespace VirtualNes.Core
|
|
|
|
|
{
|
|
|
|
|
public class NES
|
|
|
|
|
{
|
|
|
|
|
public CPU cpu;
|
|
|
|
|
public PPU ppu;
|
|
|
|
|
public APU apu;
|
|
|
|
|
public ROM rom;
|
|
|
|
|
public PAD pad;
|
|
|
|
|
public Mapper mapper;
|
2024-07-25 11:03:58 +08:00
|
|
|
|
public NesConfig nescfg;
|
2024-07-23 18:31:59 +08:00
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
private List<CHEATCODE> m_CheatCode = new List<CHEATCODE>();
|
2024-07-23 18:31:59 +08:00
|
|
|
|
private bool m_bDiskThrottle;
|
|
|
|
|
private int m_CommandRequest;
|
|
|
|
|
private int m_nSnapNo;
|
|
|
|
|
private bool m_bNsfPlaying;
|
|
|
|
|
private bool m_bMoviePlay;
|
|
|
|
|
private bool m_bMovieRec;
|
|
|
|
|
private Stream m_fpMovie;
|
|
|
|
|
private bool m_bTapePlay;
|
|
|
|
|
private bool m_bTapeRec;
|
|
|
|
|
private Stream m_fpTape;
|
|
|
|
|
private double m_TapeCycles;
|
|
|
|
|
private byte m_TapeIn;
|
|
|
|
|
private byte m_TapeOut;
|
2024-07-25 11:03:58 +08:00
|
|
|
|
|
|
|
|
|
// For Barcode
|
|
|
|
|
private bool m_bBarcode;
|
|
|
|
|
private byte m_BarcodeOut;
|
|
|
|
|
private byte m_BarcodePtr;
|
|
|
|
|
private int m_BarcodeCycles;
|
|
|
|
|
private byte[] m_BarcodeData = new byte[256];
|
|
|
|
|
|
|
|
|
|
// For Barcode
|
2024-07-23 18:31:59 +08:00
|
|
|
|
private bool m_bBarcode2;
|
2024-07-25 11:03:58 +08:00
|
|
|
|
private int m_Barcode2seq;
|
|
|
|
|
private int m_Barcode2ptr;
|
|
|
|
|
private int m_Barcode2cnt;
|
|
|
|
|
private byte m_Barcode2bit;
|
|
|
|
|
private byte[] m_Barcode2data = new byte[32];
|
|
|
|
|
|
2024-07-23 18:31:59 +08:00
|
|
|
|
private int m_TurboFileBank;
|
|
|
|
|
private int SAVERAM_SIZE;
|
|
|
|
|
private int nIRQtype;
|
|
|
|
|
private bool bFrameIRQ;
|
|
|
|
|
private bool bVideoMode;
|
2024-07-25 11:03:58 +08:00
|
|
|
|
private int NES_scanline;
|
|
|
|
|
private EnumRenderMethod RenderMethod;
|
|
|
|
|
private bool bZapper;
|
|
|
|
|
private long base_cycles;
|
|
|
|
|
private long emul_cycles;
|
2024-07-23 18:31:59 +08:00
|
|
|
|
|
|
|
|
|
public NES(string fname)
|
|
|
|
|
{
|
|
|
|
|
Debuger.Log("VirtuaNES - CSharpCore\n");
|
|
|
|
|
|
|
|
|
|
m_bDiskThrottle = false;
|
|
|
|
|
m_CommandRequest = 0;
|
|
|
|
|
|
|
|
|
|
m_nSnapNo = 0;
|
|
|
|
|
|
|
|
|
|
m_bNsfPlaying = false;
|
|
|
|
|
|
|
|
|
|
m_bMoviePlay = m_bMovieRec = false;
|
|
|
|
|
m_fpMovie = null;
|
|
|
|
|
|
|
|
|
|
m_bTapePlay = m_bTapeRec = false;
|
|
|
|
|
m_fpTape = null;
|
|
|
|
|
m_TapeCycles = 0d;
|
|
|
|
|
m_TapeIn = m_TapeOut = 0;
|
|
|
|
|
|
|
|
|
|
m_bBarcode2 = false;
|
|
|
|
|
|
|
|
|
|
m_TurboFileBank = 0;
|
|
|
|
|
|
|
|
|
|
cpu = null;
|
|
|
|
|
ppu = null;
|
|
|
|
|
apu = null;
|
|
|
|
|
rom = null;
|
|
|
|
|
pad = null;
|
|
|
|
|
mapper = null;
|
|
|
|
|
|
|
|
|
|
SAVERAM_SIZE = 8 * 1024;
|
|
|
|
|
|
|
|
|
|
nIRQtype = 0;
|
|
|
|
|
|
|
|
|
|
bFrameIRQ = true;
|
|
|
|
|
|
|
|
|
|
bVideoMode = false;
|
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
nescfg = NesConfig.GetNTSC();
|
2024-07-23 18:31:59 +08:00
|
|
|
|
|
|
|
|
|
CheatInitial();
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Debuger.Log("Allocating CPU...");
|
|
|
|
|
cpu = new CPU(this);
|
|
|
|
|
|
|
|
|
|
Debuger.Log("Allocating PPU...");
|
|
|
|
|
ppu = new PPU(this);
|
|
|
|
|
|
|
|
|
|
Debuger.Log("Allocating APU...");
|
|
|
|
|
apu = new APU(this);
|
|
|
|
|
|
|
|
|
|
Debuger.Log("Allocating PAD...");
|
|
|
|
|
pad = new PAD(this);
|
|
|
|
|
|
|
|
|
|
Debuger.Log("Loading ROM Image...");
|
|
|
|
|
rom = new ROM(fname);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Debuger.LogError(ex.ToString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
public void Command(NESCOMMAND cmd)
|
|
|
|
|
{
|
|
|
|
|
CommandParam(cmd, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool CommandParam(NESCOMMAND cmd, int param)
|
|
|
|
|
{
|
|
|
|
|
switch (cmd)
|
|
|
|
|
{
|
|
|
|
|
case NESCOMMAND.NESCMD_NONE: break;
|
|
|
|
|
case NESCOMMAND.NESCMD_HWRESET:
|
|
|
|
|
Reset();
|
|
|
|
|
m_CommandRequest = (int)cmd;
|
|
|
|
|
break;
|
|
|
|
|
case NESCOMMAND.NESCMD_SWRESET:
|
|
|
|
|
SoftReset();
|
|
|
|
|
m_CommandRequest = (int)cmd;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
throw new NotImplementedException($"{cmd} not impl right now");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-23 18:31:59 +08:00
|
|
|
|
public void CheatInitial()
|
|
|
|
|
{
|
|
|
|
|
m_CheatCode.Clear();
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
public void EmulateFrame(bool bDraw)
|
|
|
|
|
{
|
|
|
|
|
int scanline = 0;
|
|
|
|
|
if (rom.IsNSF())
|
|
|
|
|
{
|
|
|
|
|
EmulateNSF();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2024-07-23 18:31:59 +08:00
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
CheatCodeProcess();
|
2024-07-23 18:31:59 +08:00
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
NES_scanline = scanline;
|
2024-07-23 18:31:59 +08:00
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
if (RenderMethod != EnumRenderMethod.TILE_RENDER)
|
|
|
|
|
{
|
|
|
|
|
bZapper = false;
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
ppu.SetRenderScanline(scanline);
|
|
|
|
|
|
|
|
|
|
if (scanline == 0)
|
|
|
|
|
{
|
|
|
|
|
if (RenderMethod < EnumRenderMethod.POST_RENDER)
|
|
|
|
|
{
|
|
|
|
|
EmulationCPU(nescfg.ScanlineCycles);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-07-23 18:31:59 +08:00
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
internal void EmulationCPU(int basecycles)
|
|
|
|
|
{
|
|
|
|
|
int cycles;
|
|
|
|
|
|
|
|
|
|
base_cycles += basecycles;
|
|
|
|
|
cycles = (int)((base_cycles / 12) - emul_cycles);
|
|
|
|
|
|
|
|
|
|
if (cycles > 0)
|
|
|
|
|
{
|
|
|
|
|
emul_cycles += cpu.EXEC(cycles);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void Reset()
|
|
|
|
|
{
|
|
|
|
|
SaveSRAM();
|
|
|
|
|
SaveDISK();
|
|
|
|
|
SaveTurboFile();
|
|
|
|
|
|
|
|
|
|
//todo : ʵ<><CAB5>
|
|
|
|
|
}
|
2024-07-23 18:31:59 +08:00
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
internal void SoftReset()
|
|
|
|
|
{
|
|
|
|
|
//todo : ʵ<><CAB5>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void EmulateNSF()
|
|
|
|
|
{
|
|
|
|
|
//todo : ʵ<><CAB5>NSFģ<46><C4A3>
|
|
|
|
|
throw new NotImplementedException("EmulateNSF");
|
|
|
|
|
}
|
2024-07-23 18:31:59 +08:00
|
|
|
|
|
2024-07-25 11:03:58 +08:00
|
|
|
|
internal void CheatCodeProcess()
|
2024-07-23 18:31:59 +08:00
|
|
|
|
{
|
2024-07-25 11:03:58 +08:00
|
|
|
|
//todo : ʵ<><CAB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
cpu?.Dispose();
|
|
|
|
|
ppu?.Dispose();
|
|
|
|
|
apu?.Dispose();
|
|
|
|
|
pad?.Dispose();
|
|
|
|
|
rom?.Dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SaveSRAM()
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
if (rom.IsNSF()) return;
|
|
|
|
|
if (rom.IsSAVERAM()) return;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < SAVERAM_SIZE; i++)
|
|
|
|
|
{
|
|
|
|
|
if (MMU.WARM[i] != 0x00)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (i < SAVERAM_SIZE)
|
|
|
|
|
{
|
|
|
|
|
var romName = rom.GetRomName();
|
|
|
|
|
|
|
|
|
|
Debuger.Log($"Saving SAVERAM...[{romName}]");
|
|
|
|
|
|
|
|
|
|
Supporter.SaveSRAMToFile(MMU.WARM, romName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SaveDISK()
|
|
|
|
|
{
|
|
|
|
|
if (rom.GetMapperNo() != 20)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
Stream fp = null;
|
|
|
|
|
DISKFILEHDR ifh;
|
|
|
|
|
byte[] lpDisk = rom.GetPROM();
|
|
|
|
|
byte[] lpWrite = rom.GetDISK();
|
|
|
|
|
long DiskSize = 16 + 65500 * rom.GetDiskNo();
|
|
|
|
|
ulong data;
|
|
|
|
|
|
|
|
|
|
try
|
2024-07-23 18:31:59 +08:00
|
|
|
|
{
|
2024-07-25 11:03:58 +08:00
|
|
|
|
ifh = new DISKFILEHDR();
|
|
|
|
|
ifh.ID = ASCIIEncoding.ASCII.GetBytes("VirtuaNES DI");
|
|
|
|
|
ifh.BlockVersion = 0x0210;
|
|
|
|
|
ifh.ProgID = rom.GetGameID();
|
|
|
|
|
ifh.MakerID = (ushort)rom.GetMakerID();
|
|
|
|
|
ifh.DiskNo = (ushort)rom.GetDiskNo();
|
|
|
|
|
|
|
|
|
|
for (i = 16; i < DiskSize; i++)
|
|
|
|
|
{
|
|
|
|
|
if (lpWrite[i] > 0)
|
|
|
|
|
ifh.DifferentSize++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ifh.DifferentSize == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
List<byte> contents = new List<byte>();
|
|
|
|
|
contents.AddRange(ifh.ToBytes());
|
|
|
|
|
|
|
|
|
|
for (i = 16; i < DiskSize; i++)
|
|
|
|
|
{
|
|
|
|
|
if (lpWrite[i] > 0)
|
|
|
|
|
{
|
|
|
|
|
data = (ulong)(i & 0x00FFFFFF);
|
|
|
|
|
data |= ((ulong)lpDisk[i] & 0xFF) << 24;
|
|
|
|
|
contents.AddRange(BitConverter.GetBytes(data));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Supporter.SaveDISKToFile(contents.ToArray(), rom.GetRomName());
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Debuger.LogError(ex.ToString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SaveTurboFile()
|
|
|
|
|
{
|
|
|
|
|
//todo : ʵ<><CAB5>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void Clock(int cycles)
|
|
|
|
|
{
|
|
|
|
|
Tape(cycles);
|
|
|
|
|
Barcode(cycles);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Barcode(int cycles)
|
|
|
|
|
{
|
|
|
|
|
if (m_bBarcode)
|
2024-07-23 18:31:59 +08:00
|
|
|
|
{
|
2024-07-25 11:03:58 +08:00
|
|
|
|
m_BarcodeCycles += cycles;
|
|
|
|
|
if (m_BarcodeCycles > 1000)
|
|
|
|
|
{
|
|
|
|
|
m_BarcodeCycles = 0;
|
|
|
|
|
// <20><><EFBFBD>~<7E>H
|
|
|
|
|
if (m_BarcodeData[m_BarcodePtr] != 0xFF)
|
|
|
|
|
{
|
|
|
|
|
m_BarcodeOut = m_BarcodeData[m_BarcodePtr++];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
m_bBarcode = false;
|
|
|
|
|
m_BarcodeOut = 0;
|
|
|
|
|
Debuger.Log("Barcode data trasnfer complete!!");
|
|
|
|
|
|
|
|
|
|
if (!(IsTapePlay() || IsTapeRec()))
|
|
|
|
|
{
|
|
|
|
|
cpu.SetClockProcess(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsTapeRec()
|
|
|
|
|
{
|
|
|
|
|
return m_bTapeRec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsTapePlay()
|
|
|
|
|
{
|
|
|
|
|
return m_bTapePlay;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void Tape(int cycles)
|
|
|
|
|
{
|
|
|
|
|
//todo : ʵ<><CAB5>Tape (Ŀ<><C4BF><EFBFBD>Ǽ<EFBFBD>¼<EFBFBD><C2BC><EFBFBD>Ҳ<EFBFBD><D2B2><EFBFBD><EFBFBD><EFBFBD>Play,<2C><><EFBFBD>ȼ<EFBFBD><C8BC>ܵ<EFBFBD>)
|
2024-07-23 18:31:59 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-07-25 11:03:58 +08:00
|
|
|
|
|
2024-07-23 18:31:59 +08:00
|
|
|
|
}
|