UASWaypointManager.cc 7.79 KB
Newer Older
1 2 3 4
#include "UASWaypointManager.h"
#include "UAS.h"

UASWaypointManager::UASWaypointManager(UAS &_uas)
pixhawk's avatar
pixhawk committed
5 6 7 8 9 10
        : uas(_uas),
        current_wp_id(0),
        current_count(0),
        current_state(WP_IDLE),
        current_partner_systemid(0),
        current_partner_compid(0)
11 12 13 14 15 16 17
{
}

void UASWaypointManager::handleWaypointCount(quint8 systemId, quint8 compId, quint16 count)
{
    if (current_state == WP_GETLIST && systemId == current_partner_systemid && compId == current_partner_compid)
    {
18
        qDebug() << "got waypoint count (" << count << ") from ID " << systemId;
pixhawk's avatar
pixhawk committed
19

pixhawk's avatar
pixhawk committed
20 21 22 23 24
        if (count > 0)
        {
            current_count = count;
            current_wp_id = 0;
            current_state = WP_GETLIST_GETWPS;
25

pixhawk's avatar
pixhawk committed
26 27 28 29 30 31 32
            sendWaypointRequest(current_wp_id);
        }
        else
        {
            emit updateStatusString("done.");
            qDebug() << "No waypoints on UAS " << systemId;
        }
33 34 35
    }
}

pixhawk's avatar
pixhawk committed
36 37 38 39
void UASWaypointManager::handleWaypoint(quint8 systemId, quint8 compId, mavlink_waypoint_t *wp)
{
    if (systemId == current_partner_systemid && compId == current_partner_compid && current_state == WP_GETLIST_GETWPS && wp->seq == current_wp_id)
    {
pixhawk's avatar
pixhawk committed
40
        qDebug() << "got waypoint (" << wp->seq << ") from ID " << systemId << " x=" << wp->x << " y=" << wp->y << " z=" << wp->z;
pixhawk's avatar
pixhawk committed
41 42 43 44 45 46 47 48 49 50 51

        if(wp->seq == current_wp_id)
        {
            //update the UI FIXME
            emit waypointUpdated(uas.getUASID(), wp->seq, wp->x, wp->y, wp->z, wp->yaw, wp->autocontinue, wp->current);

            //get next waypoint
            current_wp_id++;

            if(current_wp_id < current_count)
            {
52
                sendWaypointRequest(current_wp_id);
pixhawk's avatar
pixhawk committed
53 54 55
            }
            else
            {
pixhawk's avatar
pixhawk committed
56
                // all waypoints retrieved, change state to idle
pixhawk's avatar
pixhawk committed
57 58 59 60 61
                current_state = WP_IDLE;
                current_count = 0;
                current_wp_id = 0;
                current_partner_systemid = 0;
                current_partner_compid = 0;
62 63 64

                emit updateStatusString("done.");

pixhawk's avatar
pixhawk committed
65
                qDebug() << "got all waypoints from ID " << systemId;
pixhawk's avatar
pixhawk committed
66 67 68 69
            }
        }
        else
        {
pixhawk's avatar
pixhawk committed
70
            //TODO: error handling
pixhawk's avatar
pixhawk committed
71 72 73 74
        }
    }
}

pixhawk's avatar
pixhawk committed
75
void UASWaypointManager::handleWaypointRequest(quint8 systemId, quint8 compId, mavlink_waypoint_request_t *wpr)
76
{
pixhawk's avatar
pixhawk committed
77
    if (systemId == current_partner_systemid && compId == current_partner_compid && ((current_state == WP_SENDLIST && wpr->seq == 0) || (current_state == WP_SENDLIST_SENDWPS && (wpr->seq == current_wp_id || wpr->seq == current_wp_id + 1)) || (current_state == WP_IDLE && wpr->seq == current_count-1)))
pixhawk's avatar
pixhawk committed
78 79
    {
        qDebug() << "handleWaypointRequest";
80

81
        if (wpr->seq < waypoint_buffer.count())
pixhawk's avatar
pixhawk committed
82
        {
pixhawk's avatar
pixhawk committed
83 84 85 86 87 88 89 90 91 92 93 94 95
            current_state = WP_SENDLIST_SENDWPS;
            current_wp_id = wpr->seq;
            sendWaypoint(current_wp_id);

            if(current_wp_id == waypoint_buffer.count()-1)
            {
                //all waypoints sent, but we still have to wait for a possible rerequest of the last waypoint
                current_state = WP_IDLE;

                emit updateStatusString("done.");

                qDebug() << "send all waypoints to ID " << systemId;
            }
pixhawk's avatar
pixhawk committed
96 97 98 99 100 101
        }
        else
        {
            //TODO: Error message or something
        }
    }
102 103 104 105
}

void UASWaypointManager::clearWaypointList()
{
pixhawk's avatar
pixhawk committed
106 107 108

}

109
void UASWaypointManager::currentWaypointChanged(quint16)
pixhawk's avatar
pixhawk committed
110 111 112 113
{

}

114
void UASWaypointManager::removeWaypointId(quint16)
pixhawk's avatar
pixhawk committed
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
{

}

