2019-09-02 16:03:57 +00:00
|
|
|
using Gtk;
|
2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2020-05-04 02:15:27 +00:00
|
|
|
using Ryujinx.Common.SystemInfo;
|
2019-12-21 19:52:31 +00:00
|
|
|
using Ryujinx.Configuration;
|
2020-02-06 11:25:47 +00:00
|
|
|
using Ryujinx.Debugger.Profiler;
|
2019-11-29 04:32:51 +00:00
|
|
|
using Ryujinx.Ui;
|
2020-02-12 00:56:19 +00:00
|
|
|
using OpenTK;
|
2018-02-04 23:08:20 +00:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
2020-02-12 13:35:39 +00:00
|
|
|
using System.Reflection;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
namespace Ryujinx
|
|
|
|
{
|
|
|
|
class Program
|
|
|
|
{
|
2020-02-12 13:35:39 +00:00
|
|
|
public static string Version { get; private set; }
|
|
|
|
|
2020-02-14 19:19:13 +00:00
|
|
|
public static string ConfigurationPath { get; set; }
|
2020-04-25 13:01:32 +00:00
|
|
|
|
2018-02-04 23:08:20 +00:00
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
2020-02-12 00:56:19 +00:00
|
|
|
Toolkit.Init(new ToolkitOptions
|
|
|
|
{
|
|
|
|
Backend = PlatformBackend.PreferNative,
|
|
|
|
EnableHighResolution = true
|
|
|
|
});
|
|
|
|
|
2020-02-12 13:35:39 +00:00
|
|
|
Version = Assembly.GetEntryAssembly().GetCustomAttribute<AssemblyInformationalVersionAttribute>().InformationalVersion;
|
|
|
|
|
2020-02-14 10:33:22 +00:00
|
|
|
Console.Title = $"Ryujinx Console {Version}";
|
|
|
|
|
2019-09-02 16:03:57 +00:00
|
|
|
string systemPath = Environment.GetEnvironmentVariable("Path", EnvironmentVariableTarget.Machine);
|
|
|
|
Environment.SetEnvironmentVariable("Path", $"{Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "bin")};{systemPath}");
|
2019-04-26 04:53:10 +00:00
|
|
|
|
2019-12-21 19:52:31 +00:00
|
|
|
GLib.ExceptionManager.UnhandledException += Glib_UnhandledException;
|
|
|
|
|
|
|
|
// Initialize the configuration
|
|
|
|
ConfigurationState.Initialize();
|
|
|
|
|
|
|
|
// Initialize the logger system
|
|
|
|
LoggerModule.Initialize();
|
|
|
|
|
|
|
|
// Initialize Discord integration
|
|
|
|
DiscordIntegrationModule.Initialize();
|
|
|
|
|
2020-02-14 19:19:13 +00:00
|
|
|
string localConfigurationPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Config.json");
|
2020-02-14 22:07:22 +00:00
|
|
|
string globalBasePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Ryujinx");
|
|
|
|
string globalConfigurationPath = Path.Combine(globalBasePath, "Config.json");
|
2019-12-21 19:52:31 +00:00
|
|
|
|
|
|
|
// Now load the configuration as the other subsystems are now registered
|
2020-02-14 19:19:13 +00:00
|
|
|
if (File.Exists(localConfigurationPath))
|
2019-12-21 19:52:31 +00:00
|
|
|
{
|
2020-02-14 19:19:13 +00:00
|
|
|
ConfigurationPath = localConfigurationPath;
|
|
|
|
|
|
|
|
ConfigurationFileFormat configurationFileFormat = ConfigurationFileFormat.Load(localConfigurationPath);
|
|
|
|
|
2020-03-19 22:37:55 +00:00
|
|
|
ConfigurationState.Instance.Load(configurationFileFormat, ConfigurationPath);
|
2020-02-14 19:19:13 +00:00
|
|
|
}
|
|
|
|
else if (File.Exists(globalConfigurationPath))
|
|
|
|
{
|
|
|
|
ConfigurationPath = globalConfigurationPath;
|
|
|
|
|
|
|
|
ConfigurationFileFormat configurationFileFormat = ConfigurationFileFormat.Load(globalConfigurationPath);
|
|
|
|
|
2020-03-19 22:37:55 +00:00
|
|
|
ConfigurationState.Instance.Load(configurationFileFormat, ConfigurationPath);
|
2019-12-21 19:52:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No configuration, we load the default values and save it on disk
|
2020-02-14 19:19:13 +00:00
|
|
|
ConfigurationPath = globalConfigurationPath;
|
|
|
|
|
2020-02-14 22:07:22 +00:00
|
|
|
// Make sure to create the Ryujinx directory if needed.
|
|
|
|
Directory.CreateDirectory(globalBasePath);
|
|
|
|
|
2019-12-21 19:52:31 +00:00
|
|
|
ConfigurationState.Instance.LoadDefault();
|
2020-02-14 19:19:13 +00:00
|
|
|
ConfigurationState.Instance.ToFileFormat().SaveConfig(globalConfigurationPath);
|
2019-12-21 19:52:31 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 13:24:33 +00:00
|
|
|
Logger.PrintInfo(LogClass.Application, $"Ryujinx Version: {Version}");
|
|
|
|
|
|
|
|
Logger.PrintInfo(LogClass.Application, $"Operating System: {SystemInfo.Instance.OsDescription}");
|
|
|
|
Logger.PrintInfo(LogClass.Application, $"CPU: {SystemInfo.Instance.CpuName}");
|
|
|
|
Logger.PrintInfo(LogClass.Application, $"Total RAM: {SystemInfo.Instance.RamSizeInMB}");
|
|
|
|
|
2019-09-02 16:03:57 +00:00
|
|
|
Profile.Initialize();
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2019-09-02 16:03:57 +00:00
|
|
|
Application.Init();
|
2019-04-26 04:53:10 +00:00
|
|
|
|
2020-02-14 22:07:22 +00:00
|
|
|
string globalProdKeysPath = Path.Combine(globalBasePath, "system", "prod.keys");
|
|
|
|
string userProfilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".switch", "prod.keys");
|
|
|
|
if (!File.Exists(globalProdKeysPath) && !File.Exists(userProfilePath) && !Migration.IsMigrationNeeded())
|
2019-11-29 04:32:51 +00:00
|
|
|
{
|
2020-02-06 11:38:24 +00:00
|
|
|
GtkDialog.CreateWarningDialog("Key file was not found", "Please refer to `KEYS.md` for more info");
|
2019-11-29 04:32:51 +00:00
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-11-29 04:32:51 +00:00
|
|
|
MainWindow mainWindow = new MainWindow();
|
2019-09-02 16:03:57 +00:00
|
|
|
mainWindow.Show();
|
2019-05-30 20:27:43 +00:00
|
|
|
|
2019-09-08 01:59:41 +00:00
|
|
|
if (args.Length == 1)
|
|
|
|
{
|
|
|
|
mainWindow.LoadApplication(args[0]);
|
|
|
|
}
|
|
|
|
|
2019-09-02 16:03:57 +00:00
|
|
|
Application.Run();
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
2018-11-15 02:22:50 +00:00
|
|
|
|
2019-11-29 04:32:51 +00: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 23:08:20 +00:00
|
|
|
}
|
2019-09-02 16:03:57 +00:00
|
|
|
}
|