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

46 lines
1.4 KiB
TypeScript
Raw Normal View History

2023-06-22 12:43:28 +01:00
import { createWriter, IReader, Endian } from "bufferstuff";
2023-04-10 14:42:14 +01:00
import { IPacket } from "./IPacket";
import { Packet } from "../enums/Packet";
2023-04-10 14:42:14 +01:00
export class PacketEntityTeleport implements IPacket {
2023-04-10 21:52:30 +01:00
public packetId = Packet.EntityTeleport;
2023-04-10 14:42:14 +01:00
public entityId:number;
public x:number;
public y:number;
public z:number;
public yaw:number;
public pitch:number;
public constructor(entityId?:number, x?:number, y?:number, z?:number, yaw?:number, pitch?:number) {
if (typeof(entityId) == "number" && typeof(x) === "number" && typeof(y) === "number" && typeof(z) === "number" && typeof(yaw) === "number" && typeof(pitch) === "number") {
this.entityId = entityId;
this.x = x;
this.y = y;
this.z = z;
this.yaw = yaw;
this.pitch = pitch;
} else {
this.entityId = Number.MIN_VALUE;
this.x = Number.MIN_VALUE;
this.y = Number.MIN_VALUE;
this.z = Number.MIN_VALUE;
this.yaw = Number.MIN_VALUE;
this.pitch = Number.MIN_VALUE;
}
}
public readData(reader:IReader) {
2023-04-10 14:42:14 +01:00
this.entityId = reader.readInt();
this.x = reader.readInt();
this.y = reader.readInt();
this.z = reader.readInt();
this.yaw = reader.readByte();
this.pitch = reader.readByte();
return this;
}
public writeData() {
return createWriter(Endian.BE, 19).writeUByte(this.packetId).writeInt(this.entityId).writeInt(this.x).writeInt(this.y).writeInt(this.z).writeByte(this.yaw).writeByte(this.pitch).toBuffer();
2023-04-10 14:42:14 +01:00
}
}