From 311ab89f93558233a40079f7cb16605b141b5346 Mon Sep 17 00:00:00 2001 From: Johann Bernhardt Date: Sun, 12 Dec 2021 19:38:06 +0100 Subject: Move sources and resources --- .../galacticraft/handler/HandlerTooltip_GC.java | 83 ---------------------- 1 file changed, 83 deletions(-) delete mode 100644 src/Java/gtPlusPlus/xmod/galacticraft/handler/HandlerTooltip_GC.java (limited to 'src/Java/gtPlusPlus/xmod/galacticraft/handler') diff --git a/src/Java/gtPlusPlus/xmod/galacticraft/handler/HandlerTooltip_GC.java b/src/Java/gtPlusPlus/xmod/galacticraft/handler/HandlerTooltip_GC.java deleted file mode 100644 index 3b59b58cab..0000000000 --- a/src/Java/gtPlusPlus/xmod/galacticraft/handler/HandlerTooltip_GC.java +++ /dev/null @@ -1,83 +0,0 @@ -package gtPlusPlus.xmod.galacticraft.handler; - -import java.lang.reflect.Field; -import java.util.HashMap; -import java.util.LinkedHashMap; - -import cpw.mods.fml.common.eventhandler.SubscribeEvent; -import net.minecraft.block.Block; -import net.minecraft.item.Item; -import gtPlusPlus.core.item.chemistry.RocketFuels; -import gtPlusPlus.core.lib.LoadedMods; -import gtPlusPlus.core.util.reflect.ReflectionUtils; -import gtPlusPlus.preloader.asm.AsmConfig; -import net.minecraftforge.event.entity.player.ItemTooltipEvent; -import net.minecraftforge.fluids.Fluid; - -public class HandlerTooltip_GC { - - private static Item mItemBlock; - private static Block mBlock; - private static Class oMainClass; - private static Class oFuelLoaderClass; - private static HashMap mFuelNames; - - static { - mFuelNames = new LinkedHashMap(); - } - - @SubscribeEvent - public void onItemTooltip(ItemTooltipEvent event) { - if (LoadedMods.GalacticraftCore && AsmConfig.enableGcFuelChanges) { - - if (mBlock == null) { - try { - Class GCBlocks = ReflectionUtils.getClass("micdoodle8.mods.galacticraft.core.blocks.GCBlocks"); - if (GCBlocks != null) { - oMainClass = GCBlocks; - - Class GCFuelLoader = ReflectionUtils.getClass("micdoodle8.mods.galacticraft.core.blocks.BlockFuelLoader"); - - if (GCFuelLoader != null) { - oFuelLoaderClass = GCFuelLoader; - } - - Field aField = ReflectionUtils.getField(oMainClass, "fuelLoader"); - if (aField != null) { - Block aBlock = (Block) aField.get(null); - if (aBlock != null) { - mBlock = aBlock; - mItemBlock = Item.getItemFromBlock(mBlock); - } - } - } - } catch (Throwable t) { - } - } - if (mFuelNames == null) { - mFuelNames = new LinkedHashMap(); - } - - if (mFuelNames.isEmpty()) { - for (int aMapKey : RocketFuels.mValidRocketFuels.keySet()) { - Fluid aFuel = RocketFuels.mValidRocketFuels.get(aMapKey); - if (aFuel != null) { - mFuelNames.put(aMapKey, aFuel.getLocalizedName()); - } - } - } - if (mItemBlock != null && !mFuelNames.isEmpty()) { - Item aTempItem = event.itemStack.getItem(); - Block aTempBlock = Block.getBlockFromItem(aTempItem); - if (aTempItem == mItemBlock || oFuelLoaderClass.isInstance(aTempBlock) || event.itemStack.getUnlocalizedName().toLowerCase().contains("fuelloader")) { - for (int aMapKey : mFuelNames.keySet()) { - String aFuel = mFuelNames.get(aMapKey); - if (aFuel != null) { - event.toolTip.add("Tier "+(aMapKey+1)+": "+aFuel); - } - } - } - } - } - } -} -- cgit