package me.libraryaddict.disguise.utilities; import java.util.HashMap; import me.libraryaddict.disguise.disguisetypes.DisguiseType; public class DisguiseValues { private static HashMap values = new HashMap(); public static DisguiseValues getDisguiseValues(DisguiseType type) { switch (type) { case DONKEY: case MULE: case UNDEAD_HORSE: case SKELETON_HORSE: type = DisguiseType.HORSE; break; case MINECART_CHEST: case MINECART_FURNACE: case MINECART_HOPPER: case MINECART_TNT: case MINECART_MOB_SPAWNER: type = DisguiseType.MINECART; break; case WITHER_SKELETON: type = DisguiseType.SKELETON; break; case ZOMBIE_VILLAGER: type = DisguiseType.ZOMBIE; break; default: break; } return values.get(type); } public static HashMap getMetaValues(DisguiseType type) { return getDisguiseValues(type).getMetaValues(); } public static Class getNmsEntityClass(DisguiseType type) { return getDisguiseValues(type).getNmsEntityClass(); } private int enumEntitySize; private HashMap metaValues = new HashMap(); private Class nmsEntityClass; public DisguiseValues(DisguiseType type, Class classType, int entitySize) { values.put(type, this); enumEntitySize = entitySize; nmsEntityClass = classType; } public int getEntitySize(double paramDouble) { double d = paramDouble - (((int) Math.floor(paramDouble)) + 0.5D); switch (enumEntitySize) { case 1: if (d < 0.0D ? d < -0.3125D : d < 0.3125D) { return (int) Math.ceil(paramDouble * 32.0D); } return (int) Math.floor(paramDouble * 32.0D); case 2: if (d < 0.0D ? d < -0.3125D : d < 0.3125D) { return (int) Math.floor(paramDouble * 32.0D); } return (int) Math.ceil(paramDouble * 32.0D); case 3: if (d > 0.0D) { return (int) Math.floor(paramDouble * 32.0D); } return (int) Math.ceil(paramDouble * 32.0D); case 4: if (d < 0.0D ? d < -0.1875D : d < 0.1875D) { return (int) Math.ceil(paramDouble * 32.0D); } return (int) Math.floor(paramDouble * 32.0D); case 5: if (d < 0.0D ? d < -0.1875D : d < 0.1875D) { return (int) Math.floor(paramDouble * 32.0D); } return (int) Math.ceil(paramDouble * 32.0D); case 6: } if (d > 0.0D) { return (int) Math.ceil(paramDouble * 32.0D); } return (int) Math.floor(paramDouble * 32.0D); } public HashMap getMetaValues() { return metaValues; } public Class getNmsEntityClass() { return nmsEntityClass; } public void setMetaValue(int no, Object value) { metaValues.put(no, value); } }