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-08 20:52:47 +01:00
|
|
|
|
2024-10-26 14:24:38 +01:00
|
|
|
export default class PacketDisconnectKick implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.DisconnectKick;
|
2023-04-08 20:52:47 +01:00
|
|
|
public reason:string;
|
|
|
|
|
2023-04-09 04:51:30 +01:00
|
|
|
public constructor(reason?:string) {
|
|
|
|
if (typeof(reason) === "string") {
|
|
|
|
this.reason = reason;
|
|
|
|
} else {
|
|
|
|
this.reason = "";
|
|
|
|
}
|
2023-04-08 20:52:47 +01:00
|
|
|
}
|
|
|
|
|
2023-05-02 10:24:48 +01:00
|
|
|
public readData(reader:IReader) {
|
|
|
|
this.reason = reader.readString16();
|
2023-04-08 20:52:47 +01:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
2023-05-02 10:24:48 +01:00
|
|
|
return createWriter(Endian.BE, 3 + this.reason.length * 2).writeUByte(this.packetId).writeString16(this.reason).toBuffer();
|
2023-04-08 20:52:47 +01:00
|
|
|
}
|
|
|
|
}
|