2020-03-15 17:31:32 +01:00
|
|
|
const { app, BrowserWindow, ipcMain } = require("electron");
|
|
|
|
const path = require("path");
|
2020-02-29 14:05:19 +01:00
|
|
|
|
2020-04-09 12:44:39 +02:00
|
|
|
if (process.env.NODE_ENV === "dev") {
|
|
|
|
require("electron-reload")(__dirname, {
|
|
|
|
electron: path.join(__dirname, "node_modules", ".bin", "electron")
|
|
|
|
});
|
|
|
|
}
|
2020-03-04 08:38:11 +01:00
|
|
|
|
2020-02-29 14:05:19 +01:00
|
|
|
function createWindow () {
|
|
|
|
// Create the browser window.
|
|
|
|
const win = new BrowserWindow({
|
2020-03-15 17:21:29 +01:00
|
|
|
width: 640,
|
|
|
|
height: 320,
|
2020-03-15 17:31:32 +01:00
|
|
|
backgroundColor: "#111",
|
2020-03-02 22:06:16 +01:00
|
|
|
resizable: false,
|
2020-03-04 08:38:11 +01:00
|
|
|
frame: false,
|
2020-02-29 14:05:19 +01:00
|
|
|
webPreferences: {
|
|
|
|
nodeIntegration: true
|
|
|
|
}
|
2020-03-02 22:06:16 +01:00
|
|
|
});
|
|
|
|
|
2020-03-15 17:31:32 +01:00
|
|
|
ipcMain.on("resize", function (event, window) {
|
2020-03-02 22:06:16 +01:00
|
|
|
win.setSize( window.w, window.h);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Remove alt menu
|
|
|
|
win.removeMenu();
|
2020-02-29 14:05:19 +01:00
|
|
|
|
|
|
|
// and load the index.html of the app.
|
2020-04-13 11:48:48 +02:00
|
|
|
win.loadFile(path.join("html/game.html"));
|
2020-02-29 14:05:19 +01:00
|
|
|
|
|
|
|
// Open the DevTools.
|
2020-03-15 17:31:32 +01:00
|
|
|
win.webContents.openDevTools();
|
2020-02-29 14:05:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// This method will be called when Electron has finished
|
|
|
|
// initialization and is ready to create browser windows.
|
|
|
|
// Some APIs can only be used after this event occurs.
|
2020-03-15 17:31:32 +01:00
|
|
|
app.whenReady().then(createWindow);
|
2020-02-29 14:05:19 +01:00
|
|
|
|
|
|
|
// Quit when all windows are closed.
|
2020-03-15 17:31:32 +01:00
|
|
|
app.on("window-all-closed", () => {
|
2020-02-29 14:05:19 +01:00
|
|
|
// On macOS it is common for applications and their menu bar
|
|
|
|
// to stay active until the user quits explicitly with Cmd + Q
|
2020-03-15 17:31:32 +01:00
|
|
|
if (process.platform !== "darwin") {
|
|
|
|
app.quit();
|
2020-02-29 14:05:19 +01:00
|
|
|
}
|
2020-03-15 17:31:32 +01:00
|
|
|
});
|
2020-02-29 14:05:19 +01:00
|
|
|
|
2020-03-15 17:31:32 +01:00
|
|
|
app.on("activate", () => {
|
2020-02-29 14:05:19 +01:00
|
|
|
// On macOS it's common to re-create a window in the app when the
|
|
|
|
// dock icon is clicked and there are no other windows open.
|
|
|
|
if (BrowserWindow.getAllWindows().length === 0) {
|
2020-03-15 17:31:32 +01:00
|
|
|
createWindow();
|
2020-02-29 14:05:19 +01:00
|
|
|
}
|
2020-03-15 17:31:32 +01:00
|
|
|
});
|
2020-02-29 14:05:19 +01:00
|
|
|
|
|
|
|
// In this file you can include the rest of your app's specific main process
|
|
|
|
// code. You can also put them in separate files and require them here.
|