UASWaypointManager.cc 31.2 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2
/*=====================================================================

lm's avatar
lm committed
3
QGroundControl Open Source Ground Control Station
pixhawk's avatar
pixhawk committed
4

lm's avatar
lm committed
5
(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
pixhawk's avatar
pixhawk committed
6

lm's avatar
lm committed
7
This file is part of the QGROUNDCONTROL project
pixhawk's avatar
pixhawk committed
8

lm's avatar
lm committed
9
    QGROUNDCONTROL is free software: you can redistribute it and/or modify
pixhawk's avatar
pixhawk committed
10 11 12 13
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

lm's avatar
lm committed
14
    QGROUNDCONTROL is distributed in the hope that it will be useful,
pixhawk's avatar
pixhawk committed
15 16 17 18 19
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
lm's avatar
lm committed
20
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
pixhawk's avatar
pixhawk committed
21 22 23 24 25 26 27 28 29 30 31

======================================================================*/

/**
 * @file
 *   @brief Implementation of the waypoint protocol handler
 *
 *   @author Petri Tanskanen <mavteam@student.ethz.ch>
 *
 */

32 33
#include "UASWaypointManager.h"
#include "UAS.h"
34
#include "mavlink_types.h"
35

36
#define PROTOCOL_TIMEOUT_MS 2000    ///< maximum time to wait for pending messages until timeout
37
#define PROTOCOL_DELAY_MS 40        ///< minimum delay between sent messages
38
#define PROTOCOL_MAX_RETRIES 3      ///< maximum number of send retries (after timeout)
pixhawk's avatar
pixhawk committed
39

40
UASWaypointManager::UASWaypointManager(UAS &_uas)
41 42 43 44 45 46 47
    : uas(_uas),
      current_retries(0),
      current_wp_id(0),
      current_count(0),
      current_state(WP_IDLE),
      current_partner_systemid(0),
      current_partner_compid(0),
48
      protocol_timer(this),
pixhawk's avatar
pixhawk committed
49
      currentWaypointEditable(NULL)
pixhawk's avatar
pixhawk committed
50 51
{
    connect(&protocol_timer, SIGNAL(timeout()), this, SLOT(timeout()));
52 53
    connect(&uas, SIGNAL(localPositionChanged(UASInterface*,double,double,double,quint64)), this, SLOT(handleLocalPositionChanged(UASInterface*,double,double,double,quint64)));
    connect(&uas, SIGNAL(globalPositionChanged(UASInterface*,double,double,double,quint64)), this, SLOT(handleGlobalPositionChanged(UASInterface*,double,double,double,quint64)));
pixhawk's avatar
pixhawk committed
54 55 56
}

void UASWaypointManager::timeout()
57
{
58
    if (current_retries > 0) {
59 60
        protocol_timer.start(PROTOCOL_TIMEOUT_MS);
        current_retries--;
61
        emit updateStatusString(tr("Timeout, retrying (retries left: %1)").arg(current_retries));
62
        // // qDebug() << "Timeout, retrying (retries left:" << current_retries << ")";
63
        if (current_state == WP_GETLIST) {
64
            sendWaypointRequestList();
65
        } else if (current_state == WP_GETLIST_GETWPS) {
66
            sendWaypointRequest(current_wp_id);
67
        } else if (current_state == WP_SENDLIST) {
68
            sendWaypointCount();
69
        } else if (current_state == WP_SENDLIST_SENDWPS) {
70
            sendWaypoint(current_wp_id);
71
        } else if (current_state == WP_CLEARLIST) {
72
            sendWaypointClearAll();
73
        } else if (current_state == WP_SETCURRENT) {
74 75
            sendWaypointSetCurrent(current_wp_id);
        }
76
    } else {
77
        protocol_timer.stop();
pixhawk's avatar
pixhawk committed
78

79
        // // qDebug() << "Waypoint transaction (state=" << current_state << ") timed out going to state WP_IDLE";
pixhawk's avatar
pixhawk committed
80

81
        emit updateStatusString("Operation timed out.");
pixhawk's avatar
pixhawk committed
82

83 84 85 86 87 88
        current_state = WP_IDLE;
        current_count = 0;
        current_wp_id = 0;
        current_partner_systemid = 0;
        current_partner_compid = 0;
    }
89 90
}

91 92 93 94
void UASWaypointManager::handleLocalPositionChanged(UASInterface* mav, double x, double y, double z, quint64 time)
{
    Q_UNUSED(mav);
    Q_UNUSED(time);
pixhawk's avatar
pixhawk committed
95
    if (waypointsEditable.count() > 0 && currentWaypointEditable && (currentWaypointEditable->getFrame() == MAV_FRAME_LOCAL_NED || currentWaypointEditable->getFrame() == MAV_FRAME_LOCAL_ENU))
96
    {
pixhawk's avatar
pixhawk committed
97 98 99
        double xdiff = x-currentWaypointEditable->getX();
        double ydiff = y-currentWaypointEditable->getY();
        double zdiff = z-currentWaypointEditable->getZ();
100 101 102 103 104 105 106 107 108 109
        double dist = sqrt(xdiff*xdiff + ydiff*ydiff + zdiff*zdiff);
        emit waypointDistanceChanged(dist);
    }
}

void UASWaypointManager::handleGlobalPositionChanged(UASInterface* mav, double lat, double lon, double alt, quint64 time)
{

}

