mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-01 04:14:47 +00:00
88 lines
1.8 KiB
Haxe
88 lines
1.8 KiB
Haxe
package;
|
|
|
|
import flixel.FlxG;
|
|
import flixel.FlxSprite;
|
|
import flixel.group.FlxGroup.FlxTypedGroup;
|
|
import flixel.text.FlxText;
|
|
import flixel.util.FlxColor;
|
|
|
|
class OptionsSubState extends MusicBeatSubstate
|
|
{
|
|
var textMenuItems:Array<String> = ['Master Volume', 'Sound Volume', 'Controls', 'Colors', 'Back'];
|
|
|
|
var selector:FlxSprite;
|
|
var curSelected:Int = 0;
|
|
|
|
var grpOptionsTexts:FlxTypedGroup<FlxText>;
|
|
|
|
// public static var isDownscroll:Bool = false;
|
|
|
|
public function new()
|
|
{
|
|
super();
|
|
|
|
#if desktop
|
|
textMenuItems.push('Mods');
|
|
#end
|
|
|
|
grpOptionsTexts = new FlxTypedGroup<FlxText>();
|
|
add(grpOptionsTexts);
|
|
|
|
selector = new FlxSprite().makeGraphic(5, 5, FlxColor.RED);
|
|
add(selector);
|
|
|
|
for (i in 0...textMenuItems.length)
|
|
{
|
|
var optionText:FlxText = new FlxText(20, 20 + (i * 50), 0, textMenuItems[i], 32);
|
|
optionText.ID = i;
|
|
grpOptionsTexts.add(optionText);
|
|
}
|
|
}
|
|
|
|
override function update(elapsed:Float)
|
|
{
|
|
super.update(elapsed);
|
|
|
|
if (controls.UP_P)
|
|
curSelected -= 1;
|
|
|
|
if (controls.DOWN_P)
|
|
curSelected += 1;
|
|
|
|
if (curSelected < 0)
|
|
curSelected = textMenuItems.length - 1;
|
|
|
|
if (curSelected >= textMenuItems.length)
|
|
curSelected = 0;
|
|
|
|
grpOptionsTexts.forEach(function(txt:FlxText)
|
|
{
|
|
txt.color = FlxColor.WHITE;
|
|
|
|
if (txt.ID == curSelected)
|
|
txt.color = FlxColor.YELLOW;
|
|
});
|
|
|
|
if (controls.BACK)
|
|
FlxG.switchState(new MainMenuState());
|
|
|
|
if (controls.ACCEPT)
|
|
{
|
|
switch (textMenuItems[curSelected])
|
|
{
|
|
case "Colors":
|
|
FlxG.state.closeSubState();
|
|
FlxG.state.openSubState(new ColorpickSubstate());
|
|
case "Controls":
|
|
FlxG.state.closeSubState();
|
|
FlxG.state.openSubState(new ControlsSubState());
|
|
case "Mods":
|
|
FlxG.state.closeSubState();
|
|
FlxG.state.openSubState(new ModdingSubstate());
|
|
case "Back":
|
|
FlxG.switchState(new MainMenuState());
|
|
}
|
|
}
|
|
}
|
|
}
|