1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-19 16:41:39 +00:00
Funkin/source/PauseSubState.hx

108 lines
2.1 KiB
Haxe
Raw Normal View History

2020-10-09 21:24:20 +00:00
package;
2020-10-22 00:22:12 +00:00
import Controls.Control;
2020-10-09 21:24:20 +00:00
import flixel.FlxG;
import flixel.FlxSprite;
import flixel.FlxSubState;
2020-11-18 01:50:09 +00:00
import flixel.group.FlxGroup.FlxTypedGroup;
2020-10-22 00:22:12 +00:00
import flixel.input.keyboard.FlxKey;
2020-10-09 21:24:20 +00:00
import flixel.util.FlxColor;
2020-11-18 01:50:09 +00:00
class PauseSubState extends MusicBeatSubstate
2020-10-09 21:24:20 +00:00
{
2020-11-18 01:50:09 +00:00
var grpMenuShit:FlxTypedGroup<Alphabet>;
var menuItems:Array<String> = ['Resume', 'Restart Song', 'Exit to menu'];
var curSelected:Int = 0;
2020-10-27 10:35:23 +00:00
public function new(x:Float, y:Float)
2020-10-09 21:24:20 +00:00
{
super();
var bg:FlxSprite = new FlxSprite().makeGraphic(FlxG.width, FlxG.height, FlxColor.BLACK);
bg.alpha = 0.6;
bg.scrollFactor.set();
add(bg);
2020-11-18 01:50:09 +00:00
grpMenuShit = new FlxTypedGroup<Alphabet>();
add(grpMenuShit);
for (i in 0...menuItems.length)
{
var songText:Alphabet = new Alphabet(0, (70 * i) + 30, menuItems[i], true, false);
songText.isMenuItem = true;
songText.targetY = i;
grpMenuShit.add(songText);
}
2020-10-27 10:35:23 +00:00
2020-11-18 01:50:09 +00:00
changeSelection();
2020-10-27 10:35:23 +00:00
2020-11-18 01:50:09 +00:00
cameras = [FlxG.cameras.list[1]];
2020-10-09 21:24:20 +00:00
}
override function update(elapsed:Float)
{
super.update(elapsed);
2020-11-18 01:50:09 +00:00
var upP = controls.UP_P;
var downP = controls.DOWN_P;
var accepted = controls.ACCEPT;
if (upP)
{
changeSelection(-1);
}
if (downP)
{
changeSelection(1);
}
if (accepted)
{
var daSelected:String = menuItems[curSelected];
switch (daSelected)
{
case "Resume":
close();
2020-11-18 02:20:27 +00:00
case "Restart Song":
FlxG.resetState();
2020-11-18 01:50:09 +00:00
case "Exit to menu":
FlxG.switchState(new MainMenuState());
}
}
2020-10-22 00:22:12 +00:00
if (FlxG.keys.justPressed.J)
{
2020-11-18 01:50:09 +00:00
// for reference later!
// PlayerSettings.player1.controls.replaceBinding(Control.LEFT, Keys, FlxKey.J, null);
2020-10-22 00:22:12 +00:00
}
2020-11-18 01:50:09 +00:00
}
function changeSelection(change:Int = 0):Void
{
curSelected += change;
2020-10-22 00:22:12 +00:00
2020-11-18 01:50:09 +00:00
if (curSelected < 0)
curSelected = menuItems.length - 1;
if (curSelected >= menuItems.length)
curSelected = 0;
var bullShit:Int = 0;
for (item in grpMenuShit.members)
{
item.targetY = bullShit - curSelected;
bullShit++;
item.alpha = 0.6;
// item.setGraphicSize(Std.int(item.width * 0.8));
if (item.targetY == 0)
{
item.alpha = 1;
// item.setGraphicSize(Std.int(item.width));
}
}
2020-10-09 21:24:20 +00:00
}
}