8d1023d2a1d5a4f0c00a41d139fdba22446b814d
[profile/ivi/qtdeclarative.git] / src / quick / particles / qquickcustomaffector_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
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 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(QDeclarativeV8Handle 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