Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
7ed4afb2
Commit
7ed4afb2
authored
Jun 22, 2011
by
pixhawk
Browse files
Made OPMapControl work with multiple UAVs - more polishing and waypoint support needed
parent
8883cb23
Changes
2
Hide whitespace changes
Inline
Side-by-side
qgroundcontrol.pro
View file @
7ed4afb2
...
...
@@ -31,6 +31,7 @@ include(lib/nmea/nmea.pri)
#
provided
by
the
OpenPilot
team
-
thanks
,
great
piece
#
of
open
-
source
software
!
#
(
We
'
re
not
reusing
any
part
of
the
OP
GCS
,
just
the
map
library
)
include
(..
/
openpilot
/
ground
/
openpilotgcs
/
src
/
libs
/
utils
/
utils_external
.
pri
)
include
(..
/
openpilot
/
ground
/
openpilotgcs
/
src
/
libs
/
opmapcontrol
/
opmapcontrol_external
.
pri
)
#
include
(
lib
/
opmapcontrol
/
opmapcontrol
.
pri
)
...
...
@@ -117,13 +118,22 @@ include(qgroundcontrol.pri)
#
Include
QWT
plotting
library
include
(
src
/
lib
/
qwt
/
qwt
.
pri
)
DEPENDPATH
+=
.
\
\
#
lib
/
QMapControl
\
..
/
openpilot
/
ground
/
openpilotgcs
/
src
/
libs
/
utils
\
..
/
openpilot
/
ground
/
openpilotgcs
/
src
/
libs
/
utils
/
src
\
..
/
openpilot
/
ground
/
openpilotgcs
/
src
/
libs
/
opmapcontrol
\
..
/
openpilot
/
ground
/
openpilotgcs
/
src
/
libs
/
opmapcontrol
/
src
\
plugins
\
thirdParty
/
qserialport
/
include
\
thirdParty
/
qserialport
/
include
/
QtSerialPort
\
thirdParty
/
qserialport
#
lib
/
QMapControl
/
src
\
lib
/
opmapcontrollib
/
opmapcontrol
/
srcpluginsthirdParty
/
qserialport
/
includethirdParty
/
qserialport
/
include
/
QtSerialPortthirdParty
/
qserialport
INCLUDEPATH
+=
.
\
\
#
lib
/
QMapControl
\
lib
/
opmapcontrolthirdParty
/
qserialport
/
includethirdParty
/
qserialport
/
include
/
QtSerialPortthirdParty
/
qserialport
/
src
..
/
openpilot
/
ground
/
openpilotgcs
/
src
/
libs
/
utils
\
..
/
openpilot
/
ground
/
openpilotgcs
/
src
/
libs
\
..
/
openpilot
/
ground
/
openpilotgcs
/
src
/
libs
/
opmapcontrol
\
thirdParty
/
qserialport
/
include
\
thirdParty
/
qserialport
/
include
/
QtSerialPort
\
thirdParty
/
qserialport
/
src
#
Include
serial
port
library
#
include
(
src
/
lib
/
qextserialport
/
qextserialport
.
pri
)
...
...
@@ -148,7 +158,6 @@ FORMS += src/ui/MainWindow.ui \
src
/
ui
/
ObjectDetectionView
.
ui
\
src
/
ui
/
JoystickWidget
.
ui
\
src
/
ui
/
DebugConsole
.
ui
\
\
\
#
src
/
ui
/
MapWidget
.
ui
\
src
/
ui
/
XMLCommProtocolWidget
.
ui
\
src
/
ui
/
HDDisplay
.
ui
\
src
/
ui
/
MAVLinkSettingsWidget
.
ui
\
...
...
@@ -358,7 +367,6 @@ SOURCES += src/main.cc \
src
/
input
/
JoystickInput
.
cc
\
src
/
ui
/
JoystickWidget
.
cc
\
src
/
ui
/
DebugConsole
.
cc
\
\
\
#
src
/
ui
/
MapWidget
.
cc
\
src
/
ui
/
XMLCommProtocolWidget
.
cc
\
src
/
ui
/
mavlink
/
DomItem
.
cc
\
src
/
ui
/
mavlink
/
DomModel
.
cc
\
...
...
@@ -385,8 +393,6 @@ SOURCES += src/main.cc \
src
/
ui
/
QGCPxImuFirmwareUpdate
.
cc
\
src
/
ui
/
QGCDataPlot2D
.
cc
\
src
/
ui
/
linechart
/
IncrementalPlot
.
cc
\
\
\
#
src
/
ui
/
map
/
Waypoint2DIcon
.
cc
\
#
src
/
ui
/
map
/
MAV2DIcon
.
cc
\
src
/
ui
/
QGCRemoteControlView
.
cc
\
src
/
ui
/
RadioCalibration
/
RadioCalibrationWindow
.
cc
\
src
/
ui
/
RadioCalibration
/
AirfoilServoCalibrator
.
cc
\
...
...
@@ -420,6 +426,8 @@ SOURCES += src/main.cc \
src
/
uas
/
QGCUASParamManager
.
cc
\
src
/
ui
/
QGCMapWidget
.
cc
\
src
/
ui
/
mavlink
/
QGCMAVLinkTextEdit
.
cc
#
src
/
ui
/
map
/
Waypoint2DIcon
.
cc
\
#
src
/
ui
/
map
/
MAV2DIcon
.
cc
\
macx
|
win32
-
msvc2008
::
SOURCES
+=
src
/
ui
/
map3D
/
QGCGoogleEarthView
.
cc
contains
(
DEPENDENCIES_PRESENT
,
osg
)
{
message
(
"Including sources for OpenSceneGraph"
)
...
...
src/ui/QGCMapWidget.cc
View file @
7ed4afb2
...
...
@@ -107,16 +107,29 @@ void QGCMapWidget::addUAS(UASInterface* uas)
void
QGCMapWidget
::
updateGlobalPosition
(
UASInterface
*
uas
,
double
lat
,
double
lon
,
double
alt
,
quint64
usec
)
{
Q_UNUSED
(
usec
);
Q_UNUSED
(
alt
);
// FIXME Use altitude
static
int
uasid
=
220
;
if
(
uas
->
getUASID
()
==
uasid
)
// Get reference to graphic UAV item
mapcontrol
::
UAVItem
*
uav
=
GetUAV
(
uas
->
getUASID
());
// Check if reference is valid, else create a new one
if
(
uav
==
NULL
)
{
UAV
->
setPos
(
lon
,
lat
);
if
(
!
UAV
->
isVisible
())
UAV
->
show
();
qDebug
()
<<
"Updating 2D map position"
<<
uas
->
getUASID
()
<<
"LAT:"
<<
lat
<<
"LON:"
<<
lon
;
AddUAV
(
uas
->
getUASID
());
uav
=
GetUAV
(
uas
->
getUASID
());
}
// Set new lat/lon position of UAV icon
internals
::
PointLatLng
pos_lat_lon
=
internals
::
PointLatLng
(
lat
,
lon
);
uav
->
SetUAVPos
(
pos_lat_lon
,
alt
);
// static int uasid = 220;
// if (uas->getUASID() == uasid)
// {
// internals::PointLatLng pos_lat_lon = internals::PointLatLng(lat, lon);
// UAV->SetUAVPos(pos_lat_lon, alt);
// if (!UAV->isVisible()) UAV->show();
// qDebug() << "Updating 2D map position" << uas->getUASID() << "LAT:" << lat << "LON:" << lon;
// }
// QPointF coordinate;
// coordinate.setX(lon);
// coordinate.setY(lat);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment