Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 13, 2008, 10:13:17 PM (16 years ago)
Author:
rgrieder
Message:
  • removed some debug output
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/merge/src/orxonox/Orxonox.cc

    r1266 r1268  
    201201  void Orxonox::abortRequest()
    202202  {
    203     COUT(3) << "*** Orxonox: Abort requested." << std::endl;
     203    COUT(3) << "Orxonox: Abort requested." << std::endl;
    204204    bAbort_ = true;
    205205  }
     
    246246      return false;
    247247
    248     COUT(3) << "*** Orxonox: Mode is " << mode << "." << std::endl;
    249248    if (mode == "client")
    250249      mode_ = CLIENT;
     
    252251      mode_ = SERVER;
    253252    else
     253    {
     254      mode = "standalone";
    254255      mode_ = STANDALONE;
     256    }
     257    COUT(3) << "Orxonox: Mode is " << mode << "." << std::endl;
    255258
    256259    //if (mode_ == DEDICATED)
     
    343346
    344347    // Load the HUD
    345     COUT(3) << "*** Orxonox: Loading HUD..." << std::endl;
     348    COUT(3) << "Orxonox: Loading HUD..." << std::endl;
    346349    Ogre::Overlay* hudOverlay = Ogre::OverlayManager::getSingleton().getByName("Orxonox/HUD1.2");
    347350    orxonoxHUD_ = new HUD();
     
    350353    hudOverlay->show();
    351354
    352     COUT(3) << "*** Orxonox: Loading Console..." << std::endl;
     355    COUT(3) << "Orxonox: Loading Console..." << std::endl;
    353356    InputBuffer* ib = dynamic_cast<InputBuffer*>(InputManager::getKeyHandler("buffer"));
    354357    /*
     
    445448    if (Ogre::Root::getSingletonPtr() == 0)
    446449    {
    447       COUT(2) << "*** Orxonox Error: Could not start rendering. No Ogre root object found" << std::endl;
     450      COUT(2) << "Orxonox Error: Could not start rendering. No Ogre root object found" << std::endl;
    448451      return false;
    449452    }
     
    466469    timer_->reset();
    467470
    468     COUT(3) << "*** Orxonox: Starting the main loop." << std::endl;
     471    COUT(3) << "Orxonox: Starting the main loop." << std::endl;
    469472          while (!bAbort_)
    470473          {
Note: See TracChangeset for help on using the changeset viewer.