2023-06-22 12:43:28 +01:00
|
|
|
import { createWriter, IReader, Endian } from "bufferstuff";
|
2024-10-26 14:24:38 +01:00
|
|
|
import IPacket from "./IPacket";
|
|
|
|
import Packet from "../enums/Packet";
|
2023-04-10 21:52:30 +01:00
|
|
|
|
2024-10-26 14:24:38 +01:00
|
|
|
export default class PacketEntityAction implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.EntityAction;
|
|
|
|
public entityId:number;
|
|
|
|
public action:number;
|
|
|
|
|
|
|
|
public constructor(entityId?:number, action?:number) {
|
|
|
|
if (typeof(entityId) == "number" && typeof(action) === "number") {
|
|
|
|
this.entityId = entityId;
|
|
|
|
this.action = action;
|
|
|
|
} else {
|
|
|
|
this.entityId = Number.MIN_VALUE;
|
|
|
|
this.action = Number.MIN_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-02 10:24:48 +01:00
|
|
|
public readData(reader:IReader) {
|
2023-04-10 21:52:30 +01:00
|
|
|
this.entityId = reader.readInt();
|
|
|
|
this.action = reader.readByte();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
2023-05-02 10:24:48 +01:00
|
|
|
return createWriter(Endian.BE, 6).writeUByte(this.packetId).writeInt(this.entityId).writeByte(this.action).toBuffer();
|
2023-04-10 21:52:30 +01:00
|
|
|
}
|
|
|
|
}
|