void UASWaypointManager::requestWaypoints()
{
    if(current_state == WP_IDLE)
    {
        mavlink_message_t message;
        mavlink_waypoint_request_list_t wprl;

        wprl.target_system = uas.getUASID();
        wprl.target_component = MAV_COMP_ID_WAYPOINTPLANNER;

        current_state = WP_GETLIST;
        current_wp_id = 0;
        current_partner_systemid = uas.getUASID();
        current_partner_compid = MAV_COMP_ID_WAYPOINTPLANNER;

134 135 136
        const QString str = QString("requesting waypoint list...");
        emit updateStatusString(str);

pixhawk's avatar
pixhawk committed
137
        mavlink_msg_waypoint_request_list_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, &wprl);
pixhawk's avatar
pixhawk committed
138 139 140
        uas.sendMessage(message);

        qDebug() << "sent waypoint list request to ID " << wprl.target_system;
pixhawk's avatar
pixhawk committed
141 142 143
    }
}

144
void UASWaypointManager::sendWaypoints(const QVector<Waypoint*> &list)
pixhawk's avatar
pixhawk committed
145
{
146 147
    if (current_state == WP_IDLE)
    {
pixhawk's avatar
pixhawk committed
148
        if (list.count() > 0)
149
        {
pixhawk's avatar
pixhawk committed
150 151 152 153 154 155 156 157 158 159 160 161
            current_count = list.count();
            current_state = WP_SENDLIST;
            current_wp_id = 0;
            current_partner_systemid = uas.getUASID();
            current_partner_compid = MAV_COMP_ID_WAYPOINTPLANNER;

            //clear local buffer
            while(!waypoint_buffer.empty())
            {
                delete waypoint_buffer.back();
                waypoint_buffer.pop_back();
            }
pixhawk's avatar
pixhawk committed
162

pixhawk's avatar
pixhawk committed
163 164 165 166 167 168 169 170 171 172
            //copy waypoint data to local buffer
            for (int i=0; i < current_count; i++)
            {
                waypoint_buffer.push_back(new mavlink_waypoint_t);
                mavlink_waypoint_t *cur_d = waypoint_buffer.back();
                memset(cur_d, 0, sizeof(mavlink_waypoint_t));   //initialize with zeros
                const Waypoint *cur_s = list.at(i);

                cur_d->autocontinue = cur_s->getAutoContinue();
                cur_d->current = cur_s->getCurrent();
pixhawk's avatar
pixhawk committed
173 174
                cur_d->orbit = 0.1f;    //FIXME
                cur_d->type = 1;        //FIXME
pixhawk's avatar
pixhawk committed
175 176 177 178 179 180
                cur_d->seq = i;
                cur_d->x = cur_s->getX();
                cur_d->y = cur_s->getY();
                cur_d->z = cur_s->getZ();
                cur_d->yaw = cur_s->getYaw();
            }
181

pixhawk's avatar
pixhawk committed
182 183 184
            //send the waypoint count to UAS (this starts the send transaction)
            mavlink_message_t message;
            mavlink_waypoint_count_t wpc;
185

pixhawk's avatar
pixhawk committed
186 187 188
            wpc.target_system = uas.getUASID();
            wpc.target_component = MAV_COMP_ID_WAYPOINTPLANNER;
            wpc.count = current_count;
189

pixhawk's avatar
pixhawk committed
190 191 192 193 194
            const QString str = QString("start transmitting waypoints...");
            emit updateStatusString(str);

            mavlink_msg_waypoint_count_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, &wpc);
            uas.sendMessage(message);
195

pixhawk's avatar
pixhawk committed
196 197
            qDebug() << "sent waypoint count (" << wpc.count << ") to ID " << wpc.target_system;
        }
198 199 200 201 202 203
    }
    else
    {
        //we're in another transaction, ignore command
        qDebug() << "UASWaypointManager::sendWaypoints() doing something else ignoring command";
    }
pixhawk's avatar
pixhawk committed
204 205
}

206
void UASWaypointManager::sendWaypointRequest(quint16 seq)
pixhawk's avatar
pixhawk committed
207
{
208 209 210 211 212 213 214
    mavlink_message_t message;
    mavlink_waypoint_request_t wpr;

    wpr.target_system = uas.getUASID();
    wpr.target_component = MAV_COMP_ID_WAYPOINTPLANNER;
    wpr.seq = seq;

pixhawk's avatar
pixhawk committed
215 216 217
    const QString str = QString("retrieving waypoint ID %1 of %2 total").arg(wpr.seq).arg(current_count);
    emit updateStatusString(str);

218 219 220 221
    mavlink_msg_waypoint_request_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, &wpr);
    uas.sendMessage(message);

    qDebug() << "sent waypoint request (" << wpr.seq << ") to ID " << wpr.target_system;
pixhawk's avatar
pixhawk committed
222
}
pixhawk's avatar
pixhawk committed
223

pixhawk's avatar
pixhawk committed
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
void UASWaypointManager::sendWaypoint(quint16 seq)
{
    mavlink_message_t message;

    if (seq < waypoint_buffer.count())
    {
        mavlink_waypoint_t *wp;

        wp = waypoint_buffer.at(seq);
        wp->target_system = uas.getUASID();
        wp->target_component = MAV_COMP_ID_WAYPOINTPLANNER;

        const QString str = QString("sending waypoint ID %1 of %2 total").arg(wp->seq).arg(current_count);
        emit updateStatusString(str);

        mavlink_msg_waypoint_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, wp);
        uas.sendMessage(message);

        qDebug() << "sent waypoint (" << wp->seq << ") to ID " << wp->target_system;
    }
pixhawk's avatar
pixhawk committed
244 245 246 247 248
}

void UASWaypointManager::waypointChanged(Waypoint*)
{

249
}