net.minestom.server.sound.BuiltinSoundEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.sound;
import net.kyori.adventure.key.Key;
import net.minestom.server.registry.Registry;
import net.minestom.server.registry.StaticProtocolObject;
import net.minestom.server.utils.NamespaceID;
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
record BuiltinSoundEvent(NamespaceID namespace, int id) implements StaticProtocolObject, SoundEvent {
private static final Registry.Container CONTAINER = Registry.createStaticContainer(Registry.Resource.SOUNDS,
(namespace, properties) -> new BuiltinSoundEvent(NamespaceID.from(namespace), properties.getInt("id")));
static SoundEvent get(@NotNull String namespace) {
return CONTAINER.get(namespace);
}
static SoundEvent getSafe(@NotNull String namespace) {
return CONTAINER.getSafe(namespace);
}
static SoundEvent getId(int id) {
return CONTAINER.getId(id);
}
static Collection extends SoundEvent> values() {
return CONTAINER.values();
}
@Override
public String toString() {
return name();
}
@Override
public @NotNull String name() {
return StaticProtocolObject.super.name();
}
@Override
public @NotNull Key key() {
return StaticProtocolObject.super.key();
}
}