Unicopia/src/main/java/com/minelittlepony/unicopia/Affinity.java

61 lines
1.3 KiB
Java
Raw Normal View History

2020-09-23 17:19:28 +02:00
package com.minelittlepony.unicopia;
2020-01-16 12:35:46 +01:00
import net.minecraft.util.Formatting;
2020-01-16 12:35:46 +01:00
public enum Affinity {
GOOD(Formatting.BLUE, -1),
NEUTRAL(Formatting.WHITE, 0),
BAD(Formatting.RED, 1);
2020-01-16 12:35:46 +01:00
private final Formatting color;
private final int corruption;
2020-01-16 12:35:46 +01:00
private Affinity[] implications;
2021-03-02 14:40:37 +01:00
public static final Affinity[] VALUES = values();
2020-01-16 12:35:46 +01:00
Affinity(Formatting color, int corruption) {
this.color = color;
this.corruption = corruption;
}
2021-03-02 14:40:37 +01:00
public Formatting getColor() {
return color;
}
public String getTranslationKey() {
return this == BAD ? "curse" : "spell";
}
public int getCorruption() {
return corruption;
}
public boolean isNeutral() {
return this == NEUTRAL;
}
2020-09-23 17:19:28 +02:00
public boolean alignsWith(Affinity other) {
return isNeutral() || other.isNeutral() || this == other;
}
2020-01-16 12:35:46 +01:00
public Affinity[] getImplicators() {
if (implications != null) {
return implications;
}
if (this == NEUTRAL) {
2021-03-02 14:40:37 +01:00
implications = new Affinity[] { GOOD, BAD };
} else {
2020-01-16 12:35:46 +01:00
implications = new Affinity[] { this };
}
return implications;
}
2019-02-08 16:56:28 +01:00
2021-03-02 14:40:37 +01:00
public static Affinity of(int ordinal, Affinity fallback) {
return ordinal < 0 || ordinal >= VALUES.length ? fallback : VALUES[ordinal];
2019-02-08 16:56:28 +01:00
}
}