1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-15 11:22:55 +00:00

Merge branch 'ninjamuffin99/funk-269' into rewrite/master

This commit is contained in:
Cameron Taylor 2024-06-04 22:00:49 -04:00
commit cb773ed137

View file

@ -804,6 +804,13 @@ class FreeplayState extends MusicBeatSubState
*/
public function sortSongs(songsToFilter:Array<FreeplaySongData>, songFilter:SongFilter):Array<FreeplaySongData>
{
var filterAlphabetically = function(a:FreeplaySongData, b:FreeplaySongData):Int {
if (a?.songName.toLowerCase() < b?.songName.toLowerCase()) return -1;
else if (a?.songName.toLowerCase() > b?.songName.toLowerCase()) return 1;
else
return 0;
};
switch (songFilter.filterType)
{
case REGEXP:
@ -818,6 +825,8 @@ class FreeplayState extends MusicBeatSubState
return filterRegexp.match(str.songName);
});
songsToFilter.sort(filterAlphabetically);
case STARTSWITH:
// extra note: this is essentially a "search"
@ -832,9 +841,13 @@ class FreeplayState extends MusicBeatSubState
if (str == null) return true; // Random
return str.isFav;
});
songsToFilter.sort(filterAlphabetically);
default:
// return all on default
}
return songsToFilter;
}