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