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 PacketPlayer implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.Player;
|
2023-04-08 20:52:47 +01:00
|
|
|
public onGround:boolean;
|
|
|
|
|
2023-04-09 04:19:10 +01:00
|
|
|
public constructor(onGround?:boolean) {
|
|
|
|
if (typeof(onGround) === "boolean") {
|
|
|
|
this.onGround = onGround;
|
|
|
|
} else {
|
|
|
|
this.onGround = false;
|
|
|
|
}
|
2023-04-08 20:52:47 +01:00
|
|
|
}
|
|
|
|
|
2023-05-02 10:24:48 +01:00
|
|
|
public readData(reader:IReader) {
|
2023-04-08 20:52:47 +01:00
|
|
|
this.onGround = reader.readBool();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
2023-05-02 10:24:48 +01:00
|
|
|
return createWriter(Endian.BE, 2).writeUByte(this.packetId).writeBool(this.onGround).toBuffer();
|
2023-04-08 20:52:47 +01:00
|
|
|
}
|
|
|
|
}
|