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

92 lines
2 KiB
Java
Raw Normal View History

2018-09-12 01:29:49 +02:00
package com.minelittlepony.unicopia;
import java.util.HashMap;
import java.util.Map;
2018-09-12 01:29:49 +02:00
import com.google.common.base.Strings;
public enum Race {
/**
* The default, unset race.
* This is used if there are no other races.
*/
2018-09-12 01:29:49 +02:00
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;
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;
}
2019-02-09 13:26:03 +01:00
public boolean isOp() {
return this == ALICORN;
}
2018-09-12 01:29:49 +02:00
public boolean canFly() {
return flight;
}
public boolean canCast() {
return magic;
}
public boolean canUseEarth() {
return earth;
}
public boolean canInteractWithClouds() {
return canFly() && this != CHANGELING;
}
2019-01-31 16:21:14 +01:00
public String getTranslationKey() {
return String.format("unicopia.race.%s", name().toLowerCase());
2018-09-12 01:29:49 +02:00
}
2019-02-09 13:26:03 +01:00
public boolean equals(String s) {
2018-09-12 01:29:49 +02:00
return name().equalsIgnoreCase(s)
2019-01-31 16:21:14 +01:00
|| getTranslationKey().equalsIgnoreCase(s);
2018-09-12 01:29:49 +02:00
}
public static Race fromName(String s, Race def) {
2018-09-12 01:29:49 +02:00
if (!Strings.isNullOrEmpty(s)) {
for (Race i : values()) {
2019-02-09 13:26:03 +01:00
if (i.equals(s)) return i;
2018-09-12 01:29:49 +02:00
}
}
try {
return fromId(Integer.parseInt(s));
2018-09-12 01:29:49 +02:00
} catch (NumberFormatException e) { }
return def;
2018-09-12 01:29:49 +02:00
}
public static Race fromName(String name) {
return fromName(name, EARTH);
}
public static Race fromId(int id) {
return raceIdMap.getOrDefault(id, EARTH);
}
2018-09-12 01:29:49 +02:00
}