2018-02-04 23:08:20 +00:00
|
|
|
|
using Gal;
|
|
|
|
|
using Gal.OpenGL;
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx
|
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
2018-02-09 02:47:32 +00:00
|
|
|
|
Config.Read();
|
|
|
|
|
|
2018-02-09 00:43:22 +00:00
|
|
|
|
Console.Title = "Ryujinx Console";
|
|
|
|
|
|
2018-02-04 23:08:20 +00:00
|
|
|
|
IGalRenderer Renderer = new OpenGLRenderer();
|
|
|
|
|
|
|
|
|
|
Switch Ns = new Switch(Renderer);
|
|
|
|
|
|
|
|
|
|
if (args.Length == 1)
|
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(args[0]))
|
|
|
|
|
{
|
|
|
|
|
string[] RomFsFiles = Directory.GetFiles(args[0], "*.istorage");
|
|
|
|
|
|
|
|
|
|
if (RomFsFiles.Length > 0)
|
|
|
|
|
{
|
2018-02-09 00:43:22 +00:00
|
|
|
|
Logging.Info("Loading as cart with RomFS.");
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
|
|
Ns.Os.LoadCart(args[0], RomFsFiles[0]);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-02-09 00:43:22 +00:00
|
|
|
|
Logging.Info("Loading as cart WITHOUT RomFS.");
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
|
|
Ns.Os.LoadCart(args[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (File.Exists(args[0]))
|
|
|
|
|
{
|
2018-02-09 00:43:22 +00:00
|
|
|
|
Logging.Info("Loading as homebrew.");
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
|
|
Ns.Os.LoadProgram(args[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-02-09 00:43:22 +00:00
|
|
|
|
Logging.Error("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))
|
|
|
|
|
{
|
|
|
|
|
Screen.Run(60.0);
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-14 02:43:08 +00:00
|
|
|
|
Ns.Os.FinalizeAllProcesses();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
|
|
Ns.Dispose();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|