LiteLoaderMods.java 23.7 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
/*
 * 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.Collections;
import java.util.Deque;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;

import com.mumfrey.liteloader.LiteMod;
import com.mumfrey.liteloader.api.ModLoadObserver;
import com.mumfrey.liteloader.common.LoadingProgress;
import com.mumfrey.liteloader.core.event.HandlerList;
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.MixinContainer;
import com.mumfrey.liteloader.interfaces.TweakContainer;
import com.mumfrey.liteloader.launch.ClassTransformerManager;
import com.mumfrey.liteloader.launch.LoaderEnvironment;
import com.mumfrey.liteloader.launch.LoaderProperties;
import com.mumfrey.liteloader.modconfig.ConfigManager;
import com.mumfrey.liteloader.modconfig.ConfigStrategy;
import com.mumfrey.liteloader.util.log.LiteLoaderLogger;
import com.mumfrey.liteloader.util.log.LiteLoaderLogger.Verbosity;

/**
 * Separated from the core loader class for encapsulation purposes
 *
 * @author Adam Mummery-Smith
 */
public class LiteLoaderMods
{
    public static final String MOD_SYSTEM = "liteloader";

    /**
     * Reference to the loader 
     */
    protected final LiteLoader loader;

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

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

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

    /**
     * Configuration manager 
     */
    private final ConfigManager configManager;

    /**
     * Mod load observers
     */
    private FastIterableDeque<ModLoadObserver> observers = new HandlerList<ModLoadObserver>(ModLoadObserver.class);

    /**
     * List of loaded mods, for crash reporting
     */
    private String loadedModsList = "none";

    /**
     * Global list of mods which we can load
     */
    protected final List<Mod> allMods = new ArrayList<Mod>();

    /**
     * Global list of mods which are still waiting for initialisiation
     */
    protected final Deque<Mod> initMods = new LinkedList<Mod>();

    /**
     * Global list of mods which we have loaded
     */
    protected final List<Mod> loadedMods = new ArrayList<Mod>();

    /**
     * Global list of mods which we found but ignored (eg. outdated, invalid)
     */
    protected final List<Mod> badMods = new ArrayList<Mod>();

    /**
     * Mods which are loaded but disabled
     */
    protected final List<ModInfo<?>> disabledMods = new ArrayList<ModInfo<?>>();

    /**
     * Bad containers
     */
    protected final List<ModInfo<?>> badContainers = new ArrayList<ModInfo<?>>();

    private int startupErrorCount, criticalErrorCount;

    LiteLoaderMods(LiteLoader loader, LoaderEnvironment environment, LoaderProperties properties, ConfigManager configManager)
    {
        this.loader           = loader;
        this.environment      = environment;
        this.enumerator       = environment.getEnumerator();
        this.properties       = properties;
        this.configManager    = configManager;
    }

    void init(List<ModLoadObserver> observers)
    {
        this.observers.addAll(observers);
        this.disabledMods.addAll(this.enumerator.getDisabledContainers());
        this.badContainers.addAll(this.enumerator.getBadContainers());
    }

    void onPostInit()
    {
        this.updateSharedModList();

        this.environment.getEnabledModsList().save();
    }

    public EnabledModsList getEnabledModsList()
    {
        return this.environment.getEnabledModsList();
    }

    public List<Mod> getAllMods()
    {
        return Collections.unmodifiableList(this.allMods);
    }

    /**
     * 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.loadedModsList;
    }

    /**
     * Get a list containing all loaded mods
     */
    public List<? extends ModInfo<LoadableMod<?>>> getLoadedMods()
    {
        return this.loadedMods;
    }

    /**
     * Get a list containing all mod files which were NOT loaded
     */
    public List<? extends ModInfo<?>> getDisabledMods()
    {
        return this.disabledMods;
    }

    /**
     * Get a list of all bad containers
     */
    public List<? extends ModInfo<?>> getBadContainers()
    {
        return this.badContainers;
    }

