mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-02 16:58:00 +01:00
122 lines
3.4 KiB
Java
122 lines
3.4 KiB
Java
package com.minelittlepony;
|
|
|
|
import com.google.common.collect.ImmutableBiMap;
|
|
|
|
import java.awt.image.BufferedImage;
|
|
import java.util.Map;
|
|
|
|
public class PonyData implements IPonyData {
|
|
|
|
private static final Map<Integer, PonyRace> RACE_COLORS = ImmutableBiMap.<Integer, PonyRace>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<Integer, TailLengths> TAIL_COLORS = ImmutableBiMap.<Integer, TailLengths>builder()
|
|
.put(0x425844, TailLengths.STUB)
|
|
.put(0xd19fe4, TailLengths.QUARTER)
|
|
.put(0x534b76, TailLengths.HALF)
|
|
.put(0x8a6b7f, TailLengths.THREE_QUARTERS).build();
|
|
private static final Map<Integer, PonySize> SIZE_COLORS = ImmutableBiMap.<Integer, PonySize>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;
|
|
|
|
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;
|
|
}
|
|
|
|
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;
|
|
|
|
return data;
|
|
}
|
|
|
|
private enum TriggerPixels {
|
|
RACE(0, 0),
|
|
TAIL(1, 0),
|
|
GENDER(2, 0),
|
|
SIZE(3, 0),
|
|
GLOW(0, 1);
|
|
|
|
private int x, y;
|
|
|
|
TriggerPixels(int x, int y) {
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
|
|
private int readColor(BufferedImage image) {
|
|
return image.getRGB(x, y) & 0xffffff;
|
|
}
|
|
}
|
|
}
|