2021-12-20 12:33:46 +01:00
|
|
|
/* eslint-disable no-process-exit */
|
2021-12-19 19:04:34 +01:00
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
2021-12-29 14:46:56 +01:00
|
|
|
const { app } = require("electron");
|
|
|
|
const log = require("electron-log");
|
2021-11-27 21:07:25 +01:00
|
|
|
const greenworks = require("./greenworks");
|
2021-12-28 21:21:11 +01:00
|
|
|
const api = require("./api-server");
|
2021-12-29 14:46:56 +01:00
|
|
|
const gameWindow = require("./gameWindow");
|
|
|
|
const achievements = require("./achievements");
|
|
|
|
const utils = require("./utils");
|
2021-09-21 19:29:16 +02:00
|
|
|
|
2021-12-20 12:33:46 +01:00
|
|
|
log.catchErrors();
|
|
|
|
log.info(`Started app: ${JSON.stringify(process.argv)}`);
|
|
|
|
|
|
|
|
process.on('uncaughtException', function () {
|
|
|
|
// The exception will already have been logged by electron-log
|
|
|
|
process.exit(1);
|
|
|
|
});
|
|
|
|
|
2021-11-27 21:07:25 +01:00
|
|
|
if (greenworks.init()) {
|
2021-12-20 12:33:46 +01:00
|
|
|
log.info("Steam API has been initialized.");
|
2021-11-27 21:07:25 +01:00
|
|
|
} else {
|
2021-12-20 12:33:46 +01:00
|
|
|
log.warn("Steam API has failed to initialize.");
|
2021-11-27 21:07:25 +01:00
|
|
|
}
|
|
|
|
|
2021-12-17 02:21:25 +01:00
|
|
|
function setStopProcessHandler(app, window, enabled) {
|
2021-12-23 13:27:25 +01:00
|
|
|
const closingWindowHandler = async (e) => {
|
|
|
|
// We need to prevent the default closing event to add custom logic
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
// First we clear the achievement timer
|
2021-12-29 14:46:56 +01:00
|
|
|
achievements.disableAchievementsInterval(window);
|
2021-12-23 13:27:25 +01:00
|
|
|
|
2021-12-29 14:46:56 +01:00
|
|
|
// Shutdown the http server
|
2021-12-28 21:21:11 +01:00
|
|
|
api.disable();
|
|
|
|
|
2021-12-23 13:27:25 +01:00
|
|
|
// We'll try to execute javascript on the page to see if we're stuck
|
|
|
|
let canRunJS = false;
|
2021-12-29 14:46:56 +01:00
|
|
|
window.webContents.executeJavaScript('window.stop(); document.close()', true)
|
2021-12-23 13:27:25 +01:00
|
|
|
.then(() => canRunJS = true);
|
|
|
|
setTimeout(() => {
|
|
|
|
// Wait a few milliseconds to prevent a race condition before loading the exit screen
|
2021-12-29 14:46:56 +01:00
|
|
|
window.webContents.stop();
|
|
|
|
window.loadFile("exit.html")
|
2021-12-23 13:27:25 +01:00
|
|
|
}, 20);
|
|
|
|
|
|
|
|
// Wait 200ms, if the promise has not yet resolved, let's crash the process since we're possibly in a stuck scenario
|
|
|
|
setTimeout(() => {
|
|
|
|
if (!canRunJS) {
|
|
|
|
// We're stuck, let's crash the process
|
|
|
|
log.warn('Forcefully crashing the renderer process');
|
2021-12-29 14:46:56 +01:00
|
|
|
gameWindow.webContents.forcefullyCrashRenderer();
|
2021-12-23 13:27:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
log.debug('Destroying the window');
|
2021-12-29 14:46:56 +01:00
|
|
|
window.destroy();
|
2021-12-23 13:27:25 +01:00
|
|
|
}, 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
const clearWindowHandler = () => {
|
2021-12-17 02:21:25 +01:00
|
|
|
window = null;
|
2021-12-17 17:50:03 +01:00
|
|
|
};
|
2021-12-17 02:21:25 +01:00
|
|
|
|
|
|
|
const stopProcessHandler = () => {
|
2021-12-22 22:16:24 +01:00
|
|
|
log.info('Quitting the app...');
|
2021-12-22 22:15:56 +01:00
|
|
|
app.isQuiting = true;
|
|
|
|
app.quit();
|
|
|
|
process.exit(0);
|
2021-12-17 17:50:03 +01:00
|
|
|
};
|
2021-12-17 02:07:34 +01:00
|
|
|
|
2021-12-17 02:21:25 +01:00
|
|
|
if (enabled) {
|
2021-12-23 13:27:25 +01:00
|
|
|
log.debug('Adding closing handlers');
|
2021-12-17 17:50:03 +01:00
|
|
|
window.on("closed", clearWindowHandler);
|
2021-12-23 13:27:25 +01:00
|
|
|
window.on("close", closingWindowHandler)
|
2021-12-17 17:50:03 +01:00
|
|
|
app.on("window-all-closed", stopProcessHandler);
|
2021-12-17 02:21:25 +01:00
|
|
|
} else {
|
2021-12-23 13:27:25 +01:00
|
|
|
log.debug('Removing closing handlers');
|
2021-12-17 17:50:03 +01:00
|
|
|
window.removeListener("closed", clearWindowHandler);
|
2021-12-23 13:27:25 +01:00
|
|
|
window.removeListener("close", closingWindowHandler);
|
2021-12-17 17:50:03 +01:00
|
|
|
app.removeListener("window-all-closed", stopProcessHandler);
|
2021-12-17 02:21:25 +01:00
|
|
|
}
|
|
|
|
}
|
2021-12-17 00:26:20 +01:00
|
|
|
|
2021-12-29 14:46:56 +01:00
|
|
|
function startWindow(noScript) {
|
|
|
|
gameWindow.createWindow(noScript);
|
|
|
|
}
|
|
|
|
|
|
|
|
utils.initialize(setStopProcessHandler, startWindow);
|
|
|
|
|
2021-12-28 21:21:11 +01:00
|
|
|
app.whenReady().then(async () => {
|
2021-12-20 12:33:46 +01:00
|
|
|
log.info('Application is ready!');
|
2021-12-29 14:46:56 +01:00
|
|
|
utils.initialize(setStopProcessHandler, startWindow);
|
|
|
|
startWindow(process.argv.includes("--no-scripts"))
|
2021-12-17 07:32:23 +01:00
|
|
|
});
|