Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 15, 2008, 1:05:58 AM (16 years ago)
Author:
landauf
Message:

someone likes to chat? well, I do. here's a new IRC client. it connects directly into our irc.datacore.ch / #orxonox channel with a random nickname. use the "say text" command to write text into the channel. there are some more commands without a shortcut, type "IRC" and tab.
please update your media directory.

for some reason, irc-client and telnet-remote don't work together. please use only one feature at the same time. I'm not sure if it's a bug in TCL or in my TclThreadManager class. The problem also occurs with irc or telnet in parallel with another busy tcl-thread… strange thing.

File:
1 edited

Legend:

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

    r1269 r1276  
    100100    {
    101101        if (newline)
    102             std::cout << text << std::endl;
     102            COUT(0) << text << std::endl;
    103103        else
    104             std::cout << text;
     104            COUT(0) << text;
    105105    }
    106106
     
    412412        if (evaluation.bEvaluatedParams_ && evaluation.evaluatedExecutor_)
    413413        {
    414 std::cout << "CE_execute (evaluation): " << evaluation.evaluatedExecutor_->getName() << " " << evaluation.param_[0] << " " << evaluation.param_[1] << " " << evaluation.param_[2] << " " << evaluation.param_[3] << " " << evaluation.param_[4] << std::endl;
     414            COUT(4) << "CE_execute (evaluation): " << evaluation.evaluatedExecutor_->getName() << " " << evaluation.param_[0] << " " << evaluation.param_[1] << " " << evaluation.param_[2] << " " << evaluation.param_[3] << " " << evaluation.param_[4] << std::endl;
    415415            (*evaluation.evaluatedExecutor_)(evaluation.param_[0], evaluation.param_[1], evaluation.param_[2], evaluation.param_[3], evaluation.param_[4]);
    416416            return true;
    417417        }
    418418
    419 std::cout << "CE_execute: " << evaluation.processedCommand_ << "\n";
     419        COUT(4) << "CE_execute: " << evaluation.processedCommand_ << "\n";
    420420        switch (evaluation.state_)
    421421        {
Note: See TracChangeset for help on using the changeset viewer.