2007-10-11 21:58:24 +00:00
|
|
|
/***************************************************************************
|
|
|
|
|
* Copyright (C) 2006 by FThauer FHammer *
|
|
|
|
|
* f.thauer@web.de *
|
|
|
|
|
* *
|
|
|
|
|
* 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 "chattools.h"
|
2007-10-13 13:06:12 +00:00
|
|
|
#include "session.h"
|
2007-10-14 17:59:40 +00:00
|
|
|
#include "configfile.h"
|
2009-04-01 12:27:31 +00:00
|
|
|
#include "gametablestylereader.h"
|
2009-08-17 23:20:58 +00:00
|
|
|
#include "gamelobbydialogimpl.h"
|
2007-10-11 21:58:24 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
2009-08-17 23:20:58 +00:00
|
|
|
|
2007-10-11 21:58:24 +00:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
2009-08-17 23:20:58 +00:00
|
|
|
ChatTools::ChatTools(QLineEdit* l, ConfigFile *c, ChatType ct, QTextBrowser *b, QTreeWidget *t, gameLobbyDialogImpl *lo) : nickAutoCompletitionCounter(0), myLineEdit(l), myNickTreeWidget(t), myNickStringList(NULL), myTextBrowser(b), myChatType(ct), myConfig(c), myNick(""), myLobby(lo)
|
2007-10-11 21:58:24 +00:00
|
|
|
{
|
2010-03-30 17:30:33 +00:00
|
|
|
myNick = QString::fromUtf8(myConfig->readConfigString("MyName").c_str());
|
2010-03-31 12:33:00 +00:00
|
|
|
ignoreList = myConfig->readConfigStringList("PlayerIgnoreList");
|
2010-07-14 09:29:05 +00:00
|
|
|
|
2007-10-11 21:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ChatTools::~ChatTools()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-12 21:16:02 +00:00
|
|
|
void ChatTools::sendMessage() {
|
2010-03-30 17:30:33 +00:00
|
|
|
|
|
|
|
|
if(myLineEdit->text().size() && mySession) {
|
|
|
|
|
fillChatLinesHistory(myLineEdit->text());
|
|
|
|
|
if(myChatType == INGAME_CHAT) {
|
|
|
|
|
mySession->sendGameChatMessage(myLineEdit->text().toUtf8().constData());
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
mySession->sendLobbyChatMessage(myLineEdit->text().toUtf8().constData());
|
|
|
|
|
}
|
|
|
|
|
myLineEdit->setText("");
|
|
|
|
|
}
|
2007-10-12 21:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ChatTools::receiveMessage(QString playerName, QString message) {
|
|
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(myTextBrowser) {
|
2007-10-14 17:59:40 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
message = message.replace("<","<");
|
|
|
|
|
message = message.replace(">",">");
|
2007-12-09 12:09:42 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
//refresh myNick if it was changed during runtime
|
|
|
|
|
myNick = QString::fromUtf8(myConfig->readConfigString("MyName").c_str());
|
2007-12-12 22:01:40 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
QString tempMsg;
|
|
|
|
|
|
|
|
|
|
if(message.contains(myNick, Qt::CaseInsensitive)) {
|
|
|
|
|
|
|
|
|
|
switch (myChatType) {
|
|
|
|
|
case INET_LOBBY_CHAT: {
|
2010-07-14 09:29:05 +00:00
|
|
|
tempMsg = QString("<span style=\"font-weight:bold; color:"+myLobby->palette().highlight().color().name()+";\">"+message+"</span>");
|
2010-03-30 17:30:33 +00:00
|
|
|
//play beep sound only in INET-lobby-chat
|
|
|
|
|
// TODO dont play when message is from yourself
|
|
|
|
|
if(myLobby->isVisible() && myConfig->readConfigInt("PlayLobbyChatNotification")) {
|
|
|
|
|
myLobby->getMyW()->getMySDLPlayer()->playSound("lobbychatnotify",0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case LAN_LOBBY_CHAT: tempMsg = QString("<span style=\"font-weight:bold;\">"+message+"</span>");
|
|
|
|
|
break;
|
|
|
|
|
case INGAME_CHAT: tempMsg = QString("<span style=\"color:#"+myStyle->getChatTextNickNotifyColor()+";\">"+message+"</span>");
|
|
|
|
|
break;
|
|
|
|
|
default: tempMsg = message;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
switch (myChatType) {
|
2010-07-14 09:29:05 +00:00
|
|
|
case INET_LOBBY_CHAT: tempMsg = QString("<span style=\"font-weight:normal; color:"+myLobby->palette().highlight().color().name()+";\">"+message+"</span>");
|
2010-03-30 17:30:33 +00:00
|
|
|
break;
|
|
|
|
|
case LAN_LOBBY_CHAT: tempMsg = QString("<span style=\"font-weight:normal;\">"+message+"</span>");
|
|
|
|
|
break;
|
|
|
|
|
case INGAME_CHAT: tempMsg = QString("<span style=\"color:#"+myStyle->getChatLogTextColor()+";\">"+message+"</span>");
|
|
|
|
|
break;
|
|
|
|
|
default: tempMsg = message;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-31 12:33:00 +00:00
|
|
|
bool nickFoundOnIgnoreList = false;
|
|
|
|
|
list<std::string>::iterator it1;
|
|
|
|
|
for(it1=ignoreList.begin(); it1 != ignoreList.end(); it1++) {
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2010-03-31 12:33:00 +00:00
|
|
|
if(playerName == QString::fromUtf8(it1->c_str())) {
|
|
|
|
|
nickFoundOnIgnoreList = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!nickFoundOnIgnoreList) {
|
2010-07-14 09:29:05 +00:00
|
|
|
myTextBrowser->append(playerName + ": " + tempMsg);
|
2010-03-31 12:33:00 +00:00
|
|
|
}
|
2010-03-30 17:30:33 +00:00
|
|
|
}
|
2007-10-12 21:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ChatTools::clearChat() {
|
|
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(myTextBrowser)
|
|
|
|
|
myTextBrowser->clear();
|
2007-10-12 21:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ChatTools::checkInputLength(QString string) {
|
|
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(string.toUtf8().length() > 120) myLineEdit->setMaxLength(string.length());
|
2007-10-12 21:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-11 21:58:24 +00:00
|
|
|
void ChatTools::fillChatLinesHistory(QString fillString) {
|
|
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
chatLinesHistory << fillString;
|
|
|
|
|
if(chatLinesHistory.size() > 50) chatLinesHistory.removeFirst();
|
2007-10-11 21:58:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ChatTools::showChatHistoryIndex(int index) {
|
|
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(index <= chatLinesHistory.size()) {
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
// cout << chatLinesHistory.size() << " : " << index << endl;
|
|
|
|
|
if(index > 0)
|
|
|
|
|
myLineEdit->setText(chatLinesHistory.at(chatLinesHistory.size()-(index)));
|
|
|
|
|
else
|
|
|
|
|
myLineEdit->setText("");
|
|
|
|
|
}
|
2007-10-11 21:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ChatTools::nickAutoCompletition() {
|
|
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
QString myChatString = myLineEdit->text();
|
|
|
|
|
QStringList myChatStringList = myChatString.split(" ");
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
QStringList matchStringList;
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(nickAutoCompletitionCounter == 0) {
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(myNickTreeWidget) {
|
|
|
|
|
QTreeWidgetItemIterator it(myNickTreeWidget);
|
|
|
|
|
while (*it) {
|
|
|
|
|
if ((*it)->text(0).startsWith(myChatStringList.last(), Qt::CaseInsensitive) && myChatStringList.last() != "")
|
|
|
|
|
matchStringList << (*it)->text(0);
|
|
|
|
|
++it;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(!myNickStringList.isEmpty()) {
|
2007-10-12 11:07:42 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
QStringListIterator it(myNickStringList);
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
QString next = it.next();
|
|
|
|
|
if (next.startsWith(myChatStringList.last(), Qt::CaseInsensitive) && myChatStringList.last() != "")
|
|
|
|
|
matchStringList << next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(!matchStringList.isEmpty() || nickAutoCompletitionCounter > 0) {
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
myChatStringList.removeLast();
|
2007-10-12 18:45:28 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
// cout << nickAutoCompletitionCounter << endl;
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(nickAutoCompletitionCounter == 0) {
|
|
|
|
|
//first one
|
|
|
|
|
lastChatString = myChatStringList.join(" ");
|
|
|
|
|
lastMatchStringList = matchStringList;
|
|
|
|
|
}
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
if(nickAutoCompletitionCounter == lastMatchStringList.size()) nickAutoCompletitionCounter = 0;
|
|
|
|
|
|
|
|
|
|
// cout << nickAutoCompletitionCounter << "\n";
|
|
|
|
|
|
|
|
|
|
if(lastChatString == "")
|
|
|
|
|
myLineEdit->setText(lastMatchStringList.at(nickAutoCompletitionCounter)+": ");
|
|
|
|
|
else
|
|
|
|
|
myLineEdit->setText(lastChatString+" "+lastMatchStringList.at(nickAutoCompletitionCounter)+" ");
|
|
|
|
|
|
|
|
|
|
nickAutoCompletitionCounter++;
|
|
|
|
|
}
|
2007-10-11 21:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ChatTools::setChatTextEdited() {
|
|
|
|
|
|
2010-03-30 17:30:33 +00:00
|
|
|
nickAutoCompletitionCounter = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ChatTools::refreshIgnoreList()
|
|
|
|
|
{
|
2010-03-31 12:33:00 +00:00
|
|
|
ignoreList = myConfig->readConfigStringList("PlayerIgnoreList");
|
2007-10-11 21:58:24 +00:00
|
|
|
}
|