Ryujinx/Ryujinx.HLE/Switch.cs

147 lines
3.7 KiB
C#
Raw Normal View History

using LibHac.FsSystem;
using Ryujinx.Audio;
using Ryujinx.Configuration;
2019-10-13 08:02:07 +02:00
using Ryujinx.Graphics.GAL;
using Ryujinx.Graphics.Gpu;
using Ryujinx.HLE.FileSystem;
using Ryujinx.HLE.HOS;
using Ryujinx.HLE.HOS.Services;
using Ryujinx.HLE.HOS.SystemState;
using Ryujinx.HLE.Input;
2018-02-05 00:08:20 +01:00
using System;
using System.Threading;
2018-02-05 00:08:20 +01:00
namespace Ryujinx.HLE
2018-02-05 00:08:20 +01:00
{
public class Switch : IDisposable
{
internal IAalOutput AudioOut { get; private set; }
internal DeviceMemory Memory { get; private set; }
2019-10-13 08:02:07 +02:00
internal GpuContext Gpu { get; private set; }
public VirtualFileSystem FileSystem { get; private set; }
public Horizon System { get; private set; }
public PerformanceStatistics Statistics { get; private set; }
2018-02-05 00:08:20 +01:00
public Hid Hid { get; private set; }
public bool EnableDeviceVsync { get; set; } = true;
public AutoResetEvent VsyncEvent { get; private set; }
public event EventHandler Finish;
2019-10-13 08:02:07 +02:00
public Switch(IRenderer 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));
}
AudioOut = audioOut;
Memory = new DeviceMemory();
2019-10-13 08:02:07 +02:00
Gpu = new GpuContext(renderer);
FileSystem = new VirtualFileSystem();
System = new Horizon(this);
Statistics = new PerformanceStatistics();
Hid = new Hid(this, System.HidBaseAddress);
VsyncEvent = new AutoResetEvent(true);
2018-02-05 00:08:20 +01:00
}
public void Initialize()
{
System.State.SetLanguage((SystemLanguage)ConfigurationState.Instance.System.Language.Value);
EnableDeviceVsync = ConfigurationState.Instance.Graphics.EnableVsync;
// TODO: Make this reloadable and implement Docking/Undocking logic.
System.State.DockedMode = ConfigurationState.Instance.System.EnableDockedMode;
if (ConfigurationState.Instance.System.EnableMulticoreScheduling)
{
System.EnableMultiCoreScheduling();
}
System.FsIntegrityCheckLevel = ConfigurationState.Instance.System.EnableFsIntegrityChecks
? IntegrityCheckLevel.ErrorOnInvalid
: IntegrityCheckLevel.None;
System.GlobalAccessLogMode = ConfigurationState.Instance.System.FsGlobalAccessLogMode;
ServiceConfiguration.IgnoreMissingServices = ConfigurationState.Instance.System.IgnoreMissingServices;
}
public void LoadCart(string exeFsDir, string romFsFile = null)
{
System.LoadCart(exeFsDir, romFsFile);
}
public void LoadXci(string xciFile)
{
System.LoadXci(xciFile);
}
public void LoadNca(string ncaFile)
{
System.LoadNca(ncaFile);
}
public void LoadNsp(string nspFile)
{
System.LoadNsp(nspFile);
}
public void LoadProgram(string fileName)
{
System.LoadProgram(fileName);
}
public bool WaitFifo()
{
2019-10-13 08:02:07 +02:00
return Gpu.DmaPusher.WaitForCommands();
}
public void ProcessFrame()
{
2019-10-13 08:02:07 +02:00
Gpu.DmaPusher.DispatchCalls();
}
internal void Unload()
{
FileSystem.Dispose();
Memory.Dispose();
}
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
{
System.Dispose();
VsyncEvent.Dispose();
2018-02-05 00:08:20 +01:00
}
}
}
}