Changeset 8811 for code/branches/output/src/modules/overlays
- Timestamp:
- Aug 1, 2011, 7:09:29 PM (13 years ago)
- Location:
- code/branches/output/src/modules/overlays
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/modules/overlays/GUIOverlay.cc
r7401 r8811 76 76 GUIManager::getInstance().showGUIExtra(this->guiName_, str); 77 77 78 COUT(4) << "Showing GUI " << this->guiName_ << std::endl;78 orxout(internal_info) << "Showing GUI " << this->guiName_ << endl; 79 79 } 80 80 else 81 81 { 82 82 GUIManager::hideGUI(this->guiName_); 83 COUT(4) << "Hiding GUI " << this->guiName_ << std::endl;83 orxout(internal_info) << "Hiding GUI " << this->guiName_ << endl; 84 84 } 85 85 } -
code/branches/output/src/modules/overlays/hud/ChatOverlay.cc
r8327 r8811 87 87 88 88 this->messages_.push_back(multi_cast<Ogre::DisplayString>(text)); 89 COUT(0) << "Chat: " << text << std::endl;89 orxout(level::message) << "Chat: " << text << endl; 90 90 91 91 Timer* timer = new Timer(); -
code/branches/output/src/modules/overlays/hud/HUDNavigation.cc
r8706 r8811 105 105 if ( fontPtr.isNull() ) 106 106 { 107 COUT ( 2 ) << "Warning: HUDNavigation: Font '" << font << "' not found" << std::endl;107 orxout(internal_warning) << "HUDNavigation: Font '" << font << "' not found" << endl; 108 108 return; 109 109 } … … 125 125 if ( size <= 0.0f ) 126 126 { 127 COUT ( 2 ) << "Warning: HUDNavigation: Negative font size not allowed" << std::endl;127 orxout(internal_warning) << "HUDNavigation: Negative font size not allowed" << endl; 128 128 return; 129 129 } -
code/branches/output/src/modules/overlays/hud/HUDRadar.cc
r8738 r8811 160 160 if( !wePointer ) 161 161 { 162 CCOUT(0) << "Cannot display a non-WorldEntitiy on the radar" << std::endl;162 orxout(internal_error) << "Cannot display a non-WorldEntitiy on the radar" << endl; 163 163 assert(0); 164 164 }
Note: See TracChangeset
for help on using the changeset viewer.