-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock-server.js
92 lines (77 loc) · 2.54 KB
/
mock-server.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
const WebSocket = require('ws');
const readline = require('readline');
let connected = false;
const wss = new WebSocket.Server({ port: 8000, clientTracking: true });
function broadcast(message) {
for (const client of wss.clients) {
if (client.readyState == WebSocket.OPEN) {
client.send(message);
}
}
}
let latitude = 37.7706,
longitude = -122.3782,
direction = Math.random() * 2 * Math.PI,
speed = 0.001;
function convertToDegreesAndMinutes(input) {
if (input > 0) {
const degrees = Math.floor(input),
remainder = input - degrees;
return [degrees, remainder * 60];
} else {
const degrees = Math.ceil(input),
remainder = degrees - input;
return [degrees, remainder * 60];
}
}
function sendData() {
setTimeout(sendData, 500);
if (!connected) return;
direction += (Math.random() * 0.2) - 0.1;
latitude += speed * Math.sin(direction);
longitude += speed * Math.cos(direction);
const [latDeg, latMin] = convertToDegreesAndMinutes(latitude),
[longDeg, longMin] = convertToDegreesAndMinutes(longitude);
broadcast(JSON.stringify({ type: 'json', data: { altitude: Math.random() * 100 }}));
broadcast(JSON.stringify({
type: 'json',
data: {
position: {
latDeg,
longDeg,
latMin,
longMin,
satellites: Math.floor(Math.random() * 3 + 5),
},
},
}));
broadcast(JSON.stringify({ type: 'json', data: { airspeed: Math.random() * 50 }}));
// still need orientation...that may end up in a different format
broadcast(JSON.stringify({
type: 'json',
data: {
orientation: {
heading: Math.random() * 360 - 180,
pitch: Math.random() * 360 - 180,
roll: Math.random() * 360 - 180,
rollRate: Math.random() * 30 - 15,
},
},
}));
}
wss.on('connection', client => {
client.send(JSON.stringify({ type: 'status', connected }));
});
console.log('Listening on port 8000. Press enter to toggle whether port is connected.');
process.stdout.write('Port is disconnected.');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: false,
});
rl.on('line', line => {
connected = !connected;
process.stdout.write(`Port is ${connected ? 'connected' : 'disconnected'}.`);
broadcast(JSON.stringify({ type: 'status', connected }));
});
sendData();