/* * This file ("SpecialRenderInit.java") is part of the Actually Additions Mod for Minecraft. * It is created and owned by Ellpeck and distributed * under the Actually Additions License to be found at * http://ellpeck.de/actaddlicense/ * View the source code at https://github.com/Ellpeck/ActuallyAdditions * * © 2016 Ellpeck */ package de.ellpeck.actuallyadditions.mod.misc.special; import de.ellpeck.actuallyadditions.mod.util.StringUtil; import de.ellpeck.actuallyadditions.mod.util.Util; import net.minecraft.block.Block; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.event.RenderPlayerEvent; import net.minecraftforge.fml.common.eventhandler.EventPriority; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; import java.util.HashMap; import java.util.Map; import java.util.Properties; public class SpecialRenderInit{ public static HashMap specialList = new HashMap(); public static void init(){ new ThreadSpecialFetcher(); Util.registerEvent(new SpecialRenderInit()); } public static void parse(Properties properties){ for(String key : properties.stringPropertyNames()){ String[] values = properties.getProperty(key).split("@"); if(values != null && values.length > 0){ String itemName = values[0]; int meta; try{ meta = Integer.parseInt(values[1]); } catch(Exception e){ meta = 0; } ItemStack stack = null; //Get the Item from the String ResourceLocation resLoc = new ResourceLocation(itemName); if(Item.REGISTRY.containsKey(resLoc)){ stack = new ItemStack(Item.REGISTRY.getObject(resLoc), 1, meta); } else{ if(Block.REGISTRY.containsKey(resLoc)){ stack = new ItemStack(Block.REGISTRY.getObject(resLoc), 1, meta); } } //Add a new Special Renderer to the list if(stack != null){ specialList.put(key, new RenderSpecial(stack)); } } } } @SubscribeEvent(priority = EventPriority.HIGHEST) public void onPlayerRender(RenderPlayerEvent.Pre event){ if(!specialList.isEmpty()){ for(Map.Entry entry : specialList.entrySet()){ //Does the player have one of the names from the list? if(StringUtil.equalsToLowerCase(entry.getKey(), event.getEntityPlayer().getName())){ //Render the special Item/Block entry.getValue().render(event.getEntityPlayer(), event.getPartialRenderTick()); break; } } } } }