2018-03-15 17:06:24 -07:00
|
|
|
using Ryujinx.Audio;
|
2018-09-08 10:51:50 -07:00
|
|
|
using Ryujinx.Graphics;
|
2018-02-20 12:09:23 -08:00
|
|
|
using Ryujinx.Graphics.Gal;
|
2018-09-08 15:04:26 -07:00
|
|
|
using Ryujinx.HLE.FileSystem;
|
2018-08-16 16:47:36 -07:00
|
|
|
using Ryujinx.HLE.HOS;
|
2018-06-10 17:46:42 -07:00
|
|
|
using Ryujinx.HLE.Input;
|
2018-02-04 15:08:20 -08:00
|
|
|
using System;
|
2018-09-09 16:38:56 -07:00
|
|
|
using System.Threading;
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2018-06-10 17:46:42 -07:00
|
|
|
namespace Ryujinx.HLE
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
|
|
|
public class Switch : IDisposable
|
|
|
|
{
|
2018-12-04 16:52:39 -08:00
|
|
|
internal IAalOutput AudioOut { get; private set; }
|
2018-03-15 17:06:24 -07:00
|
|
|
|
2018-12-04 16:52:39 -08:00
|
|
|
internal DeviceMemory Memory { get; private set; }
|
2018-08-15 11:59:51 -07:00
|
|
|
|
2018-12-04 16:52:39 -08:00
|
|
|
internal NvGpu Gpu { get; private set; }
|
2018-03-15 17:06:24 -07:00
|
|
|
|
2018-12-04 16:52:39 -08:00
|
|
|
internal VirtualFileSystem FileSystem { get; private set; }
|
2018-03-15 17:06:24 -07:00
|
|
|
|
2018-12-04 16:52:39 -08:00
|
|
|
public Horizon System { get; private set; }
|
2018-03-19 11:58:46 -07:00
|
|
|
|
2018-12-04 16:52:39 -08:00
|
|
|
public PerformanceStatistics Statistics { get; private set; }
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2018-12-04 16:52:39 -08:00
|
|
|
public Hid Hid { get; private set; }
|
2018-03-15 17:06:24 -07:00
|
|
|
|
2018-09-09 16:38:56 -07:00
|
|
|
public bool EnableDeviceVsync { get; set; } = true;
|
|
|
|
|
2018-12-04 16:52:39 -08:00
|
|
|
public AutoResetEvent VsyncEvent { get; private set; }
|
2018-09-09 16:38:56 -07:00
|
|
|
|
|
|
|
public event EventHandler Finish;
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public Switch(IGalRenderer renderer, IAalOutput audioOut)
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
if (renderer == null)
|
2018-03-15 17:06:24 -07:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
throw new ArgumentNullException(nameof(renderer));
|
2018-03-15 17:06:24 -07:00
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
if (audioOut == null)
|
2018-03-15 17:06:24 -07:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
throw new ArgumentNullException(nameof(audioOut));
|
2018-03-15 17:06:24 -07:00
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
AudioOut = audioOut;
|
2018-03-15 17:06:24 -07:00
|
|
|
|
2018-08-15 11:59:51 -07:00
|
|
|
Memory = new DeviceMemory();
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
Gpu = new NvGpu(renderer);
|
2018-03-03 09:04:58 -08:00
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
FileSystem = new VirtualFileSystem();
|
2018-03-15 17:06:24 -07:00
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
System = new Horizon(this);
|
2018-03-19 11:58:46 -07:00
|
|
|
|
2018-03-06 12:18:49 -08:00
|
|
|
Statistics = new PerformanceStatistics();
|
|
|
|
|
2018-11-28 14:18:09 -08:00
|
|
|
Hid = new Hid(this, System.HidBaseAddress);
|
2018-09-09 16:38:56 -07:00
|
|
|
|
|
|
|
VsyncEvent = new AutoResetEvent(true);
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public void LoadCart(string exeFsDir, string romFsFile = null)
|
2018-02-20 12:09:23 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
System.LoadCart(exeFsDir, romFsFile);
|
2018-02-20 12:09:23 -08:00
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public void LoadXci(string xciFile)
|
2018-09-08 11:33:27 -07:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
System.LoadXci(xciFile);
|
2018-09-08 11:33:27 -07:00
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public void LoadNca(string ncaFile)
|
2018-09-08 11:33:27 -07:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
System.LoadNca(ncaFile);
|
2018-09-08 11:33:27 -07:00
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public void LoadNsp(string nspFile)
|
2018-09-08 11:33:27 -07:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
System.LoadNsp(nspFile);
|
2018-09-08 11:33:27 -07:00
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public void LoadProgram(string fileName)
|
2018-02-20 12:09:23 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
System.LoadProgram(fileName);
|
2018-02-20 12:09:23 -08:00
|
|
|
}
|
|
|
|
|
2018-07-12 10:03:52 -07:00
|
|
|
public bool WaitFifo()
|
|
|
|
{
|
2018-11-16 20:01:31 -08:00
|
|
|
return Gpu.Pusher.WaitForCommands();
|
2018-07-12 10:03:52 -07:00
|
|
|
}
|
|
|
|
|
2018-06-23 17:39:25 -07:00
|
|
|
public void ProcessFrame()
|
|
|
|
{
|
2018-11-16 20:01:31 -08:00
|
|
|
Gpu.Pusher.DispatchCalls();
|
2018-06-23 17:39:25 -07:00
|
|
|
}
|
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
internal void Unload()
|
2018-02-15 04:16:16 -08:00
|
|
|
{
|
2018-08-16 16:47:36 -07:00
|
|
|
FileSystem.Dispose();
|
|
|
|
|
|
|
|
Memory.Dispose();
|
2018-02-15 04:16:16 -08:00
|
|
|
}
|
2018-02-17 13:36:08 -08:00
|
|
|
|
2018-02-04 15:08:20 -08:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
protected virtual void Dispose(bool disposing)
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
if (disposing)
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-08-16 16:47:36 -07:00
|
|
|
System.Dispose();
|
2018-09-09 16:38:56 -07:00
|
|
|
VsyncEvent.Dispose();
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-13 17:13:01 -07:00
|
|
|
}
|