110 111
void UASWaypointManager::handleWaypointCount(quint8 systemId, quint8 compId, quint16 count)
{
112
    if (current_state == WP_GETLIST && systemId == current_partner_systemid && compId == current_partner_compid) {
113 114 115
        protocol_timer.start(PROTOCOL_TIMEOUT_MS);
        current_retries = PROTOCOL_MAX_RETRIES;

116
        // // qDebug() << "got waypoint count (" << count << ") from ID " << systemId;
pixhawk's avatar
pixhawk committed
117

118
        if (count > 0) {
pixhawk's avatar
pixhawk committed
119 120 121
            current_count = count;
            current_wp_id = 0;
            current_state = WP_GETLIST_GETWPS;
122

pixhawk's avatar
pixhawk committed
123
            sendWaypointRequest(current_wp_id);
124
        } else {
125
            protocol_timer.stop();
pixhawk's avatar
pixhawk committed
126
            emit updateStatusString("done.");
127
            // // qDebug() << "No waypoints on UAS " << systemId;
128 129 130 131 132
            current_state = WP_IDLE;
            current_count = 0;
            current_wp_id = 0;
            current_partner_systemid = 0;
            current_partner_compid = 0;
pixhawk's avatar
pixhawk committed
133
        }
134 135
    } else {
        qDebug("Rejecting message, check mismatch: current_state: %d == %d, system id %d == %d, comp id %d == %d", current_state, WP_GETLIST, current_partner_systemid, systemId, current_partner_compid, compId);
136
    }
137 138
}

lm's avatar
lm committed
139
void UASWaypointManager::handleWaypoint(quint8 systemId, quint8 compId, mavlink_mission_item_t *wp)
pixhawk's avatar
pixhawk committed
140
{
141
    if (systemId == current_partner_systemid && compId == current_partner_compid && current_state == WP_GETLIST_GETWPS && wp->seq == current_wp_id) {
142 143 144
        protocol_timer.start(PROTOCOL_TIMEOUT_MS);
        current_retries = PROTOCOL_MAX_RETRIES;

145
        if(wp->seq == current_wp_id) {
146
            //// // qDebug() << "Got WP: " << wp->seq << wp->x <<  wp->y << wp->z << wp->param4 << "auto:" << wp->autocontinue << "curr:" << wp->current << wp->param1 << wp->param2 << "Frame:"<< (MAV_FRAME) wp->frame << "Command:" << (MAV_CMD) wp->command;
pixhawk's avatar
pixhawk committed
147 148 149 150 151 152 153 154 155 156 157

            Waypoint *lwp_vo = new Waypoint(wp->seq, wp->x, wp->y, wp->z, wp->param1, wp->param2, wp->param3, wp->param4, wp->autocontinue, wp->current, (MAV_FRAME) wp->frame, (MAV_CMD) wp->command);
            addWaypointViewOnly(lwp_vo);


            if (read_to_edit == true) {
                Waypoint *lwp_ed = new Waypoint(wp->seq, wp->x, wp->y, wp->z, wp->param1, wp->param2, wp->param3, wp->param4, wp->autocontinue, wp->current, (MAV_FRAME) wp->frame, (MAV_CMD) wp->command);
                addWaypointEditable(lwp_ed, false);
                if (wp->current == 1) currentWaypointEditable = lwp_ed;
            }

pixhawk's avatar
pixhawk committed
158 159 160 161

            //get next waypoint
            current_wp_id++;

162
            if(current_wp_id < current_count) {
163
                sendWaypointRequest(current_wp_id);
164
            } else {
165 166
                sendWaypointAck(0);

pixhawk's avatar
pixhawk committed
167
                // all waypoints retrieved, change state to idle
pixhawk's avatar
pixhawk committed
168 169 170 171 172
                current_state = WP_IDLE;
                current_count = 0;
                current_wp_id = 0;
                current_partner_systemid = 0;
                current_partner_compid = 0;
173

pixhawk's avatar
pixhawk committed
174
                protocol_timer.stop();
175
                emit readGlobalWPFromUAS(false);
pixhawk's avatar
pixhawk committed
176
                if (currentWaypointEditable) emit currentWaypointChanged(currentWaypointEditable->getId());
177 178
                emit updateStatusString("done.");

179
                // // qDebug() << "got all waypoints from ID " << systemId;
pixhawk's avatar
pixhawk committed
180
            }
181
        } else {
182
            emit updateStatusString(tr("Waypoint ID mismatch, rejecting waypoint"));
pixhawk's avatar
pixhawk committed
183
        }
184 185
    } else {
        qDebug("Rejecting message, check mismatch: current_state: %d == %d, system id %d == %d, comp id %d == %d", current_state, WP_GETLIST, current_partner_systemid, systemId, current_partner_compid, compId);
186
    }
pixhawk's avatar
pixhawk committed
187 188
}

lm's avatar
lm committed
189
void UASWaypointManager::handleWaypointAck(quint8 systemId, quint8 compId, mavlink_mission_ack_t *wpa)
190
{
191 192
    if (systemId == current_partner_systemid && compId == current_partner_compid) {
        if((current_state == WP_SENDLIST || current_state == WP_SENDLIST_SENDWPS) && (current_wp_id == waypoint_buffer.count()-1 && wpa->type == 0)) {
193 194
            //all waypoints sent and ack received
            protocol_timer.stop();
195
            current_state = WP_IDLE;
196
            emit updateStatusString("done.");
197
            // // qDebug() << "sent all waypoints to ID " << systemId;
198
        } else if(current_state == WP_CLEARLIST) {
199 200 201
            protocol_timer.stop();
            current_state = WP_IDLE;
            emit updateStatusString("done.");
202
            // // qDebug() << "cleared waypoint list of ID " << systemId;
203
        }
204 205 206
    }
}

