bitburner-src/src/NetscriptPort.ts

56 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-03-14 07:08:24 +01:00
import { Settings } from "./Settings/Settings";
2021-09-22 02:39:25 +02:00
interface IPort {}
export function NetscriptPort(): IPort {
const data: any[] = [];
return {
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
write: (value: any): any => {
data.push(value);
if (data.length > Settings.MaxPortCapacity) {
return data.shift();
}
return null;
},
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
tryWrite: (value: any): boolean => {
if (data.length >= Settings.MaxPortCapacity) {
return false;
}
data.push(value);
return true;
},
read: (): any => {
if (data.length === 0) {
return "NULL PORT DATA";
}
return data.shift();
},
peek: (): any => {
if (data.length === 0) {
return "NULL PORT DATA";
} else {
const foo = data.slice();
return foo[0];
}
},
full: (): boolean => {
return data.length == Settings.MaxPortCapacity;
},
empty: (): boolean => {
return data.length === 0;
},
clear: (): void => {
data.length = 0;
},
};
2021-03-14 07:08:24 +01:00
}