Spaces:
Build error
Build error
File size: 1,229 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
package net.minecraft.client;
import java.util.function.IntFunction;
import net.minecraft.network.chat.Component;
import net.minecraft.util.ByIdMap;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public enum NarratorStatus {
OFF(0, "options.narrator.off"),
ALL(1, "options.narrator.all"),
CHAT(2, "options.narrator.chat"),
SYSTEM(3, "options.narrator.system");
private static final IntFunction<NarratorStatus> BY_ID = ByIdMap.continuous(NarratorStatus::getId, values(), ByIdMap.OutOfBoundsStrategy.WRAP);
private final int id;
private final Component name;
private NarratorStatus(final int p_91616_, final String p_91617_) {
this.id = p_91616_;
this.name = Component.translatable(p_91617_);
}
public int getId() {
return this.id;
}
public Component getName() {
return this.name;
}
public static NarratorStatus byId(int p_91620_) {
return BY_ID.apply(p_91620_);
}
public boolean shouldNarrateChat() {
return this == ALL || this == CHAT;
}
public boolean shouldNarrateSystem() {
return this == ALL || this == SYSTEM;
}
} |