forked from Omega-Numworks/Omega-External
-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.js
596 lines (521 loc) · 20.4 KB
/
index.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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
"use strict";
/*
Copyright (C) 2019 Damien Nicolet
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
angular.module('nwas', ['ngSanitize', 'pascalprecht.translate']).controller('main', function($scope, $http, apps, $translate) {
$scope.locale = $translate.use();
$scope.wallpaper = null;
$scope.apps = apps;
$scope.selectedApps = [];
$scope.customFiles = [];
$scope.webUSB = typeof navigator.usb !== 'undefined';
$scope.installText = "ERASE"
$scope.reload = function reload() {
document.location.reload();
}
function reloadInstallText() {
if($scope.selectedApps.length > 0 || $scope.customFiles.length > 0 || $scope.wallpaper != null) {
$scope.installText = "ERASE_AND_INSTALL";
} else {
$scope.installText = "ERASE";
}
}
$scope.$watch('selectedApps', function() {
reloadInstallText();
}, true);
$scope.$watch('customFiles', function() {
reloadInstallText();
}, true);
$scope.$watch('wallpaper', function() {
reloadInstallText();
}, true);
$scope.addApplication = function addApplication(app) {
if($scope.selectedApps.indexOf(app) < 0) {
$scope.selectedApps.push(app);
}
};
$scope.setWallpaper = function setWallpaper(el) {
let file = el[0].files[0];
el.value = null;
let reader = new FileReader();
reader.addEventListener("load", function() {
let img = document.createElement('img');
img.onload = function () {
$scope.$apply(function () {
let cropperDiv = document.getElementById("cropperDiv");
cropperDiv.innerText = "";
cropperDiv.appendChild(img);
$('#imageModal').modal('show');
img.style = "max-width: 100%;";
$scope.wallpaper = {
name: file.name,
cropper: new Cropper(img, {
aspectRatio: 320 / 222,
viewMode: 1
})
};
});
};
img.src = reader.result;
}, false);
if (file) {
reader.readAsDataURL(file);
}
};
$scope.saveCroppedWallpaper = function saveCroppedWallpaper() {
// Resize image
var canvas = document.createElement('canvas'),
ctx = canvas.getContext('2d');
canvas.width = 320;
canvas.height = 222;
ctx.drawImage($scope.wallpaper.cropper.getCroppedCanvas(), 0, 0, 320, 222);
$scope.wallpaper = {
name: $scope.wallpaper.name,
imagesrc: canvas.toDataURL("image/png")
};
document.getElementById("wallpaper-name").innerText = $scope.wallpaper.name;
$('#imageModal').modal('hide');
}
$scope.removeWallpaper = function removeWallpaper() {
$scope.wallpaper = null;
document.getElementById("wallpaper-file-input").value = null;
$translate("WALLPAPER_FILE").then(function (translatedValue) {
document.getElementById("wallpaper-name").innerText = translatedValue;
});
};
$scope.removeApplication = function removeApplication(app) {
let index = $scope.selectedApps.indexOf(app);
if(index >= 0) {
$scope.selectedApps.splice(index, 1);
}
};
$scope.removeFile = function removeFile(file) {
let index = $scope.customFiles.indexOf(file);
if(index >= 0) {
$scope.customFiles.splice(index, 1);
}
};
let link = function link(app, linkerScript) {
let output;
return new Promise(function (resolve, reject) {
let linkModule = {
arguments: ["/input.elf", "-o", "/output.elf", "-T", "/linker.ld"],
preRun: [ () => {
linkModule.FS.writeFile("/linker.ld", linkerScript);
linkModule.FS.createPreloadedFile("/", "input.elf", "apps/" + app.name + "/app.elf", true, true);
}],
postRun: [ () => {
output = linkModule.FS.readFile("/output.elf");
}]
};
ld(linkModule).then( () => {
let objcopyModule = {
arguments: ["-O", "binary", "/input.elf", "/output.bin"],
preRun: [ () => {
objcopyModule.FS.writeFile("/input.elf", output);
}],
postRun: [ () => {
resolve(objcopyModule.FS.readFile("/output.bin"));
}]
};
objcopy(objcopyModule);
});
});
};
let loadLinkerScript = function loadLinkerScript() {
return new Promise(function(resolve, reject) {
$http.get("apps/external.ld", {responseType: "text"})
.then(function successCallback(response) {
resolve(response.data);
}, function errorCallback(response) {
reject("Unable to download linker script");
});
});
}
/*
let inlineImage = function inlineImage(app) {
let img = new Image();
img.src = "apps/" + app.name + "/icon.png";
let canvas = document.createElement('canvas');
canvas.width = img.width;
canvas.height = img.height;
let context = canvas.getContext('2d');
context.drawImage(img, 0, 0);
let imgd = context.getImageData(0, 0, img.width, img.height);
let icon_rgba32 = new Uint32Array(imgd.data.buffer);
let icon_rgba8888 = new Uint8Array(imgd.data.buffer);
let icon_rgb565 = new Uint16Array(icon_rgba32.length);
for(let i = 0; i < icon_rgba32.length; i++) {
let r = icon_rgba8888[i * 4 + 0] / 255;
let g = icon_rgba8888[i * 4 + 1] / 255;
let b = icon_rgba8888[i * 4 + 2] / 255;
let a = icon_rgba8888[i * 4 + 3] / 255;
let br = r * a + 1 * (1 - a);
let bg = g * a + 1 * (1 - a);
let bb = b * a + 1 * (1 - a);
let ir = Math.round(br * 0xFF);
let ig = Math.round(bg * 0xFF);
let ib = Math.round(bb * 0xFF);
icon_rgb565[i] = (ir >> 3) << 11 | (ig >> 2) << 5 | (ib >> 3);
}
let final_data = new Uint8Array(icon_rgb565.buffer, icon_rgb565.byteOffset, icon_rgb565.byteLength);
let compressed = lz4.makeBlock(final_data);
return compressed;
}
*/
let normalizeTextFile = async function normalizeTextFile(file) {
const replaceAtIndex = (str, index, chr) => {
if(index > str.length-1) return str;
return str.substring(0,index) + chr + str.substring(index+1);
}
let blob = new Blob([file.binary], {type:'text/plain'});
return new Promise((resolve, reject) => {
blob.text().then(text => {
// TODO: Improve this, it is very inefficient
text = text.replaceAll("’", "'")
text = text.replaceAll(" «", '"')
text = text.replaceAll(" »", '"')
text = text.replaceAll("«", '"')
text = text.replaceAll("»", '"')
text = text.replaceAll("“", '"')
text = text.replaceAll("”", '"')
text = text.replaceAll("–", "-")
text = text.replaceAll("œ", "oe")
text = text.replaceAll("\r\n", "\n")
text = text.replaceAll("\r", "\n")
text = text.normalize('NFKD');
let t = new TextEncoder("UTF-8").encode(text);
resolve(t);
});
});
};
let fromPNGToOBM = function fromPNGToOBM(dataURL) {
//OBM (Omega Bit Map) is the wallpaper format of Omega
let img = new Image();
img.src = dataURL;
let canvas = document.createElement('canvas');
canvas.width = img.width;
canvas.height = img.height;
let img_header32 = new Uint32Array(3);
img_header32[0] = 466512775; //We use a "random" magic number
img_header32[1] = canvas.width;
img_header32[2] = canvas.height;
let context = canvas.getContext('2d');
context.drawImage(img, 0, 0);
let imgd = context.getImageData(0, 0, img.width, img.height);
let img_rgba32 = new Uint32Array(imgd.data.buffer);
let img_rgba8888 = new Uint8Array(imgd.data.buffer);
let img_rgb565 = new Uint16Array(img_rgba32.length);
for(let i = 0; i < img_rgba32.length; i++) {
let r = img_rgba8888[i * 4 + 0] / 255;
let g = img_rgba8888[i * 4 + 1] / 255;
let b = img_rgba8888[i * 4 + 2] / 255;
let a = img_rgba8888[i * 4 + 3] / 255;
let br = r * a + 1 * (1 - a);
let bg = g * a + 1 * (1 - a);
let bb = b * a + 1 * (1 - a);
let ir = Math.round(br * 0xFF);
let ig = Math.round(bg * 0xFF);
let ib = Math.round(bb * 0xFF);
img_rgb565[i] = (ir >> 3) << 11 | (ig >> 2) << 5 | (ib >> 3);
}
let img_header8 = new Uint8Array(img_header32.buffer, img_header32.byteOffset, img_header32.byteLength);
let img_data = new Uint8Array(img_rgb565.buffer, img_rgb565.byteOffset, img_rgb565.byteLength);
let final_data = Uint8Array.from([...img_header8, ...img_data]);
return final_data;
}
let buildArchive = async function buildArchive(applications, wallpaper, files) {
if(applications.length == 0 && files.length == 0 && wallpaper == null) {
return new Promise(function(resolve, reject) {
resolve(new Uint8Array(0x200));
});
} else {
let linkerScript = await loadLinkerScript();
let address = 0;
let tar = new tarball.TarWriter();
for(let i = 0; i < applications.length; i++) {
let app = applications[i];
console.log("Processing", app.name, address);
$scope.$apply(function() {
$scope.lastAction = $translate.instant("PROCESSING") + " " + app.name;
});
let binary = await link(app, linkerScript.replace("(0)", "(" + address + ")"));
address += 0x200 * Math.floor((binary.length + 1023) / 0x200);
console.log("Taring", app.name)
tar.addFileArrayBuffer(app.name, binary, {mode: "775"});
let resp = await $http.get("apps/" + app.name + "/app.icon", {responseType: "arraybuffer"});
files.push({
name: app.name + ".icon",
binary: resp.data
});
}
if(wallpaper != null) {
console.log("Inlining wallpaper");
$scope.$apply(function() {
$scope.lastAction = $translate.instant("ADDING") + " " + wallpaper.name;
});
files.push({
name: "wallpaper.obm",
binary: fromPNGToOBM(wallpaper.imagesrc)
});
}
for(let i = 0; i < files.length; i++) {
let file = files[i];
console.log("Taring", file.name)
$scope.$apply(function() {
$scope.lastAction = $translate.instant("ADDING") + " " + file.name;
});
if(file.name.endsWith(".txt") || file.name.endsWith(".urt")) {
console.log("Normalizing", file.name);
let normalized = await normalizeTextFile(file);
file = {
name: file.name,
binary: normalized
};
}
tar.addFileArrayBuffer(file.name, file.binary, {mode: "664"});
}
console.log("Build archive done");
return tar.write();
}
}
let reportStats = async function reportStats(applications, wallpaper) {
var xhr = new XMLHttpRequest();
xhr.open("POST", "https://externalstats.upsilon.yann.n1n1.xyz:25000/installation_stats/", true);
xhr.setRequestHeader('Content-Type', 'application/json');
let body = {};
body["installations"] = 1;
body["wallpaper_count"] = wallpaper ? 1 : 0;
body["applications"] = {};
for(let i = 0; i < applications.length; i++) {
body["applications"][applications[i].name] = 1
}
console.log(body);
xhr.send(JSON.stringify(body));
}
let uploadFile = async function uploadFile(selectedDevice, dfuDescriptor, file, manifest) {
console.log("uploading", dfuDescriptor);
let interfaces = dfu.findDeviceDfuInterfaces(selectedDevice);
console.log("interfaces", interfaces);
if (interfaces.length == 0) {
throw "The selected device does not have any USB DFU interfaces.";
}
interfaces[0].name = dfuDescriptor;
let device = new dfuse.Device(selectedDevice, interfaces[0]);
console.log("device", device);
await device.open();
try {
let status = await device.getStatus();
if (status.state == dfu.dfuERROR) {
await device.clearStatus();
}
} catch (error) {
console.log("Failed to clear status");
}
device.logProgress = function(done, total) {
console.log("progress", done, total);
$scope.$apply(function() {
$scope.progress = (done / total) * 100;
})
}
device.logInfo = function(message) {
console.log(message);
$scope.$apply(function() {
if(message.startsWith("Erasing")) {
$scope.lastAction = $translate.instant("DFU_ERASING");
} else if (message.startsWith("Copying")) {
$scope.lastAction = $translate.instant("DFU_COPYING");
} else if (message.startsWith("Wrote")) {
$scope.lastAction = $translate.instant("DFU_WROTE");
} else {
$scope.lastAction = message;
}
})
}
await device.do_download(2048, file, manifest).then(
() => {
console.log("done", dfuDescriptor);
},
error => {
throw error;
}
);
}
$scope.upload = function upload() {
delete $scope.error;
navigator.usb.requestDevice({
filters: [{
vendorId: 0x0483,
productId: 0xa291
}]
}).then(
async selectedDevice => {
console.log("Selected device", selectedDevice);
$scope.$apply(function() {
$scope.uploading = true;
});
let archive = await buildArchive($scope.selectedApps, $scope.wallpaper, $scope.customFiles);
console.log("Archive", archive);
// Add error when the destination address is bigger than the flash memory (8MB-2MB=6Mo, 0x90800000)
if (archive.length > 0x90800000 - 0x90200000) {
throw Error($translate.instant("TOO_MUCH_DATA"));
}
if (archive.length > 0x90400000 - 0x90200000 && dfu.findDeviceDfuInterfaces(selectedDevice).length == 1 && selectedDevice.productName == 'Upsilon Calculator') {
// It's a version of upsilon with the bootloader, but the dfu is executed from a slot, so a part of the flash memory is locked
throw Error($translate.instant("TOO_BIG_FILES"))
}
reportStats($scope.selectedApps, $scope.wallpaper)
await uploadFile(selectedDevice, "@External Flash /0x90200000/32*064Kg,64*064Kg", archive, false);
$scope.$apply(function() {
$scope.allDone = true;
});
}
).catch(error => {
console.log(error);
$scope.$apply(function() {
if(error.message != undefined && error.message.match("Address .*? outside of memory map")) {
$scope.error = $translate.instant("TOO_MUCH_FILES");
}
// Handle Unable to claim interface error
else if(error.message != undefined && error.message.match("Unable to claim interface")) {
$scope.error = $translate.instant("UNABLE_TO_CLAIM_INTERFACE");
}
else {
$scope.error = error;
}
$scope.allDone = false;
});
});
};
$scope.getFile = function getFile(el) {
for (let i = 0; i < el[0].files.length; i++) {
let file = el[0].files[i];
let reader = new FileReader();
reader.addEventListener("load", function() {
$scope.$apply(function() {
let found = $scope.customFiles.find(e => e.name == file.name);
if(found) {
console.log("replaced", file);
found.binary = reader.result;
} else {
console.log("loaded", file);
$scope.customFiles.push(
{name: file.name, binary: reader.result}
);
}
$(file).val("");
})
}, false);
$scope.$apply(function() {
if (file) {
console.log("loading", file);
reader.readAsArrayBuffer(file);
}
});
}
};
}).directive("ngFileSelect", function() {
return {
link: function($scope, el) {
el.bind("change", function(e) {
$scope.getFile(el);
})
}
}
}).directive("ngWallpaperSelect", function() {
return {
link: function($scope, el) {
el.bind("change", function(e) {
$scope.setWallpaper(el);
})
}
}
}).config(function ($translateProvider) {
$translateProvider
.translations('en', {
TITLE: 'Unofficial N0110 application repository',
LEAD: 'Here you will find some installable applications for a N110 calculator.',
FIRMWARE: 'To install a compatible firmware on your calculator, please go ',
DISCLAIM: 'For more information (or filling an issue) please go ',
HERE: 'here',
NO_WEB_USB: 'Your browser does not support WebUSB, please use',
SELECTED_APPLICATIONS: 'Selected applications',
REMOVE: 'Remove',
CUSTOM_FILE: 'Custom file',
ERASE: 'Erase',
ERASE_AND_INSTALL: 'Erase and install',
WALLPAPER: "Wallpaper",
WALLPAPER_FILE: 'Image file',
AVAILABLE_APPLICATIONS: 'Available applications',
ADD: 'Add',
ACKNOWLEDGMENTS: 'Acknowledgments',
ALL_DONE: 'All done, click here to reload the page.',
ERROR: 'An error occurred',
PLEASE_RELOAD: 'Please reload the page',
PROCESSING: "Processing",
ADDING: "Adding",
DFU_ERASING: "Erasing",
DFU_COPYING: "Copying data",
DFU_WROTE: "Done",
TOO_MUCH_FILES: "Not enough space on the device",
OR: "or",
CROP_IMAGE_TITLE: "Crop wallpaper",
CROP_IMAGE_SAVE: "Save",
CANCEL: "Cancel",
CONTINUE: "Continue",
TOO_BIG_FILES: "You are writing a large amount of files to your calculator. If you are using a recent version of Upsilon, you must go through the bootloader (reset button on the back) to make sure that the files will not be written over running code.",
UNABLE_TO_CLAIM_INTERFACE: "Unable to claim interface. Please make sure that no other tab or application is using the calculator.",
TOO_MUCH_DATA: "You are writing too much data to your calculator. Please make sure that you are not writing more than 6MB of data. Try to remove some files or apps.",
})
.translations('fr', {
TITLE: 'Dépôt d\'application N0110 non officiel',
LEAD: 'Vous trouverez ici quelques application installables sur une calculatrice N110.',
FIRMWARE: 'Pour installer un micrologiciel compatible, veuillez vous rendre ',
DISCLAIM: 'Pour plus d\'informations (ou soumettre un problème) veuillez vous rendre ',
HERE: 'ici',
NO_WEB_USB: 'Votre navigateur ne supporte pas WebUSB, veuillez utiliser',
SELECTED_APPLICATIONS: 'Applications sélectionnées',
REMOVE: 'Supprimer',
CUSTOM_FILE: 'Fichier local',
ERASE: 'Effacer',
ERASE_AND_INSTALL: 'Effacer et installer',
WALLPAPER: 'Fond d\'écran',
WALLPAPER_FILE: 'Fichier image',
AVAILABLE_APPLICATIONS: 'Applications disponibles',
ADD: 'Ajouter',
ACKNOWLEDGMENTS: 'Remerciements',
ALL_DONE: 'Terminé, cliquez ici pour recharger la page.',
ERROR: 'Une erreur est survenue',
PLEASE_RELOAD: 'Veuillez recharger la page',
PROCESSING: "Traitement de",
ADDING: "Ajout de",
DFU_ERASING: "Effacement",
DFU_COPYING: "Copie des fichiers",
DFU_WROTE: "Terminé",
TOO_MUCH_FILES: "Pas assez de place sur l'appareil",
OR: "ou",
CROP_IMAGE_TITLE: "Recadrer le fond d'écran",
CROP_IMAGE_SAVE: "Sauvegarder",
CANCEL: "Annuler",
TOO_BIG_FILES: "Vous écrivez une grande quantité de fichiers sur votre calculatrice. Si vous utilisez une version récente d'Upsilon, vous devez passer par le bootloader (bouton de réinitialisation à l'arrière) pour vous assurer que les fichiers ne seront pas écrits dans du code en cours d'exécution.",
UNABLE_TO_CLAIM_INTERFACE: "Impossible de réclamer l'interface. Veuillez vous assurer qu'aucun autre onglet ou application n'utilise la calculatrice.",
TOO_MUCH_DATA: "Vous écrivez trop de données sur votre calculatrice. Veuillez vous assurer que vous n'écrivez pas plus de 6Mo de données. Essayez de supprimer des fichiers ou des applications.",
})
.registerAvailableLanguageKeys(['en', 'fr'], {
'en_*': 'en',
'fr_*': 'fr',
'*': 'en',
})
.determinePreferredLanguage()
.useSanitizeValueStrategy('sanitizeParameters');
});