bitburner-src/src/Message/Message.ts

36 lines
820 B
TypeScript
Raw Normal View History

2021-09-05 01:09:30 +02:00
import {
Reviver,
Generic_toJSON,
Generic_fromJSON,
} from "../../utils/JSONReviver";
2019-03-03 04:15:10 +01:00
export class Message {
2021-09-05 01:09:30 +02:00
// Name of Message file
filename = "";
// The text contains in the Message
msg = "";
// Flag indicating whether this Message has been received by the player
recvd = false;
constructor(filename = "", msg = "") {
this.filename = filename;
this.msg = msg;
this.recvd = false;
}
// Serialize the current object to a JSON save state
toJSON(): any {
return Generic_toJSON("Message", this);
}
// Initializes a Message Object from a JSON save state
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
static fromJSON(value: any): Message {
return Generic_fromJSON(Message, value.data);
}
2019-03-03 04:15:10 +01:00
}
Reviver.constructors.Message = Message;