ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/misc/special/SpecialRenderInit.java

101 lines
3.7 KiB
Java
Raw Normal View History

/*
2016-05-16 22:52:27 +02:00
* 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
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.misc.special;
2019-05-02 09:10:29 +02:00
import java.util.HashMap;
import java.util.Locale;
import java.util.Properties;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
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;
2016-07-03 20:57:00 +02:00
import net.minecraftforge.common.MinecraftForge;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.common.eventhandler.EventPriority;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
2019-05-02 09:10:29 +02:00
public class SpecialRenderInit {
2019-02-27 19:53:05 +01:00
public static final HashMap<String, RenderSpecial> SPECIAL_LIST = new HashMap<>();
2019-05-02 09:10:29 +02:00
public SpecialRenderInit() {
new ThreadSpecialFetcher();
2016-07-03 20:57:00 +02:00
MinecraftForge.EVENT_BUS.register(this);
}
2019-05-02 09:10:29 +02:00
public static void parse(Properties properties) {
for (String key : properties.stringPropertyNames()) {
String[] values = properties.getProperty(key).split("@");
2019-05-02 09:10:29 +02:00
if (values.length > 0) {
String itemName = values[0];
int meta;
2019-05-02 09:10:29 +02:00
try {
meta = Integer.parseInt(values[1]);
2019-05-02 09:10:29 +02:00
} catch (Exception e) {
meta = 0;
}
ResourceLocation resLoc = new ResourceLocation(itemName);
ItemStack stack = findItem(resLoc, meta);
//TODO Remove this block once the transition to 1.11 is done and the special people stuff file has been converted to snake_case
2019-05-02 09:10:29 +02:00
if (!StackUtil.isValid(stack)) {
String convertedItemName = "";
2019-05-02 09:10:29 +02:00
for (char c : itemName.toCharArray()) {
if (Character.isUpperCase(c)) {
convertedItemName += "_";
convertedItemName += Character.toLowerCase(c);
2019-05-02 09:10:29 +02:00
} else {
convertedItemName += c;
}
}
stack = findItem(new ResourceLocation(convertedItemName), meta);
}
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(stack)) {
2016-11-27 13:29:58 +01:00
SPECIAL_LIST.put(key.toLowerCase(Locale.ROOT), new RenderSpecial(stack));
}
}
}
}
2019-05-02 09:10:29 +02:00
private static ItemStack findItem(ResourceLocation resLoc, int meta) {
if (Item.REGISTRY.containsKey(resLoc)) {
Item item = Item.REGISTRY.getObject(resLoc);
2019-05-02 09:10:29 +02:00
if (item != null) { return new ItemStack(item, 1, meta); }
} else if (Block.REGISTRY.containsKey(resLoc)) {
Block block = Block.REGISTRY.getObject(resLoc);
2019-05-02 09:10:29 +02:00
if (block != null) { return new ItemStack(block, 1, meta); }
}
2017-11-02 22:49:53 +01:00
return StackUtil.getEmpty();
}
2015-12-01 19:48:09 +01:00
@SubscribeEvent(priority = EventPriority.HIGHEST)
2019-05-02 09:10:29 +02:00
public void onPlayerRender(RenderPlayerEvent.Pre event) {
if (event.getEntityPlayer() != null) {
2016-11-27 13:29:58 +01:00
String name = event.getEntityPlayer().getName();
2019-05-02 09:10:29 +02:00
if (name != null) {
2016-11-27 13:29:58 +01:00
String lower = name.toLowerCase(Locale.ROOT);
2019-05-02 09:10:29 +02:00
if (SPECIAL_LIST.containsKey(lower)) {
2016-11-27 13:29:58 +01:00
RenderSpecial render = SPECIAL_LIST.get(lower);
2019-05-02 09:10:29 +02:00
if (render != null) {
2016-11-27 13:29:58 +01:00
render.render(event.getEntityPlayer(), event.getPartialRenderTick());
2016-05-10 18:48:35 +02:00
}
2015-12-01 19:48:09 +01:00
}
}
}
}
}