top.hendrixshen.magiclib.impl.i18n.minecraft.translation.HookTranslationManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magiclib-minecraft-api-1.19.3-fabric Show documentation
Show all versions of magiclib-minecraft-api-1.19.3-fabric Show documentation
Unleash magic into Minecraft, infuse souls, ascend to heaven!
package top.hendrixshen.magiclib.impl.i18n.minecraft.translation;
import com.google.common.collect.ImmutableSet;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.NoArgsConstructor;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Unmodifiable;
import top.hendrixshen.magiclib.SharedConstants;
import java.util.HashSet;
import java.util.Set;
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class HookTranslationManager {
@Getter(lazy = true)
private static final HookTranslationManager instance = new HookTranslationManager();
private final Set namespaces = new HashSet<>();
public void registerNamespace(String namespace) {
if (!SharedConstants.getValidLangNamespace().matcher(namespace).matches()) {
throw new RuntimeException("Invalid namespace: " + namespace);
}
this.namespaces.add(namespace);
}
@Unmodifiable
public ImmutableSet getNamespaces() {
return ImmutableSet.copyOf(this.namespaces);
}
public boolean isNamespaceRegistered(@NotNull String path) {
return this.namespaces.stream().anyMatch(path::startsWith);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy