2023-05-02 10:24:48 +01:00
|
|
|
import { createWriter } from "../../bufferStuff/index";
|
|
|
|
import { Endian } from "../../bufferStuff/Endian";
|
2023-04-08 20:52:47 +01:00
|
|
|
import { IPacket } from "./IPacket";
|
2023-05-02 10:24:48 +01:00
|
|
|
import { IReader } from "../../bufferStuff/readers/IReader";
|
|
|
|
import { Packet } from "../enums/Packet";
|
2023-04-08 20:52:47 +01:00
|
|
|
|
|
|
|
export class PacketPlayerPositionLook implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.PlayerPosition;
|
2023-04-08 20:52:47 +01:00
|
|
|
public x:number;
|
|
|
|
public y:number;
|
|
|
|
public stance:number;
|
|
|
|
public z:number;
|
|
|
|
public yaw:number;
|
|
|
|
public pitch:number;
|
|
|
|
public onGround:boolean;
|
|
|
|
|
2023-04-09 04:19:10 +01:00
|
|
|
public constructor(x?:number, y?:number, stance?:number, z?:number, yaw?:number, pitch?:number, onGround?:boolean) {
|
|
|
|
if (typeof(x) === "number" && typeof(y) === "number" && typeof(stance) === "number" && typeof(z) === "number" && typeof(yaw) === "number" && typeof(pitch) === "number" && typeof(onGround) === "boolean") {
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
|
|
|
this.stance = stance;
|
|
|
|
this.z = z;
|
|
|
|
this.yaw = yaw;
|
|
|
|
this.pitch = pitch;
|
|
|
|
this.onGround = onGround;
|
|
|
|
} else {
|
|
|
|
this.x = Number.MIN_VALUE;
|
|
|
|
this.y = Number.MIN_VALUE;
|
|
|
|
this.stance = Number.MIN_VALUE;
|
|
|
|
this.z = Number.MIN_VALUE;
|
|
|
|
this.yaw = Number.MIN_VALUE;
|
|
|
|
this.pitch = Number.MIN_VALUE;
|
|
|
|
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.x = reader.readDouble();
|
|
|
|
this.y = reader.readDouble();
|
|
|
|
this.stance = reader.readDouble();
|
|
|
|
this.z = reader.readDouble();
|
|
|
|
this.yaw = reader.readFloat();
|
|
|
|
this.pitch = reader.readFloat();
|
|
|
|
this.onGround = reader.readBool();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
2023-05-02 10:24:48 +01:00
|
|
|
return createWriter(Endian.BE, 42).writeUByte(this.packetId).writeDouble(this.x).writeDouble(this.y).writeDouble(this.stance).writeDouble(this.z).writeFloat(this.yaw).writeFloat(this.pitch).writeBool(this.onGround).toBuffer();
|
2023-04-08 20:52:47 +01:00
|
|
|
}
|
|
|
|
}
|