lm's avatar
lm committed
207
void UASWaypointManager::handleWaypointRequest(quint8 systemId, quint8 compId, mavlink_mission_request_t *wpr)
208
{
209
    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)))) {
210 211
        protocol_timer.start(PROTOCOL_TIMEOUT_MS);
        current_retries = PROTOCOL_MAX_RETRIES;
212

213
        if (wpr->seq < waypoint_buffer.count()) {
pixhawk's avatar
pixhawk committed
214 215 216
            current_state = WP_SENDLIST_SENDWPS;
            current_wp_id = wpr->seq;
            sendWaypoint(current_wp_id);
217
        } else {
pixhawk's avatar
pixhawk committed
218 219
            //TODO: Error message or something
        }
220 221
    } else {
        qDebug("Rejecting message, check mismatch: current_state: %d == %d, system id %d == %d, comp id %d == %d", current_state, WP_GETLIST, current_partner_systemid, systemId, current_partner_compid, compId);
222
    }
223 224
}

lm's avatar
lm committed
225
void UASWaypointManager::handleWaypointReached(quint8 systemId, quint8 compId, mavlink_mission_item_reached_t *wpr)
226
{
lm's avatar
lm committed
227
    if (systemId == uas.getUASID()) {
pixhawk's avatar
pixhawk committed
228 229
        emit updateStatusString(QString("Reached waypoint %1").arg(wpr->seq));
    }
pixhawk's avatar
pixhawk committed
230 231
}

lm's avatar
lm committed
232
void UASWaypointManager::handleWaypointCurrent(quint8 systemId, quint8 compId, mavlink_mission_current_t *wpc)
pixhawk's avatar
pixhawk committed
233
{
lm's avatar
lm committed
234
    if (systemId == uas.getUASID()) {
235
        // FIXME Petri
236
        if (current_state == WP_SETCURRENT) {
237 238
            protocol_timer.stop();
            current_state = WP_IDLE;
239 240

            // update the local main storage
pixhawk's avatar
pixhawk committed
241 242 243 244 245
            if (wpc->seq < waypointsViewOnly.size()) {
                for(int i = 0; i < waypointsViewOnly.size(); i++) {
                    if (waypointsViewOnly[i]->getId() == wpc->seq) {
                        waypointsViewOnly[i]->setCurrent(true);
                        //currentWaypointEditable = waypoints[i];
246
                    } else {
pixhawk's avatar
pixhawk committed
247
                        waypointsViewOnly[i]->setCurrent(false);
248 249 250
                    }
                }
            }
251
        }
252 253 254
        emit updateStatusString(QString("New current waypoint %1").arg(wpc->seq));
        //emit update to UI widgets
        emit currentWaypointChanged(wpc->seq);
pixhawk's avatar
pixhawk committed
255
    }
pixhawk's avatar
pixhawk committed
256 257
}

258
void UASWaypointManager::notifyOfChangeEditable(Waypoint* wp)
259
{
260
    // // qDebug() << "WAYPOINT CHANGED: ID:" << wp->getId();
261
    // If only one waypoint was changed, emit only WP signal
262
    if (wp != NULL) {
263
        emit waypointEditableChanged(uas.getUASID(), wp);
264
    } else {
265 266
        emit waypointEditableListChanged();
        emit waypointEditableListChanged(uas.getUASID());
267
    }
268 269
}

270 271 272 273 274 275 276 277 278
void UASWaypointManager::notifyOfChangeViewOnly(Waypoint* wp)
{
    if (wp != NULL) {
        emit waypointViewOnlyChanged(uas.getUASID(), wp);
    } else {
        emit waypointViewOnlyListChanged();
        emit waypointViewOnlyListChanged(uas.getUASID());
    }
}
279 280


281
int UASWaypointManager::setCurrentWaypoint(quint16 seq)
pixhawk's avatar
pixhawk committed
282
{
pixhawk's avatar
pixhawk committed
283
    if (seq < waypointsViewOnly.size()) {
284
        if(current_state == WP_IDLE) {
285 286

            /*
287
            //update local main storage
pixhawk's avatar
pixhawk committed
288 289 290 291
            for(int i = 0; i < waypointsViewOnly.size(); i++) {
                if (waypointsViewOnly[i]->getId() == seq) {
                    waypointsViewOnly[i]->setCurrent(true);
                    //currentWaypointEditable = waypoints[i];
292
                } else {
pixhawk's avatar
pixhawk committed
293
                    waypointsViewOnly[i]->setCurrent(false);
294 295
                }
            }
296
            */
297 298


299 300 301 302 303 304 305
            //send change to UAS - important to note: if the transmission fails, we have inconsistencies
            protocol_timer.start(PROTOCOL_TIMEOUT_MS);
            current_retries = PROTOCOL_MAX_RETRIES;

            current_state = WP_SETCURRENT;
            current_wp_id = seq;
            current_partner_systemid = uas.getUASID();
lm's avatar
lm committed
306
            current_partner_compid = MAV_COMP_ID_MISSIONPLANNER;
307 308 309 310 311 312 313 314 315 316 317

            sendWaypointSetCurrent(current_wp_id);

            //emit waypointListChanged();

            return 0;
        }
    }
    return -1;
}

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
int UASWaypointManager::setCurrentEditable(quint16 seq)
{
    if (seq < waypointsEditable.size()) {
        if(current_state == WP_IDLE) {
            //update local main storage
            for(int i = 0; i < waypointsEditable.size(); i++) {
                if (waypointsEditable[i]->getId() == seq) {
                    waypointsEditable[i]->setCurrent(true);
                    //currentWaypointEditable = waypoints[i];
                } else {
                    waypointsEditable[i]->setCurrent(false);
                }
            }

            return 0;
        }
    }
    return -1;
}
pixhawk's avatar
pixhawk committed
337 338 339 340

