ryujinx/Ryujinx/Ui/Program.cs

91 lines
2.7 KiB
C#
Raw Normal View History

using Ryujinx.Audio;
using Ryujinx.Audio.OpenAL;
using Ryujinx.Common.Logging;
using Ryujinx.Graphics.Gal;
using Ryujinx.Graphics.Gal.OpenGL;
using Ryujinx.HLE;
2018-02-04 15:08:20 -08:00
using System;
using System.IO;
namespace Ryujinx
{
class Program
{
static void Main(string[] args)
{
Console.Title = "Ryujinx Console";
IGalRenderer Renderer = new OGLRenderer();
2018-02-04 15:08:20 -08:00
IAalOutput AudioOut = new OpenALAudioOut();
Switch Device = new Switch(Renderer, AudioOut);
2018-02-04 15:08:20 -08:00
Config.Read(Device);
2018-04-24 11:57:39 -07:00
Logger.Updated += ConsoleLog.Log;
2018-04-24 11:57:39 -07:00
2018-02-04 15:08:20 -08:00
if (args.Length == 1)
{
if (Directory.Exists(args[0]))
{
string[] RomFsFiles = Directory.GetFiles(args[0], "*.istorage");
2018-04-05 22:02:13 -07:00
if (RomFsFiles.Length == 0)
{
RomFsFiles = Directory.GetFiles(args[0], "*.romfs");
}
2018-02-04 15:08:20 -08:00
if (RomFsFiles.Length > 0)
{
2018-04-24 11:57:39 -07:00
Console.WriteLine("Loading as cart with RomFS.");
2018-02-04 15:08:20 -08:00
Device.LoadCart(args[0], RomFsFiles[0]);
2018-02-04 15:08:20 -08:00
}
else
{
2018-04-24 11:57:39 -07:00
Console.WriteLine("Loading as cart WITHOUT RomFS.");
2018-02-04 15:08:20 -08:00
Device.LoadCart(args[0]);
2018-02-04 15:08:20 -08:00
}
}
else if (File.Exists(args[0]))
{
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 15:08:20 -08:00
}
}
else
{
2018-04-24 11:57:39 -07:00
Console.WriteLine("Please specify the folder with the NSOs/IStorage or a NSO/NRO.");
2018-02-04 15:08:20 -08:00
}
using (GLScreen Screen = new GLScreen(Device, Renderer))
2018-02-04 15:08:20 -08:00
{
Screen.MainLoop();
Device.Dispose();
2018-02-04 15:08:20 -08:00
}
AudioOut.Dispose();
2018-02-04 15:08:20 -08:00
}
}
}