2018-03-15 20:06:24 -04:00
|
|
|
|
using Ryujinx.Audio;
|
2018-10-17 13:15:50 -04:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2018-02-20 15:09:23 -05:00
|
|
|
|
using Ryujinx.Graphics.Gal;
|
|
|
|
|
using Ryujinx.Graphics.Gal.OpenGL;
|
2018-06-10 20:46:42 -04:00
|
|
|
|
using Ryujinx.HLE;
|
2018-02-04 18:08:20 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx
|
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
2019-02-12 18:24:11 -05:00
|
|
|
|
public static string ApplicationDirectory => AppDomain.CurrentDomain.BaseDirectory;
|
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
2018-02-08 19:43:22 -05:00
|
|
|
|
Console.Title = "Ryujinx Console";
|
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
IGalRenderer renderer = new OGLRenderer();
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-11-14 21:22:50 -05:00
|
|
|
|
IAalOutput audioOut = InitializeAudioEngine();
|
2018-03-15 20:06:24 -04:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
Switch device = new Switch(renderer, audioOut);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2019-02-12 18:24:11 -05:00
|
|
|
|
Configuration.Load(Path.Combine(ApplicationDirectory, "Config.jsonc"));
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Configuration.Configure(device);
|
2019-01-30 21:49:15 -05:00
|
|
|
|
|
|
|
|
|
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
|
|
|
|
|
AppDomain.CurrentDomain.ProcessExit += CurrentDomain_ProcessExit;
|
2018-04-24 14:57:39 -04:00
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
|
if (args.Length == 1)
|
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(args[0]))
|
|
|
|
|
{
|
2018-10-30 21:43:02 -04:00
|
|
|
|
string[] romFsFiles = Directory.GetFiles(args[0], "*.istorage");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
if (romFsFiles.Length == 0)
|
2018-04-06 01:02:13 -04:00
|
|
|
|
{
|
2018-10-30 21:43:02 -04:00
|
|
|
|
romFsFiles = Directory.GetFiles(args[0], "*.romfs");
|
2018-04-06 01:02:13 -04:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
if (romFsFiles.Length > 0)
|
2018-02-04 18:08:20 -05:00
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as cart with RomFS.");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadCart(args[0], romFsFiles[0]);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as cart WITHOUT RomFS.");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadCart(args[0]);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (File.Exists(args[0]))
|
|
|
|
|
{
|
2018-09-08 14:33:27 -04:00
|
|
|
|
switch (Path.GetExtension(args[0]).ToLowerInvariant())
|
|
|
|
|
{
|
|
|
|
|
case ".xci":
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as XCI.");
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadXci(args[0]);
|
2018-09-08 14:33:27 -04:00
|
|
|
|
break;
|
|
|
|
|
case ".nca":
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as NCA.");
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadNca(args[0]);
|
2018-09-08 14:33:27 -04:00
|
|
|
|
break;
|
|
|
|
|
case ".nsp":
|
2019-01-24 20:51:28 -05:00
|
|
|
|
case ".pfs0":
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as NSP.");
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadNsp(args[0]);
|
2018-09-08 14:33:27 -04:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as homebrew.");
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadProgram(args[0]);
|
2018-09-08 14:33:27 -04:00
|
|
|
|
break;
|
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
2019-02-17 04:52:16 -05:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Logger.PrintWarning(LogClass.Application, "Please specify a valid XCI/NCA/NSP/PFS0/NRO file");
|
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-17 04:52:16 -05:00
|
|
|
|
Logger.PrintWarning(LogClass.Application, "Please specify the folder with the NSOs/IStorage or a NSO/NRO.");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
using (GlScreen screen = new GlScreen(device, renderer))
|
2018-02-04 18:08:20 -05:00
|
|
|
|
{
|
2018-10-30 21:43:02 -04:00
|
|
|
|
screen.MainLoop();
|
2018-08-16 19:47:36 -04:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.Dispose();
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
audioOut.Dispose();
|
2019-02-11 07:00:32 -05:00
|
|
|
|
|
|
|
|
|
Logger.Shutdown();
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
2018-11-14 21:22:50 -05:00
|
|
|
|
|
2019-01-30 21:49:15 -05:00
|
|
|
|
private static void CurrentDomain_ProcessExit(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.Shutdown();
|
2019-01-30 21:49:15 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var exception = e.ExceptionObject as Exception;
|
|
|
|
|
|
|
|
|
|
Logger.PrintError(LogClass.Emulation, $"Unhandled exception caught: {exception}");
|
|
|
|
|
|
|
|
|
|
if (e.IsTerminating)
|
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.Shutdown();
|
2019-01-30 21:49:15 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 21:22:50 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Picks an <see cref="IAalOutput"/> audio output renderer supported on this machine
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>An <see cref="IAalOutput"/> supported by this machine</returns>
|
|
|
|
|
private static IAalOutput InitializeAudioEngine()
|
|
|
|
|
{
|
|
|
|
|
if (SoundIoAudioOut.IsSupported)
|
|
|
|
|
{
|
|
|
|
|
return new SoundIoAudioOut();
|
|
|
|
|
}
|
|
|
|
|
else if (OpenALAudioOut.IsSupported)
|
|
|
|
|
{
|
|
|
|
|
return new OpenALAudioOut();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return new DummyAudioOut();
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|