LiteLoader.java 28.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
/*
 * This file is part of LiteLoader.
 * Copyright (C) 2012-16 Adam Mummery-Smith
 * All Rights Reserved.
 */
package com.mumfrey.liteloader.core;

import java.io.File;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import javax.activity.InvalidActivityException;

import org.spongepowered.asm.mixin.MixinEnvironment;

import com.mumfrey.liteloader.LiteMod;
import com.mumfrey.liteloader.api.CoreProvider;
import com.mumfrey.liteloader.api.CustomisationProvider;
import com.mumfrey.liteloader.api.Listener;
import com.mumfrey.liteloader.api.LiteAPI;
import com.mumfrey.liteloader.api.ModLoadObserver;
import com.mumfrey.liteloader.api.PostRenderObserver;
import com.mumfrey.liteloader.api.ShutdownObserver;
import com.mumfrey.liteloader.api.TickObserver;
import com.mumfrey.liteloader.api.TranslationProvider;
import com.mumfrey.liteloader.api.WorldObserver;
import com.mumfrey.liteloader.api.manager.APIAdapter;
import com.mumfrey.liteloader.api.manager.APIProvider;
import com.mumfrey.liteloader.common.GameEngine;
import com.mumfrey.liteloader.common.LoadingProgress;
import com.mumfrey.liteloader.core.api.LiteLoaderCoreAPI;
import com.mumfrey.liteloader.core.event.EventProxy;
import com.mumfrey.liteloader.core.event.HandlerList;
import com.mumfrey.liteloader.crashreport.CallableLaunchWrapper;
import com.mumfrey.liteloader.crashreport.CallableLiteLoaderBrand;
import com.mumfrey.liteloader.crashreport.CallableLiteLoaderMods;
import com.mumfrey.liteloader.interfaces.FastIterableDeque;
import com.mumfrey.liteloader.interfaces.Loadable;
import com.mumfrey.liteloader.interfaces.LoadableMod;
import com.mumfrey.liteloader.interfaces.LoaderEnumerator;
import com.mumfrey.liteloader.interfaces.ObjectFactory;
import com.mumfrey.liteloader.interfaces.PanelManager;
import com.mumfrey.liteloader.launch.LoaderEnvironment;
import com.mumfrey.liteloader.launch.LoaderEnvironment.EnvironmentType;
import com.mumfrey.liteloader.launch.LoaderProperties;
import com.mumfrey.liteloader.messaging.MessageBus;
import com.mumfrey.liteloader.modconfig.ConfigManager;
import com.mumfrey.liteloader.modconfig.Exposable;
import com.mumfrey.liteloader.permissions.PermissionsManagerClient;
import com.mumfrey.liteloader.permissions.PermissionsManagerServer;
import com.mumfrey.liteloader.transformers.event.EventTransformer;
import com.mumfrey.liteloader.util.Input;
import com.mumfrey.liteloader.util.log.LiteLoaderLogger;
import com.mumfrey.liteloader.util.log.LiteLoaderLogger.Verbosity;

import net.minecraft.crash.CrashReport;
import net.minecraft.crash.CrashReportCategory;
import net.minecraft.launchwrapper.LaunchClassLoader;
import net.minecraft.network.EnumConnectionState;
import net.minecraft.network.INetHandler;
import net.minecraft.network.play.server.SPacketJoinGame;
import net.minecraft.profiler.Profiler;
import net.minecraft.world.World;

/**
 * LiteLoader is a simple loader which loads and provides useful callbacks to
 * lightweight mods
 * 
 * @author Adam Mummery-Smith
 */
public final class LiteLoader
{
    /**
     * LiteLoader is a singleton, this is the singleton instance
     */
    private static LiteLoader instance;

    /**
     * Tweak system class loader 
     */
    private static LaunchClassLoader classLoader;

    /**
     * Reference to the game engine instance
     */
    private GameEngine<?, ?> engine;

    /**
     * Minecraft Profiler
     */
    private Profiler profiler;

