mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 14:24:28 +00:00
142 lines
3.6 KiB
Haxe
142 lines
3.6 KiB
Haxe
package funkin.play.notes;
|
|
|
|
import flixel.group.FlxSpriteGroup.FlxTypedSpriteGroup;
|
|
import funkin.play.notes.NoteDirection;
|
|
import flixel.graphics.frames.FlxFramesCollection;
|
|
import funkin.util.assets.FlxAnimationUtil;
|
|
import flixel.FlxG;
|
|
import flixel.graphics.frames.FlxAtlasFrames;
|
|
import flixel.FlxSprite;
|
|
|
|
class NoteHoldCover extends FlxTypedSpriteGroup<FlxSprite>
|
|
{
|
|
static final FRAMERATE_DEFAULT:Int = 24;
|
|
|
|
static var glowFrames:FlxFramesCollection;
|
|
|
|
public var holdNote:SustainTrail;
|
|
|
|
var glow:FlxSprite;
|
|
var sparks:FlxSprite;
|
|
|
|
public function new()
|
|
{
|
|
super(0, 0);
|
|
|
|
setup();
|
|
}
|
|
|
|
public static function preloadFrames():Void
|
|
{
|
|
glowFrames = null;
|
|
for (direction in Strumline.DIRECTIONS)
|
|
{
|
|
var directionName = direction.colorName.toTitleCase();
|
|
|
|
var atlas:FlxFramesCollection = Paths.getSparrowAtlas('holdCover${directionName}');
|
|
atlas.parent.persist = true;
|
|
|
|
if (glowFrames != null)
|
|
{
|
|
glowFrames = FlxAnimationUtil.combineFramesCollections(glowFrames, atlas);
|
|
}
|
|
else
|
|
{
|
|
glowFrames = atlas;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add ALL the animations to this sprite. We will recycle and reuse the FlxSprite multiple times.
|
|
*/
|
|
function setup():Void
|
|
{
|
|
glow = new FlxSprite();
|
|
add(glow);
|
|
if (glowFrames == null) preloadFrames();
|
|
glow.frames = glowFrames;
|
|
|
|
for (direction in Strumline.DIRECTIONS)
|
|
{
|
|
var directionName = direction.colorName.toTitleCase();
|
|
|
|
glow.animation.addByPrefix('holdCoverStart$directionName', 'holdCoverStart${directionName}0', FRAMERATE_DEFAULT, false, false, false);
|
|
glow.animation.addByPrefix('holdCover$directionName', 'holdCover${directionName}0', FRAMERATE_DEFAULT, true, false, false);
|
|
glow.animation.addByPrefix('holdCoverEnd$directionName', 'holdCoverEnd${directionName}0', FRAMERATE_DEFAULT, false, false, false);
|
|
}
|
|
|
|
glow.animation.finishCallback = this.onAnimationFinished;
|
|
|
|
if (glow.animation.getAnimationList().length < 3 * 4)
|
|
{
|
|
trace('WARNING: NoteHoldCover failed to initialize all animations.');
|
|
}
|
|
}
|
|
|
|
public override function update(elapsed):Void
|
|
{
|
|
super.update(elapsed);
|
|
if ((!holdNote.alive || holdNote.missedNote) && !glow.animation.curAnim.name.startsWith('holdCoverEnd'))
|
|
{
|
|
// If alive is false, the hold note was held to completion.
|
|
// If missedNote is true, the hold note was "dropped".
|
|
|
|
playEnd();
|
|
}
|
|
}
|
|
|
|
public function playStart():Void
|
|
{
|
|
var direction:NoteDirection = holdNote.noteDirection;
|
|
glow.animation.play('holdCoverStart${direction.colorName.toTitleCase()}');
|
|
}
|
|
|
|
public function playContinue():Void
|
|
{
|
|
var direction:NoteDirection = holdNote.noteDirection;
|
|
glow.animation.play('holdCover${direction.colorName.toTitleCase()}');
|
|
}
|
|
|
|
public function playEnd():Void
|
|
{
|
|
var direction:NoteDirection = holdNote.noteDirection;
|
|
glow.animation.play('holdCoverEnd${direction.colorName.toTitleCase()}');
|
|
}
|
|
|
|
public override function kill():Void
|
|
{
|
|
super.kill();
|
|
|
|
this.visible = false;
|
|
|
|
if (glow != null) glow.visible = false;
|
|
if (sparks != null) sparks.visible = false;
|
|
}
|
|
|
|
public override function revive():Void
|
|
{
|
|
super.revive();
|
|
|
|
this.visible = true;
|
|
this.alpha = 1.0;
|
|
|
|
if (glow != null) glow.visible = true;
|
|
if (sparks != null) sparks.visible = true;
|
|
}
|
|
|
|
public function onAnimationFinished(animationName:String):Void
|
|
{
|
|
if (animationName.startsWith('holdCoverStart'))
|
|
{
|
|
playContinue();
|
|
}
|
|
if (animationName.startsWith('holdCoverEnd'))
|
|
{
|
|
// *lightning* *zap* *crackle*
|
|
this.visible = false;
|
|
this.kill();
|
|
}
|
|
}
|
|
}
|