summaryrefslogtreecommitdiffstats
path: root/qsmonster/qsmonster.cpp
blob: 1894ab081fbcce1016b1c51cd46772a7a586a8e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the Graphics Dojo project on Qt Labs.
**
** This file may be used under the terms of the GNU General Public
** License version 2.0 or 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of
** this file.  Please review the following information to ensure GNU
** General Public Licensing requirements will be met:
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
** http://www.gnu.org/copyleft/gpl.html.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/

#include <QtCore>
#include <QtGui>
#include <QtNetwork>
#include <QtScript>

#define MONSTER_JS_URL "http://deanm.github.com/pre3d/monster.js"

#if defined(Q_WS_MAC)
#define MONSTER_OFFSCREEN
#endif

struct PaintCommand {
    qreal opacity;
    QPen stroke;
    QBrush fill;
    QPolygonF polygon;
};

static inline QColor parseColor(const QString &name)
{
    if (name == "none")
        return QColor();

    if (name.startsWith("rgba(")) {
        int start = name.indexOf('(');
        int end = name.indexOf(')', start + 2);
        QString substr = name.mid(start + 1, end - start - 1);
        QStringList colors = substr.trimmed().split(',');
        if (colors.count() == 4) {
            int r = colors[0].toInt();
            int g = colors[1].toInt();
            int b = colors[2].toInt();
            int a = qMax(0, static_cast<int>(colors[3].toDouble() * 255));
            return QColor(r, g, b, a);
        }
    }

    return QColor(name);
}

static QScriptValue drawPolygons(QScriptContext *context, QScriptEngine *engine);

class QSMonster : public QWidget
{
    Q_OBJECT

private:

    QScriptEngine *engine;
    QNetworkAccessManager *manager;
#ifdef MONSTER_OFFSCREEN
    QPixmap pixmap;
#endif

public:

    QVector<PaintCommand> commandBuffer;
    int fps;

    QSMonster(QWidget *parent = 0): QWidget(parent), fps(0) {

        engine = new QScriptEngine(this);
        engine->globalObject().setProperty("drawPolygons", engine->newFunction(drawPolygons, 2));

        manager = new QNetworkAccessManager(this);
        connect(manager, SIGNAL(finished(QNetworkReply*)), SLOT(start(QNetworkReply*)));

        QUrl url(MONSTER_JS_URL);
        QNetworkReply *reply = manager->get(QNetworkRequest(url));
        connect(reply, SIGNAL(downloadProgress(qint64, qint64)), SLOT(progress(qint64, qint64)));

        setWindowTitle(QString("About to download %1").arg(MONSTER_JS_URL));

#ifdef MONSTER_OFFSCREEN
        pixmap = QPixmap(800, 600);
        pixmap.fill(Qt::black);
#endif
    }

public slots:

    void progress(qint64 received, qint64 total) {
        int percent = received * 100 / total;
        setWindowTitle(QString("Downloading %1: %2%").arg(MONSTER_JS_URL).arg(percent));
    }

    void start(QNetworkReply *networkReply) {
        QUrl url = networkReply->url();
        if (networkReply->error()) {
            setWindowTitle(QString("Can't download %1: %2").arg(url.toString())
                           .arg(networkReply->errorString()));
        } else {

            setWindowTitle("Monster Evolution in Qt");
            setAttribute(Qt::WA_OpaquePaintEvent, true);

            QFile file;
            file.setFileName(":/magic.js");
            file.open(QIODevice::ReadOnly);
            QString magicCode = file.readAll();
            file.close();
            engine->evaluate(magicCode);

            QString scriptCode = networkReply->readAll();

            // Qt Script parser does not accept this
#if QT_VERSION < 0x040500
            scriptCode.replace(",}", "}");
#else
            scriptCode.replace("break}", "break;}");
            scriptCode.replace("continue}", "continue;}");
#endif

            engine->evaluate(scriptCode);
            engine->evaluate("window.onLoad()");
            startTimer(33);
        }
        networkReply->deleteLater();
    }

protected:

    void timerEvent(QTimerEvent*) {
        engine->evaluate("window.onTimer()");
    }

    void paintEvent(QPaintEvent*) {
        QPainter p;
#ifdef MONSTER_OFFSCREEN
        p.begin(&pixmap);
#else
        p.begin(this);
#endif
        p.setRenderHint(QPainter::Antialiasing, true);
        const PaintCommand *cmd = commandBuffer.constData();
        int count = commandBuffer.count();
        for (int i = 0; i < count; ++i, ++cmd) {
            p.setPen(cmd->stroke);
            p.setOpacity(cmd->opacity);
            p.setBrush(cmd->fill);
            p.drawPolygon(cmd->polygon);
        }
        p.setPen(Qt::white);
        p.drawText(10, 600 - 20, QString("%1 FPS").arg(fps));
        p.end();

#ifdef MONSTER_OFFSCREEN
        p.begin(this);
        p.drawPixmap(0,0, pixmap);
        p.end();
#endif
    }

};

static QScriptValue drawPolygons(QScriptContext *context, QScriptEngine *engine)
{
    QSMonster *qsmonster = static_cast<QSMonster*>(engine->parent());

    int polygonCount = context->argument(0).toInt32();
    QScriptValue polygonBuffer = context->argument(1);

    qsmonster->commandBuffer.resize(polygonCount);

    for (int c = 0; c < polygonCount; ++c) {

        QScriptValue cmd = polygonBuffer.property(c);
        qreal alpha = cmd.property(0).toNumber();
        QString strokeColor = cmd.property(1).toString();
        QString fillColor = cmd.property(2).toString();
        int pointCount = cmd.property(3).toInt32();
        QScriptValue pointArray = cmd.property(4);

        QPolygonF polygon(pointCount / 2);
        for (int p = 0; p < pointCount / 2; ++p) {
            polygon[p] = QPointF(pointArray.property(2 * p).toNumber(),
                                 pointArray.property(2 * p + 1).toNumber());
        }

        PaintCommand *paint = qsmonster->commandBuffer.data() + c;
        paint->opacity = alpha;
        paint->stroke = QPen(Qt::NoPen);
        if (strokeColor != "none") {
            paint->stroke.setStyle(Qt::SolidLine);
            paint->stroke.setColor(parseColor(strokeColor));
        }
        paint->fill = QBrush(Qt::NoBrush);
        if (fillColor != "none")
            paint->fill = QBrush(parseColor(fillColor));
        paint->polygon = polygon;
    }

    qsmonster->update();

    static QTime frameTick;
    static int totalFrame = 0;
    if (!(totalFrame & 15)) {
        int elapsed = frameTick.elapsed();
        frameTick.start();
        qsmonster->fps = 16 * 1000 / (1 + elapsed);
    }
    totalFrame++;

    return QScriptValue();
}

#include "qsmonster.moc"

int main(int argc, char **argv)
{
    Q_INIT_RESOURCE(qsmonster);

    QApplication app(argc, argv);

    QSMonster qsmonster;
    qsmonster.setFixedSize(800, 600);
    qsmonster.show();

    return app.exec();
}