author | Wuzzy <Wuzzy2@mail.ru> |
Wed, 19 Sep 2018 09:31:06 +0200 | |
changeset 13825 | 096cc009e0b8 |
parent 12897 | fc47fc4af6bd |
child 15909 | 7409084d891f |
permissions | -rw-r--r-- |
239 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
239 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
239 | 17 |
*/ |
18 |
||
19 |
#ifndef _PROTO_H |
|
20 |
#define _PROTO_H |
|
21 |
||
22 |
#include <QByteArray> |
|
23 |
#include <QString> |
|
24 |
#include <QStringList> |
|
12897
fc47fc4af6bd
Finish porting. Seems to work, but no thorough testing has been performed
unc0rr
parents:
11046
diff
changeset
|
25 |
#include <QObject> |
239 | 26 |
|
27 |
class HWProto : public QObject |
|
28 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
29 |
Q_OBJECT |
239 | 30 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
31 |
public: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
32 |
HWProto(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
33 |
static QByteArray & addStringToBuffer(QByteArray & buf, const QString & string); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
34 |
static QByteArray & addByteArrayToBuffer(QByteArray & buf, const QByteArray & msg); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
35 |
static QByteArray & addStringListToBuffer(QByteArray & buf, const QStringList & strList); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
36 |
static QString formatChatMsg(const QString & nick, const QString & msg); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
37 |
static QString formatChatMsgForFrontend(const QString & msg); |
8759 | 38 |
/** |
39 |
* @brief Determines if a chat string represents a chat action and returns the action. |
|
40 |
* @param string chat string |
|
41 |
* @return the action-message or NULL if message is no action |
|
42 |
*/ |
|
43 |
static QString chatStringToAction(const QString & string); |
|
239 | 44 |
}; |
45 |
||
46 |
#endif // _PROTO_H |