85bfde0fbe42ef840116a07f290a27fdb37f776f
[profile/ivi/qtdeclarative.git] / src / particles / qquicktargetdirection.cpp
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 #include "qquicktargetdirection_p.h"
43 #include "qquickparticleemitter_p.h"
44 #include <cmath>
45 #include <QDebug>
46
47 QT_BEGIN_NAMESPACE
48 /*!
49     \qmltype TargetDirection
50     \instantiates QQuickTargetDirection
51     \inqmlmodule QtQuick.Particles 2
52     \ingroup qtquick-particles
53     \inherits Direction
54     \brief For specifying a direction towards the target point
55
56 */
57 /*!
58     \qmlproperty real QtQuick.Particles2::TargetDirection::targetX
59 */
60 /*!
61     \qmlproperty real QtQuick.Particles2::TargetDirection::targetY
62 */
63 /*!
64     \qmlproperty Item QtQuick.Particles2::TargetDirection::targetItem
65     If specified, this will take precedence over targetX and targetY.
66     The targeted point will be the center of the specified Item
67 */
68 /*!
69     \qmlproperty real QtQuick.Particles2::TargetDirection::targetVariation
70 */
71 /*!
72     \qmlproperty real QtQuick.Particles2::TargetDirection::magnitude
73 */
74 /*!
75     \qmlproperty real QtQuick.Particles2::TargetDirection::magnitudeVariation
76 */
77 /*!
78     \qmlproperty bool QtQuick.Particles2::TargetDirection::proportionalMagnitude
79
80     If true, then the value of magnitude and magnitudeVariation shall be interpreted as multiples
81     of the distance between the source point and the target point, per second.
82
83     If false(default), then the value of magnitude and magnitudeVariation shall be interpreted as
84     pixels per second.
85 */
86
87 QQuickTargetDirection::QQuickTargetDirection(QObject *parent) :
88     QQuickDirection(parent)
89   , m_targetX(0)
90   , m_targetY(0)
91   , m_targetVariation(0)
92   , m_proportionalMagnitude(false)
93   , m_magnitude(0)
94   , m_magnitudeVariation(0)
95   , m_targetItem(0)
96 {
97 }
98
99 const QPointF QQuickTargetDirection::sample(const QPointF &from)
100 {
101     //###This approach loses interpolating the last position of the target (like we could with the emitter) is it worthwhile?
102     QPointF ret;
103     qreal targetX;
104     qreal targetY;
105     if (m_targetItem){
106         QQuickParticleEmitter* parentEmitter = qobject_cast<QQuickParticleEmitter*>(parent());
107         targetX = m_targetItem->width()/2;
108         targetY = m_targetItem->height()/2;
109         if (!parentEmitter){
110             qWarning() << "Directed vector is not a child of the emitter. Mapping of target item coordinates may fail.";
111             targetX += m_targetItem->x();
112             targetY += m_targetItem->y();
113         }else{
114             ret = parentEmitter->mapFromItem(m_targetItem, QPointF(targetX, targetY));
115             targetX = ret.x();
116             targetY = ret.y();
117         }
118     }else{
119         targetX = m_targetX;
120         targetY = m_targetY;
121     }
122     targetX += 0 - from.x() - m_targetVariation + rand()/(float)RAND_MAX * m_targetVariation*2;
123     targetY += 0 - from.y() - m_targetVariation + rand()/(float)RAND_MAX * m_targetVariation*2;
124     qreal theta = atan2(targetY, targetX);
125     qreal mag = m_magnitude + rand()/(float)RAND_MAX * m_magnitudeVariation * 2 - m_magnitudeVariation;
126     if (m_proportionalMagnitude)
127         mag *= sqrt(targetX * targetX + targetY * targetY);
128     ret.setX(mag * cos(theta));
129     ret.setY(mag * sin(theta));
130     return ret;
131 }
132
133 QT_END_NAMESPACE