Skip to content
UASWaypointManager.cc 5.72 KiB
Newer Older
#include "UASWaypointManager.h"
#include "UAS.h"

UASWaypointManager::UASWaypointManager(UAS &_uas)
pixhawk's avatar
pixhawk committed
        : uas(_uas),
        current_wp_id(0),
        current_count(0),
        current_state(WP_IDLE),
        current_partner_systemid(0),
        current_partner_compid(0)
{
}

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

        current_count = count;
pixhawk's avatar
pixhawk committed
        current_wp_id = 0;
        current_state = WP_GETLIST_GETWPS;

        sendWaypointRequest(current_wp_id);
pixhawk's avatar
pixhawk committed
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)
    {
        qDebug() << "got waypoint (" << wp->seq << ") from ID " << systemId;
pixhawk's avatar
pixhawk committed

        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)
            {
                sendWaypointRequest(current_wp_id);
pixhawk's avatar
pixhawk committed
            }
            else
            {
pixhawk's avatar
pixhawk committed
                // all waypoints retrieved, change state to idle
pixhawk's avatar
pixhawk committed
                current_state = WP_IDLE;
                current_count = 0;
                current_wp_id = 0;
                current_partner_systemid = 0;
                current_partner_compid = 0;

                emit updateStatusString("done.");

                qDebug() << "got all waypoints from from ID " << systemId;
pixhawk's avatar
pixhawk committed
            }
        }
        else
        {
pixhawk's avatar
pixhawk committed
            //TODO: error handling
pixhawk's avatar
pixhawk committed
        }
    }
}

pixhawk's avatar
pixhawk committed
void UASWaypointManager::handleWaypointRequest(quint8 systemId, quint8 compId, mavlink_waypoint_request_t *wpr)
pixhawk's avatar
pixhawk committed
    if (systemId == current_partner_systemid && compId == current_partner_compid && current_state == WP_SENDLIST && wpr->seq == current_wp_id)
    {
        qDebug() << "handleWaypointRequest";
        if (wpr->seq < waypoint_buffer.count())
pixhawk's avatar
pixhawk committed
        {
            //TODO: send waypoint
        }
        else
        {
            //TODO: Error message or something
        }
    }
}

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

}

void UASWaypointManager::currentWaypointChanged(quint16)
pixhawk's avatar
pixhawk committed
{

}

void UASWaypointManager::removeWaypointId(quint16)
pixhawk's avatar
pixhawk committed
{

}

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;

        qDebug() << "sent waypoint list request to ID " << wprl.target_system;

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

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

void UASWaypointManager::sendWaypoints(const QVector<Waypoint*> &list)
pixhawk's avatar
pixhawk committed
{
    if (current_state == WP_IDLE)
    {
        current_count = list.count();
        current_state = WP_SENDLIST;
        current_wp_id = 0;
pixhawk's avatar
pixhawk committed

        //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();
           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();
        }
pixhawk's avatar
pixhawk committed

        //send the waypoint count to UAS (this starts the send transaction)
        mavlink_message_t message;
        mavlink_waypoint_count_t wpc;

        wpc.target_system = uas.getUASID();
        wpc.target_component = MAV_COMP_ID_WAYPOINTPLANNER;
        wpc.count = current_count;

        qDebug() << "sent waypoint count (" << wpc.count << ") to ID " << wpc.target_system;

        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);        
    }
    else
    {
        //we're in another transaction, ignore command
        qDebug() << "UASWaypointManager::sendWaypoints() doing something else ignoring command";
    }
pixhawk's avatar
pixhawk committed
}

void UASWaypointManager::sendWaypointRequest(quint16 seq)
pixhawk's avatar
pixhawk committed
{
    mavlink_message_t message;
    mavlink_waypoint_request_t wpr;

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

    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

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

void UASWaypointManager::waypointChanged(Waypoint*)
{