/* * Minecraft Forge * Copyright (c) 2018. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation version 2.1 * of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package net.minecraftforge.fml.client; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.resources.IReloadableResourceManager; import net.minecraft.resources.IResourcePack; import net.minecraft.resources.data.IMetadataSectionSerializer; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; import net.minecraftforge.fml.LogicalSidedProvider; import net.minecraftforge.fml.SidedProvider; import net.minecraftforge.fml.VersionChecker; import net.minecraftforge.fml.ModLoader; import net.minecraftforge.fml.client.gui.GuiNotification; import net.minecraftforge.fml.client.registry.RenderingRegistry; import java.io.IOException; import java.util.List; @OnlyIn(Dist.CLIENT) public class ClientModLoader { private static boolean loading; private static Minecraft mc; public static void begin(final Minecraft minecraft, final List defaultResourcePacks, final IReloadableResourceManager mcResourceManager, IMetadataSectionSerializer metadataSerializer) { loading = true; ClientModLoader.mc = minecraft; SidedProvider.setClient(()->minecraft); LogicalSidedProvider.setClient(()->minecraft); ModLoader.get().loadMods(); ResourcePackLoader.loadResourcePacks(defaultResourcePacks); minecraft.refreshResources(); } public static void end() { ModLoader.get().finishMods(); loading = false; mc.gameSettings.loadOptions(); } public static VersionChecker.Status checkForUpdates() { return VersionChecker.Status.UP_TO_DATE; } public static void complete() { GlStateManager.disableTexture2D(); GlStateManager.enableTexture2D(); } public static boolean isErrored() { return false; } public static boolean isLoading() { return loading; } }