2019-09-02 12:03:57 -04:00
|
|
|
using Gtk;
|
2018-10-17 13:15:50 -04:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-12-21 14:52:31 -05:00
|
|
|
using Ryujinx.Configuration;
|
2020-02-06 06:25:47 -05:00
|
|
|
using Ryujinx.Debugger.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-12-21 14:52:31 -05:00
|
|
|
GLib.ExceptionManager.UnhandledException += Glib_UnhandledException;
|
|
|
|
|
|
|
|
// Initialize the configuration
|
|
|
|
ConfigurationState.Initialize();
|
|
|
|
|
|
|
|
// Initialize the logger system
|
|
|
|
LoggerModule.Initialize();
|
|
|
|
|
|
|
|
// Initialize Discord integration
|
|
|
|
DiscordIntegrationModule.Initialize();
|
|
|
|
|
|
|
|
string configurationPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Config.json");
|
|
|
|
|
|
|
|
// Now load the configuration as the other subsystems are now registered
|
|
|
|
if (File.Exists(configurationPath))
|
|
|
|
{
|
|
|
|
ConfigurationFileFormat configurationFileFormat = ConfigurationFileFormat.Load(configurationPath);
|
|
|
|
ConfigurationState.Instance.Load(configurationFileFormat);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No configuration, we load the default values and save it on disk
|
|
|
|
ConfigurationState.Instance.LoadDefault();
|
|
|
|
ConfigurationState.Instance.ToFileFormat().SaveConfig(configurationPath);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-01-05 06:49:44 -05:00
|
|
|
string appDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Ryujinx", "system", "prod.keys");
|
2019-11-28 23:32:51 -05:00
|
|
|
string userProfilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".switch", "prod.keys");
|
2020-01-05 10:39:35 -05:00
|
|
|
if (!File.Exists(appDataPath) && !File.Exists(userProfilePath) && !Migration.IsMigrationNeeded())
|
2019-11-28 23:32:51 -05:00
|
|
|
{
|
2020-02-06 06:38:24 -05:00
|
|
|
GtkDialog.CreateWarningDialog("Key file was not found", "Please refer to `KEYS.md` for more info");
|
2019-11-28 23:32:51 -05:00
|
|
|
}
|
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-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
|
|
|
}
|