mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-01 04:14:47 +00:00
141 lines
2.8 KiB
Haxe
141 lines
2.8 KiB
Haxe
package;
|
|
|
|
import flixel.FlxG;
|
|
import flixel.FlxObject;
|
|
import flixel.FlxSubState;
|
|
import flixel.math.FlxPoint;
|
|
import flixel.util.FlxColor;
|
|
import flixel.util.FlxTimer;
|
|
|
|
class GameOverSubstate extends MusicBeatSubstate
|
|
{
|
|
var bf:Boyfriend;
|
|
var camFollow:FlxObject;
|
|
|
|
var stageSuffix:String = "";
|
|
var randomGameover:Int = 1;
|
|
|
|
public function new(x:Float, y:Float)
|
|
{
|
|
var daStage = PlayState.curStage;
|
|
var daBf:String = '';
|
|
switch (daStage)
|
|
{
|
|
case 'school':
|
|
stageSuffix = '-pixel';
|
|
daBf = 'bf-pixel-dead';
|
|
case 'schoolEvil':
|
|
stageSuffix = '-pixel';
|
|
daBf = 'bf-pixel-dead';
|
|
default:
|
|
daBf = 'bf';
|
|
}
|
|
|
|
super();
|
|
|
|
Conductor.songPosition = 0;
|
|
|
|
bf = new Boyfriend(x, y, daBf);
|
|
add(bf);
|
|
|
|
camFollow = new FlxObject(bf.getGraphicMidpoint().x, bf.getGraphicMidpoint().y, 1, 1);
|
|
add(camFollow);
|
|
|
|
FlxG.sound.play(Paths.sound('fnf_loss_sfx' + stageSuffix));
|
|
Conductor.changeBPM(100);
|
|
|
|
// FlxG.camera.followLerp = 1;
|
|
// FlxG.camera.focusOn(FlxPoint.get(FlxG.width / 2, FlxG.height / 2));
|
|
FlxG.camera.scroll.set();
|
|
FlxG.camera.target = null;
|
|
|
|
bf.playAnim('firstDeath');
|
|
|
|
randomGameover = FlxG.random.int(1, 25);
|
|
}
|
|
|
|
var playingDeathSound:Bool = false;
|
|
|
|
override function update(elapsed:Float)
|
|
{
|
|
super.update(elapsed);
|
|
|
|
if (controls.ACCEPT)
|
|
{
|
|
endBullshit();
|
|
}
|
|
|
|
if (controls.BACK)
|
|
{
|
|
FlxG.sound.music.stop();
|
|
|
|
if (PlayState.isStoryMode)
|
|
FlxG.switchState(new StoryMenuState());
|
|
else
|
|
FlxG.switchState(new FreeplayState());
|
|
}
|
|
|
|
if (bf.animation.curAnim.name == 'firstDeath' && bf.animation.curAnim.curFrame == 12)
|
|
{
|
|
FlxG.camera.follow(camFollow, LOCKON, 0.01);
|
|
}
|
|
|
|
switch (PlayState.storyWeek)
|
|
{
|
|
case 7:
|
|
if (bf.animation.curAnim.name == 'firstDeath' && bf.animation.curAnim.finished && !playingDeathSound)
|
|
{
|
|
playingDeathSound = true;
|
|
FlxG.sound.play(Paths.sound('jeffGameover/jeffGameover-' + randomGameover), 1, false, null, true, function()
|
|
{
|
|
bf.startedDeath = true;
|
|
coolStartDeath();
|
|
});
|
|
}
|
|
default:
|
|
if (bf.animation.curAnim.name == 'firstDeath' && bf.animation.curAnim.finished)
|
|
{
|
|
bf.startedDeath = true;
|
|
coolStartDeath();
|
|
}
|
|
}
|
|
|
|
if (FlxG.sound.music.playing)
|
|
{
|
|
Conductor.songPosition = FlxG.sound.music.time;
|
|
}
|
|
}
|
|
|
|
private function coolStartDeath():Void
|
|
{
|
|
FlxG.sound.playMusic(Paths.music('gameOver' + stageSuffix));
|
|
}
|
|
|
|
override function beatHit()
|
|
{
|
|
super.beatHit();
|
|
|
|
FlxG.log.add('beat');
|
|
}
|
|
|
|
var isEnding:Bool = false;
|
|
|
|
function endBullshit():Void
|
|
{
|
|
if (!isEnding)
|
|
{
|
|
isEnding = true;
|
|
bf.playAnim('deathConfirm', true);
|
|
FlxG.sound.music.stop();
|
|
FlxG.sound.play(Paths.music('gameOverEnd' + stageSuffix));
|
|
new FlxTimer().start(0.7, function(tmr:FlxTimer)
|
|
{
|
|
FlxG.camera.fade(FlxColor.BLACK, 2, false, function()
|
|
{
|
|
LoadingState.loadAndSwitchState(new PlayState());
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|