Merge branch 'master' of ssh://codereview.qt-project.org/qt/qtdeclarative into newdocs
[profile/ivi/qtdeclarative.git] / src / particles / qquickwander_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtQuick module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef WANDERAFFECTOR_H
43 #define WANDERAFFECTOR_H
44 #include <QHash>
45 #include "qquickparticleaffector_p.h"
46
47 QT_BEGIN_HEADER
48
49 QT_BEGIN_NAMESPACE
50
51 struct WanderData{
52     qreal x_vel;
53     qreal y_vel;
54     qreal x_peak;
55     qreal x_var;
56     qreal y_peak;
57     qreal y_var;
58 };
59
60 class QQuickWanderAffector : public QQuickParticleAffector
61 {
62     Q_OBJECT
63     Q_PROPERTY(qreal pace READ pace WRITE setPace NOTIFY paceChanged)
64     Q_PROPERTY(qreal xVariance READ xVariance WRITE setXVariance NOTIFY xVarianceChanged)
65     Q_PROPERTY(qreal yVariance READ yVariance WRITE setYVariance NOTIFY yVarianceChanged)
66     Q_PROPERTY(AffectableParameters affectedParameter READ affectedParameter WRITE setAffectedParameter NOTIFY affectedParameterChanged)
67     Q_ENUMS(AffectableParameters)
68
69 public:
70     enum AffectableParameters {
71         Position,
72         Velocity,
73         Acceleration
74     };
75
76     explicit QQuickWanderAffector(QQuickItem *parent = 0);
77     ~QQuickWanderAffector();
78 //    virtual void reset(int systemIdx);
79
80     qreal xVariance() const
81     {
82         return m_xVariance;
83     }
84
85     qreal yVariance() const
86     {
87         return m_yVariance;
88     }
89
90     qreal pace() const
91     {
92         return m_pace;
93     }
94
95     AffectableParameters affectedParameter() const
96     {
97         return m_affectedParameter;
98     }
99
100 protected:
101     virtual bool affectParticle(QQuickParticleData *d, qreal dt);
102 signals:
103
104     void xVarianceChanged(qreal arg);
105
106     void yVarianceChanged(qreal arg);
107
108     void paceChanged(qreal arg);
109
110
111     void affectedParameterChanged(AffectableParameters arg);
112
113 public slots:
114 void setXVariance(qreal arg)
115 {
116     if (m_xVariance != arg) {
117         m_xVariance = arg;
118         emit xVarianceChanged(arg);
119     }
120 }
121
122 void setYVariance(qreal arg)
123 {
124     if (m_yVariance != arg) {
125         m_yVariance = arg;
126         emit yVarianceChanged(arg);
127     }
128 }
129
130 void setPace(qreal arg)
131 {
132     if (m_pace != arg) {
133         m_pace = arg;
134         emit paceChanged(arg);
135     }
136 }
137
138
139 void setAffectedParameter(AffectableParameters arg)
140 {
141     if (m_affectedParameter != arg) {
142         m_affectedParameter = arg;
143         emit affectedParameterChanged(arg);
144     }
145 }
146
147 private:
148     WanderData* getData(int idx);
149     QHash<int, WanderData*> m_wanderData;
150     qreal m_xVariance;
151     qreal m_yVariance;
152     qreal m_pace;
153     AffectableParameters m_affectedParameter;
154 };
155
156 QT_END_NAMESPACE
157 QT_END_HEADER
158 #endif // WANDERAFFECTOR_H