Update to 5.0.0-beta1
[profile/ivi/qtdeclarative.git] / src / particles / qquickmaskextruder.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 "qquickmaskextruder_p.h"
43 #include <QtQml/qqml.h>
44 #include <QtQml/qqmlinfo.h>
45 #include <QImage>
46 #include <QDebug>
47 QT_BEGIN_NAMESPACE
48 /*!
49     \qmltype MaskShape
50     \instantiates QQuickMaskExtruder
51     \inqmlmodule QtQuick.Particles 2
52     \inherits Shape
53     \brief For representing an image as a shape to affectors and emitters
54     \ingroup qtquick-particles
55
56 */
57 /*!
58     \qmlproperty url QtQuick.Particles2::MaskShape::source
59
60     The image to use as the mask. Areas with non-zero opacity
61     will be considered inside the shape.
62 */
63
64
65 QQuickMaskExtruder::QQuickMaskExtruder(QObject *parent) :
66     QQuickParticleExtruder(parent)
67   , m_lastWidth(-1)
68   , m_lastHeight(-1)
69 {
70 }
71
72 void QQuickMaskExtruder::setSource(QUrl arg)
73 {
74     if (m_source != arg) {
75         m_source = arg;
76
77         m_lastHeight = -1;//Trigger reset
78         m_lastWidth = -1;
79         emit sourceChanged(arg);
80         startMaskLoading();
81     }
82 }
83
84 void QQuickMaskExtruder::startMaskLoading()
85 {
86     m_pix.clear(this);
87     if (m_source.isEmpty())
88         return;
89     m_pix.load(qmlEngine(this), m_source);
90     if (m_pix.isLoading())
91         m_pix.connectFinished(this, SLOT(finishMaskLoading()));
92     else
93         finishMaskLoading();
94 }
95
96 void QQuickMaskExtruder::finishMaskLoading()
97 {
98     if (m_pix.isError())
99         qmlInfo(this) << m_pix.error();
100 }
101
102 QPointF QQuickMaskExtruder::extrude(const QRectF &r)
103 {
104     ensureInitialized(r);
105     if (!m_mask.count() || m_img.isNull())
106         return r.topLeft();
107     const QPointF p = m_mask[rand() % m_mask.count()];
108     //### Should random sub-pixel positioning be added?
109     return p + r.topLeft();
110 }
111
112 bool QQuickMaskExtruder::contains(const QRectF &bounds, const QPointF &point)
113 {
114     ensureInitialized(bounds);//###Current usage patterns WILL lead to different bounds/r calls. Separate list?
115     if (m_img.isNull())
116         return false;
117     QPoint p = point.toPoint() - bounds.topLeft().toPoint();
118     return m_img.rect().contains(p) && (bool)m_img.pixelIndex(p);
119 }
120
121 void QQuickMaskExtruder::ensureInitialized(const QRectF &r)
122 {
123     if (m_lastWidth == r.width() && m_lastHeight == r.height())
124         return;//Same as before
125     if (!m_pix.isReady())
126         return;
127     m_lastWidth = r.width();
128     m_lastHeight = r.height();
129
130     m_mask.clear();
131
132     m_img = m_pix.image().createAlphaMask();
133     m_img = m_img.convertToFormat(QImage::Format_Mono);//Else LSB, but I think that's easier
134     m_img = m_img.scaled(r.size().toSize());//TODO: Do they need aspect ratio stuff? Or tiling?
135     for (int i=0; i<r.width(); i++){
136         for (int j=0; j<r.height(); j++){
137             if (m_img.pixelIndex(i,j))//Direct bit manipulation is presumably more efficient
138                 m_mask << QPointF(i,j);
139         }
140     }
141 }
142 QT_END_NAMESPACE