Skip to content

任务命令树 ​

QGC 创建用户界面,动态地从json 元数据层次编辑特定的任务项命令。此层次结构称为任务命令树。这种方式只能在添加新命令时创建 json 元数据。

为什么是树型结构? ​

不同的固件支持不同的命令,以及/或者不同类型的载具以不同的方式支持不同的命令,因此需要使用树形结构来处理这些问题。最简单的例子是 mavlink 规范可能包含了并非所有固件都支持的命令参数。或仅适用于某些类型载具的命令参数。此外,在某些情况下,地面控制站可能会决定将某些命令参数在视图中对最终用户进行隐藏,因为它们过于复杂或导致可用性问题。

该树是 MissionCommandTree 类:MissionCommandTree.cc, MissionCommandTree.h

树根目录 ​

树的根目录是与 mavlink 规范完全匹配的json元数据。

下面是 MAV_CMD_NAV_WAYPOINT 的根 json 示例:

json
        {
            "id":                   16,
            "rawName":              "MAV_CMD_NAV_WAYPOINT",
            "friendlyName":         "Waypoint",
            "description":          "Travel to a position in 3D space.",
            "specifiesCoordinate":  true,
            "friendlyEdit":         true,
            "category":             "Basic",
            "param1": {
                "label":            "Hold",
                "units":            "secs",
                "default":          0,
                "decimalPlaces":    0
            },
            "param2": {
                "label":            "Acceptance",
                "units":            "m",
                "default":          3,
                "decimalPlaces":    2
            },
            "param3": {
                "label":            "PassThru",
                "units":            "m",
                "default":          0,
                "decimalPlaces":    2
            },
            "param4": {
                "label":            "Yaw",
                "units":            "deg",
                "nanUnchanged":     true,
                "default":          null,
                "decimalPlaces":    2
            }
        },

Note: In reality this based information should be provided by mavlink itself and not needed to be part of a GCS.

Leaf Nodes ​

The leaf nodes then provides metadata which can override values for the command and/or remove parameters from display to the user. 完整的树层次结构是这样:

  • 根-通用Mavlink
    • 特定的载具类型-特定载具的通用规范
    • 固件类型特定——每种固件类型的一个可选叶节点 (PX4/ArduPilot)
      • 特定载具型号——每种载具类型有一个可选的叶节点(固定翼/多旋翼/垂直起降飞行器(VTOL)/小车/潜艇)

注意:实际上,此替代功能应该是mavlink规格的一部分,并且应该可以从载具中查询。

从完整树中构建实例树 ​

由于json元数据提供了所有固件/载具类型组合的信息,实际使用的树必须建立在用于创建计划的固件和载具类型的基础上。这是通过一个进程叫做“折叠”完整树到一个固件/载具特定树(code)来完成的。

步骤如下:

  • 将根添加到实例树
  • 将特定的载具类型重写实例树
  • 对实例树应用固件类型特定覆盖
  • 对实例树应用固件/载具类型特定覆盖

然后,生成的任务命令树将为平面项目编辑器构建UI。实际上,它不仅用于此,还有许多其他地方可以帮助您了解有关特定命令 id 的更多信息。

MAV_CMD_NAV_WAYPOINT 示例层次结构 ​

让我们来看看 MAV_CMD_NAV_WAYPOINT 的示例层次结构。根信息如上图所示。

根-载具类型特定叶节点 ​

