Jump to content

When moving an item in creative inventory, it loses its NBT!


CAS_ual_TY

Recommended Posts

Hello!

Basically, I have an item which saves a lot of NBT data to an itemstack. Now, this data can become so huge, that when updating the data to the client, the client would be disconnected because of a too big packet. Now, this information is not needed on the client, so I disabled the updating of the NBT to the client.

 

Everything works fine now, except for one thing: When moving the item around in the inventory, while in creative, it loses all stored data! I simply can not explain why or how. I have already tried using the specific nbt share tag method (commented out in the given code below), but that is also not working. I honestly have no idea anymore. Looking for help. Now before posting the code, you will see that I have added a debug output to the method which basically saves the data. This print does not get called at all, when just moving the item around.

 

public class ItemStorage extends Item
{
	public ItemStorage()
	{
		this.setMaxStackSize(1);
		this.setMaxDamage(0);
		this.setHasSubtypes(false);
	}
	
	@Override
	public ActionResult<ItemStack> onItemRightClick(World worldIn, EntityPlayer playerIn, EnumHand handIn)
	{
		playerIn.openGui(Dueling.instance, 5, worldIn, 0, 0, 0);
		//		ContainerStorage container = (ContainerStorage) playerIn.openContainer;
		
		return super.onItemRightClick(worldIn, playerIn, handIn);
	}
	
	public static final String NBT_SIZE = "LIST_SIZE";
	
	public NonNullList<ItemStack> getItems(ItemStack itemStack)
	{
		NBTTagCompound nbt = this.getSubCompound(itemStack);
		int size = nbt.getInteger(ItemStorage.NBT_SIZE);
		NonNullList<ItemStack> items = NonNullList.<ItemStack>withSize(size, ItemStack.EMPTY);
		ItemStorage.loadAllItems(nbt, items);
		return items;
	}
	
	public void setItems(ItemStack itemStack, NonNullList<ItemStack> items)
	{
		System.out.println("saving");
		
		NBTTagCompound nbt = new NBTTagCompound();
		nbt.setInteger(ItemStorage.NBT_SIZE, items.size());
		ItemStorage.saveAllItems(nbt, items);
		this.setSubCompound(itemStack, nbt);
	}
	
	public NBTTagCompound getSubCompound(ItemStack itemStack)
	{
		if(!itemStack.hasTagCompound())
		{
			itemStack.setTagCompound(new NBTTagCompound());
		}
		
		return itemStack.getTagCompound().getCompoundTag(Dueling.MOD_ID);
	}
	
	public void setSubCompound(ItemStack itemStack, NBTTagCompound tag)
	{
		if(!itemStack.hasTagCompound())
		{
			itemStack.setTagCompound(new NBTTagCompound());
		}
		
		itemStack.getTagCompound().setTag(Dueling.MOD_ID, tag);
	}
	
	@Override
	public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> items)
	{
		super.getSubItems(tab, items);
	}
	
	@Override
	public boolean getShareTag()
	{
		return false;
	}
	
	/*@Override
	public NBTTagCompound getNBTShareTag(ItemStack itemStack)
	{
		NBTTagCompound nbt = itemStack.getTagCompound();
		NBTTagCompound nbtNew = new NBTTagCompound();
		
		if(nbt != null)
		{
			for(String key : nbt.getKeySet())
			{
				if(!key.equals(Dueling.MOD_ID))
				{
					nbtNew.setTag(key, nbt.getTag(key));
				}
			}
		}
		
		itemStack.setTagCompound(nbt);
		
		return nbtNew;
	}*/
	
	public static NBTTagCompound saveAllItems(NBTTagCompound tag, NonNullList<ItemStack> list)
	{
		return ItemStorage.saveAllItems(tag, list, true);
	}
	
	public static NBTTagCompound saveAllItems(NBTTagCompound tag, NonNullList<ItemStack> list, boolean saveEmpty)
	{
		NBTTagList nbttaglist = new NBTTagList();
		
		for (int i = 0; i < list.size(); ++i)
		{
			ItemStack itemstack = list.get(i);
			
			if (!itemstack.isEmpty())
			{
				NBTTagCompound nbttagcompound = new NBTTagCompound();
				nbttagcompound.setInteger("Slot", i);
				itemstack.writeToNBT(nbttagcompound);
				nbttaglist.appendTag(nbttagcompound);
			}
		}
		
		if (!nbttaglist.hasNoTags() || saveEmpty)
		{
			tag.setTag("Items", nbttaglist);
		}
		
		return tag;
	}
	
	public static void loadAllItems(NBTTagCompound tag, NonNullList<ItemStack> list)
	{
		NBTTagList nbttaglist = tag.getTagList("Items", 10);
		
		for (int i = 0; i < nbttaglist.tagCount(); ++i)
		{
			NBTTagCompound nbttagcompound = nbttaglist.getCompoundTagAt(i);
			int j = nbttagcompound.getInteger("Slot")/* & 255 */;
			
			if (j >= 0 && j < list.size())
			{
				list.set(j, new ItemStack(nbttagcompound));
			}
		}
	}
}

 

Appreciating any help!

Link to comment
Share on other sites

Maybe try to create an Inventory from an ItemStackHandler using the Capability Item Handler
If you dont know how to use them, here are few lines for you

private ItemStackHandler inventory = new ItemStackHandler(size); // Create the inventory

// In your writeToNBT
compound.setTag("inventory", inventory.serializeNBT());

//In your readToNBT
inventory.deserializeNBT(compound.getCompoundTag("inventory"));

//Use capabilities
    @Override
    public boolean hasCapability(Capability<?> capability, @Nullable EnumFacing facing)
    {
        if (capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) return true;
        return super.hasCapability(capability,facing);
    }

    @Nullable
    @Override
    public <T> T getCapability(Capability<T> capability, @Nullable EnumFacing facing)
    {
        if (capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) return  (T)inventory;
        return super.getCapability(capability, facing);
    }

 

Link to comment
Share on other sites

Show more of your code.

1 hour ago, Riss_Crew said:

private ItemStackHandler inventory

If that is in your Item class, you are doing everything wrong.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
    • OLXTOTO adalah situs bandar togel online resmi terbesar dan terpercaya di Indonesia. Bergabunglah dengan OLXTOTO dan nikmati pengalaman bermain togel yang aman dan terjamin. Koleksi toto 4D dan togel toto terlengkap di OLXTOTO membuat para member memiliki pilihan taruhan yang lebih banyak. Sebagai situs togel terpercaya, OLXTOTO menjaga keamanan dan kenyamanan para membernya dengan sistem keamanan terbaik dan enkripsi data. Transaksi yang cepat, aman, dan terpercaya merupakan jaminan dari OLXTOTO. Nikmati layanan situs toto terbaik dari OLXTOTO dengan tampilan yang user-friendly dan mudah digunakan. Layanan pelanggan tersedia 24/7 untuk membantu para member. Bergabunglah dengan OLXTOTO sekarang untuk merasakan pengalaman bermain togel yang menyenangkan dan menguntungkan.
    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
    • BD303 merupakan salah satu situs slot mudah scatter paling populer dan digemari oleh kalangan slot online di tahun 2024 mainkan sekarang dengan kesempatan yang mudah menang jackpot jutaan rupiah.
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.