matrixion/resources/qml/ui/TimelineEffects.qml

115 lines
2.7 KiB
QML
Raw Normal View History

2023-03-24 16:36:42 +03:00
// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.15
import QtQuick.Particles 2.15
Item {
2023-06-19 02:54:32 +03:00
id: effectRoot
2023-03-24 16:36:42 +03:00
readonly property int maxLifespan: Math.max(confettiEmitter.lifeSpan, rainfallEmitter.lifeSpan)
2023-06-19 02:54:32 +03:00
required property bool shouldEffectsRun
2023-03-24 16:36:42 +03:00
function pulseConfetti()
{
2023-06-19 02:54:32 +03:00
confettiEmitter.pulse(effectRoot.height * 2)
2023-03-24 16:36:42 +03:00
}
function pulseRainfall()
{
2023-06-19 02:54:32 +03:00
rainfallEmitter.pulse(effectRoot.height * 3.3)
2023-03-24 16:36:42 +03:00
}
ParticleSystem {
id: particleSystem
Component.onCompleted: pause();
2023-06-19 02:54:32 +03:00
paused: !effectRoot.shouldEffectsRun
2023-03-24 16:36:42 +03:00
}
Emitter {
id: confettiEmitter
group: "confetti"
2023-06-19 02:54:32 +03:00
width: effectRoot.width * 3/4
2023-03-24 16:36:42 +03:00
enabled: false
2023-06-19 02:54:32 +03:00
anchors.horizontalCenter: effectRoot.horizontalCenter
y: effectRoot.height
emitRate: Math.min(400 * Math.sqrt(effectRoot.width * effectRoot.height) / 870, 1000)
2023-03-24 16:36:42 +03:00
lifeSpan: 15000
system: particleSystem
maximumEmitted: 500
velocityFromMovement: 8
size: 16
sizeVariation: 4
velocity: PointDirection {
x: 0
2023-06-19 02:54:32 +03:00
y: -Math.min(450 * effectRoot.height / 700, 1000)
xVariation: Math.min(4 * effectRoot.width / 7, 450)
2023-03-24 16:36:42 +03:00
yVariation: 250
}
}
ImageParticle {
system: particleSystem
groups: ["confetti"]
source: "qrc:/confettiparticle.svg"
rotationVelocity: 0
rotationVelocityVariation: 360
colorVariation: 1
color: "white"
entryEffect: ImageParticle.None
xVector: PointDirection {
x: 1
y: 0
xVariation: 0.2
yVariation: 0.2
}
yVector: PointDirection {
x: 0
y: 0.5
xVariation: 0.2
yVariation: 0.2
}
}
Gravity {
system: particleSystem
groups: ["confetti"]
2023-06-19 02:54:32 +03:00
anchors.fill: effectRoot
2023-03-24 16:36:42 +03:00
magnitude: 350
angle: 90
}
Emitter {
id: rainfallEmitter
group: "rain"
2023-06-19 02:54:32 +03:00
width: effectRoot.width
2023-03-24 16:36:42 +03:00
enabled: false
2023-06-19 02:54:32 +03:00
anchors.horizontalCenter: effectRoot.horizontalCenter
2023-03-24 16:36:42 +03:00
y: -60
2023-06-19 02:54:32 +03:00
emitRate: effectRoot.width / 50
2023-03-24 16:36:42 +03:00
lifeSpan: 10000
system: particleSystem
velocity: PointDirection {
x: 0
y: 300
xVariation: 0
yVariation: 75
}
ItemParticle {
system: particleSystem
groups: ["rain"]
fade: false
delegate: Rectangle {
width: 2
height: 30 + 30 * Math.random()
radius: 2
color: "#0099ff"
}
}
}
}