mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 18:23:54 +01:00
56 lines
1.4 KiB
JavaScript
56 lines
1.4 KiB
JavaScript
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
||
|
const { app, BrowserWindow, shell } = require("electron");
|
||
|
const log = require("electron-log");
|
||
|
const utils = require("./utils");
|
||
|
const achievements = require("./achievements");
|
||
|
const menu = require("./menu");
|
||
|
const api = require("./api-server");
|
||
|
|
||
|
const debug = process.argv.includes("--debug");
|
||
|
|
||
|
async function createWindow(killall) {
|
||
|
const window = new BrowserWindow({
|
||
|
show: false,
|
||
|
backgroundThrottling: false,
|
||
|
backgroundColor: "#000000",
|
||
|
});
|
||
|
|
||
|
window.removeMenu();
|
||
|
window.maximize();
|
||
|
noScripts = killall ? { query: { noScripts: killall } } : {};
|
||
|
window.loadFile("index.html", noScripts);
|
||
|
window.show();
|
||
|
if (debug) window.webContents.openDevTools();
|
||
|
|
||
|
window.webContents.on("new-window", function (e, url) {
|
||
|
// make sure local urls stay in electron perimeter
|
||
|
if (url.substr(0, "file://".length) === "file://") {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// and open every other protocols on the browser
|
||
|
e.preventDefault();
|
||
|
shell.openExternal(url);
|
||
|
});
|
||
|
window.webContents.backgroundThrottling = false;
|
||
|
|
||
|
achievements.enableAchievementsInterval(window);
|
||
|
utils.attachUnresponsiveAppHandler(window);
|
||
|
|
||
|
try {
|
||
|
await api.initialize(window);
|
||
|
} catch (error) {
|
||
|
log.error(error);
|
||
|
utils.showErrorBox('Error starting http server', error);
|
||
|
}
|
||
|
|
||
|
menu.refreshMenu(window);
|
||
|
utils.setStopProcessHandler(app, window, true);
|
||
|
|
||
|
return window;
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
createWindow,
|
||
|
}
|