2019-09-02 18:03:57 +02:00
|
|
|
using Gtk;
|
2018-10-17 19:15:50 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-04-26 06:53:10 +02:00
|
|
|
using Ryujinx.Profiler;
|
2019-11-29 05:32:51 +01:00
|
|
|
using Ryujinx.Ui;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
namespace Ryujinx
|
|
|
|
{
|
|
|
|
class Program
|
|
|
|
{
|
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
2018-02-09 01:43:22 +01:00
|
|
|
Console.Title = "Ryujinx Console";
|
|
|
|
|
2019-09-02 18:03:57 +02:00
|
|
|
string systemPath = Environment.GetEnvironmentVariable("Path", EnvironmentVariableTarget.Machine);
|
|
|
|
Environment.SetEnvironmentVariable("Path", $"{Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "bin")};{systemPath}");
|
2019-04-26 06:53:10 +02:00
|
|
|
|
2019-01-31 03:49:15 +01:00
|
|
|
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
|
|
|
|
AppDomain.CurrentDomain.ProcessExit += CurrentDomain_ProcessExit;
|
2019-11-29 05:32:51 +01:00
|
|
|
GLib.ExceptionManager.UnhandledException += Glib_UnhandledException;
|
2018-04-24 20:57:39 +02:00
|
|
|
|
2019-09-02 18:03:57 +02:00
|
|
|
Profile.Initialize();
|
2018-08-17 01:47:36 +02:00
|
|
|
|
2019-09-02 18:03:57 +02:00
|
|
|
Application.Init();
|
2019-04-26 06:53:10 +02:00
|
|
|
|
2019-11-29 05:32:51 +01: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-05 00:08:20 +01:00
|
|
|
|
2019-11-29 05:32:51 +01:00
|
|
|
MainWindow mainWindow = new MainWindow();
|
2019-09-02 18:03:57 +02:00
|
|
|
mainWindow.Show();
|
2019-05-30 22:27:43 +02:00
|
|
|
|
2019-09-08 03:59:41 +02:00
|
|
|
if (args.Length == 1)
|
|
|
|
{
|
|
|
|
mainWindow.LoadApplication(args[0]);
|
|
|
|
}
|
|
|
|
|
2019-09-02 18:03:57 +02:00
|
|
|
Application.Run();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
2018-11-15 03:22:50 +01:00
|
|
|
|
2019-01-31 03:49:15 +01:00
|
|
|
private static void CurrentDomain_ProcessExit(object sender, EventArgs e)
|
|
|
|
{
|
2019-02-11 13:00:32 +01:00
|
|
|
Logger.Shutdown();
|
2019-01-31 03:49:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
|
|
|
|
{
|
2019-11-29 05:32:51 +01:00
|
|
|
Exception exception = e.ExceptionObject as Exception;
|
2019-01-31 03:49:15 +01:00
|
|
|
|
|
|
|
Logger.PrintError(LogClass.Emulation, $"Unhandled exception caught: {exception}");
|
|
|
|
|
|
|
|
if (e.IsTerminating)
|
|
|
|
{
|
2019-02-11 13:00:32 +01:00
|
|
|
Logger.Shutdown();
|
2018-11-15 03:22:50 +01:00
|
|
|
}
|
|
|
|
}
|
2019-11-29 05:32:51 +01: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-05 00:08:20 +01:00
|
|
|
}
|
2019-09-02 18:03:57 +02:00
|
|
|
}
|