-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7264be
commit e200fe5
Showing
12 changed files
with
1,786 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
plugins { | ||
alias(libs.plugins.android.library) | ||
alias(libs.plugins.jetbrains.kotlin.android) | ||
} | ||
|
||
android { | ||
|
||
namespace 'com.infomaniak.lib.confetti' | ||
compileSdk rootProject.ext.coreTargetSdk | ||
|
||
defaultConfig { | ||
minSdkVersion rootProject.ext.coreMinSdk | ||
targetSdkVersion rootProject.ext.coreTargetSdk | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility rootProject.ext.javaVersion | ||
targetCompatibility rootProject.ext.javaVersion | ||
} | ||
|
||
kotlinOptions { jvmTarget = rootProject.ext.javaVersion } | ||
} |
172 changes: 172 additions & 0 deletions
172
Confetti/src/main/java/com/infomaniak/lib/confetti/CommonConfetti.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
/* | ||
* Infomaniak Core - Android | ||
* Copyright (C) 2023 Infomaniak Network SA | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
package com.infomaniak.lib.confetti | ||
|
||
import android.content.res.Resources | ||
import android.graphics.Rect | ||
import android.view.ViewGroup | ||
import com.infomaniak.lib.confetti.Utils.defaultAlphaInterpolator | ||
import com.infomaniak.lib.confetti.Utils.generateConfettiBitmaps | ||
import com.infomaniak.lib.confetti.confetto.BitmapConfetto | ||
import com.infomaniak.lib.confetti.confetto.Confetto | ||
import java.util.Random | ||
|
||
class CommonConfetti private constructor(container: ViewGroup) { | ||
|
||
lateinit var confettiManager: ConfettiManager | ||
private set | ||
|
||
init { | ||
ensureStaticResources(container.resources) | ||
} | ||
|
||
/** | ||
* Starts a one-shot animation that emits all of the confetti at once. | ||
* | ||
* @return the resulting [ConfettiManager] that's performing the animation. | ||
*/ | ||
fun oneShot(): ConfettiManager = confettiManager!! | ||
.setNumInitialCount(100) | ||
.setEmissionDuration(0L) | ||
.animate(false) | ||
|
||
/** | ||
* Starts a stream of confetti that animates for the provided duration. | ||
* | ||
* @param durationInMillis how long to animate the confetti for. | ||
* @return the resulting [ConfettiManager] that's performing the animation. | ||
*/ | ||
fun stream(durationInMillis: Long): ConfettiManager = confettiManager!! | ||
.setNumInitialCount(0) | ||
.setEmissionDuration(durationInMillis) | ||
.setEmissionRate(50.0f) | ||
.animate(false) | ||
|
||
/** | ||
* Starts an infinite stream of confetti. | ||
* | ||
* @return the resulting [ConfettiManager] that's performing the animation. | ||
*/ | ||
fun infinite(): ConfettiManager = confettiManager!! | ||
.setNumInitialCount(0) | ||
.setEmissionDuration(ConfettiManager.INFINITE_DURATION) | ||
.setEmissionRate(50.0f) | ||
.animate(false) | ||
|
||
private fun getDefaultGenerator(colors: IntArray): ConfettoGenerator { | ||
val bitmaps = generateConfettiBitmaps(colors, defaultConfettiSize) | ||
val numBitmaps = bitmaps.size | ||
return object : ConfettoGenerator { | ||
override fun generateConfetto(random: Random): Confetto = BitmapConfetto(bitmaps[random.nextInt(numBitmaps)]) | ||
} | ||
} | ||
|
||
private fun configureRainingConfetti(container: ViewGroup, confettiSource: ConfettiSource, colors: IntArray) { | ||
val generator = getDefaultGenerator(colors) | ||
confettiManager = ConfettiManager(container.context, generator, confettiSource, container) | ||
.setVelocityX(0.0f, defaultVelocitySlow.toFloat()) | ||
.setVelocityY(defaultVelocityNormal.toFloat(), defaultVelocitySlow.toFloat()) | ||
.setInitialRotation(180, 180) | ||
.setRotationalAcceleration(360.0f, 180.0f) | ||
.setTargetRotationalVelocity(360.0f) | ||
} | ||
|
||
private fun configureExplosion(container: ViewGroup, x: Int, y: Int, colors: IntArray) { | ||
val generator = getDefaultGenerator(colors) | ||
val confettiSource = ConfettiSource(x, y) | ||
confettiManager = ConfettiManager(container.context, generator, confettiSource, container) | ||
.setTTL(1_000L) | ||
.setBound(Rect(x - explosionRadius, y - explosionRadius, x + explosionRadius, y + explosionRadius)) | ||
.setVelocityX(0.0f, defaultVelocityFast.toFloat()) | ||
.setVelocityY(0.0f, defaultVelocityFast.toFloat()) | ||
.enableFadeOut(defaultAlphaInterpolator) | ||
.setInitialRotation(180, 180) | ||
.setRotationalAcceleration(360.0f, 180.0f) | ||
.setTargetRotationalVelocity(360.0f) | ||
} | ||
|
||
companion object { | ||
|
||
private var defaultConfettiSize = 0 | ||
private var defaultVelocitySlow = 0 | ||
private var defaultVelocityNormal = 0 | ||
private var defaultVelocityFast = 0 | ||
private var explosionRadius = 0 | ||
|
||
// region Pre-configured confetti animations | ||
/** | ||
* @param container the container viewgroup to host the confetti animation. | ||
* @param colors the set of colors to colorize the confetti bitmaps. | ||
* @return the created common confetti object. | ||
* @see .rainingConfetti | ||
*/ | ||
fun rainingConfetti( | ||
container: ViewGroup, | ||
colors: IntArray, | ||
) = CommonConfetti(container).apply { | ||
val confettiSource = ConfettiSource(0, -defaultConfettiSize, container.width, -defaultConfettiSize) | ||
configureRainingConfetti(container, confettiSource, colors) | ||
} | ||
|
||
/** | ||
* Configures a confetti manager that has confetti falling from the provided confetti source. | ||
* | ||
* @param container the container viewgroup to host the confetti animation. | ||
* @param confettiSource the source of the confetti animation. | ||
* @param colors the set of colors to colorize the confetti bitmaps. | ||
* @return the created common confetti object. | ||
*/ | ||
fun rainingConfetti( | ||
container: ViewGroup, | ||
confettiSource: ConfettiSource, | ||
colors: IntArray, | ||
) = CommonConfetti(container).apply { | ||
configureRainingConfetti(container, confettiSource, colors) | ||
} | ||
|
||
/** | ||
* Configures a confetti manager that has confetti exploding out in all directions from the | ||
* provided x and y coordinates. | ||
* | ||
* @param container the container viewgroup to host the confetti animation. | ||
* @param x the x coordinate of the explosion source. | ||
* @param y the y coordinate of the explosion source. | ||
* @param colors the set of colors to colorize the confetti bitmaps. | ||
* @return the created common confetti object. | ||
*/ | ||
fun explosion( | ||
container: ViewGroup, | ||
x: Int, | ||
y: Int, | ||
colors: IntArray, | ||
) = CommonConfetti(container).apply { | ||
configureExplosion(container, x, y, colors) | ||
} | ||
// endregion | ||
|
||
private fun ensureStaticResources(resources: Resources) = with(resources) { | ||
if (defaultConfettiSize == 0) { | ||
defaultConfettiSize = getDimensionPixelSize(R.dimen.confetti_size) | ||
defaultVelocitySlow = getDimensionPixelOffset(R.dimen.confetti_velocity_slow) | ||
defaultVelocityNormal = getDimensionPixelOffset(R.dimen.confetti_velocity_normal) | ||
defaultVelocityFast = getDimensionPixelOffset(R.dimen.confetti_velocity_fast) | ||
explosionRadius = getDimensionPixelOffset(R.dimen.confetti_explosion_radius) | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.