    /**
     * Loader environment instance 
     */
    private final LoaderEnvironment environment;

    /**
     * Loader Properties adapter 
     */
    private final LoaderProperties properties;

    /**
     * Mod enumerator instance
     */
    private final LoaderEnumerator enumerator;

    /**
     * Mods
     */
    protected final LiteLoaderMods mods;

    /**
     * API Provider instance 
     */
    private final APIProvider apiProvider;

    /**
     * API Adapter instance
     */
    private final APIAdapter apiAdapter;

    /**
     * Our core API instance
     */
    private final LiteLoaderCoreAPI api;

    /**
     * Factory which can be used to instance main loader helper objects
     */
    private final ObjectFactory<?, ?> objectFactory;

    /**
     * Core providers
     */
    private final FastIterableDeque<CoreProvider> coreProviders = new HandlerList<CoreProvider>(CoreProvider.class);
    private final FastIterableDeque<TickObserver> tickObservers = new HandlerList<TickObserver>(TickObserver.class);
    private final FastIterableDeque<WorldObserver> worldObservers = new HandlerList<WorldObserver>(WorldObserver.class);
    private final FastIterableDeque<ShutdownObserver> shutdownObservers = new HandlerList<ShutdownObserver>(ShutdownObserver.class);
    private final FastIterableDeque<PostRenderObserver> postRenderObservers = new HandlerList<PostRenderObserver>(PostRenderObserver.class);

    /**
     * Mod panel manager, deliberately raw
     */
    @SuppressWarnings("rawtypes")
    private PanelManager panelManager;

    /**
     * Interface Manager
     */
    private LiteLoaderInterfaceManager interfaceManager;

    /**
     * Event manager
     */
    private LiteLoaderEventBroker<?, ?> events;

    /**
     * Plugin channel manager 
     */
    private final ClientPluginChannels clientPluginChannels;

    /**
     * Server channel manager 
     */
    private final ServerPluginChannels serverPluginChannels;

    /**
     * Permission Manager
     */
    private final PermissionsManagerClient permissionsManagerClient;

    private final PermissionsManagerServer permissionsManagerServer;

    /**
     * Mod configuration manager
     */
    private final ConfigManager configManager;

    /**
     * Flag which keeps track of whether late initialisation has completed
     */
    private boolean modInitComplete;

    /**
     * 
     */
    private Input input;

    /**
     * 
     */
    private final List<TranslationProvider> translators = new ArrayList<TranslationProvider>();

    /**
     * ctor
     * 
     * @param environment
     * @param properties
     */
    private LiteLoader(LoaderEnvironment environment, LoaderProperties properties)
    {
        this.environment = environment;
        this.properties = properties;
        this.enumerator = environment.getEnumerator();

        this.configManager = new ConfigManager();

        this.mods = new LiteLoaderMods(this, environment, properties, this.configManager);

        this.apiProvider = environment.getAPIProvider();
        this.apiAdapter = environment.getAPIAdapter();

        this.api = this.apiProvider.getAPI(LiteLoaderCoreAPI.class);
        if (this.api == null)
        {
            throw new IllegalStateException("The core API was not registered. Startup halted");
        }

        this.objectFactory = this.api.getObjectFactory();

        this.input = this.objectFactory.getInput();

        this.clientPluginChannels = this.objectFactory.getClientPluginChannels();
        this.serverPluginChannels = this.objectFactory.getServerPluginChannels();

        this.permissionsManagerClient = this.objectFactory.getClientPermissionManager();
        this.permissionsManagerServer = this.objectFactory.getServerPermissionManager();

        this.initTranslators();
    }

    /**
     * 
     */
    protected void initTranslators()
    {
        for (LiteAPI api : this.apiProvider.getAPIs())
        {
            List<CustomisationProvider> customisationProviders = api.getCustomisationProviders();
            if (customisationProviders != null)
            {
                for (CustomisationProvider provider : customisationProviders)
                {
                    if (provider instanceof TranslationProvider)
                    {
                        this.translators.add((TranslationProvider)provider);
                    }
                }
            }
        }
    }