void UASWaypointManager::addWaypointViewOnly(Waypoint *wp)
{
    if (wp)
341
    {        
pixhawk's avatar
pixhawk committed
342 343 344 345 346 347 348 349 350
        waypointsViewOnly.insert(waypointsViewOnly.size(), wp);
        connect(wp, SIGNAL(changed(Waypoint*)), this, SLOT(notifyOfChangeViewOnly(Waypoint*)));

        emit waypointViewOnlyListChanged();
        emit waypointViewOnlyListChanged(uas.getUASID());
    }
}


pixhawk's avatar
pixhawk committed
351
/**
352
 * @warning Make sure the waypoint stays valid for the whole application lifecycle!
pixhawk's avatar
pixhawk committed
353
 * @param enforceFirstActive Enforces that the first waypoint is set as active
354
 * @see createWaypoint() is more suitable for most use cases
pixhawk's avatar
pixhawk committed
355
 */
356
void UASWaypointManager::addWaypointEditable(Waypoint *wp, bool enforceFirstActive)
357
{
lm's avatar
lm committed
358 359
    if (wp)
    {
pixhawk's avatar
pixhawk committed
360 361
        wp->setId(waypointsEditable.size());
        if (enforceFirstActive && waypointsEditable.size() == 0)
362 363
        {
            wp->setCurrent(true);
pixhawk's avatar
pixhawk committed
364
            currentWaypointEditable = wp;
365
        }
pixhawk's avatar
pixhawk committed
366
        waypointsEditable.insert(waypointsEditable.size(), wp);
367
        connect(wp, SIGNAL(changed(Waypoint*)), this, SLOT(notifyOfChangeEditable(Waypoint*)));
368

369 370
        emit waypointEditableListChanged();
        emit waypointEditableListChanged(uas.getUASID());
371
    }
pixhawk's avatar
pixhawk committed
372 373
}

374 375 376 377 378 379
/**
 * @param enforceFirstActive Enforces that the first waypoint is set as active
 */
Waypoint* UASWaypointManager::createWaypoint(bool enforceFirstActive)
{
    Waypoint* wp = new Waypoint();
pixhawk's avatar
pixhawk committed
380 381
    wp->setId(waypointsEditable.size());
    if (enforceFirstActive && waypointsEditable.size() == 0)
382 383
    {
        wp->setCurrent(true);
pixhawk's avatar
pixhawk committed
384
        currentWaypointEditable = wp;
385
    }
pixhawk's avatar
pixhawk committed
386
    waypointsEditable.insert(waypointsEditable.size(), wp);
387
    connect(wp, SIGNAL(changed(Waypoint*)), this, SLOT(notifyOfChangeEditable(Waypoint*)));
388

389 390
    emit waypointEditableListChanged();
    emit waypointEditableListChanged(uas.getUASID());
391 392 393
    return wp;
}

394
int UASWaypointManager::removeWaypoint(quint16 seq)
395
{
pixhawk's avatar
pixhawk committed
396
    if (seq < waypointsEditable.size())
397
    {
pixhawk's avatar
pixhawk committed
398 399
        Waypoint *t = waypointsEditable[seq];
        waypointsEditable.remove(seq);
400
        delete t;
401
        t = NULL;
402

pixhawk's avatar
pixhawk committed
403
        for(int i = seq; i < waypointsEditable.size(); i++)
404
        {
pixhawk's avatar
pixhawk committed
405
            waypointsEditable[i]->setId(i);
406
        }
Alejandro's avatar
Alejandro committed
407

408 409
        emit waypointEditableListChanged();
        emit waypointEditableListChanged(uas.getUASID());
410 411 412 413 414
        return 0;
    }
    return -1;
}

415
void UASWaypointManager::moveWaypoint(quint16 cur_seq, quint16 new_seq)
416
{
pixhawk's avatar
pixhawk committed
417
    if (cur_seq != new_seq && cur_seq < waypointsEditable.size() && new_seq < waypointsEditable.size())
418
    {
pixhawk's avatar
pixhawk committed
419
        Waypoint *t = waypointsEditable[cur_seq];
420
        if (cur_seq < new_seq) {
421 422
            for (int i = cur_seq; i < new_seq; i++)
            {
pixhawk's avatar
pixhawk committed
423
                waypointsEditable[i] = waypointsEditable[i+1];
424
            }
425 426 427 428 429
        }
        else
        {
            for (int i = cur_seq; i > new_seq; i--)
            {
pixhawk's avatar
pixhawk committed
430
                waypointsEditable[i] = waypointsEditable[i-1];
431 432
            }
        }
pixhawk's avatar
pixhawk committed
433
        waypointsEditable[new_seq] = t;
434

435 436
        emit waypointEditableListChanged();
        emit waypointEditableListChanged(uas.getUASID());
437 438 439
    }
}

440
void UASWaypointManager::saveWaypoints(const QString &saveFile)
441 442 443 444 445 446
{
    QFile file(saveFile);
    if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
        return;

    QTextStream out(&file);
447 448

    //write the waypoint list version to the first line for compatibility check
lm's avatar
lm committed
449
    out << "QGC WPL 110\r\n";
450

pixhawk's avatar
pixhawk committed
451
    for (int i = 0; i < waypointsEditable.size(); i++)
452
    {
pixhawk's avatar
pixhawk committed
453 454
        waypointsEditable[i]->setId(i);
        waypointsEditable[i]->save(out);
455 456 457 458
    }
    file.close();
}

