2021-02-15 00:03:02 +00:00
|
|
|
package;
|
|
|
|
|
|
|
|
import flixel.FlxG;
|
|
|
|
import flixel.FlxSprite;
|
|
|
|
import flixel.graphics.frames.FlxAtlasFrames;
|
|
|
|
|
|
|
|
class GitarooPause extends MusicBeatState
|
|
|
|
{
|
|
|
|
var replayButton:FlxSprite;
|
|
|
|
var cancelButton:FlxSprite;
|
|
|
|
|
|
|
|
var replaySelect:Bool = false;
|
|
|
|
|
|
|
|
public function new():Void
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
override function create()
|
|
|
|
{
|
|
|
|
if (FlxG.sound.music != null)
|
|
|
|
FlxG.sound.music.stop();
|
|
|
|
|
2021-02-15 21:30:29 +00:00
|
|
|
var bg:FlxSprite = new FlxSprite().loadGraphic(Paths.image('pauseAlt/pauseBG'));
|
2021-02-15 00:03:02 +00:00
|
|
|
add(bg);
|
|
|
|
|
|
|
|
var bf:FlxSprite = new FlxSprite(0, 30);
|
2021-02-15 21:30:29 +00:00
|
|
|
bf.frames = Paths.getSparrowAtlas('pauseAlt/bfLol');
|
2021-02-15 00:03:02 +00:00
|
|
|
bf.animation.addByPrefix('lol', "funnyThing", 13);
|
|
|
|
bf.animation.play('lol');
|
|
|
|
add(bf);
|
|
|
|
bf.screenCenter(X);
|
|
|
|
|
|
|
|
replayButton = new FlxSprite(FlxG.width * 0.28, FlxG.height * 0.7);
|
2021-02-15 21:30:29 +00:00
|
|
|
replayButton.frames = Paths.getSparrowAtlas('pauseAlt/pauseUI');
|
2021-02-15 00:03:02 +00:00
|
|
|
replayButton.animation.addByPrefix('selected', 'bluereplay', 0, false);
|
|
|
|
replayButton.animation.appendByPrefix('selected', 'yellowreplay');
|
|
|
|
replayButton.animation.play('selected');
|
|
|
|
add(replayButton);
|
|
|
|
|
|
|
|
cancelButton = new FlxSprite(FlxG.width * 0.58, replayButton.y);
|
2021-02-15 21:30:29 +00:00
|
|
|
cancelButton.frames = Paths.getSparrowAtlas('pauseAlt/pauseUI');
|
2021-02-15 00:03:02 +00:00
|
|
|
cancelButton.animation.addByPrefix('selected', 'bluecancel', 0, false);
|
|
|
|
cancelButton.animation.appendByPrefix('selected', 'cancelyellow');
|
|
|
|
cancelButton.animation.play('selected');
|
|
|
|
add(cancelButton);
|
|
|
|
|
|
|
|
changeThing();
|
|
|
|
|
|
|
|
super.create();
|
|
|
|
}
|
|
|
|
|
|
|
|
override function update(elapsed:Float)
|
|
|
|
{
|
2021-03-14 02:11:56 +00:00
|
|
|
if (controls.UI_LEFT_P || controls.UI_RIGHT_P)
|
2021-02-15 00:03:02 +00:00
|
|
|
changeThing();
|
|
|
|
|
|
|
|
if (controls.ACCEPT)
|
|
|
|
{
|
|
|
|
if (replaySelect)
|
|
|
|
{
|
|
|
|
FlxG.switchState(new PlayState());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FlxG.switchState(new MainMenuState());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
super.update(elapsed);
|
|
|
|
}
|
|
|
|
|
|
|
|
function changeThing():Void
|
|
|
|
{
|
|
|
|
replaySelect = !replaySelect;
|
|
|
|
|
|
|
|
if (replaySelect)
|
|
|
|
{
|
|
|
|
cancelButton.animation.curAnim.curFrame = 0;
|
|
|
|
replayButton.animation.curAnim.curFrame = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cancelButton.animation.curAnim.curFrame = 1;
|
|
|
|
replayButton.animation.curAnim.curFrame = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|