stratux/web/plates/js/traffic.js

179 wiersze
5.2 KiB
JavaScript
Czysty Zwykły widok Historia

angular.module('appControllers').controller('TrafficCtrl', TrafficCtrl); // get the main module contollers set
TrafficCtrl.$inject = ['$rootScope', '$scope', '$state', '$http', '$interval']; // Inject my dependencies
// create our controller function with all necessary logic
function TrafficCtrl($rootScope, $scope, $state, $http, $interval) {
$scope.$parent.helppage = 'plates/traffic-help.html';
$scope.data_list = [];
function utcTimeString(epoc) {
var time = "";
var val;
var d = new Date(epoc);
val = d.getUTCHours();
time += (val < 10 ? "0" + val : "" + val);
val = d.getUTCMinutes();
time += ":" + (val < 10 ? "0" + val : "" + val);
val = d.getUTCSeconds();
time += ":" + (val < 10 ? "0" + val : "" + val);
time += "Z";
return time;
}
function dmsString(val) {
return [0 | val,
'° ',
0 | (val < 0 ? val = -val : val) % 1 * 60,
"' ",
0 | val * 60 % 1 * 60,
'"'].join('');
}
function setAircraft(obj, new_traffic) {
new_traffic.icao_int = obj.Icao_addr;
new_traffic.icao = obj.Icao_addr.toString(16).toUpperCase();
new_traffic.tail = obj.Tail;
new_traffic.lat = dmsString(obj.Lat);
new_traffic.lon = dmsString(obj.Lng);
2015-12-31 01:01:36 +00:00
var n = Math.round(obj.Alt / 25) * 25;
new_traffic.alt = n.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
2015-12-31 01:01:36 +00:00
var s = Math.round(obj.Speed / 5) * 5;
if (obj.Speed_valid) {
new_traffic.speed = s.toString();
new_traffic.heading = Math.round(obj.Track / 5) * 5;
2015-12-31 01:01:36 +00:00
} else {
new_traffic.speed = "---";
new_traffic.heading = "---";
2015-12-31 01:01:36 +00:00
}
new_traffic.vspeed = Math.round(obj.Vvel / 100) * 100
2016-02-18 02:12:50 +00:00
var timestamp = Date.parse(obj.Timestamp);
new_traffic.time = utcTimeString(timestamp);
new_traffic.age = (Math.round(obj.Age * 10)/10).toFixed(1);
new_traffic.src = obj.Last_source; // 1=ES, 2=UAT
// return new_aircraft;
}
function connect($scope) {
if (($scope === undefined) || ($scope === null))
return; // we are getting called once after clicking away from the status page
if (($scope.socket === undefined) || ($scope.socket === null)) {
socket = new WebSocket(URL_TRAFFIC_WS);
$scope.socket = socket; // store socket in scope for enter/exit usage
}
$scope.ConnectState = "Disconnected";
socket.onopen = function (msg) {
// $scope.ConnectStyle = "label-success";
$scope.ConnectState = "Connected";
};
socket.onclose = function (msg) {
// $scope.ConnectStyle = "label-danger";
$scope.ConnectState = "Disconnected";
$scope.$apply();
setTimeout(connect, 1000);
};
socket.onerror = function (msg) {
// $scope.ConnectStyle = "label-danger";
$scope.ConnectState = "Problem";
$scope.$apply();
};
socket.onmessage = function (msg) {
2016-02-17 07:18:04 +00:00
console.log('Received traffic update.')
2016-02-17 07:18:04 +00:00
var message = JSON.parse(msg.data);
$scope.raw_data = angular.toJson(msg.data, true);
if (message.Position_valid) {
// we need to use an array so AngularJS can perform sorting; it also means we need to loop to find an aircraft in the traffic set
var found = false;
for (var i = 0, len = $scope.data_list.length; i < len; i++) {
if ($scope.data_list[i].icao_int === message.Icao_addr) {
setAircraft(message, $scope.data_list[i]);
found = true;
break;
}
}
if (!found) {
var new_traffic = {};
setAircraft(message, new_traffic);
$scope.data_list.unshift(new_traffic); // add to start of array
}
$scope.$apply();
}
};
}
2016-02-17 07:18:04 +00:00
var getClock = $interval(function () {
$http.get(URL_STATUS_GET).
then(function (response) {
globalStatus = angular.fromJson(response.data);
var tempClock = new Date(Date.parse(globalStatus.Clock));
var clockString = tempClock.toUTCString();
$scope.Clock = clockString;
var tempUptimeClock = new Date(Date.parse(globalStatus.UptimeClock));
var uptimeClockString = tempUptimeClock.toUTCString();
$scope.UptimeClock = uptimeClockString;
var tempLocalClock = new Date;
$scope.LocalClock = tempLocalClock.toUTCString();
$scope.SecondsFast = (tempClock-tempLocalClock)/1000;
}, function (response) {
// nop
});
}, 500, 0, false);
// perform cleanup every 10 seconds
var clearStaleTraffic = $interval(function () {
2016-02-18 06:10:21 +00:00
// remove stale aircraft = anything more than 59 seconds without an update
var dirty = false;
2016-02-18 06:10:21 +00:00
var cutoff =59;
for (var i = len = $scope.data_list.length; i > 0; i--) {
2016-02-18 06:10:21 +00:00
if ($scope.data_list[i - 1].age >= cutoff) {
$scope.data_list.splice(i - 1, 1);
dirty = true;
}
}
if (dirty) {
$scope.raw_data = "";
$scope.$apply();
}
}, (1000 * 10), 0, false);
$state.get('traffic').onEnter = function () {
// everything gets handled correctly by the controller
};
$state.get('traffic').onExit = function () {
// disconnect from the socket
if (($scope.socket !== undefined) && ($scope.socket !== null)) {
$scope.socket.close();
$scope.socket = null;
}
// stop stale traffic cleanup
$interval.cancel(clearStaleTraffic);
};
// Traffic Controller tasks
connect($scope); // connect - opens a socket and listens for messages
};