2018-03-16 00:06:24 +00:00
|
|
|
using Ryujinx.Audio;
|
2018-03-03 01:49:17 +00:00
|
|
|
using Ryujinx.Core.Input;
|
2018-04-24 18:57:39 +00:00
|
|
|
using Ryujinx.Core.Logging;
|
2018-02-20 20:09:23 +00:00
|
|
|
using Ryujinx.Core.OsHle;
|
2018-03-03 17:04:58 +00:00
|
|
|
using Ryujinx.Core.Settings;
|
2018-02-20 20:09:23 +00:00
|
|
|
using Ryujinx.Graphics.Gal;
|
|
|
|
using Ryujinx.Graphics.Gpu;
|
2018-02-04 23:08:20 +00:00
|
|
|
using System;
|
|
|
|
|
2018-02-20 20:09:23 +00:00
|
|
|
namespace Ryujinx.Core
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
public class Switch : IDisposable
|
|
|
|
{
|
2018-03-16 00:06:24 +00:00
|
|
|
internal IAalOutput AudioOut { get; private set; }
|
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
public Logger Log { get; private set; }
|
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
internal NsGpu Gpu { get; private set; }
|
|
|
|
|
|
|
|
internal VirtualFileSystem VFs { get; private set; }
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public Horizon Os { get; private set; }
|
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
public SystemSettings Settings { get; private set; }
|
2018-03-03 17:04:58 +00:00
|
|
|
|
2018-03-06 20:18:49 +00:00
|
|
|
public PerformanceStatistics Statistics { get; private set; }
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
public Hid Hid { get; private set; }
|
|
|
|
|
2018-02-17 21:36:08 +00:00
|
|
|
public event EventHandler Finish;
|
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
public Switch(IGalRenderer Renderer, IAalOutput AudioOut)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-03-16 00:06:24 +00:00
|
|
|
if (Renderer == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException(nameof(Renderer));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (AudioOut == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException(nameof(AudioOut));
|
|
|
|
}
|
|
|
|
|
|
|
|
this.AudioOut = AudioOut;
|
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
Log = new Logger();
|
|
|
|
|
|
|
|
Gpu = new NsGpu(Renderer);
|
2018-03-03 17:04:58 +00:00
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
VFs = new VirtualFileSystem();
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
Os = new Horizon(this);
|
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
Settings = new SystemSettings();
|
2018-03-05 05:09:52 +00:00
|
|
|
|
2018-03-06 20:18:49 +00:00
|
|
|
Statistics = new PerformanceStatistics();
|
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
Hid = new Hid(Log);
|
2018-03-05 05:09:52 +00:00
|
|
|
|
|
|
|
Os.HidSharedMem.MemoryMapped += Hid.ShMemMap;
|
|
|
|
Os.HidSharedMem.MemoryUnmapped += Hid.ShMemUnmap;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-02-20 20:09:23 +00:00
|
|
|
public void LoadCart(string ExeFsDir, string RomFsFile = null)
|
|
|
|
{
|
|
|
|
Os.LoadCart(ExeFsDir, RomFsFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void LoadProgram(string FileName)
|
|
|
|
{
|
|
|
|
Os.LoadProgram(FileName);
|
|
|
|
}
|
|
|
|
|
2018-02-15 12:16:16 +00:00
|
|
|
internal virtual void OnFinish(EventArgs e)
|
|
|
|
{
|
2018-02-20 10:54:00 +00:00
|
|
|
Finish?.Invoke(this, e);
|
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-03-12 04:04:52 +00:00
|
|
|
protected virtual void Dispose(bool Disposing)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-03-12 04:04:52 +00:00
|
|
|
if (Disposing)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-03-12 04:04:52 +00:00
|
|
|
Os.Dispose();
|
2018-02-04 23:08:20 +00:00
|
|
|
VFs.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|