Funkin/source/MainMenuState.hx

315 lines
7.3 KiB
Haxe
Raw Normal View History

2020-11-01 01:11:14 +00:00
package;
2021-02-18 19:58:16 +00:00
import NGio;
2020-11-01 01:11:14 +00:00
import flixel.FlxG;
import flixel.FlxObject;
import flixel.FlxSprite;
2021-02-15 22:04:08 +00:00
import flixel.FlxState;
2021-02-12 06:20:20 +00:00
import flixel.addons.transition.FlxTransitionableState;
2020-11-01 01:11:14 +00:00
import flixel.effects.FlxFlicker;
import flixel.graphics.frames.FlxAtlasFrames;
import flixel.group.FlxGroup.FlxTypedGroup;
2020-11-07 02:17:27 +00:00
import flixel.text.FlxText;
2020-11-01 01:11:14 +00:00
import flixel.tweens.FlxEase;
import flixel.tweens.FlxTween;
2021-03-27 01:22:07 +00:00
import flixel.ui.FlxButton;
2020-11-07 02:17:27 +00:00
import flixel.util.FlxColor;
2021-02-15 22:04:08 +00:00
import flixel.util.FlxTimer;
2020-11-07 02:17:27 +00:00
import lime.app.Application;
2021-03-27 01:22:07 +00:00
import ui.AtlasMenuList;
import ui.MenuList;
import ui.OptionsState;
import ui.PreferencesMenu;
import ui.Prompt;
using StringTools;
2020-11-01 01:11:14 +00:00
2021-03-30 04:05:21 +00:00
#if discord_rpc
2021-03-23 04:05:46 +00:00
import Discord.DiscordClient;
#end
2021-02-20 04:10:16 +00:00
#if newgrounds
import io.newgrounds.NG;
2021-02-24 00:59:36 +00:00
import ui.NgPrompt;
2021-02-20 04:10:16 +00:00
#end
2020-11-01 01:11:14 +00:00
class MainMenuState extends MusicBeatState
{
var menuItems:MainMenuList;
2020-11-01 01:11:14 +00:00
var magenta:FlxSprite;
var camFollow:FlxObject;
override function create()
{
2021-03-22 14:09:46 +00:00
#if discord_rpc
// Updating Discord Rich Presence
DiscordClient.changePresence("In the Menus", null);
#end
2021-02-12 06:20:20 +00:00
transIn = FlxTransitionableState.defaultTransIn;
transOut = FlxTransitionableState.defaultTransOut;
if (!FlxG.sound.music.playing)
{
2021-02-08 21:34:48 +00:00
FlxG.sound.playMusic(Paths.music('freakyMenu'));
}
2020-11-01 01:11:14 +00:00
persistentUpdate = persistentDraw = true;
2021-03-22 13:40:32 +00:00
var bg:FlxSprite = new FlxSprite(Paths.image('menuBG'));
2020-11-01 01:11:14 +00:00
bg.scrollFactor.x = 0;
2021-03-23 03:41:37 +00:00
bg.scrollFactor.y = 0.17;
bg.setGraphicSize(Std.int(bg.width * 1.2));
2020-11-01 01:11:14 +00:00
bg.updateHitbox();
bg.screenCenter();
bg.antialiasing = true;
add(bg);
camFollow = new FlxObject(0, 0, 1, 1);
add(camFollow);
2021-03-22 13:40:32 +00:00
magenta = new FlxSprite(Paths.image('menuDesat'));
magenta.scrollFactor.x = bg.scrollFactor.x;
magenta.scrollFactor.y = bg.scrollFactor.y;
magenta.setGraphicSize(Std.int(bg.width));
2020-11-01 01:11:14 +00:00
magenta.updateHitbox();
2021-03-22 13:40:32 +00:00
magenta.x = bg.x;
magenta.y = bg.y;
2020-11-01 01:11:14 +00:00
magenta.visible = false;
magenta.antialiasing = true;
2020-11-07 02:17:27 +00:00
magenta.color = 0xFFfd719b;
2021-03-27 01:22:07 +00:00
if (PreferencesMenu.preferences.get('flashing-menu'))
add(magenta);
2020-11-01 01:11:14 +00:00
// magenta.scrollFactor.set();
menuItems = new MainMenuList();
2020-11-01 01:11:14 +00:00
add(menuItems);
2021-02-15 17:43:51 +00:00
menuItems.onChange.add(onMenuItemChange);
menuItems.onAcceptPress.add(function(_)
{
FlxFlicker.flicker(magenta, 1.1, 0.15, false, true);
});
2021-03-27 01:22:07 +00:00
menuItems.enabled = false; // disable for intro
menuItems.createItem('story mode', function() startExitState(new StoryMenuState()));
menuItems.createItem('freeplay', function() startExitState(new FreeplayState()));
2021-02-15 17:43:51 +00:00
// addMenuItem('options', function () startExitState(new OptionMenu()));
2021-02-20 02:11:33 +00:00
#if CAN_OPEN_LINKS
2021-03-27 01:22:07 +00:00
var hasPopupBlocker = #if web true #else false #end;
2021-04-10 06:53:23 +00:00
if (VideoState.seenVideo)
menuItems.createItem('kickstarter', selectDonate, hasPopupBlocker);
else
menuItems.createItem('donate', selectDonate, hasPopupBlocker);
2021-02-15 17:43:51 +00:00
#end
2021-03-27 01:22:07 +00:00
menuItems.createItem('options', function() startExitState(new OptionsState()));
2021-02-24 00:59:36 +00:00
// #if newgrounds
// if (NGio.isLoggedIn)
// menuItems.createItem("logout", selectLogout);
// else
// menuItems.createItem("login", selectLogin);
// #end
2021-03-27 01:22:07 +00:00
2021-02-15 17:43:51 +00:00
// center vertically
var spacing = 160;
var top = (FlxG.height - (spacing * (menuItems.length - 1))) / 2;
for (i in 0...menuItems.length)
2020-11-01 01:11:14 +00:00
{
2021-02-15 17:43:51 +00:00
var menuItem = menuItems.members[i];
menuItem.x = FlxG.width / 2;
menuItem.y = top + spacing * i;
2020-11-01 01:11:14 +00:00
}
2021-05-06 12:08:51 +00:00
FlxG.cameras.reset(new SwagCamera());
2020-11-01 01:11:14 +00:00
FlxG.camera.follow(camFollow, null, 0.06);
2021-03-23 03:41:37 +00:00
// FlxG.camera.setScrollBounds(bg.x, bg.x + bg.width, bg.y, bg.y + bg.height * 1.2);
2020-11-01 01:11:14 +00:00
2020-12-13 07:45:36 +00:00
var versionShit:FlxText = new FlxText(5, FlxG.height - 18, 0, "v" + Application.current.meta.get('version'), 12);
2020-11-07 02:17:27 +00:00
versionShit.scrollFactor.set();
versionShit.setFormat("VCR OSD Mono", 16, FlxColor.WHITE, LEFT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK);
add(versionShit);
2021-04-18 17:23:09 +00:00
versionShit.text += '(Newgrounds exclusive preview)';
2020-12-25 05:17:21 +00:00
// NG.core.calls.event.logEvent('swag').send();
2020-12-16 03:00:22 +00:00
2020-11-01 01:11:14 +00:00
super.create();
}
2021-03-27 01:22:07 +00:00
2021-02-18 19:58:16 +00:00
override function finishTransIn()
{
super.finishTransIn();
2021-03-27 01:22:07 +00:00
2021-02-18 19:58:16 +00:00
menuItems.enabled = true;
2021-03-27 01:22:07 +00:00
// #if newgrounds
// if (NGio.savedSessionFailed)
// showSavedSessionFailed();
// #end
2021-02-18 19:58:16 +00:00
}
2021-03-27 01:22:07 +00:00
2021-02-15 17:43:51 +00:00
function onMenuItemChange(selected:MenuItem)
2020-11-01 01:11:14 +00:00
{
2021-02-15 17:43:51 +00:00
camFollow.setPosition(selected.getGraphicMidpoint().x, selected.getGraphicMidpoint().y);
}
2021-03-27 01:22:07 +00:00
2021-03-14 02:11:56 +00:00
#if CAN_OPEN_LINKS
2021-02-15 17:43:51 +00:00
function selectDonate()
{
#if linux
2021-04-09 20:37:54 +00:00
// Sys.command('/usr/bin/xdg-open', ["https://ninja-muffin24.itch.io/funkin", "&"]);
2021-04-19 06:46:02 +00:00
Sys.command('/usr/bin/xdg-open', [
"https://www.kickstarter.com/projects/funkin/friday-night-funkin-the-full-ass-game/",
"&"
]);
2021-02-15 17:43:51 +00:00
#else
2021-04-09 20:37:54 +00:00
// FlxG.openURL('https://ninja-muffin24.itch.io/funkin');
2021-04-19 06:46:02 +00:00
FlxG.openURL('https://www.kickstarter.com/projects/funkin/friday-night-funkin-the-full-ass-game/');
2021-02-15 17:43:51 +00:00
#end
}
2021-03-14 02:11:56 +00:00
#end
2021-03-27 01:22:07 +00:00
2021-02-18 19:58:16 +00:00
#if newgrounds
2021-02-15 17:43:51 +00:00
function selectLogin()
{
openNgPrompt(NgPrompt.showLogin());
2021-02-18 19:58:16 +00:00
}
2021-03-27 01:22:07 +00:00
2021-02-20 04:10:16 +00:00
function selectLogout()
2021-02-18 19:58:16 +00:00
{
openNgPrompt(NgPrompt.showLogout());
2021-02-15 17:43:51 +00:00
}
2021-03-27 01:22:07 +00:00
2021-02-20 04:10:16 +00:00
function showSavedSessionFailed()
2021-02-15 17:43:51 +00:00
{
openNgPrompt(NgPrompt.showSavedSessionFailed());
}
2021-03-27 01:22:07 +00:00
/**
* Calls openPrompt and redraws the login/logout button
* @param prompt
* @param onClose
*/
public function openNgPrompt(prompt:Prompt, ?onClose:Void->Void)
{
var onPromptClose = checkLoginStatus;
if (onClose != null)
{
2021-03-27 01:22:07 +00:00
onPromptClose = function()
{
checkLoginStatus();
onClose();
}
}
2021-03-27 01:22:07 +00:00
openPrompt(prompt, onPromptClose);
}
2021-03-27 01:22:07 +00:00
function checkLoginStatus()
{
var prevLoggedIn = menuItems.has("logout");
if (prevLoggedIn && !NGio.isLoggedIn)
menuItems.resetItem("login", "logout", selectLogout);
else if (!prevLoggedIn && NGio.isLoggedIn)
menuItems.resetItem("logout", "login", selectLogin);
2021-02-15 17:43:51 +00:00
}
2021-02-20 04:10:16 +00:00
#end
2021-03-27 01:22:07 +00:00
2021-02-20 04:10:16 +00:00
public function openPrompt(prompt:Prompt, onClose:Void->Void)
2021-02-20 02:11:33 +00:00
{
menuItems.enabled = false;
2021-03-27 01:22:07 +00:00
prompt.closeCallback = function()
2021-02-20 02:11:33 +00:00
{
menuItems.enabled = true;
2021-02-20 04:10:16 +00:00
if (onClose != null)
onClose();
2021-02-20 02:11:33 +00:00
}
2021-03-27 01:22:07 +00:00
2021-02-20 04:10:16 +00:00
openSubState(prompt);
2021-02-20 02:11:33 +00:00
}
2021-03-27 01:22:07 +00:00
2021-02-15 17:43:51 +00:00
function startExitState(state:FlxState)
{
menuItems.enabled = false; // disable for exit
2021-02-15 17:43:51 +00:00
var duration = 0.4;
menuItems.forEach(function(item)
2020-11-01 01:11:14 +00:00
{
2021-02-15 17:43:51 +00:00
if (menuItems.selectedIndex != item.ID)
2020-11-01 01:11:14 +00:00
{
2021-03-27 01:22:07 +00:00
FlxTween.tween(item, {alpha: 0}, duration, {ease: FlxEase.quadOut});
2020-11-01 01:11:14 +00:00
}
2021-02-15 17:43:51 +00:00
else
2020-11-01 01:11:14 +00:00
{
2021-02-15 17:43:51 +00:00
item.visible = false;
2020-11-01 01:11:14 +00:00
}
});
2021-03-27 01:22:07 +00:00
2021-02-15 17:43:51 +00:00
new FlxTimer().start(duration, function(_) FlxG.switchState(state));
2020-11-01 01:11:14 +00:00
}
2021-02-15 17:43:51 +00:00
override function update(elapsed:Float)
2020-11-01 01:11:14 +00:00
{
2021-05-06 12:08:51 +00:00
// FlxG.camera.followLerp = CoolUtil.camLerpShit(0.06);
2021-04-04 17:17:46 +00:00
2021-02-15 17:43:51 +00:00
if (FlxG.sound.music.volume < 0.8)
2020-11-01 01:11:14 +00:00
{
2021-02-15 17:43:51 +00:00
FlxG.sound.music.volume += 0.5 * FlxG.elapsed;
}
2020-11-01 01:11:14 +00:00
if (_exiting)
menuItems.enabled = false;
if (controls.BACK && menuItems.enabled && !menuItems.busy)
2021-04-22 19:36:56 +00:00
{
FlxG.sound.play(Paths.sound('cancelMenu'));
2021-02-15 17:43:51 +00:00
FlxG.switchState(new TitleState());
2021-04-22 19:36:56 +00:00
}
2020-11-01 01:11:14 +00:00
2021-02-15 17:43:51 +00:00
super.update(elapsed);
2020-11-01 01:11:14 +00:00
}
}
2021-02-18 19:58:16 +00:00
private class MainMenuList extends MenuTypedList<MainMenuItem>
2021-02-18 19:58:16 +00:00
{
public var atlas:FlxAtlasFrames;
2021-03-27 01:22:07 +00:00
public function new()
2021-02-18 19:58:16 +00:00
{
atlas = Paths.getSparrowAtlas('main_menu');
2021-02-18 19:58:16 +00:00
super(Vertical);
}
2021-03-27 01:22:07 +00:00
2021-02-18 19:58:16 +00:00
public function createItem(x = 0.0, y = 0.0, name:String, callback, fireInstantly = false)
{
var item = new MainMenuItem(x, y, name, atlas, callback);
item.fireInstantly = fireInstantly;
item.ID = length;
2021-03-27 01:22:07 +00:00
2021-02-18 19:58:16 +00:00
return addItem(name, item);
}
2021-03-27 01:22:07 +00:00
2021-02-18 19:58:16 +00:00
override function destroy()
{
super.destroy();
atlas = null;
}
}
2021-03-27 01:22:07 +00:00
private class MainMenuItem extends AtlasMenuItem
2021-02-18 19:58:16 +00:00
{
public function new(x = 0.0, y = 0.0, name, atlas, callback)
{
super(x, y, name, atlas, callback);
scrollFactor.set();
}
2021-03-27 01:22:07 +00:00
2021-02-18 19:58:16 +00:00
override function changeAnim(anim:String)
{
super.changeAnim(anim);
// position by center
centerOrigin();
offset.copyFrom(origin);
}
2021-03-27 01:22:07 +00:00
}