42 lines
No EOL
1.3 KiB
TypeScript
42 lines
No EOL
1.3 KiB
TypeScript
import { Reader, Writer } from "../../bufferStuff";
|
|
import { Packet } from "../enums/Packet";
|
|
import { IPacket } from "./IPacket";
|
|
|
|
export class PacketBlockChange implements IPacket {
|
|
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;
|
|
}
|
|
}
|
|
|
|
public readData(reader:Reader) {
|
|
this.x = reader.readInt();
|
|
this.y = reader.readByte();
|
|
this.z = reader.readInt();
|
|
this.blockType = reader.readByte();
|
|
this.blockMetadata = reader.readByte();
|
|
|
|
return this;
|
|
}
|
|
|
|
public writeData() {
|
|
return new Writer(12).writeUByte(this.packetId).writeInt(this.x).writeByte(this.y).writeInt(this.z).writeByte(this.blockType).writeByte(this.blockMetadata).toBuffer();
|
|
}
|
|
} |