Files
bitburner-src/src/TextFile.ts
2025-06-16 16:34:06 -07:00

48 lines
1.4 KiB
TypeScript

import type { BaseServer } from "./Server/BaseServer";
import { Generic_fromJSON, Generic_toJSON, type IReviverValue, constructorsForReviver } from "./utils/JSONReviver";
import type { TextFilePath } from "./Paths/TextFilePath";
import { ContentFile } from "./Paths/ContentFile";
/** Represents a plain text file that is typically stored on a server. */
export class TextFile extends ContentFile {
/** The full file name. */
filename: TextFilePath;
/** The content of the file. */
text: string;
// Shared interface on Script and TextFile for accessing content
get content() {
this.metadata.read();
return this.text;
}
set content(text: string) {
this.metadata.edit();
this.text = text;
}
constructor(filename = "default.txt" as TextFilePath, txt = "") {
super();
this.filename = filename;
this.text = txt;
}
/** Serialize the current file to a JSON save state. */
toJSON(): IReviverValue {
return Generic_toJSON("TextFile", this);
}
deleteFromServer(server: BaseServer): boolean {
if (!server.textFiles.has(this.filename)) return false;
server.textFiles.delete(this.filename);
return true;
}
/** Initializes a TextFile from a JSON save state. */
static fromJSON(value: IReviverValue): TextFile {
return Generic_fromJSON(TextFile, value.data);
}
}
constructorsForReviver.TextFile = TextFile;