1266830f944b8888254278f137845b62fac5da0a
[profile/ivi/qtdeclarative.git] / src / particles / qquickcustomaffector_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtQuick module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef CUSTOMAFFECTOR_H
43 #define CUSTOMAFFECTOR_H
44
45 #include <QObject>
46 #include "qquickparticlesystem_p.h"
47 #include "qquickparticleextruder_p.h"
48 #include "qquickparticleaffector_p.h"
49 #include "qquickdirection_p.h"
50
51 QT_BEGIN_HEADER
52
53 QT_BEGIN_NAMESPACE
54
55 class QQuickCustomAffector : public QQuickParticleAffector
56 {
57     Q_OBJECT
58     Q_PROPERTY(bool relative READ relative WRITE setRelative NOTIFY relativeChanged)
59     Q_PROPERTY(QQuickDirection *position READ position WRITE setPosition NOTIFY positionChanged RESET positionReset)
60     Q_PROPERTY(QQuickDirection *speed READ speed WRITE setSpeed NOTIFY speedChanged RESET speedReset)
61     Q_PROPERTY(QQuickDirection *acceleration READ acceleration WRITE setAcceleration NOTIFY accelerationChanged RESET accelerationReset)
62
63 public:
64     explicit QQuickCustomAffector(QQuickItem *parent = 0);
65     virtual void affectSystem(qreal dt);
66
67     QQuickDirection * position() const
68     {
69         return m_position;
70     }
71
72     QQuickDirection * speed() const
73     {
74         return m_speed;
75     }
76
77     QQuickDirection * acceleration() const
78     {
79         return m_acceleration;
80     }
81
82     void positionReset()
83     {
84         m_position = &m_nullVector;
85     }
86
87     void speedReset()
88     {
89         m_speed = &m_nullVector;
90     }
91
92     void accelerationReset()
93     {
94         m_acceleration = &m_nullVector;
95     }
96
97     bool relative() const
98     {
99         return m_relative;
100     }
101
102
103 signals:
104     void affectParticles(QQmlV8Handle particles, qreal dt);
105
106     void positionChanged(QQuickDirection * arg);
107
108     void speedChanged(QQuickDirection * arg);
109
110     void accelerationChanged(QQuickDirection * arg);
111
112     void relativeChanged(bool arg);
113
114 public slots:
115     void setPosition(QQuickDirection * arg)
116     {
117         if (m_position != arg) {
118             m_position = arg;
119             emit positionChanged(arg);
120         }
121     }
122
123     void setSpeed(QQuickDirection * arg)
124     {
125         if (m_speed != arg) {
126             m_speed = arg;
127             emit speedChanged(arg);
128         }
129     }
130
131     void setAcceleration(QQuickDirection * arg)
132     {
133         if (m_acceleration != arg) {
134             m_acceleration = arg;
135             emit accelerationChanged(arg);
136         }
137     }
138
139     void setRelative(bool arg)
140     {
141         if (m_relative != arg) {
142             m_relative = arg;
143             emit relativeChanged(arg);
144         }
145     }
146
147 protected:
148     bool isAffectConnected();
149     virtual bool affectParticle(QQuickParticleData *d, qreal dt);
150 private:
151     void affectProperties(const QList<QQuickParticleData*> particles, qreal dt);
152     QQuickDirection * m_position;
153     QQuickDirection * m_speed;
154     QQuickDirection * m_acceleration;
155
156     QQuickDirection m_nullVector;
157     bool m_relative;
158 };
159
160 QT_END_NAMESPACE
161 QT_END_HEADER
162 #endif // CUSTOMAFFECTOR_H