This is some awesome robot code

Dependencies:   mbed-rtos mbed QEI

Fork of ICRSEurobot13 by Thomas Branch

Processes/AI/ai.cpp

Committer:
rsavitski
Date:
2013-04-12
Revision:
53:b013df99b747
Parent:
52:bffe5f7c39a3
Child:
54:99d3158c9207

File content as of revision 53:b013df99b747:

#include "ai.h"

namespace AI
{

void ailayer(void const *dummy)
{
    Waypoint *current_waypoint = new Waypoint[5];
/*
    current_waypoint[0].x = 1;
    current_waypoint[0].y = 1;
    current_waypoint[0].theta = 0.0;
    current_waypoint[0].pos_threshold = 0.05;
    current_waypoint[0].angle_threshold = 0.05*PI;

    current_waypoint[1].x = 2.2;
    current_waypoint[1].y = 1.5;
    current_waypoint[1].theta = PI/2;
    current_waypoint[1].pos_threshold = 0.05;
    current_waypoint[1].angle_threshold = 0.05*PI;

    current_waypoint[2].x = -999;
*/

    current_waypoint[0].x = 1.8;
    current_waypoint[0].y = 1.39;
    current_waypoint[0].theta = PI;
    current_waypoint[0].pos_threshold = 0.03;
    current_waypoint[0].angle_threshold = 0.05*PI;

    current_waypoint[1].x = 1.5;
    current_waypoint[1].y = 1.39;
    current_waypoint[1].theta = PI;
    current_waypoint[1].pos_threshold = 0.03;
    current_waypoint[1].angle_threshold = 0.05*PI;

    current_waypoint[2].x = -999;
/*
    //TODO: temp current waypoint hack
    current_waypoint = new Waypoint;
    current_waypoint->x = 0.5;
    current_waypoint->y = 0.7;
    current_waypoint->theta = 0.0;
    current_waypoint->pos_threshold = 0.05;
    current_waypoint->angle_threshold = 0.05*PI;
    
    Waypoint* secondwp = new Waypoint;
    secondwp->x = 1.20;
    secondwp->y = 0.18;
    secondwp->theta = PI;
    secondwp->pos_threshold = 0.01;
    secondwp->angle_threshold = 0.00001;
*/    

    motion::setNewWaypoint(current_waypoint);
    while(1)
    {
        Thread::wait(50);
        
        motion::waypoint_flag_mutex.lock();
        if (motion::checkWaypointStatus())
        {
            
            if ((current_waypoint+1)->x != -999)
            { 
                motion::clearWaypointReached();
                current_waypoint++;
                motion::setNewWaypoint(current_waypoint);
            }
        }
        motion::waypoint_flag_mutex.unlock();
    }
}

} //namespace