The next level of the hierarchy is generic mavlink but vehicle specific. Json 文件在这里: 多旋翼,固定翼,小车,潜艇, 垂直起降飞行器(VTOL)。 And here are the overrides for (Fixed Wings)(https://github.com/mavlink/qgroundcontrol/blob/master/src/MissionManager/MavCmdInfoFixedWing.json#L7):

json
        {
            "id":           16,
            "comment":      "MAV_CMD_NAV_WAYPOINT",
            "paramRemove":  "4"
        },

这样做是删除参数4的编辑界面,固定翼没有使用航向(Yaw)参数。由于这是根的叶节点,因此无论固件类型如何,这都适用于所有固定翼载具。

根-载具类型的特定叶节点 ​

The next level of the hierarchy are overrides which are specific to a firmware type but apply to all vehicle types. Once again lets look at the waypoint overrides:

ArduPilot:

json
        {
            "id":           16,
            "comment":      "MAV_CMD_NAV_WAYPOINT",
            "paramRemove":  "2"
        },

PX4:

json
        {
            "id":           16,
            "comment":      "MAV_CMD_NAV_WAYPOINT",
            "paramRemove":  "2,3"
        },

您可以看到,对于两个固件参数参数2,即接受半径,从编辑 ui 中删除。这是QGC的特性决定。与指定值相比,使用固件通用接受半径会更加安全和容易。因此,我们决定对用户隐藏它。

您还可以看到,对于 PX4 param3/PassThru,由于 PX 不支持它,因此已被删除。

根-特定于固件的类型-特定于载具类型的叶子节点 ​

The last level of the hierarchy is both firmware and vehicle type specific.

ArduPilot/MR:

json
        {
            "id":           16,
            "comment":      "MAV_CMD_NAV_WAYPOINT",
            "paramRemove":  "2,3,4"
        },

在这里你可以看到,ArduPilot的多电机载具参数2/3/4 Acceptance/PassThru/Yaw 已被移除。例如,航向(Yaw)是因为不支持所以被移除。由于这个代码如何工作的问题,您需要从较低级别重复重写。

任务命令界面信息 ​

两个类定义与命令相关联的元数据:

  • MissionCommandUIInfo-整个命令的元数据
  • MissionCmdParamInfo-命令中参数的元数据

源中注释了支持 json 键的完整详细信息。

任务指令信息:

cpp
/// UI Information associated with a mission command (MAV_CMD)
///
/// MissionCommandUIInfo is used to automatically generate editing ui for a MAV_CMD. This object also supports the concept of only having a set of partial
/// information for the command. This is used to create overrides of the base command information. For on override just specify the keys you want to modify
/// from the base command ui info. To override param ui info you must specify the entire MissionParamInfo object.
///
/// The json format for a MissionCommandUIInfo object is:
///
/// Key                     Type    Default     Description
/// id                      int     required    MAV_CMD id
/// comment                 string              Used to add a comment
/// rawName                 string  required    MAV_CMD enum name, should only be set of base tree information
/// friendlyName            string  rawName     Short description of command
/// description             string              Long description of command
/// specifiesCoordinate     bool    false       true: Command specifies a lat/lon/alt coordinate
/// specifiesAltitudeOnly   bool    false       true: Command specifies an altitude only (no coordinate)
/// standaloneCoordinate    bool    false       true: Vehicle does not fly through coordinate associated with command (example: ROI)
/// isLandCommand           bool    false       true: Command specifies a land command (LAND, VTOL_LAND, ...)
/// friendlyEdit            bool    false       true: Command supports friendly editing dialog, false: Command supports 'Show all values" style editing only
/// category                string  Advanced    Category which this command belongs to
/// paramRemove             string              Used by an override to remove params, example: "1,3" will remove params 1 and 3 on the override
/// param[1-7]              object              MissionCommandParamInfo object
///

任务参数信息https://github.com/mavlink/qgroundcontrol/blob/master/src/MissionManager/MissionCommandUIInfo.h#L25:

cpp
/// MissionCommandParamInfo 用于为与 MAV_CMD 相关的参数自动生成编辑用户界面。
///
/// MissionCommandParamInfo is used to automatically generate editing ui for a parameter associated with a MAV_CMD.
///
/// MissionCmdParamInfo 对象的 JSON 格式如下:
///
/// 键              类型    默认值       描述
/// label           string  必填项      文本字段的标签
/// units           string              值的单位,应使用 FactMetaData 单位字符串以实现自动转换translation
/// default         double  0.0/NaN     参数的默认值。如果未指定默认值且 nanUnchanged == true,则 defaultValue 为 NaN。
/// decimalPlaces   int     7           值要显示的小数位数
/// enumStrings     string              组合框中显示供选择的字符串
/// enumValues      string              与每个枚举字符串关联的值
/// nanUnchanged    bool    false       True: 值可设置为 NaN 以表示未更改