    /**
     * Set up reflection methods required by the loader
     */
    private void onInit()
    {
        try
        {
            this.coreProviders.addAll(this.apiAdapter.getCoreProviders());
            this.tickObservers.addAll(this.apiAdapter.getAllObservers(TickObserver.class));
            this.worldObservers.addAll(this.apiAdapter.getAllObservers(WorldObserver.class));
            this.shutdownObservers.addAll(this.apiAdapter.getAllObservers(ShutdownObserver.class));
            this.postRenderObservers.addAll(this.apiAdapter.getAllObservers(PostRenderObserver.class));

            this.coreProviders.all().onInit();

            this.enumerator.onInit();
            this.mods.init(this.apiAdapter.getAllObservers(ModLoadObserver.class));
        }
        catch (Throwable th)
        {
            LiteLoaderLogger.severe(th, "Error initialising LiteLoader", th);
        }
    }

    /**
     * 
     */
    private void onPostInit()
    {
        LoadingProgress.setMessage("LiteLoader POSTINIT...");

        this.initLifetimeObjects();

        this.postInitCoreProviders();

        // Spawn mod instances and initialise them
        this.loadAndInitMods();

        this.coreProviders.all().onPostInitComplete(this.mods);

        // Save stuff
        this.properties.writeProperties();
    }

    /**
     * Get the singleton instance of LiteLoader, initialises the loader if
     * necessary.
     * 
     * @return LiteLoader instance
     */
    public static final LiteLoader getInstance()
    {
        return LiteLoader.instance;
    }

    /**
     * Get the tweak system classloader
     */
    public static LaunchClassLoader getClassLoader()
    {
        return LiteLoader.classLoader;
    }

    /**
     * Get LiteLoader version
     */
    public static String getVersion()
    {
        return LiteLoaderVersion.CURRENT.getLoaderVersion();
    }
    
    /**
     * Used for status displays, returns the total number of loaded mods
     * 
     * @return number of loaded litemods
     */
    public static int getLoadedModsCount()
    {
        return LiteLoader.instance.mods.getLoadedMods().size();
    }

    /**
     * Get LiteLoader version
     */
    public static final String getVersionDisplayString()
    {
        return String.format("LiteLoader %s", LiteLoaderVersion.CURRENT.getLoaderVersion());
    }

    /**
     * Get the loader revision
     */
    public static final int getRevision()
    {
        return LiteLoaderVersion.CURRENT.getLoaderRevision();
    }

    /**
     * Get all active API instances
     */
    public static final LiteAPI[] getAPIs()
    {
        LiteAPI[] apis = LiteLoader.instance.apiProvider.getAPIs();
        LiteAPI[] apisCopy = new LiteAPI[apis.length];
        System.arraycopy(apis, 0, apisCopy, 0, apis.length);
        return apisCopy;
    }

    /**
     * Get an API instance by identifier (returns null if no instance matching
     * the supplied identifier exists).
     * 
     * @param identifier
     */
    public static final LiteAPI getAPI(String identifier)
    {
        return LiteLoader.instance.apiProvider.getAPI(identifier);
    }

    /**
     * @param identifier
     */
    public static boolean isAPIAvailable(String identifier)
    {
        return LiteLoader.getAPI(identifier) != null;
    }

    @SuppressWarnings("unchecked")
    public static final <C extends CustomisationProvider> C getCustomisationProvider(LiteAPI api, Class<C> providerType)
    {
        List<CustomisationProvider> customisationProviders = api.getCustomisationProviders();
        if (customisationProviders != null)
        {
            for (CustomisationProvider provider : customisationProviders)
            {
                if (providerType.isAssignableFrom(provider.getClass())) return (C)provider;
            }
        }

        return null;
    }

    /**
     * Get the client-side permissions manager
     */
    public static PermissionsManagerClient getClientPermissionsManager()
    {
        return LiteLoader.instance.permissionsManagerClient;
    }

