| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- using Ryujinx.Audio;
- using Ryujinx.Core.Input;
- using Ryujinx.Core.OsHle;
- using Ryujinx.Core.Settings;
- using Ryujinx.Graphics.Gal;
- using Ryujinx.Graphics.Gpu;
- using System;
- namespace Ryujinx.Core
- {
- public class Switch : IDisposable
- {
- internal IAalOutput AudioOut { get; private set; }
- internal NsGpu Gpu { get; private set; }
- internal Horizon Os { get; private set; }
- internal VirtualFileSystem VFs { get; private set; }
- public SystemSettings Settings { get; private set; }
- public PerformanceStatistics Statistics { get; private set; }
- public Hid Hid { get; private set; }
- public event EventHandler Finish;
- public Switch(IGalRenderer Renderer, IAalOutput AudioOut)
- {
- if (Renderer == null)
- {
- throw new ArgumentNullException(nameof(Renderer));
- }
- if (AudioOut == null)
- {
- throw new ArgumentNullException(nameof(AudioOut));
- }
- this.AudioOut = AudioOut;
- Gpu = new NsGpu(Renderer);
- Os = new Horizon(this);
- VFs = new VirtualFileSystem();
- Settings = new SystemSettings();
- Statistics = new PerformanceStatistics();
- Hid = new Hid();
- Os.HidSharedMem.MemoryMapped += Hid.ShMemMap;
- Os.HidSharedMem.MemoryUnmapped += Hid.ShMemUnmap;
- }
- 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);
- }
- public void Dispose()
- {
- Dispose(true);
- }
- protected virtual void Dispose(bool Disposing)
- {
- if (Disposing)
- {
- Os.Dispose();
- VFs.Dispose();
- }
- }
- }
- }
|