mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-01-12 07:07:18 +00:00
Gitaroo easter egg
This commit is contained in:
parent
9585ae42e7
commit
3d8a3a8f98
88
source/GitarooPause.hx
Normal file
88
source/GitarooPause.hx
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
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();
|
||||||
|
|
||||||
|
var bg:FlxSprite = new FlxSprite().loadGraphic('assets/images/pauseAlt/pauseBG.png');
|
||||||
|
add(bg);
|
||||||
|
|
||||||
|
var bf:FlxSprite = new FlxSprite(0, 30);
|
||||||
|
bf.frames = FlxAtlasFrames.fromSparrow('assets/images/pauseAlt/bfLol.png', 'assets/images/pauseAlt/bfLol.xml');
|
||||||
|
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);
|
||||||
|
replayButton.frames = FlxAtlasFrames.fromSparrow('assets/images/pauseAlt/pauseUI.png', 'assets/images/pauseAlt/pauseUI.xml');
|
||||||
|
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);
|
||||||
|
cancelButton.frames = FlxAtlasFrames.fromSparrow('assets/images/pauseAlt/pauseUI.png', 'assets/images/pauseAlt/pauseUI.xml');
|
||||||
|
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)
|
||||||
|
{
|
||||||
|
if (controls.LEFT_P || controls.RIGHT_P)
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1470,7 +1470,14 @@ class PlayState extends MusicBeatState
|
||||||
vocals.stop();
|
vocals.stop();
|
||||||
FlxG.sound.music.stop();
|
FlxG.sound.music.stop();
|
||||||
|
|
||||||
openSubState(new GameOverSubstate(boyfriend.getScreenPosition().x, boyfriend.getScreenPosition().y));
|
// 1 / 1000 chance for Gitaroo Man easter egg
|
||||||
|
if (FlxG.random.bool(0.1))
|
||||||
|
{
|
||||||
|
// gitaroo man easter egg
|
||||||
|
FlxG.switchState(new GitarooPause());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
openSubState(new GameOverSubstate(boyfriend.getScreenPosition().x, boyfriend.getScreenPosition().y));
|
||||||
|
|
||||||
// FlxG.switchState(new GameOverState(boyfriend.getScreenPosition().x, boyfriend.getScreenPosition().y));
|
// FlxG.switchState(new GameOverState(boyfriend.getScreenPosition().x, boyfriend.getScreenPosition().y));
|
||||||
}
|
}
|
||||||
|
@ -1505,11 +1512,11 @@ class PlayState extends MusicBeatState
|
||||||
daNote.y = (strumLine.y - (Conductor.songPosition - daNote.strumTime) * (0.45 * FlxMath.roundDecimal(SONG.speed, 2)));
|
daNote.y = (strumLine.y - (Conductor.songPosition - daNote.strumTime) * (0.45 * FlxMath.roundDecimal(SONG.speed, 2)));
|
||||||
|
|
||||||
// i am so fucking sorry for this if condition
|
// i am so fucking sorry for this if condition
|
||||||
if (daNote.isSustainNote && daNote.y + daNote.offset.y <= strumLine.y + Note.swagWidth/2
|
if (daNote.isSustainNote
|
||||||
&& (!daNote.mustPress || (daNote.wasGoodHit ||
|
&& daNote.y + daNote.offset.y <= strumLine.y + Note.swagWidth / 2
|
||||||
(daNote.prevNote.wasGoodHit && !daNote.canBeHit))))
|
&& (!daNote.mustPress || (daNote.wasGoodHit || (daNote.prevNote.wasGoodHit && !daNote.canBeHit))))
|
||||||
{
|
{
|
||||||
var swagRect = new FlxRect(0, strumLine.y + Note.swagWidth/2 - daNote.y, daNote.width * 2, daNote.height * 2);
|
var swagRect = new FlxRect(0, strumLine.y + Note.swagWidth / 2 - daNote.y, daNote.width * 2, daNote.height * 2);
|
||||||
swagRect.y /= daNote.scale.y;
|
swagRect.y /= daNote.scale.y;
|
||||||
swagRect.height -= swagRect.y;
|
swagRect.height -= swagRect.y;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue