use of org.bukkit.NamespacedKey in project Denizen-For-Bukkit by DenizenScript.
the class EnchantmentHelperImpl method registerFakeEnchantment.
@Override
public org.bukkit.enchantments.Enchantment registerFakeEnchantment(EnchantmentScriptContainer.EnchantmentReference script) {
try {
EquipmentSlot[] slots = new EquipmentSlot[script.script.slots.size()];
for (int i = 0; i < slots.length; i++) {
slots[i] = EquipmentSlot.valueOf(script.script.slots.get(i).toUpperCase());
}
net.minecraft.world.item.enchantment.Enchantment nmsEnchant = new net.minecraft.world.item.enchantment.Enchantment(net.minecraft.world.item.enchantment.Enchantment.Rarity.valueOf(script.script.rarity), EnchantmentCategory.valueOf(script.script.category), slots) {
@Override
public int getMinLevel() {
return script.script.minLevel;
}
@Override
public int getMaxLevel() {
return script.script.maxLevel;
}
@Override
public int getMinCost(int level) {
return script.script.getMinCost(level);
}
@Override
public int getMaxCost(int level) {
return script.script.getMaxCost(level);
}
@Override
public int getDamageProtection(int level, DamageSource src) {
return script.script.getDamageProtection(level, src.msgId, src.getEntity() == null ? null : src.getEntity().getBukkitEntity());
}
@Override
public float getDamageBonus(int level, MobType type) {
String typeName = "UNDEFINED";
if (type == MobType.ARTHROPOD) {
typeName = "ARTHROPOD";
} else if (type == MobType.ILLAGER) {
typeName = "ILLAGER";
} else if (type == MobType.UNDEAD) {
typeName = "UNDEAD";
} else if (type == MobType.WATER) {
typeName = "WATER";
}
return script.script.getDamageBonus(level, typeName);
}
@Override
protected boolean checkCompatibility(net.minecraft.world.item.enchantment.Enchantment nmsEnchantment) {
ResourceLocation nmsKey = Registry.ENCHANTMENT.getKey(nmsEnchantment);
NamespacedKey bukkitKey = CraftNamespacedKey.fromMinecraft(nmsKey);
org.bukkit.enchantments.Enchantment bukkitEnchant = CraftEnchantment.getByKey(bukkitKey);
return script.script.isCompatible(bukkitEnchant);
}
@Override
protected String getOrCreateDescriptionId() {
return script.script.descriptionId;
}
@Override
public String getDescriptionId() {
return script.script.descriptionId;
}
@Override
public Component getFullname(int level) {
return Handler.componentToNMS(script.script.getFullName(level));
}
@Override
public boolean canEnchant(net.minecraft.world.item.ItemStack var0) {
return super.canEnchant(var0) && script.script.canEnchant(CraftItemStack.asBukkitCopy(var0));
}
@Override
public void doPostAttack(LivingEntity attacker, Entity victim, int level) {
script.script.doPostAttack(attacker.getBukkitEntity(), victim.getBukkitEntity(), level);
}
@Override
public void doPostHurt(LivingEntity victim, Entity attacker, int level) {
script.script.doPostHurt(victim.getBukkitEntity(), attacker.getBukkitEntity(), level);
}
@Override
public boolean isTreasureOnly() {
return script.script.isTreasureOnly;
}
@Override
public boolean isCurse() {
return script.script.isCurse;
}
@Override
public boolean isTradeable() {
return script.script.isTradable;
}
@Override
public boolean isDiscoverable() {
return script.script.isDiscoverable;
}
};
String enchName = script.script.id.toUpperCase();
Registry.register(Registry.ENCHANTMENT, "denizen:" + script.script.id, nmsEnchant);
CraftEnchantment ench = new CraftEnchantment(nmsEnchant) {
@Override
public String getName() {
return enchName;
}
};
ENCHANTMENTS_BY_KEY.put(ench.getKey(), ench);
ENCHANTMENTS_BY_NAME.put(enchName, ench);
return ench;
} catch (Throwable ex) {
Debug.echoError("Failed to register enchantment " + script.script.id);
Debug.echoError(ex);
return null;
}
}
use of org.bukkit.NamespacedKey in project Glowstone by GlowstoneMC.
the class GlowParticle method registerParticle.
private static GlowParticle registerParticle(String name, Particle particle) {
NamespacedKey key = NamespacedKey.minecraft(name);
GlowParticle registered = PARTICLES_BY_NAME.computeIfAbsent(key, p -> new GlowParticle(key, particle));
PARTICLES_BY_API.put(particle, registered.getName());
return registered;
}
use of org.bukkit.NamespacedKey in project Glowstone by GlowstoneMC.
the class NbtSerialization method namespacedKeyFromString.
public static NamespacedKey namespacedKeyFromString(String keyRaw) {
NamespacedKey key;
int colon = keyRaw.indexOf(':');
if (colon == -1) {
key = NamespacedKey.minecraft(keyRaw);
} else {
key = new NamespacedKey(keyRaw.substring(0, colon), keyRaw.substring(colon + 1));
}
return key;
}
use of org.bukkit.NamespacedKey in project Glowstone by GlowstoneMC.
the class AdvancementsCodec method encode.
@Override
public ByteBuf encode(ByteBuf buf, AdvancementsMessage message) throws IOException {
buf.writeBoolean(message.isClear());
ByteBufUtils.writeVarInt(buf, message.getAdvancements().size());
for (NamespacedKey key : message.getAdvancements().keySet()) {
ByteBufUtils.writeUTF8(buf, key.toString());
GlowAdvancement advancement = (GlowAdvancement) message.getAdvancements().get(key);
advancement.encode(buf);
}
ByteBufUtils.writeVarInt(buf, message.getRemoveAdvancements().size());
for (NamespacedKey key : message.getRemoveAdvancements()) {
ByteBufUtils.writeUTF8(buf, key.toString());
}
// todo: progress
ByteBufUtils.writeVarInt(buf, 0);
return buf;
}
Aggregations