2023-06-22 12:43:28 +01:00
|
|
|
import { createWriter, IReader, Endian } from "bufferstuff";
|
2024-10-26 14:24:38 +01:00
|
|
|
import IPacket from "./IPacket";
|
|
|
|
import Packet from "../enums/Packet";
|
2023-04-10 21:52:30 +01:00
|
|
|
|
2024-10-26 14:24:38 +01:00
|
|
|
export default class PacketBlockChange implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.BlockChange;
|
|
|
|
public x:number;
|
|
|
|
public y:number;
|
|
|
|
public z:number;
|
|
|
|
public blockType:number;
|
|
|
|
public blockMetadata:number;
|
|
|
|
|
|
|
|
public constructor(x?:number, y?:number, z?:number, blockType?:number, blockMetadata?:number) {
|
|
|
|
if (typeof(x) == "number" && typeof(y) === "number" && typeof(z) === "number" && typeof(blockType) === "number" && typeof(blockMetadata) === "number") {
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
|
|
|
this.z = z;
|
|
|
|
this.blockType = blockType;
|
|
|
|
this.blockMetadata = blockMetadata;
|
|
|
|
} else {
|
|
|
|
this.x = Number.MIN_VALUE;
|
|
|
|
this.y = Number.MIN_VALUE;
|
|
|
|
this.z = Number.MIN_VALUE;
|
|
|
|
this.blockType = Number.MIN_VALUE;
|
|
|
|
this.blockMetadata = Number.MIN_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-02 10:24:48 +01:00
|
|
|
public readData(reader:IReader) {
|
2023-04-10 21:52:30 +01:00
|
|
|
this.x = reader.readInt();
|
|
|
|
this.y = reader.readByte();
|
|
|
|
this.z = reader.readInt();
|
|
|
|
this.blockType = reader.readByte();
|
|
|
|
this.blockMetadata = reader.readByte();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
2023-05-02 10:24:48 +01:00
|
|
|
return createWriter(Endian.BE, 12).writeUByte(this.packetId).writeInt(this.x).writeByte(this.y).writeInt(this.z).writeByte(this.blockType).writeByte(this.blockMetadata).toBuffer();
|
2023-04-10 21:52:30 +01:00
|
|
|
}
|
|
|
|
}
|