本文整理汇总了Java中net.minecraft.nbt.NBTTagCompound.hasNoTags方法的典型用法代码示例。如果您正苦于以下问题:Java NBTTagCompound.hasNoTags方法的具体用法?Java NBTTagCompound.hasNoTags怎么用?Java NBTTagCompound.hasNoTags使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.nbt.NBTTagCompound
的用法示例。
在下文中一共展示了NBTTagCompound.hasNoTags方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readEntityFromNBT
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
/**
* (abstract) Protected helper method to read subclass entity data from NBT.
*/
public void readEntityFromNBT(NBTTagCompound tagCompund)
{
NBTTagCompound nbttagcompound = tagCompund.getCompoundTag("Item");
if (nbttagcompound != null && !nbttagcompound.hasNoTags())
{
this.setDisplayedItemWithUpdate(ItemStack.loadItemStackFromNBT(nbttagcompound), false);
this.func_174865_a(tagCompund.getByte("ItemRotation"), false);
if (tagCompund.hasKey("ItemDropChance", 99))
{
this.itemDropChance = tagCompund.getFloat("ItemDropChance");
}
if (tagCompund.hasKey("Direction"))
{
this.func_174865_a(this.getRotation() * 2, false);
}
}
super.readEntityFromNBT(tagCompund);
}
示例2: clearCustomName
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
/**
* Clear any custom name set for this ItemStack
*/
public void clearCustomName()
{
if (this.stackTagCompound != null)
{
if (this.stackTagCompound.hasKey("display", 10))
{
NBTTagCompound nbttagcompound = this.stackTagCompound.getCompoundTag("display");
nbttagcompound.removeTag("Name");
if (nbttagcompound.hasNoTags())
{
this.stackTagCompound.removeTag("display");
if (this.stackTagCompound.hasNoTags())
{
this.setTagCompound((NBTTagCompound)null);
}
}
}
}
}
示例3: writeStatsToNBT
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
public void writeStatsToNBT(NBTTagCompound tagcompound)
{
NBTTagCompound nbttagcompound = new NBTTagCompound();
for (CommandResultStats.Type commandresultstats$type : CommandResultStats.Type.values())
{
String s = this.field_179675_c[commandresultstats$type.getTypeID()];
String s1 = this.field_179673_d[commandresultstats$type.getTypeID()];
if (s != null && s1 != null)
{
nbttagcompound.setString(commandresultstats$type.getTypeName() + "Name", s);
nbttagcompound.setString(commandresultstats$type.getTypeName() + "Objective", s1);
}
}
if (!nbttagcompound.hasNoTags())
{
tagcompound.setTag("CommandStats", nbttagcompound);
}
}
示例4: writeStatsToNBT
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
public void writeStatsToNBT(NBTTagCompound tagcompound)
{
NBTTagCompound nbttagcompound = new NBTTagCompound();
for (CommandResultStats.Type commandresultstats$type : CommandResultStats.Type.values())
{
String s = this.entitiesID[commandresultstats$type.getTypeID()];
String s1 = this.objectives[commandresultstats$type.getTypeID()];
if (s != null && s1 != null)
{
nbttagcompound.setString(commandresultstats$type.getTypeName() + "Name", s);
nbttagcompound.setString(commandresultstats$type.getTypeName() + "Objective", s1);
}
}
if (!nbttagcompound.hasNoTags())
{
tagcompound.setTag("CommandStats", nbttagcompound);
}
}
示例5: writeToNBT
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
/**
* Write the stack fields to a NBT object. Return the new NBT object.
*/
public NBTTagCompound writeToNBT(NBTTagCompound nbt)
{
ResourceLocation resourcelocation = (ResourceLocation)Item.REGISTRY.getNameForObject(this.item);
nbt.setString("id", resourcelocation == null ? "minecraft:air" : resourcelocation.toString());
nbt.setByte("Count", (byte)this.stackSize);
nbt.setShort("Damage", (short)this.itemDamage);
if (this.stackTagCompound != null)
{
nbt.setTag("tag", this.stackTagCompound);
}
if (this.capabilities != null)
{
NBTTagCompound cnbt = this.capabilities.serializeNBT();
if (!cnbt.hasNoTags()) nbt.setTag("ForgeCaps", cnbt);
}
return nbt;
}
示例6: readEntityFromNBT
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
/**
* (abstract) Protected helper method to read subclass entity data from NBT.
*/
public void readEntityFromNBT(NBTTagCompound compound)
{
NBTTagCompound nbttagcompound = compound.getCompoundTag("Item");
if (nbttagcompound != null && !nbttagcompound.hasNoTags())
{
this.setDisplayedItemWithUpdate(new ItemStack(nbttagcompound), false);
this.setRotation(compound.getByte("ItemRotation"), false);
if (compound.hasKey("ItemDropChance", 99))
{
this.itemDropChance = compound.getFloat("ItemDropChance");
}
}
super.readEntityFromNBT(compound);
}
示例7: clearCustomName
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
/**
* Clear any custom name set for this ItemStack
*/
public void clearCustomName()
{
NBTTagCompound nbttagcompound = this.getSubCompound("display");
if (nbttagcompound != null)
{
nbttagcompound.removeTag("Name");
if (nbttagcompound.hasNoTags())
{
this.func_190919_e("display");
}
}
if (this.stackTagCompound != null && this.stackTagCompound.hasNoTags())
{
this.stackTagCompound = null;
}
}
示例8: addPotionToItemStack
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
public static ItemStack addPotionToItemStack(ItemStack itemIn, PotionType potionIn)
{
ResourceLocation resourcelocation = (ResourceLocation)PotionType.REGISTRY.getNameForObject(potionIn);
if (potionIn == PotionTypes.EMPTY)
{
if (itemIn.hasTagCompound())
{
NBTTagCompound nbttagcompound = itemIn.getTagCompound();
nbttagcompound.removeTag("Potion");
if (nbttagcompound.hasNoTags())
{
itemIn.setTagCompound((NBTTagCompound)null);
}
}
}
else
{
NBTTagCompound nbttagcompound1 = itemIn.hasTagCompound() ? itemIn.getTagCompound() : new NBTTagCompound();
nbttagcompound1.setString("Potion", resourcelocation.toString());
itemIn.setTagCompound(nbttagcompound1);
}
return itemIn;
}
示例9: saveStackNBT
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
public static void saveStackNBT(ItemStack stack, NBTTagCompound nbt)
{
if (!stack.hasTagCompound() && !nbt.hasNoTags())
{
stack.setTagCompound(nbt);
}
}
示例10: getItem
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
public ItemStack getItem(World worldIn, BlockPos pos, IBlockState state)
{
ItemStack itemstack = super.getItem(worldIn, pos, state);
TileEntityShulkerBox tileentityshulkerbox = (TileEntityShulkerBox)worldIn.getTileEntity(pos);
NBTTagCompound nbttagcompound = tileentityshulkerbox.func_190580_f(new NBTTagCompound());
if (!nbttagcompound.hasNoTags())
{
itemstack.setTagInfo("BlockEntityTag", nbttagcompound);
}
return itemstack;
}
示例11: fixTagCompound
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
public NBTTagCompound fixTagCompound(NBTTagCompound compound)
{
if ("minecraft:shulker_box".equals(compound.getString("id")) && compound.hasKey("tag", 10))
{
NBTTagCompound nbttagcompound = compound.getCompoundTag("tag");
if (nbttagcompound.hasKey("BlockEntityTag", 10))
{
NBTTagCompound nbttagcompound1 = nbttagcompound.getCompoundTag("BlockEntityTag");
if (nbttagcompound1.getTagList("Items", 10).hasNoTags())
{
nbttagcompound1.removeTag("Items");
}
int i = nbttagcompound1.getInteger("Color");
nbttagcompound1.removeTag("Color");
if (nbttagcompound1.hasNoTags())
{
nbttagcompound.removeTag("BlockEntityTag");
}
if (nbttagcompound.hasNoTags())
{
compound.removeTag("tag");
}
compound.setString("id", field_191278_a[i % 16]);
}
}
return compound;
}
示例12: fixTagCompound
import net.minecraft.nbt.NBTTagCompound; //导入方法依赖的package包/类
public NBTTagCompound fixTagCompound(NBTTagCompound compound)
{
if ("minecraft:banner".equals(compound.getString("id")) && compound.hasKey("tag", 10))
{
NBTTagCompound nbttagcompound = compound.getCompoundTag("tag");
if (nbttagcompound.hasKey("BlockEntityTag", 10))
{
NBTTagCompound nbttagcompound1 = nbttagcompound.getCompoundTag("BlockEntityTag");
if (nbttagcompound1.hasKey("Base", 99))
{
compound.setShort("Damage", (short)(nbttagcompound1.getShort("Base") & 15));
if (nbttagcompound.hasKey("display", 10))
{
NBTTagCompound nbttagcompound2 = nbttagcompound.getCompoundTag("display");
if (nbttagcompound2.hasKey("Lore", 9))
{
NBTTagList nbttaglist = nbttagcompound2.getTagList("Lore", 8);
if (nbttaglist.tagCount() == 1 && "(+NBT)".equals(nbttaglist.getStringTagAt(0)))
{
return compound;
}
}
}
nbttagcompound1.removeTag("Base");
if (nbttagcompound1.hasNoTags())
{
nbttagcompound.removeTag("BlockEntityTag");
}
if (nbttagcompound.hasNoTags())
{
compound.removeTag("tag");
}
}
}
}
return compound;
}