Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 20, 2009, 10:32:06 PM (15 years ago)
Author:
rgrieder
Message:

Input part of the IOConsole should be working (at least with SSH on tardis). Note: removed modules from compilation

File:
1 edited

Legend:

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

    r5929 r5973  
    6464#include "Identifier.h"
    6565#include "Language.h"
     66#include "IOConsole.h"
    6667#include "LuaState.h"
    6768#include "ScopedSingletonManager.h"
     
    265266        // create a shell
    266267        this->shell_.reset(new Shell());
     268        // create persistent io console
     269        this->ioConsole_.reset(new IOConsole());
    267270
    268271        // Create singletons that always exist (in other libraries)
     
    444447            ScopedSingletonManager::update<ScopeID::Graphics>(time);
    445448        }
     449        // process console text
     450        this->ioConsole_->update(time);
    446451        // process thread commands
    447452        this->tclThreadManager_->update(time);
Note: See TracChangeset for help on using the changeset viewer.