2020-10-05 18:24:51 +00:00
|
|
|
package;
|
|
|
|
|
|
|
|
import flixel.FlxG;
|
|
|
|
import flixel.FlxSprite;
|
|
|
|
import flixel.FlxState;
|
|
|
|
import flixel.addons.display.FlxGridOverlay;
|
|
|
|
import flixel.addons.transition.FlxTransitionSprite.GraphicTransTileDiamond;
|
|
|
|
import flixel.addons.transition.FlxTransitionableState;
|
|
|
|
import flixel.addons.transition.TransitionData;
|
|
|
|
import flixel.graphics.FlxGraphic;
|
2020-10-21 06:23:39 +00:00
|
|
|
import flixel.group.FlxGroup;
|
2020-10-09 07:29:00 +00:00
|
|
|
import flixel.input.gamepad.FlxGamepad;
|
2020-10-05 18:24:51 +00:00
|
|
|
import flixel.math.FlxPoint;
|
|
|
|
import flixel.math.FlxRect;
|
2020-10-21 06:23:39 +00:00
|
|
|
import flixel.text.FlxText;
|
2020-10-05 18:24:51 +00:00
|
|
|
import flixel.tweens.FlxEase;
|
|
|
|
import flixel.tweens.FlxTween;
|
|
|
|
import flixel.util.FlxColor;
|
|
|
|
import flixel.util.FlxTimer;
|
|
|
|
|
2020-10-21 06:23:39 +00:00
|
|
|
class TitleState extends MusicBeatState
|
2020-10-05 18:24:51 +00:00
|
|
|
{
|
|
|
|
static var initialized:Bool = false;
|
2020-10-07 01:56:14 +00:00
|
|
|
static public var soundExt:String = ".mp3";
|
2020-10-05 18:24:51 +00:00
|
|
|
|
2020-10-21 06:23:39 +00:00
|
|
|
var blackScreen:FlxSprite;
|
|
|
|
var credGroup:FlxGroup;
|
|
|
|
var credTextShit:FlxText;
|
|
|
|
|
2020-10-05 18:24:51 +00:00
|
|
|
override public function create():Void
|
|
|
|
{
|
2020-10-07 01:56:14 +00:00
|
|
|
#if (!web)
|
|
|
|
TitleState.soundExt = '.ogg';
|
|
|
|
#end
|
|
|
|
|
2020-10-05 18:24:51 +00:00
|
|
|
super.create();
|
|
|
|
|
|
|
|
if (!initialized)
|
|
|
|
{
|
|
|
|
var diamond:FlxGraphic = FlxGraphic.fromClass(GraphicTransTileDiamond);
|
|
|
|
diamond.persist = true;
|
|
|
|
diamond.destroyOnNoUse = false;
|
|
|
|
|
|
|
|
FlxTransitionableState.defaultTransIn = new TransitionData(FADE, FlxColor.BLACK, 2, new FlxPoint(0, -1), {asset: diamond, width: 32, height: 32},
|
|
|
|
new FlxRect(0, 0, FlxG.width, FlxG.height));
|
|
|
|
FlxTransitionableState.defaultTransOut = new TransitionData(FADE, FlxColor.BLACK, 1.3, new FlxPoint(0, 1),
|
|
|
|
{asset: diamond, width: 32, height: 32}, new FlxRect(0, 0, FlxG.width, FlxG.height));
|
|
|
|
|
|
|
|
initialized = true;
|
|
|
|
|
|
|
|
FlxTransitionableState.defaultTransIn.tileData = {asset: diamond, width: 32, height: 32};
|
|
|
|
FlxTransitionableState.defaultTransOut.tileData = {asset: diamond, width: 32, height: 32};
|
|
|
|
|
|
|
|
transIn = FlxTransitionableState.defaultTransIn;
|
|
|
|
transOut = FlxTransitionableState.defaultTransOut;
|
|
|
|
}
|
|
|
|
|
|
|
|
persistentUpdate = true;
|
|
|
|
|
2020-10-05 22:29:59 +00:00
|
|
|
var bg:FlxSprite = new FlxSprite().loadGraphic(AssetPaths.stageback__png);
|
|
|
|
bg.antialiasing = true;
|
|
|
|
bg.setGraphicSize(Std.int(bg.width * 0.6));
|
|
|
|
bg.updateHitbox();
|
2020-10-05 18:24:51 +00:00
|
|
|
add(bg);
|
|
|
|
|
|
|
|
var logoBl:FlxSprite = new FlxSprite().loadGraphic(AssetPaths.logo__png);
|
|
|
|
logoBl.screenCenter();
|
|
|
|
logoBl.color = FlxColor.BLACK;
|
|
|
|
add(logoBl);
|
|
|
|
|
|
|
|
var logo:FlxSprite = new FlxSprite().loadGraphic(AssetPaths.logo__png);
|
|
|
|
logo.screenCenter();
|
2020-10-05 22:29:59 +00:00
|
|
|
logo.antialiasing = true;
|
2020-10-05 18:24:51 +00:00
|
|
|
add(logo);
|
|
|
|
|
|
|
|
FlxTween.tween(logoBl, {y: logoBl.y + 50}, 0.6, {ease: FlxEase.quadInOut, type: PINGPONG});
|
|
|
|
FlxTween.tween(logo, {y: logoBl.y + 50}, 0.6, {ease: FlxEase.quadInOut, type: PINGPONG, startDelay: 0.1});
|
|
|
|
|
2020-10-21 06:23:39 +00:00
|
|
|
credGroup = new FlxGroup();
|
|
|
|
add(credGroup);
|
|
|
|
|
|
|
|
blackScreen = new FlxSprite().makeGraphic(FlxG.width, FlxG.height, FlxColor.BLACK);
|
|
|
|
credGroup.add(blackScreen);
|
|
|
|
|
|
|
|
credTextShit = new FlxText(0, 0, 0, "ninjamuffin99\nPhantomArcade\nEvilsk8er\nAnd Kawaisprite", 24);
|
|
|
|
credTextShit.screenCenter();
|
|
|
|
credTextShit.alignment = CENTER;
|
|
|
|
|
|
|
|
credTextShit.visible = false;
|
|
|
|
|
|
|
|
FlxTween.tween(credTextShit, {y: credTextShit.y + 20}, 2.9, {ease: FlxEase.quadInOut, type: PINGPONG});
|
|
|
|
|
|
|
|
credGroup.add(credTextShit);
|
|
|
|
|
|
|
|
FlxG.sound.playMusic('assets/music/freakyMenu' + TitleState.soundExt, 0, false);
|
2020-10-05 18:24:51 +00:00
|
|
|
|
|
|
|
FlxG.sound.music.fadeIn(4, 0, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
var transitioning:Bool = false;
|
|
|
|
|
|
|
|
override function update(elapsed:Float)
|
|
|
|
{
|
2020-10-21 06:23:39 +00:00
|
|
|
Conductor.songPosition = FlxG.sound.music.time;
|
|
|
|
|
2020-10-09 07:29:00 +00:00
|
|
|
var pressedEnter:Bool = FlxG.keys.justPressed.ENTER;
|
|
|
|
|
|
|
|
var gamepad:FlxGamepad = FlxG.gamepads.lastActive;
|
|
|
|
|
|
|
|
if (gamepad != null)
|
|
|
|
{
|
|
|
|
if (gamepad.justPressed.START)
|
|
|
|
pressedEnter = true;
|
|
|
|
}
|
|
|
|
|
2020-10-21 18:05:27 +00:00
|
|
|
if (pressedEnter && !skippedIntro)
|
|
|
|
{
|
|
|
|
skipIntro();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pressedEnter && !transitioning && skippedIntro)
|
2020-10-05 18:24:51 +00:00
|
|
|
{
|
2020-10-05 18:33:56 +00:00
|
|
|
FlxG.camera.flash(FlxColor.WHITE, 1);
|
|
|
|
|
2020-10-05 18:24:51 +00:00
|
|
|
transitioning = true;
|
|
|
|
FlxG.sound.music.stop();
|
|
|
|
|
|
|
|
new FlxTimer().start(2, function(tmr:FlxTimer)
|
|
|
|
{
|
|
|
|
FlxG.switchState(new PlayState());
|
|
|
|
});
|
2020-10-07 01:56:14 +00:00
|
|
|
FlxG.sound.play('assets/music/titleShoot' + TitleState.soundExt, 0.7);
|
2020-10-05 18:24:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
super.update(elapsed);
|
|
|
|
}
|
2020-10-21 06:23:39 +00:00
|
|
|
|
|
|
|
override function beatHit()
|
|
|
|
{
|
|
|
|
super.beatHit();
|
|
|
|
|
|
|
|
FlxG.log.add(curBeat);
|
|
|
|
|
|
|
|
switch (curBeat)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
credTextShit.visible = true;
|
|
|
|
case 3:
|
|
|
|
credTextShit.text += '\npresent...';
|
|
|
|
case 4:
|
|
|
|
credTextShit.visible = false;
|
|
|
|
credTextShit.text = 'In association \nwith';
|
|
|
|
credTextShit.screenCenter();
|
|
|
|
case 5:
|
|
|
|
credTextShit.visible = true;
|
|
|
|
case 7:
|
|
|
|
credTextShit.text += '\nNewgrounds';
|
|
|
|
case 8:
|
|
|
|
credTextShit.visible = false;
|
|
|
|
credTextShit.text = 'Shoutouts Tom Fulp';
|
|
|
|
credTextShit.screenCenter();
|
|
|
|
case 9:
|
|
|
|
credTextShit.visible = true;
|
|
|
|
case 11:
|
|
|
|
credTextShit.text += '\nlmao';
|
|
|
|
case 12:
|
|
|
|
credTextShit.visible = false;
|
|
|
|
credTextShit.text = "Friday";
|
|
|
|
credTextShit.screenCenter();
|
|
|
|
case 13:
|
|
|
|
credTextShit.visible = true;
|
|
|
|
case 14:
|
|
|
|
credTextShit.text += '\nNight';
|
|
|
|
case 15:
|
|
|
|
credTextShit.text += '\nFunkin';
|
|
|
|
|
|
|
|
case 16:
|
2020-10-21 18:05:27 +00:00
|
|
|
skipIntro();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var skippedIntro:Bool = false;
|
|
|
|
|
|
|
|
function skipIntro():Void
|
|
|
|
{
|
|
|
|
if (!skippedIntro)
|
|
|
|
{
|
|
|
|
FlxG.camera.flash(FlxColor.WHITE, 4);
|
|
|
|
remove(credGroup);
|
2020-10-21 06:23:39 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-05 18:24:51 +00:00
|
|
|
}
|