2018-09-12 01:29:49 +02:00
|
|
|
package com.minelittlepony.unicopia;
|
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
import com.google.common.base.Strings;
|
|
|
|
|
|
|
|
import net.minecraft.client.resources.I18n;
|
|
|
|
|
|
|
|
public enum Race {
|
|
|
|
HUMAN(false, false, false),
|
|
|
|
EARTH(false, false, true),
|
|
|
|
UNICORN(true, false, false),
|
|
|
|
PEGASUS(false, true, false),
|
|
|
|
ALICORN(true, true, true),
|
|
|
|
CHANGELING(false, true, false);
|
|
|
|
|
|
|
|
private final boolean magic;
|
|
|
|
private final boolean flight;
|
|
|
|
private final boolean earth;
|
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
private final static Map<Integer, Race> raceIdMap = new HashMap<>();
|
|
|
|
static {
|
|
|
|
for (Race race : values()) {
|
|
|
|
raceIdMap.put(race.ordinal(), race);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
Race(boolean magic, boolean flight, boolean earth) {
|
|
|
|
this.magic = magic;
|
|
|
|
this.flight = flight;
|
|
|
|
this.earth = earth;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isDefault() {
|
|
|
|
return this == HUMAN;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean canFly() {
|
|
|
|
return flight;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean canCast() {
|
|
|
|
return magic;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean canUseEarth() {
|
|
|
|
return earth;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDisplayString() {
|
|
|
|
return I18n.format(getTranslationString());
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTranslationString() {
|
2018-09-12 22:37:06 +02:00
|
|
|
return String.format("unicopia.race.%s", name().toLowerCase());
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isSameAs(String s) {
|
|
|
|
return name().equalsIgnoreCase(s)
|
|
|
|
|| getTranslationString().equalsIgnoreCase(s)
|
|
|
|
|| getDisplayString().equalsIgnoreCase(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Race fromName(String s) {
|
|
|
|
if (!Strings.isNullOrEmpty(s)) {
|
|
|
|
for (Race i : values()) {
|
|
|
|
if (i.isSameAs(s)) return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2018-09-12 22:37:06 +02:00
|
|
|
return fromId(Integer.parseInt(s));
|
2018-09-12 01:29:49 +02:00
|
|
|
} catch (NumberFormatException e) { }
|
|
|
|
|
|
|
|
return HUMAN;
|
|
|
|
}
|
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
public static Race fromId(int id) {
|
|
|
|
return raceIdMap.getOrDefault(id, HUMAN);
|
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|