Changeset 5765 for code/branches/tutorial/src/orxonox
- Timestamp:
- Sep 23, 2009, 4:54:09 PM (16 years ago)
- 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/controllers merged eligible
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
TabularUnified code/branches/tutorial/src/orxonox/controllers/CMakeLists.txt ¶
r5738 r5765 4 4 ArtificialController.cc 5 5 AIController.cc 6 DroneController.cc 6 7 ScriptController.cc 7 8 WaypointController.cc -
TabularUnified code/branches/tutorial/src/orxonox/controllers/DroneController.cc ¶
r2765 r5765 27 27 */ 28 28 29 #include "OrxonoxStableHeaders.h"30 29 #include "DroneController.h" 31 #include " objects/worldentities/Drone.h"30 #include "worldentities/Drone.h" 32 31 #include "util/Math.h" 33 32 … … 59 58 totaltime += dt; 60 59 Drone *myDrone = static_cast<Drone*>(this->getControllableEntity()); 61 if(totaltime<1 )60 if(totaltime<100) 62 61 { 63 62 myDrone->moveFrontBack( -sqrt(dt) ); -
TabularUnified code/branches/tutorial/src/orxonox/controllers/DroneController.h ¶
r2765 r5765 33 33 34 34 #include "Controller.h" 35 #include " objects/Tickable.h"35 #include "tools/interfaces/Tickable.h" 36 36 37 37 namespace orxonox -
code/branches/tutorial/src/orxonox/worldentities ¶
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/code/branches/libraries2/src/orxonox/worldentities merged eligible
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
TabularUnified code/branches/tutorial/src/orxonox/worldentities/CMakeLists.txt ¶
r5738 r5765 7 7 8 8 BigExplosion.cc 9 Drone.cc 9 10 ExplosionChunk.cc 10 11 CameraPosition.cc -
TabularUnified code/branches/tutorial/src/orxonox/worldentities/Drone.cc ¶
r2765 r5765 27 27 */ 28 28 29 #include "OrxonoxStableHeaders.h"30 29 #include "Drone.h" 31 30 … … 53 52 this->rotationThrust_ = 10; 54 53 this->steering_ = Vector3::ZERO; 54 55 std::cout << "sdfasdfasdf===================="; 55 56 56 57 this->setCollisionType(WorldEntity::Dynamic); -
TabularUnified code/branches/tutorial/src/orxonox/worldentities/Drone.h ¶
r2765 r5765 31 31 32 32 #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" 35 35 36 36 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.