459
void UASWaypointManager::loadWaypoints(const QString &loadFile)
460 461 462 463 464
{
    QFile file(loadFile);
    if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
        return;

pixhawk's avatar
pixhawk committed
465 466 467
    while(waypointsEditable.size()>0) {
        Waypoint *t = waypointsEditable[0];
        waypointsEditable.remove(0);
468 469 470 471
        delete t;
    }

    QTextStream in(&file);
472 473 474

    const QStringList &version = in.readLine().split(" ");

475 476
    if (!(version.size() == 3 && version[0] == "QGC" && version[1] == "WPL" && version[2] == "110"))
    {
477
        emit updateStatusString(tr("The waypoint file is not compatible with the current version of QGroundControl."));
478 479 480 481 482
    }
    else
    {
        while (!in.atEnd())
        {
483
            Waypoint *t = new Waypoint();
484 485
            if(t->load(in))
            {
pixhawk's avatar
pixhawk committed
486 487
                t->setId(waypointsEditable.size());
                waypointsEditable.insert(waypointsEditable.size(), t);
488 489 490
            }
            else
            {
491 492
                emit updateStatusString(tr("The waypoint file is corrupted. Load operation only partly succesful."));
                //MainWindow::instance()->showCriticalMessage(tr("Error loading waypoint file"),);
493 494
                break;
            }
495 496
        }
    }
497

498 499
    file.close();

500
    emit loadWPFile();
501 502
    emit waypointEditableListChanged();
    emit waypointEditableListChanged(uas.getUASID());
503 504 505
}

void UASWaypointManager::clearWaypointList()
pixhawk's avatar
pixhawk committed
506
{
507 508
    if(current_state == WP_IDLE)
    {
pixhawk's avatar
pixhawk committed
509
        protocol_timer.start(PROTOCOL_TIMEOUT_MS);
510
        current_retries = PROTOCOL_MAX_RETRIES;
pixhawk's avatar
pixhawk committed
511

512 513
        current_state = WP_CLEARLIST;
        current_wp_id = 0;
514
        current_partner_systemid = uas.getUASID();
lm's avatar
lm committed
515
        current_partner_compid = MAV_COMP_ID_MISSIONPLANNER;
pixhawk's avatar
pixhawk committed
516

517
        sendWaypointClearAll();
518 519 520
    }
}

521 522 523 524 525 526
const QVector<Waypoint *> UASWaypointManager::getGlobalFrameWaypointList()
{
    // TODO Keep this global frame list up to date
    // with complete waypoint list
    // instead of filtering on each request
    QVector<Waypoint*> wps;
pixhawk's avatar
pixhawk committed
527
    foreach (Waypoint* wp, waypointsEditable)
528 529 530
    {
        if (wp->getFrame() == MAV_FRAME_GLOBAL || wp->getFrame() == MAV_FRAME_GLOBAL_RELATIVE_ALT)
        {
531 532 533 534 535 536
            wps.append(wp);
        }
    }
    return wps;
}

lm's avatar
lm committed
537 538 539 540 541 542
const QVector<Waypoint *> UASWaypointManager::getGlobalFrameAndNavTypeWaypointList()
{
    // TODO Keep this global frame list up to date
    // with complete waypoint list
    // instead of filtering on each request
    QVector<Waypoint*> wps;
pixhawk's avatar
pixhawk committed
543
    foreach (Waypoint* wp, waypointsEditable)
544 545 546
    {
        if ((wp->getFrame() == MAV_FRAME_GLOBAL || wp->getFrame() == MAV_FRAME_GLOBAL_RELATIVE_ALT) && wp->isNavigationType())
        {
lm's avatar
lm committed
547 548 549 550 551 552
            wps.append(wp);
        }
    }
    return wps;
}

LM's avatar
LM committed
553 554 555 556 557 558
const QVector<Waypoint *> UASWaypointManager::getNavTypeWaypointList()
{
    // TODO Keep this global frame list up to date
    // with complete waypoint list
    // instead of filtering on each request
    QVector<Waypoint*> wps;
pixhawk's avatar
pixhawk committed
559
    foreach (Waypoint* wp, waypointsEditable)
560 561 562
    {
        if (wp->isNavigationType())
        {
LM's avatar
LM committed
563 564 565 566 567 568
            wps.append(wp);
        }
    }
    return wps;
}

569 570
int UASWaypointManager::getIndexOf(Waypoint* wp)
{
pixhawk's avatar
pixhawk committed
571
    return waypointsEditable.indexOf(wp);
572 573
}

574 575
int UASWaypointManager::getGlobalFrameIndexOf(Waypoint* wp)
{
pixhawk's avatar
pixhawk committed
576
    // Search through all waypointsEditable,
577 578
    // counting only those in global frame
    int i = 0;
pixhawk's avatar
pixhawk committed
579
    foreach (Waypoint* p, waypointsEditable) {
580 581 582 583
        if (p->getFrame() == MAV_FRAME_GLOBAL || wp->getFrame() == MAV_FRAME_GLOBAL_RELATIVE_ALT)
        {
            if (p == wp)
            {
584 585 586 587 588 589 590 591 592
                return i;
            }
            i++;
        }
    }

    return -1;
}

lm's avatar
lm committed
593 594
int UASWaypointManager::getGlobalFrameAndNavTypeIndexOf(Waypoint* wp)
{
pixhawk's avatar
pixhawk committed
595
    // Search through all waypointsEditable,
lm's avatar
lm committed
596 597
    // counting only those in global frame
    int i = 0;
pixhawk's avatar
pixhawk committed
598
    foreach (Waypoint* p, waypointsEditable) {
599
        if ((p->getFrame() == MAV_FRAME_GLOBAL || wp->getFrame() == MAV_FRAME_GLOBAL_RELATIVE_ALT) && p->isNavigationType())
600 601 602
        {
            if (p == wp)
            {
lm's avatar
lm committed
603 604 605 606 607 608 609 610 611
                return i;
            }
            i++;
        }
    }

    return -1;
}

