forked from goodrobots/MAVCesium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__init__.py
246 lines (195 loc) · 9.36 KB
/
__init__.py
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
'''
Cesium map module
Samuel Dudley
Jan 2016
'''
import os, json, time, sys, uuid
from MAVProxy.modules.lib import mp_module
from MAVProxy.modules.lib import mp_settings
from pymavlink import mavutil
import threading
try:
import Queue as queue
except ImportError:
import queue
from MAVProxy.modules.mavproxy_cesium.app import cesium_web_server # the tornado web server
import webbrowser # open url's in browser window
from MAVProxy.modules.mavproxy_cesium.app.config import Configuration
class CesiumModule(mp_module.MPModule):
def __init__(self, mpstate, **kwargs):
super(CesiumModule, self).__init__(mpstate, "cesium", "Cesium map module", public = True)
self.add_command('cesium', self.cmd_cesium, [""])
self.data_stream = ['NAV_CONTROLLER_OUTPUT', 'VFR_HUD',
'ATTITUDE', 'GLOBAL_POSITION_INT',
'SYS_STATUS', 'MISSION_CURRENT',
'STATUSTEXT', 'FENCE_STATUS', 'WIND']
# if a configuration path was passed when the module was loaded attempt to use it
configuration_path = kwargs.get('configuration', None)
self.config = Configuration(configuration_path)
self.main_counter = 0
self.message_queue = queue.Queue()
self.wp_change_time = 0
self.fence_change_time = 0
self.rally_change_time = 0
self.flightmode = None
self.cesium_settings = mp_settings.MPSettings(
[ ('openbrowser', bool, False),
('debug', bool, self.config.MODULE_DEBUG)])
self.aircraft = {'lat':None, 'lon':None, 'alt_wgs84':None,
'roll':None, 'pitch':None, 'yaw':None}
self.pos_target = {'lat':None, 'lon':None, 'alt_wgs84':None}
self.fence = {}
self.mission = {}
self.server_thread = None
self.start_server()
if self.cesium_settings.openbrowser:
self.open_display_in_browser()
def start_server(self):
if self.main_counter == 0:
self.main_counter += 1
self.server_thread = threading.Thread(target=cesium_web_server.main, args = (self.config, self.callback,))
self.server_thread.daemon = True
self.server_thread.start()
# log.startLogging(sys.stdout)
self.mpstate.console.writeln('MAVCesium display loaded at http://'+self.config.SERVER_INTERFACE+":"+self.config.SERVER_PORT+'/'+self.config.APP_PREFIX, fg='white', bg='blue')
else:
time.sleep(0.1)
def stop_server(self):
cesium_web_server.stop_tornado(self.config)
def open_display_in_browser(self):
if self.web_server_thread.isAlive():
url = 'http://'+self.config.SERVER_INTERFACE+":"+self.config.SERVER_PORT+'/'+self.config.APP_PREFIX
try:
browser_controller = webbrowser.get('google-chrome')
browser_controller.open_new_tab(url)
except:
webbrowser.open_new_tab(url)
def callback(self, data):
'''callback for data coming in from a websocket'''
self.message_queue.put_nowait(data)
def send_data(self, data, target = None):
'''push json data to the browser via a websocket'''
payload = json.dumps(data).encode('utf8')
cesium_web_server.websocket_send_message(payload)
# TODO: direct messages to individual websockets, e.g. new connections
def cmd_cesium(self, args):
'''cesium command parser'''
usage = "usage: cesium <restart> <count> <set> (CESIUMSETTING)"
if len(args) == 0:
print(usage)
return
if args[0] == "set":
self.cesium_settings.command(args[1:])
elif args[0] == "count":
print('%u connected' % int(len(cesium_web_server.live_web_sockets)))
elif args[0] == "restart":
self.restart()
else:
print(usage)
def send_defines(self, target = None):
'''get the current mav defines and send them'''
miss_cmds = {}
frame_enum = {0: "Abs", 3: "Rel", 10: "AGL"}
# auto-generate the list of mission commands
for cmd in mavutil.mavlink.enums['MAV_CMD']:
enum = mavutil.mavlink.enums['MAV_CMD'][cmd]
name = enum.name
name = name.replace('MAV_CMD_','')
if name == 'ENUM_END':
continue
miss_cmds[cmd] = name
self.defines = {}
self.defines['frame_enum'] = frame_enum
self.defines['mission_commands'] = miss_cmds
self.send_data({"defines":self.defines}, target = target)
def send_fence(self):
'''load and draw the fence in cesium'''
self.fence = {}
self.fence_points_to_send = self.mpstate.public_modules['fence'].wploader.points
for point in self.fence_points_to_send:
point_dict = point.to_dict()
idx = point_dict['idx']
del point_dict['idx']
if idx != 0: # dont include the return location
self.fence[idx] = point_dict
self.send_data({"fence_data":self.fence})
def send_mission(self):
'''load and draw the mission in cesium'''
self.mission = {}
self.mission_points_to_send = self.mpstate.public_modules['wp'].wploader.wpoints
for point in self.mission_points_to_send:
point_dict = point.to_dict()
seq = point_dict['seq']
del point_dict['seq']
self.mission[seq] = point_dict
self.send_data({"mission_data":self.mission})
def send_flightmode(self):
self.send_data({"flightmode":self.master.flightmode})
self.flightmode = self.master.flightmode
def restart(self):
'''restart the web server'''
self.stop_server()
self.start_server()
def mavlink_packet(self, m):
'''handle an incoming mavlink packet'''
if self.master.flightmode != self.flightmode:
self.send_flightmode()
if m.get_type() == 'POSITION_TARGET_GLOBAL_INT':
msg_dict = m.to_dict()
self.pos_target['lat']= msg_dict['lat_int']
self.pos_target['lon'] = msg_dict['lon_int']
self.pos_target['alt_wgs84'] = msg_dict['alt']
if None not in self.pos_target.values():
self.send_data({"pos_target_data":self.pos_target})
if m.get_type() in self.data_stream:
msg_dict = m.to_dict()
msg_dict['timestamp'] = m._timestamp
self.send_data({'mav_data':msg_dict})
# if the waypoints have changed, redisplay
last_wp_change = self.module('wp').wploader.last_change
if self.wp_change_time != last_wp_change and abs(time.time() - last_wp_change) > 1:
self.wp_change_time = last_wp_change
self.send_mission()
# this may have affected the landing lines from the rally points:
self.rally_change_time = time.time()
# if the fence has changed, redisplay
if self.fence_change_time != self.module('fence').wploader.last_change:
self.fence_change_time = self.module('fence').wploader.last_change
self.send_fence()
def idle_task(self):
'''called on idle'''
while not self.message_queue.empty():
payload = self.message_queue.get_nowait()
if self.cesium_settings.debug:
print(payload)
if 'new_connection' in payload.keys():
self.send_defines(target=payload['new_connection'])
self.send_fence()
self.send_mission()
self.send_flightmode()
elif 'mode_set' in payload.keys():
self.mpstate.functions.process_stdin('%s' % (payload['mode_set']))
elif 'wp_set' in payload.keys():
self.mpstate.functions.process_stdin('wp set %u' % int(payload['wp_set']))
elif 'wp_move' in payload.keys():
self.mpstate.functions.process_stdin('wp move %u %f %f' % (
int(payload['wp_move']['idx']),
float(payload['wp_move']['lat']),
float(payload['wp_move']['lon'])
)
)
elif 'wp_remove' in payload.keys():
self.mpstate.functions.process_stdin('wp remove %u' % int(payload['wp_remove']))
elif 'wp_list' in payload.keys():
self.mpstate.functions.process_stdin('wp list')
elif 'fence_list' in payload.keys():
self.mpstate.functions.process_stdin('fence list')
else:
pass
def unload(self):
'''unload module'''
# override the unload method
self.stop_server()
def init(mpstate, **kwargs):
'''initialise module'''
return CesiumModule(mpstate, **kwargs)