Funkin/source/GameOverSubstate.hx

158 lines
3.2 KiB
Haxe
Raw Normal View History

2020-10-27 10:35:23 +00:00
package;
import flixel.FlxG;
import flixel.FlxObject;
import flixel.FlxSubState;
import flixel.math.FlxPoint;
2020-10-28 07:03:32 +00:00
import flixel.util.FlxColor;
import flixel.util.FlxTimer;
import haxe.display.Display.Package;
2021-04-09 15:38:09 +00:00
import ui.PreferencesMenu;
2020-10-27 10:35:23 +00:00
2020-10-28 09:26:33 +00:00
class GameOverSubstate extends MusicBeatSubstate
2020-10-27 10:35:23 +00:00
{
var bf:Boyfriend;
var camFollow:FlxObject;
2021-01-30 12:16:51 +00:00
var stageSuffix:String = "";
2021-03-18 18:15:54 +00:00
var randomGameover:Int = 1;
2020-11-01 09:55:02 +00:00
2020-10-27 10:35:23 +00:00
public function new(x:Float, y:Float)
{
2021-01-30 12:16:51 +00:00
var daStage = PlayState.curStage;
var daBf:String = '';
switch (daStage)
{
case 'school':
stageSuffix = '-pixel';
daBf = 'bf-pixel-dead';
2021-02-02 13:04:23 +00:00
case 'schoolEvil':
2021-02-02 10:46:17 +00:00
stageSuffix = '-pixel';
daBf = 'bf-pixel-dead';
2021-01-30 12:16:51 +00:00
default:
daBf = 'bf';
}
var daSong = PlayState.SONG.song.toLowerCase();
switch (daSong)
{
case 'stress':
daBf = 'bf-holding-gf-dead';
}
2020-10-27 10:35:23 +00:00
super();
2020-10-28 09:26:33 +00:00
Conductor.songPosition = 0;
2021-01-30 12:16:51 +00:00
bf = new Boyfriend(x, y, daBf);
2020-10-27 10:35:23 +00:00
add(bf);
camFollow = new FlxObject(bf.getGraphicMidpoint().x, bf.getGraphicMidpoint().y, 1, 1);
add(camFollow);
2021-02-08 21:34:48 +00:00
FlxG.sound.play(Paths.sound('fnf_loss_sfx' + stageSuffix));
2020-10-28 09:26:33 +00:00
Conductor.changeBPM(100);
2020-10-27 10:35:23 +00:00
// 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');
2021-03-18 18:15:54 +00:00
2021-04-09 15:38:09 +00:00
var randomCensor:Array<Int> = [];
if (PreferencesMenu.getPref('censor-naughty'))
randomCensor = [1, 3, 8, 13, 17, 21];
randomGameover = FlxG.random.int(1, 25, randomCensor);
2020-10-27 10:35:23 +00:00
}
2021-03-18 18:15:54 +00:00
var playingDeathSound:Bool = false;
2020-10-27 10:35:23 +00:00
override function update(elapsed:Float)
{
super.update(elapsed);
2020-11-01 07:58:20 +00:00
if (controls.ACCEPT)
2020-10-28 07:03:32 +00:00
{
endBullshit();
}
2020-11-01 07:58:20 +00:00
if (controls.BACK)
{
2021-04-09 20:37:54 +00:00
PlayState.deathCounter = 0;
PlayState.seenCutscene = false;
2020-11-01 07:58:20 +00:00
FlxG.sound.music.stop();
if (PlayState.isStoryMode)
FlxG.switchState(new StoryMenuState());
else
FlxG.switchState(new FreeplayState());
}
2020-10-27 10:35:23 +00:00
if (bf.animation.curAnim.name == 'firstDeath' && bf.animation.curAnim.curFrame == 12)
{
FlxG.camera.follow(camFollow, LOCKON, 0.01);
}
2021-03-18 18:15:54 +00:00
switch (PlayState.storyWeek)
2020-10-27 10:35:23 +00:00
{
2021-03-18 18:15:54 +00:00
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();
}
2020-10-27 10:35:23 +00:00
}
2020-10-28 09:26:33 +00:00
if (FlxG.sound.music.playing)
{
Conductor.songPosition = FlxG.sound.music.time;
}
}
2021-03-18 18:15:54 +00:00
private function coolStartDeath():Void
{
FlxG.sound.playMusic(Paths.music('gameOver' + stageSuffix));
}
2020-10-28 09:26:33 +00:00
override function beatHit()
{
super.beatHit();
FlxG.log.add('beat');
2020-10-27 10:35:23 +00:00
}
2020-10-28 07:03:32 +00:00
var isEnding:Bool = false;
function endBullshit():Void
{
if (!isEnding)
{
isEnding = true;
bf.playAnim('deathConfirm', true);
FlxG.sound.music.stop();
2021-02-08 21:34:48 +00:00
FlxG.sound.play(Paths.music('gameOverEnd' + stageSuffix));
2020-10-28 07:03:32 +00:00
new FlxTimer().start(0.7, function(tmr:FlxTimer)
{
FlxG.camera.fade(FlxColor.BLACK, 2, false, function()
{
LoadingState.loadAndSwitchState(new PlayState());
2020-10-28 07:03:32 +00:00
});
});
}
}
2020-10-27 10:35:23 +00:00
}