2018-02-04 23:08:20 +00:00
|
|
|
using ChocolArm64.Memory;
|
2018-03-03 01:49:17 +00:00
|
|
|
using Ryujinx.Core.Input;
|
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;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2018-02-20 20:09:23 +00:00
|
|
|
namespace Ryujinx.Core
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
public class Switch : IDisposable
|
|
|
|
{
|
|
|
|
public IntPtr Ram {get; private set; }
|
|
|
|
|
|
|
|
internal NsGpu Gpu { get; private set; }
|
|
|
|
internal Horizon Os { get; private set; }
|
|
|
|
internal VirtualFs VFs { get; private set; }
|
2018-03-03 17:04:58 +00:00
|
|
|
|
|
|
|
public Hid Hid { get; private set; }
|
|
|
|
public SetSys Settings { get; private set; }
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-02-17 21:36:08 +00:00
|
|
|
public event EventHandler Finish;
|
|
|
|
|
2018-02-04 23:08:20 +00:00
|
|
|
public Switch(IGalRenderer Renderer)
|
|
|
|
{
|
|
|
|
Ram = Marshal.AllocHGlobal((IntPtr)AMemoryMgr.RamSize);
|
|
|
|
|
|
|
|
Gpu = new NsGpu(Renderer);
|
|
|
|
VFs = new VirtualFs();
|
2018-03-03 17:04:58 +00:00
|
|
|
|
|
|
|
Hid = new Hid(this);
|
|
|
|
Os = new Horizon(this);
|
|
|
|
Settings = new SetSys();
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-02-20 20:09:23 +00:00
|
|
|
public void FinalizeAllProcesses()
|
|
|
|
{
|
|
|
|
Os.FinalizeAllProcesses();
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
{
|
|
|
|
if (disposing)
|
|
|
|
{
|
|
|
|
VFs.Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
Marshal.FreeHGlobal(Ram);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|