package com.brohoof.minelittlepony; import java.awt.image.BufferedImage; import java.io.IOException; import java.util.Map; import javax.imageio.ImageIO; import com.brohoof.minelittlepony.model.PMAPI; import com.brohoof.minelittlepony.model.PlayerModel; import com.brohoof.minelittlepony.util.MineLPLogger; import com.brohoof.minelittlepony.util.PonyFields; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import com.mojang.authlib.GameProfile; import com.mumfrey.webprefs.WebPreferencesManager; import com.mumfrey.webprefs.interfaces.IWebPreferences; import com.voxelmodpack.hdskins.HDSkinManager; import net.minecraft.client.Minecraft; import net.minecraft.client.entity.AbstractClientPlayer; import net.minecraft.client.renderer.ThreadDownloadImageData; import net.minecraft.client.renderer.texture.ITextureObject; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.util.ResourceLocation; public class Pony { private static PonyConfig config = MineLittlePony.getConfig(); private static int ponyCount = 0; private final int ponyId = ponyCount++; public GameProfile profile; public ResourceLocation textureResourceLocation; public PonyData metadata = new PonyData(); private int skinCheckCount; private boolean skinChecked; public Pony(AbstractClientPlayer player) { this.profile = player.getGameProfile(); this.textureResourceLocation = player.getLocationSkin(); MineLPLogger.debug("+ Initialising new pony #%d for player %s (%s) with resource location %s.", this.ponyId, player.getName(), player.getUniqueID(), this.textureResourceLocation); this.checkSkin(this.textureResourceLocation); this.checkMeta(profile); } public Pony(ResourceLocation aTextureResourceLocation) { this.textureResourceLocation = aTextureResourceLocation; MineLPLogger.debug("+ Initialising new pony #%d with resource location %s.", this.ponyId, this.textureResourceLocation); this.checkSkin(this.textureResourceLocation); } public void invalidateSkinCheck() { this.skinChecked = false; } public void checkSkin() { if (!this.skinChecked) { this.checkSkin(this.textureResourceLocation); this.checkMeta(this.profile); } } public void checkSkin(ResourceLocation textureResourceLocation) { BufferedImage skinImage = this.getBufferedImage(textureResourceLocation); if (skinImage != null) { this.checkSkin(skinImage); } } private void checkMeta(GameProfile profile) { if (profile == null) return; IWebPreferences prefs = WebPreferencesManager.getDefault().getPreferences(profile); String json = prefs.get(HDSkinManager.METADATA_KEY, "{}"); Map data = new Gson().fromJson(json, new TypeToken>() {}.getType()); if (data.containsKey("race")) metadata.setRace(PonyRace.valueOf(data.get("race"))); if (data.containsKey("tail")) metadata.setTail(TailLengths.valueOf(data.get("tail"))); if (data.containsKey("gender")) metadata.setGender(PonyGender.valueOf(data.get("gender"))); if (data.containsKey("size")) metadata.setSize(PonySize.valueOf(data.get("size"))); if (data.containsKey("magic")) metadata.setGlowColor(Integer.parseInt(data.get("magic"))); } public BufferedImage getBufferedImage(ResourceLocation textureResourceLocation) { BufferedImage skinImage = null; try { skinImage = ImageIO.read(Minecraft.getMinecraft().getResourceManager().getResource(textureResourceLocation).getInputStream()); MineLPLogger.debug("Obtained skin from resource location %s", textureResourceLocation); // this.checkSkin(skinImage); } catch (IOException var6) { Exception e = var6; try { ITextureObject e2 = Minecraft.getMinecraft().getTextureManager().getTexture(textureResourceLocation); if (e2 instanceof ThreadDownloadImageData) { skinImage = PonyFields.downloadedImage.get((ThreadDownloadImageData) e2); if (skinImage != null) { MineLPLogger.debug(e, "Successfully reflected downloadedImage from texture object"); // this.checkSkin(skinImage); } } } catch (Exception var5) { } } return skinImage; } public void checkSkin(BufferedImage bufferedimage) { MineLPLogger.debug("\tStart skin check #%d for pony #%d with image %s.", ++this.skinCheckCount, this.ponyId); metadata = PonyData.parse(bufferedimage); this.skinChecked = true; } public boolean isPegasusFlying(EntityPlayer player) { if (this.metadata.getRace() == null || !this.metadata.getRace().hasWings()) { return false; } return player.capabilities.isFlying || !(player.onGround || player.isRiding() || player.isOnLadder() || player.isInWater() || player.isElytraFlying()); } public PlayerModel getModel(boolean ignorePony, boolean smallArms) { boolean is_a_pony = false; switch (ignorePony ? PonyLevel.BOTH : config.getPonyLevel()) { case HUMANS: is_a_pony = false; break; case BOTH: is_a_pony = metadata.getRace() != null; break; case PONIES: is_a_pony = true; } PlayerModel model; if (is_a_pony) { model = smallArms ? PMAPI.ponySmall : PMAPI.pony; } else { model = smallArms ? PMAPI.humanSmall : PMAPI.human; } return model; } public ResourceLocation getTextureResourceLocation() { return this.textureResourceLocation; } public GameProfile getProfile() { return profile; } }