mc-beta-server/server/packets/PlayerPosition.ts

42 lines
1.3 KiB
TypeScript
Raw Normal View History

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";
import { Packet } from "../enums/Packet";
2023-04-08 20:52:47 +01:00
export class PacketPlayerPosition 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 onGround:boolean;
2023-04-09 04:19:10 +01:00
public constructor(x?:number, y?:number, stance?:number, z?:number, onGround?:boolean) {
if (typeof(x) === "number" && typeof(y) === "number" && typeof(stance) === "number" && typeof(z) === "number" && typeof(onGround) === "boolean") {
this.x = x;
this.y = y;
this.stance = stance;
this.z = z;
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.onGround = false;
}
2023-04-08 20:52:47 +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.onGround = reader.readBool();
return this;
}
public writeData() {
return createWriter(Endian.BE, 34).writeUByte(this.packetId).writeDouble(this.x).writeDouble(this.y).writeDouble(this.stance).writeDouble(this.z).writeBool(this.onGround).toBuffer();
2023-04-08 20:52:47 +01:00
}
}