2015-12-09 04:14:42 +01:00
|
|
|
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<Integer, PonyRace> RACE_COLORS = ImmutableBiMap.<Integer, PonyRace> builder()
|
2015-12-12 05:17:04 +01:00
|
|
|
.put(0xf9b131, PonyRace.EARTH)
|
|
|
|
.put(0xd19fe4, PonyRace.UNICORN)
|
|
|
|
.put(0x88caf0, PonyRace.PEGASUS)
|
|
|
|
.put(0xfef9fc, PonyRace.ALICORN)
|
|
|
|
.put(0xd0cccf, PonyRace.ZEBRA)
|
|
|
|
.put(0x282b29, PonyRace.CHANGELING)
|
2015-12-09 04:14:42 +01:00
|
|
|
.build();
|
|
|
|
private static final Map<Integer, TailLengths> TAIL_COLORS = ImmutableBiMap.<Integer, TailLengths> builder()
|
2015-12-12 05:17:04 +01:00
|
|
|
.put(0x425844, TailLengths.STUB)
|
|
|
|
.put(0xd19fe4, TailLengths.QUARTER)
|
|
|
|
.put(0x534b76, TailLengths.HALF)
|
|
|
|
.put(0x8a6b7f, TailLengths.THREE_QUARTERS).build();
|
2015-12-09 04:14:42 +01:00
|
|
|
private static final Map<Integer, PonySize> SIZE_COLORS = ImmutableBiMap.<Integer, PonySize> builder()
|
2015-12-12 05:17:04 +01:00
|
|
|
.put(0xffbe53, PonySize.FOAL)
|
|
|
|
.put(0xce3254, PonySize.LARGE)
|
2015-12-16 05:29:47 +01:00
|
|
|
.put(0x534b76, PonySize.TALL)
|
2015-12-09 04:14:42 +01:00
|
|
|
.build();
|
|
|
|
|
|
|
|
private PonyRace race = PonyRace.EARTH;
|
|
|
|
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() {
|
2016-01-26 09:16:11 +01:00
|
|
|
return MineLittlePony.getConfig().sizes ? size : PonySize.NORMAL;
|
2015-12-09 04:14:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setSize(PonySize size) {
|
|
|
|
this.size = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getGlowColor() {
|
|
|
|
return glowColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setGlowColor(int glowColor) {
|
|
|
|
this.glowColor = glowColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
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),
|
2015-12-12 05:17:04 +01:00
|
|
|
TAIL(1, 0),
|
|
|
|
GENDER(2, 0),
|
|
|
|
SIZE(3, 0),
|
|
|
|
GLOW(0, 1);
|
2015-12-09 04:14:42 +01:00
|
|
|
|
|
|
|
private int x, y;
|
|
|
|
|
|
|
|
private TriggerPixels(int x, int y) {
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
private int readColor(BufferedImage image) {
|
2015-12-12 05:17:04 +01:00
|
|
|
return image.getRGB(x, y) & 0xffffff;
|
2015-12-09 04:14:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|