Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
86dc4154
Commit
86dc4154
authored
Feb 18, 2016
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2843 from DonLakeFlyer/LandStart
Land start is now standalone coordinate
parents
1f63fcfb
6c178d02
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
13 deletions
+14
-13
MavCmdInfoCommon.json
src/MissionManager/MavCmdInfoCommon.json
+1
-0
MissionCommandList.cc
src/MissionManager/MissionCommandList.cc
+13
-13
No files found.
src/MissionManager/MavCmdInfoCommon.json
View file @
86dc4154
...
...
@@ -542,6 +542,7 @@
"friendlyName"
:
"Land start"
,
"description"
:
"Marker to indicate start of landing sequence."
,
"specifiesCoordinate"
:
true
,
"standaloneCoordinate"
:
true
,
"friendlyEdit"
:
true
,
"category"
:
"Basic"
},
...
...
src/MissionManager/MissionCommandList.cc
View file @
86dc4154
...
...
@@ -82,7 +82,7 @@ void MissionCommandList::_loadMavCmdInfoJson(const QString& jsonFilename)
QJsonParseError
jsonParseError
;
QJsonDocument
doc
=
QJsonDocument
::
fromJson
(
bytes
,
&
jsonParseError
);
if
(
jsonParseError
.
error
!=
QJsonParseError
::
NoError
)
{
qWarning
()
<<
"Unable to open json document"
<<
jsonParseError
.
errorString
();
qWarning
()
<<
jsonFilename
<<
"Unable to open json document"
<<
jsonParseError
.
errorString
();
return
;
}
...
...
@@ -90,20 +90,20 @@ void MissionCommandList::_loadMavCmdInfoJson(const QString& jsonFilename)
int
version
=
json
.
value
(
_versionJsonKey
).
toInt
();
if
(
version
!=
1
)
{
qWarning
()
<<
"Invalid version"
<<
version
;
qWarning
()
<<
jsonFilename
<<
"Invalid version"
<<
version
;
return
;
}
QJsonValue
jsonValue
=
json
.
value
(
_mavCmdInfoJsonKey
);
if
(
!
jsonValue
.
isArray
())
{
qWarning
()
<<
"mavCmdInfo not array"
;
qWarning
()
<<
jsonFilename
<<
"mavCmdInfo not array"
;
return
;
}
QJsonArray
jsonArray
=
jsonValue
.
toArray
();
foreach
(
QJsonValue
info
,
jsonArray
)
{
if
(
!
info
.
isObject
())
{
qWarning
()
<<
"mavCmdArray should contain objects"
;
qWarning
()
<<
jsonFilename
<<
"mavCmdArray should contain objects"
;
return
;
}
QJsonObject
jsonObject
=
info
.
toObject
();
...
...
@@ -113,7 +113,7 @@ void MissionCommandList::_loadMavCmdInfoJson(const QString& jsonFilename)
QStringList
requiredKeys
;
requiredKeys
<<
_idJsonKey
<<
_rawNameJsonKey
;
if
(
!
JsonHelper
::
validateRequiredKeys
(
jsonObject
,
requiredKeys
,
errorString
))
{
qWarning
()
<<
errorString
;
qWarning
()
<<
jsonFilename
<<
errorString
;
return
;
}
...
...
@@ -126,7 +126,7 @@ void MissionCommandList::_loadMavCmdInfoJson(const QString& jsonFilename)
types
<<
QJsonValue
::
Double
<<
QJsonValue
::
String
<<
QJsonValue
::
String
<<
QJsonValue
::
String
<<
QJsonValue
::
Bool
<<
QJsonValue
::
Bool
<<
QJsonValue
::
Bool
<<
QJsonValue
::
Object
<<
QJsonValue
::
Object
<<
QJsonValue
::
Object
<<
QJsonValue
::
Object
<<
QJsonValue
::
String
;
if
(
!
JsonHelper
::
validateKeyTypes
(
jsonObject
,
keys
,
types
,
errorString
))
{
qWarning
()
<<
errorString
;
qWarning
()
<<
jsonFilename
<<
errorString
;
return
;
}
...
...
@@ -152,7 +152,7 @@ void MissionCommandList::_loadMavCmdInfoJson(const QString& jsonFilename)
<<
mavCmdInfo
->
_friendlyEdit
;
if
(
_mavCmdInfoMap
.
contains
((
MAV_CMD
)
mavCmdInfo
->
command
()))
{
qWarning
()
<<
"Duplicate command"
<<
mavCmdInfo
->
command
();
qWarning
()
<<
jsonFilename
<<
"Duplicate command"
<<
mavCmdInfo
->
command
();
return
;
}
...
...
@@ -172,14 +172,14 @@ void MissionCommandList::_loadMavCmdInfoJson(const QString& jsonFilename)
keys
<<
_defaultJsonKey
<<
_decimalPlacesJsonKey
<<
_enumStringsJsonKey
<<
_enumValuesJsonKey
<<
_labelJsonKey
<<
_unitsJsonKey
;
types
<<
QJsonValue
::
Double
<<
QJsonValue
::
Double
<<
QJsonValue
::
String
<<
QJsonValue
::
String
<<
QJsonValue
::
String
<<
QJsonValue
::
String
;
if
(
!
JsonHelper
::
validateKeyTypes
(
jsonObject
,
keys
,
types
,
errorString
))
{
qWarning
()
<<
errorString
;
qWarning
()
<<
jsonFilename
<<
errorString
;
return
;
}
mavCmdInfo
->
_friendlyEdit
=
true
;
// Assume friendly edit if we have params
if
(
!
paramObject
.
contains
(
_labelJsonKey
))
{
qWarning
()
<<
"param object missing label key"
<<
mavCmdInfo
->
rawName
()
<<
paramKey
;
qWarning
()
<<
jsonFilename
<<
"param object missing label key"
<<
mavCmdInfo
->
rawName
()
<<
paramKey
;
return
;
}
...
...
@@ -198,14 +198,14 @@ void MissionCommandList::_loadMavCmdInfoJson(const QString& jsonFilename)
double
value
=
enumValue
.
toDouble
(
&
convertOk
);
if
(
!
convertOk
)
{
qWarning
()
<<
"Bad enumValue"
<<
enumValue
;
qWarning
()
<<
jsonFilename
<<
"Bad enumValue"
<<
enumValue
;
return
;
}
paramInfo
->
_enumValues
<<
QVariant
(
value
);
}
if
(
paramInfo
->
_enumValues
.
count
()
!=
paramInfo
->
_enumStrings
.
count
())
{
qWarning
()
<<
"enum strings/values count mismatch"
<<
paramInfo
->
_enumStrings
.
count
()
<<
paramInfo
->
_enumValues
.
count
();
qWarning
()
<<
jsonFilename
<<
"enum strings/values count mismatch"
<<
paramInfo
->
_enumStrings
.
count
()
<<
paramInfo
->
_enumValues
.
count
();
return
;
}
...
...
@@ -224,11 +224,11 @@ void MissionCommandList::_loadMavCmdInfoJson(const QString& jsonFilename)
if
(
mavCmdInfo
->
friendlyEdit
())
{
if
(
mavCmdInfo
->
description
().
isEmpty
())
{
qWarning
()
<<
"Missing description"
<<
mavCmdInfo
->
rawName
();
qWarning
()
<<
jsonFilename
<<
"Missing description"
<<
mavCmdInfo
->
rawName
();
return
;
}
if
(
mavCmdInfo
->
rawName
()
==
mavCmdInfo
->
friendlyName
())
{
qWarning
()
<<
"Missing friendly name"
<<
mavCmdInfo
->
rawName
()
<<
mavCmdInfo
->
friendlyName
();
qWarning
()
<<
jsonFilename
<<
"Missing friendly name"
<<
mavCmdInfo
->
rawName
()
<<
mavCmdInfo
->
friendlyName
();
return
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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