2023-04-08 20:52:47 +01:00
|
|
|
import { Reader, Writer } from "../../bufferStuff";
|
2023-04-10 21:52:30 +01:00
|
|
|
import { Packet } from "../enums/Packet";
|
2023-04-08 20:52:47 +01:00
|
|
|
import { IPacket } from "./IPacket";
|
|
|
|
|
|
|
|
export class PacketPlayerLook implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.Player;
|
2023-04-08 20:52:47 +01:00
|
|
|
public yaw:number;
|
|
|
|
public pitch:number;
|
|
|
|
public onGround:boolean;
|
|
|
|
|
2023-04-09 04:19:10 +01:00
|
|
|
public constructor(yaw?:number, pitch?:number, onGround?:boolean) {
|
|
|
|
if (typeof(yaw) === "number" && typeof(pitch) === "number" && typeof(onGround) === "boolean") {
|
|
|
|
this.yaw = yaw;
|
|
|
|
this.pitch = pitch;
|
|
|
|
this.onGround = onGround;
|
|
|
|
} else {
|
|
|
|
this.yaw = Number.MIN_VALUE;
|
|
|
|
this.pitch = Number.MIN_VALUE;
|
|
|
|
this.onGround = false;
|
|
|
|
}
|
2023-04-08 20:52:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public readData(reader:Reader) {
|
|
|
|
this.yaw = reader.readFloat();
|
|
|
|
this.pitch = reader.readFloat();
|
|
|
|
this.onGround = reader.readBool();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
|
|
|
return new Writer(10).writeUByte(this.packetId).writeFloat(this.yaw).writeFloat(this.pitch).writeBool(this.onGround).toBuffer();
|
|
|
|
}
|
|
|
|
}
|