package com.brohoof.minelittlepony; import java.awt.image.BufferedImage; import java.util.Map; import com.google.common.collect.ImmutableBiMap; public class PonyData { private static final Map RACE_COLORS = ImmutableBiMap. builder() .put(0xf9b131, PonyRace.EARTH) .put(0xd19fe4, PonyRace.UNICORN) .put(0x88caf0, PonyRace.PEGASUS) .put(0xfef9fc, PonyRace.ALICORN) .put(0xd0cccf, PonyRace.ZEBRA) .put(0x282b29, PonyRace.CHANGELING) .build(); private static final Map TAIL_COLORS = ImmutableBiMap. builder() .put(0x425844, TailLengths.STUB) .put(0xd19fe4, TailLengths.QUARTER) .put(0x534b76, TailLengths.HALF) .put(0x8a6b7f, TailLengths.THREE_QUARTERS).build(); private static final Map SIZE_COLORS = ImmutableBiMap. builder() .put(0xffbe53, PonySize.FOAL) .put(0xce3254, PonySize.LARGE) .put(0x534b76, PonySize.TALL) .build(); private PonyRace race; private TailLengths tailSize = TailLengths.FULL; private PonyGender gender = PonyGender.MARE; private PonySize size = PonySize.NORMAL; private int glowColor = 0x4444aa; private int textureWidth; private int textureHeight; public PonyRace getRace() { return race; } public void setRace(PonyRace race) { this.race = race; } public TailLengths getTail() { return tailSize; } public void setTail(TailLengths tailSize) { this.tailSize = tailSize; } public PonyGender getGender() { return gender; } public void setGender(PonyGender gender) { this.gender = gender; } public PonySize getSize() { return MineLittlePony.getConfig().sizes ? size : PonySize.NORMAL; } public void setSize(PonySize size) { this.size = size; } public int getGlowColor() { return glowColor; } public boolean hasMagic() { return this.race != null && this.race.hasHorn() && this.glowColor != 0; } public void setGlowColor(int glowColor) { this.glowColor = glowColor & 0xffffff; } public int getTextureWidth() { return textureWidth; } public int getTextureHeight() { return textureHeight; } public static PonyData parse(BufferedImage image) { PonyData data = new PonyData(); int race = TriggerPixels.RACE.readColor(image); data.race = RACE_COLORS.get(race); int tail = TriggerPixels.TAIL.readColor(image); if (TAIL_COLORS.containsKey(tail)) data.tailSize = TAIL_COLORS.get(tail); int gender = TriggerPixels.GENDER.readColor(image); if (gender == 0xffffff) data.gender = PonyGender.STALLION; int size = TriggerPixels.SIZE.readColor(image); if (SIZE_COLORS.containsKey(size)) data.size = SIZE_COLORS.get(size); int color = TriggerPixels.GLOW.readColor(image); if (color != 0x000000) data.glowColor = color; data.textureWidth = image.getWidth(); data.textureHeight = image.getHeight(); return data; } private enum TriggerPixels { RACE(0, 0), TAIL(1, 0), GENDER(2, 0), SIZE(3, 0), GLOW(0, 1); private int x, y; private TriggerPixels(int x, int y) { this.x = x; this.y = y; } private int readColor(BufferedImage image) { return image.getRGB(x, y) & 0xffffff; } } }