    /**
     * Get the list of injected tweak containers
     */
    public Collection<? extends ModInfo<Loadable<?>>> getInjectedTweaks()
    {
        return this.enumerator.getInjectedTweaks();
    }

    public int getStartupErrorCount()
    {
        return this.startupErrorCount;
    }

    public int getCriticalErrorCount()
    {
        return this.criticalErrorCount;
    }

    public ModInfo<?> getModInfo(LiteMod instance)
    {
        for (Mod mod : this.allMods)
        {
            if (instance == mod.getMod())
            {
                return mod;
            }
        }

        return null;
    }

    /**
     * Get whether the specified mod is installed
     *
     * @param modName
     */
    public boolean isModInstalled(String modName)
    {
        try
        {
            return this.getMod(modName) != null;
        }
        catch (IllegalArgumentException ex)
        {
            return false;
        }
    }

    /**
     * Get a reference to a loaded mod, if the mod exists
     * 
     * @param modName Mod's name, identifier or class name
     */
    @SuppressWarnings("unchecked")
    public <T extends LiteMod> T getMod(String modName)
    {
        if (modName == null)
        {
            throw new IllegalArgumentException("Attempted to get a reference to a mod without specifying a mod name");
        }

        for (Mod mod : this.allMods)
        {
            if (mod.matchesName(modName))
            {
                return (T)mod.getMod();
            }
        }

        return null;
    }

    /**
     * Get a reference to a loaded mod, if the mod exists
     * 
     * @param modClass Mod class
     */
    @SuppressWarnings("unchecked")
    public <T extends LiteMod> T getMod(Class<T> modClass)
    {
        for (Mod mod : this.allMods)
        {
            if (mod.getModClass().equals(modClass))
            {
                return (T)mod.getMod();
            }
        }

        return null;
    }

    /**
     * Get the mod which matches the specified identifier
     * 
     * @param identifier
     */
    public Class<? extends LiteMod> getModFromIdentifier(String identifier)
    {
        if (identifier == null) return null;

        for (Mod mod : this.allMods)
        {
            if (mod.matchesIdentifier(identifier))
            {
                return mod.getModClass();
            }
        }

        return null;
    }

