mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-03-25 05:00:55 +01:00
101 lines
2.8 KiB
Java
101 lines
2.8 KiB
Java
package com.minelittlepony.pony.meta;
|
|
|
|
import net.minecraft.client.texture.NativeImage;
|
|
|
|
import com.minelittlepony.pony.ITriggerPixelMapped;
|
|
import com.minelittlepony.util.Color;
|
|
|
|
/**
|
|
* Individual trigger pixels for a pony skin.
|
|
*
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
public enum TriggerPixels {
|
|
RACE(Race.HUMAN, Channel.ALL, 0, 0),
|
|
TAIL(TailLength.FULL, Channel.ALL, 1, 0),
|
|
GENDER(Gender.MARE, Channel.ALL, 2, 0),
|
|
SIZE(Size.NORMAL, Channel.ALL, 3, 0),
|
|
GLOW(null, Channel.RAW, 0, 1),
|
|
WEARABLES(Wearable.NONE, Channel.RAW, 1, 1);
|
|
|
|
private int x;
|
|
private int y;
|
|
|
|
private Channel channel;
|
|
|
|
ITriggerPixelMapped<?> def;
|
|
|
|
TriggerPixels(ITriggerPixelMapped<?> def, Channel channel, int x, int y) {
|
|
this.def = def;
|
|
this.channel = channel;
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
|
|
/**
|
|
* Reads this trigger pixel's value and returns the raw colour.
|
|
*
|
|
* @param image Image to read
|
|
*/
|
|
public int readColor(NativeImage image) {
|
|
return channel.readValue(x, y, image);
|
|
}
|
|
|
|
/**
|
|
* Reads this trigger pixel's value and parses it to an Enum instance.
|
|
*
|
|
* @param image Image to read
|
|
*/
|
|
public <T extends Enum<T> & ITriggerPixelMapped<T>> T readValue(NativeImage image) {
|
|
if (Channel.ALPHA.readValue(x, y, image) < 255) {
|
|
return (T)def;
|
|
}
|
|
|
|
return ITriggerPixelMapped.getByTriggerPixel((T)def, readColor(image));
|
|
}
|
|
|
|
public <T extends Enum<T> & ITriggerPixelMapped<T>> boolean[] readFlags(NativeImage image) {
|
|
boolean[] out = new boolean[def.getClass().getEnumConstants().length];
|
|
readFlags(out, image);
|
|
return out;
|
|
}
|
|
|
|
public <T extends Enum<T> & ITriggerPixelMapped<T>> void readFlags(boolean[] out, NativeImage image) {
|
|
readFlag(out, Channel.RED, image);
|
|
readFlag(out, Channel.GREEN, image);
|
|
readFlag(out, Channel.BLUE, image);
|
|
}
|
|
|
|
private <T extends Enum<T> & ITriggerPixelMapped<T>> void readFlag(boolean[] out, Channel channel, NativeImage image) {
|
|
|
|
if (Channel.ALPHA.readValue(x, y, image) < 255) {
|
|
return;
|
|
}
|
|
|
|
T value = ITriggerPixelMapped.getByTriggerPixel((T)def, channel.readValue(x, y, image));
|
|
|
|
out[value.ordinal()] |= value != def;
|
|
}
|
|
|
|
enum Channel {
|
|
RAW (0xFFFFFFFF, 0),
|
|
ALL (0x00FFFFFF, 0),
|
|
ALPHA(0x000000FF, 24),
|
|
RED (0x000000FF, 0),
|
|
GREEN(0x000000FF, 8),
|
|
BLUE (0x000000FF, 16);
|
|
|
|
private int mask;
|
|
private int offset;
|
|
|
|
Channel(int mask, int offset) {
|
|
this.mask = mask;
|
|
this.offset = offset;
|
|
}
|
|
|
|
public int readValue(int x, int y, NativeImage image) {
|
|
/*getPixelABGR*/
|
|
return (Color.abgrToArgb(image.getPixelRgba(x, y)) >> offset) & mask;
|
|
}
|
|
}
|
|
}
|