-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
428 lines (375 loc) · 13.2 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
const electron = require('electron');
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;
const nativeImage = electron.nativeImage;
const protocol = electron.protocol;
const path = require('path');
const url = require('url');
const fs = require('fs');
let mainWindows = [];
let appQuit = false;
let openFile, appIsReady;
let dataStore = {};
app.commandLine.appendSwitch('--enable-npapi');
app.commandLine.appendSwitch('--enable-pointer-events');
function fileExists(filePath)
{
try {
return fs.statSync(filePath).isFile();
}
catch (err) {
return false;
}
}
function createWindow () {
// let mainWindow = new BrowserWindow( { width: 1600, height: 900, show : false, 'web-preferences': { 'plugins': true } } );
let mainWindow = new BrowserWindow( { width: 1440, height: 900, show : false, 'web-preferences': { 'plugins': true } } );
mainWindows.push( mainWindow );
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'paintsupreme.html'),
protocol: 'file:',
slashes: true,
icon: nativeImage.createFromPath( __dirname + '/icon.png' ),
}));
let splashWindow = new BrowserWindow( { width: 1200, height: 900, frame: false, transparent : true } );
splashWindow.loadURL(url.format({
pathname: path.join(__dirname, 'splash.html'),
protocol: 'file:',
slashes: true
}));
splashWindow.setAlwaysOnTop(true);
const ipc = require('electron').ipcMain;
ipc.once('app-initialized', function ( e ) {
setTimeout( () => {
mainWindow.show();
if ( openFile ) {
if ( fileExists( openFile ) )
mainWindow.send( 'open-project', openFile );
openFile = undefined;
} else
if ( process.platform == 'win32' && process.argv.length >= 2) {
if ( fileExists( process.argv[1] ) )
mainWindow.send( 'open-project', process.argv[1] );
}
}, 1500 );
setTimeout( () => splashWindow.close(), 2000 );
});
mainWindow.on('close', function ( e ) {
// if ( mainWindow.isDocumentEdited() )
if ( dataStore[mainWindow.id] )
{
e.preventDefault();
dialog.showMessageBox( {
type: 'question',
buttons: ['Yes', 'No'],
title: 'Confirm',
message: 'Unsaved data will be lost. Are you sure you want to quit?'
}, function (response) {
if (response === 0) {
mainWindow.setDocumentEdited( false );
dataStore[mainWindow.id] = false;
mainWindow.close();
if ( appQuit ) app.quit();
}
} );
}
});
mainWindow.on('closed', function ( e ) {
let index = mainWindows.indexOf( mainWindow );
if ( index > -1 ) mainWindows.splice( index, 1 );
});
return mainWindow;
}
// Quit when all windows are closed.
app.on('window-all-closed', function () {
if ( process.platform !== 'darwin' )
app.quit();
});
app.on('activate', function () {
// On OS X 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 ( !mainWindows.length ) {
createWindow();
}
});
// --- Load Project Dialog
const ipc = require('electron').ipcMain;
const dialog = require('electron').dialog;
ipc.on('open-file-dialog', function (event) {
const window = BrowserWindow.fromWebContents(event.sender);
dialog.showOpenDialog( window, { properties: ['openFile' ] },
function (files) {
if ( files ) event.sender.send( 'selected-project-file', files );
} );
});
// --- Save Dialogs
ipc.on('save-project-dialog', function (event) {
const window = BrowserWindow.fromWebContents(event.sender);
const options = {
title: 'Save Project',
filters: [ { name: 'PaintSupreme 3D', extensions: ['paintsupreme'] } ]
};
dialog.showSaveDialog( window, options,
function ( fileName ) {
event.sender.send( 'save-project-file', fileName );
} );
});
ipc.on('save-image-dialog', function (event, params) {
const window = BrowserWindow.fromWebContents(event.sender);
const options = {
title: 'Save Image',
filters: params.filters
};
dialog.showSaveDialog( window, options,
function ( fileName ) {
params.filename = fileName;
event.sender.send( 'save-image-file', params );
} );
});
// --- Document State Changed
ipc.on('document-state-change', function ( e, param ) {
dataStore[param.id] = param.state;
});
// --- Menu
const Menu = electron.Menu;
let template = [
{
label: 'File',
submenu: [
{ label: 'Open...', accelerator: 'CmdOrCtrl+O', click : ( event, fWindow ) => fWindow.webContents.send( 'workspace-open' ) },
{ type: 'separator' },
{ label: 'Save', accelerator: 'CmdOrCtrl+S', click : ( event, fWindow ) => fWindow.webContents.send( 'workspace-save' ) },
{ label: 'Save As...', accelerator: 'Shift+CmdOrCtrl+S', click : ( event, fWindow ) => fWindow.webContents.send( 'workspace-saveas' ) },
{ type: 'separator' },
{ label: 'Import...', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-import' ) },
{ label: 'Export...', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-export' ) },
]
},
{
label: 'Edit',
submenu: [
{ label: 'Undo', accelerator: 'CmdOrCtrl+Z', enabled : false, click : ( event, fWindow ) => fWindow.webContents.send( 'workspace-undo' ) },
{ label: 'Redo', accelerator: 'Shift+CmdOrCtrl+Z', enabled : false, click : ( event, fWindow ) => fWindow.webContents.send( 'workspace-redo' ) },
{ type: 'separator' },
{ label: 'Cut', accelerator: 'CmdOrCtrl+X', role: 'cut' },
{ label: 'Copy', accelerator: 'CmdOrCtrl+C', role: 'copy' },
{ label: 'Paste', accelerator: 'CmdOrCtrl+V', role: 'paste' },
]
},
{
label: 'Layer',
submenu: [
{ label: 'Add Layer', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-addlayer' ) },
{ label: 'Add Light', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-addlight' ) },
{ label: 'Delete Layer(s)', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-deletelayer' ) },
{ type: 'separator' },
{ label: 'Duplicate Layer', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-duplicatelayer' ) },
{ label: 'Merge Layers', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-mergelayers' ) },
]
},
{
label: 'Selection',
submenu: [
{ label: 'Clear Selection', accelerator: 'CmdOrCtrl+D', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-clear-selection' ) },
{ label: 'Inverse Selection', accelerator: 'CmdOrCtrl+I', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-inverse-selection' ) },
{ label: 'Delete Contents', accelerator: 'Delete', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-delete-selection' ) },
{ type: 'separator' },
{ label: 'Select All', accelerator: 'CmdOrCtrl+A', click : ( event, fWindow ) => fWindow.webContents.send( 'ps-selectall' ) },
]
},
{
label: 'View',
submenu: [
{ label: 'Toggle Full Screen', accelerator: (function () {
if (process.platform === 'darwin') {
return 'Ctrl+Command+F';
} else {
return 'F11';
}
})(),
click: function (item, focusedWindow) {
if (focusedWindow)
focusedWindow.setFullScreen(!focusedWindow.isFullScreen());
}
},
{ label: 'Toggle Paint Mode', accelerator: 'Tab',
click: function (item, focusedWindow) {
focusedWindow.webContents.send( 'ps-paintmode' );
}
},
/*
{ label: 'Toggle Developer Tools', accelerator: (function () {
if (process.platform === 'darwin') {
return 'Alt+Command+I';
} else {
return 'Ctrl+Shift+I';
}
})(),
click: function (item, focusedWindow) {
if (focusedWindow) {
focusedWindow.toggleDevTools();
}
}
},*/
{ type: 'separator' },
{ label: 'Zoom To Fit Canvas', accelerator: 'CmdOrCtrl+F',
click: function (item, focusedWindow) {
focusedWindow.webContents.send( 'ps-zoomtofit' );
}
},
{ label: 'Zoom In', accelerator: 'CmdOrCtrl+Plus',
click: function (item, focusedWindow) {
focusedWindow.webContents.send( 'ps-zoomin' );
}
},
{ label: 'Zoom Out', accelerator: 'CmdOrCtrl+-',
click: function (item, focusedWindow) {
focusedWindow.webContents.send( 'ps-zoomout' );
}
},
]
}, {
label: 'Window',
role: 'window',
submenu: [
{ label: 'Minimize', accelerator: 'CmdOrCtrl+M', role: 'minimize'},
// { label: 'Close', accelerator: 'CmdOrCtrl+W', role: 'close' },
// { type: 'separator' },
// { label: 'Reopen Window', accelerator: 'CmdOrCtrl+Shift+T', enabled: false, key: 'reopenMenuItem', click: function () { app.emit('activate'); } },
]
}, {
label: 'Help',
role: 'help',
submenu: [{
label: 'Documentation',
click: function ( event, fWindow ) {
fWindow.webContents.send( 'app-help' );
}
}]
}];
function addUpdateMenuItems (items, position) {
if (process.mas) return;
const version = electron.app.getVersion();
let updateItems = [{
label: `Version ${version}`,
enabled: false
}, {
label: 'Checking for Update',
enabled: false,
key: 'checkingForUpdate'
}, {
label: 'Check for Update',
visible: false,
key: 'checkForUpdate',
click: function () {
require('electron').autoUpdater.checkForUpdates();
}
}, {
label: 'Restart and Install Update',
enabled: true,
visible: false,
key: 'restartToUpdate',
click: function () {
require('electron').autoUpdater.quitAndInstall();
}
}];
items.splice.apply(items, [position, 0].concat(updateItems));
}
function findReopenMenuItem () {
const menu = Menu.getApplicationMenu();
if (!menu) return;
let reopenMenuItem;
menu.items.forEach(function (item) {
if (item.submenu) {
item.submenu.items.forEach(function (item) {
if (item.key === 'reopenMenuItem') {
reopenMenuItem = item;
}
});
}
});
return reopenMenuItem;
}
if (process.platform === 'darwin') {
const name = electron.app.getName();
template.unshift({
label: name,
submenu: [{
label: `About ${name}`,
role: 'about'
}, {
type: 'separator'
}, {
label: 'Services',
role: 'services',
submenu: []
}, {
type: 'separator'
}, {
label: `Hide ${name}`,
accelerator: 'Command+H',
role: 'hide'
}, {
label: 'Hide Others',
accelerator: 'Command+Alt+H',
role: 'hideothers'
}, {
label: 'Show All',
role: 'unhide'
}, {
type: 'separator'
}, {
label: 'Quit',
accelerator: 'Command+Q',
click: function () {
appQuit = true;
app.quit();
}
}]
});
// Window menu.
template[6].submenu.push({
type: 'separator'
}, {
label: 'Bring All to Front',
role: 'front'
});
//addUpdateMenuItems(template[0].submenu, 1);
}
if (process.platform === 'win32') {
const helpMenu = template[template.length - 1].submenu;
//addUpdateMenuItems(helpMenu, 0);
}
app.on('browser-window-created', function () {
let reopenMenuItem = findReopenMenuItem();
if (reopenMenuItem) reopenMenuItem.enabled = false;
});
app.on('window-all-closed', function () {
let reopenMenuItem = findReopenMenuItem();
if (reopenMenuItem) reopenMenuItem.enabled = true;
});
if (process.platform === 'darwin') {
// --- Insert New Window Command on Mac OS X
template[1].submenu.splice( 0, 0, {
label: 'New Window',
click : ( event, fWindow ) => createWindow()
} );
template[1].submenu.splice( 1, 0, {
type: 'separator'
} );
}
// --- Mac OS X only, open the given file.
app.on ('open-file', function( event, path ) {
// --- If app is not ready yet, no need to open a new window
if ( appIsReady )
createWindow();
openFile = path;
event.preventDefault();
});
// --- Ready
app.on('ready', function () {
createWindow();
const menu = Menu.buildFromTemplate(template);
Menu.setApplicationMenu(menu);
appIsReady = true;
});