Fix sprite-less sprite mode
[profile/ivi/qtdeclarative.git] / src / quick / particles / qquickimageparticle_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the Declarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef ULTRAPARTICLE_H
43 #define ULTRAPARTICLE_H
44 #include "qquickparticlepainter_p.h"
45 #include "qquickdirection_p.h"
46 #include <QDeclarativeListProperty>
47 #include <QtQuick/qsgsimplematerial.h>
48 #include <QtGui/qcolor.h>
49
50 QT_BEGIN_HEADER
51
52 QT_BEGIN_NAMESPACE
53
54 class ImageMaterialData;
55 class QSGGeometryNode;
56
57 class QQuickSprite;
58 class QQuickStochasticEngine;
59
60 struct SimpleVertex {
61     float x;
62     float y;
63     float t;
64     float lifeSpan;
65     float size;
66     float endSize;
67     float vx;
68     float vy;
69     float ax;
70     float ay;
71 };
72
73 struct ColoredVertex {
74     float x;
75     float y;
76     float t;
77     float lifeSpan;
78     float size;
79     float endSize;
80     float vx;
81     float vy;
82     float ax;
83     float ay;
84     Color4ub color;
85 };
86
87 struct DeformableVertex {
88     float x;
89     float y;
90     float tx;
91     float ty;
92     float t;
93     float lifeSpan;
94     float size;
95     float endSize;
96     float vx;
97     float vy;
98     float ax;
99     float ay;
100     Color4ub color;
101     float xx;
102     float xy;
103     float yx;
104     float yy;
105     float rotation;
106     float rotationSpeed;
107     float autoRotate;//Assumed that GPUs prefer floats to bools
108 };
109
110 struct SpriteVertex {
111     float x;
112     float y;
113     float tx;
114     float ty;
115     float t;
116     float lifeSpan;
117     float size;
118     float endSize;
119     float vx;
120     float vy;
121     float ax;
122     float ay;
123     Color4ub color;
124     float xx;
125     float xy;
126     float yx;
127     float yy;
128     float rotation;
129     float rotationSpeed;
130     float autoRotate;//Assumed that GPUs prefer floats to bools
131     float animInterpolate;
132     float frameDuration;
133     float frameCount;
134     float animT;
135     float animX;
136     float animY;
137     float animWidth;
138     float animHeight;
139 };
140
141 template <typename Vertex>
142 struct Vertices {
143     Vertex v1;
144     Vertex v2;
145     Vertex v3;
146     Vertex v4;
147 };
148
149 class QQuickImageParticle : public QQuickParticlePainter
150 {
151     Q_OBJECT
152     Q_PROPERTY(QUrl source READ image WRITE setImage NOTIFY imageChanged)
153     Q_PROPERTY(QUrl colorTable READ colortable WRITE setColortable NOTIFY colortableChanged)
154     Q_PROPERTY(QUrl sizeTable READ sizetable WRITE setSizetable NOTIFY sizetableChanged)
155     Q_PROPERTY(QUrl opacityTable READ opacitytable WRITE setOpacitytable NOTIFY opacitytableChanged)
156
157     //###Now just colorize - add a flag for 'solid' color particles(where the img is just a mask?)?
158     Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged RESET resetColor)
159     //Stacks (added) with individual colorVariations
160     Q_PROPERTY(qreal colorVariation READ colorVariation WRITE setColorVariation NOTIFY colorVariationChanged RESET resetColor)
161     Q_PROPERTY(qreal redVariation READ redVariation WRITE setRedVariation NOTIFY redVariationChanged RESET resetColor)
162     Q_PROPERTY(qreal greenVariation READ greenVariation WRITE setGreenVariation NOTIFY greenVariationChanged RESET resetColor)
163     Q_PROPERTY(qreal blueVariation READ blueVariation WRITE setBlueVariation NOTIFY blueVariationChanged RESET resetColor)
164     //Stacks (multiplies) with the Alpha in the color, mostly here so you can use svg color names (which have full alpha)
165     Q_PROPERTY(qreal alpha READ alpha WRITE setAlpha NOTIFY alphaChanged RESET resetColor)
166     Q_PROPERTY(qreal alphaVariation READ alphaVariation WRITE setAlphaVariation NOTIFY alphaVariationChanged RESET resetColor)
167
168     Q_PROPERTY(qreal rotation READ rotation WRITE setRotation NOTIFY rotationChanged RESET resetRotation)
169     Q_PROPERTY(qreal rotationVariation READ rotationVariation WRITE setRotationVariation NOTIFY rotationVariationChanged RESET resetRotation)
170     Q_PROPERTY(qreal rotationSpeed READ rotationSpeed WRITE setRotationSpeed NOTIFY rotationSpeedChanged RESET resetRotation)
171     Q_PROPERTY(qreal rotationSpeedVariation READ rotationSpeedVariation WRITE setRotationSpeedVariation NOTIFY rotationSpeedVariationChanged RESET resetRotation)
172     //If true, then will face the direction of motion. Stacks with rotation, e.g. setting rotation
173     //to 180 will lead to facing away from the direction of motion
174     Q_PROPERTY(bool autoRotation READ autoRotation WRITE setAutoRotation NOTIFY autoRotationChanged RESET resetRotation)
175
176     //###Call i/j? Makes more sense to those with vector calculus experience, and I could even add the cirumflex in QML?
177     //xVector is the vector from the top-left point to the top-right point, and is multiplied by current size
178     Q_PROPERTY(QQuickDirection* xVector READ xVector WRITE setXVector NOTIFY xVectorChanged RESET resetDeformation)
179     //yVector is the same, but top-left to bottom-left. The particle is always a parallelogram.
180     Q_PROPERTY(QQuickDirection* yVector READ yVector WRITE setYVector NOTIFY yVectorChanged RESET resetDeformation)
181     Q_PROPERTY(QDeclarativeListProperty<QQuickSprite> sprites READ sprites)
182     Q_PROPERTY(bool spritesInterpolate READ spritesInterpolate WRITE setSpritesInterpolate NOTIFY spritesInterpolateChanged)
183
184     Q_PROPERTY(EntryEffect entryEffect READ entryEffect WRITE setEntryEffect NOTIFY entryEffectChanged)
185     Q_ENUMS(EntryEffect)
186 public:
187     explicit QQuickImageParticle(QQuickItem *parent = 0);
188     virtual ~QQuickImageParticle();
189
190
191     QDeclarativeListProperty<QQuickSprite> sprites();
192     QQuickStochasticEngine* spriteEngine() {return m_spriteEngine;}
193
194     enum EntryEffect {
195         None = 0,
196         Fade = 1,
197         Scale = 2
198     };
199
200     enum PerformanceLevel{//TODO: Expose?
201         Unknown = 0,
202         Simple,
203         Colored,
204         Deformable,
205         Tabled,
206         Sprites
207     };
208
209     QUrl image() const { return m_image_name; }
210     void setImage(const QUrl &image);
211
212     QUrl colortable() const { return m_colortable_name; }
213     void setColortable(const QUrl &table);
214
215     QUrl sizetable() const { return m_sizetable_name; }
216     void setSizetable (const QUrl &table);
217
218     QUrl opacitytable() const { return m_opacitytable_name; }
219     void setOpacitytable(const QUrl &table);
220
221     QColor color() const { return m_color; }
222     void setColor(const QColor &color);
223
224     qreal colorVariation() const { return m_color_variation; }
225     void setColorVariation(qreal var);
226
227     qreal alphaVariation() const { return m_alphaVariation; }
228
229     qreal alpha() const { return m_alpha; }
230
231     qreal redVariation() const { return m_redVariation; }
232
233     qreal greenVariation() const { return m_greenVariation; }
234
235     qreal blueVariation() const { return m_blueVariation; }
236
237     qreal rotation() const { return m_rotation; }
238
239     qreal rotationVariation() const { return m_rotationVariation; }
240
241     qreal rotationSpeed() const { return m_rotationSpeed; }
242
243     qreal rotationSpeedVariation() const { return m_rotationSpeedVariation; }
244
245     bool autoRotation() const { return m_autoRotation; }
246
247     QQuickDirection* xVector() const { return m_xVector; }
248
249     QQuickDirection* yVector() const { return m_yVector; }
250
251     bool spritesInterpolate() const { return m_spritesInterpolate; }
252
253     bool bypassOptimizations() const { return m_bypassOptimizations; }
254
255     EntryEffect entryEffect() const { return m_entryEffect; }
256
257     void resetColor();
258     void resetRotation();
259     void resetDeformation();
260
261 signals:
262
263     void imageChanged();
264     void colortableChanged();
265     void sizetableChanged();
266     void opacitytableChanged();
267
268     void colorChanged();
269     void colorVariationChanged();
270
271     void alphaVariationChanged(qreal arg);
272
273     void alphaChanged(qreal arg);
274
275     void redVariationChanged(qreal arg);
276
277     void greenVariationChanged(qreal arg);
278
279     void blueVariationChanged(qreal arg);
280
281     void rotationChanged(qreal arg);
282
283     void rotationVariationChanged(qreal arg);
284
285     void rotationSpeedChanged(qreal arg);
286
287     void rotationSpeedVariationChanged(qreal arg);
288
289     void autoRotationChanged(bool arg);
290
291     void xVectorChanged(QQuickDirection* arg);
292
293     void yVectorChanged(QQuickDirection* arg);
294
295     void spritesInterpolateChanged(bool arg);
296
297     void bypassOptimizationsChanged(bool arg);
298
299     void entryEffectChanged(EntryEffect arg);
300
301 public slots:
302     void reloadColor(const Color4ub &c, QQuickParticleData* d);
303     void setAlphaVariation(qreal arg);
304
305     void setAlpha(qreal arg);
306
307     void setRedVariation(qreal arg);
308
309     void setGreenVariation(qreal arg);
310
311     void setBlueVariation(qreal arg);
312
313     void setRotation(qreal arg);
314
315     void setRotationVariation(qreal arg);
316
317     void setRotationSpeed(qreal arg);
318
319     void setRotationSpeedVariation(qreal arg);
320
321     void setAutoRotation(bool arg);
322
323     void setXVector(QQuickDirection* arg);
324
325     void setYVector(QQuickDirection* arg);
326
327     void setSpritesInterpolate(bool arg);
328
329     void setBypassOptimizations(bool arg);
330
331     void setEntryEffect(EntryEffect arg);
332
333 protected:
334     void reset();
335     virtual void initialize(int gIdx, int pIdx);
336     virtual void commit(int gIdx, int pIdx);
337
338     QSGNode *updatePaintNode(QSGNode *, UpdatePaintNodeData *);
339     void prepareNextFrame();
340     QSGGeometryNode* buildParticleNodes();
341
342 private slots:
343     void createEngine(); //### method invoked by sprite list changing (in engine.h) - pretty nasty
344
345     void spriteAdvance(int spriteIndex);
346 private:
347     QUrl m_image_name;
348     QUrl m_colortable_name;
349     QUrl m_sizetable_name;
350     QUrl m_opacitytable_name;
351
352
353     QColor m_color;
354     qreal m_color_variation;
355
356     QSGGeometryNode *m_rootNode;
357     QHash<int, QSGGeometryNode *> m_nodes;
358     QHash<int, int> m_idxStarts;//TODO: Proper resizing will lead to needing a spriteEngine per particle - do this after sprite engine gains transparent sharing?
359     QList<QPair<int, int> > m_startsIdx;//Same data, optimized for alternate retrieval
360
361     int m_lastIdxStart;
362     QSGMaterial *m_material;
363
364     // derived values...
365
366     qreal m_alphaVariation;
367     qreal m_alpha;
368     qreal m_redVariation;
369     qreal m_greenVariation;
370     qreal m_blueVariation;
371     qreal m_rotation;
372     qreal m_rotationVariation;
373     qreal m_rotationSpeed;
374     qreal m_rotationSpeedVariation;
375     bool m_autoRotation;
376     QQuickDirection* m_xVector;
377     QQuickDirection* m_yVector;
378
379     QList<QQuickSprite*> m_sprites;
380     QQuickSpriteEngine* m_spriteEngine;
381     bool m_spritesInterpolate;
382
383     bool m_explicitColor;
384     bool m_explicitRotation;
385     bool m_explicitDeformation;
386     bool m_explicitAnimation;
387     QHash<int, QVector<QQuickParticleData*> > m_shadowData;
388     void clearShadows();
389     QQuickParticleData* getShadowDatum(QQuickParticleData* datum);
390
391     bool m_bypassOptimizations;
392     PerformanceLevel perfLevel;
393
394     PerformanceLevel m_lastLevel;
395     bool m_debugMode;
396
397     template<class Vertex>
398     void initTexCoords(Vertex* v, int count){
399         Vertex* end = v + count;
400         while (v < end){
401             v[0].tx = 0;
402             v[0].ty = 0;
403
404             v[1].tx = 1;
405             v[1].ty = 0;
406
407             v[2].tx = 0;
408             v[2].ty = 1;
409
410             v[3].tx = 1;
411             v[3].ty = 1;
412
413             v += 4;
414         }
415     }
416
417     template<class MaterialData>
418     MaterialData* getState(QSGMaterial* m){
419         return static_cast<QSGSimpleMaterial<MaterialData> *>(m)->state();
420     }
421     EntryEffect m_entryEffect;
422 };
423
424 QT_END_NAMESPACE
425 QT_END_HEADER
426 #endif // ULTRAPARTICLE_H