mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 21:50:48 -07:00
aloha
This commit is contained in:
57
Program.cs
Normal file
57
Program.cs
Normal file
@ -0,0 +1,57 @@
|
||||
using Gal;
|
||||
using Gal.OpenGL;
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Ryujinx
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
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)
|
||||
{
|
||||
Console.WriteLine("Loading as cart with RomFS.");
|
||||
|
||||
Ns.Os.LoadCart(args[0], RomFsFiles[0]);
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("Loading as cart WITHOUT RomFS.");
|
||||
|
||||
Ns.Os.LoadCart(args[0]);
|
||||
}
|
||||
}
|
||||
else if (File.Exists(args[0]))
|
||||
{
|
||||
Console.WriteLine("Loading as homebrew.");
|
||||
|
||||
Ns.Os.LoadProgram(args[0]);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("Please specify the folder with the NSOs/IStorage or a NSO/NRO.");
|
||||
}
|
||||
|
||||
using (GLScreen Screen = new GLScreen(Ns, Renderer))
|
||||
{
|
||||
Screen.Run(60.0);
|
||||
}
|
||||
|
||||
Ns.Os.StopAllProcesses();
|
||||
|
||||
Ns.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user