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
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
Config.Read(device);
|
2018-04-24 14:57:39 -04:00
|
|
|
|
|
2018-10-17 13:15:50 -04:00
|
|
|
|
Logger.Updated += ConsoleLog.Log;
|
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
|
|
|
|
{
|
2018-04-24 14:57:39 -04:00
|
|
|
|
Console.WriteLine("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
|
|
|
|
|
{
|
2018-04-24 14:57:39 -04:00
|
|
|
|
Console.WriteLine("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":
|
|
|
|
|
Console.WriteLine("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":
|
|
|
|
|
Console.WriteLine("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":
|
|
|
|
|
Console.WriteLine("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:
|
|
|
|
|
Console.WriteLine("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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-04-24 14:57:39 -04:00
|
|
|
|
Console.WriteLine("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();
|
2018-02-04 18:08:20 -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
|
|
|
|
}
|
|
|
|
|
}
|