mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:28:34 +00:00
5ecfb5c657
* Add internal Logging support
Add class Logging.
Replace all Console.WriteLine() to looks better.
Add informations inside Windows Titles.
* Revert "Add internal Logging support"
This reverts commit 275d363aaf
.
* Add internal Logging support
Add Logging Class.
Replace all Console.WriteLine() to looks better.
Add debug informations of IpcMessage.
Add informations inside Windows Titles.
* Add internal Logging support2
Add Logging Class.
Replace all Console.WriteLine() to looks better.
Add debug informations of IpcMessage.
Add informations inside Windows Titles.
* Add internal Config support
Add Config Class.
Add Ryujinx.conf file (Ini file).
Use the Config Class inside Logging.
* Add internal Config support
Add Config Class.
Add Ryujinx.conf file (Ini file).
Use the Config Class inside Logging.
65 lines
1.7 KiB
C#
65 lines
1.7 KiB
C#
using Gal;
|
|
using Gal.OpenGL;
|
|
using System;
|
|
using System.IO;
|
|
|
|
namespace Ryujinx
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Config.Read();
|
|
|
|
Console.Title = "Ryujinx Console";
|
|
|
|
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)
|
|
{
|
|
Logging.Info("Loading as cart with RomFS.");
|
|
|
|
Console.Title += " - Cart (with RomFS) - " + args[0];
|
|
Ns.Os.LoadCart(args[0], RomFsFiles[0]);
|
|
}
|
|
else
|
|
{
|
|
Logging.Info("Loading as cart WITHOUT RomFS.");
|
|
|
|
Console.Title += " - Cart (without RomFS) - " + args[0];
|
|
Ns.Os.LoadCart(args[0]);
|
|
}
|
|
}
|
|
else if (File.Exists(args[0]))
|
|
{
|
|
Logging.Info("Loading as homebrew.");
|
|
|
|
Console.Title += " - Homebrew - " + args[0];
|
|
Ns.Os.LoadProgram(args[0]);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Logging.Error("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();
|
|
}
|
|
}
|
|
}
|