/*************************************************************************** * Copyright (C) 2008-2009 by Heiko Koehn - KoehnHeiko@googlemail.com * * Copyright (C) 2014 by Ahmed Charles - acharles@outlook.com * * Copyright (C) 2018 by Stephen Lyons - slysven@virginmedia.com * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #include "TDebug.h" #include "TConsole.h" #include "mudlet.h" TDebug::TDebug(const QColor& c, const QColor& d) : msg() , fgColor(c) , bgColor(d) { } // code is a dummy variable so that using operator>>() (at the end of a series // of operator<<() calls) causes the accumulated message to be printed/flushed // out... TDebug& TDebug::operator>>(const int code) { Q_UNUSED(code); if (mudlet::mpDebugConsole) { mudlet::mpDebugConsole->print(msg, fgColor, bgColor); } return *this; } TDebug& TDebug::operator<<(const QString& t) { msg += t; return *this; } TDebug& TDebug::operator<<(const int& t) { msg += QString::number(t); return *this; } TDebug& TDebug::operator<<(const QMap& map) { for (QMap::const_iterator it = map.constBegin(); it != map.constEnd(); ++it) { msg += "("; msg += it.key(); msg += ", "; msg += it.value(); msg += ")"; } msg += "), "; return *this; } TDebug& TDebug::operator<<(const QMap& map) { for (QMap::const_iterator it = map.constBegin(); it != map.constEnd(); ++it) { msg += "("; msg += it.key(); msg += ", "; msg += QString::number(it.value()); msg += ")"; } msg += "), "; return *this; } TDebug& TDebug::operator<<(const QMap& map) { for (QMap::const_iterator it = map.constBegin(); it != map.constEnd(); ++it) { msg += "("; msg += QString::number(it.key()); msg += ", "; msg += it.value(); msg += ")"; } msg += "), "; return *this; } TDebug& TDebug::operator<<(const QMap& map) { for (QMap::const_iterator it = map.constBegin(); it != map.constEnd(); ++it) { msg += "("; msg += QString::number(it.key()); msg += ", "; msg += QString::number(it.value()); msg += ")"; } msg += "), "; return *this; } TDebug& TDebug::operator<<(const QList& list) { for (QList::const_iterator it = list.constBegin(); it != list.constEnd(); ++it) { msg += (*it); msg += ", "; } msg += ")"; return *this; } TDebug& TDebug::operator<<(const QList& list) { for (QList::const_iterator it = list.constBegin(); it != list.constEnd(); ++it) { msg += QString::number(*it); msg += ", "; } msg += "), "; return *this; }