forked from PoE-Overlay-Community/PoE-Overlay-Community-Fork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
431 lines (379 loc) · 10.5 KB
/
main.ts
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
429
430
431
import {
app,
BrowserWindow,
dialog,
ipcMain,
Menu,
MenuItem,
MenuItemConstructorOptions,
screen,
session,
systemPreferences,
Tray,
Rectangle,
} from 'electron'
import * as path from 'path'
import * as url from 'url'
import * as launch from './electron/auto-launch'
import * as update from './electron/auto-updater'
import * as game from './electron/game'
import * as hook from './electron/hook'
import * as log from './electron/log'
import * as robot from './electron/robot'
import { State } from './electron/state'
if (!app.requestSingleInstanceLock()) {
app.exit()
}
if (process.platform === 'win32' && !systemPreferences.isAeroGlassEnabled()) {
dialog.showErrorBox(
'Aero is required to run PoE Overlay',
'Aero is currently disabled. Please enable Aero and try again.'
)
app.exit()
}
app.allowRendererProcessReuse = false
app.commandLine.appendSwitch('high-dpi-support', 'true')
app.commandLine.appendSwitch('force-device-scale-factor', '1')
log.register(ipcMain)
// tslint:disable-next-line:no-console
console.info('App starting...')
const state = new State(app.getPath('userData'))
if (!state.hardwareAcceleration) {
app.disableHardwareAcceleration()
// tslint:disable-next-line:no-console
console.info('App started with disabled hardware acceleration.')
}
const args = process.argv.slice(1)
// tslint:disable-next-line:no-console
console.info('App args', args)
const serve = args.some((val) => val === '--serve')
const debug = args.some((val) => val === '--dev')
let win: BrowserWindow = null
let tray: Tray = null
let menu: Menu = null
let downloadItem: MenuItem = null
let poeBounds: Rectangle = null
const childs: {
[key: string]: BrowserWindow
} = {}
/* session */
function setUserAgent(): void {
const generatedUserAgent = `PoEOverlayCommunityFork/${app.getVersion()}`
session.defaultSession.webRequest.onBeforeSendHeaders((details, callback) => {
details.requestHeaders['User-Agent'] = generatedUserAgent
callback({ cancel: false, requestHeaders: details.requestHeaders })
})
}
/* helper */
function getBounds(): Rectangle {
const displays = screen.getAllDisplays()
const primary = screen.getPrimaryDisplay();
let bounds = {
x: primary.bounds.x,
y: primary.bounds.y,
width: primary.bounds.width,
height: primary.bounds.height,
}
displays.forEach((display) => {
if (display.id !== primary.id) {
if (bounds.x !== display.bounds.x) {
bounds.x = Math.min(bounds.x, display.bounds.x)
bounds.width += display.bounds.width
}
if (bounds.y !== display.bounds.y) {
bounds.y = Math.min(bounds.y, display.bounds.y)
bounds.height += display.bounds.height
}
}
});
return bounds
}
function send(channel: string, ...additionalArgs: any[]): void {
try {
win.webContents.send(channel, ...additionalArgs)
} catch (error) {
console.error(`could not send to '${channel}' with args '${JSON.stringify(args)}`)
}
}
launch.register(ipcMain)
update.register(ipcMain, (event, autoDownload) => {
switch (event) {
case update.AutoUpdaterEvent.UpdateAvailable:
tray?.displayBalloon({
iconType: 'info',
title: 'New update available',
content:
'A new update is available. Will be automatically downloaded unless otherwise specified.',
})
if (!autoDownload && !downloadItem) {
downloadItem = new MenuItem({
label: 'Download Update',
type: 'normal',
click: () => {
update.download()
downloadItem.enabled = false
},
})
menu?.insert(2, downloadItem)
}
break
case update.AutoUpdaterEvent.UpdateDownloaded:
tray?.displayBalloon({
iconType: 'info',
title: 'Update ready to install',
content: 'The new update is now ready to install. Please relaunch your application.',
})
break
}
send(event)
})
robot.register(ipcMain)
game.register(ipcMain, (poe) => {
send('game-active-change', serve ? true : poe.active)
// send('game-active-change', poe.active);
if (win) {
if (poe.active) {
if (process.platform !== 'linux') {
win.setAlwaysOnTop(true, 'pop-up-menu', 1)
win.setVisibleOnAllWorkspaces(true)
} else {
win.setAlwaysOnTop(true)
win.maximize()
}
if (poe.bounds) {
poeBounds = poe.bounds
send('game-bounds-change', poe.bounds)
}
} else {
win.setAlwaysOnTop(false)
win.setVisibleOnAllWorkspaces(false)
}
}
}, (logLine: string) => send('game-log-line', logLine))
hook.register(
ipcMain,
(event) => send(event),
() => {
dialog.showErrorBox(
'Iohook is required to run PoE Overlay',
'Iohook could not be loaded. Please make sure you have vc_redist installed and try again.'
)
app.quit()
}
)
/* general */
ipcMain.on('app-version', (event) => {
event.returnValue = app.getVersion()
})
ipcMain.on('main-window-bounds', (event) => {
const windowBounds = win.getBounds()
event.returnValue = [windowBounds, poeBounds || windowBounds]
})
/* changelog */
function showChangelog(): void {
const changelog = new BrowserWindow({
modal: true,
parent: win,
})
changelog.removeMenu()
changelog.loadURL(
'https://github.com/PoE-Overlay-Community/PoE-Overlay-Community-Fork/blob/master/CHANGELOG.md#Changelog'
)
}
/* main window */
function createWindow(): BrowserWindow {
const bounds = getBounds()
// Create the browser window.
win = new BrowserWindow({
width: bounds.width,
height: bounds.height,
x: bounds.x,
y: bounds.y,
enableLargerThanScreen: true,
transparent: true,
frame: false,
resizable: false,
movable: false,
webPreferences: {
nodeIntegration: true,
allowRunningInsecureContent: serve,
webSecurity: false,
},
focusable: process.platform !== 'linux' ? false : true,
skipTaskbar: true,
show: false,
})
win.setSize(bounds.width, bounds.height) // Explicitly set size after creating the window since some OS'es don't allow an initial size larger than the display's size.
win.removeMenu()
win.setIgnoreMouseEvents(true, {forward: true})
if (process.platform !== 'linux') {
win.setAlwaysOnTop(true, 'pop-up-menu', 1)
} else {
win.setAlwaysOnTop(true)
}
win.setVisibleOnAllWorkspaces(true)
win.once('show', () => {
if (state.isVersionUpdated(app.getVersion())) {
showChangelog()
}
})
loadApp(win)
win.on('closed', () => {
win = null
})
if (serve) {
// Electron bug workaround: this must be triggered after the devtools loaded
win.setIgnoreMouseEvents(true, { forward: true })
}
return win
}
/* modal window */
ipcMain.on('open-route', (event, route) => {
try {
if (!childs[route]) {
childs[route] = new BrowserWindow({
width: 1210,
height: 700,
frame: false,
resizable: true,
movable: true,
webPreferences: {
nodeIntegration: true,
allowRunningInsecureContent: serve,
webSecurity: false,
},
center: true,
transparent: true,
})
childs[route].removeMenu()
childs[route].once('closed', () => {
childs[route] = null
win.moveTop()
event.reply('open-route-reply', 'close')
})
loadApp(childs[route], `#/${route}`)
} else {
if (childs[route].isMinimized) {
childs[route].restore()
}
childs[route].show()
}
} catch (error) {
event.reply('open-route-reply', error)
}
})
function loadApp(self: BrowserWindow, route: string = ''): void {
if (serve) {
require('electron-reload')(__dirname, {
electron: require(`${__dirname}/node_modules/electron`),
})
self.loadURL('http://localhost:4200' + route)
self.webContents.openDevTools({ mode: 'undocked' })
} else {
const appUrl = url.format({
pathname: path.join(__dirname, 'dist/index.html'),
protocol: 'file:',
slashes: true,
})
self.loadURL(appUrl + route)
}
}
/* tray */
function createTray(): Tray {
const iconFolder = serve ? 'src' : 'dist'
const iconFile = /^win/.test(process.platform) ? 'favicon.ico' : 'favicon.png'
tray = new Tray(path.join(__dirname, iconFolder, iconFile))
const items: MenuItemConstructorOptions[] = [
{
label: 'Settings',
type: 'normal',
click: () => send('show-user-settings'),
},
{
label: 'Reset Zoom',
type: 'normal',
click: () => send('reset-zoom'),
},
{
label: 'Relaunch',
type: 'normal',
click: () => send('app-relaunch'),
},
{
label: 'Hardware Acceleration',
type: 'checkbox',
checked: state.hardwareAcceleration,
click: () => {
state.hardwareAcceleration = !state.hardwareAcceleration
send('app-relaunch')
},
},
{
label: 'Changelog',
type: 'normal',
click: () => showChangelog(),
},
{
label: 'Exit',
type: 'normal',
click: () => send('app-quit'),
},
]
if (serve) {
items.splice(1, 0, {
label: 'Ignore Mouse Events',
type: 'normal',
click: () => win.setIgnoreMouseEvents(true),
})
}
if (debug || serve) {
items.splice(1, 0, {
label: 'Open Dev Tools',
type: 'normal',
click: () => {
if (win.webContents.isDevToolsOpened()) {
win.webContents.closeDevTools()
for (const child in childs) {
childs[child].webContents.closeDevTools()
}
} else {
win.webContents.openDevTools({ mode: 'undocked' })
for (const child in childs) {
childs[child].webContents.openDevTools({ mode: 'undocked' })
}
// Electron bug workaround: this must be triggered after the devtools loaded
win.setIgnoreMouseEvents(true, { forward: true })
}
},
})
}
menu = Menu.buildFromTemplate(items)
tray.setToolTip(`PoE Overlay: ${app.getVersion()}`)
tray.setContextMenu(menu)
tray.on('double-click', () => win.webContents.send('show-user-settings'))
return tray
}
try {
app.on('ready', () => {
/* delay create window in order to support transparent windows at linux. */
setTimeout(() => {
createWindow()
createTray()
}, 300)
setUserAgent()
})
app.on('window-all-closed', () => {
hook.unregister()
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (win === null) {
createWindow()
}
})
} catch (e) {
// Catch Error
// throw e;
}