Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 17, 2008, 3:58:19 AM (17 years ago)
Author:
landauf
Message:
  • implemented Shell, but not yet linked with the graphical console
  • added new features (cursor, OIS::KeyCode listener) to InputBuffer
  • changed some includes to avoid circular header-dependencies in OrxonoxClass and Shell
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/core/OutputHandler.cc

    r1230 r1313  
    101101        }
    102102
     103        if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= this->outputLevel_)
     104            Shell::getInstance().getOutputBuffer() << sb;
     105
    103106        return *this;
    104107    }
     
    119122            this->logfile_.flush();
    120123        }
     124
     125        if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= this->outputLevel_)
     126            manipulator(Shell::getInstance().getOutputBuffer());
    121127
    122128        return *this;
     
    139145        }
    140146
     147        if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= this->outputLevel_)
     148            manipulator(Shell::getInstance().getOutputBuffer());
     149
    141150        return *this;
    142151    }
     
    158167        }
    159168
     169        if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= this->outputLevel_)
     170            manipulator(Shell::getInstance().getOutputBuffer());
     171
    160172        return *this;
    161173    }
Note: See TracChangeset for help on using the changeset viewer.