mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-02-06 04:53:39 +00:00
Unify ASF/GUI startup
This commit is contained in:
15
.gitignore
vendored
15
.gitignore
vendored
@@ -2,15 +2,22 @@
|
|||||||
## ArchiSteamFarm
|
## ArchiSteamFarm
|
||||||
#################
|
#################
|
||||||
|
|
||||||
# Ignore all config files, apart from ones we want to include
|
# Ignore all config files
|
||||||
ArchiSteamFarm/config/*
|
ArchiSteamFarm/config
|
||||||
|
GUI/config
|
||||||
|
|
||||||
|
# Include default config files
|
||||||
!ArchiSteamFarm/config/ASF.json
|
!ArchiSteamFarm/config/ASF.json
|
||||||
!ArchiSteamFarm/config/example.json
|
!ArchiSteamFarm/config/example.json
|
||||||
!ArchiSteamFarm/config/minimal.json
|
!ArchiSteamFarm/config/minimal.json
|
||||||
|
|
||||||
# Ignore local debugging
|
# Ignore local log
|
||||||
ArchiSteamFarm/log.txt
|
ArchiSteamFarm/log.txt
|
||||||
ArchiSteamFarm/debug/*
|
GUI/log.txt
|
||||||
|
|
||||||
|
# Ignore local debugging
|
||||||
|
ArchiSteamFarm/debug
|
||||||
|
GUI/debug
|
||||||
|
|
||||||
# Ignore out
|
# Ignore out
|
||||||
out/
|
out/
|
||||||
|
|||||||
@@ -130,42 +130,17 @@ namespace ArchiSteamFarm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static async Task Init(string[] args) {
|
private static async Task Init(string[] args) {
|
||||||
// We must register our logging target as soon as possible
|
|
||||||
Target.Register<SteamTarget>("Steam");
|
|
||||||
await InitCore(args).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static async Task InitCore(string[] args) {
|
|
||||||
AppDomain.CurrentDomain.UnhandledException += UnhandledExceptionHandler;
|
AppDomain.CurrentDomain.UnhandledException += UnhandledExceptionHandler;
|
||||||
TaskScheduler.UnobservedTaskException += UnobservedTaskExceptionHandler;
|
TaskScheduler.UnobservedTaskException += UnobservedTaskExceptionHandler;
|
||||||
|
|
||||||
string homeDirectory = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
|
// We must register our logging target as soon as possible
|
||||||
if (!string.IsNullOrEmpty(homeDirectory)) {
|
Target.Register<SteamTarget>("Steam");
|
||||||
Directory.SetCurrentDirectory(homeDirectory);
|
|
||||||
|
|
||||||
// Allow loading configs from source tree if it's a debug build
|
InitCore(args);
|
||||||
if (Debugging.IsDebugBuild) {
|
await InitASF(args).ConfigureAwait(false);
|
||||||
// Common structure is bin/(x64/)Debug/ArchiSteamFarm.exe, so we allow up to 4 directories up
|
|
||||||
for (byte i = 0; i < 4; i++) {
|
|
||||||
Directory.SetCurrentDirectory("..");
|
|
||||||
if (Directory.Exists(SharedInfo.ConfigDirectory)) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// If config directory doesn't exist after our adjustment, abort all of that
|
private static async Task InitASF(string[] args) {
|
||||||
if (!Directory.Exists(SharedInfo.ConfigDirectory)) {
|
|
||||||
Directory.SetCurrentDirectory(homeDirectory);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse pre-init args
|
|
||||||
if (args != null) {
|
|
||||||
ParsePreInitArgs(args);
|
|
||||||
}
|
|
||||||
|
|
||||||
Logging.InitLoggers();
|
|
||||||
ASF.ArchiLogger.LogGenericInfo("ASF V" + SharedInfo.Version);
|
ASF.ArchiLogger.LogGenericInfo("ASF V" + SharedInfo.Version);
|
||||||
|
|
||||||
await InitGlobalConfigAndLanguage().ConfigureAwait(false);
|
await InitGlobalConfigAndLanguage().ConfigureAwait(false);
|
||||||
@@ -209,6 +184,36 @@ namespace ArchiSteamFarm {
|
|||||||
ASF.InitFileWatcher();
|
ASF.InitFileWatcher();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void InitCore(string[] args) {
|
||||||
|
string homeDirectory = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
|
||||||
|
if (!string.IsNullOrEmpty(homeDirectory)) {
|
||||||
|
Directory.SetCurrentDirectory(homeDirectory);
|
||||||
|
|
||||||
|
// Allow loading configs from source tree if it's a debug build
|
||||||
|
if (Debugging.IsDebugBuild) {
|
||||||
|
// Common structure is bin/(x64/)Debug/ArchiSteamFarm.exe, so we allow up to 4 directories up
|
||||||
|
for (byte i = 0; i < 4; i++) {
|
||||||
|
Directory.SetCurrentDirectory("..");
|
||||||
|
if (Directory.Exists(SharedInfo.ConfigDirectory)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If config directory doesn't exist after our adjustment, abort all of that
|
||||||
|
if (!Directory.Exists(SharedInfo.ConfigDirectory)) {
|
||||||
|
Directory.SetCurrentDirectory(homeDirectory);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse pre-init args
|
||||||
|
if (args != null) {
|
||||||
|
ParsePreInitArgs(args);
|
||||||
|
}
|
||||||
|
|
||||||
|
Logging.InitLoggers();
|
||||||
|
}
|
||||||
|
|
||||||
private static async Task InitGlobalConfigAndLanguage() {
|
private static async Task InitGlobalConfigAndLanguage() {
|
||||||
string globalConfigFile = Path.Combine(SharedInfo.ConfigDirectory, SharedInfo.GlobalConfigFileName);
|
string globalConfigFile = Path.Combine(SharedInfo.ConfigDirectory, SharedInfo.GlobalConfigFileName);
|
||||||
|
|
||||||
|
|||||||
@@ -44,8 +44,6 @@ namespace ArchiSteamFarm {
|
|||||||
AvatarPictureBox.LoadAsync();
|
AvatarPictureBox.LoadAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AvatarPictureBox_LoadCompleted(object sender, AsyncCompletedEventArgs e) {
|
private void AvatarPictureBox_LoadCompleted(object sender, AsyncCompletedEventArgs e) => MainForm.UpdateBotAvatar(Bot.BotName, AvatarPictureBox.Image);
|
||||||
MainForm.UpdateBotAvatar(Bot.BotName, AvatarPictureBox.Image);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -22,7 +22,6 @@
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
using System.Linq;
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using NLog.Config;
|
using NLog.Config;
|
||||||
using NLog.Targets;
|
using NLog.Targets;
|
||||||
@@ -30,35 +29,15 @@ using NLog.Windows.Forms;
|
|||||||
|
|
||||||
namespace ArchiSteamFarm {
|
namespace ArchiSteamFarm {
|
||||||
internal static class Logging {
|
internal static class Logging {
|
||||||
private const string GeneralLayout = @"${date:format=yyyy-MM-dd HH\:mm\:ss} | ${level:uppercase=true} | ${logger} | ${message}${onexception:inner= | ${exception:format=toString,Data}}";
|
private const string GeneralLayout = @"${date:format=yyyy-MM-dd HH\:mm\:ss}|${processname}-${processid}|${level:uppercase=true}|${logger}|${message}${onexception:inner= ${exception:format=toString,Data}}";
|
||||||
|
|
||||||
private static bool IsUsingCustomConfiguration;
|
internal static void InitLoggers() {
|
||||||
|
if (LogManager.Configuration != null) {
|
||||||
internal static void InitCoreLoggers() {
|
// User provided custom NLog config, or we have it set already, so don't override it
|
||||||
if (LogManager.Configuration == null) {
|
|
||||||
LogManager.Configuration = new LoggingConfiguration();
|
|
||||||
} else {
|
|
||||||
// User provided custom NLog config, but we still need to define our own logger
|
|
||||||
IsUsingCustomConfiguration = true;
|
|
||||||
if (LogManager.Configuration.AllTargets.Any(target => target is MessageBoxTarget)) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
MessageBoxTarget messageBoxTarget = new MessageBoxTarget {
|
LoggingConfiguration config = new LoggingConfiguration();
|
||||||
Name = "MessageBox",
|
|
||||||
Layout = GeneralLayout
|
|
||||||
};
|
|
||||||
|
|
||||||
LogManager.Configuration.AddTarget(messageBoxTarget);
|
|
||||||
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Fatal, messageBoxTarget));
|
|
||||||
LogManager.ReconfigExistingLoggers();
|
|
||||||
}
|
|
||||||
|
|
||||||
internal static void InitEnhancedLoggers() {
|
|
||||||
if (IsUsingCustomConfiguration) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
FileTarget fileTarget = new FileTarget("File") {
|
FileTarget fileTarget = new FileTarget("File") {
|
||||||
DeleteOldFileOnStartup = true,
|
DeleteOldFileOnStartup = true,
|
||||||
@@ -66,10 +45,18 @@ namespace ArchiSteamFarm {
|
|||||||
Layout = GeneralLayout
|
Layout = GeneralLayout
|
||||||
};
|
};
|
||||||
|
|
||||||
LogManager.Configuration.AddTarget(fileTarget);
|
config.AddTarget(fileTarget);
|
||||||
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Debug, fileTarget));
|
config.LoggingRules.Add(new LoggingRule("*", LogLevel.Debug, fileTarget));
|
||||||
|
|
||||||
LogManager.ReconfigExistingLoggers();
|
MessageBoxTarget messageBoxTarget = new MessageBoxTarget {
|
||||||
|
Name = "MessageBox",
|
||||||
|
Layout = GeneralLayout
|
||||||
|
};
|
||||||
|
|
||||||
|
config.AddTarget(messageBoxTarget);
|
||||||
|
config.LoggingRules.Add(new LoggingRule("*", LogLevel.Fatal, messageBoxTarget));
|
||||||
|
|
||||||
|
LogManager.Configuration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static void InitFormLogger() {
|
internal static void InitFormLogger() {
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.Drawing.Drawing2D;
|
using System.Drawing.Drawing2D;
|
||||||
using System.Drawing.Imaging;
|
using System.Drawing.Imaging;
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace ArchiSteamFarm {
|
namespace ArchiSteamFarm {
|
||||||
@@ -62,56 +60,37 @@ namespace ArchiSteamFarm {
|
|||||||
private async void MainForm_FormClosed(object sender, FormClosedEventArgs e) => await Program.InitShutdownSequence().ConfigureAwait(false);
|
private async void MainForm_FormClosed(object sender, FormClosedEventArgs e) => await Program.InitShutdownSequence().ConfigureAwait(false);
|
||||||
|
|
||||||
private async void MainForm_Load(object sender, EventArgs e) {
|
private async void MainForm_Load(object sender, EventArgs e) {
|
||||||
Logging.InitFormLogger();
|
|
||||||
|
|
||||||
BotListView.LargeImageList = BotListView.SmallImageList = AvatarImageList;
|
BotListView.LargeImageList = BotListView.SmallImageList = AvatarImageList;
|
||||||
|
|
||||||
await Task.Run(async () => {
|
Program.InitCore();
|
||||||
Program.ArchiLogger.LogGenericInfo("ASF V" + SharedInfo.Version);
|
Logging.InitFormLogger();
|
||||||
|
await Program.InitASF(); // No ConfigureAwait, we need GUI thread
|
||||||
|
|
||||||
if (!Directory.Exists(SharedInfo.ConfigDirectory)) {
|
foreach (KeyValuePair<string, Bot> bot in Bot.Bots) {
|
||||||
Program.ArchiLogger.LogGenericError("Config directory could not be found!");
|
BotStatusForm botStatusForm = new BotStatusForm(bot.Value);
|
||||||
Environment.Exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
await ASF.CheckForUpdate().ConfigureAwait(false);
|
BotIndexes[bot.Key] = AvatarImageList.Images.Count;
|
||||||
|
|
||||||
// Before attempting to connect, initialize our list of CMs
|
AvatarImageList.Images.Add(bot.Key, botStatusForm.AvatarPictureBox.Image);
|
||||||
await Bot.InitializeCMs(Program.GlobalDatabase.CellID, Program.GlobalDatabase.ServerListProvider).ConfigureAwait(false);
|
|
||||||
});
|
|
||||||
|
|
||||||
foreach (string botName in Directory.EnumerateFiles(SharedInfo.ConfigDirectory, "*.json").Select(Path.GetFileNameWithoutExtension)) {
|
|
||||||
switch (botName) {
|
|
||||||
case SharedInfo.ASF:
|
|
||||||
case "example":
|
|
||||||
case "minimal":
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
Bot bot = new Bot(botName);
|
|
||||||
|
|
||||||
BotStatusForm botStatusForm = new BotStatusForm(bot);
|
|
||||||
|
|
||||||
BotIndexes[botName] = AvatarImageList.Images.Count;
|
|
||||||
|
|
||||||
AvatarImageList.Images.Add(botName, botStatusForm.AvatarPictureBox.Image);
|
|
||||||
|
|
||||||
botStatusForm.TopLevel = false;
|
botStatusForm.TopLevel = false;
|
||||||
BotStatusPanel.Controls.Add(botStatusForm);
|
BotStatusPanel.Controls.Add(botStatusForm);
|
||||||
|
|
||||||
ListViewItem botListViewItem = new ListViewItem {
|
ListViewItem botListViewItem = new ListViewItem {
|
||||||
ImageIndex = BotIndexes[botName],
|
ImageIndex = BotIndexes[bot.Key],
|
||||||
Text = botName
|
Text = bot.Key
|
||||||
};
|
};
|
||||||
|
|
||||||
BotListView.Items.Add(botListViewItem);
|
BotListView.Items.Add(botListViewItem);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (BotListView.Items.Count > 0) {
|
if (BotListView.Items.Count <= 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
BotListView.Items[0].Selected = true;
|
BotListView.Items[0].Selected = true;
|
||||||
BotListView.Select();
|
BotListView.Select();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private void MainForm_Resize(object sender, EventArgs e) {
|
private void MainForm_Resize(object sender, EventArgs e) {
|
||||||
switch (WindowState) {
|
switch (WindowState) {
|
||||||
|
|||||||
167
GUI/Program.cs
167
GUI/Program.cs
@@ -1,12 +1,14 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Threading;
|
using System.Resources;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using ArchiSteamFarm.Localization;
|
using ArchiSteamFarm.Localization;
|
||||||
|
using NLog.Targets;
|
||||||
using SteamKit2;
|
using SteamKit2;
|
||||||
|
|
||||||
namespace ArchiSteamFarm {
|
namespace ArchiSteamFarm {
|
||||||
@@ -25,11 +27,68 @@ namespace ArchiSteamFarm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
await Shutdown().ConfigureAwait(false);
|
await Shutdown().ConfigureAwait(false);
|
||||||
Environment.Exit(exitCode);
|
Application.Exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static string GetUserInput(ASF.EUserInputType userInputType, string botName = SharedInfo.ASF, string extraInformation = null) {
|
internal static string GetUserInput(ASF.EUserInputType userInputType, string botName = SharedInfo.ASF, string extraInformation = null) => null; // TODO
|
||||||
return null; // TODO
|
|
||||||
|
internal static async Task InitASF() {
|
||||||
|
ASF.ArchiLogger.LogGenericInfo("ASF V" + SharedInfo.Version);
|
||||||
|
|
||||||
|
await InitGlobalConfigAndLanguage().ConfigureAwait(false);
|
||||||
|
|
||||||
|
if (!Runtime.IsRuntimeSupported) {
|
||||||
|
ASF.ArchiLogger.LogGenericError(Strings.WarningRuntimeUnsupported);
|
||||||
|
await Task.Delay(60 * 1000).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
await InitGlobalDatabaseAndServices().ConfigureAwait(false);
|
||||||
|
|
||||||
|
// If debugging is on, we prepare debug directory prior to running
|
||||||
|
if (GlobalConfig.Debug) {
|
||||||
|
if (Directory.Exists(SharedInfo.DebugDirectory)) {
|
||||||
|
try {
|
||||||
|
Directory.Delete(SharedInfo.DebugDirectory, true);
|
||||||
|
await Task.Delay(1000).ConfigureAwait(false); // Dirty workaround giving Windows some time to sync
|
||||||
|
} catch (IOException e) {
|
||||||
|
ASF.ArchiLogger.LogGenericException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Directory.CreateDirectory(SharedInfo.DebugDirectory);
|
||||||
|
|
||||||
|
DebugLog.AddListener(new Debugging.DebugListener());
|
||||||
|
DebugLog.Enabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
await ASF.CheckForUpdate().ConfigureAwait(false);
|
||||||
|
await ASF.InitBots().ConfigureAwait(false);
|
||||||
|
ASF.InitFileWatcher();
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static void InitCore() {
|
||||||
|
string homeDirectory = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
|
||||||
|
if (!string.IsNullOrEmpty(homeDirectory)) {
|
||||||
|
Directory.SetCurrentDirectory(homeDirectory);
|
||||||
|
|
||||||
|
// Allow loading configs from source tree if it's a debug build
|
||||||
|
if (Debugging.IsDebugBuild) {
|
||||||
|
// Common structure is bin/(x64/)Debug/ArchiSteamFarm.exe, so we allow up to 4 directories up
|
||||||
|
for (byte i = 0; i < 4; i++) {
|
||||||
|
Directory.SetCurrentDirectory("..");
|
||||||
|
if (Directory.Exists(SharedInfo.ConfigDirectory)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If config directory doesn't exist after our adjustment, abort all of that
|
||||||
|
if (!Directory.Exists(SharedInfo.ConfigDirectory)) {
|
||||||
|
Directory.SetCurrentDirectory(homeDirectory);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Logging.InitLoggers();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static async Task<bool> InitShutdownSequence() {
|
internal static async Task<bool> InitShutdownSequence() {
|
||||||
@@ -53,79 +112,77 @@ namespace ArchiSteamFarm {
|
|||||||
Application.Restart();
|
Application.Restart();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async Task Init() {
|
private static void Init() {
|
||||||
AppDomain.CurrentDomain.UnhandledException += UnhandledExceptionHandler;
|
AppDomain.CurrentDomain.UnhandledException += UnhandledExceptionHandler;
|
||||||
TaskScheduler.UnobservedTaskException += UnobservedTaskExceptionHandler;
|
TaskScheduler.UnobservedTaskException += UnobservedTaskExceptionHandler;
|
||||||
|
|
||||||
Logging.InitCoreLoggers();
|
// We must register our logging target as soon as possible
|
||||||
|
Target.Register<SteamTarget>("Steam");
|
||||||
|
|
||||||
if (!Runtime.IsRuntimeSupported) {
|
// The rest of ASF is initialized from MainForm.cs
|
||||||
ArchiLogger.LogGenericError("ASF detected unsupported runtime version, program might NOT run correctly in current environment. You're running it at your own risk!");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
string homeDirectory = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
|
private static async Task InitGlobalConfigAndLanguage() {
|
||||||
if (!string.IsNullOrEmpty(homeDirectory)) {
|
|
||||||
Directory.SetCurrentDirectory(homeDirectory);
|
|
||||||
|
|
||||||
// Allow loading configs from source tree if it's a debug build
|
|
||||||
if (Debugging.IsDebugBuild) {
|
|
||||||
// Common structure is bin/(x64/)Debug/ArchiSteamFarm.exe, so we allow up to 4 directories up
|
|
||||||
for (byte i = 0; i < 4; i++) {
|
|
||||||
Directory.SetCurrentDirectory("..");
|
|
||||||
if (!Directory.Exists(SharedInfo.ASFDirectory)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
Directory.SetCurrentDirectory(SharedInfo.ASFDirectory);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If config directory doesn't exist after our adjustment, abort all of that
|
|
||||||
if (!Directory.Exists(SharedInfo.ConfigDirectory)) {
|
|
||||||
Directory.SetCurrentDirectory(homeDirectory);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
await InitServices().ConfigureAwait(false);
|
|
||||||
|
|
||||||
// If debugging is on, we prepare debug directory prior to running
|
|
||||||
if (GlobalConfig.Debug) {
|
|
||||||
if (Directory.Exists(SharedInfo.DebugDirectory)) {
|
|
||||||
Directory.Delete(SharedInfo.DebugDirectory, true);
|
|
||||||
Thread.Sleep(1000); // Dirty workaround giving Windows some time to sync
|
|
||||||
}
|
|
||||||
|
|
||||||
Directory.CreateDirectory(SharedInfo.DebugDirectory);
|
|
||||||
|
|
||||||
DebugLog.AddListener(new Debugging.DebugListener());
|
|
||||||
DebugLog.Enabled = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
Logging.InitEnhancedLoggers();
|
|
||||||
}
|
|
||||||
|
|
||||||
private static async Task InitServices() {
|
|
||||||
string globalConfigFile = Path.Combine(SharedInfo.ConfigDirectory, SharedInfo.GlobalConfigFileName);
|
string globalConfigFile = Path.Combine(SharedInfo.ConfigDirectory, SharedInfo.GlobalConfigFileName);
|
||||||
|
|
||||||
GlobalConfig = GlobalConfig.Load(globalConfigFile);
|
GlobalConfig = GlobalConfig.Load(globalConfigFile);
|
||||||
if (GlobalConfig == null) {
|
if (GlobalConfig == null) {
|
||||||
ArchiLogger.LogGenericError("Global config could not be loaded, please make sure that " + globalConfigFile + " exists and is valid!");
|
ASF.ArchiLogger.LogGenericError(string.Format(Strings.ErrorGlobalConfigNotLoaded, globalConfigFile));
|
||||||
|
await Task.Delay(5 * 1000).ConfigureAwait(false);
|
||||||
await Exit(1).ConfigureAwait(false);
|
await Exit(1).ConfigureAwait(false);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(GlobalConfig.CurrentCulture)) {
|
||||||
|
try {
|
||||||
|
// GetCultureInfo() would be better but we can't use it for specifying neutral cultures such as "en"
|
||||||
|
CultureInfo culture = CultureInfo.CreateSpecificCulture(GlobalConfig.CurrentCulture);
|
||||||
|
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.DefaultThreadCurrentUICulture = culture;
|
||||||
|
} catch (CultureNotFoundException) {
|
||||||
|
ASF.ArchiLogger.LogGenericError(Strings.ErrorInvalidCurrentCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int defaultResourceSetCount = 0;
|
||||||
|
ResourceSet defaultResourceSet = Strings.ResourceManager.GetResourceSet(CultureInfo.GetCultureInfo("en-US"), true, true);
|
||||||
|
if (defaultResourceSet != null) {
|
||||||
|
defaultResourceSetCount = defaultResourceSet.Cast<object>().Count();
|
||||||
|
}
|
||||||
|
|
||||||
|
int currentResourceSetCount = 0;
|
||||||
|
ResourceSet currentResourceSet = Strings.ResourceManager.GetResourceSet(CultureInfo.CurrentCulture, true, false);
|
||||||
|
if (currentResourceSet != null) {
|
||||||
|
currentResourceSetCount = currentResourceSet.Cast<object>().Count();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentResourceSetCount < defaultResourceSetCount) {
|
||||||
|
float translationCompleteness = currentResourceSetCount / (float) defaultResourceSetCount;
|
||||||
|
ASF.ArchiLogger.LogGenericInfo(string.Format(Strings.TranslationIncomplete, CultureInfo.CurrentCulture.Name, translationCompleteness.ToString("P1")));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static async Task InitGlobalDatabaseAndServices() {
|
||||||
string globalDatabaseFile = Path.Combine(SharedInfo.ConfigDirectory, SharedInfo.GlobalDatabaseFileName);
|
string globalDatabaseFile = Path.Combine(SharedInfo.ConfigDirectory, SharedInfo.GlobalDatabaseFileName);
|
||||||
|
|
||||||
|
if (!File.Exists(globalDatabaseFile)) {
|
||||||
|
ASF.ArchiLogger.LogGenericInfo(Strings.Welcome);
|
||||||
|
ASF.ArchiLogger.LogGenericWarning(Strings.WarningPrivacyPolicy);
|
||||||
|
await Task.Delay(15 * 1000).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
|
||||||
GlobalDatabase = GlobalDatabase.Load(globalDatabaseFile);
|
GlobalDatabase = GlobalDatabase.Load(globalDatabaseFile);
|
||||||
if (GlobalDatabase == null) {
|
if (GlobalDatabase == null) {
|
||||||
ArchiLogger.LogGenericError("Global database could not be loaded, if issue persists, please remove " + globalDatabaseFile + " in order to recreate database!");
|
ASF.ArchiLogger.LogGenericError(string.Format(Strings.ErrorDatabaseInvalid, globalDatabaseFile));
|
||||||
|
await Task.Delay(5 * 1000).ConfigureAwait(false);
|
||||||
await Exit(1).ConfigureAwait(false);
|
await Exit(1).ConfigureAwait(false);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ArchiWebHandler.Init();
|
ArchiWebHandler.Init();
|
||||||
|
OS.Init();
|
||||||
WebBrowser.Init();
|
WebBrowser.Init();
|
||||||
|
|
||||||
WebBrowser = new WebBrowser(ArchiLogger);
|
WebBrowser = new WebBrowser(ASF.ArchiLogger);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -133,7 +190,7 @@ namespace ArchiSteamFarm {
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[STAThread]
|
[STAThread]
|
||||||
private static void Main() {
|
private static void Main() {
|
||||||
Init().Wait();
|
Init();
|
||||||
Application.EnableVisualStyles();
|
Application.EnableVisualStyles();
|
||||||
Application.SetCompatibleTextRenderingDefault(false);
|
Application.SetCompatibleTextRenderingDefault(false);
|
||||||
Application.Run(new MainForm());
|
Application.Run(new MainForm());
|
||||||
|
|||||||
Reference in New Issue
Block a user