author | unc0rr |
Mon, 03 Nov 2014 23:56:51 +0300 | |
branch | qmlfrontend |
changeset 10456 | 6fd99bb73524 |
parent 10452 | 03519fd9f98d |
child 10612 | eb3c1a289a23 |
permissions | -rw-r--r-- |
10402 | 1 |
#ifndef HWENGINE_H |
2 |
#define HWENGINE_H |
|
3 |
||
4 |
#include <QObject> |
|
10416 | 5 |
#include <QByteArray> |
6 |
#include <QVector> |
|
10420 | 7 |
#include <QPixmap> |
10416 | 8 |
|
9 |
#include "flib.h" |
|
10402 | 10 |
|
10420 | 11 |
class QQmlEngine; |
12 |
||
10402 | 13 |
class HWEngine : public QObject |
14 |
{ |
|
15 |
Q_OBJECT |
|
16 |
public: |
|
10420 | 17 |
explicit HWEngine(QQmlEngine * engine, QObject *parent = 0); |
10402 | 18 |
~HWEngine(); |
19 |
||
20 |
static void exposeToQML(); |
|
10428
7c25297720f1
More refactoring: move PoC preview getting code into flib
unc0rr
parents:
10426
diff
changeset
|
21 |
Q_INVOKABLE void getPreview(); |
10432 | 22 |
Q_INVOKABLE void runQuickGame(); |
10448 | 23 |
Q_INVOKABLE void runLocalGame(); |
10424
4be6cd55f1cf
- Get rid of engine's PathPrefix and UserPathPrefix
unc0rr
parents:
10420
diff
changeset
|
24 |
Q_INVOKABLE QString currentSeed(); |
10442 | 25 |
Q_INVOKABLE void getTeamsList(); |
10450 | 26 |
Q_INVOKABLE void resetGameConfig(); |
10456 | 27 |
Q_INVOKABLE void setTheme(const QString & theme); |
10444
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10442
diff
changeset
|
28 |
|
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10442
diff
changeset
|
29 |
Q_INVOKABLE void tryAddTeam(const QString & teamName); |
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10442
diff
changeset
|
30 |
Q_INVOKABLE void tryRemoveTeam(const QString & teamName); |
10452
03519fd9f98d
Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents:
10450
diff
changeset
|
31 |
Q_INVOKABLE void changeTeamColor(const QString & teamName, int dir); |
10444
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10442
diff
changeset
|
32 |
|
10402 | 33 |
signals: |
10420 | 34 |
void previewImageChanged(); |
10442 | 35 |
void localTeamAdded(const QString & teamName, int aiLevel); |
10444
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10442
diff
changeset
|
36 |
void localTeamRemoved(const QString & teamName); |
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10442
diff
changeset
|
37 |
|
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10442
diff
changeset
|
38 |
void playingTeamAdded(const QString & teamName, int aiLevel, bool isLocal); |
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10442
diff
changeset
|
39 |
void playingTeamRemoved(const QString & teamName); |
47a6231f1fc1
Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents:
10442
diff
changeset
|
40 |
|
10452
03519fd9f98d
Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents:
10450
diff
changeset
|
41 |
void teamColorChanged(const QString & teamName, const QString & colorValue); |
03519fd9f98d
Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents:
10450
diff
changeset
|
42 |
|
10402 | 43 |
public slots: |
10416 | 44 |
|
45 |
private: |
|
10420 | 46 |
QQmlEngine * m_engine; |
10416 | 47 |
|
10428
7c25297720f1
More refactoring: move PoC preview getting code into flib
unc0rr
parents:
10426
diff
changeset
|
48 |
static void guiMessagesCallback(void * context, MessageType mt, const char * msg, uint32_t len); |
10434
1614b13ad35e
Themes model, also add some files I forgot to add previously
unc0rr
parents:
10432
diff
changeset
|
49 |
void fillModels(); |
10420 | 50 |
|
51 |
private slots: |
|
10430 | 52 |
void engineMessageHandler(MessageType mt, const QByteArray &msg); |
10402 | 53 |
}; |
54 |
||
55 |
#endif // HWENGINE_H |
|
56 |