    /**
     * Get the server-side permissions manager
     */
    public static PermissionsManagerServer getServerPermissionsManager()
    {
        return LiteLoader.instance.permissionsManagerServer;
    }

    /**
     * Get the current game engine wrapper
     */
    public static GameEngine<?, ?> getGameEngine()
    {
        return LiteLoader.instance.engine;
    }

    /**
     * Get the interface manager
     */
    public static LiteLoaderInterfaceManager getInterfaceManager()
    {
        return LiteLoader.instance.interfaceManager;
    }

    /**
     * Get the client-side plugin channel manager
     */
    public static ClientPluginChannels getClientPluginChannels()
    {
        return LiteLoader.instance.clientPluginChannels;
    }

    /**
     * Get the server-side plugin channel manager
     */
    public static ServerPluginChannels getServerPluginChannels()
    {
        return LiteLoader.instance.serverPluginChannels;
    }

    /**
     * Get the input manager
     */
    public static Input getInput()
    {
        return LiteLoader.instance.input;
    }

    /**
     * Get the mod panel manager
     */
    @SuppressWarnings({ "cast", "unchecked" })
    public static <T> PanelManager<T> getModPanelManager()
    {
        return (PanelManager<T>)LiteLoader.instance.panelManager;
    }

    /**
     * Get the "mods" folder
     */
    public static File getModsFolder()
    {
        return LiteLoader.instance.environment.getModsFolder();
    }

    /**
     * Get the common (version-independent) config folder
     */
    public static File getCommonConfigFolder()
    {
        return LiteLoader.instance.environment.getCommonConfigFolder();
    }

    /**
     * Get the config folder for this version
     */
    public static File getConfigFolder()
    {
        return LiteLoader.instance.environment.getVersionedConfigFolder();
    }

    /**
     * Get the game directory
     */
    public static File getGameDirectory()
    {
        return LiteLoader.instance.environment.getGameDirectory();
    }

    /**
     * Get the "assets" root directory
     */
    public static File getAssetsDirectory()
    {
        return LiteLoader.instance.environment.getAssetsDirectory();
    }

    /**
     * Get the name of the profile which launched the game
     */
    public static String getProfile()
    {
        return LiteLoader.instance.environment.getProfile();
    }

    /**
     * Get the type of environment (client or dedicated server)
     */
    public static EnvironmentType getEnvironmentType()
    {
        return LiteLoader.instance.environment.getType();
    }

    /**
     * Used to get the name of the modpack being used
     * 
     * @return name of the modpack in use or null if no pack
     */
    public static String getBranding()
    {
        return LiteLoader.instance.properties.getBranding();
    }

    /**
     * Get whether the current environment is MCP
     */
    public static boolean isDevelopmentEnvironment()
    {
        return "true".equals(System.getProperty("mcpenv"));
    }

    /**
     * Dump debugging information to the console
     */
    public static void dumpDebugInfo()
    {
        if (LiteLoaderLogger.DEBUG)
        {
            EventTransformer.dumpInjectionState();
            MixinEnvironment.getCurrentEnvironment().audit();
            LiteLoaderLogger.info("Debug info dumped to console");
        }
        else
        {
            LiteLoaderLogger.info("Debug dump not available, developer flag not enabled");
        }
    }

    /**
     * Used for crash reporting, returns a text list of all loaded mods
     * 
     * @return List of loaded mods as a string
     */
    public String getLoadedModsList()
    {
        return this.mods.getLoadedModsList();
    }

    /**
     * Get a list containing all loaded mods
     */
    public List<LiteMod> getLoadedMods()
    {
        List<LiteMod> loadedMods = new ArrayList<LiteMod>();

        for (ModInfo<LoadableMod<?>> loadedMod : this.mods.getLoadedMods())
        {
            loadedMods.add(loadedMod.getMod());
        }

        return loadedMods;
    }

    /**
     * Get a list containing all mod files which were NOT loaded
     */
    public List<Loadable<?>> getDisabledMods()
    {
        List<Loadable<?>> disabledMods = new ArrayList<Loadable<?>>();

        for (ModInfo<?> disabledMod : this.mods.getDisabledMods())
        {
            disabledMods.add(disabledMod.getContainer());
        }

        return disabledMods;
    }

