Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 23, 2009, 4:54:09 PM (16 years ago)
Author:
scheusso
Message:

this is the complete (and migrated) version of the tutorial branch fs09

Location:
code/branches/tutorial/src/orxonox
Files:
4 edited
4 copied

Legend:

Unmodified
Added
Removed
  • code/branches/tutorial/src/orxonox/controllers

    • Property svn:mergeinfo set to (toggle deleted branches)
      /code/branches/libraries2/src/orxonox/controllersmergedeligible
  • TabularUnified code/branches/tutorial/src/orxonox/controllers/CMakeLists.txt

    r5738 r5765  
    44  ArtificialController.cc
    55  AIController.cc
     6  DroneController.cc
    67  ScriptController.cc
    78  WaypointController.cc
  • TabularUnified code/branches/tutorial/src/orxonox/controllers/DroneController.cc

    r2765 r5765  
    2727 */
    2828
    29 #include "OrxonoxStableHeaders.h"
    3029#include "DroneController.h"
    31 #include "objects/worldentities/Drone.h"
     30#include "worldentities/Drone.h"
    3231#include "util/Math.h"
    3332
     
    5958        totaltime += dt;
    6059        Drone *myDrone = static_cast<Drone*>(this->getControllableEntity());
    61         if(totaltime<1)
     60        if(totaltime<100)
    6261        {
    6362            myDrone->moveFrontBack( -sqrt(dt) );
  • TabularUnified code/branches/tutorial/src/orxonox/controllers/DroneController.h

    r2765 r5765  
    3333
    3434#include "Controller.h"
    35 #include "objects/Tickable.h"
     35#include "tools/interfaces/Tickable.h"
    3636
    3737namespace orxonox
  • code/branches/tutorial/src/orxonox/worldentities

    • Property svn:mergeinfo set to (toggle deleted branches)
      /code/branches/libraries2/src/orxonox/worldentitiesmergedeligible
  • TabularUnified code/branches/tutorial/src/orxonox/worldentities/CMakeLists.txt

    r5738 r5765  
    77
    88  BigExplosion.cc
     9  Drone.cc
    910  ExplosionChunk.cc
    1011  CameraPosition.cc
  • TabularUnified code/branches/tutorial/src/orxonox/worldentities/Drone.cc

    r2765 r5765  
    2727 */
    2828
    29 #include "OrxonoxStableHeaders.h"
    3029#include "Drone.h"
    3130
     
    5352        this->rotationThrust_ = 10;
    5453        this->steering_ = Vector3::ZERO;
     54
     55        std::cout << "sdfasdfasdf====================";
    5556       
    5657        this->setCollisionType(WorldEntity::Dynamic);
  • TabularUnified code/branches/tutorial/src/orxonox/worldentities/Drone.h

    r2765 r5765  
    3131
    3232#include "OrxonoxPrereqs.h"
    33 #include "objects/worldentities/ControllableEntity.h"
    34 #include "objects/controllers/DroneController.h"
     33#include "worldentities/ControllableEntity.h"
     34#include "controllers/DroneController.h"
    3535
    3636namespace orxonox
Note: See TracChangeset for help on using the changeset viewer.