author | nemo |
Sun, 21 Feb 2010 22:01:59 +0000 | |
changeset 2838 | 4a79fd4f04a8 |
parent 2779 | e1ae0019d43f |
child 2845 | 19db164dd20d |
permissions | -rw-r--r-- |
480 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2007 Igor Ulyanov <iulyanov@gmail.com> |
1577 | 4 |
* Copyright (c) 2009 Andrey Korotaev <unC0Rr@gmail.com> |
480 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
20 |
#include <QTextBrowser> |
461 | 21 |
#include <QLineEdit> |
1391 | 22 |
#include <QAction> |
1577 | 23 |
#include <QApplication> |
1587 | 24 |
#include <QTextDocument> |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
25 |
#include <QDir> |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
26 |
#include <QSettings> |
461 | 27 |
|
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
28 |
#include "hwconsts.h" |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
29 |
#include "SDLs.h" |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
30 |
#include "gameuiconfig.h" |
461 | 31 |
#include "chatwidget.h" |
32 |
||
2775 | 33 |
HWChatWidget::HWChatWidget(QWidget* parent, QSettings * gameSettings, SDLInteraction * sdli, bool notify) : |
461 | 34 |
QWidget(parent), |
35 |
mainLayout(this) |
|
36 |
{ |
|
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
37 |
this->gameSettings = gameSettings; |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
38 |
this->sdli = sdli; |
2775 | 39 |
this->notify = notify; |
2776 | 40 |
if(notify && gameSettings->value("audio/frontendsound", true).toBool()) { |
2775 | 41 |
QDir tmpdir; |
42 |
||
43 |
tmpdir.cd(datadir->absolutePath()); |
|
2779
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
44 |
tmpdir.cd("Sounds/voices"); |
2775 | 45 |
sdli->SDLMusicInit(); |
2779
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
46 |
sound[0] = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/Classic/Hello.ogg").toLocal8Bit().constData()); |
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
47 |
sound[1] = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/Default/Hello.ogg").toLocal8Bit().constData()); |
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
48 |
sound[2] = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/Mobster/Hello.ogg").toLocal8Bit().constData()); |
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
49 |
sound[3] = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/Russian/Hello.ogg").toLocal8Bit().constData()); |
2775 | 50 |
} |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
51 |
|
1577 | 52 |
mainLayout.setSpacing(1); |
53 |
mainLayout.setMargin(1); |
|
54 |
mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
|
55 |
mainLayout.setColumnStretch(0, 75); |
|
56 |
mainLayout.setColumnStretch(1, 25); |
|
461 | 57 |
|
1577 | 58 |
chatEditLine = new QLineEdit(this); |
59 |
chatEditLine->setMaxLength(300); |
|
60 |
connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed())); |
|
461 | 61 |
|
1577 | 62 |
mainLayout.addWidget(chatEditLine, 1, 0, 1, 2); |
462 | 63 |
|
1577 | 64 |
chatText = new QTextBrowser(this); |
65 |
chatText->setMinimumHeight(20); |
|
66 |
chatText->setMinimumWidth(10); |
|
67 |
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
1589 | 68 |
chatText->setOpenExternalLinks(true); |
1577 | 69 |
mainLayout.addWidget(chatText, 0, 0); |
462 | 70 |
|
1577 | 71 |
chatNicks = new QListWidget(this); |
72 |
chatNicks->setMinimumHeight(10); |
|
73 |
chatNicks->setMinimumWidth(10); |
|
1666 | 74 |
chatNicks->setSortingEnabled(true); |
1577 | 75 |
chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
76 |
chatNicks->setContextMenuPolicy(Qt::ActionsContextMenu); |
|
2706
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
77 |
connect(chatNicks, SIGNAL(itemDoubleClicked(QListWidgetItem *)), |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
78 |
this, SLOT(chatNickDoubleClicked(QListWidgetItem *))); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
79 |
|
1577 | 80 |
mainLayout.addWidget(chatNicks, 0, 1); |
1391 | 81 |
|
1860 | 82 |
acInfo = new QAction(QAction::tr("Info"), chatNicks); |
1577 | 83 |
connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo())); |
1860 | 84 |
acKick = new QAction(QAction::tr("Kick"), chatNicks); |
85 |
connect(acKick, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
|
86 |
acBan = new QAction(QAction::tr("Ban"), chatNicks); |
|
87 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onBan())); |
|
2706
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
88 |
acFollow = new QAction(QAction::tr("Follow"), chatNicks); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
89 |
connect(acFollow, SIGNAL(triggered(bool)), this, SLOT(onFollow())); |
2377 | 90 |
|
1577 | 91 |
chatNicks->insertAction(0, acInfo); |
2706
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
92 |
chatNicks->insertAction(0, acFollow); |
461 | 93 |
} |
94 |
||
95 |
void HWChatWidget::returnPressed() |
|
96 |
{ |
|
1577 | 97 |
emit chatLine(chatEditLine->text()); |
98 |
chatEditLine->clear(); |
|
461 | 99 |
} |
100 |
||
1360 | 101 |
void HWChatWidget::onChatString(const QString& str) |
461 | 102 |
{ |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
103 |
if (chatStrings.size() > 250) |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
104 |
chatStrings.removeFirst(); |
1626 | 105 |
|
2396 | 106 |
QString formattedStr = Qt::escape(str.mid(1)); |
107 |
if (str.startsWith("\x03")) |
|
1626 | 108 |
formattedStr = QString("<font color=grey>%1</font>").arg(formattedStr); |
2396 | 109 |
else if (str.startsWith("\x02")) |
110 |
formattedStr = QString("<font color=magenta>%1</font>").arg(formattedStr); |
|
111 |
||
2377 | 112 |
|
1626 | 113 |
chatStrings.append(formattedStr); |
2377 | 114 |
|
1587 | 115 |
chatText->setHtml(chatStrings.join("<br>")); |
116 |
||
117 |
chatText->moveCursor(QTextCursor::End); |
|
118 |
} |
|
119 |
||
120 |
void HWChatWidget::onServerMessage(const QString& str) |
|
121 |
{ |
|
122 |
if (chatStrings.size() > 250) |
|
123 |
chatStrings.removeFirst(); |
|
2377 | 124 |
|
1588 | 125 |
chatStrings.append("<hr>" + str + "<hr>"); |
2377 | 126 |
|
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1577
diff
changeset
|
127 |
chatText->setHtml(chatStrings.join("<br>")); |
1516
bb9fa5809c49
Limit chat history to 250 entries to avoid DoS attack with its use
unc0rr
parents:
1457
diff
changeset
|
128 |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
129 |
chatText->moveCursor(QTextCursor::End); |
461 | 130 |
} |
465 | 131 |
|
2777 | 132 |
void HWChatWidget::nickAdded(const QString& nick, bool notifyNick) |
465 | 133 |
{ |
1391 | 134 |
QListWidgetItem * item = new QListWidgetItem(nick); |
2428 | 135 |
item->setIcon(QIcon(":/res/hh_small.png")); |
1391 | 136 |
chatNicks->addItem(item); |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
137 |
|
2777 | 138 |
if(notifyNick && notify && gameSettings->value("audio/frontendsound", true).toBool()) { |
2779
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
139 |
Mix_PlayChannel(-1, sound[rand()%4], 0); |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
140 |
} |
465 | 141 |
} |
142 |
||
143 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
144 |
{ |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
145 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
146 |
for(QList<QListWidgetItem *>::iterator it=items.begin(); it!=items.end();) { |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
147 |
chatNicks->takeItem(chatNicks->row(*it)); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
148 |
++it; |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
149 |
} |
465 | 150 |
} |
151 |
||
152 |
void HWChatWidget::clear() |
|
153 |
{ |
|
1311 | 154 |
chatText->clear(); |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
155 |
chatStrings.clear(); |
1311 | 156 |
chatNicks->clear(); |
465 | 157 |
} |
1391 | 158 |
|
159 |
void HWChatWidget::onKick() |
|
160 |
{ |
|
161 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
162 |
if (curritem) |
|
163 |
emit kick(curritem->text()); |
|
164 |
} |
|
1405 | 165 |
|
1860 | 166 |
void HWChatWidget::onBan() |
167 |
{ |
|
168 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
169 |
if (curritem) |
|
170 |
emit ban(curritem->text()); |
|
171 |
} |
|
172 |
||
1577 | 173 |
void HWChatWidget::onInfo() |
174 |
{ |
|
175 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
176 |
if (curritem) |
|
177 |
emit info(curritem->text()); |
|
178 |
} |
|
179 |
||
2706
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
180 |
void HWChatWidget::onFollow() |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
181 |
{ |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
182 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
183 |
if (curritem) |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
184 |
emit follow(curritem->text()); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
185 |
} |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
186 |
|
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
187 |
void HWChatWidget::chatNickDoubleClicked(QListWidgetItem * item) |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
188 |
{ |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
189 |
if (item) onFollow(); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
190 |
} |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
191 |
|
1405 | 192 |
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady) |
193 |
{ |
|
194 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
|
195 |
if (items.size() != 1) |
|
196 |
{ |
|
197 |
qWarning("Bug: cannot find user in chat"); |
|
198 |
return; |
|
199 |
} |
|
200 |
||
201 |
if(isReady) |
|
1457 | 202 |
items[0]->setIcon(QIcon(":/res/lightbulb_on.png")); |
1405 | 203 |
else |
1457 | 204 |
items[0]->setIcon(QIcon(":/res/lightbulb_off.png")); |
1405 | 205 |
} |
1860 | 206 |
|
207 |
void HWChatWidget::adminAccess(bool b) |
|
208 |
{ |
|
209 |
chatNicks->removeAction(acKick); |
|
210 |
chatNicks->removeAction(acBan); |
|
2377 | 211 |
|
1860 | 212 |
if(b) |
213 |
{ |
|
214 |
chatNicks->insertAction(0, acKick); |
|
1921 | 215 |
// chatNicks->insertAction(0, acBan); |
1860 | 216 |
} |
217 |
} |