-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
78 lines (70 loc) · 2.07 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
const { app, protocol, shell, Notification, Menu, Tray } = require('electron');
const path = require('path');
const fs = require('fs');
const protobuf = require('protobufjs');
app.on('ready', () => {
protocol.handle('file', (request, callback) => {
let filePath;
if (".level" in request.url) {
filePath = request.url.replace('file:///', '').replace('file://', '');
} else if (process.argv.length >= 2 && ".level" in process.argv[1]) {
filePath = process.argv[1];
}
handleLevelFile(filePath);
});
app.on('open-file', (event, filePath) => {
event.preventDefault();
handleLevelFile(filePath);
});
app.on('open-url', (event, filePath) => {
event.preventDefault();
handleLevelFile(filePath);
});
app.on('activate-with-no-open-windows', () => {
app.quit();
});
app.on('activate', () => {
app.quit();
});
});
function handleLevelFile(filePath) {
const protoFilePath = path.join(__dirname, 'proto.proto');
const protoRoot = protobuf.loadSync(protoFilePath);
const LevelMessage = protoRoot.lookupType('COD.Level.Level');
fs.readFile(filePath, (err, data) => {
if (err) {
new Notification({
title: "Error",
body: err.message
}).show();
return;
}
const decodedData = LevelMessage.decode(data);
const jsonData = LevelMessage.toObject(decodedData, {
longs: String,
enums: String,
bytes: String,
});
const baseFilePath = filePath.replace(".level", "");
let jsonFilePath = baseFilePath;
let i = 1;
while (fs.existsSync(jsonFilePath + ".json")) {
jsonFilePath = baseFilePath + "-" + i;
i++;
}
new Notification({
title: "GRAB Level",
body: path.parse(filePath).base + " -> " + path.parse(jsonFilePath + ".json").base
}).show();
fs.writeFile(jsonFilePath + ".json", JSON.stringify(jsonData, null, 2), (err) => {
if (err) {
new Notification({
title: "Error",
body: err.message
}).show();
return;
}
shell.openPath(jsonFilePath + ".json");
});
});
}