    /**
     * Get the list of injected tweak containers
     */
    @SuppressWarnings("unchecked")
    public Collection<Loadable<File>> getInjectedTweaks()
    {
        Collection<Loadable<File>> tweaks = new ArrayList<Loadable<File>>();

        for (ModInfo<Loadable<?>> tweak : this.mods.getInjectedTweaks())
        {
            tweaks.add((Loadable<File>)tweak.getContainer());
        }

        return tweaks;
    }

    /**
     * Get a reference to a loaded mod, if the mod exists
     * 
     * @param modName Mod's name, identifier or class name
     * @throws InvalidActivityException
     */
    public <T extends LiteMod> T getMod(String modName) throws InvalidActivityException, IllegalArgumentException
    {
        if (!this.modInitComplete)
        {
            throw new InvalidActivityException("Attempted to get a reference to a mod before loader startup is complete");
        }

        return this.mods.getMod(modName);
    }

    /**
     * Get a reference to a loaded mod, if the mod exists
     * 
     * @param modClass Mod class
     */
    public <T extends LiteMod> T getMod(Class<T> modClass)
    {
        if (!this.modInitComplete)
        {
            throw new RuntimeException("Attempted to get a reference to a mod before loader startup is complete");
        }

        return this.mods.getMod(modClass);
    }

    /**
     * Get whether the specified mod is installed
     *
     * @param modName
     */
    public boolean isModInstalled(String modName)
    {
        if (!this.modInitComplete || modName == null) return false;

        return this.mods.isModInstalled(modName);
    }

    /**
     * Get a metadata value for the specified mod
     * 
     * @param modNameOrId
     * @param metaDataKey
     * @param defaultValue
     * @throws IllegalArgumentException Thrown by getMod if argument is null
     */
    public String getModMetaData(String modNameOrId, String metaDataKey, String defaultValue) throws IllegalArgumentException
    {
        return this.mods.getModMetaData(modNameOrId, metaDataKey, defaultValue);
    }

    /**
     * Get a metadata value for the specified mod
     * 
     * @param mod
     * @param metaDataKey
     * @param defaultValue
     */
    public String getModMetaData(LiteMod mod, String metaDataKey, String defaultValue)
    {
        return this.mods.getModMetaData(mod, metaDataKey, defaultValue);
    }

    /**
     * Get a metadata value for the specified mod
     * 
     * @param modClass
     * @param metaDataKey
     * @param defaultValue
     */
    public String getModMetaData(Class<? extends LiteMod> modClass, String metaDataKey, String defaultValue)
    {
        return this.mods.getModMetaData(modClass, metaDataKey, defaultValue);
    }

    /**
     * Get the mod identifier, this is used for versioning, exclusivity, and
     * enablement checks.
     * 
     * @param modClass
     */
    public String getModIdentifier(Class<? extends LiteMod> modClass)
    {
        return this.mods.getModIdentifier(modClass);
    }

    /**
     * Get the mod identifier, this is used for versioning, exclusivity, and
     * enablement checks.
     * 
     * @param mod
     */
    public String getModIdentifier(LiteMod mod)
    {
        return this.mods.getModIdentifier(mod);
    }

    /**
     * Get the container (mod file, classpath jar or folder) for the specified
     * mod.
     * 
     * @param modClass
     */
    public LoadableMod<?> getModContainer(Class<? extends LiteMod> modClass)
    {
        return this.mods.getModContainer(modClass);
    }

    /**
     * Get the container (mod file, classpath jar or folder) for the specified
     * mod.
     * 
     * @param mod
     */
    public LoadableMod<?> getModContainer(LiteMod mod)
    {
        return this.mods.getModContainer(mod);
    }

    /**
     * Get the mod which matches the specified identifier
     * 
     * @param identifier
     */
    public Class<? extends LiteMod> getModFromIdentifier(String identifier)
    {
        return this.mods.getModFromIdentifier(identifier);
    }

