2024-08-05 18:42:58 +08:00
|
|
|
|
using AxibugEmuOnline.Client.ClientCore;
|
2024-07-30 11:57:09 +08:00
|
|
|
|
using System;
|
2024-08-07 11:30:18 +08:00
|
|
|
|
using System.IO;
|
2024-08-05 18:42:58 +08:00
|
|
|
|
using System.Xml.Linq;
|
2024-07-24 14:27:10 +08:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
using VirtualNes.Core;
|
|
|
|
|
using VirtualNes.Core.Debug;
|
|
|
|
|
|
|
|
|
|
namespace AxibugEmuOnline.Client
|
|
|
|
|
{
|
|
|
|
|
public class NesEmulator : MonoBehaviour
|
2024-09-14 17:22:01 +08:00
|
|
|
|
{
|
2024-08-06 16:03:17 +08:00
|
|
|
|
public NES NesCore { get; private set; }
|
2024-07-25 11:03:58 +08:00
|
|
|
|
|
2024-07-30 11:57:09 +08:00
|
|
|
|
public VideoProvider VideoProvider;
|
2024-08-02 16:50:16 +08:00
|
|
|
|
public AudioProvider AudioProvider;
|
2024-09-14 17:22:01 +08:00
|
|
|
|
public bool m_bPause;
|
2024-07-30 11:57:09 +08:00
|
|
|
|
|
2024-07-24 14:27:10 +08:00
|
|
|
|
private void Start()
|
|
|
|
|
{
|
2024-08-02 10:58:04 +08:00
|
|
|
|
Application.targetFrameRate = 60;
|
2024-08-06 16:03:17 +08:00
|
|
|
|
VideoProvider.NesEmu = this;
|
|
|
|
|
AudioProvider.NesEmu = this;
|
2024-07-24 14:27:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-08-14 13:09:22 +08:00
|
|
|
|
public void StartGame(RomFile rom)
|
2024-07-24 14:27:10 +08:00
|
|
|
|
{
|
2024-07-25 11:03:58 +08:00
|
|
|
|
StopGame();
|
|
|
|
|
|
2024-07-24 14:27:10 +08:00
|
|
|
|
Supporter.Setup(new CoreSupporter());
|
|
|
|
|
Debuger.Setup(new CoreDebuger());
|
2024-07-30 11:57:09 +08:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-08-14 13:09:22 +08:00
|
|
|
|
NesCore = new NES(rom.FileName);
|
2024-07-30 11:57:09 +08:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2024-08-06 16:03:17 +08:00
|
|
|
|
NesCore = null;
|
2024-07-30 11:57:09 +08:00
|
|
|
|
Debug.LogError(ex);
|
|
|
|
|
}
|
2024-07-25 11:03:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void StopGame()
|
|
|
|
|
{
|
2024-08-06 16:03:17 +08:00
|
|
|
|
NesCore?.Dispose();
|
|
|
|
|
NesCore = null;
|
2024-07-25 11:03:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Update()
|
|
|
|
|
{
|
2024-09-14 17:22:01 +08:00
|
|
|
|
if (m_bPause) return;
|
|
|
|
|
|
2024-08-06 16:03:17 +08:00
|
|
|
|
if (NesCore != null)
|
2024-07-30 11:57:09 +08:00
|
|
|
|
{
|
2024-09-14 17:22:01 +08:00
|
|
|
|
Supporter.SampleInput();
|
2024-08-06 18:09:32 +08:00
|
|
|
|
var controlState = Supporter.GetControllerState();
|
2024-09-14 17:22:01 +08:00
|
|
|
|
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD>δ<EFBFBD>յ<EFBFBD>Input<75><74><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD>֡<EFBFBD><D6A1><EFBFBD>ƽ<EFBFBD>
|
|
|
|
|
if (!controlState.valid) return;
|
|
|
|
|
|
2024-08-06 18:09:32 +08:00
|
|
|
|
NesCore.pad.Sync(controlState);
|
2024-08-06 16:03:17 +08:00
|
|
|
|
NesCore.EmulateFrame(true);
|
2024-07-30 18:53:36 +08:00
|
|
|
|
|
2024-08-06 16:03:17 +08:00
|
|
|
|
var screenBuffer = NesCore.ppu.GetScreenPtr();
|
|
|
|
|
var lineColorMode = NesCore.ppu.GetLineColorMode();
|
2024-07-30 18:53:36 +08:00
|
|
|
|
VideoProvider.SetDrawData(screenBuffer, lineColorMode, 256, 240);
|
2024-07-30 11:57:09 +08:00
|
|
|
|
}
|
2024-07-24 14:27:10 +08:00
|
|
|
|
}
|
2024-08-05 18:42:58 +08:00
|
|
|
|
|
2024-09-14 17:22:01 +08:00
|
|
|
|
|
|
|
|
|
public void Pause()
|
|
|
|
|
{
|
|
|
|
|
m_bPause = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Resume()
|
|
|
|
|
{
|
|
|
|
|
m_bPause = false;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-05 18:42:58 +08:00
|
|
|
|
#if UNITY_EDITOR
|
2024-08-29 18:31:36 +08:00
|
|
|
|
[ContextMenu("ImportNesDB")]
|
|
|
|
|
public void ImportNesDB()
|
2024-08-05 18:42:58 +08:00
|
|
|
|
{
|
|
|
|
|
var db = Resources.Load<RomDB>("NES/ROMDB");
|
|
|
|
|
db.Clear();
|
|
|
|
|
|
2024-08-07 11:30:18 +08:00
|
|
|
|
var xmlStr = File.ReadAllText("nes20db.xml");
|
|
|
|
|
var xml = XDocument.Parse(xmlStr);
|
2024-08-05 18:42:58 +08:00
|
|
|
|
var games = xml.Element("nes20db").Elements("game");
|
|
|
|
|
foreach (var game in games)
|
|
|
|
|
{
|
|
|
|
|
var crcStr = game.Element("rom").Attribute("crc32").Value;
|
|
|
|
|
var crc = uint.Parse($"{crcStr}", System.Globalization.NumberStyles.HexNumber);
|
|
|
|
|
|
|
|
|
|
var mapper = int.Parse($"{game.Element("pcb").Attribute("mapper").Value}");
|
|
|
|
|
|
2024-08-07 11:30:18 +08:00
|
|
|
|
if (mapper > 255) continue;
|
2024-08-05 18:42:58 +08:00
|
|
|
|
db.AddInfo(new RomDB.RomInfo { CRC = crc, Mapper = mapper });
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-07 11:30:18 +08:00
|
|
|
|
UnityEditor.EditorUtility.SetDirty(db);
|
2024-08-05 18:42:58 +08:00
|
|
|
|
UnityEditor.AssetDatabase.SaveAssets();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2024-07-24 14:27:10 +08:00
|
|
|
|
}
|
|
|
|
|
}
|