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