Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 10, 2010, 4:32:26 PM (14 years ago)
Author:
solex
Message:

formation flight: new formations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ai/src/orxonox/controllers/ArtificialController.h

    r6850 r6888  
    3232#include "OrxonoxPrereqs.h"
    3333
     34#include <vector>
     35
    3436#include "util/Math.h"
    3537#include "Controller.h"
     
    4345            virtual ~ArtificialController();
    4446
    45             virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);//new
     47            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
    4648
    4749            void abandonTarget(Pawn* target);
     
    6062            enum State {SLAVE, MASTER, FREE};
    6163            State state_;
    62             std::list<ArtificialController*> slaves_;
     64            std::vector<ArtificialController*> slaves_;
    6365
    6466            void targetDied();
    6567
    6668            void moveToPosition(const Vector3& target);
    67             //void speedToTargetPosition(const Vector3& target);
    6869            void moveToTargetPosition();
    6970
Note: See TracChangeset for help on using the changeset viewer.