Changeset 5766 for code/branches/tutorial/src/orxonox/worldentities
- Timestamp:
- Sep 23, 2009, 4:57:45 PM (15 years ago)
- Location:
- code/branches/tutorial/src/orxonox/worldentities
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tutorial/src/orxonox/worldentities
- Property svn:mergeinfo changed
/code/branches/tutorial/src/orxonox/objects/worldentities merged: 2766
- Property svn:mergeinfo changed
-
code/branches/tutorial/src/orxonox/worldentities/Drone.cc
r5765 r5766 21 21 * 22 22 * Author: 23 * Fabian 'x3n' Landau23 * Oli Scheuss 24 24 * Co-authors: 25 25 * ... … … 34 34 namespace orxonox 35 35 { 36 // put your code in here:36 // PLACE YOUR CODE HERE 37 37 // create the factory for the drone 38 38 CreateFactory(Drone); … … 40 40 Drone::Drone(BaseObject* creator) : ControllableEntity(creator) 41 41 { 42 //put your code in here: 42 this->myController_ = 0; 43 // PLACE YOUR CODE HERE 43 44 // - register the drone class to the core 44 45 // - create a new controller and pass our this pointer to it as creator 45 this->myController_ = 0;46 RegisterObject(Drone);47 46 48 47 this->localLinearAcceleration_.setValue(0, 0, 0); … … 71 70 SUPER(Drone, XMLPort, xmlelement, mode); 72 71 73 XMLPortParamVariable(Drone, "primaryThrust", primaryThrust_, xmlelement, mode); 74 XMLPortParamVariable(Drone, "auxilaryThrust", auxilaryThrust_, xmlelement, mode); 75 XMLPortParamVariable(Drone, "rotationThrust", rotationThrust_, xmlelement, mode); 72 // PLACE YOUR CODE HERE 73 // make sure you add the variables primaryThrust_, auxilaryThrust_ and rotationThrust_ to xmlport 74 // variables can be added by the following command 75 // XMLPortParamVariable(Class, "xml-attribute-name", variable_name, xmlelement, mode); 76 76 } 77 77 78 78 void Drone::tick(float dt) 79 79 { 80 SUPER(Drone, tick, dt); 80 // PLACE YOUR CODE HERE 81 // make sure the tick function of the base class gets called here 81 82 82 //if (this->hasLocalController()) 83 //{ 84 this->localLinearAcceleration_.setX(this->localLinearAcceleration_.x() * getMass() * this->auxilaryThrust_); 85 this->localLinearAcceleration_.setY(this->localLinearAcceleration_.y() * getMass() * this->auxilaryThrust_); 86 if (this->localLinearAcceleration_.z() > 0) 87 this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() * getMass() * this->auxilaryThrust_); 88 else 89 this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() * getMass() * this->primaryThrust_); 90 this->physicalBody_->applyCentralForce(physicalBody_->getWorldTransform().getBasis() * this->localLinearAcceleration_); 91 this->localLinearAcceleration_.setValue(0, 0, 0); 92 93 this->localAngularAcceleration_ *= this->getLocalInertia() * this->rotationThrust_; 94 this->physicalBody_->applyTorque(physicalBody_->getWorldTransform().getBasis() * this->localAngularAcceleration_); 95 this->localAngularAcceleration_.setValue(0, 0, 0); 96 //} 83 this->localLinearAcceleration_.setX(this->localLinearAcceleration_.x() * getMass() * this->auxilaryThrust_); 84 this->localLinearAcceleration_.setY(this->localLinearAcceleration_.y() * getMass() * this->auxilaryThrust_); 85 if (this->localLinearAcceleration_.z() > 0) 86 this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() * getMass() * this->auxilaryThrust_); 87 else 88 this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() * getMass() * this->primaryThrust_); 89 this->physicalBody_->applyCentralForce(physicalBody_->getWorldTransform().getBasis() * this->localLinearAcceleration_); 90 this->localLinearAcceleration_.setValue(0, 0, 0); 91 92 this->localAngularAcceleration_ *= this->getLocalInertia() * this->rotationThrust_; 93 this->physicalBody_->applyTorque(physicalBody_->getWorldTransform().getBasis() * this->localAngularAcceleration_); 94 this->localAngularAcceleration_.setValue(0, 0, 0); 97 95 } 98 96 -
code/branches/tutorial/src/orxonox/worldentities/Drone.h
r5765 r5766 21 21 * 22 22 * Author: 23 * Fabian 'x3n' Landau23 * Oli Scheuss 24 24 * Co-authors: 25 25 * ...
Note: See TracChangeset
for help on using the changeset viewer.