2014-02-14 13:18:19 +00:00
|
|
|
/*
|
|
|
|
If an id is also specified and a window with a matching id has been shown before, the remembered bounds of the window will be used instead.
|
2014-06-24 13:15:22 +00:00
|
|
|
|
2014-07-16 22:28:54 +00:00
|
|
|
Size calculation for innerBounds seems to be faulty, app was designed for 960x625
|
|
|
|
|
|
|
|
Bug was confirmed on Windows 7
|
|
|
|
OSX seems to be unaffected
|
|
|
|
Linux and cros is unknown
|
|
|
|
|
|
|
|
I am using arbitrary dimensions which fixes the Windows 7 problem, hopefully it will get resolved in future release so other OSs won't have to
|
|
|
|
use bigger dimensions by default.
|
2014-02-14 13:18:19 +00:00
|
|
|
*/
|
2014-08-14 14:23:08 +00:00
|
|
|
'use strict';
|
|
|
|
|
2014-10-07 15:40:52 +00:00
|
|
|
function startApplication() {
|
2014-10-01 12:08:15 +00:00
|
|
|
var applicationStartTime = new Date().getTime();
|
|
|
|
|
2013-04-08 15:29:52 +00:00
|
|
|
chrome.app.window.create('main.html', {
|
|
|
|
id: 'main-window',
|
2014-04-19 20:43:19 +00:00
|
|
|
frame: 'chrome',
|
2014-07-16 22:28:54 +00:00
|
|
|
innerBounds: {
|
|
|
|
minWidth: 974,
|
|
|
|
minHeight: 632
|
|
|
|
}
|
2014-08-10 04:01:44 +00:00
|
|
|
}, function (createdWindow) {
|
2014-10-01 12:08:15 +00:00
|
|
|
createdWindow.contentWindow.addEventListener('load', function () {
|
|
|
|
createdWindow.contentWindow.catch_startup_time(applicationStartTime);
|
|
|
|
});
|
2014-03-08 05:25:15 +00:00
|
|
|
|
2014-10-01 12:08:15 +00:00
|
|
|
createdWindow.onClosed.addListener(function () {
|
|
|
|
// autoamtically close the port when application closes
|
|
|
|
// save connectionId in separate variable before createdWindow.contentWindow is destroyed
|
|
|
|
var connectionId = createdWindow.contentWindow.serial.connectionId,
|
|
|
|
valid_connection = createdWindow.contentWindow.CONFIGURATOR.connectionValid,
|
|
|
|
mincommand = createdWindow.contentWindow.MISC.mincommand;
|
2014-03-08 05:25:15 +00:00
|
|
|
|
2014-06-27 15:31:12 +00:00
|
|
|
if (connectionId > 0 && valid_connection) {
|
|
|
|
// code below is handmade MSP message (without pretty JS wrapper), it behaves exactly like MSP.send_message
|
|
|
|
// reset motors to default (mincommand)
|
2014-10-01 12:08:15 +00:00
|
|
|
var bufferOut = new ArrayBuffer(22),
|
|
|
|
bufView = new Uint8Array(bufferOut),
|
|
|
|
checksum = 0;
|
2014-06-27 15:31:12 +00:00
|
|
|
|
|
|
|
bufView[0] = 36; // $
|
|
|
|
bufView[1] = 77; // M
|
|
|
|
bufView[2] = 60; // <
|
|
|
|
bufView[3] = 16; // data length
|
|
|
|
bufView[4] = 214; // MSP_SET_MOTOR
|
|
|
|
|
|
|
|
checksum = bufView[3] ^ bufView[4];
|
|
|
|
|
|
|
|
for (var i = 0; i < 16; i += 2) {
|
|
|
|
bufView[i + 5] = mincommand & 0x00FF;
|
|
|
|
bufView[i + 6] = mincommand >> 8;
|
|
|
|
|
|
|
|
checksum ^= bufView[i + 5];
|
|
|
|
checksum ^= bufView[i + 6];
|
|
|
|
}
|
|
|
|
|
|
|
|
bufView[5 + 16] = checksum;
|
|
|
|
|
2014-08-10 04:01:44 +00:00
|
|
|
chrome.serial.send(connectionId, bufferOut, function (sendInfo) {
|
|
|
|
chrome.serial.disconnect(connectionId, function (result) {
|
2014-06-27 15:31:12 +00:00
|
|
|
console.log('SERIAL: Connection closed - ' + result);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else if (connectionId > 0) {
|
2014-08-10 04:01:44 +00:00
|
|
|
chrome.serial.disconnect(connectionId, function (result) {
|
2013-12-06 17:32:32 +00:00
|
|
|
console.log('SERIAL: Connection closed - ' + result);
|
2013-06-19 11:06:14 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2013-04-08 15:29:52 +00:00
|
|
|
});
|
2013-11-12 06:15:18 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 15:40:52 +00:00
|
|
|
chrome.app.runtime.onLaunched.addListener(startApplication);
|
2013-11-12 06:15:18 +00:00
|
|
|
|
2014-08-10 04:01:44 +00:00
|
|
|
chrome.runtime.onInstalled.addListener(function (details) {
|
2014-03-08 05:25:15 +00:00
|
|
|
if (details.reason == 'update') {
|
2014-09-08 10:14:41 +00:00
|
|
|
var previousVersionArr = details.previousVersion.split('.'),
|
|
|
|
currentVersionArr = chrome.runtime.getManifest().version.split('.');
|
2014-03-08 05:25:15 +00:00
|
|
|
|
2014-05-10 12:24:14 +00:00
|
|
|
// only fire up notification sequence when one of the major version numbers changed
|
2014-09-08 10:14:41 +00:00
|
|
|
if (currentVersionArr[0] > previousVersionArr[0] || currentVersionArr[1] > previousVersionArr[1]) {
|
2014-08-10 04:01:44 +00:00
|
|
|
chrome.storage.local.get('update_notify', function (result) {
|
2014-08-14 15:03:47 +00:00
|
|
|
if (result.update_notify === 'undefined' || result.update_notify) {
|
2014-05-10 12:24:14 +00:00
|
|
|
var manifest = chrome.runtime.getManifest();
|
|
|
|
var options = {
|
|
|
|
priority: 0,
|
|
|
|
type: 'basic',
|
|
|
|
title: manifest.name,
|
|
|
|
message: chrome.i18n.getMessage('notifications_app_just_updated_to_version', [manifest.version]),
|
|
|
|
iconUrl: '/images/icon_128.png',
|
|
|
|
buttons: [{'title': chrome.i18n.getMessage('notifications_click_here_to_start_app')}]
|
|
|
|
};
|
|
|
|
|
2014-08-10 04:01:44 +00:00
|
|
|
chrome.notifications.create('baseflight_update', options, function (notificationId) {
|
2014-05-10 12:24:14 +00:00
|
|
|
// empty
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-11-12 06:15:18 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-08-10 04:01:44 +00:00
|
|
|
chrome.notifications.onButtonClicked.addListener(function (notificationId, buttonIndex) {
|
2013-11-12 06:15:18 +00:00
|
|
|
if (notificationId == 'baseflight_update') {
|
2014-10-07 15:40:52 +00:00
|
|
|
startApplication();
|
2013-11-12 06:15:18 +00:00
|
|
|
}
|
2013-04-08 15:29:52 +00:00
|
|
|
});
|