cn.nukkit.network.protocol.InteractPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.network.protocol;
import lombok.ToString;
/**
* @since 15-10-15
*/
@ToString
public class InteractPacket extends DataPacket {
public static final byte NETWORK_ID = ProtocolInfo.INTERACT_PACKET;
public static final int ACTION_VEHICLE_EXIT = 3;
public static final int ACTION_MOUSEOVER = 4;
public static final int ACTION_OPEN_INVENTORY = 6;
public int action;
public long target;
@Override
public void decode() {
this.action = this.getByte();
this.target = this.getEntityRuntimeId();
}
@Override
public void encode() {
this.reset();
this.putByte((byte) this.action);
this.putEntityRuntimeId(this.target);
}
@Override
public byte pid() {
return NETWORK_ID;
}
}