LM's avatar
LM committed
612 613
int UASWaypointManager::getNavTypeIndexOf(Waypoint* wp)
{
pixhawk's avatar
pixhawk committed
614
    // Search through all waypointsEditable,
LM's avatar
LM committed
615 616
    // counting only those in global frame
    int i = 0;
pixhawk's avatar
pixhawk committed
617
    foreach (Waypoint* p, waypointsEditable)
618 619 620 621 622
    {
        if (p->isNavigationType())
        {
            if (p == wp)
            {
LM's avatar
LM committed
623 624 625 626 627 628 629 630 631
                return i;
            }
            i++;
        }
    }

    return -1;
}

632 633
int UASWaypointManager::getGlobalFrameCount()
{
pixhawk's avatar
pixhawk committed
634
    // Search through all waypointsEditable,
635 636
    // counting only those in global frame
    int i = 0;
pixhawk's avatar
pixhawk committed
637
    foreach (Waypoint* p, waypointsEditable)
638
    {
639 640
        if (p->getFrame() == MAV_FRAME_GLOBAL || p->getFrame() == MAV_FRAME_GLOBAL_RELATIVE_ALT)
        {
641 642 643 644 645 646 647
            i++;
        }
    }

    return i;
}

lm's avatar
lm committed
648 649
int UASWaypointManager::getGlobalFrameAndNavTypeCount()
{
pixhawk's avatar
pixhawk committed
650
    // Search through all waypointsEditable,
lm's avatar
lm committed
651 652
    // counting only those in global frame
    int i = 0;
pixhawk's avatar
pixhawk committed
653
    foreach (Waypoint* p, waypointsEditable) {
654
        if ((p->getFrame() == MAV_FRAME_GLOBAL || p->getFrame() == MAV_FRAME_GLOBAL_RELATIVE_ALT) && p->isNavigationType())
655
        {
lm's avatar
lm committed
656 657 658 659 660 661 662
            i++;
        }
    }

    return i;
}

LM's avatar
LM committed
663 664
int UASWaypointManager::getNavTypeCount()
{
pixhawk's avatar
pixhawk committed
665
    // Search through all waypointsEditable,
LM's avatar
LM committed
666 667
    // counting only those in global frame
    int i = 0;
pixhawk's avatar
pixhawk committed
668
    foreach (Waypoint* p, waypointsEditable) {
LM's avatar
LM committed
669 670 671 672 673 674 675 676
        if (p->isNavigationType()) {
            i++;
        }
    }

    return i;
}

677 678
int UASWaypointManager::getLocalFrameCount()
{
pixhawk's avatar
pixhawk committed
679
    // Search through all waypointsEditable,
680 681
    // counting only those in global frame
    int i = 0;
pixhawk's avatar
pixhawk committed
682
    foreach (Waypoint* p, waypointsEditable)
lm's avatar
lm committed
683
    {
684
        if (p->getFrame() == MAV_FRAME_LOCAL_NED || p->getFrame() == MAV_FRAME_LOCAL_ENU)
lm's avatar
lm committed
685
        {
686 687 688 689 690 691 692 693 694
            i++;
        }
    }

    return i;
}

int UASWaypointManager::getLocalFrameIndexOf(Waypoint* wp)
{
pixhawk's avatar
pixhawk committed
695
    // Search through all waypointsEditable,
696 697
    // counting only those in local frame
    int i = 0;
pixhawk's avatar
pixhawk committed
698
    foreach (Waypoint* p, waypointsEditable)
lm's avatar
lm committed
699 700 701
    {
        if (p->getFrame() == MAV_FRAME_LOCAL_NED || p->getFrame() == MAV_FRAME_LOCAL_ENU)
        {
702 703
            if (p == wp)
            {
704 705 706 707 708 709 710 711 712 713 714
                return i;
            }
            i++;
        }
    }

    return -1;
}

int UASWaypointManager::getMissionFrameIndexOf(Waypoint* wp)
{
pixhawk's avatar
pixhawk committed
715
    // Search through all waypointsEditable,
716 717
    // counting only those in mission frame
    int i = 0;
pixhawk's avatar
pixhawk committed
718
    foreach (Waypoint* p, waypointsEditable)
lm's avatar
lm committed
719
    {
720 721 722 723
        if (p->getFrame() == MAV_FRAME_MISSION)
        {
            if (p == wp)
            {
724 725 726 727 728 729 730 731 732
                return i;
            }
            i++;
        }
    }

    return -1;
}

pixhawk's avatar
pixhawk committed
733 734 735 736 737

/**
 * @param readToEdit If true, incoming waypoints will be copied both to "edit"-tab and "view"-tab. Otherwise, only to "view"-tab.
 */
void UASWaypointManager::readWaypoints(bool readToEdit)
738
{
pixhawk's avatar
pixhawk committed
739
    read_to_edit = readToEdit;
740
    emit readGlobalWPFromUAS(true);
741
    if(current_state == WP_IDLE) {
742

743 744 745 746 747 748 749 750 751 752 753 754
        //Clear the old view-list before receiving the new one
        while(waypointsViewOnly.size()>0) {
            delete waypointsViewOnly.back();
            waypointsViewOnly.pop_back();
        }

        //Clear the old edit-list before receiving the new one
        if (read_to_edit == true){
            while(waypointsEditable.size()>0) {
                delete waypointsEditable.back();
                waypointsEditable.pop_back();
            }
755 756
        }

757 758
        protocol_timer.start(PROTOCOL_TIMEOUT_MS);
        current_retries = PROTOCOL_MAX_RETRIES;
pixhawk's avatar
pixhawk committed
759 760 761 762

        current_state = WP_GETLIST;
        current_wp_id = 0;
        current_partner_systemid = uas.getUASID();
lm's avatar
lm committed
763
        current_partner_compid = MAV_COMP_ID_MISSIONPLANNER;
pixhawk's avatar
pixhawk committed
764

765
        sendWaypointRequestList();
766

pixhawk's avatar
pixhawk committed
767 768 769
    }
}

