2021-03-14 02:11:56 +00:00
|
|
|
package ui;
|
|
|
|
|
|
|
|
import flixel.FlxSubState;
|
|
|
|
import flixel.FlxG;
|
|
|
|
import flixel.FlxSprite;
|
|
|
|
import flixel.group.FlxGroup;
|
|
|
|
import flixel.util.FlxSignal;
|
|
|
|
|
|
|
|
import flixel.addons.transition.FlxTransitionableState;
|
|
|
|
|
|
|
|
// typedef OptionsState = OptionsMenu_old;
|
|
|
|
|
|
|
|
// class OptionsState_new extends MusicBeatState
|
|
|
|
class OptionsState extends MusicBeatState
|
|
|
|
{
|
|
|
|
var pages = new Map<PageName, Page>();
|
|
|
|
var currentName:PageName = #if newgrounds Options #else Controls #end;
|
|
|
|
var currentPage(get, never):Page;
|
|
|
|
inline function get_currentPage() return pages[currentName];
|
|
|
|
|
|
|
|
override function create()
|
|
|
|
{
|
|
|
|
var menuBG = new FlxSprite().loadGraphic(Paths.image('menuDesat'));
|
|
|
|
menuBG.color = 0xFFea71fd;
|
|
|
|
menuBG.setGraphicSize(Std.int(menuBG.width * 1.1));
|
|
|
|
menuBG.updateHitbox();
|
|
|
|
menuBG.screenCenter();
|
2021-03-16 14:56:08 +00:00
|
|
|
menuBG.scrollFactor.set(0, 0);
|
2021-03-14 02:11:56 +00:00
|
|
|
add(menuBG);
|
|
|
|
|
|
|
|
var options = addPage(Options, new OptionsMenu(false));
|
|
|
|
var controls = addPage(Controls, new ControlsMenu());
|
|
|
|
|
|
|
|
if (options.hasMultipleOptions())
|
|
|
|
{
|
|
|
|
options.onExit.add(exitToMainMenu);
|
|
|
|
controls.onExit.add(switchPage.bind(Options));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No need to show Options page
|
|
|
|
controls.onExit.add(exitToMainMenu);
|
|
|
|
setPage(Controls);
|
|
|
|
}
|
|
|
|
|
|
|
|
// disable for intro transition
|
|
|
|
currentPage.enabled = false;
|
|
|
|
super.create();
|
|
|
|
}
|
|
|
|
|
|
|
|
function addPage<T:Page>(name:PageName, page:T)
|
|
|
|
{
|
|
|
|
page.onSwitch.add(switchPage);
|
|
|
|
pages[name] = page;
|
|
|
|
add(page);
|
|
|
|
page.exists = currentName == name;
|
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setPage(name:PageName)
|
|
|
|
{
|
|
|
|
if (pages.exists(currentName))
|
|
|
|
currentPage.exists = false;
|
|
|
|
|
|
|
|
currentName = name;
|
|
|
|
|
|
|
|
if (pages.exists(currentName))
|
|
|
|
currentPage.exists = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
override function finishTransIn()
|
|
|
|
{
|
|
|
|
super.finishTransIn();
|
|
|
|
|
|
|
|
currentPage.enabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function switchPage(name:PageName)
|
|
|
|
{
|
|
|
|
//Todo animate?
|
|
|
|
setPage(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
function exitToMainMenu()
|
|
|
|
{
|
|
|
|
currentPage.enabled = false;
|
|
|
|
//Todo animate?
|
|
|
|
FlxG.switchState(new MainMenuState());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Page extends FlxGroup
|
|
|
|
{
|
|
|
|
public var onSwitch(default, null) = new FlxTypedSignal<PageName->Void>();
|
|
|
|
public var onExit(default, null) = new FlxSignal();
|
|
|
|
|
|
|
|
public var enabled(default, set) = true;
|
2021-03-16 14:56:08 +00:00
|
|
|
public var canExit = true;
|
2021-03-14 02:11:56 +00:00
|
|
|
|
|
|
|
var controls(get, never):Controls;
|
|
|
|
inline function get_controls() return PlayerSettings.player1.controls;
|
|
|
|
|
|
|
|
var subState:FlxSubState;
|
|
|
|
|
|
|
|
inline function switchPage(name:PageName)
|
|
|
|
{
|
|
|
|
onSwitch.dispatch(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline function exit()
|
|
|
|
{
|
|
|
|
onExit.dispatch();
|
|
|
|
}
|
|
|
|
|
|
|
|
override function update(elapsed:Float)
|
|
|
|
{
|
|
|
|
super.update(elapsed);
|
|
|
|
|
|
|
|
if (enabled)
|
|
|
|
updateEnabled(elapsed);
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateEnabled(elapsed:Float)
|
|
|
|
{
|
2021-03-16 14:56:08 +00:00
|
|
|
if (canExit && controls.BACK)
|
2021-03-14 02:11:56 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_enabled(value:Bool)
|
|
|
|
{
|
|
|
|
return this.enabled = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
function openPrompt(prompt:Prompt, onClose:Void->Void)
|
|
|
|
{
|
|
|
|
enabled = false;
|
|
|
|
prompt.closeCallback = function ()
|
|
|
|
{
|
|
|
|
enabled = true;
|
|
|
|
if (onClose != null)
|
|
|
|
onClose();
|
|
|
|
}
|
|
|
|
|
|
|
|
FlxG.state.openSubState(prompt);
|
|
|
|
}
|
|
|
|
|
|
|
|
override function destroy()
|
|
|
|
{
|
|
|
|
super.destroy();
|
|
|
|
onSwitch.removeAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class OptionsMenu extends Page
|
|
|
|
{
|
|
|
|
var items:TextMenuList;
|
|
|
|
|
|
|
|
public function new (showDonate:Bool)
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
|
|
|
|
add(items = new TextMenuList());
|
|
|
|
createItem("controls", function() switchPage(Controls));
|
|
|
|
#if CAN_OPEN_LINKS
|
|
|
|
if (showDonate)
|
|
|
|
{
|
|
|
|
var hasPopupBlocker = #if web true #else false #end;
|
|
|
|
createItem('donate', selectDonate, hasPopupBlocker);
|
|
|
|
}
|
|
|
|
#end
|
|
|
|
#if newgrounds
|
|
|
|
if (NGio.isLoggedIn)
|
|
|
|
createItem("logout", selectLogout);
|
|
|
|
else
|
|
|
|
createItem("login", selectLogin);
|
|
|
|
#end
|
|
|
|
createItem("exit", exit);
|
|
|
|
}
|
|
|
|
|
|
|
|
function createItem(name:String, callback:Void->Void, fireInstantly = false)
|
|
|
|
{
|
|
|
|
var item = items.createItem(0, 100 + items.length * 100, name, Bold, callback);
|
|
|
|
item.fireInstantly = fireInstantly;
|
|
|
|
item.screenCenter(X);
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
override function set_enabled(value:Bool)
|
|
|
|
{
|
|
|
|
items.enabled = value;
|
|
|
|
return super.set_enabled(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* True if this page has multiple options, ecluding the exit option.
|
|
|
|
* If false, there's no reason to ever show this page.
|
|
|
|
*/
|
|
|
|
public function hasMultipleOptions():Bool
|
|
|
|
{
|
|
|
|
return items.length > 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if CAN_OPEN_LINKS
|
|
|
|
function selectDonate()
|
|
|
|
{
|
|
|
|
#if linux
|
|
|
|
Sys.command('/usr/bin/xdg-open', ["https://ninja-muffin24.itch.io/funkin", "&"]);
|
|
|
|
#else
|
|
|
|
FlxG.openURL('https://ninja-muffin24.itch.io/funkin');
|
|
|
|
#end
|
|
|
|
}
|
|
|
|
#end
|
|
|
|
|
|
|
|
#if newgrounds
|
|
|
|
function selectLogin()
|
|
|
|
{
|
|
|
|
openNgPrompt(NgPrompt.showLogin());
|
|
|
|
}
|
|
|
|
|
|
|
|
function selectLogout()
|
|
|
|
{
|
|
|
|
openNgPrompt(NgPrompt.showLogout());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
|
|
|
onPromptClose = function ()
|
|
|
|
{
|
|
|
|
checkLoginStatus();
|
|
|
|
onClose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
openPrompt(prompt, onPromptClose);
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkLoginStatus()
|
|
|
|
{
|
|
|
|
var prevLoggedIn = items.has("logout");
|
|
|
|
if (prevLoggedIn && !NGio.isLoggedIn)
|
|
|
|
items.resetItem("login", "logout", selectLogout);
|
|
|
|
else if (!prevLoggedIn && NGio.isLoggedIn)
|
|
|
|
items.resetItem("logout", "login", selectLogin);
|
|
|
|
}
|
|
|
|
#end
|
|
|
|
}
|
|
|
|
|
|
|
|
enum PageName
|
|
|
|
{
|
|
|
|
Options;
|
|
|
|
Controls;
|
|
|
|
}
|