mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-02-07 02:26:43 +01:00
43 lines
934 B
Java
43 lines
934 B
Java
package emu.grasscutter.game.props;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import java.util.stream.Stream;
|
|
|
|
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
|
|
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
|
|
|
|
public enum LifeState {
|
|
LIFE_NONE(0),
|
|
LIFE_ALIVE(1),
|
|
LIFE_DEAD(2),
|
|
LIFE_REVIVE(3);
|
|
|
|
private final int value;
|
|
private static final Int2ObjectMap<LifeState> map = new Int2ObjectOpenHashMap<>();
|
|
private static final Map<String, LifeState> stringMap = new HashMap<>();
|
|
|
|
static {
|
|
Stream.of(values()).forEach(e -> {
|
|
map.put(e.getValue(), e);
|
|
stringMap.put(e.name(), e);
|
|
});
|
|
}
|
|
|
|
private LifeState(int value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public int getValue() {
|
|
return value;
|
|
}
|
|
|
|
public static LifeState getTypeByValue(int value) {
|
|
return map.getOrDefault(value, LIFE_NONE);
|
|
}
|
|
|
|
public static LifeState getTypeByName(String name) {
|
|
return stringMap.getOrDefault(name, LIFE_NONE);
|
|
}
|
|
}
|