770
void UASWaypointManager::writeWaypoints()
pixhawk's avatar
pixhawk committed
771
{
772
    if (current_state == WP_IDLE) {
pixhawk's avatar
pixhawk committed
773
        // Send clear all if count == 0
pixhawk's avatar
pixhawk committed
774
        if (waypointsEditable.count() > 0) {
pixhawk's avatar
pixhawk committed
775
            protocol_timer.start(PROTOCOL_TIMEOUT_MS);
776
            current_retries = PROTOCOL_MAX_RETRIES;
pixhawk's avatar
pixhawk committed
777

pixhawk's avatar
pixhawk committed
778
            current_count = waypointsEditable.count();
pixhawk's avatar
pixhawk committed
779 780 781
            current_state = WP_SENDLIST;
            current_wp_id = 0;
            current_partner_systemid = uas.getUASID();
lm's avatar
lm committed
782
            current_partner_compid = MAV_COMP_ID_MISSIONPLANNER;
pixhawk's avatar
pixhawk committed
783 784

            //clear local buffer
pixhawk's avatar
pixhawk committed
785 786 787
            // Why not replace with waypoint_buffer.clear() ?
            // because this will lead to memory leaks, the waypoint-structs
            // have to be deleted, clear() would only delete the pointers.
788
            while(!waypoint_buffer.empty()) {
pixhawk's avatar
pixhawk committed
789 790 791
                delete waypoint_buffer.back();
                waypoint_buffer.pop_back();
            }
pixhawk's avatar
pixhawk committed
792

793 794
            bool noCurrent = true;

pixhawk's avatar
pixhawk committed
795
            //copy waypoint data to local buffer
796
            for (int i=0; i < current_count; i++) {
lm's avatar
lm committed
797 798 799
                waypoint_buffer.push_back(new mavlink_mission_item_t);
                mavlink_mission_item_t *cur_d = waypoint_buffer.back();
                memset(cur_d, 0, sizeof(mavlink_mission_item_t));   //initialize with zeros
pixhawk's avatar
pixhawk committed
800
                const Waypoint *cur_s = waypointsEditable.at(i);
pixhawk's avatar
pixhawk committed
801 802

                cur_d->autocontinue = cur_s->getAutoContinue();
803
                cur_d->current = cur_s->getCurrent() & noCurrent;   //make sure only one current waypoint is selected, the first selected will be chosen
804 805
                cur_d->param1 = cur_s->getParam1();
                cur_d->param2 = cur_s->getParam2();
lm's avatar
lm committed
806 807
                cur_d->param3 = cur_s->getParam3();
                cur_d->param4 = cur_s->getParam4();
808
                cur_d->frame = cur_s->getFrame();
lm's avatar
lm committed
809
                cur_d->command = cur_s->getAction();
810
                cur_d->seq = i;     // don't read out the sequence number of the waypoint class
pixhawk's avatar
pixhawk committed
811 812 813
                cur_d->x = cur_s->getX();
                cur_d->y = cur_s->getY();
                cur_d->z = cur_s->getZ();
814 815 816

                if (cur_s->getCurrent() && noCurrent)
                    noCurrent = false;
817 818
                if (i == (current_count - 1) && noCurrent == true) //not a single waypoint was set as "current"
                    cur_d->current = true; // set the last waypoint as current. Or should it better be the first waypoint ?
pixhawk's avatar
pixhawk committed
819
            }
820

821 822 823



pixhawk's avatar
pixhawk committed
824
            //send the waypoint count to UAS (this starts the send transaction)
825
            sendWaypointCount();
pixhawk's avatar
pixhawk committed
826
        }
pixhawk's avatar
pixhawk committed
827
    } else if (waypointsEditable.count() == 0) {
828
        sendWaypointClearAll();
829
    } else {
830
        //we're in another transaction, ignore command
831
        qDebug() << "UASWaypointManager::sendWaypoints() doing something else ignoring command";
832
    }
pixhawk's avatar
pixhawk committed
833 834
}

835 836 837
void UASWaypointManager::sendWaypointClearAll()
{
    mavlink_message_t message;
lm's avatar
lm committed
838
    mavlink_mission_clear_all_t wpca;
839 840

    wpca.target_system = uas.getUASID();
lm's avatar
lm committed
841
    wpca.target_component = MAV_COMP_ID_MISSIONPLANNER;
842

843
    emit updateStatusString(QString("Clearing waypoint list..."));
844

lm's avatar
lm committed
845
    mavlink_msg_mission_clear_all_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, &wpca);
846
    uas.sendMessage(message);
847
    MG::SLEEP::usleep(PROTOCOL_DELAY_MS * 1000);
848

849
    // // qDebug() << "sent waypoint clear all to ID " << wpca.target_system;
850 851 852 853 854
}

void UASWaypointManager::sendWaypointSetCurrent(quint16 seq)
{
    mavlink_message_t message;
lm's avatar
lm committed
855
    mavlink_mission_set_current_t wpsc;
856 857

    wpsc.target_system = uas.getUASID();
lm's avatar
lm committed
858
    wpsc.target_component = MAV_COMP_ID_MISSIONPLANNER;
859 860
    wpsc.seq = seq;

861
    emit updateStatusString(QString("Updating target waypoint..."));
862

lm's avatar
lm committed
863
    mavlink_msg_mission_set_current_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, &wpsc);