    /**
     * @param identifier Identifier of the mod to enable
     */
    public void enableMod(String identifier)
    {
        this.mods.setModEnabled(identifier, true);
    }

    /**
     * @param identifier Identifier of the mod to disable
     */
    public void disableMod(String identifier)
    {
        this.mods.setModEnabled(identifier, false);
    }

    /**
     * @param identifier Identifier of the mod to enable/disable
     * @param enabled
     */
    public void setModEnabled(String identifier, boolean enabled)
    {
        this.mods.setModEnabled(identifier, enabled);
    }

    /**
     * @param modName
     */
    public boolean isModEnabled(String modName)
    {
        return this.mods.isModEnabled(modName);
    }

    /**
     * @param modName
     */
    public boolean isModActive(String modName)
    {
        return this.mods.isModActive(modName);
    }

    /**
     * @param exposable
     */
    public void writeConfig(Exposable exposable)
    {
        this.configManager.invalidateConfig(exposable);
    }

    /**
     * Register an arbitrary Exposable
     * 
     * @param exposable Exposable object to register
     * @param fileName Override config file name to use (leave null to use value
     *      from ExposableConfig specified value)
     */
    public void registerExposable(Exposable exposable, String fileName)
    {
        this.configManager.registerExposable(exposable, fileName, true);
        this.configManager.initConfig(exposable);
    }

    /**
     * Initialise lifetime objects like the game engine, event broker and
     * interface manager.
     */
    private void initLifetimeObjects()
    {
        // Cache game engine reference
        this.engine = this.objectFactory.getGameEngine();

        // Cache profiler instance
        this.profiler = this.objectFactory.getGameEngine().getProfiler();

        // Create the event broker
        this.events = this.objectFactory.getEventBroker();
        if (this.events != null)
        {
            this.events.setMods(this.mods);
        }

        // Get the mod panel manager
        this.panelManager = this.objectFactory.getPanelManager();
        if (this.panelManager != null)
        {
            this.panelManager.init(this.mods, this.configManager);
        }

        // Create the interface manager
        this.interfaceManager = new LiteLoaderInterfaceManager(this.apiAdapter);
    }

    /**
     * 
     */
    private void postInitCoreProviders()
    {
        this.coreProviders.all().onPostInit(this.engine);

        this.interfaceManager.registerInterfaces();

        for (CoreProvider provider : this.coreProviders)
        {
            if (provider instanceof Listener)
            {
                this.interfaceManager.registerListener((Listener)provider);
            }
        }
    }

    private void loadAndInitMods()
    {
        int totalMods = this.enumerator.modsToLoadCount();
        int totalTweaks = this.enumerator.getInjectedTweaks().size();
        LiteLoaderLogger.info(Verbosity.REDUCED, "Discovered %d total mod(s), injected %d tweak(s)", totalMods, totalTweaks);

        if (totalMods > 0)
        {
            this.mods.loadMods();
            this.mods.initMods();
        }
        else
        {
            LiteLoaderLogger.info(Verbosity.REDUCED, "No mod classes were found. Not loading any mods.");
        }

        // Initialises the required hooks for loaded mods
        this.interfaceManager.onPostInit();

        this.modInitComplete = true;
        this.mods.onPostInit();
    }

    void onPostInitMod(LiteMod mod)
    {
        // add mod to permissions manager if permissible
        if (this.permissionsManagerClient != null)
        {
            this.permissionsManagerClient.registerMod(mod);
        }
    }

    /**
     * Called after mod late init
     */
    void onStartupComplete()
    {
        // Set the loader branding in ClientBrandRetriever using reflection
        LiteLoaderBootstrap.setBranding("LiteLoader");

        this.coreProviders.all().onStartupComplete();

        if (this.panelManager != null)
        {
            this.panelManager.onStartupComplete();
        }

        MessageBus.getInstance().onStartupComplete();

        // Force packet injections
        EnumConnectionState.values();
    }

