Executed code-cleanup on solution
This commit is contained in:
+28
-31
@@ -1,21 +1,17 @@
|
||||
using Chromium;
|
||||
using Active_Client.View;
|
||||
using Chromium;
|
||||
using Chromium.Event;
|
||||
using Chromium.WebBrowser;
|
||||
using Chromium.WebBrowser.Event;
|
||||
using Client.Config;
|
||||
using Client.Utils;
|
||||
using Active_Client.View;
|
||||
using Microsoft.Win32;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Management;
|
||||
using System.Reflection;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Active_Client
|
||||
@@ -37,8 +33,8 @@ namespace Active_Client
|
||||
|
||||
//Crate General Exception Handler
|
||||
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(GeneralExMethod);
|
||||
|
||||
//Read App Configuration
|
||||
|
||||
//Read App Configuration
|
||||
readConfiguration();
|
||||
|
||||
//Initialize Chromium
|
||||
@@ -66,9 +62,9 @@ namespace Active_Client
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
|
||||
//Check Graphic Card in Energy Saving mode
|
||||
checkGraphicCard();
|
||||
|
||||
//Run the Loading Form
|
||||
checkGraphicCard();
|
||||
|
||||
//Run the Loading Form
|
||||
Application.Run(new OpeningForm());
|
||||
|
||||
//Run the Main-Browser Form
|
||||
@@ -76,14 +72,14 @@ namespace Active_Client
|
||||
|
||||
//Force show Taskbar
|
||||
NcWindow.ShowTaskBar();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
#region CONFIG_METHODS
|
||||
|
||||
//Sub-Method used to read the configuration
|
||||
|
||||
//Sub-Method used to read the configuration
|
||||
static private void readConfiguration()
|
||||
{
|
||||
//Read the Config
|
||||
@@ -107,7 +103,8 @@ namespace Active_Client
|
||||
{
|
||||
//Prepare List of Cards
|
||||
String Cardlist = "";
|
||||
foreach (ManagementObject card in VideoCards){
|
||||
foreach (ManagementObject card in VideoCards)
|
||||
{
|
||||
Cardlist = Cardlist + " - " + card["Name"] + "\n";
|
||||
}
|
||||
|
||||
@@ -121,7 +118,7 @@ namespace Active_Client
|
||||
{
|
||||
//code if key Not Exist add it and restart
|
||||
Registry.SetValue(keyName, valueName, "GpuPreference=1;");
|
||||
MessageBox.Show("Active has foundthis Graphic Cards:\n\n" + Cardlist +"\nThe graphic configuration has been setted. Press Ok to restart the Application",Application.ProductName);
|
||||
MessageBox.Show("Active has foundthis Graphic Cards:\n\n" + Cardlist + "\nThe graphic configuration has been setted. Press Ok to restart the Application", Application.ProductName);
|
||||
Application.Restart();
|
||||
Environment.Exit(0);
|
||||
}
|
||||
@@ -143,10 +140,10 @@ namespace Active_Client
|
||||
if (CfxRuntime.PlatformArch == CfxPlatformArch.x64)
|
||||
CfxRuntime.LibCefDirPath = Constants.CEF_X64_PATH;
|
||||
else
|
||||
CfxRuntime.LibCefDirPath = Constants.CEF_X86_PATH;
|
||||
|
||||
|
||||
//Add the event variables
|
||||
CfxRuntime.LibCefDirPath = Constants.CEF_X86_PATH;
|
||||
|
||||
|
||||
//Add the event variables
|
||||
ChromiumWebBrowser.OnBeforeCfxInitialize += Chromium_OnBeforeCfxInitialize;
|
||||
ChromiumWebBrowser.OnBeforeCommandLineProcessing += Chromium_OnBeforeCommandLineProcessing;
|
||||
|
||||
@@ -167,11 +164,11 @@ namespace Active_Client
|
||||
static void Chromium_OnBeforeCommandLineProcessing(CfxOnBeforeCommandLineProcessingEventArgs e)
|
||||
{
|
||||
if (Config.ClientConfig.RenderingMethod == Constants.Rendering.CPU)
|
||||
e.CommandLine.AppendSwitch("--disable-gpu");
|
||||
|
||||
e.CommandLine.AppendSwitch("--disable-gpu");
|
||||
|
||||
e.CommandLine.AppendSwitch("--enable-transparent-visuals");
|
||||
e.CommandLine.AppendSwitch("--disable-pinch");
|
||||
e.CommandLine.AppendSwitch("--enable-media-stream");
|
||||
e.CommandLine.AppendSwitch("--enable-media-stream");
|
||||
e.CommandLine.AppendSwitch("--enable-usermedia-screen-capture");
|
||||
e.CommandLine.AppendSwitch("--no-proxy-server");
|
||||
|
||||
@@ -188,7 +185,7 @@ namespace Active_Client
|
||||
e.Settings.CachePath = Constants.BROWSER_CACHE_FOLDER;
|
||||
e.Settings.LocalesDirPath = Constants.CEF_LOCALES_PATH;
|
||||
e.Settings.ResourcesDirPath = CfxRuntime.LibCefDirPath;
|
||||
e.Settings.Locale = CultureInfo.CurrentUICulture.TwoLetterISOLanguageName ;
|
||||
e.Settings.Locale = CultureInfo.CurrentUICulture.TwoLetterISOLanguageName;
|
||||
}
|
||||
|
||||
|
||||
@@ -218,10 +215,10 @@ namespace Active_Client
|
||||
MessageBoxDefaultButton.Button1
|
||||
);
|
||||
Environment.Exit(-1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
private static void GeneralExMethod(object sender, UnhandledExceptionEventArgs args)
|
||||
{
|
||||
Exception e = (Exception)args.ExceptionObject;
|
||||
|
||||
Reference in New Issue
Block a user