Skip to content

Commit 9c5d9f6

Browse files
modules: create Cockpit module
1 parent 888e97f commit 9c5d9f6

File tree

87 files changed

+2986
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+2986
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
#!/usr/bin/env python
2+
3+
'''
4+
MAVProxy Cockpit module that serves files from its directory
5+
'''
6+
7+
from MAVProxy.modules.lib import mp_module
8+
import os
9+
from http.server import HTTPServer, SimpleHTTPRequestHandler
10+
import threading
11+
12+
class CustomHTTPRequestHandler(SimpleHTTPRequestHandler):
13+
"""Custom handler that serves from absolute directory path"""
14+
def __init__(self, *args, directory=None, **kwargs):
15+
# SimpleHTTPRequestHandler supports absolute paths directly
16+
super().__init__(*args, directory=directory, **kwargs)
17+
18+
class Cockpit(mp_module.MPModule):
19+
def __init__(self, mpstate):
20+
super(Cockpit, self).__init__(mpstate, "cockpit", "Cockpit GCS module")
21+
22+
# Default port
23+
self.port = 8080
24+
self.output_str = 'wsserver:0.0.0.0:5010'
25+
26+
# Get the directory where this module file is located
27+
self.module_dir = os.path.dirname(os.path.abspath(__file__))
28+
self.html_dir = os.path.join(self.module_dir, 'static', 'dist')
29+
30+
# Start server automatically
31+
self.start_server()
32+
self.setup_output()
33+
34+
def start_server(self):
35+
'''Start the web server serving from module directory'''
36+
try:
37+
# Create handler class with bound directory
38+
handler = lambda *args, **kwargs: CustomHTTPRequestHandler(*args,
39+
directory=self.html_dir,
40+
**kwargs)
41+
42+
# Create and start server
43+
self.web_server = HTTPServer(('', self.port), handler)
44+
self.server_thread = threading.Thread(target=self.web_server.serve_forever)
45+
self.server_thread.daemon = True
46+
self.server_thread.start()
47+
print(f"\n\nWeb server running at http://localhost:{self.port}/?mainConnectionURI=ws://localhost:5010#/\n\n")
48+
49+
except Exception as e:
50+
print(f"Failed to start server: {e}")
51+
52+
def setup_output(self):
53+
'''Setup a new MAVLink output'''
54+
55+
self.module('output').cmd_output(['add', self.output_str])
56+
print(f"Added new MAVLink output: {self.output_str}")
57+
58+
def unload(self):
59+
'''Unload module'''
60+
# Stop the web server
61+
if hasattr(self, 'web_server'):
62+
self.web_server.shutdown()
63+
self.web_server.server_close()
64+
65+
# Remove the WebSocket output
66+
self.module('output').cmd_output(['remove', self.output_str])
67+
print(f"Removed MAVLink output: {self.output_str}")
68+
69+
def init(mpstate):
70+
'''Initialize module'''
71+
return Cockpit(mpstate)
Loading

MAVProxy/modules/mavproxy_cockpit/static/dist/assets/Alerter-DEqkvVsK.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.expanded-alerts-bar[invisible][data-v-d73840a1]{display:none}

MAVProxy/modules/mavproxy_cockpit/static/dist/assets/ArmerButton-DRTfH7xz.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.main[data-v-64737875]{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}

MAVProxy/modules/mavproxy_cockpit/static/dist/assets/Attitude-Dth1p80B.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MAVProxy/modules/mavproxy_cockpit/static/dist/assets/BaseCommIndicator-CwOgh1Jz.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MAVProxy/modules/mavproxy_cockpit/static/dist/assets/BatteryIndicator-B6Kq0Bu2.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.battery-icon{font-size:2.25rem;line-height:2.25rem}
Loading
Loading
Loading

MAVProxy/modules/mavproxy_cockpit/static/dist/assets/ChangeAltitudeCommander-VFYWHG4n.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MAVProxy/modules/mavproxy_cockpit/static/dist/assets/Clock-P2u5pIwI.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Loading

MAVProxy/modules/mavproxy_cockpit/static/dist/assets/Compass-Dqy1nyAf.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)