    /**
     * Called on login
     * 
     * @param netHandler
     * @param loginPacket
     */
    void onJoinGame(INetHandler netHandler, SPacketJoinGame loginPacket)
    {
        if (this.permissionsManagerClient != null)
        {
            this.permissionsManagerClient.onJoinGame(netHandler, loginPacket);
        }

        this.coreProviders.all().onJoinGame(netHandler, loginPacket);
    }

    /**
     * Called when the world reference is changed
     * 
     * @param world
     */
    void onWorldChanged(World world)
    {
        if (world != null && this.permissionsManagerClient != null)
        {
            // For bungeecord
            this.permissionsManagerClient.scheduleRefresh();
        }

        this.worldObservers.all().onWorldChanged(world);
    }

    /**
     * @param mouseX
     * @param mouseY
     * @param partialTicks
     */
    void onPostRender(int mouseX, int mouseY, float partialTicks)
    {
        this.profiler.startSection("core");
        this.postRenderObservers.all().onPostRender(mouseX, mouseY, partialTicks);
        this.profiler.endSection();
    }

    /**
     * @param clock
     * @param partialTicks
     * @param inGame
     */
    void onTick(boolean clock, float partialTicks, boolean inGame)
    {
        if (clock)
        {
            // Tick the permissions manager
            if (this.permissionsManagerClient != null)
            {
                this.profiler.startSection("permissionsmanager");
                this.permissionsManagerClient.onTick(this.engine, partialTicks, inGame);
                this.profiler.endSection();
            }

            // Tick the config manager
            this.profiler.startSection("configmanager");
            this.configManager.onTick();
            this.profiler.endSection();

            if (!this.engine.isRunning())
            {
                this.onShutDown();
                return;
            }
        }

        this.profiler.startSection("observers");

        this.tickObservers.all().onTick(clock, partialTicks, inGame);

        this.profiler.endSection();
    }

    private void onShutDown()
    {
        LiteLoaderLogger.info(Verbosity.REDUCED, "LiteLoader is shutting down, shutting down core providers and syncing configuration");

        this.shutdownObservers.all().onShutDown();

        this.configManager.syncConfig();
    }

    public static String translate(String key, Object... args)
    {
        for (TranslationProvider translator : LiteLoader.instance.translators)
        {
            String translated = translator.translate(key, args);
            if (translated != null)
            {
                return translated;
            }
        }

        return key;
    }

    /**
     * @param objCrashReport This is an object so that we don't need to
     *      transform the obfuscated name in the transformer
     */
    public static void populateCrashReport(Object objCrashReport)
    {
        if (objCrashReport instanceof CrashReport)
        {
            EventProxy.populateCrashReport((CrashReport)objCrashReport);
            LiteLoader.populateCrashReport((CrashReport)objCrashReport);
        }
    }

    private static void populateCrashReport(CrashReport crashReport)
    {
        CrashReportCategory category = crashReport.getCategory(); // crashReport.makeCategoryDepth("Mod System Details", 1);
        category.addCrashSection("Mod Pack",        new CallableLiteLoaderBrand(crashReport));
        category.addCrashSection("LiteLoader Mods", new CallableLiteLoaderMods(crashReport));
        category.addCrashSection("LaunchWrapper",   new CallableLaunchWrapper(crashReport));
    }

    static final void createInstance(LoaderEnvironment environment, LoaderProperties properties, LaunchClassLoader classLoader)
    {
        if (LiteLoader.instance == null)
        {
            LiteLoader.classLoader = classLoader;
            LiteLoader.instance = new LiteLoader(environment, properties);
        }
    }

    static final void invokeInit()
    {
        LiteLoaderLogger.info(Verbosity.REDUCED, "LiteLoader begin INIT...");

        LiteLoader.instance.onInit();
    }

    static final void invokePostInit()
    {
        LiteLoaderLogger.info(Verbosity.REDUCED, "LiteLoader begin POSTINIT...");

        LiteLoader.instance.onPostInit();
    }
}