2018-03-15 19:06:24 -05:00
|
|
|
|
using Ryujinx.Audio;
|
|
|
|
|
using Ryujinx.Audio.OpenAL;
|
2018-10-17 12:15:50 -05:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2018-02-20 14:09:23 -06:00
|
|
|
|
using Ryujinx.Graphics.Gal;
|
|
|
|
|
using Ryujinx.Graphics.Gal.OpenGL;
|
2018-06-10 19:46:42 -05:00
|
|
|
|
using Ryujinx.HLE;
|
2018-02-04 17:08:20 -06:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx
|
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
2018-02-08 18:43:22 -06:00
|
|
|
|
Console.Title = "Ryujinx Console";
|
|
|
|
|
|
2018-06-23 19:39:25 -05:00
|
|
|
|
IGalRenderer Renderer = new OGLRenderer();
|
2018-02-04 17:08:20 -06:00
|
|
|
|
|
2018-03-15 19:06:24 -05:00
|
|
|
|
IAalOutput AudioOut = new OpenALAudioOut();
|
|
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
|
Switch Device = new Switch(Renderer, AudioOut);
|
2018-02-04 17:08:20 -06:00
|
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
|
Config.Read(Device);
|
2018-04-24 13:57:39 -05:00
|
|
|
|
|
2018-10-17 12:15:50 -05:00
|
|
|
|
Logger.Updated += ConsoleLog.Log;
|
2018-04-24 13:57:39 -05:00
|
|
|
|
|
2018-02-04 17:08:20 -06:00
|
|
|
|
if (args.Length == 1)
|
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(args[0]))
|
|
|
|
|
{
|
|
|
|
|
string[] RomFsFiles = Directory.GetFiles(args[0], "*.istorage");
|
|
|
|
|
|
2018-04-06 00:02:13 -05:00
|
|
|
|
if (RomFsFiles.Length == 0)
|
|
|
|
|
{
|
|
|
|
|
RomFsFiles = Directory.GetFiles(args[0], "*.romfs");
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-04 17:08:20 -06:00
|
|
|
|
if (RomFsFiles.Length > 0)
|
|
|
|
|
{
|
2018-04-24 13:57:39 -05:00
|
|
|
|
Console.WriteLine("Loading as cart with RomFS.");
|
2018-02-04 17:08:20 -06:00
|
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
|
Device.LoadCart(args[0], RomFsFiles[0]);
|
2018-02-04 17:08:20 -06:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-04-24 13:57:39 -05:00
|
|
|
|
Console.WriteLine("Loading as cart WITHOUT RomFS.");
|
2018-02-04 17:08:20 -06:00
|
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
|
Device.LoadCart(args[0]);
|
2018-02-04 17:08:20 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (File.Exists(args[0]))
|
|
|
|
|
{
|
2018-09-08 13:33:27 -05:00
|
|
|
|
switch (Path.GetExtension(args[0]).ToLowerInvariant())
|
|
|
|
|
{
|
|
|
|
|
case ".xci":
|
|
|
|
|
Console.WriteLine("Loading as XCI.");
|
|
|
|
|
Device.LoadXci(args[0]);
|
|
|
|
|
break;
|
|
|
|
|
case ".nca":
|
|
|
|
|
Console.WriteLine("Loading as NCA.");
|
|
|
|
|
Device.LoadNca(args[0]);
|
|
|
|
|
break;
|
|
|
|
|
case ".nsp":
|
|
|
|
|
Console.WriteLine("Loading as NSP.");
|
|
|
|
|
Device.LoadNsp(args[0]);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
Console.WriteLine("Loading as homebrew.");
|
|
|
|
|
Device.LoadProgram(args[0]);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-02-04 17:08:20 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-04-24 13:57:39 -05:00
|
|
|
|
Console.WriteLine("Please specify the folder with the NSOs/IStorage or a NSO/NRO.");
|
2018-02-04 17:08:20 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
|
using (GLScreen Screen = new GLScreen(Device, Renderer))
|
2018-02-04 17:08:20 -06:00
|
|
|
|
{
|
2018-07-12 12:03:52 -05:00
|
|
|
|
Screen.MainLoop();
|
2018-08-16 18:47:36 -05:00
|
|
|
|
|
|
|
|
|
Device.Dispose();
|
2018-02-04 17:08:20 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
|
AudioOut.Dispose();
|
2018-02-04 17:08:20 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|