45 lines
1.7 KiB
Java
45 lines
1.7 KiB
Java
package org.bukkit.craftbukkit;
|
|
|
|
import com.google.common.base.Preconditions;
|
|
import net.minecraft.core.Holder;
|
|
import net.minecraft.core.IRegistry;
|
|
import net.minecraft.core.registries.Registries;
|
|
import net.minecraft.sounds.SoundEffect;
|
|
import org.bukkit.Registry;
|
|
import org.bukkit.Sound;
|
|
import org.bukkit.craftbukkit.util.CraftNamespacedKey;
|
|
|
|
public class CraftSound {
|
|
|
|
public static Sound minecraftToBukkit(SoundEffect minecraft) {
|
|
Preconditions.checkArgument(minecraft != null);
|
|
|
|
IRegistry<SoundEffect> registry = CraftRegistry.getMinecraftRegistry(Registries.SOUND_EVENT);
|
|
Sound bukkit = Registry.SOUNDS.get(CraftNamespacedKey.fromMinecraft(registry.getResourceKey(minecraft).orElseThrow().location()));
|
|
|
|
Preconditions.checkArgument(bukkit != null);
|
|
|
|
return bukkit;
|
|
}
|
|
|
|
public static SoundEffect bukkitToMinecraft(Sound bukkit) {
|
|
Preconditions.checkArgument(bukkit != null);
|
|
|
|
return CraftRegistry.getMinecraftRegistry(Registries.SOUND_EVENT)
|
|
.getOptional(CraftNamespacedKey.toMinecraft(bukkit.getKey())).orElseThrow();
|
|
}
|
|
|
|
public static Holder<SoundEffect> bukkitToMinecraftHolder(Sound bukkit) {
|
|
Preconditions.checkArgument(bukkit != null);
|
|
|
|
IRegistry<SoundEffect> registry = CraftRegistry.getMinecraftRegistry(Registries.SOUND_EVENT);
|
|
|
|
if (registry.wrapAsHolder(bukkitToMinecraft(bukkit)) instanceof Holder.c<SoundEffect> holder) {
|
|
return holder;
|
|
}
|
|
|
|
throw new IllegalArgumentException("No Reference holder found for " + bukkit
|
|
+ ", this can happen if a plugin creates its own sound effect with out properly registering it.");
|
|
}
|
|
}
|