Jump to content

[1.12] [Solved] Changing capability instance values / maybe a syncing issue


Recommended Posts

Posted (edited)

I want to add 1 to the value in a capability on an item of mine, but it isn't working.

 

I have a MarbleBlock and when you throw a piece of Obsidian and a GigasCedarBranch on it and right-click the block with an empty hand, It adds one to the counter in the capability. every twenty progress points (20 clicks or progress % 20 == 0) I want it to destroy the obsidian, and if its 60 (and above, just to be safe), I want to destroy the GigasCedarBranch and give me a different item (ModItems.BLACK_ONE)

  Reveal hidden contents

 

 

On second thought, this may be a server/client syncing issue, because it will eat the obsidian but the progress on the tooltip on the branch doesn't update and the item will never turn into the other. I have no idea how to do anything with client and server stuff, so if it is the problem, I'm going to need a lot of help.

Edited by TheGoldenProof
Posted

Is your capability provider an instance of ICapabilitySerializable? When the ItemStack of the EntityItem is added to the player's inventory it's cloned and capabilities are cloned by serializing them in the old stack and deserializing them in the new stack. If your capability provider isn't an instance of INBTSerializable(which ICapabilitySerializable extends) then the capability data will be lost.

 

  On 11/3/2018 at 1:03 AM, TheGoldenProof said:

On second thought, this may be a server/client syncing issue, because it will eat the obsidian but the progress on the tooltip on the branch doesn't update and the item will never turn into the other.

Expand  

Capabilities by default are never synced between client and the server but both may have the capability attached. You need to sync the capability yourself. Either use packets or in case of an ItemStack where the item of that stack is an item provided by your mod you can override Item#getNBTShareTag to save the capability into NBT that gets sent to the client and override Item#readNBTShareTag to deserialize the capability from the NBT you've received from the server. If you are not the owner of the Item's class then you have to use packets.

Posted (edited)
  On 11/3/2018 at 1:13 AM, V0idWa1k3r said:

Is your capability provider an instance of ICapabilitySerializable?

Expand  

The capability provider is an instance of ICapabilitySerializable

  Reveal hidden contents

So does this mean I'll have to do networking?

 

  On 11/3/2018 at 1:13 AM, V0idWa1k3r said:

in case of an ItemStack where the item of that stack is an item provided by your mod you can override Item#getNBTShareTag to save the capability into NBT that gets sent to the client and override Item#readNBTShareTag to deserialize the capability from the NBT you've received from the server.

Expand  

I feel like what you're trying to say here is an easier method than using packets but I don't understand what you're saying. All the items are from my mod except the obsidian, and when you say sent and recieved how do you send and recieve?

Edited by TheGoldenProof
Posted
  On 11/3/2018 at 1:23 AM, TheGoldenProof said:

I feel like what you're trying to say here is easier than using packets but I don't understand what you're saying.

Expand  

What did you not understand? You need to override two methods in your Item class, the Item#getNBTShareTag and Item#readNBTShareTag. In Item#getNBTShareTag you need to serialize your capability to an NBT tag and append that tag to the one provided by the method. In Item#readNBTShareTag you will get the NBT the client received, grab your capability's NBT that you've appended to it and read the capability from it.

 

  On 11/3/2018 at 1:23 AM, TheGoldenProof said:

when you say sent and recieved how do you send and recieve?

Expand  

If you are using the share tag approach the game will do everything for you. You only need to (de)serialize the data in the methods I've told you about.

Posted (edited)

Sometimes I just have to type out my questions in order for my brain to figure everything out and make the connections. I think I have it figured out now, but this is what I was going to ask:

  Reveal hidden contents

 

So now I have in my GigasCedarBranch class:

  Reveal hidden contents

is this right? my serialize and deserialize are in the spoiler here

 

I'm realizing this isn't going to work. this is my capability storage class's readNBT and writeNBT and I'm pretty sure that I didn't finish whatever I was doing and I'm not sure where I got this from.

  Reveal hidden contents

 

Edited by TheGoldenProof
Posted
  On 11/3/2018 at 1:47 AM, TheGoldenProof said:

What do you mean by serialize your capability?

Expand  

https://en.wikipedia.org/wiki/Serialization

 

  On 11/3/2018 at 1:47 AM, TheGoldenProof said:

and how do I do that to an NBT tag?

Expand  

Similar to how the game does that with any other object properties - create the tag and write all fields that you want serialized into the tag. Is the field a primitive? Write it as one using one of the methods provided by NBTTagCompound. Is it an object? Create a new NBTTagCompound, do this procedure for that object. With enough depth anything can be broken down into primitives that can be serialized.

 

  On 11/3/2018 at 1:47 AM, TheGoldenProof said:

Or is there a serialize method somewhere that turns it straight into an NBT tag?

Expand  

Well your IStorage implementation should provide one. You are the one creating the implementation though.

 

  On 11/3/2018 at 1:47 AM, TheGoldenProof said:

append that tag to the one provided by which method?

Expand  
  On 11/3/2018 at 1:27 AM, V0idWa1k3r said:

In Item#getNBTShareTag you need to serialize your capability to an NBT tag and append that tag to the one provided by the method.

Expand  

 

  On 11/3/2018 at 1:47 AM, TheGoldenProof said:

How do I get what I appended to the NBT?

Expand  

The same way you would get anything else from an NBT - with the corresponding get method(NBTTagCompound#getCompoundTag for example).

 

  On 11/3/2018 at 1:47 AM, TheGoldenProof said:

And then how do I read the capability from it?

Expand  

Well, you will have all the data that your capability holds in that tag. Just read the data from the tag and set the fields in your capability to that data. That's called deserialization.

 

  On 11/3/2018 at 1:47 AM, TheGoldenProof said:

do I use the methods from my capability provider?

Expand  

You may use those methods, sure. It doesn't really matter which methods you use.

 

  On 11/3/2018 at 1:47 AM, TheGoldenProof said:

is this right?

Expand  

No. Don't send the entire stack. Use whatever the base implementation is + your capability data. 

 

  On 11/3/2018 at 1:47 AM, TheGoldenProof said:

this is my capability storage class's readNBT and writeNBT and I'm pretty sure that I didn't finish whatever I was doing and I'm not sure where I got this from.

Expand  

Well, finish creating the implementation for those methods. You need to write just enough data to be able to reconstruct your capability in the read method.

 

If you are having issues with the concept of NBT and (de)serializing it you may want to try something else, like TIleEntities for example to get the idea on how it works. 

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



×
×
  • Create New...

Important Information

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