2019-12-21 12:52:31 -07:00
|
|
|
using LibHac.FsSystem;
|
2018-03-15 18:06:24 -06:00
|
|
|
using Ryujinx.Audio;
|
2019-12-21 12:52:31 -07:00
|
|
|
using Ryujinx.Configuration;
|
2019-10-13 00:02:07 -06:00
|
|
|
using Ryujinx.Graphics.GAL;
|
|
|
|
using Ryujinx.Graphics.Gpu;
|
2018-09-08 16:04:26 -06:00
|
|
|
using Ryujinx.HLE.FileSystem;
|
2020-01-21 15:23:11 -07:00
|
|
|
using Ryujinx.HLE.FileSystem.Content;
|
2018-08-16 17:47:36 -06:00
|
|
|
using Ryujinx.HLE.HOS;
|
2019-12-21 12:52:31 -07:00
|
|
|
using Ryujinx.HLE.HOS.Services;
|
2020-04-02 18:10:02 -06:00
|
|
|
using Ryujinx.HLE.HOS.Services.Hid;
|
2019-12-21 12:52:31 -07:00
|
|
|
using Ryujinx.HLE.HOS.SystemState;
|
2020-05-03 16:54:50 -06:00
|
|
|
using Ryujinx.Memory;
|
2018-02-04 16:08:20 -07:00
|
|
|
using System;
|
2018-09-09 17:38:56 -06:00
|
|
|
using System.Threading;
|
2018-02-04 16:08:20 -07:00
|
|
|
|
2018-06-10 18:46:42 -06:00
|
|
|
namespace Ryujinx.HLE
|
2018-02-04 16:08:20 -07:00
|
|
|
{
|
|
|
|
public class Switch : IDisposable
|
|
|
|
{
|
2020-01-21 15:23:11 -07:00
|
|
|
public IAalOutput AudioOut { get; private set; }
|
2018-03-15 18:06:24 -06:00
|
|
|
|
2020-05-03 16:54:50 -06:00
|
|
|
internal MemoryBlock Memory { get; private set; }
|
2018-08-15 12:59:51 -06:00
|
|
|
|
2020-01-21 15:23:11 -07:00
|
|
|
public GpuContext Gpu { get; private set; }
|
2018-03-15 18:06:24 -06:00
|
|
|
|
2020-01-05 04:49:44 -07:00
|
|
|
public VirtualFileSystem FileSystem { get; private set; }
|
2018-03-15 18:06:24 -06:00
|
|
|
|
2018-12-04 17:52:39 -07:00
|
|
|
public Horizon System { get; private set; }
|
2018-03-19 12:58:46 -06:00
|
|
|
|
2018-12-04 17:52:39 -07:00
|
|
|
public PerformanceStatistics Statistics { get; private set; }
|
2018-02-04 16:08:20 -07:00
|
|
|
|
2018-12-04 17:52:39 -07:00
|
|
|
public Hid Hid { get; private set; }
|
2018-03-15 18:06:24 -06:00
|
|
|
|
2018-09-09 17:38:56 -06:00
|
|
|
public bool EnableDeviceVsync { get; set; } = true;
|
|
|
|
|
2020-01-21 15:23:11 -07:00
|
|
|
public Switch(VirtualFileSystem fileSystem, ContentManager contentManager, IRenderer renderer, IAalOutput audioOut)
|
2018-02-04 16:08:20 -07:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
if (renderer == null)
|
2018-03-15 18:06:24 -06:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
throw new ArgumentNullException(nameof(renderer));
|
2018-03-15 18:06:24 -06:00
|
|
|
}
|
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
if (audioOut == null)
|
2018-03-15 18:06:24 -06:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
throw new ArgumentNullException(nameof(audioOut));
|
2018-03-15 18:06:24 -06:00
|
|
|
}
|
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
AudioOut = audioOut;
|
2018-03-15 18:06:24 -06:00
|
|
|
|
2020-05-03 16:54:50 -06:00
|
|
|
Memory = new MemoryBlock(1UL << 32);
|
2018-08-15 12:59:51 -06:00
|
|
|
|
2019-10-13 00:02:07 -06:00
|
|
|
Gpu = new GpuContext(renderer);
|
2018-03-03 10:04:58 -07:00
|
|
|
|
2020-01-21 15:23:11 -07:00
|
|
|
FileSystem = fileSystem;
|
2018-03-15 18:06:24 -06:00
|
|
|
|
2020-01-21 15:23:11 -07:00
|
|
|
System = new Horizon(this, contentManager);
|
2018-03-19 12:58:46 -06:00
|
|
|
|
2018-03-06 13:18:49 -07:00
|
|
|
Statistics = new PerformanceStatistics();
|
|
|
|
|
2018-11-28 15:18:09 -07:00
|
|
|
Hid = new Hid(this, System.HidBaseAddress);
|
2020-04-02 18:10:02 -06:00
|
|
|
Hid.InitDevices();
|
2018-02-04 16:08:20 -07:00
|
|
|
}
|
|
|
|
|
2019-12-21 12:52:31 -07:00
|
|
|
public void Initialize()
|
|
|
|
{
|
|
|
|
System.State.SetLanguage((SystemLanguage)ConfigurationState.Instance.System.Language.Value);
|
|
|
|
|
2020-05-05 12:50:53 -06:00
|
|
|
System.State.SetRegion((RegionCode)ConfigurationState.Instance.System.Region.Value);
|
2020-03-19 16:37:55 -06:00
|
|
|
|
2019-12-21 12:52:31 -07:00
|
|
|
EnableDeviceVsync = ConfigurationState.Instance.Graphics.EnableVsync;
|
|
|
|
|
|
|
|
System.State.DockedMode = ConfigurationState.Instance.System.EnableDockedMode;
|
|
|
|
|
|
|
|
if (ConfigurationState.Instance.System.EnableMulticoreScheduling)
|
|
|
|
{
|
|
|
|
System.EnableMultiCoreScheduling();
|
|
|
|
}
|
|
|
|
|
2020-01-21 15:23:11 -07:00
|
|
|
System.FsIntegrityCheckLevel = GetIntigrityCheckLevel();
|
2019-12-21 12:52:31 -07:00
|
|
|
|
|
|
|
System.GlobalAccessLogMode = ConfigurationState.Instance.System.FsGlobalAccessLogMode;
|
|
|
|
|
|
|
|
ServiceConfiguration.IgnoreMissingServices = ConfigurationState.Instance.System.IgnoreMissingServices;
|
|
|
|
}
|
|
|
|
|
2020-01-21 15:23:11 -07:00
|
|
|
public static IntegrityCheckLevel GetIntigrityCheckLevel()
|
|
|
|
{
|
|
|
|
return ConfigurationState.Instance.System.EnableFsIntegrityChecks
|
|
|
|
? IntegrityCheckLevel.ErrorOnInvalid
|
|
|
|
: IntegrityCheckLevel.None;
|
|
|
|
}
|
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
public void LoadCart(string exeFsDir, string romFsFile = null)
|
2018-02-20 13:09:23 -07:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
System.LoadCart(exeFsDir, romFsFile);
|
2018-02-20 13:09:23 -07:00
|
|
|
}
|
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
public void LoadXci(string xciFile)
|
2018-09-08 12:33:27 -06:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
System.LoadXci(xciFile);
|
2018-09-08 12:33:27 -06:00
|
|
|
}
|
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
public void LoadNca(string ncaFile)
|
2018-09-08 12:33:27 -06:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
System.LoadNca(ncaFile);
|
2018-09-08 12:33:27 -06:00
|
|
|
}
|
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
public void LoadNsp(string nspFile)
|
2018-09-08 12:33:27 -06:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
System.LoadNsp(nspFile);
|
2018-09-08 12:33:27 -06:00
|
|
|
}
|
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
public void LoadProgram(string fileName)
|
2018-02-20 13:09:23 -07:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
System.LoadProgram(fileName);
|
2018-02-20 13:09:23 -07:00
|
|
|
}
|
|
|
|
|
2018-07-12 11:03:52 -06:00
|
|
|
public bool WaitFifo()
|
|
|
|
{
|
2019-10-13 00:02:07 -06:00
|
|
|
return Gpu.DmaPusher.WaitForCommands();
|
2018-07-12 11:03:52 -06:00
|
|
|
}
|
|
|
|
|
2018-06-23 18:39:25 -06:00
|
|
|
public void ProcessFrame()
|
|
|
|
{
|
2019-10-13 00:02:07 -06:00
|
|
|
Gpu.DmaPusher.DispatchCalls();
|
2018-06-23 18:39:25 -06:00
|
|
|
}
|
|
|
|
|
2019-11-23 19:24:03 -07:00
|
|
|
public void PresentFrame(Action swapBuffersCallback)
|
|
|
|
{
|
|
|
|
Gpu.Window.Present(swapBuffersCallback);
|
|
|
|
}
|
|
|
|
|
2018-08-16 17:47:36 -06:00
|
|
|
internal void Unload()
|
2018-02-15 05:16:16 -07:00
|
|
|
{
|
2020-01-21 15:23:11 -07:00
|
|
|
FileSystem.Unload();
|
2018-08-16 17:47:36 -06:00
|
|
|
|
|
|
|
Memory.Dispose();
|
2018-02-15 05:16:16 -07:00
|
|
|
}
|
2018-02-17 14:36:08 -07:00
|
|
|
|
2019-12-31 15:09:49 -07:00
|
|
|
public void DisposeGpu()
|
|
|
|
{
|
|
|
|
Gpu.Dispose();
|
|
|
|
}
|
|
|
|
|
2018-02-04 16:08:20 -07:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
protected virtual void Dispose(bool disposing)
|
2018-02-04 16:08:20 -07:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
if (disposing)
|
2018-02-04 16:08:20 -07:00
|
|
|
{
|
2018-08-16 17:47:36 -06:00
|
|
|
System.Dispose();
|
2020-01-21 15:23:11 -07:00
|
|
|
AudioOut.Dispose();
|
2018-02-04 16:08:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-13 18:13:01 -06:00
|
|
|
}
|