cn.nukkit.network.protocol.UpdateAttributesPacket Maven / Gradle / Ivy
package cn.nukkit.network.protocol;
import cn.nukkit.api.Since;
import cn.nukkit.entity.Attribute;
import lombok.ToString;
/**
* @author Nukkit Project Team
*/
@ToString
public class UpdateAttributesPacket extends DataPacket {
public static final byte NETWORK_ID = ProtocolInfo.UPDATE_ATTRIBUTES_PACKET;
public Attribute[] entries;
public long entityId;
@Since("1.4.0.0-PN") public long frame;
@Override
public byte pid() {
return NETWORK_ID;
}
@Override
public void decode() {
}
@Override
public void encode() {
this.reset();
this.putEntityRuntimeId(this.entityId);
if (this.entries == null) {
this.putUnsignedVarInt(0);
} else {
this.putUnsignedVarInt(this.entries.length);
for (Attribute entry : this.entries) {
this.putLFloat(entry.getMinValue());
this.putLFloat(entry.getMaxValue());
this.putLFloat(entry.getValue());
this.putLFloat(entry.getDefaultValue());
this.putString(entry.getName());
this.putUnsignedVarInt(0); // Modifiers
}
}
this.putUnsignedVarInt(this.frame);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy