Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 1, 2011, 7:09:29 PM (13 years ago)
Author:
landauf
Message:

Replaced COUT() with orxout() in all modules. phew.

Location:
code/branches/output/src/modules/overlays
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/modules/overlays/GUIOverlay.cc

    r7401 r8811  
    7676            GUIManager::getInstance().showGUIExtra(this->guiName_, str);
    7777
    78             COUT(4) << "Showing GUI " << this->guiName_ << std::endl;
     78            orxout(internal_info) << "Showing GUI " << this->guiName_ << endl;
    7979        }
    8080        else
    8181        {
    8282            GUIManager::hideGUI(this->guiName_);
    83             COUT(4) << "Hiding GUI " << this->guiName_ << std::endl;
     83            orxout(internal_info) << "Hiding GUI " << this->guiName_ << endl;
    8484        }
    8585    }
  • code/branches/output/src/modules/overlays/hud/ChatOverlay.cc

    r8327 r8811  
    8787
    8888        this->messages_.push_back(multi_cast<Ogre::DisplayString>(text));
    89         COUT(0) << "Chat: " << text << std::endl;
     89        orxout(level::message) << "Chat: " << text << endl;
    9090
    9191        Timer* timer = new Timer();
  • code/branches/output/src/modules/overlays/hud/HUDNavigation.cc

    r8706 r8811  
    105105    if ( fontPtr.isNull() )
    106106    {
    107         COUT ( 2 ) << "Warning: HUDNavigation: Font '" << font << "' not found" << std::endl;
     107        orxout(internal_warning) << "HUDNavigation: Font '" << font << "' not found" << endl;
    108108        return;
    109109    }
     
    125125    if ( size <= 0.0f )
    126126    {
    127         COUT ( 2 ) << "Warning: HUDNavigation: Negative font size not allowed" << std::endl;
     127        orxout(internal_warning) << "HUDNavigation: Negative font size not allowed" << endl;
    128128        return;
    129129    }
  • code/branches/output/src/modules/overlays/hud/HUDRadar.cc

    r8738 r8811  
    160160            if( !wePointer )
    161161            {
    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;
    163163                assert(0);
    164164            }
Note: See TracChangeset for help on using the changeset viewer.