Changeset 8858 for code/trunk/src/orxonox/controllers
- Timestamp:
- Aug 23, 2011, 12:45:53 AM (13 years ago)
- Location:
- code/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:ignore
-
old new 1 1 build 2 2 codeblocks 3 vs 3 4 dependencies
-
- Property svn:mergeinfo changed
/code/branches/output (added) merged: 8739-8740,8765,8771-8772,8774-8780,8787-8789,8794-8799,8801,8803-8812,8814,8816-8817,8820,8822,8825-8837,8840,8844,8846,8848-8850,8853-8854
- Property svn:ignore
-
code/trunk/src/orxonox/controllers/ArtificialController.cc
r8706 r8858 98 98 if (it->myMaster_ == this) 99 99 { 100 COUT(1) << "error: " << this << " is still master in " << (*it) << std::endl;100 orxout(internal_error) << this << " is still master in " << (*it) << endl; 101 101 it->myMaster_ = 0; 102 102 } … … 107 107 if (it2 != it->slaves_.end()) 108 108 { 109 COUT(1) << "error: " << this << " is still slave in " << (*it) << std::endl;109 orxout(internal_error) << this << " is still slave in " << (*it) << endl; 110 110 it->slaves_.erase(it2); 111 111 } … … 737 737 float speedDiv = this->getControllableEntity()->getVelocity().squaredLength() - this->target_->getVelocity().squaredLength(); 738 738 739 COUT(0) << "~follow distance: " << distance << "SpeedCounter: " << this->speedCounter_ << "~speedDiv: " << speedDiv << std::endl;739 orxout() << "~follow distance: " << distance << "SpeedCounter: " << this->speedCounter_ << "~speedDiv: " << speedDiv << endl; 740 740 if (distance < 800) 741 741 { -
code/trunk/src/orxonox/controllers/HumanController.cc
r8706 r8858 93 93 Camera* camera = HumanController::localController_s->controllableEntity_->getCamera(); 94 94 if (!camera) 95 COUT(3) << "HumanController, Warning: Using a ControllableEntity without Camera" << std::endl;95 orxout(internal_warning) << "HumanController, Warning: Using a ControllableEntity without Camera" << endl; 96 96 } 97 97 } … … 197 197 198 198 this->controllableEntity_->boost(this->boosting_); 199 COUT(4) << "Start boosting" << endl;199 // orxout() << "Start boosting" << endl; 200 200 } 201 201 } … … 211 211 212 212 this->controllableEntity_->boost(this->boosting_); 213 COUT(4) << "Stop boosting" << endl;213 // orxout() << "Stop boosting" << endl; 214 214 } 215 215 … … 257 257 const Quaternion& orientation = HumanController::localController_s->controllableEntity_->getOrientation(); 258 258 259 COUT(0) << "position=\"" << position.x << ", " << position.y << ", " << position.z << "\" ";260 COUT(0) << "orientation=\"" << orientation.w << ", " << orientation.x << ", " << orientation.y << ", " << orientation.z << "\"" << std::endl;259 orxout(message) << "position=\"" << position.x << ", " << position.y << ", " << position.z << "\" " 260 << "orientation=\"" << orientation.w << ", " << orientation.x << ", " << orientation.y << ", " << orientation.z << "\"" << endl; 261 261 } 262 262 } -
code/trunk/src/orxonox/controllers/NewHumanController.cc
r8436 r8858 388 388 for (itr = result.begin(); itr != result.end(); ++itr) 389 389 { 390 // CCOUT(0) << "testing object as target" << endl;390 // orxout() << "testing object as target" << endl; 391 391 if (itr->movable->isInScene() && itr->movable->getMovableType() == "Entity" && itr->distance > 200) 392 392 {
Note: See TracChangeset
for help on using the changeset viewer.