2019-12-21 14:52:31 -05:00
|
|
|
using LibHac.FsSystem;
|
2021-02-25 19:11:56 -05:00
|
|
|
using Ryujinx.Audio.Backends.CompatLayer;
|
|
|
|
using Ryujinx.Audio.Integration;
|
2021-02-19 14:31:57 -05:00
|
|
|
using Ryujinx.Common;
|
2021-03-18 19:09:33 -04:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-12-21 14:52:31 -05:00
|
|
|
using Ryujinx.Configuration;
|
2019-10-13 02:02:07 -04:00
|
|
|
using Ryujinx.Graphics.GAL;
|
|
|
|
using Ryujinx.Graphics.Gpu;
|
2020-07-11 23:07:01 -04:00
|
|
|
using Ryujinx.Graphics.Host1x;
|
|
|
|
using Ryujinx.Graphics.Nvdec;
|
|
|
|
using Ryujinx.Graphics.Vic;
|
2018-09-08 18:04:26 -04:00
|
|
|
using Ryujinx.HLE.FileSystem;
|
2020-01-21 17:23:11 -05:00
|
|
|
using Ryujinx.HLE.FileSystem.Content;
|
2018-08-16 19:47:36 -04:00
|
|
|
using Ryujinx.HLE.HOS;
|
2019-12-21 14:52:31 -05:00
|
|
|
using Ryujinx.HLE.HOS.Services;
|
2020-11-12 00:59:18 -05:00
|
|
|
using Ryujinx.HLE.HOS.Services.Apm;
|
2020-04-02 20:10:02 -04:00
|
|
|
using Ryujinx.HLE.HOS.Services.Hid;
|
2020-12-09 17:26:05 -05:00
|
|
|
using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices;
|
2019-12-21 14:52:31 -05:00
|
|
|
using Ryujinx.HLE.HOS.SystemState;
|
2020-05-03 18:54:50 -04:00
|
|
|
using Ryujinx.Memory;
|
2018-02-04 18:08:20 -05:00
|
|
|
using System;
|
|
|
|
|
2018-06-10 20:46:42 -04:00
|
|
|
namespace Ryujinx.HLE
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
|
|
|
public class Switch : IDisposable
|
|
|
|
{
|
2021-04-04 08:06:59 -04:00
|
|
|
private MemoryConfiguration _memoryConfiguration;
|
|
|
|
|
2021-02-25 19:11:56 -05:00
|
|
|
public IHardwareDeviceDriver AudioDeviceDriver { get; private set; }
|
2018-03-15 20:06:24 -04:00
|
|
|
|
2020-05-03 18:54:50 -04:00
|
|
|
internal MemoryBlock Memory { get; private set; }
|
2018-08-15 14:59:51 -04:00
|
|
|
|
2020-01-21 17:23:11 -05:00
|
|
|
public GpuContext Gpu { get; private set; }
|
2018-03-15 20:06:24 -04:00
|
|
|
|
2020-12-09 17:26:05 -05:00
|
|
|
internal NvMemoryAllocator MemoryAllocator { get; private set; }
|
|
|
|
|
2020-07-11 23:07:01 -04:00
|
|
|
internal Host1xDevice Host1x { get; }
|
|
|
|
|
2020-01-05 06:49:44 -05:00
|
|
|
public VirtualFileSystem FileSystem { get; private set; }
|
2018-03-15 20:06:24 -04:00
|
|
|
|
2018-12-04 19:52:39 -05:00
|
|
|
public Horizon System { get; private set; }
|
2018-03-19 14:58:46 -04:00
|
|
|
|
2020-05-15 02:16:46 -04:00
|
|
|
public ApplicationLoader Application { get; }
|
|
|
|
|
2018-12-04 19:52:39 -05:00
|
|
|
public PerformanceStatistics Statistics { get; private set; }
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2020-09-20 23:45:30 -04:00
|
|
|
public UserChannelPersistence UserChannelPersistence { get; }
|
|
|
|
|
2018-12-04 19:52:39 -05:00
|
|
|
public Hid Hid { get; private set; }
|
2018-03-15 20:06:24 -04:00
|
|
|
|
2021-03-27 10:12:05 -04:00
|
|
|
public TamperMachine TamperMachine { get; private set; }
|
|
|
|
|
2020-08-02 21:30:58 -04:00
|
|
|
public IHostUiHandler UiHandler { get; set; }
|
|
|
|
|
2018-09-09 19:38:56 -04:00
|
|
|
public bool EnableDeviceVsync { get; set; } = true;
|
|
|
|
|
2021-04-04 08:06:59 -04:00
|
|
|
public Switch(
|
|
|
|
VirtualFileSystem fileSystem,
|
|
|
|
ContentManager contentManager,
|
|
|
|
UserChannelPersistence userChannelPersistence,
|
|
|
|
IRenderer renderer,
|
|
|
|
IHardwareDeviceDriver audioDeviceDriver,
|
|
|
|
MemoryConfiguration memoryConfiguration)
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
if (renderer == null)
|
2018-03-15 20:06:24 -04:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
throw new ArgumentNullException(nameof(renderer));
|
2018-03-15 20:06:24 -04:00
|
|
|
}
|
|
|
|
|
2021-02-25 19:11:56 -05:00
|
|
|
if (audioDeviceDriver == null)
|
2018-03-15 20:06:24 -04:00
|
|
|
{
|
2021-02-25 19:11:56 -05:00
|
|
|
throw new ArgumentNullException(nameof(audioDeviceDriver));
|
2018-03-15 20:06:24 -04:00
|
|
|
}
|
|
|
|
|
2020-09-20 23:45:30 -04:00
|
|
|
if (userChannelPersistence == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException(nameof(userChannelPersistence));
|
|
|
|
}
|
|
|
|
|
|
|
|
UserChannelPersistence = userChannelPersistence;
|
|
|
|
|
2021-04-04 08:06:59 -04:00
|
|
|
_memoryConfiguration = memoryConfiguration;
|
|
|
|
|
2021-02-25 19:11:56 -05:00
|
|
|
AudioDeviceDriver = new CompatLayerHardwareDeviceDriver(audioDeviceDriver);
|
2018-03-15 20:06:24 -04:00
|
|
|
|
2021-04-04 08:06:59 -04:00
|
|
|
Memory = new MemoryBlock(memoryConfiguration.ToDramSize());
|
2018-08-15 14:59:51 -04:00
|
|
|
|
2019-10-13 02:02:07 -04:00
|
|
|
Gpu = new GpuContext(renderer);
|
2018-03-03 12:04:58 -05:00
|
|
|
|
2020-12-09 17:26:05 -05:00
|
|
|
MemoryAllocator = new NvMemoryAllocator();
|
|
|
|
|
2020-07-11 23:07:01 -04:00
|
|
|
Host1x = new Host1xDevice(Gpu.Synchronization);
|
|
|
|
var nvdec = new NvdecDevice(Gpu.MemoryManager);
|
|
|
|
var vic = new VicDevice(Gpu.MemoryManager);
|
|
|
|
Host1x.RegisterDevice(ClassId.Nvdec, nvdec);
|
|
|
|
Host1x.RegisterDevice(ClassId.Vic, vic);
|
|
|
|
|
|
|
|
nvdec.FrameDecoded += (FrameDecodedEventArgs e) =>
|
|
|
|
{
|
|
|
|
// FIXME:
|
|
|
|
// Figure out what is causing frame ordering issues on H264.
|
|
|
|
// For now this is needed as workaround.
|
|
|
|
if (e.CodecId == CodecId.H264)
|
|
|
|
{
|
|
|
|
vic.SetSurfaceOverride(e.LumaOffset, e.ChromaOffset, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vic.DisableSurfaceOverride();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-21 17:23:11 -05:00
|
|
|
FileSystem = fileSystem;
|
2018-03-15 20:06:24 -04:00
|
|
|
|
2021-04-04 08:06:59 -04:00
|
|
|
System = new Horizon(this, contentManager, memoryConfiguration);
|
2020-12-01 18:23:43 -05:00
|
|
|
System.InitializeServices();
|
2018-03-19 14:58:46 -04:00
|
|
|
|
2018-03-06 15:18:49 -05:00
|
|
|
Statistics = new PerformanceStatistics();
|
|
|
|
|
2018-11-28 17:18:09 -05:00
|
|
|
Hid = new Hid(this, System.HidBaseAddress);
|
2020-04-02 20:10:02 -04:00
|
|
|
Hid.InitDevices();
|
2020-05-15 02:16:46 -04:00
|
|
|
|
|
|
|
Application = new ApplicationLoader(this, fileSystem, contentManager);
|
2021-03-27 10:12:05 -04:00
|
|
|
|
|
|
|
TamperMachine = new TamperMachine();
|
2018-02-04 18:08:20 -05:00
|
|
|
}
|
|
|
|
|
2019-12-21 14:52:31 -05:00
|
|
|
public void Initialize()
|
|
|
|
{
|
|
|
|
System.State.SetLanguage((SystemLanguage)ConfigurationState.Instance.System.Language.Value);
|
|
|
|
|
2020-05-05 14:50:53 -04:00
|
|
|
System.State.SetRegion((RegionCode)ConfigurationState.Instance.System.Region.Value);
|
2020-03-19 18:37:55 -04:00
|
|
|
|
2019-12-21 14:52:31 -05:00
|
|
|
EnableDeviceVsync = ConfigurationState.Instance.Graphics.EnableVsync;
|
|
|
|
|
|
|
|
System.State.DockedMode = ConfigurationState.Instance.System.EnableDockedMode;
|
|
|
|
|
2020-11-12 00:59:18 -05:00
|
|
|
System.PerformanceState.PerformanceMode = System.State.DockedMode ? PerformanceMode.Boost : PerformanceMode.Default;
|
|
|
|
|
2020-06-16 14:28:02 -04:00
|
|
|
System.EnablePtc = ConfigurationState.Instance.System.EnablePtc;
|
|
|
|
|
2020-05-15 02:16:46 -04:00
|
|
|
System.FsIntegrityCheckLevel = GetIntegrityCheckLevel();
|
2019-12-21 14:52:31 -05:00
|
|
|
|
|
|
|
System.GlobalAccessLogMode = ConfigurationState.Instance.System.FsGlobalAccessLogMode;
|
|
|
|
|
|
|
|
ServiceConfiguration.IgnoreMissingServices = ConfigurationState.Instance.System.IgnoreMissingServices;
|
2021-02-19 14:31:57 -05:00
|
|
|
ConfigurationState.Instance.System.IgnoreMissingServices.Event += (object _, ReactiveEventArgs<bool> args) =>
|
|
|
|
{
|
|
|
|
ServiceConfiguration.IgnoreMissingServices = args.NewValue;
|
|
|
|
};
|
2020-08-23 16:54:11 -04:00
|
|
|
|
|
|
|
// Configure controllers
|
|
|
|
Hid.RefreshInputConfig(ConfigurationState.Instance.Hid.InputConfig.Value);
|
|
|
|
ConfigurationState.Instance.Hid.InputConfig.Event += Hid.RefreshInputConfigEvent;
|
2021-03-18 19:09:33 -04:00
|
|
|
|
|
|
|
Logger.Info?.Print(LogClass.Application, $"AudioBackend: {ConfigurationState.Instance.System.AudioBackend.Value}");
|
|
|
|
Logger.Info?.Print(LogClass.Application, $"IsDocked: {ConfigurationState.Instance.System.EnableDockedMode.Value}");
|
|
|
|
Logger.Info?.Print(LogClass.Application, $"Vsync: {ConfigurationState.Instance.Graphics.EnableVsync.Value}");
|
2021-04-04 08:06:59 -04:00
|
|
|
Logger.Info?.Print(LogClass.Application, $"MemoryConfiguration: {_memoryConfiguration}");
|
2019-12-21 14:52:31 -05:00
|
|
|
}
|
|
|
|
|
2020-05-15 02:16:46 -04:00
|
|
|
public static IntegrityCheckLevel GetIntegrityCheckLevel()
|
2020-01-21 17:23:11 -05:00
|
|
|
{
|
|
|
|
return ConfigurationState.Instance.System.EnableFsIntegrityChecks
|
|
|
|
? IntegrityCheckLevel.ErrorOnInvalid
|
|
|
|
: IntegrityCheckLevel.None;
|
|
|
|
}
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
public void LoadCart(string exeFsDir, string romFsFile = null)
|
2018-02-20 15:09:23 -05:00
|
|
|
{
|
2020-05-15 02:16:46 -04:00
|
|
|
Application.LoadCart(exeFsDir, romFsFile);
|
2018-02-20 15:09:23 -05:00
|
|
|
}
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
public void LoadXci(string xciFile)
|
2018-09-08 14:33:27 -04:00
|
|
|
{
|
2020-05-15 02:16:46 -04:00
|
|
|
Application.LoadXci(xciFile);
|
2018-09-08 14:33:27 -04:00
|
|
|
}
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
public void LoadNca(string ncaFile)
|
2018-09-08 14:33:27 -04:00
|
|
|
{
|
2020-05-15 02:16:46 -04:00
|
|
|
Application.LoadNca(ncaFile);
|
2018-09-08 14:33:27 -04:00
|
|
|
}
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
public void LoadNsp(string nspFile)
|
2018-09-08 14:33:27 -04:00
|
|
|
{
|
2020-05-15 02:16:46 -04:00
|
|
|
Application.LoadNsp(nspFile);
|
2018-09-08 14:33:27 -04:00
|
|
|
}
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
public void LoadProgram(string fileName)
|
2018-02-20 15:09:23 -05:00
|
|
|
{
|
2020-05-15 02:16:46 -04:00
|
|
|
Application.LoadProgram(fileName);
|
2018-02-20 15:09:23 -05:00
|
|
|
}
|
|
|
|
|
2018-07-12 13:03:52 -04:00
|
|
|
public bool WaitFifo()
|
|
|
|
{
|
2020-07-23 22:53:25 -04:00
|
|
|
return Gpu.GPFifo.WaitForCommands();
|
2018-07-12 13:03:52 -04:00
|
|
|
}
|
|
|
|
|
2018-06-23 20:39:25 -04:00
|
|
|
public void ProcessFrame()
|
|
|
|
{
|
2020-09-10 15:44:04 -04:00
|
|
|
Gpu.Renderer.PreFrame();
|
|
|
|
|
2020-07-23 22:53:25 -04:00
|
|
|
Gpu.GPFifo.DispatchCalls();
|
2018-06-23 20:39:25 -04:00
|
|
|
}
|
|
|
|
|
2020-12-17 13:39:52 -05:00
|
|
|
public bool ConsumeFrameAvailable()
|
|
|
|
{
|
|
|
|
return Gpu.Window.ConsumeFrameAvailable();
|
|
|
|
}
|
|
|
|
|
2019-11-23 21:24:03 -05:00
|
|
|
public void PresentFrame(Action swapBuffersCallback)
|
|
|
|
{
|
|
|
|
Gpu.Window.Present(swapBuffersCallback);
|
|
|
|
}
|
|
|
|
|
2019-12-31 17:09:49 -05:00
|
|
|
public void DisposeGpu()
|
|
|
|
{
|
|
|
|
Gpu.Dispose();
|
|
|
|
}
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
protected virtual void Dispose(bool disposing)
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
if (disposing)
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2020-08-23 16:54:11 -04:00
|
|
|
ConfigurationState.Instance.Hid.InputConfig.Event -= Hid.RefreshInputConfigEvent;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
System.Dispose();
|
2020-07-11 23:07:01 -04:00
|
|
|
Host1x.Dispose();
|
2021-02-25 19:11:56 -05:00
|
|
|
AudioDeviceDriver.Dispose();
|
2020-07-11 23:07:01 -04:00
|
|
|
FileSystem.Unload();
|
|
|
|
Memory.Dispose();
|
2018-02-04 18:08:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-13 20:13:01 -04:00
|
|
|
}
|