Changes

Copy Capabilities/Attaching to MC1.18 archive
As mentioned, attaching capabilities to objects that you have not created can be done using <code>AttachCapabilitiesEvent</code>. The same event is used for all objects that can provide capabilities. <code>AttachCapabilitiesEvent</code> has five valid generic types providing the following events:
* <code><nowiki>AttachCapabilitiesEvent<Entity></nowiki></code>: Fires only for entities.
* <code><nowiki>AttachCapabilitiesEvent<BlockEntity></nowiki></code>: Fires only for block entities.
* <code><nowiki>AttachCapabilitiesEvent<ItemStack></nowiki></code>: Fires only for item stacks.
* <code><nowiki>AttachCapabilitiesEvent<Level></nowiki></code>: Fires only for levels.
* <code><nowiki>AttachCapabilitiesEvent<LevelChunk></nowiki></code>: Fires only for level chunks.

The generic type cannot be more specific than the above types. For example: If you want to attach capabilities to <code>Player</code>, you have to subscribe to the <code><nowiki>AttachCapabilitiesEvent<Entity></nowiki></code>, and then determine that the provided object is an <code>Player</code> before attaching the capability.

In all cases, the event has a method <code>addCapability</code>, which can be used to attach capabilities to the target object. Instead of adding capabilities themselves to the list, you add capability providers, which have the chance to return capabilities only from certain sides. While the provider only needs to implement <code>ICapabilityProvider</code>, if the capability needs to store data persistently it is possible to implement <code><nowiki>ICapabilitySerializable<T extends Tag></nowiki></code> which, on top of returning the capabilities, will allow providing NBT save/load functions.

For information on how to implement <code>ICapabilityProvider</code>, refer to the [[Capabilities/1.18|a Capability]] section.

== Creating Your Own Capability ==
In general terms, a capability is registered through the event <code><nowiki>RegisterCapabilitiesEvent</nowiki></code> on the <code>MOD</code> event bus via the <code>#register</code> method.

<syntaxhighlight lang="java">
@SubscribeEvent
public void registerCaps(RegisterCapabilitiesEvent event) {
event.register(IExampleCapability.class);
}
</syntaxhighlight>

== Persisting LevelChunk and BlockEntity capabilities ==
Unlike <code>Levels</code>, <code>Entities</code> and <code>ItemStacks</code>, <code>LevelChunks</code> and <code>BlockEntities</code> are only written to disk when they have been marked as dirty. A <code>capability</code> implementation with persistent state for a <code>LevelChunk</code> or a <code>BlockEntity</code> should therefore ensure that whenever its state changes, its owner is marked as dirty.

<code>ItemStackHandler</code>, commonly used for inventories in <code>BlockEntities</code>, has an overridable method <code><nowiki>void onContentsChanged(int slot)</nowiki></code> designed to be used to mark the <code>BlockEntity</code> as dirty.
<syntaxhighlight lang="java">
public class MyBlockEntity extends BlockEntity {

private final IItemHandler inventory = new ItemStackHandler(...) {
@Override
protected void onContentsChanged(int slot) {
super.onContentsChanged(slot);
setChanged();
}
}

...
}
</syntaxhighlight>
== Synchronizing Data with Clients ==
By default, Capability data is not sent to clients. In order to change this, the mods have to manage their own synchronization code using packets.

There are three different situation in which you may want to send synchronization packets, all of them optional:
# When the entity spawns in the level, or the block is placed, you may want to share the initialization-assigned values with the clients.
# When the stored data changes, you may want to notify some or all of the watching clients.
# When a new client starts viewing the entity or block, you may want to notify it of the existing data.

Refer to the [[Understanding Networking/1.18|Networking]] page for more information on implementing network packets.

== Persisting across Player Deaths ==
By default, the capability data does not persist on death. In order to change this, the data has to be manually copied when the player entity is cloned during the respawn process.

This can be done by handling the <code><nowiki>PlayerEvent$Clone</nowiki></code> event, reading the data from the original entity, and assigning it to the new entity. In this event, the <code>#isWasDeath</code> method can be used to distinguish between respawning after death, and returning from the End. This is important because the data will already exist when returning from the End, so care has to be taken to not duplicate values in this case.


[[Category:Data Storage/1.18|Category:Data Storage]]
372

edits