2019-09-02 12:03:57 -04:00
|
|
|
using Gtk;
|
2018-10-17 13:15:50 -04:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-04-26 00:53:10 -04:00
|
|
|
using Ryujinx.Profiler;
|
2019-11-28 23:32:51 -05:00
|
|
|
using Ryujinx.Ui;
|
2018-02-04 18:08:20 -05:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
namespace Ryujinx
|
|
|
|
{
|
|
|
|
class Program
|
|
|
|
{
|
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
2018-02-08 19:43:22 -05:00
|
|
|
Console.Title = "Ryujinx Console";
|
|
|
|
|
2019-09-02 12:03:57 -04:00
|
|
|
string systemPath = Environment.GetEnvironmentVariable("Path", EnvironmentVariableTarget.Machine);
|
|
|
|
Environment.SetEnvironmentVariable("Path", $"{Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "bin")};{systemPath}");
|
2019-04-26 00:53:10 -04:00
|
|
|
|
2019-01-30 21:49:15 -05:00
|
|
|
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
|
|
|
|
AppDomain.CurrentDomain.ProcessExit += CurrentDomain_ProcessExit;
|
2019-11-28 23:32:51 -05:00
|
|
|
GLib.ExceptionManager.UnhandledException += Glib_UnhandledException;
|
2018-04-24 14:57:39 -04:00
|
|
|
|
2019-09-02 12:03:57 -04:00
|
|
|
Profile.Initialize();
|
2018-08-16 19:47:36 -04:00
|
|
|
|
2019-09-02 12:03:57 -04:00
|
|
|
Application.Init();
|
2019-04-26 00:53:10 -04:00
|
|
|
|
2019-11-28 23:32:51 -05:00
|
|
|
string appDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "RyuFs", "system", "prod.keys");
|
|
|
|
string userProfilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".switch", "prod.keys");
|
|
|
|
if (!File.Exists(appDataPath) && !File.Exists(userProfilePath))
|
|
|
|
{
|
|
|
|
GtkDialog.CreateErrorDialog($"Key file was not found. Please refer to `KEYS.md` for more info");
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2019-11-28 23:32:51 -05:00
|
|
|
MainWindow mainWindow = new MainWindow();
|
2019-09-02 12:03:57 -04:00
|
|
|
mainWindow.Show();
|
2019-05-30 16:27:43 -04:00
|
|
|
|
2019-09-07 21:59:41 -04:00
|
|
|
if (args.Length == 1)
|
|
|
|
{
|
|
|
|
mainWindow.LoadApplication(args[0]);
|
|
|
|
}
|
|
|
|
|
2019-09-02 12:03:57 -04:00
|
|
|
Application.Run();
|
2018-02-04 18:08:20 -05:00
|
|
|
}
|
2018-11-14 21:22:50 -05:00
|
|
|
|
2019-01-30 21:49:15 -05:00
|
|
|
private static void CurrentDomain_ProcessExit(object sender, EventArgs e)
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
Logger.Shutdown();
|
2019-01-30 21:49:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
|
|
|
|
{
|
2019-11-28 23:32:51 -05:00
|
|
|
Exception exception = e.ExceptionObject as Exception;
|
2019-01-30 21:49:15 -05:00
|
|
|
|
|
|
|
Logger.PrintError(LogClass.Emulation, $"Unhandled exception caught: {exception}");
|
|
|
|
|
|
|
|
if (e.IsTerminating)
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
Logger.Shutdown();
|
2018-11-14 21:22:50 -05:00
|
|
|
}
|
|
|
|
}
|
2019-11-28 23:32:51 -05:00
|
|
|
|
|
|
|
private static void Glib_UnhandledException(GLib.UnhandledExceptionArgs e)
|
|
|
|
{
|
|
|
|
Exception exception = e.ExceptionObject as Exception;
|
|
|
|
|
|
|
|
Logger.PrintError(LogClass.Application, $"Unhandled exception caught: {exception}");
|
|
|
|
|
|
|
|
if (e.IsTerminating)
|
|
|
|
{
|
|
|
|
Logger.Shutdown();
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
}
|
2019-09-02 12:03:57 -04:00
|
|
|
}
|