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