Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 20, 2009, 6:47:40 PM (15 years ago)
Author:
rgrieder
Message:

Small stuff:

  • Using a reference to the Shell in InGameConsole
  • Replaced the caller macro in the Shell with a template function
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/orxonox/overlays/InGameConsole.cc

    r5929 r5969  
    6868    */
    6969    InGameConsole::InGameConsole()
    70         : consoleOverlay_(0)
     70        : shell_(Shell::getInstance())
     71        , consoleOverlay_(0)
    7172        , consoleOverlayContainer_(0)
    7273        , consoleOverlayNoise_(0)
     
    174175        // create the corresponding input state
    175176        inputState_ = InputManager::getInstance().createInputState("console", false, false, InputStatePriority::Console);
    176         inputState_->setKeyHandler(Shell::getInstance().getInputBuffer());
     177        inputState_->setKeyHandler(this->shell_.getInputBuffer());
    177178        bHidesAllInputChanged();
    178179
     
    252253        this->consoleOverlayContainer_->setTop(-1.2 * this->relativeHeight);
    253254
    254         Shell::getInstance().addOutputLevel(true);
     255        this->shell_.addOutputLevel(true);
    255256
    256257        COUT(4) << "Info: InGameConsole initialized" << std::endl;
     
    266267    void InGameConsole::linesChanged()
    267268    {
    268         std::list<std::string>::const_iterator it = Shell::getInstance().getNewestLineIterator();
     269        std::list<std::string>::const_iterator it = this->shell_.getNewestLineIterator();
    269270        int max = 0;
    270271        for (int i = 1; i < LINES; ++i)
    271272        {
    272             if (it != Shell::getInstance().getEndIterator())
     273            if (it != this->shell_.getEndIterator())
    273274            {
    274275                ++it;
     
    295296    {
    296297        if (LINES > 1)
    297             this->print(*Shell::getInstance().getNewestLineIterator(), 1);
     298            this->print(*this->shell_.getNewestLineIterator(), 1);
    298299    }
    299300
     
    314315    {
    315316        if (LINES > 0)
    316             this->print(Shell::getInstance().getInput(), 0);
    317 
    318         if (Shell::getInstance().getInput() == "" || Shell::getInstance().getInput().size() == 0)
     317            this->print(this->shell_.getInput(), 0);
     318
     319        if (this->shell_.getInput() == "" || this->shell_.getInput().size() == 0)
    319320            this->inputWindowStart_ = 0;
    320321    }
     
    325326    void InGameConsole::cursorChanged()
    326327    {
    327         unsigned int pos = Shell::getInstance().getCursorPosition() - inputWindowStart_;
     328        unsigned int pos = this->shell_.getCursorPosition() - inputWindowStart_;
    328329        if (pos > maxCharsPerLine_)
    329330            pos = maxCharsPerLine_;
     
    482483                if (output.size() > this->maxCharsPerLine_)
    483484                {
    484                     if (Shell::getInstance().getInputBuffer()->getCursorPosition() < this->inputWindowStart_)
    485                         this->inputWindowStart_ = Shell::getInstance().getInputBuffer()->getCursorPosition();
    486                     else if (Shell::getInstance().getInputBuffer()->getCursorPosition() >= (this->inputWindowStart_ + this->maxCharsPerLine_ - 1))
    487                         this->inputWindowStart_ = Shell::getInstance().getInputBuffer()->getCursorPosition() - this->maxCharsPerLine_ + 1;
     485                    if (this->shell_.getInputBuffer()->getCursorPosition() < this->inputWindowStart_)
     486                        this->inputWindowStart_ = this->shell_.getInputBuffer()->getCursorPosition();
     487                    else if (this->shell_.getInputBuffer()->getCursorPosition() >= (this->inputWindowStart_ + this->maxCharsPerLine_ - 1))
     488                        this->inputWindowStart_ = this->shell_.getInputBuffer()->getCursorPosition() - this->maxCharsPerLine_ + 1;
    488489
    489490                    output = output.substr(this->inputWindowStart_, this->maxCharsPerLine_);
     
    506507            this->bActive_ = true;
    507508            InputManager::getInstance().enterState("console");
    508             Shell::getInstance().registerListener(this);
     509            this->shell_.registerListener(this);
    509510
    510511            this->windowResized(this->windowW_, this->windowH_);
     
    528529            this->bActive_ = false;
    529530            InputManager::getInstance().leaveState("console");
    530             Shell::getInstance().unregisterListener(this);
     531            this->shell_.unregisterListener(this);
    531532
    532533            // scroll up
Note: See TracChangeset for help on using the changeset viewer.