864
    uas.sendMessage(message);
865
    MG::SLEEP::usleep(PROTOCOL_DELAY_MS * 1000);
866

867
    // // qDebug() << "sent waypoint set current (" << wpsc.seq << ") to ID " << wpsc.target_system;
868 869 870 871 872
}

void UASWaypointManager::sendWaypointCount()
{
    mavlink_message_t message;
lm's avatar
lm committed
873
    mavlink_mission_count_t wpc;
874 875

    wpc.target_system = uas.getUASID();
lm's avatar
lm committed
876
    wpc.target_component = MAV_COMP_ID_MISSIONPLANNER;
877 878
    wpc.count = current_count;

879
    // // qDebug() << "sent waypoint count (" << wpc.count << ") to ID " << wpc.target_system;
880
    emit updateStatusString(QString("Starting to transmit waypoints..."));
881

lm's avatar
lm committed
882
    mavlink_msg_mission_count_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, &wpc);
883
    uas.sendMessage(message);
884
    MG::SLEEP::usleep(PROTOCOL_DELAY_MS * 1000);
885

886
    // // qDebug() << "sent waypoint count (" << wpc.count << ") to ID " << wpc.target_system;
887 888 889 890 891
}

void UASWaypointManager::sendWaypointRequestList()
{
    mavlink_message_t message;
lm's avatar
lm committed
892
    mavlink_mission_request_list_t wprl;
893 894

    wprl.target_system = uas.getUASID();
lm's avatar
lm committed
895
    wprl.target_component = MAV_COMP_ID_MISSIONPLANNER;
896

897
    emit updateStatusString(QString("Requesting waypoint list..."));
898

lm's avatar
lm committed
899
    mavlink_msg_mission_request_list_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, &wprl);
900
    uas.sendMessage(message);
901
    MG::SLEEP::usleep(PROTOCOL_DELAY_MS * 1000);
902

903
    // // qDebug() << "sent waypoint list request to ID " << wprl.target_system;
904 905


906 907
}

908
void UASWaypointManager::sendWaypointRequest(quint16 seq)
pixhawk's avatar
pixhawk committed
909
{
910
    mavlink_message_t message;
lm's avatar
lm committed
911
    mavlink_mission_request_t wpr;
912 913

    wpr.target_system = uas.getUASID();
lm's avatar
lm committed
914
    wpr.target_component = MAV_COMP_ID_MISSIONPLANNER;
915 916
    wpr.seq = seq;

917
    emit updateStatusString(QString("Retrieving waypoint ID %1 of %2 total").arg(wpr.seq).arg(current_count));
pixhawk's avatar
pixhawk committed
918

lm's avatar
lm committed
919
    mavlink_msg_mission_request_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, &wpr);
920
    uas.sendMessage(message);
921
    MG::SLEEP::usleep(PROTOCOL_DELAY_MS * 1000);
922

923
    // // qDebug() << "sent waypoint request (" << wpr.seq << ") to ID " << wpr.target_system;
pixhawk's avatar
pixhawk committed
924
}
pixhawk's avatar
pixhawk committed
925

pixhawk's avatar
pixhawk committed
926 927 928
void UASWaypointManager::sendWaypoint(quint16 seq)
{
    mavlink_message_t message;
929
    // // qDebug() <<" WP Buffer count: "<<waypoint_buffer.count();
pixhawk's avatar
pixhawk committed
930

931
    if (seq < waypoint_buffer.count()) {
932

lm's avatar
lm committed
933
        mavlink_mission_item_t *wp;
pixhawk's avatar
pixhawk committed
934

935

pixhawk's avatar
pixhawk committed
936 937
        wp = waypoint_buffer.at(seq);
        wp->target_system = uas.getUASID();
lm's avatar
lm committed
938
        wp->target_component = MAV_COMP_ID_MISSIONPLANNER;
pixhawk's avatar
pixhawk committed
939

940
        emit updateStatusString(QString("Sending waypoint ID %1 of %2 total").arg(wp->seq).arg(current_count));
pixhawk's avatar
pixhawk committed
941

942
        // // qDebug() << "sent waypoint (" << wp->seq << ") to ID " << wp->target_system<<" WP Buffer count: "<<waypoint_buffer.count();
943

lm's avatar
lm committed
944
        mavlink_msg_mission_item_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, wp);
pixhawk's avatar
pixhawk committed
945
        uas.sendMessage(message);
946
        MG::SLEEP::usleep(PROTOCOL_DELAY_MS * 1000);
pixhawk's avatar
pixhawk committed
947 948

    }
pixhawk's avatar
pixhawk committed
949
}
950 951 952 953

void UASWaypointManager::sendWaypointAck(quint8 type)
{
    mavlink_message_t message;
lm's avatar
lm committed
954
    mavlink_mission_ack_t wpa;
955 956

    wpa.target_system = uas.getUASID();
lm's avatar
lm committed
957
    wpa.target_component = MAV_COMP_ID_MISSIONPLANNER;
958 959
    wpa.type = type;

lm's avatar
lm committed
960
    mavlink_msg_mission_ack_encode(uas.mavlink->getSystemId(), uas.mavlink->getComponentId(), &message, &wpa);
961
    uas.sendMessage(message);
962
    MG::SLEEP::usleep(PROTOCOL_DELAY_MS * 1000);
963

964
    // // qDebug() << "sent waypoint ack (" << wpa.type << ") to ID " << wpa.target_system;
965
}