2011-07-02 23:03:18 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
|
* PokerTH - The open source texas holdem engine *
|
|
|
|
|
* Copyright (C) 2006-2011 Felix Hammer, Florian Thauer, Lothar May *
|
|
|
|
|
* *
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
2011-07-03 19:45:08 +00:00
|
|
|
*****************************************************************************/
|
|
|
|
|
#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;
|
|
|
|
|
|
|
|
|
|
|
2010-08-08 23:14:00 +00:00
|
|
|
ChatTools::ChatTools(QLineEdit* l, ConfigFile *c, ChatType ct, QTextBrowser *b, QStandardItemModel *m, gameLobbyDialogImpl *lo) : nickAutoCompletitionCounter(0), myLineEdit(l), myNickListModel(m), myNickStringList(NULL), myTextBrowser(b), myChatType(ct), myConfig(c), myNick(""), myLobby(lo)
|
2007-10-11 21:58:24 +00:00
|
|
|
{
|
2011-10-20 14:13:25 +00:00
|
|
|
myNick = QString::fromUtf8(myConfig->readConfigString("MyName").c_str());
|
|
|
|
|
ignoreList = myConfig->readConfigStringList("PlayerIgnoreList");
|
2010-07-14 09:29:05 +00:00
|
|
|
|
2007-10-11 21:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ChatTools::~ChatTools()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void ChatTools::sendMessage()
|
|
|
|
|
{
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(myLineEdit->text().size() && mySession) {
|
|
|
|
|
fillChatLinesHistory(myLineEdit->text());
|
|
|
|
|
QString chatText(myLineEdit->text());
|
|
|
|
|
if(myChatType == INGAME_CHAT) {
|
|
|
|
|
mySession->sendGameChatMessage(chatText.toUtf8().constData());
|
|
|
|
|
} else {
|
|
|
|
|
// Parse user name for private messages.
|
|
|
|
|
if(chatText.indexOf(QString("/msg ")) == 0) {
|
|
|
|
|
chatText.remove(0, 5);
|
|
|
|
|
unsigned playerId = parsePrivateMessageTarget(chatText);
|
2011-10-21 21:20:51 +00:00
|
|
|
if (playerId) {
|
2011-10-20 14:13:25 +00:00
|
|
|
mySession->sendPrivateChatMessage(playerId, chatText.toUtf8().constData());
|
2011-10-21 21:20:51 +00:00
|
|
|
QString tmp = tr("private message sent to player: %1");
|
|
|
|
|
myTextBrowser->append("<i>"+tmp.arg(QString::fromUtf8(mySession->getClientPlayerInfo(playerId).playerName.c_str()))+"</i>");
|
|
|
|
|
}
|
2011-10-20 14:13:25 +00:00
|
|
|
} else {
|
|
|
|
|
mySession->sendLobbyChatMessage(chatText.toUtf8().constData());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
myLineEdit->setText("");
|
|
|
|
|
}
|
2007-10-12 21:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
2011-10-19 20:49:34 +00:00
|
|
|
void ChatTools::receiveMessage(QString playerName, QString message, bool pm)
|
2011-02-11 20:02:08 +00:00
|
|
|
{
|
2007-10-12 21:16:02 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(myTextBrowser) {
|
2007-10-14 17:59:40 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
message = message.replace("<","<");
|
2012-03-03 14:24:00 +00:00
|
|
|
message = message.replace(">",">");
|
2012-02-06 23:05:00 +00:00
|
|
|
//doing the links
|
|
|
|
|
message = message.replace(QRegExp("((?:https?)://\\S+)"), "<a href=\"\\1\">\\1</a>");
|
2007-12-09 12:09:42 +00:00
|
|
|
|
2011-10-20 14:13:25 +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
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
QString tempMsg;
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(myChatType == INET_LOBBY_CHAT && playerName == "(chat bot)" && message.startsWith(myNick)) {
|
2010-09-05 16:59:36 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
tempMsg = QString("<span style=\"font-weight:bold; color:red;\">"+message+"</span>");
|
|
|
|
|
//play beep sound only in INET-lobby-chat
|
|
|
|
|
if(myLobby->isVisible() && myConfig->readConfigInt("PlayLobbyChatNotification")) {
|
|
|
|
|
myLobby->getMyW()->getMySDLPlayer()->playSound("lobbychatnotify",0);
|
|
|
|
|
}
|
|
|
|
|
} else if(message.contains(myNick, Qt::CaseInsensitive)) {
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
switch (myChatType) {
|
|
|
|
|
case INET_LOBBY_CHAT: {
|
|
|
|
|
tempMsg = QString("<span style=\"font-weight:bold; color:"+myLobby->palette().link().color().name()+";\">"+message+"</span>");
|
|
|
|
|
//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;
|
2012-02-06 23:05:00 +00:00
|
|
|
case INGAME_CHAT: {
|
|
|
|
|
message = message.replace("<a href","<a style=\"color:#"+myStyle->getChatLogTextColor()+"; text-decoration: underline;\" href");
|
2011-10-20 14:13:25 +00:00
|
|
|
tempMsg = QString("<span style=\"color:#"+myStyle->getChatTextNickNotifyColor()+";\">"+message+"</span>");
|
2012-03-03 14:24:00 +00:00
|
|
|
}
|
|
|
|
|
break;
|
2011-10-20 14:13:25 +00:00
|
|
|
default:
|
|
|
|
|
tempMsg = message;
|
|
|
|
|
}
|
|
|
|
|
} else if(playerName == myNick) {
|
|
|
|
|
switch (myChatType) {
|
|
|
|
|
case INET_LOBBY_CHAT:
|
|
|
|
|
tempMsg = QString("<span style=\"font-weight:normal; color:"+myLobby->palette().link().color().name()+";\">"+message+"</span>");
|
|
|
|
|
break;
|
|
|
|
|
case LAN_LOBBY_CHAT:
|
|
|
|
|
tempMsg = QString("<span style=\"font-weight:normal;\">"+message+"</span>");
|
|
|
|
|
break;
|
2012-02-06 23:05:00 +00:00
|
|
|
case INGAME_CHAT: {
|
|
|
|
|
message = message.replace("<a href","<a style=\"color:#"+myStyle->getChatTextNickNotifyColor()+"; text-decoration: underline;\" href");
|
2011-10-20 14:13:25 +00:00
|
|
|
tempMsg = QString("<span style=\"color:#"+myStyle->getChatLogTextColor()+";\">"+message+"</span>");
|
2012-03-03 14:24:00 +00:00
|
|
|
}
|
|
|
|
|
break;
|
2011-10-20 14:13:25 +00:00
|
|
|
default:
|
|
|
|
|
tempMsg = message;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
switch (myChatType) {
|
|
|
|
|
case INET_LOBBY_CHAT:
|
|
|
|
|
tempMsg = QString("<span style=\"font-weight:normal; color:"+myLobby->palette().text().color().name()+";\">"+message+"</span>");
|
|
|
|
|
break;
|
|
|
|
|
case LAN_LOBBY_CHAT:
|
|
|
|
|
tempMsg = QString("<span style=\"font-weight:normal;\">"+message+"</span>");
|
|
|
|
|
break;
|
2012-02-06 23:05:00 +00:00
|
|
|
case INGAME_CHAT: {
|
|
|
|
|
message = message.replace("<a href","<a style=\"color:#"+myStyle->getChatTextNickNotifyColor()+"; text-decoration: underline;\" href");
|
2011-10-20 14:13:25 +00:00
|
|
|
tempMsg = QString("<span style=\"color:#"+myStyle->getChatLogTextColor()+";\">"+message+"</span>");
|
2012-03-03 14:24:00 +00:00
|
|
|
}
|
|
|
|
|
break;
|
2011-10-20 14:13:25 +00:00
|
|
|
default:
|
|
|
|
|
tempMsg = message;
|
|
|
|
|
}
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
}
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-10-20 14:13:25 +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
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(playerName == QString::fromUtf8(it1->c_str())) {
|
|
|
|
|
nickFoundOnIgnoreList = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-03-31 12:33:00 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(!nickFoundOnIgnoreList) {
|
2010-10-21 21:26:21 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(message.indexOf(QString("/me "))==0) {
|
|
|
|
|
myTextBrowser->append(tempMsg.replace("/me ","<i>*"+playerName+" ")+"</i>");
|
|
|
|
|
} else if(pm == true) {
|
|
|
|
|
myTextBrowser->append("<i>"+playerName+"(pm): " + tempMsg+"</i>");
|
|
|
|
|
} else {
|
|
|
|
|
myTextBrowser->append(playerName + ": " + tempMsg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-10-12 21:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-11 23:02:29 +00:00
|
|
|
void ChatTools::privateMessage(QString playerName, QString message)
|
|
|
|
|
{
|
2011-10-20 14:13:25 +00:00
|
|
|
bool pm=true;
|
|
|
|
|
receiveMessage(playerName, message, pm);
|
2011-02-11 23:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void ChatTools::clearChat()
|
|
|
|
|
{
|
2007-10-12 21:16:02 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(myTextBrowser)
|
|
|
|
|
myTextBrowser->clear();
|
2007-10-12 21:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void ChatTools::checkInputLength(QString string)
|
|
|
|
|
{
|
2007-10-12 21:16:02 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(string.toUtf8().length() > 120) myLineEdit->setMaxLength(string.length());
|
2007-10-12 21:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void ChatTools::fillChatLinesHistory(QString fillString)
|
|
|
|
|
{
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
chatLinesHistory << fillString;
|
|
|
|
|
if(chatLinesHistory.size() > 50) chatLinesHistory.removeFirst();
|
2007-10-11 21:58:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void ChatTools::showChatHistoryIndex(int index)
|
|
|
|
|
{
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(index <= chatLinesHistory.size()) {
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +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
|
|
|
}
|
|
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void ChatTools::nickAutoCompletition()
|
|
|
|
|
{
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
QString myChatString = myLineEdit->text();
|
|
|
|
|
QStringList myChatStringList = myChatString.split(" ");
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
QStringList matchStringList;
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(nickAutoCompletitionCounter == 0) {
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(myNickListModel) {
|
|
|
|
|
int it = 0;
|
|
|
|
|
while (myNickListModel->item(it)) {
|
|
|
|
|
QString text = myNickListModel->item(it, 0)->data(Qt::DisplayRole).toString();
|
|
|
|
|
if(text.startsWith(myChatStringList.last(), Qt::CaseInsensitive) && myChatStringList.last() != "") {
|
|
|
|
|
matchStringList << text;
|
|
|
|
|
}
|
|
|
|
|
++it;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(!myNickStringList.isEmpty()) {
|
2007-10-12 11:07:42 +00:00
|
|
|
|
2011-10-20 14:13:25 +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
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(!matchStringList.isEmpty() || nickAutoCompletitionCounter > 0) {
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
myChatStringList.removeLast();
|
2007-10-12 18:45:28 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
// cout << nickAutoCompletitionCounter << endl;
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(nickAutoCompletitionCounter == 0) {
|
|
|
|
|
//first one
|
|
|
|
|
lastChatString = myChatStringList.join(" ");
|
|
|
|
|
lastMatchStringList = matchStringList;
|
|
|
|
|
}
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
if(nickAutoCompletitionCounter == lastMatchStringList.size()) nickAutoCompletitionCounter = 0;
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
// cout << nickAutoCompletitionCounter << "\n";
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-10-21 21:20:51 +00:00
|
|
|
if(lastChatString == "") {
|
2011-10-20 14:13:25 +00:00
|
|
|
myLineEdit->setText(lastMatchStringList.at(nickAutoCompletitionCounter)+": ");
|
2011-10-26 22:29:47 +00:00
|
|
|
} else {
|
2011-10-21 21:20:51 +00:00
|
|
|
//check if lastChatString is pm-code
|
|
|
|
|
if((lastChatString == "/msg" || lastChatString == "/msg ") && lastMatchStringList.at(nickAutoCompletitionCounter).contains(" ")) {
|
|
|
|
|
myLineEdit->setText(lastChatString+" \""+lastMatchStringList.at(nickAutoCompletitionCounter)+"\" ");
|
2011-10-26 22:29:47 +00:00
|
|
|
} else {
|
2011-10-21 21:20:51 +00:00
|
|
|
myLineEdit->setText(lastChatString+" "+lastMatchStringList.at(nickAutoCompletitionCounter)+" ");
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
nickAutoCompletitionCounter++;
|
|
|
|
|
}
|
2007-10-11 21:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void ChatTools::setChatTextEdited()
|
|
|
|
|
{
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-10-20 14:13:25 +00:00
|
|
|
nickAutoCompletitionCounter = 0;
|
2010-03-30 17:30:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ChatTools::refreshIgnoreList()
|
|
|
|
|
{
|
2011-10-20 14:13:25 +00:00
|
|
|
ignoreList = myConfig->readConfigStringList("PlayerIgnoreList");
|
2007-10-11 21:58:24 +00:00
|
|
|
}
|
2011-02-11 23:02:29 +00:00
|
|
|
|
|
|
|
|
unsigned ChatTools::parsePrivateMessageTarget(QString &chatText)
|
|
|
|
|
{
|
2011-10-20 14:13:25 +00:00
|
|
|
QString playerName;
|
|
|
|
|
int endPosName = -1;
|
|
|
|
|
// Target player is either in the format "this is a user" or singlename.
|
|
|
|
|
if (chatText.startsWith('"')) {
|
|
|
|
|
chatText.remove(0, 1);
|
|
|
|
|
endPosName = chatText.indexOf('"');
|
|
|
|
|
} else {
|
|
|
|
|
endPosName = chatText.indexOf(' ');
|
|
|
|
|
}
|
|
|
|
|
if (endPosName > 0) {
|
|
|
|
|
playerName = chatText.left(endPosName);
|
|
|
|
|
chatText.remove(0, endPosName + 1);
|
|
|
|
|
}
|
|
|
|
|
chatText = chatText.trimmed();
|
|
|
|
|
unsigned playerId = 0;
|
|
|
|
|
if (!playerName.isEmpty() && !chatText.isEmpty()) {
|
|
|
|
|
if(myNickListModel) {
|
|
|
|
|
int it = 0;
|
|
|
|
|
while (myNickListModel->item(it)) {
|
|
|
|
|
QString text = myNickListModel->item(it, 0)->data(Qt::DisplayRole).toString();
|
|
|
|
|
if(text == playerName) {
|
|
|
|
|
playerId = myNickListModel->item(it, 0)->data(Qt::UserRole).toUInt();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
++it;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return playerId;
|
2011-02-11 23:02:29 +00:00
|
|
|
}
|
|
|
|
|
|