Immense Particles Refactor Part C
[profile/ivi/qtdeclarative.git] / examples / declarative / particles / exampleslauncher.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the examples of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 **   * Redistributions of source code must retain the above copyright
16 **     notice, this list of conditions and the following disclaimer.
17 **   * Redistributions in binary form must reproduce the above copyright
18 **     notice, this list of conditions and the following disclaimer in
19 **     the documentation and/or other materials provided with the
20 **     distribution.
21 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22 **     the names of its contributors may be used to endorse or promote
23 **     products derived from this software without specific prior written
24 **     permission.
25 **
26 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 import QtQuick 2.0
42 import QtQuick.Particles 2.0
43 import "launcherContent/launcher.js" as Util
44 import "launcherContent"
45
46 Rectangle{
47     color: "black"
48     width: 360
49     height: 600
50     Shell{
51         z: 1
52         id: shell
53         anchors.fill: parent
54     }
55     property string emissionMode: "Falling"
56     onEmissionModeChanged: workaround.active = true
57     VisualDataModel{//TODO: Transitions between modes
58         id: vdm
59         model: [
60             "../spaceexplorer/spaceexplorer.qml",
61             "../snow/snow.qml",
62             "../asteroid/asteroid.qml",
63             "../asteroid/blackhole.qml",
64             "../custom/blurparticles.qml",
65             "../modelparticles/bubbles.qml",
66             "../modelparticles/gridsplosion.qml",
67             "../modelparticles/package.qml",
68             "../modelparticles/stream.qml",
69             "../allsmiles/plain.qml",
70             "../allsmiles/smile.qml",
71             "../allsmiles/smilefactory.qml",
72             "../allsmiles/ultraparticles.qml",
73             "../allsmiles/spriteparticles.qml",
74             "../allsmiles/spritestateparticles.qml",
75             "../allsmiles/spritevariedparticles.qml",
76             "../trails/velocityfrommotion.qml",
77             "../trails/fireballs.qml",
78             "../trails/list.qml",
79             "../trails/portal.qml",
80             "../trails/rainbow.qml",
81             "../trails/dynamicemitters.qml",
82             "../trails/overburst.qml",
83             "../trails/layered.qml",
84             "../trails/shimmer.qml",
85             "../trails/turbulence.qml",
86             "../../../../demos/declarative/samegame/samegame.qml",
87             "../../../../demos/declarative/plasmapatrol/plasmapatrol.qml",
88             "../../../../demos/declarative/flickr/flickr.qml"
89         ]
90         delegate: Rectangle{
91             color: "white"
92             width: 96
93             height: 96
94             Image{
95                 width: 72
96                 height: 72
97                 anchors.centerIn: parent
98                 source: Util.iconFromPath(modelData)
99             }
100             Text{
101                 text: Util.nameFromPath(modelData)
102                 anchors.bottom: parent.bottom
103                 anchors.horizontalCenter: parent.horizontalCenter
104                 font.pixelSize: 8
105             }
106             MouseArea{
107                 anchors.fill: parent
108                 onClicked: shell.setDemo(modelData)
109             }
110         }
111     }
112     GridView{
113         anchors.fill: parent
114         anchors.bottomMargin: 128
115         model: vdm
116         visible: emissionMode == "Grid"
117         opacity: visible?1:0
118         Behavior on opacity{NumberAnimation{}}
119     }
120     ParticleSystem{ id: sys }
121     ModelParticle{
122         system: sys
123         model: vdm
124     }
125     Kill{
126         //TODO: File bug?
127         id: workaround
128         system: sys
129         active: false
130         onActiveChanged: timer.start()
131         Timer{
132             id: timer
133             interval: 32
134             running: false
135             repeat: false
136             onTriggered: workaround.active = false
137         }
138     }
139     Emitter{
140         system: sys
141         emitting: emissionMode == "Falling"
142         width: parent.width
143         particlesPerSecond: 2
144         particleDuration: 6000
145         speed: PointDirection{y:100;}
146     }
147     Emitter{
148         system: sys
149         emitting: emissionMode == "Bursting"
150         anchors.centerIn: parent
151         particlesPerSecond: 2
152         particleDuration: 6000
153         speed: AngledDirection{magnitude: 60; angleVariation: 360}
154     }
155     Emitter{
156         system: sys
157         emitting: emissionMode == "Shimmering"
158         anchors.fill: parent
159         particlesPerSecond: 4
160         particleDuration: 4000
161     }
162     Row{
163         anchors.bottom: parent.bottom
164         anchors.horizontalCenter: parent.horizontalCenter
165         Button{
166             text:"Grid"
167             onClicked: emissionMode = "Grid";
168         }
169         Button{
170             text:"Fall"
171             onClicked: emissionMode = "Falling";
172         }
173         Button{
174             text:"Burst"
175             onClicked: emissionMode = "Bursting";
176         }
177         Button{
178             text:"Shimmer"
179             onClicked: emissionMode = "Shimmering";
180         }
181     }
182 }