Ryujinx/Ryujinx.Core/Switch.cs

88 lines
2 KiB
C#
Raw Normal View History

using Ryujinx.Audio;
using Ryujinx.Core.Input;
using Ryujinx.Core.OsHle;
using Ryujinx.Core.Settings;
using Ryujinx.Graphics.Gal;
using Ryujinx.Graphics.Gpu;
2018-02-05 00:08:20 +01:00
using System;
namespace Ryujinx.Core
2018-02-05 00:08:20 +01:00
{
public class Switch : IDisposable
{
internal IAalOutput AudioOut { get; private set; }
internal NsGpu Gpu { get; private set; }
internal VirtualFileSystem VFs { get; private set; }
public Horizon Os { get; private set; }
public SystemSettings Settings { get; private set; }
public PerformanceStatistics Statistics { get; private set; }
2018-02-05 00:08:20 +01:00
public Hid Hid { get; private set; }
public event EventHandler Finish;
public Switch(IGalRenderer Renderer, IAalOutput AudioOut)
2018-02-05 00:08:20 +01:00
{
if (Renderer == null)
{
throw new ArgumentNullException(nameof(Renderer));
}
if (AudioOut == null)
{
throw new ArgumentNullException(nameof(AudioOut));
}
this.AudioOut = AudioOut;
Gpu = new NsGpu(Renderer);
VFs = new VirtualFileSystem();
Os = new Horizon(this);
Settings = new SystemSettings();
Statistics = new PerformanceStatistics();
Hid = new Hid();
Os.HidSharedMem.MemoryMapped += Hid.ShMemMap;
Os.HidSharedMem.MemoryUnmapped += Hid.ShMemUnmap;
2018-02-05 00:08:20 +01:00
}
public void LoadCart(string ExeFsDir, string RomFsFile = null)
{
Os.LoadCart(ExeFsDir, RomFsFile);
}
public void LoadProgram(string FileName)
{
Os.LoadProgram(FileName);
}
internal virtual void OnFinish(EventArgs e)
{
Finish?.Invoke(this, e);
}
2018-02-05 00:08:20 +01:00
public void Dispose()
{
Dispose(true);
}
protected virtual void Dispose(bool Disposing)
2018-02-05 00:08:20 +01:00
{
if (Disposing)
2018-02-05 00:08:20 +01:00
{
Os.Dispose();
2018-02-05 00:08:20 +01:00
VFs.Dispose();
}
}
}
}