Пример #1
0
        public static bool Init(string[] args = null)
        {
            if (initialized)
            {
                return(true);
            }

            initialized = true;

            CultureInfo.DefaultThreadCurrentCulture   = CultureInfo.InvariantCulture;
            CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.InvariantCulture;
            Thread.CurrentThread.CurrentCulture       = CultureInfo.InvariantCulture;
            Thread.CurrentThread.CurrentUICulture     = CultureInfo.InvariantCulture;

            // Setup logging
            var config = new LoggingConfiguration();

            var fileTarget = new FileTarget
            {
                FileName = Constants.LogDirectory + "\\${shortdate}.log",
                Layout   = "${longdate} ${uppercase:${level}} ${message}",
                ReplaceFileContentsOnEachWrite = true
            };

            config.AddTarget("file", fileTarget);
            config.LoggingRules.Add(new LoggingRule("*", LogLevel.Debug, fileTarget));

            var coloredConsoleTarget = new ColoredConsoleTarget
            {
                UseDefaultRowHighlightingRules = false,
                Layout =
                    "${longdate}|${pad:padding=5:inner=${level:uppercase=true}}| ${logger}: ${message}"
            };

            coloredConsoleTarget.RowHighlightingRules.Add(
                new ConsoleRowHighlightingRule
            {
                Condition = "Level == LogLevel.Trace", ForegroundColor = ConsoleOutputColor.DarkGray
            });

            coloredConsoleTarget.RowHighlightingRules.Add(
                new ConsoleRowHighlightingRule
            {
                Condition = "Level == LogLevel.Debug", ForegroundColor = ConsoleOutputColor.Gray
            });

            coloredConsoleTarget.RowHighlightingRules.Add(
                new ConsoleRowHighlightingRule
            {
                Condition = "Level == LogLevel.Info", ForegroundColor = ConsoleOutputColor.White
            });

            coloredConsoleTarget.RowHighlightingRules.Add(
                new ConsoleRowHighlightingRule
            {
                Condition = "Level == LogLevel.Warn", ForegroundColor = ConsoleOutputColor.Yellow
            });

            coloredConsoleTarget.RowHighlightingRules.Add(
                new ConsoleRowHighlightingRule
            {
                Condition = "Level == LogLevel.Error", ForegroundColor = ConsoleOutputColor.Red
            });

            coloredConsoleTarget.RowHighlightingRules.Add(
                new ConsoleRowHighlightingRule
            {
                Condition = "Level == LogLevel.Fatal", ForegroundColor = ConsoleOutputColor.Red
            });

            config.AddTarget("coloredConsole", coloredConsoleTarget);
            config.AddRule(LogLevel.Trace, LogLevel.Fatal, coloredConsoleTarget);

            LogManager.Configuration = config;

            var logger = LogManager.GetCurrentClassLogger();

            // Log unhandled exceptions
            AppDomain.CurrentDomain.UnhandledException += (sender, eventArgs) =>
            {
                var exception = eventArgs.ExceptionObject as Exception;

                // Check if exception came from us
                if (exception != null && exception.Source.Equals(Assembly.GetExecutingAssembly().FullName))
                {
                    // Get the logger from the class that threw the exception and log it
                    LogManager.GetCurrentClassLogger(new StackTrace().GetFrame(1).GetMethod().DeclaringType)
                    .Fatal(exception);
                }
            };

            // Initial notification.
            logger.Info("SDKEx Loading");

            // Load Resource Content.
            ResourceLoader.Initialize();
            logger.Info("Resources Initialized.");

            // Load GameObjects.
            GameObjects.Initialize();
            logger.Info("GameObjects Initialized.");

            // Create L# menu
            Variables.LeagueSharpMenu = new Menu("LeagueSharp", "LeagueSharp", true).Attach();
            MenuCustomizer.Initialize(Variables.LeagueSharpMenu);
            logger.Info("LeagueSharp Menu Created.");

            // Load the Orbwalker
            Variables.Orbwalker = new Orbwalker(Variables.LeagueSharpMenu);
            logger.Info("Orbwalker Initialized.");

            // Load the TargetSelector.
            Variables.TargetSelector = new TargetSelector(Variables.LeagueSharpMenu);
            logger.Info("TargetSelector Initialized.");

            // Load the Notifications
            Notifications.Initialize(Variables.LeagueSharpMenu);
            logger.Info("Notifications Initialized.");

            // Load the ThemeManager
            ThemeManager.Initialize(Variables.LeagueSharpMenu);
            logger.Info("ThemeManager Initialized.");

            // Load Damages.
            Damage.Initialize();
            logger.Info("Damage Library Initialized.");

            // Load Language
            MultiLanguage.LoadTranslation();
            logger.Info("Translations Initialized.");

            // Final notification.
            logger.Info($"SDKEx Version {Variables.KitVersion} Loaded!");

            // Tell the developer everything succeeded
            return(initialized);
        }