/* Copyright (C) 2005, Thorvald Natvig All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of the Mumble Developers nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include "TextToSpeech.h" #include "MainWindow.h" #include "Log.h" #include "Global.h" LogConfig::LogConfig(QWidget *p) : ConfigWidget(p) { QGroupBox *qgbMessages = new QGroupBox(tr("Messages")); QLabel *lab; QGridLayout *l=new QGridLayout(); lab=new QLabel(tr("Console")); l->addWidget(lab, 0, 1); lab=new QLabel(tr("TTS")); l->addWidget(lab, 0, 2); for(int i=Log::DebugInfo;i<=Log::OtherMutedOther;++i) { QCheckBox *qcb; Log::MsgType t=static_cast(i); MsgSettings *ms=g.l->qhSettings[t]; QString name = g.l->msgName(t); lab=new QLabel(name); l->addWidget(lab, i+1, 0); qcb=new QCheckBox(); qcb->setCheckState(ms->bConsole ? Qt::Checked : Qt::Unchecked); qcb->setToolTip(tr("Enable console for %1").arg(name)); qlConsole << qcb; l->addWidget(qcb, i+1, 1); qcb=new QCheckBox(); qcb->setCheckState(ms->bTTS ? Qt::Checked : Qt::Unchecked); qcb->setToolTip(tr("Enable Text-To-Speech for %1").arg(name)); qlTTS << qcb; l->addWidget(qcb, i+1, 2); } qgbMessages->setLayout(l); QVBoxLayout *v = new QVBoxLayout; v->addWidget(qgbMessages); v->addStretch(1); setLayout(v); QMetaObject::connectSlotsByName(this); } QString LogConfig::title() const { return tr("Messages"); } QIcon LogConfig::icon() const { return QIcon(":/icons/config_msgs.png"); } void LogConfig::accept() { for(int i=Log::DebugInfo;i<=Log::OtherMutedOther;++i) { Log::MsgType t=static_cast(i); MsgSettings *ms=g.l->qhSettings[t]; ms->bConsole = (qlConsole[i]->checkState() == Qt::Checked); ms->bTTS = (qlTTS[i]->checkState() == Qt::Checked); } } MsgSettings::MsgSettings() { bConsole = true; bTTS = true; iIgnore = 0; } Log::Log(QObject *p) : QObject(p) { for(int i=DebugInfo;i<=OtherMutedOther;++i) qhSettings[static_cast(i)]=new MsgSettings(); tts=new TextToSpeech(this); loadSettings(); } const char *Log::msgNames[] = { "Debug", "Critical", "Warning", "Information", "Server Connected", "Server Disconnected", "Player Joined", "Player Left", "Player kicked (you or by you)", "Player kicked", "You selfmuted/deafened", "Other selfmuted/selfdeafened", "Player muted (you)", "Player muted (by you)", "Player muted (other)" }; QString Log::msgName(MsgType t) const { return tr(msgNames[t]); } void Log::setIgnore(MsgType t, int ignore) { MsgSettings *ms=qhSettings.value(t); Q_ASSERT(ms); ms->iIgnore=ignore; } void Log::clearIgnore() { foreach(MsgSettings *ms, qhSettings) ms->iIgnore=0; } void Log::loadSettings() { for(int i=DebugInfo;i<=OtherMutedOther;++i) { MsgType t=static_cast(i); MsgSettings *ms=qhSettings[t]; QString key=QString("msg%1").arg(msgName(t)); int v = g.qs->value(key,0xff).toInt(); ms->bConsole=(v & 0x01); ms->bTTS=(v & 0x02); } } void Log::saveSettings() const { for(int i=DebugInfo;i<=OtherMutedOther;++i) { MsgType t=static_cast(i); MsgSettings *ms=qhSettings[t]; QString key=QString("msg%1").arg(msgName(t)); int v = 0; if (ms->bConsole) v |= 0x01; if (ms->bTTS) v |= 0x02; g.qs->setValue(key, v); } } void Log::log(MsgType t, QString console, QString phonetic) { QTime now = QTime::currentTime(); MsgSettings *ms=qhSettings.value(t); Q_ASSERT(ms); if (ms->iIgnore) { ms->iIgnore--; return; } if (ms->bConsole) g.mw->appendLog(tr("[%2] %1").arg(console).arg(now.toString(Qt::LocalDate))); if (! ms->bTTS) return; tts->say(phonetic.isEmpty() ? console : phonetic); }