Friday Night Funkin' EYY's, but GF cheers too
This commit is contained in:
parent
cef2cbde05
commit
b3c418098b
@ -157,7 +157,6 @@ class PlayState extends MusicBeatState
|
||||
var scoreTxt:FlxText;
|
||||
var replayTxt:FlxText;
|
||||
|
||||
|
||||
public static var campaignScore:Int = 0;
|
||||
|
||||
var defaultCamZoom:Float = 1.05;
|
||||
@ -173,6 +172,12 @@ class PlayState extends MusicBeatState
|
||||
public static var timeCurrently:Float = 0;
|
||||
public static var timeCurrentlyR:Float = 0;
|
||||
|
||||
// Will fire once every prevent debug spam messages and broken animations
|
||||
private var triggeredAlready:Bool = false;
|
||||
|
||||
// Will decide if she's even allowed to headbang at all depending on the song
|
||||
private var allowToHeadbang:Bool = false;
|
||||
|
||||
override public function create()
|
||||
{
|
||||
|
||||
@ -1181,11 +1186,16 @@ class PlayState extends MusicBeatState
|
||||
songName.cameras = [camHUD];
|
||||
}
|
||||
|
||||
// Song check real quick
|
||||
if(curSong == 'Bopeebo' ||
|
||||
curSong == 'Philly' ||
|
||||
curSong == 'Blammed' ||
|
||||
curSong == 'Cocoa' ||
|
||||
curSong == 'Eggnog') allowToHeadbang = true;
|
||||
else allowToHeadbang = false;
|
||||
|
||||
#if desktop
|
||||
// Updating Discord Rich Presence (with Time Left)
|
||||
|
||||
|
||||
|
||||
DiscordClient.changePresence(detailsText + " " + SONG.song + " (" + storyDifficultyText + ") " + generateRanking(), "\nAcc: " + truncateFloat(accuracy, 2) + "% | Score: " + songScore + " | Misses: " + misses , iconRPC);
|
||||
#end
|
||||
}
|
||||
@ -1725,9 +1735,97 @@ class PlayState extends MusicBeatState
|
||||
|
||||
if (generatedMusic && PlayState.SONG.notes[Std.int(curStep / 16)] != null)
|
||||
{
|
||||
if (curBeat % 4 == 0)
|
||||
// Make sure Girlfriend cheers only for certain songs
|
||||
if(allowToHeadbang)
|
||||
{
|
||||
// trace(PlayState.SONG.notes[Std.int(curStep / 16)].mustHitSection);
|
||||
// Don't animate GF if something else is already animating her (eg. train passing)
|
||||
if(gf.animation.curAnim.name == 'danceLeft' || gf.animation.curAnim.name == 'danceRight' || gf.animation.curAnim.name == 'idle')
|
||||
{
|
||||
// Per song treatment since some songs will only have the 'Hey' at certain times
|
||||
if(curSong == 'Philly')
|
||||
{
|
||||
// Prevent GF from starting too early or doing this endlessly
|
||||
if(curBeat < 250)
|
||||
{
|
||||
// Stoppage times
|
||||
if(curBeat != 184 && curBeat != 216)
|
||||
{
|
||||
if (curBeat % 16 == 8)
|
||||
{
|
||||
// Just a garantee that it'll trigger just once
|
||||
if(!triggeredAlready)
|
||||
{
|
||||
gf.playAnim('cheer');
|
||||
trace('Eyy ' + curBeat);
|
||||
triggeredAlready = true;
|
||||
}
|
||||
}else triggeredAlready = false;
|
||||
}
|
||||
}
|
||||
}else if(curSong == 'Bopeebo')
|
||||
{
|
||||
if(curBeat > 5 && curBeat < 130)
|
||||
{
|
||||
if (curBeat % 8 == 7)
|
||||
{
|
||||
if(!triggeredAlready)
|
||||
{
|
||||
gf.playAnim('cheer');
|
||||
trace('Eyy ' + curBeat);
|
||||
triggeredAlready = true;
|
||||
}
|
||||
}else triggeredAlready = false;
|
||||
}
|
||||
}else if(curSong == 'Blammed')
|
||||
{
|
||||
if(curBeat > 30 && curBeat < 190)
|
||||
{
|
||||
if(curBeat < 90 || curBeat > 128)
|
||||
{
|
||||
if (curBeat % 4 == 2)
|
||||
{
|
||||
if(!triggeredAlready)
|
||||
{
|
||||
gf.playAnim('cheer');
|
||||
trace('Eyy ' + curBeat);
|
||||
triggeredAlready = true;
|
||||
}
|
||||
}else triggeredAlready = false;
|
||||
}
|
||||
}
|
||||
}else if(curSong == 'Cocoa')
|
||||
{
|
||||
if(curBeat < 170)
|
||||
{
|
||||
if(curBeat < 65 || curBeat > 130 && curBeat < 145)
|
||||
{
|
||||
if (curBeat % 16 == 15)
|
||||
{
|
||||
if(!triggeredAlready)
|
||||
{
|
||||
gf.playAnim('cheer');
|
||||
trace('Eyy ' + curBeat);
|
||||
triggeredAlready = true;
|
||||
}
|
||||
}else triggeredAlready = false;
|
||||
}
|
||||
}
|
||||
}else if(curSong == 'Eggnog')
|
||||
{
|
||||
if(curBeat > 10 && curBeat != 111 && curBeat < 220)
|
||||
{
|
||||
if (curBeat % 8 == 7)
|
||||
{
|
||||
if(!triggeredAlready)
|
||||
{
|
||||
gf.playAnim('cheer');
|
||||
trace('Eyy ' + curBeat);
|
||||
triggeredAlready = true;
|
||||
}
|
||||
}else triggeredAlready = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (camFollow.x != dad.getMidpoint().x + 150 && !PlayState.SONG.notes[Std.int(curStep / 16)].mustHitSection)
|
||||
|
Loading…
x
Reference in New Issue
Block a user