mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 06:13:52 +02:00
add CefService
This commit is contained in:
88
Program.cs
88
Program.cs
@@ -3,10 +3,8 @@
|
||||
// This work is licensed under the terms of the MIT license.
|
||||
// For a copy, see <https://opensource.org/licenses/MIT>.
|
||||
|
||||
using CefSharp;
|
||||
using CefSharp.WinForms;
|
||||
using CefSharp.DevTools.Runtime;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace VRCX
|
||||
@@ -21,65 +19,11 @@ namespace VRCX
|
||||
}
|
||||
|
||||
[STAThread]
|
||||
public static void Main()
|
||||
private static void Main()
|
||||
{
|
||||
try
|
||||
{
|
||||
var settings = new CefSettings
|
||||
{
|
||||
CachePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "cache"),
|
||||
IgnoreCertificateErrors = true,
|
||||
LogSeverity = LogSeverity.Disable,
|
||||
PersistUserPreferences = true,
|
||||
WindowlessRenderingEnabled = true,
|
||||
PersistSessionCookies = true
|
||||
};
|
||||
settings.CefCommandLineArgs.Add("ignore-certificate-errors");
|
||||
// settings.CefCommandLineArgs.Add("no-proxy-server");
|
||||
// settings.CefCommandLineArgs.Add("disable-web-security");
|
||||
settings.CefCommandLineArgs.Add("allow-universal-access-from-files");
|
||||
settings.CefCommandLineArgs.Add("disable-extensions");
|
||||
settings.CefCommandLineArgs.Add("disable-plugins");
|
||||
settings.CefCommandLineArgs.Add("disable-pdf-extension");
|
||||
settings.CefCommandLineArgs.Add("disable-spell-checking");
|
||||
settings.CefCommandLineArgs.Add("disable-gpu");
|
||||
settings.CefCommandLineArgs.Add("disable-gpu-vsync");
|
||||
settings.DisableGpuAcceleration();
|
||||
/*settings.RegisterScheme(new CefCustomScheme
|
||||
{
|
||||
SchemeName = "vrcx",
|
||||
DomainName = "app",
|
||||
SchemeHandlerFactory = new FolderSchemeHandlerFactory(Application.StartupPath + "/../../../html")
|
||||
});*/
|
||||
|
||||
// MUST TURN ON (Error when creating a browser on certain systems.)
|
||||
CefSharpSettings.WcfEnabled = true;
|
||||
CefSharpSettings.ShutdownOnExit = false;
|
||||
CefSharpSettings.SubprocessExitIfParentProcessClosed = true;
|
||||
|
||||
Cef.EnableHighDPISupport();
|
||||
|
||||
if (Cef.Initialize(settings, true, browserProcessHandler: null))
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
VRCXStorage.Load();
|
||||
CpuMonitor.Instance.Init();
|
||||
Discord.Instance.Init();
|
||||
SQLite.Instance.Init();
|
||||
WebApi.Instance.Init();
|
||||
LogWatcher.Instance.Init();
|
||||
VRCXVR.Init();
|
||||
Application.Run(new MainForm());
|
||||
VRCXVR.Exit();
|
||||
LogWatcher.Instance.Exit();
|
||||
WebApi.Instance.Exit();
|
||||
SQLite.Instance.Exit();
|
||||
Discord.Instance.Exit();
|
||||
CpuMonitor.Instance.Exit();
|
||||
VRCXStorage.Save();
|
||||
Cef.Shutdown();
|
||||
}
|
||||
Run();
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
@@ -87,5 +31,31 @@ namespace VRCX
|
||||
Environment.Exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
private static void Run()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
|
||||
VRCXStorage.Load();
|
||||
CpuMonitor.Instance.Init();
|
||||
Discord.Instance.Init();
|
||||
SQLite.Instance.Init();
|
||||
WebApi.Instance.Init();
|
||||
LogWatcher.Instance.Init();
|
||||
|
||||
CefService.Init();
|
||||
VRCXVR.Init();
|
||||
Application.Run(new MainForm());
|
||||
VRCXVR.Exit();
|
||||
CefService.Exit();
|
||||
|
||||
LogWatcher.Instance.Exit();
|
||||
WebApi.Instance.Exit();
|
||||
SQLite.Instance.Exit();
|
||||
Discord.Instance.Exit();
|
||||
CpuMonitor.Instance.Exit();
|
||||
VRCXStorage.Save();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user