Funkin/source/TitleState.hx

334 lines
9.3 KiB
Haxe
Raw Normal View History

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-11-01 04:34:17 +00:00
import flixel.graphics.frames.FlxAtlasFrames;
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;
2020-10-27 08:31:21 +00:00
var credTextShit:Alphabet;
var textGroup:FlxGroup;
2020-10-31 10:07:22 +00:00
var ngSpr:FlxSprite;
2020-10-21 06:23:39 +00:00
2020-10-31 04:25:23 +00:00
var wackyIntros:Array<Array<String>> = [
['Shoutouts to tom fulp', 'lmao'], ["Ludum dare", "extraordinaire"], ['Cyberzone', 'coming soon'], ['love to thriftman', 'swag'],
['ULTIMATE RHYTHM GAMING', 'probably'], ['DOPE ASS GAME', 'playstation magazine'], ['in loving memory of', 'henryeyes'], ['dancin', 'forever'],
2020-10-31 10:07:22 +00:00
['Ritz dx', 'rest in peace'], ['rate five', 'pls no blam'], ['rhythm gaming', 'ultimate'], ['game of the year', 'forever'],
2020-10-31 07:32:51 +00:00
['you already know', 'we really out here'], ['rise and grind', 'love to luis'], ['like parappa', 'but cooler'],
2020-10-31 10:07:22 +00:00
['album of the year', 'chuckie finster'], ["free gitaroo man", "with love to wandaboy"], ['better than geometry dash', 'fight me robtop'],
['kiddbrute for president', 'vote now']];
2020-10-31 04:25:23 +00:00
var curWacky:Array<String> = [];
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-28 08:24:56 +00:00
PlayerSettings.init();
2020-10-31 04:25:23 +00:00
curWacky = FlxG.random.getObject(wackyIntros);
2020-10-28 08:24:56 +00:00
// DEBUG BULLSHIT
2020-10-05 18:24:51 +00:00
super.create();
2020-11-01 04:34:17 +00:00
#if (!debug && NG_LOGIN)
var ng:NGio = new NGio(APIStuff.API, APIStuff.EncKey);
#end
2020-10-28 08:24:56 +00:00
#if SKIP_TO_PLAYSTATE
2020-10-31 23:53:26 +00:00
FlxG.switchState(new StoryMenuState());
2020-10-28 08:24:56 +00:00
#else
startIntro();
#end
}
2020-11-01 04:34:17 +00:00
var logoBl:FlxSprite;
var gfDance:FlxSprite;
var danceLeft:Bool = false;
var titleText:FlxSprite;
2020-10-28 08:24:56 +00:00
function startIntro()
{
2020-10-05 18:24:51 +00:00
if (!initialized)
{
var diamond:FlxGraphic = FlxGraphic.fromClass(GraphicTransTileDiamond);
diamond.persist = true;
diamond.destroyOnNoUse = false;
2020-10-31 04:25:23 +00:00
FlxTransitionableState.defaultTransIn = new TransitionData(FADE, FlxColor.BLACK, 1, new FlxPoint(0, -1), {asset: diamond, width: 32, height: 32},
2020-10-05 18:24:51 +00:00
new FlxRect(0, 0, FlxG.width, FlxG.height));
2020-10-31 04:25:23 +00:00
FlxTransitionableState.defaultTransOut = new TransitionData(FADE, FlxColor.BLACK, 0.7, new FlxPoint(0, 1),
2020-10-05 18:24:51 +00:00
{asset: diamond, width: 32, height: 32}, new FlxRect(0, 0, FlxG.width, FlxG.height));
FlxTransitionableState.defaultTransIn.tileData = {asset: diamond, width: 32, height: 32};
FlxTransitionableState.defaultTransOut.tileData = {asset: diamond, width: 32, height: 32};
transIn = FlxTransitionableState.defaultTransIn;
transOut = FlxTransitionableState.defaultTransOut;
2020-10-31 19:53:58 +00:00
FlxG.sound.playMusic('assets/music/freakyMenu' + TitleState.soundExt, 0);
FlxG.sound.music.fadeIn(4, 0, 0.7);
2020-11-01 09:55:02 +00:00
FlxG.save.bind('funkin', 'ninjamuffin99');
if (FlxG.save.data.weekUnlocked != null)
{
StoryMenuState.weekUnlocked = FlxG.save.data.weekUnlocked;
}
2020-10-05 18:24:51 +00:00
}
2020-11-01 04:34:17 +00:00
Conductor.changeBPM(102);
2020-10-05 18:24:51 +00:00
persistentUpdate = true;
2020-11-01 04:34:17 +00:00
var bg:FlxSprite = new FlxSprite().makeGraphic(FlxG.width, FlxG.height, FlxColor.BLACK);
// bg.antialiasing = true;
// bg.setGraphicSize(Std.int(bg.width * 0.6));
// bg.updateHitbox();
2020-10-05 18:24:51 +00:00
add(bg);
2020-11-01 07:01:00 +00:00
logoBl = new FlxSprite(-150, -100);
2020-11-01 04:34:17 +00:00
logoBl.frames = FlxAtlasFrames.fromSparrow(AssetPaths.logoBumpin__png, AssetPaths.logoBumpin__xml);
logoBl.antialiasing = true;
logoBl.animation.addByPrefix('bump', 'logo bumpin', 24);
logoBl.animation.play('bump');
logoBl.updateHitbox();
// logoBl.screenCenter();
// logoBl.color = FlxColor.BLACK;
2020-10-05 18:24:51 +00:00
2020-11-01 04:34:17 +00:00
gfDance = new FlxSprite(FlxG.width * 0.4, FlxG.height * 0.07);
gfDance.frames = FlxAtlasFrames.fromSparrow(AssetPaths.gfDanceTitle__png, AssetPaths.gfDanceTitle__xml);
gfDance.animation.addByIndices('danceLeft', 'gfDance', [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], "", 24, false);
gfDance.animation.addByIndices('danceRight', 'gfDance', [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "", 24, false);
gfDance.antialiasing = true;
add(gfDance);
2020-11-01 07:01:00 +00:00
add(logoBl);
2020-11-01 04:34:17 +00:00
2020-11-01 04:55:00 +00:00
titleText = new FlxSprite(100, FlxG.height * 0.8);
2020-11-01 04:34:17 +00:00
titleText.frames = FlxAtlasFrames.fromSparrow(AssetPaths.titleEnter__png, AssetPaths.titleEnter__xml);
titleText.animation.addByPrefix('idle', "Press Enter to Begin", 24);
titleText.animation.addByPrefix('press', "ENTER PRESSED", 24);
titleText.antialiasing = true;
titleText.animation.play('idle');
2020-11-01 04:55:00 +00:00
titleText.updateHitbox();
// titleText.screenCenter(X);
2020-11-01 04:34:17 +00:00
add(titleText);
2020-10-05 18:24:51 +00:00
var logo:FlxSprite = new FlxSprite().loadGraphic(AssetPaths.logo__png);
logo.screenCenter();
2020-10-05 22:29:59 +00:00
logo.antialiasing = true;
2020-11-01 04:34:17 +00:00
// add(logo);
2020-10-05 18:24:51 +00:00
2020-11-01 04:34:17 +00:00
// 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-05 18:24:51 +00:00
2020-10-21 06:23:39 +00:00
credGroup = new FlxGroup();
add(credGroup);
2020-10-27 08:31:21 +00:00
textGroup = new FlxGroup();
2020-10-21 06:23:39 +00:00
blackScreen = new FlxSprite().makeGraphic(FlxG.width, FlxG.height, FlxColor.BLACK);
credGroup.add(blackScreen);
2020-10-27 08:31:21 +00:00
credTextShit = new Alphabet(0, 0, "ninjamuffin99\nPhantomArcade\nkawaisprite\nevilsk8er", true);
2020-10-21 06:23:39 +00:00
credTextShit.screenCenter();
2020-10-27 08:31:21 +00:00
// credTextShit.alignment = CENTER;
2020-10-21 06:23:39 +00:00
credTextShit.visible = false;
2020-10-31 10:07:22 +00:00
ngSpr = new FlxSprite(0, FlxG.height * 0.52).loadGraphic(AssetPaths.newgrounds_logo__png);
add(ngSpr);
ngSpr.visible = false;
ngSpr.setGraphicSize(Std.int(ngSpr.width * 0.8));
ngSpr.updateHitbox();
ngSpr.screenCenter(X);
2020-10-31 23:23:19 +00:00
ngSpr.antialiasing = true;
2020-10-31 10:07:22 +00:00
2020-10-21 06:23:39 +00:00
FlxTween.tween(credTextShit, {y: credTextShit.y + 20}, 2.9, {ease: FlxEase.quadInOut, type: PINGPONG});
2020-11-01 07:58:20 +00:00
FlxG.mouse.visible = false;
2020-10-31 19:53:58 +00:00
if (initialized)
skipIntro();
else
initialized = true;
2020-10-05 18:24:51 +00:00
2020-10-31 19:53:58 +00:00
// credGroup.add(credTextShit);
2020-10-05 18:24:51 +00:00
}
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 && !transitioning && skippedIntro)
2020-10-05 18:24:51 +00:00
{
2020-11-01 04:34:17 +00:00
NGio.unlockMedal(60960);
titleText.animation.play('press');
2020-10-05 18:33:56 +00:00
FlxG.camera.flash(FlxColor.WHITE, 1);
2020-10-31 19:53:58 +00:00
FlxG.sound.play('assets/sounds/confirmMenu' + TitleState.soundExt, 0.7);
2020-10-05 18:33:56 +00:00
2020-10-05 18:24:51 +00:00
transitioning = true;
2020-10-31 04:25:23 +00:00
// FlxG.sound.music.stop();
2020-10-05 18:24:51 +00:00
new FlxTimer().start(2, function(tmr:FlxTimer)
{
2020-10-31 04:25:23 +00:00
FlxG.switchState(new MainMenuState());
2020-10-05 18:24:51 +00:00
});
2020-10-31 04:25:23 +00:00
// FlxG.sound.play('assets/music/titleShoot' + TitleState.soundExt, 0.7);
2020-10-05 18:24:51 +00:00
}
2020-10-31 19:53:58 +00:00
if (pressedEnter && !skippedIntro)
{
skipIntro();
}
2020-10-05 18:24:51 +00:00
super.update(elapsed);
}
2020-10-21 06:23:39 +00:00
2020-10-27 08:31:21 +00:00
function createCoolText(textArray:Array<String>)
{
for (i in 0...textArray.length)
{
var money:Alphabet = new Alphabet(0, 0, textArray[i], true, false);
money.screenCenter(X);
money.y += (i * 60) + 200;
credGroup.add(money);
textGroup.add(money);
}
}
function addMoreText(text:String)
{
var coolText:Alphabet = new Alphabet(0, 0, text, true, false);
coolText.screenCenter(X);
coolText.y += (textGroup.length * 60) + 200;
credGroup.add(coolText);
textGroup.add(coolText);
}
function deleteCoolText()
{
while (textGroup.members.length > 0)
{
credGroup.remove(textGroup.members[0], true);
textGroup.remove(textGroup.members[0], true);
}
}
2020-10-21 06:23:39 +00:00
override function beatHit()
{
super.beatHit();
2020-11-01 04:34:17 +00:00
logoBl.animation.play('bump');
danceLeft = !danceLeft;
if (danceLeft)
gfDance.animation.play('danceRight');
else
gfDance.animation.play('danceLeft');
2020-10-21 06:23:39 +00:00
FlxG.log.add(curBeat);
switch (curBeat)
{
case 1:
2020-10-27 08:31:21 +00:00
createCoolText(['ninjamuffin99', 'phantomArcade', 'kawaisprite', 'evilsk8er']);
// credTextShit.visible = true;
2020-10-21 06:23:39 +00:00
case 3:
2020-10-27 08:31:21 +00:00
addMoreText('present');
// credTextShit.text += '\npresent...';
// credTextShit.addText();
2020-10-21 06:23:39 +00:00
case 4:
2020-10-27 08:31:21 +00:00
deleteCoolText();
// credTextShit.visible = false;
// credTextShit.text = 'In association \nwith';
// credTextShit.screenCenter();
2020-10-21 06:23:39 +00:00
case 5:
2020-10-27 08:31:21 +00:00
createCoolText(['In association', 'with']);
2020-10-21 06:23:39 +00:00
case 7:
2020-10-27 08:31:21 +00:00
addMoreText('newgrounds');
2020-10-31 10:07:22 +00:00
ngSpr.visible = true;
2020-10-27 08:31:21 +00:00
// credTextShit.text += '\nNewgrounds';
2020-10-21 06:23:39 +00:00
case 8:
2020-10-27 08:31:21 +00:00
deleteCoolText();
2020-10-31 10:07:22 +00:00
ngSpr.visible = false;
2020-10-27 08:31:21 +00:00
// credTextShit.visible = false;
// credTextShit.text = 'Shoutouts Tom Fulp';
// credTextShit.screenCenter();
2020-10-21 06:23:39 +00:00
case 9:
2020-10-31 04:25:23 +00:00
createCoolText([curWacky[0]]);
2020-10-27 08:31:21 +00:00
// credTextShit.visible = true;
2020-10-21 06:23:39 +00:00
case 11:
2020-10-31 04:25:23 +00:00
addMoreText(curWacky[1]);
2020-10-27 08:31:21 +00:00
// credTextShit.text += '\nlmao';
2020-10-21 06:23:39 +00:00
case 12:
2020-10-27 08:31:21 +00:00
deleteCoolText();
// credTextShit.visible = false;
// credTextShit.text = "Friday";
// credTextShit.screenCenter();
2020-10-21 06:23:39 +00:00
case 13:
2020-10-27 08:31:21 +00:00
addMoreText('Friday');
// credTextShit.visible = true;
2020-10-21 06:23:39 +00:00
case 14:
2020-10-27 08:31:21 +00:00
addMoreText('Night');
// credTextShit.text += '\nNight';
2020-10-21 06:23:39 +00:00
case 15:
2020-10-27 08:31:21 +00:00
addMoreText('Funkin'); // credTextShit.text += '\nFunkin';
2020-10-21 06:23:39 +00:00
case 16:
2020-10-21 18:05:27 +00:00
skipIntro();
}
}
var skippedIntro:Bool = false;
function skipIntro():Void
{
if (!skippedIntro)
{
2020-10-31 19:53:58 +00:00
remove(ngSpr);
2020-10-21 18:05:27 +00:00
FlxG.camera.flash(FlxColor.WHITE, 4);
remove(credGroup);
2020-10-27 10:35:23 +00:00
skippedIntro = true;
2020-10-21 06:23:39 +00:00
}
}
2020-10-05 18:24:51 +00:00
}