2018-03-16 01:06:24 +01:00
|
|
|
|
using Ryujinx.Audio;
|
2018-10-17 19:15:50 +02:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2018-02-20 21:09:23 +01:00
|
|
|
|
using Ryujinx.Graphics.Gal;
|
|
|
|
|
using Ryujinx.Graphics.Gal.OpenGL;
|
2018-06-11 02:46:42 +02:00
|
|
|
|
using Ryujinx.HLE;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx
|
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
2019-02-13 00:24:11 +01:00
|
|
|
|
public static string ApplicationDirectory => AppDomain.CurrentDomain.BaseDirectory;
|
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
2018-02-09 01:43:22 +01:00
|
|
|
|
Console.Title = "Ryujinx Console";
|
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
|
IGalRenderer renderer = new OGLRenderer();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2018-11-15 03:22:50 +01:00
|
|
|
|
IAalOutput audioOut = InitializeAudioEngine();
|
2018-03-16 01:06:24 +01:00
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
|
Switch device = new Switch(renderer, audioOut);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2019-02-13 00:24:11 +01:00
|
|
|
|
Configuration.Load(Path.Combine(ApplicationDirectory, "Config.jsonc"));
|
2019-02-11 13:00:32 +01:00
|
|
|
|
Configuration.Configure(device);
|
2019-01-31 03:49:15 +01:00
|
|
|
|
|
|
|
|
|
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
|
|
|
|
|
AppDomain.CurrentDomain.ProcessExit += CurrentDomain_ProcessExit;
|
2018-04-24 20:57:39 +02:00
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
|
if (args.Length == 1)
|
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(args[0]))
|
|
|
|
|
{
|
2018-10-31 02:43:02 +01:00
|
|
|
|
string[] romFsFiles = Directory.GetFiles(args[0], "*.istorage");
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
|
if (romFsFiles.Length == 0)
|
2018-04-06 07:02:13 +02:00
|
|
|
|
{
|
2018-10-31 02:43:02 +01:00
|
|
|
|
romFsFiles = Directory.GetFiles(args[0], "*.romfs");
|
2018-04-06 07:02:13 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
|
if (romFsFiles.Length > 0)
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2019-02-11 13:00:32 +01:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as cart with RomFS.");
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
|
device.LoadCart(args[0], romFsFiles[0]);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-11 13:00:32 +01:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as cart WITHOUT RomFS.");
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
|
device.LoadCart(args[0]);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (File.Exists(args[0]))
|
|
|
|
|
{
|
2018-09-08 20:33:27 +02:00
|
|
|
|
switch (Path.GetExtension(args[0]).ToLowerInvariant())
|
|
|
|
|
{
|
|
|
|
|
case ".xci":
|
2019-02-11 13:00:32 +01:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as XCI.");
|
2018-10-31 02:43:02 +01:00
|
|
|
|
device.LoadXci(args[0]);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
break;
|
|
|
|
|
case ".nca":
|
2019-02-11 13:00:32 +01:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as NCA.");
|
2018-10-31 02:43:02 +01:00
|
|
|
|
device.LoadNca(args[0]);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
break;
|
|
|
|
|
case ".nsp":
|
2019-01-25 02:51:28 +01:00
|
|
|
|
case ".pfs0":
|
2019-02-11 13:00:32 +01:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as NSP.");
|
2018-10-31 02:43:02 +01:00
|
|
|
|
device.LoadNsp(args[0]);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2019-02-11 13:00:32 +01:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as homebrew.");
|
2018-10-31 02:43:02 +01:00
|
|
|
|
device.LoadProgram(args[0]);
|
2018-09-08 20:33:27 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-11 13:00:32 +01:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Please specify the folder with the NSOs/IStorage or a NSO/NRO.");
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
|
using (GlScreen screen = new GlScreen(device, renderer))
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2018-10-31 02:43:02 +01:00
|
|
|
|
screen.MainLoop();
|
2018-08-17 01:47:36 +02:00
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
|
device.Dispose();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
|
audioOut.Dispose();
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
|
|
Logger.Shutdown();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
2018-11-15 03:22:50 +01:00
|
|
|
|
|
2019-01-31 03:49:15 +01:00
|
|
|
|
private static void CurrentDomain_ProcessExit(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-02-11 13:00:32 +01:00
|
|
|
|
Logger.Shutdown();
|
2019-01-31 03:49:15 +01: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 13:00:32 +01:00
|
|
|
|
Logger.Shutdown();
|
2019-01-31 03:49:15 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-15 03:22:50 +01: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-05 00:08:20 +01:00
|
|
|
|
}
|
|
|
|
|
}
|