1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtQuick.Particles
Item {
id: root
height: 480
width: 320
Item {
id: startScreen
anchors.fill: parent
z: 1000
Image {
source: "title.png"
anchors.centerIn: parent
}
MouseArea{
anchors.fill: parent
onClicked: {//Game Start
parent.visible = false;
}
}
}
Rectangle {
id: bg
anchors.fill: parent
gradient: Gradient {
GradientStop { position: 0.0; color: "DarkBlue" }
GradientStop { position: 0.8; color: "SkyBlue" }
GradientStop { position: 0.81; color: "ForestGreen" }
GradientStop { position: 1.0; color: "DarkGreen" }
}
}
BearWhackParticleSystem {
id: particleSystem
anchors.fill: parent
running: !startScreen.visible
}
property int score: particleSystem.score
Text {
anchors.right: parent.right
anchors.margins: 4
anchors.top: parent.top
color: "white"
function padded(num) {
var ret = num.toString();
if (ret >= 0)
return ret.padStart(6, "0");
else
return "-" + ret.substr(1).padStart(6, "0");
}
text: "Score: " + padded(root.score)
}
MultiPointTouchArea {
anchors.fill: parent
touchPoints: [//Support up to 4 touches at once?
AugmentedTouchPoint{ system: particleSystem },
AugmentedTouchPoint{ system: particleSystem },
AugmentedTouchPoint{ system: particleSystem },
AugmentedTouchPoint{ system: particleSystem }
]
}
MouseArea{
anchors.fill: parent
id: ma
onPressedChanged: {
if (pressed) {
timer.restart();
sgoal.enabled = true;
particleSystem.explode(mouseX,mouseY);
}
}
Timer {
id: timer
interval: 100
running: false
repeat: false
onTriggered: sgoal.enabled = false
}
SpriteGoal {
id: sgoal
x: ma.mouseX - 16
y: ma.mouseY - 16
width: 32
height: 32
system: particleSystem
parent: particleSystem
goalState: "falling"
enabled: false
}
}
}
|