2023-06-22 12:43:28 +01:00
|
|
|
import { createWriter, IReader, Endian } from "bufferstuff";
|
2023-04-08 20:52:47 +01:00
|
|
|
import { IPacket } from "./IPacket";
|
2023-05-02 10:24:48 +01:00
|
|
|
import { Packet } from "../enums/Packet";
|
2023-04-08 20:52:47 +01:00
|
|
|
|
|
|
|
export class PacketUseEntity implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.UseEntity;
|
2023-04-08 20:52:47 +01:00
|
|
|
public userId:number;
|
|
|
|
public targetId:number;
|
|
|
|
public leftClick:boolean;
|
|
|
|
|
|
|
|
public constructor(userId:number, targetId:number, leftClick:boolean) {
|
|
|
|
this.userId = userId;
|
|
|
|
this.targetId = targetId;
|
|
|
|
this.leftClick = leftClick;
|
|
|
|
}
|
|
|
|
|
2023-05-02 10:24:48 +01:00
|
|
|
public readData(reader:IReader) {
|
2023-04-08 20:52:47 +01:00
|
|
|
this.userId = reader.readInt();
|
|
|
|
this.targetId = reader.readInt();
|
|
|
|
this.leftClick = reader.readBool();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
2023-05-02 10:24:48 +01:00
|
|
|
return createWriter(Endian.BE, 10).writeUByte(this.packetId).writeInt(this.userId).writeInt(this.targetId).writeBool(this.leftClick).toBuffer();
|
2023-04-08 20:52:47 +01:00
|
|
|
}
|
|
|
|
}
|