2018-03-15 20:06:24 -04:00
|
|
|
|
using Ryujinx.Audio;
|
|
|
|
|
using Ryujinx.Audio.OpenAL;
|
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-06-23 20:39:25 -04:00
|
|
|
|
IGalRenderer Renderer = new OGLRenderer();
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-03-15 20:06:24 -04:00
|
|
|
|
IAalOutput AudioOut = new OpenALAudioOut();
|
|
|
|
|
|
|
|
|
|
Switch Ns = new Switch(Renderer, AudioOut);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-08-14 18:02:42 -04:00
|
|
|
|
Config.Read(Ns);
|
2018-04-24 14:57:39 -04:00
|
|
|
|
|
|
|
|
|
Ns.Log.Updated += ConsoleLog.PrintLog;
|
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
|
if (args.Length == 1)
|
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(args[0]))
|
|
|
|
|
{
|
|
|
|
|
string[] RomFsFiles = Directory.GetFiles(args[0], "*.istorage");
|
|
|
|
|
|
2018-04-06 01:02:13 -04:00
|
|
|
|
if (RomFsFiles.Length == 0)
|
|
|
|
|
{
|
|
|
|
|
RomFsFiles = Directory.GetFiles(args[0], "*.romfs");
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
|
if (RomFsFiles.Length > 0)
|
|
|
|
|
{
|
2018-04-24 14:57:39 -04:00
|
|
|
|
Console.WriteLine("Loading as cart with RomFS.");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-02-20 15:09:23 -05:00
|
|
|
|
Ns.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-02-20 15:09:23 -05:00
|
|
|
|
Ns.LoadCart(args[0]);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (File.Exists(args[0]))
|
|
|
|
|
{
|
2018-04-24 14:57:39 -04:00
|
|
|
|
Console.WriteLine("Loading as homebrew.");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-02-20 15:09:23 -05:00
|
|
|
|
Ns.LoadProgram(args[0]);
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
using (GLScreen Screen = new GLScreen(Ns, Renderer))
|
|
|
|
|
{
|
2018-02-17 16:36:08 -05:00
|
|
|
|
Ns.Finish += (Sender, Args) =>
|
|
|
|
|
{
|
2018-02-15 07:16:16 -05:00
|
|
|
|
Screen.Exit();
|
|
|
|
|
};
|
|
|
|
|
|
2018-07-12 13:03:52 -04:00
|
|
|
|
Screen.MainLoop();
|
2018-07-17 15:14:27 -04:00
|
|
|
|
Ns.OnFinish(EventArgs.Empty);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-23 19:59:38 -05:00
|
|
|
|
Environment.Exit(0);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|