    /**
     * Get a metadata value for the specified mod
     * 
     * @param modNameOrId
     * @param metaDataKey
     * @param defaultValue
     */
    public String getModMetaData(String modNameOrId, String metaDataKey, String defaultValue) throws IllegalArgumentException
    {
        String mod = this.getMod(modNameOrId);
        return this.getModMetaData(mod, 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)
    {
        if (mod == null || metaDataKey == null) return defaultValue;
        return this.enumerator.getModMetaData(mod.getClass(), 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)
    {
        if (modClass == null || metaDataKey == null) return defaultValue;
        return this.enumerator.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.enumerator.getIdentifier(modClass);
    }

    /**
     * Get the mod identifier, this is used for versioning, exclusivity, and
     * enablement checks.
     * 
     * @param mod
     */
    public String getModIdentifier(LiteMod mod)
    {
        return mod == null ? null : this.enumerator.getIdentifier(mod.getClass());
    }

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

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

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

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

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

    /**
     * @param identifier
     */
    public boolean isModEnabled(String identifier)
    {
        return this.environment.getEnabledModsList().isEnabled(LiteLoader.getProfile(), identifier);
    }

    public boolean isModEnabled(String profile, String identifier)
    {
        return this.environment.getEnabledModsList().isEnabled(profile, identifier);
    }

    /**
     * @param identifier
     */
    public boolean isModActive(String identifier)
    {
        if (identifier == null) return false;

        for (Mod mod : this.loadedMods)
        {
            if (mod.matchesIdentifier(identifier))
            {
                return true;
            }
        }

        return false;
    }

    /**
     * Create mod instances from the enumerated classes
     */
    void loadMods()
    {
        LoadingProgress.incTotalLiteLoaderProgress(this.enumerator.getModsToLoad().size());

        for (ModInfo<LoadableMod<?>> mod : this.enumerator.getModsToLoad())
        {
            LoadingProgress.incLiteLoaderProgress("Loading mod from %s...", mod.getModClassSimpleName());
            LoadableMod<?> container = mod.getContainer();

            try
            {
                String identifier = mod.getIdentifier();
                if (identifier == null || this.environment.getEnabledModsList().isEnabled(this.environment.getProfile(), identifier))
                {
                    if (!this.validateMixins(mod, container))
                    {
                        this.onModLoadFailed(container, identifier, "mixins for the specified mod encountered a startup error", null);
                        continue;
                    }
                    
                    if (!this.enumerator.checkDependencies(container))
                    {
                        this.onModLoadFailed(container, identifier, "the mod was missing a required dependency", null);
                        continue;
                    }

                    if (mod instanceof Mod)
                    {
                        this.loadMod((Mod)mod);
                    }
                    else
                    {
                        this.loadMod(identifier, mod.getModClass(), container);
                    }
                }
                else
                {
                    this.onModLoadFailed(container, identifier, "excluded by filter", null);
                }
            }
            catch (Throwable th)
            {
                th.printStackTrace();
                this.onModLoadFailed(container, mod.getModClassName(), "an error occurred", th);
                this.registerModStartupError(mod, th);
            }

            this.observers.all().onPostModLoaded(mod);
        }
    }
    
    private boolean validateMixins(ModInfo<?> mod, LoadableMod<?> container)
    {
        if (container instanceof MixinContainer)
        {
            @SuppressWarnings("unchecked")
            Collection<Throwable> errors = ((MixinContainer<File>)container).getMixinErrors();
            for (Throwable error : errors)
            {
                this.registerModStartupError(mod, error, true);
            }
            
            return errors.size() == 0;
        }
        
        return true;
    }

    /**
     * @param identifier
     * @param modClass
     * @param container 
     * @throws InstantiationException
     * @throws IllegalAccessException
     */
    void loadMod(String identifier, Class<? extends LiteMod> modClass, LoadableMod<?> container) throws InstantiationException, IllegalAccessException
    {
        Mod mod = new Mod(container, modClass, identifier);
        this.loadMod(mod);
    }

    /**
     * @param mod
     * @throws InstantiationException
     * @throws IllegalAccessException
     */
    void loadMod(Mod mod) throws InstantiationException, IllegalAccessException
    {
        LiteLoaderLogger.info(Verbosity.REDUCED, "Loading mod from %s", mod.getModClassName());

        LiteMod newMod = mod.newInstance();

        this.onModLoaded(mod);

        String modName = mod.getDisplayName();
        LiteLoaderLogger.info("Successfully added mod %s version %s", modName, newMod.getVersion());
    }

    /**
     * @param mod
     */
    void onModLoaded(Mod mod)
    {
        this.observers.all().onModLoaded(mod.getMod());

        this.allMods.add(mod);
        this.initMods.add(mod);

        LoadingProgress.incTotalLiteLoaderProgress(1);
    }

    /**
     * @param container
     * @param identifier
     * @param reason
     * @param th
     */
    void onModLoadFailed(LoadableMod<?> container, String identifier, String reason, Throwable th)
    {
        LiteLoaderLogger.warning("Not loading mod %s, %s", identifier, reason);

        for (ModInfo<?> mod : this.disabledMods)
        {
            if (mod.getContainer().equals(container))
            {
                return;
            }
        }

        if (container != LoadableMod.NONE)
        {
            this.disabledMods.add(new NonMod(container, false));
        }

        this.observers.all().onModLoadFailed(container, identifier, reason, th);
    }

    /**
     * Initialise the mods which were loaded
     */
    void initMods()
    {
        this.loadedModsList = "";
        int loadedModsCount = 0;

        while (this.initMods.size() > 0)
        {
            Mod mod = this.initMods.removeFirst();

            try
            {
                this.initMod(mod);
                loadedModsCount++;
            }
            catch (Throwable th)
            {
                this.registerModStartupError(mod, th);
                LiteLoaderLogger.warning(th, "Error initialising mod '%s'", mod.getDisplayName());
            }
        }

        this.loadedModsList = String.format("%s loaded mod(s)%s", loadedModsCount, this.loadedModsList);
    }

    /**
     * @param mod
     */
    private void initMod(Mod mod)
    {
        LiteMod instance = mod.getMod();

        LiteLoaderLogger.info(Verbosity.REDUCED, "Initialising mod %s version %s", instance.getName(), instance.getVersion());
        LoadingProgress.incLiteLoaderProgress("Initialising mod %s version %s...", instance.getName(), instance.getVersion());

        this.onPreInitMod(instance);

        // initialise the mod
        instance.init(LiteLoader.getCommonConfigFolder());

        this.onPostInitMod(instance);

        this.loadedMods.add(mod);
        this.loadedModsList += String.format("\n          - %s version %s", mod.getDisplayName(), mod.getVersion());
    }

    /**
     * @param instance
     */
    private void onPreInitMod(LiteMod instance)
    {
        this.observers.all().onPreInitMod(instance);

        // register mod config panel if configurable
        this.configManager.registerMod(instance);

        try
        {
            this.handleModVersionUpgrade(instance);
        }
        catch (Throwable th)
        {
            LiteLoaderLogger.warning("Error performing settings upgrade for %s. Settings may not be properly migrated", instance.getName());
        }

        // Init mod config if there is any
        this.configManager.initConfig(instance);
    }

    /**
     * @param instance
     */
    private void onPostInitMod(LiteMod instance)
    {
        this.observers.all().onPostInitMod(instance);

        // add the mod to all relevant listener queues
        LiteLoader.getInterfaceManager().offer(instance);

        this.loader.onPostInitMod(instance);
    }

    /**
     * @param instance
     */
    private void handleModVersionUpgrade(LiteMod instance)
    {
        String modKey = this.getModNameForConfig(instance.getClass(), instance.getName());

        int currentRevision = LiteLoaderVersion.CURRENT.getLoaderRevision();
        int lastKnownRevision = this.properties.getLastKnownModRevision(modKey);

        LiteLoaderVersion lastModVersion = LiteLoaderVersion.getVersionFromRevision(lastKnownRevision);
        if (currentRevision > lastModVersion.getLoaderRevision())
        {
            File newConfigPath = LiteLoader.getConfigFolder();
            File oldConfigPath = this.environment.inflectVersionedConfigPath(lastModVersion);

            LiteLoaderLogger.info("Performing config upgrade for mod %s. Upgrading %s to %s...",
                    instance.getName(), lastModVersion, LiteLoaderVersion.CURRENT);

            this.observers.all().onMigrateModConfig(instance, newConfigPath, oldConfigPath);

            // Migrate versioned config if any is present
            this.configManager.migrateModConfig(instance, newConfigPath, oldConfigPath);

            // Let the mod upgrade
            instance.upgradeSettings(LiteLoaderVersion.CURRENT.getMinecraftVersion(), newConfigPath, oldConfigPath);

            this.properties.storeLastKnownModRevision(modKey);
            LiteLoaderLogger.info("Config upgrade succeeded for mod %s", instance.getName());
        }
        else if (currentRevision < lastKnownRevision && ConfigManager.getConfigStrategy(instance) == ConfigStrategy.Unversioned)
        {
            LiteLoaderLogger.warning("Mod %s has config from unknown loader revision %d. This may cause unexpected behaviour.",
                    instance.getName(), lastKnownRevision);
        }
    }

    /**
     * Used by the version upgrade code, gets a version of the mod name suitable
     * for inclusion in the properties file
     * 
     * @param modName
     */
    String getModNameForConfig(Class<? extends LiteMod> modClass, String modName)
    {
        if (modName == null || modName.isEmpty())
        {
            modName = modClass.getSimpleName().toLowerCase();
        }

        return String.format("version.%s", modName.toLowerCase().replaceAll("[^a-z0-9_\\-\\.]", ""));
    }

    void onStartupComplete()
    {
        this.validateModTransformers();
    }

    /**
     * Check that all specified mod transformers were injected successfully, tag
     * mods with failed transformers as critically errored.
     */
    private void validateModTransformers()
    {
        ClassTransformerManager transformerManager = this.environment.getTransformerManager();
        Set<String> injectedTransformers = transformerManager.getInjectedTransformers();

        for (Mod mod : this.loadedMods)
        {
            if (!mod.hasClassTransformers())
            {
                continue;
            }
            
            List<String> modTransformers = ((TweakContainer<?>)mod.getContainer()).getClassTransformerClassNames();
            for (String modTransformer : modTransformers)
            {
                if (!injectedTransformers.contains(modTransformer))
                {
                    List<Throwable> throwables = transformerManager.getTransformerStartupErrors(modTransformer);
                    if (throwables != null)
                    {
                        for (Throwable th : throwables)
                        {
                            this.registerModStartupError(mod, th, true);
                        }
                    }
                    else
                    {
                        this.registerModStartupError(mod, new RuntimeException("Missing class transformer " + modTransformer), true);
                    }
                }
            }
        }
    }

    /**
     * @param instance
     * @param th
     */
    public void onLateInitFailed(LiteMod instance, Throwable th)
    {
        ModInfo<?> mod = this.getModInfo(instance);
        if (mod != null)
        {
            this.registerModStartupError(mod, th);
        }
    }

    private void registerModStartupError(ModInfo<?> mod, Throwable th)
    {
        // This is a critical error if a mod has already injected a transformer, since it may have injected
        // callbacks which it is not in a position to handle!
        boolean critical = this.hasModInjectedTransformers(mod);

        this.registerModStartupError(mod, th, critical);
    }

    private boolean hasModInjectedTransformers(ModInfo<?> mod)
    {
        if (!mod.hasClassTransformers()) return false;

        Set<String> injectedTransformers = this.environment.getTransformerManager().getInjectedTransformers();
        List<String> modTransformers = ((TweakContainer<?>)mod.getContainer()).getClassTransformerClassNames();

        for (String modTransformer : modTransformers)
        {
            if (injectedTransformers.contains(modTransformer))
            {
                return true;
            }
        }

        return false;
    }

    private void registerModStartupError(ModInfo<?> mod, Throwable th, boolean critical)
    {
        this.startupErrorCount++;
        if (critical)
        {
            this.criticalErrorCount++;
        }
        
        mod.registerStartupError(th);

        if (!this.loadedMods.contains(mod) && !this.disabledMods.contains(mod))
        {
            this.disabledMods.add(mod);
        }
    }

    void updateSharedModList()
    {
        Map<String, Map<String, String>> modList = this.enumerator.getSharedModList();
        if (modList == null) return;

        for (Mod mod : this.allMods)
        {
            String modKey = String.format("%s:%s", LiteLoaderMods.MOD_SYSTEM, mod.getIdentifier());
            modList.put(modKey, this.packModInfoToMap(mod));
        }
    }

    private Map<String, String> packModInfoToMap(Mod mod)
    {
        Map<String, String> modInfo = new HashMap<String, String>();

        modInfo.put("modsystem",   LiteLoaderMods.MOD_SYSTEM);
        modInfo.put("id",          mod.getIdentifier());
        modInfo.put("version",     mod.getVersion());
        modInfo.put("name",        mod.getDisplayName());
        modInfo.put("url",         mod.getURL());
        modInfo.put("authors",     mod.getAuthor());
        modInfo.put("description", mod.getDescription());

        return modInfo;
    }
}