1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 17:18:55 +00:00
Funkin/source/FreeplayState.hx

724 lines
18 KiB
Haxe
Raw Normal View History

2020-10-21 18:05:27 +00:00
package;
2021-04-08 00:19:49 +00:00
2021-12-08 00:29:26 +00:00
import Controls.Control;
2020-11-07 02:17:27 +00:00
import flash.text.TextField;
2021-08-22 00:45:03 +00:00
import flixel.FlxCamera;
import flixel.FlxGame;
2020-10-21 18:05:27 +00:00
import flixel.FlxSprite;
2021-06-08 01:14:50 +00:00
import flixel.FlxState;
2020-10-25 20:51:06 +00:00
import flixel.addons.display.FlxGridOverlay;
2021-10-22 03:08:48 +00:00
import flixel.addons.transition.FlxTransitionableState;
2020-11-01 19:16:22 +00:00
import flixel.group.FlxGroup.FlxTypedGroup;
2021-10-22 03:08:48 +00:00
import flixel.group.FlxGroup;
2021-12-07 22:41:18 +00:00
import flixel.group.FlxSpriteGroup;
2021-08-21 23:53:08 +00:00
import flixel.input.touch.FlxTouch;
2021-08-24 19:28:04 +00:00
import flixel.math.FlxAngle;
2020-11-07 02:17:27 +00:00
import flixel.math.FlxMath;
2021-08-24 19:28:04 +00:00
import flixel.math.FlxPoint;
2020-10-21 18:05:27 +00:00
import flixel.text.FlxText;
2021-10-22 03:08:48 +00:00
import flixel.tweens.FlxEase;
2021-03-02 05:46:28 +00:00
import flixel.tweens.FlxTween;
2020-11-07 02:17:27 +00:00
import flixel.util.FlxColor;
2021-10-22 03:08:48 +00:00
import flixel.util.FlxSpriteUtil;
2021-10-21 21:40:53 +00:00
import flixel.util.FlxTimer;
2021-10-22 03:08:48 +00:00
import freeplayStuff.BGScrollingText;
2021-10-21 19:05:32 +00:00
import freeplayStuff.DJBoyfriend;
2021-12-06 05:13:11 +00:00
import freeplayStuff.FreeplayScore;
2021-10-21 21:40:53 +00:00
import freeplayStuff.SongMenuItem;
import lime.app.Future;
2020-11-07 02:17:27 +00:00
import lime.utils.Assets;
2021-10-22 03:08:48 +00:00
import shaderslmfao.AngleMask;
2021-12-08 03:34:01 +00:00
import shaderslmfao.PureColor;
import shaderslmfao.StrokeShader;
2020-10-21 18:05:27 +00:00
2021-01-15 04:33:12 +00:00
using StringTools;
2021-12-05 01:24:53 +00:00
class FreeplayState extends MusicBeatSubstate
2020-10-21 18:05:27 +00:00
{
2021-02-25 01:52:59 +00:00
var songs:Array<SongMetadata> = [];
2020-10-21 18:05:27 +00:00
2021-04-22 02:17:00 +00:00
// var selector:FlxText;
2020-10-21 18:05:27 +00:00
var curSelected:Int = 0;
2020-11-07 02:17:27 +00:00
var curDifficulty:Int = 1;
2021-12-06 05:13:11 +00:00
var fp:FreeplayScore;
var lerpScore:Float = 0;
2020-11-07 02:17:27 +00:00
var intendedScore:Int = 0;
2020-10-21 18:05:27 +00:00
2021-12-07 22:41:18 +00:00
var grpDifficulties:FlxSpriteGroup;
2021-04-10 15:21:04 +00:00
var coolColors:Array<Int> = [
0xff9271fd,
0xff9271fd,
0xff223344,
0xFF941653,
0xFFfc96d7,
0xFFa0d1ff,
0xffff78bf,
0xfff6b604
];
2021-03-02 05:46:28 +00:00
2020-11-01 19:16:22 +00:00
private var grpSongs:FlxTypedGroup<Alphabet>;
2021-10-21 21:40:53 +00:00
private var grpCapsules:FlxTypedGroup<SongMenuItem>;
2020-11-25 03:53:48 +00:00
private var curPlaying:Bool = false;
2020-11-01 19:16:22 +00:00
private var iconArray:Array<HealthIcon> = [];
2020-10-21 18:05:27 +00:00
override function create()
{
2021-10-22 03:08:48 +00:00
FlxTransitionableState.skipNextTransIn = true;
2021-05-06 10:54:57 +00:00
#if discord_rpc
// Updating Discord Rich Presence
DiscordClient.changePresence("In the Menus", null);
#end
var isDebug:Bool = false;
#if debug
isDebug = true;
addSong('Test', 1, 'bf-pixel');
2022-03-01 04:04:55 +00:00
addSong('Pyro', 4, 'bf');
2021-05-06 10:54:57 +00:00
#end
2021-02-25 01:52:59 +00:00
var initSonglist = CoolUtil.coolTextFile(Paths.txt('freeplaySonglist'));
for (i in 0...initSonglist.length)
{
2021-03-01 23:59:51 +00:00
songs.push(new SongMetadata(initSonglist[i], 1, 'gf'));
2021-02-25 01:52:59 +00:00
}
2021-01-15 04:33:12 +00:00
2021-03-05 00:36:56 +00:00
if (FlxG.sound.music != null)
{
if (!FlxG.sound.music.playing)
FlxG.sound.playMusic(Paths.music('freakyMenu'));
}
2020-11-01 19:16:22 +00:00
2021-03-01 23:59:51 +00:00
if (StoryMenuState.weekUnlocked[2] || isDebug)
addWeek(['Bopeebo', 'Fresh', 'Dadbattle'], 1, ['dad']);
2020-12-04 17:36:28 +00:00
if (StoryMenuState.weekUnlocked[2] || isDebug)
2021-03-13 18:43:11 +00:00
addWeek(['Spookeez', 'South', 'Monster'], 2, ['spooky', 'spooky', 'monster']);
2020-11-01 19:16:22 +00:00
2020-12-11 11:45:00 +00:00
if (StoryMenuState.weekUnlocked[3] || isDebug)
2021-03-01 21:46:08 +00:00
addWeek(['Pico', 'Philly', 'Blammed'], 3, ['pico']);
2020-12-11 11:45:00 +00:00
2020-12-27 10:37:04 +00:00
if (StoryMenuState.weekUnlocked[4] || isDebug)
2021-03-01 21:46:08 +00:00
addWeek(['Satin-Panties', 'High', 'Milf'], 4, ['mom']);
2020-12-27 10:37:04 +00:00
2021-01-17 09:16:02 +00:00
if (StoryMenuState.weekUnlocked[5] || isDebug)
2021-03-01 21:46:08 +00:00
addWeek(['Cocoa', 'Eggnog', 'Winter-Horrorland'], 5, ['parents-christmas', 'parents-christmas', 'monster-christmas']);
2021-01-17 09:16:02 +00:00
2021-01-25 03:42:51 +00:00
if (StoryMenuState.weekUnlocked[6] || isDebug)
2021-03-01 21:46:08 +00:00
addWeek(['Senpai', 'Roses', 'Thorns'], 6, ['senpai', 'senpai', 'spirit']);
2021-01-25 03:42:51 +00:00
2021-03-04 08:00:48 +00:00
if (StoryMenuState.weekUnlocked[7] || isDebug)
addWeek(['Ugh', 'Guns', 'Stress'], 7, ['tankman']);
2021-09-22 20:04:34 +00:00
addWeek(["Darnell", "lit-up", "2hot"], 8, ['darnell']);
2021-09-23 01:09:28 +00:00
addWeek(["bro"], 1, ['gf']);
2021-09-06 18:50:04 +00:00
2020-10-21 18:05:27 +00:00
// LOAD MUSIC
// LOAD CHARACTERS
2021-08-22 00:45:03 +00:00
trace(FlxG.width);
trace(FlxG.camera.zoom);
trace(FlxG.camera.initialZoom);
trace(FlxCamera.defaultZoom);
trace(FlxG.initialZoom);
2020-10-25 20:51:06 +00:00
2021-10-22 03:08:48 +00:00
var pinkBack:FlxSprite = new FlxSprite().loadGraphic(Paths.image('freeplay/pinkBack'));
pinkBack.color = 0xFFffd4e9; // sets it to pink!
pinkBack.x -= pinkBack.width;
FlxTween.tween(pinkBack, {x: 0}, 0.6, {ease: FlxEase.quartOut});
add(pinkBack);
var orangeBackShit:FlxSprite = new FlxSprite(84, FlxG.height * 0.68).makeGraphic(Std.int(pinkBack.width), 50, 0xFFffd400);
add(orangeBackShit);
var alsoOrangeLOL:FlxSprite = new FlxSprite(0, orangeBackShit.y).makeGraphic(100, Std.int(orangeBackShit.height), 0xFFffd400);
add(alsoOrangeLOL);
FlxSpriteUtil.alphaMaskFlxSprite(orangeBackShit, pinkBack, orangeBackShit);
orangeBackShit.visible = false;
alsoOrangeLOL.visible = false;
var grpTxtScrolls:FlxGroup = new FlxGroup();
add(grpTxtScrolls);
grpTxtScrolls.visible = false;
var moreWays:BGScrollingText = new BGScrollingText(0, 200, "HOT BLOODED IN MORE WAYS THAN ONE", FlxG.width);
moreWays.funnyColor = 0xFFfff383;
2021-12-06 05:13:11 +00:00
moreWays.speed = 4;
2021-10-22 03:08:48 +00:00
grpTxtScrolls.add(moreWays);
var funnyScroll:BGScrollingText = new BGScrollingText(0, 250, "BOYFRIEND", FlxG.width / 2);
funnyScroll.funnyColor = 0xFFff9963;
2021-12-06 05:13:11 +00:00
funnyScroll.speed = -1;
2021-10-22 03:08:48 +00:00
grpTxtScrolls.add(funnyScroll);
var txtNuts:BGScrollingText = new BGScrollingText(0, 300, "PROTECT YO NUTS", FlxG.width / 2);
grpTxtScrolls.add(txtNuts);
var funnyScroll2:BGScrollingText = new BGScrollingText(0, 340, "BOYFRIEND", FlxG.width / 2);
funnyScroll2.funnyColor = 0xFFff9963;
2021-12-06 05:13:11 +00:00
funnyScroll2.speed = -1.2;
2021-10-22 03:08:48 +00:00
grpTxtScrolls.add(funnyScroll2);
var moreWays2:BGScrollingText = new BGScrollingText(0, 400, "HOT BLOODED IN MORE WAYS THAN ONE", FlxG.width);
moreWays2.funnyColor = 0xFFfff383;
2021-12-06 05:13:11 +00:00
moreWays2.speed = 4.4;
2021-10-22 03:08:48 +00:00
grpTxtScrolls.add(moreWays2);
var funnyScroll3:BGScrollingText = new BGScrollingText(0, orangeBackShit.y, "BOYFRIEND", FlxG.width / 2);
funnyScroll3.funnyColor = 0xFFff9963;
2021-12-06 05:13:11 +00:00
funnyScroll3.speed = -0.8;
2021-10-22 03:08:48 +00:00
grpTxtScrolls.add(funnyScroll3);
var dj:DJBoyfriend = new DJBoyfriend(0, -100);
add(dj);
2021-12-06 05:13:11 +00:00
var bgDad:FlxSprite = new FlxSprite(pinkBack.width * 0.75, 0).loadGraphic(Paths.image('freeplay/freeplayBGdad'));
2021-10-22 03:08:48 +00:00
bgDad.setGraphicSize(0, FlxG.height);
bgDad.updateHitbox();
bgDad.shader = new AngleMask();
2021-12-06 05:13:11 +00:00
bgDad.visible = false;
2021-10-22 03:08:48 +00:00
2021-12-06 05:13:11 +00:00
var blackOverlayBullshitLOLXD:FlxSprite = new FlxSprite(FlxG.width).makeGraphic(Std.int(bgDad.width), Std.int(bgDad.height), FlxColor.BLACK);
add(blackOverlayBullshitLOLXD); // used to mask the text lol!
2021-12-04 06:19:25 +00:00
2021-10-22 03:08:48 +00:00
add(bgDad);
2021-12-06 05:13:11 +00:00
FlxTween.tween(blackOverlayBullshitLOLXD, {x: pinkBack.width * 0.75}, 1, {ease: FlxEase.quintOut});
2021-10-22 03:08:48 +00:00
blackOverlayBullshitLOLXD.shader = bgDad.shader;
2020-11-01 19:16:22 +00:00
grpSongs = new FlxTypedGroup<Alphabet>();
add(grpSongs);
2021-10-21 21:40:53 +00:00
grpCapsules = new FlxTypedGroup<SongMenuItem>();
add(grpCapsules);
2021-12-08 03:34:01 +00:00
grpDifficulties = new FlxSpriteGroup(-300, 80);
2021-12-07 22:41:18 +00:00
add(grpDifficulties);
grpDifficulties.add(new FlxSprite().loadGraphic(Paths.image('freeplay/freeplayEasy')));
grpDifficulties.add(new FlxSprite().loadGraphic(Paths.image('freeplay/freeplayNorm')));
grpDifficulties.add(new FlxSprite().loadGraphic(Paths.image('freeplay/freeplayHard')));
grpDifficulties.group.forEach(function(spr)
{
spr.visible = false;
});
grpDifficulties.group.members[curDifficulty].visible = true;
2021-10-22 03:08:48 +00:00
var overhangStuff:FlxSprite = new FlxSprite().makeGraphic(FlxG.width, 64, FlxColor.BLACK);
overhangStuff.y -= overhangStuff.height;
add(overhangStuff);
2021-12-04 06:19:25 +00:00
FlxTween.tween(overhangStuff, {y: 0}, 0.3, {ease: FlxEase.quartOut});
2021-10-22 03:08:48 +00:00
2021-12-04 06:19:25 +00:00
var fnfFreeplay:FlxText = new FlxText(0, 12, 0, "FREEPLAY", 48);
2021-10-22 03:08:48 +00:00
fnfFreeplay.font = "VCR OSD Mono";
2021-12-04 06:19:25 +00:00
fnfFreeplay.visible = false;
var sillyStroke = new StrokeShader(0xFFFFFFFF, 2, 2);
fnfFreeplay.shader = sillyStroke;
2021-10-22 03:08:48 +00:00
add(fnfFreeplay);
2021-12-06 05:13:11 +00:00
fp = new FreeplayScore(420, 40, 100);
fp.visible = false;
add(fp);
2021-10-22 03:08:48 +00:00
dj.animHITsignal.add(function()
{
2021-12-08 00:29:26 +00:00
FlxTween.tween(grpDifficulties, {x: 90}, 0.6, {ease: FlxEase.quartOut});
2021-12-08 03:34:01 +00:00
add(new DifficultySelector(20, grpDifficulties.y - 10, false, controls));
add(new DifficultySelector(325, grpDifficulties.y - 10, true, controls));
2021-12-08 00:29:26 +00:00
2021-12-05 01:24:53 +00:00
var animShit:ComboCounter = new ComboCounter(100, 300, 1000000);
// add(animShit);
2021-12-04 06:34:58 +00:00
new FlxTimer().start(1 / 24, function(handShit)
{
fnfFreeplay.visible = true;
2021-12-06 05:13:11 +00:00
fp.visible = true;
2021-12-06 05:41:10 +00:00
fp.updateScore(FlxG.random.int(0, 1000));
2021-12-04 06:34:58 +00:00
new FlxTimer().start(1.5 / 24, function(bold)
{
sillyStroke.width = 0;
sillyStroke.height = 0;
2021-12-04 06:34:58 +00:00
});
});
2021-10-22 03:08:48 +00:00
pinkBack.color = 0xFFffd863;
2021-12-04 06:34:58 +00:00
// fnfFreeplay.visible = true;
2021-12-06 05:13:11 +00:00
bgDad.visible = true;
2021-10-22 03:08:48 +00:00
orangeBackShit.visible = true;
alsoOrangeLOL.visible = true;
grpTxtScrolls.visible = true;
});
2020-10-21 18:05:27 +00:00
for (i in 0...songs.length)
{
2021-10-21 21:40:53 +00:00
var funnyMenu:SongMenuItem = new SongMenuItem(FlxG.width, (i * 150) + 160, songs[i].songName);
funnyMenu.targetPos.x = funnyMenu.x;
funnyMenu.ID = i;
2021-12-04 06:19:25 +00:00
funnyMenu.alpha = 0.5;
funnyMenu.songText.visible = false;
2021-10-21 21:40:53 +00:00
2021-12-06 05:13:11 +00:00
fp.updateScore(0);
2021-12-05 03:52:21 +00:00
new FlxTimer().start((1 / 24) * i, function(doShit)
{
funnyMenu.doJumpIn = true;
});
2021-12-05 01:24:53 +00:00
new FlxTimer().start((0.09 * i) + 0.85, function(lerpTmr)
2021-10-21 21:40:53 +00:00
{
funnyMenu.doLerp = true;
});
2021-12-04 06:19:25 +00:00
new FlxTimer().start(((0.20 * i) / (1 + i)) + 0.75, function(swagShi)
{
funnyMenu.songText.visible = true;
funnyMenu.alpha = 1;
});
2021-10-21 21:40:53 +00:00
grpCapsules.add(funnyMenu);
2021-02-25 01:52:59 +00:00
var songText:Alphabet = new Alphabet(0, (70 * i) + 30, songs[i].songName, true, false);
2021-10-21 21:40:53 +00:00
songText.x += 100;
2020-11-01 19:16:22 +00:00
songText.isMenuItem = true;
songText.targetY = i;
2021-10-21 21:40:53 +00:00
// grpSongs.add(songText);
2021-03-01 23:59:51 +00:00
var icon:HealthIcon = new HealthIcon(songs[i].songCharacter);
icon.sprTracker = songText;
// using a FlxGroup is too much fuss!
iconArray.push(icon);
2021-10-21 21:40:53 +00:00
// add(icon);
2021-03-01 23:59:51 +00:00
2020-11-01 19:16:22 +00:00
// songText.x += 40;
2020-10-30 23:47:19 +00:00
// DONT PUT X IN THE FIRST PARAMETER OF new ALPHABET() !!
// songText.screenCenter(X);
2020-10-21 18:05:27 +00:00
}
2020-11-01 19:16:22 +00:00
changeSelection();
2020-11-07 02:17:27 +00:00
changeDiff();
2020-11-01 19:16:22 +00:00
2021-02-08 21:34:48 +00:00
// FlxG.sound.playMusic(Paths.music('title'), 0);
2020-11-01 19:16:22 +00:00
// FlxG.sound.music.fadeIn(2, 0, 0.8);
2021-04-22 02:17:00 +00:00
// selector = new FlxText();
2020-10-30 23:47:19 +00:00
2021-04-22 02:17:00 +00:00
// selector.size = 40;
// selector.text = ">";
2020-11-01 19:16:22 +00:00
// add(selector);
2020-10-21 18:05:27 +00:00
2020-10-25 20:51:06 +00:00
var swag:Alphabet = new Alphabet(1, 0, "swag");
2020-11-07 02:17:27 +00:00
// JUST DOIN THIS SHIT FOR TESTING!!!
/*
var md:String = Markdown.markdownToHtml(Assets.getText('CHANGELOG.md'));
var texFel:TextField = new TextField();
texFel.width = FlxG.width;
texFel.height = FlxG.height;
// texFel.
texFel.htmlText = md;
FlxG.stage.addChild(texFel);
trace(md);
*/
2021-12-05 01:24:53 +00:00
var funnyCam = new FlxCamera(0, 0, FlxG.width, FlxG.height);
funnyCam.bgColor = FlxColor.TRANSPARENT;
FlxG.cameras.add(funnyCam);
forEach(function(bs)
{
bs.cameras = [funnyCam];
});
2020-10-21 18:05:27 +00:00
super.create();
}
2021-03-01 21:46:08 +00:00
public function addSong(songName:String, weekNum:Int, songCharacter:String)
2021-02-25 01:52:59 +00:00
{
2021-03-01 21:46:08 +00:00
songs.push(new SongMetadata(songName, weekNum, songCharacter));
2021-02-25 01:52:59 +00:00
}
2021-03-01 21:46:08 +00:00
public function addWeek(songs:Array<String>, weekNum:Int, ?songCharacters:Array<String>)
2021-02-25 01:52:59 +00:00
{
2021-03-01 21:46:08 +00:00
if (songCharacters == null)
songCharacters = ['bf'];
var num:Int = 0;
2021-02-25 01:52:59 +00:00
for (song in songs)
{
2021-03-01 21:46:08 +00:00
addSong(song, weekNum, songCharacters[num]);
if (songCharacters.length != 1)
num++;
2021-02-25 01:52:59 +00:00
}
}
2021-08-21 23:53:08 +00:00
var touchY:Float = 0;
2021-08-22 20:54:22 +00:00
var touchX:Float = 0;
var dxTouch:Float = 0;
2021-08-21 23:53:08 +00:00
var dyTouch:Float = 0;
var velTouch:Float = 0;
var veloctiyLoopShit:Float = 0;
2021-08-22 00:45:03 +00:00
var touchTimer:Float = 0;
2021-08-21 23:53:08 +00:00
2021-08-24 19:28:04 +00:00
var initTouchPos:FlxPoint = new FlxPoint();
2020-10-21 18:05:27 +00:00
override function update(elapsed:Float)
{
2021-08-22 00:45:03 +00:00
super.update(elapsed);
if (FlxG.sound.music != null)
{
if (FlxG.sound.music.volume < 0.7)
{
FlxG.sound.music.volume += 0.5 * FlxG.elapsed;
}
}
2021-12-06 20:28:14 +00:00
lerpScore = CoolUtil.coolLerp(lerpScore, intendedScore, 0.2);
2021-08-22 00:45:03 +00:00
2021-12-06 05:41:10 +00:00
fp.scoreShit = Std.int(lerpScore);
2021-08-22 00:45:03 +00:00
var upP = controls.UI_UP_P;
var downP = controls.UI_DOWN_P;
var accepted = controls.ACCEPT;
2021-08-21 23:53:08 +00:00
if (FlxG.onMobile)
{
2021-08-24 19:28:04 +00:00
for (touch in FlxG.touches.list)
{
if (touch.justPressed)
{
initTouchPos.set(touch.screenX, touch.screenY);
}
if (touch.pressed)
{
var dx = initTouchPos.x - touch.screenX;
var dy = initTouchPos.y - touch.screenY;
var angle = Math.atan2(dy, dx);
var length = Math.sqrt(dx * dx + dy * dy);
FlxG.watch.addQuick("LENGTH", length);
FlxG.watch.addQuick("ANGLE", Math.round(FlxAngle.asDegrees(angle)));
trace("ANGLE", Math.round(FlxAngle.asDegrees(angle)));
}
/* switch (inputID)
{
case FlxObject.UP:
return
case FlxObject.DOWN:
}
*/
}
2021-08-21 23:53:08 +00:00
if (FlxG.touches.getFirst() != null)
{
2021-08-22 00:45:03 +00:00
if (touchTimer >= 1.5)
accepted = true;
touchTimer += FlxG.elapsed;
2021-08-21 23:53:08 +00:00
var touch:FlxTouch = FlxG.touches.getFirst();
velTouch = Math.abs((touch.screenY - dyTouch)) / 50;
dyTouch = touch.screenY - touchY;
2021-08-22 20:54:22 +00:00
dxTouch = touch.screenX - touchX;
2021-08-21 23:53:08 +00:00
if (touch.justPressed)
{
touchY = touch.screenY;
dyTouch = 0;
velTouch = 0;
2021-08-22 20:54:22 +00:00
touchX = touch.screenX;
dxTouch = 0;
}
if (Math.abs(dxTouch) >= 100)
{
touchX = touch.screenX;
if (dxTouch != 0)
dxTouch < 0 ? changeDiff(1) : changeDiff(-1);
2021-08-21 23:53:08 +00:00
}
if (Math.abs(dyTouch) >= 100)
{
touchY = touch.screenY;
if (dyTouch != 0)
dyTouch < 0 ? changeSelection(1) : changeSelection(-1);
// changeSelection(1);
}
}
else
{
2021-08-22 00:45:03 +00:00
touchTimer = 0;
2021-08-22 20:54:22 +00:00
/* if (velTouch >= 0)
{
trace(velTouch);
velTouch -= FlxG.elapsed;
2021-08-21 23:53:08 +00:00
2021-08-22 20:54:22 +00:00
veloctiyLoopShit += velTouch;
2021-08-21 23:53:08 +00:00
2021-08-22 20:54:22 +00:00
trace("VEL LOOP: " + veloctiyLoopShit);
2021-08-21 23:53:08 +00:00
2021-08-22 20:54:22 +00:00
if (veloctiyLoopShit >= 30)
{
veloctiyLoopShit = 0;
changeSelection(1);
}
2021-08-21 23:53:08 +00:00
2021-08-22 20:54:22 +00:00
// trace(velTouch);
}*/
2021-08-21 23:53:08 +00:00
}
}
2021-08-17 05:20:00 +00:00
#if mobile
for (touch in FlxG.touches.list)
{
if (touch.justPressed)
{
2021-08-21 23:53:08 +00:00
// accepted = true;
2021-08-17 05:20:00 +00:00
}
}
#end
2020-10-30 23:47:19 +00:00
if (upP)
2020-11-01 19:16:22 +00:00
changeSelection(-1);
2020-10-30 23:47:19 +00:00
if (downP)
2020-11-01 19:16:22 +00:00
changeSelection(1);
2020-10-21 18:05:27 +00:00
2021-04-08 00:19:49 +00:00
if (FlxG.mouse.wheel != 0)
changeSelection(-Math.round(FlxG.mouse.wheel / 4));
2021-03-14 02:11:56 +00:00
if (controls.UI_LEFT_P)
2020-11-07 02:17:27 +00:00
changeDiff(-1);
2021-03-14 02:11:56 +00:00
if (controls.UI_RIGHT_P)
2020-11-07 02:17:27 +00:00
changeDiff(1);
2020-11-01 19:16:22 +00:00
if (controls.BACK)
{
2021-04-15 14:19:02 +00:00
FlxG.sound.play(Paths.sound('cancelMenu'));
2022-03-01 04:04:55 +00:00
FlxG.switchState(new MainMenuState());
2020-11-01 19:16:22 +00:00
}
if (accepted)
{
2021-09-10 14:07:55 +00:00
// if (Assets.exists())
2021-12-07 01:35:15 +00:00
var poop:String = songs[curSelected].songName.toLowerCase();
2021-09-10 14:07:55 +00:00
2021-09-21 19:39:30 +00:00
// does not work properly, always just accidentally sets it to normal anyways!
/* if (!Assets.exists(Paths.json(songs[curSelected].songName + '/' + poop)))
{
// defaults to normal if HARD / EASY doesn't exist
// does not account if NORMAL doesn't exist!
FlxG.log.warn("CURRENT DIFFICULTY IS NOT CHARTED, DEFAULTING TO NORMAL!");
poop = Highscore.formatSong(songs[curSelected].songName.toLowerCase(), 1);
curDifficulty = 1;
}*/
2021-11-30 03:12:18 +00:00
PlayState.SONG = SongLoad.loadFromJson(poop, songs[curSelected].songName.toLowerCase());
2020-11-01 19:16:22 +00:00
PlayState.isStoryMode = false;
2020-11-07 02:17:27 +00:00
PlayState.storyDifficulty = curDifficulty;
// SongLoad.curDiff = Highscore.formatSong()
2021-12-07 01:35:15 +00:00
SongLoad.curDiff = switch (curDifficulty)
{
case 0:
'easy';
case 1:
'normal';
case 2:
'hard';
default: 'normal';
};
2021-02-25 01:22:37 +00:00
2021-02-25 01:52:59 +00:00
PlayState.storyWeek = songs[curSelected].week;
2021-12-07 01:35:15 +00:00
trace(' CUR WEEK ' + PlayState.storyWeek);
LoadingState.loadAndSwitchState(new PlayState());
2020-11-07 02:17:27 +00:00
}
}
2021-06-08 01:14:50 +00:00
override function switchTo(nextState:FlxState):Bool
{
clearDaCache(songs[curSelected].songName);
return super.switchTo(nextState);
}
2020-11-07 02:17:27 +00:00
function changeDiff(change:Int = 0)
{
2021-08-24 19:28:04 +00:00
touchTimer = 0;
2020-11-07 02:17:27 +00:00
curDifficulty += change;
if (curDifficulty < 0)
curDifficulty = 2;
if (curDifficulty > 2)
curDifficulty = 0;
2021-12-06 05:41:10 +00:00
// intendedScore = Highscore.getScore(songs[curSelected].songName, curDifficulty);
intendedScore = FlxG.random.int(0, 100000);
2020-11-07 02:17:27 +00:00
2021-03-02 05:46:28 +00:00
PlayState.storyDifficulty = curDifficulty;
2021-12-07 22:41:18 +00:00
grpDifficulties.group.forEach(function(spr)
{
spr.visible = false;
});
2021-12-08 00:29:26 +00:00
var curShit:FlxSprite = grpDifficulties.group.members[curDifficulty];
2021-12-07 22:41:18 +00:00
2021-12-08 00:29:26 +00:00
curShit.visible = true;
curShit.offset.y += 5;
2021-12-08 03:34:01 +00:00
curShit.alpha = 0.5;
2021-12-08 00:29:26 +00:00
new FlxTimer().start(1 / 24, function(swag)
{
2021-12-08 03:34:01 +00:00
curShit.alpha = 1;
2021-12-08 00:29:26 +00:00
curShit.updateHitbox();
});
2020-11-01 19:16:22 +00:00
}
2021-12-07 01:35:15 +00:00
// Clears the cache of songs, frees up memory, they' ll have to be loaded in later tho function clearDaCache(actualSongTho:String)
2021-06-08 01:14:50 +00:00
function clearDaCache(actualSongTho:String)
{
for (song in songs)
{
if (song.songName != actualSongTho)
{
trace('trying to remove: ' + song.songName);
// openfl.Assets.cache.clear(Paths.inst(song.songName));
2021-06-08 01:14:50 +00:00
}
}
}
2020-11-01 19:16:22 +00:00
function changeSelection(change:Int = 0)
{
2021-12-06 05:41:10 +00:00
// fp.updateScore(12345);
2021-12-06 05:13:11 +00:00
2020-11-07 02:17:27 +00:00
NGio.logEvent('Fresh');
2020-11-25 03:53:48 +00:00
// NGio.logEvent('Fresh');
2021-02-08 21:34:48 +00:00
FlxG.sound.play(Paths.sound('scrollMenu'), 0.4);
2020-11-25 03:53:48 +00:00
2020-11-01 19:16:22 +00:00
curSelected += change;
2020-10-26 23:06:42 +00:00
2020-10-21 18:05:27 +00:00
if (curSelected < 0)
curSelected = songs.length - 1;
if (curSelected >= songs.length)
curSelected = 0;
2020-11-01 19:16:22 +00:00
// selector.y = (70 * curSelected) + 30;
2020-10-21 18:05:27 +00:00
2021-12-06 05:41:10 +00:00
// intendedScore = Highscore.getScore(songs[curSelected].songName, curDifficulty);
intendedScore = FlxG.random.int(0, 1000000);
2020-11-07 02:17:27 +00:00
// lerpScore = 0;
#if PRELOAD_ALL
2021-08-21 23:53:08 +00:00
// FlxG.sound.playMusic(Paths.inst(songs[curSelected].songName), 0);
#end
2020-11-25 03:53:48 +00:00
2020-11-01 19:16:22 +00:00
var bullShit:Int = 0;
for (i in 0...iconArray.length)
{
iconArray[i].alpha = 0.6;
}
iconArray[curSelected].alpha = 1;
2021-10-21 21:40:53 +00:00
for (index => capsule in grpCapsules.members)
2020-10-21 23:33:43 +00:00
{
2021-10-21 21:40:53 +00:00
capsule.selected = false;
2020-11-01 19:16:22 +00:00
2021-10-21 21:40:53 +00:00
capsule.targetPos.y = ((index - curSelected) * 150) + 160;
2021-12-05 01:24:53 +00:00
capsule.targetPos.x = 270 + (60 * (Math.sin(index - curSelected)));
// capsule.targetPos.x = 320 + (40 * (index - curSelected));
2021-12-08 00:29:26 +00:00
if (index < curSelected)
capsule.targetPos.y -= 100; // another 100 for good measure
2020-11-01 19:16:22 +00:00
}
2021-10-21 21:40:53 +00:00
grpCapsules.members[curSelected].selected = true;
2020-10-21 18:05:27 +00:00
}
2021-12-08 00:29:26 +00:00
}
class DifficultySelector extends FlxSprite
{
var controls:Controls;
2021-12-08 03:34:01 +00:00
var whiteShader:PureColor;
2021-12-08 00:29:26 +00:00
public function new(x:Float, y:Float, flipped:Bool, controls:Controls)
{
super(x, y);
this.controls = controls;
frames = Paths.getSparrowAtlas('freeplay/freeplaySelector');
animation.addByPrefix('shine', "arrow pointer loop", 24);
animation.play('shine');
2021-12-08 03:34:01 +00:00
whiteShader = new PureColor(FlxColor.WHITE);
shader = whiteShader;
2021-12-08 00:29:26 +00:00
flipX = flipped;
}
2021-04-08 21:29:31 +00:00
2021-12-08 00:29:26 +00:00
override function update(elapsed:Float)
{
if (flipX && controls.UI_RIGHT_P)
moveShitDown();
if (!flipX && controls.UI_LEFT_P)
moveShitDown();
super.update(elapsed);
}
function moveShitDown()
2021-04-08 21:29:31 +00:00
{
2021-12-08 00:29:26 +00:00
offset.y -= 5;
2021-04-08 21:29:31 +00:00
2021-12-08 03:34:01 +00:00
whiteShader.colorSet = true;
2021-12-08 00:29:26 +00:00
new FlxTimer().start(2 / 24, function(tmr)
{
2021-12-08 03:34:01 +00:00
whiteShader.colorSet = false;
2021-12-08 00:29:26 +00:00
updateHitbox();
});
2021-04-08 21:29:31 +00:00
}
2020-10-21 18:05:27 +00:00
}
2021-02-25 01:52:59 +00:00
class SongMetadata
{
public var songName:String = "";
public var week:Int = 0;
2021-03-01 21:46:08 +00:00
public var songCharacter:String = "";
2021-02-25 01:52:59 +00:00
2021-03-01 21:46:08 +00:00
public function new(song:String, week:Int, songCharacter:String)
2021-02-25 01:52:59 +00:00
{
this.songName = song;
this.week = week;
2021-03-01 21:46:08 +00:00
this.songCharacter = songCharacter;
2021-02-25 01:52:59 +00:00
}
}