2022-03-08 08:13:53 +00:00
package funkin ;
2020-10-13 08:07:04 +00:00
2022-03-08 08:13:53 +00:00
import funkin . Note . NoteData ;
import funkin . Section . SwagSection ;
2020-10-13 08:07:04 +00:00
import haxe . Json ;
2020-10-24 09:19:13 +00:00
import haxe . format . JsonParser ;
2020-10-13 08:07:04 +00:00
import lime . utils . Assets ;
2020-10-14 05:02:36 +00:00
using StringTools ;
2020-10-24 09:19:13 +00:00
typedef SwagSong =
{
var song: String ;
2021-12-06 22:49:05 +00:00
var notes: FunnyNotes ;
2022-01-31 19:16:28 +00:00
var difficulties: Array < String > ;
var noteMap: Map < String , Array < SwagSection > > ;
2021-03-20 16:33:29 +00:00
var bpm: Float ;
2020-10-24 09:19:13 +00:00
var needsVoices: Bool ;
2021-09-20 17:21:25 +00:00
var voiceList: Array < String > ;
2021-12-06 22:49:05 +00:00
var speed: FunnySpeed ;
2022-01-31 19:45:38 +00:00
var speedMap: Map < String , Float > ;
2020-10-24 09:19:13 +00:00
var player1: String ;
var player2: String ;
2020-12-04 17:32:35 +00:00
var validScore: Bool ;
2021-12-03 12:29:47 +00:00
var extraNotes: Map < String , Array < SwagSection > > ;
2020-10-24 09:19:13 +00:00
}
2021-12-06 22:49:05 +00:00
typedef FunnySpeed =
{
var ? easy: Float ;
var ? normal: Float ;
var ? hard: Float ;
}
typedef FunnyNotes =
{
var ? easy: Array < SwagSection > ;
var ? normal: Array < SwagSection > ;
var ? hard: Array < SwagSection > ;
}
2021-11-30 02:43:38 +00:00
class SongLoad
2020-10-13 08:07:04 +00:00
{
2021-12-03 12:29:47 +00:00
public static var curDiff: String = ' n o r m a l ' ;
2021-11-30 03:12:18 +00:00
public static var curNotes: Array < SwagSection > ;
public static var songData: SwagSong ;
2020-11-01 01:11:14 +00:00
public static function loadFromJson ( jsonInput : String , ? folder : String ) : SwagSong
2020-10-13 08:07:04 +00:00
{
2022-02-23 21:49:54 +00:00
var rawJson = Assets . getText ( Paths . json ( ' s o n g s / ${ folder . toLowerCase ( ) } / ${ jsonInput . toLowerCase ( ) } ' ) ) . trim ( ) ;
2020-10-14 05:02:36 +00:00
while ( ! rawJson . endsWith ( " } " ) )
{
rawJson = rawJson . substr ( 0 , rawJson . length - 1 ) ;
// LOL GOING THROUGH THE BULLSHIT TO CLEAN IDK WHATS STRANGE
}
2020-10-23 23:12:38 +00:00
// FIX THE CASTING ON WINDOWS/NATIVE
2020-10-24 09:19:13 +00:00
// Windows???
// trace(songData);
2020-10-13 08:07:04 +00:00
2020-10-19 02:18:06 +00:00
// trace('LOADED FROM JSON: ' + songData.notes);
2020-10-18 01:47:59 +00:00
/ *
2020-10-23 23:12:38 +00:00
for ( i in 0 ... songData . notes . length )
{
trace ( ' L O A D E D F R O M J S O N : ' + songData . notes [ i ] . sectionNotes ) ;
// songData.notes[i].sectionNotes = songData.notes[i].sectionNotes
}
daNotes = songData . notes ;
daSong = songData . song ;
2021-02-11 22:06:26 +00:00
daBpm = songData . bpm ; * /
2020-10-13 08:07:04 +00:00
2020-12-25 09:09:14 +00:00
return parseJSONshit ( rawJson ) ;
}
2021-12-06 22:49:05 +00:00
public static function getSong ( ? diff : String ) : Array < SwagSection >
{
if ( diff == null )
diff = SongLoad . curDiff ;
var songShit: Array < SwagSection > = [ ] ;
2022-01-21 03:55:19 +00:00
2022-01-31 19:45:38 +00:00
// THIS IS OVERWRITTEN, WILL BE DEPRECTATED AND REPLACED SOOOOON
2022-01-21 03:55:19 +00:00
if ( songData != null )
2021-12-06 22:49:05 +00:00
{
2022-01-21 03:55:19 +00:00
switch ( diff )
{
c ase ' e a s y ' :
songShit = songData . notes . easy ;
c ase ' n o r m a l ' :
songShit = songData . notes . normal ;
c ase ' h a r d ' :
songShit = songData . notes . hard ;
}
2021-12-06 22:49:05 +00:00
}
2022-02-03 15:32:29 +00:00
checkAndCreateNotemap ( curDiff ) ;
2022-01-31 19:45:38 +00:00
songShit = songData . noteMap [ diff ] ;
2021-12-06 22:49:05 +00:00
return songShit ;
}
2022-02-03 15:32:29 +00:00
public static function checkAndCreateNotemap ( diff : String ) : Void
{
if ( songData . noteMap [ diff ] == null )
songData . noteMap [ diff ] = [ ] ;
}
2021-12-06 22:49:05 +00:00
public static function getSpeed ( ? diff : String ) : Float
{
if ( diff == null )
diff = SongLoad . curDiff ;
var speedShit: Float = 1 ;
2022-01-31 19:45:38 +00:00
// all this shit is overridden by the thing that loads it from speedMap Map object!!!
// replace and delete later!
2021-12-06 22:49:05 +00:00
switch ( diff )
{
c ase ' e a s y ' :
speedShit = songData . speed . easy ;
c ase ' n o r m a l ' :
speedShit = songData . speed . normal ;
c ase ' h a r d ' :
speedShit = songData . speed . hard ;
}
2022-02-03 15:32:29 +00:00
if ( songData . speedMap [ diff ] == null )
songData . speedMap [ diff ] = 1 ;
2022-01-31 19:45:38 +00:00
speedShit = songData . speedMap [ diff ] ;
2021-12-06 22:49:05 +00:00
return speedShit ;
}
2022-01-21 03:55:19 +00:00
public static function getDefaultSwagSong ( ) : SwagSong
{
return {
song : ' T e s t ' ,
notes : { easy : [ ] , normal : [ ] , hard : [ ] } ,
2022-01-31 19:16:28 +00:00
difficulties : [ " e a s y " , " n o r m a l " , " h a r d " ] ,
noteMap : new Map ( ) ,
2022-01-31 19:45:38 +00:00
speedMap : new Map ( ) ,
2022-01-21 03:55:19 +00:00
bpm : 150 ,
needsVoices : true ,
player1 : ' b f ' ,
player2 : ' d a d ' ,
2022-01-31 19:45:38 +00:00
speed : {
easy : 1 ,
normal : 1 ,
hard : 1
} ,
2022-01-21 03:55:19 +00:00
validScore : false ,
voiceList : [ " B F " , " B F - p i x e l " ] ,
extraNotes : [ ]
} ;
}
2022-01-25 18:30:08 +00:00
public static function getDefaultNoteData ( ) : NoteData
{
2022-02-10 01:31:36 +00:00
return new NoteData ( ) ;
2022-01-25 18:30:08 +00:00
}
2022-01-26 01:30:29 +00:00
/ * *
* Casts the an array to NOTE data ( for L O A D I N G s h i t f r o m j s o n u s u a l l y )
* /
public static function castArrayToNoteData ( noteStuff : Array < SwagSection > )
2020-12-25 09:09:14 +00:00
{
2022-01-26 02:14:31 +00:00
if ( noteStuff == null )
return ;
2022-01-26 01:30:29 +00:00
for ( sectionIndex => section in noteStuff )
{
2022-03-02 03:07:33 +00:00
if ( section == null || section . sectionNotes == null )
continue ;
2022-01-26 01:30:29 +00:00
for ( noteIndex => noteDataArray in section . sectionNotes )
{
2022-01-28 17:20:03 +00:00
var arrayDipshit: Array < Dynamic > = cast noteDataArray ; // crackhead
2022-01-26 01:30:29 +00:00
2022-01-28 17:24:50 +00:00
if ( arrayDipshit != null ) // array isnt null, that means it loaded it as an array and needs to be manually parsed?
2022-01-28 17:20:03 +00:00
{
// at this point noteStuff[sectionIndex].sectionNotes[noteIndex] is an array because of the cast from the first line in this function
// so this line right here turns it back into the NoteData typedef type because of another bastard cast
noteStuff [ sectionIndex ] . sectionNotes [ noteIndex ] = cast SongLoad . getDefaultNoteData ( ) ; // turn it from an array (because of the cast), back to noteData? yeah that works
noteStuff [ sectionIndex ] . sectionNotes [ noteIndex ] . strumTime = arrayDipshit [ 0 ] ;
noteStuff [ sectionIndex ] . sectionNotes [ noteIndex ] . noteData = arrayDipshit [ 1 ] ;
noteStuff [ sectionIndex ] . sectionNotes [ noteIndex ] . sustainLength = arrayDipshit [ 2 ] ;
noteStuff [ sectionIndex ] . sectionNotes [ noteIndex ] . altNote = arrayDipshit [ 3 ] ;
2022-03-01 04:04:55 +00:00
if ( arrayDipshit . length >= 5 )
{
noteStuff [ sectionIndex ] . sectionNotes [ noteIndex ] . noteKind = arrayDipshit [ 4 ] ;
}
2022-01-28 17:20:03 +00:00
}
e lse if ( noteDataArray != null )
{
2022-01-28 17:24:50 +00:00
// array is NULL, so it checks if noteDataArray (doesnt exactly NEED to be an 'array' is also null or not.)
// At this point it should be an OBJECT that can be easily casted!!!
2022-01-28 17:20:03 +00:00
noteStuff [ sectionIndex ] . sectionNotes [ noteIndex ] = cast noteDataArray ;
}
e lse
throw " s h i t b r o k e y " ; // i actually dont know how throw works lol
2022-01-26 01:30:29 +00:00
}
}
}
/ * *
* Cast notedata to ARRAY ( usually u s e d f o r l e v e l S A V I N G )
* /
public static function castNoteDataToArray ( noteStuff : Array < SwagSection > )
{
2022-01-26 02:14:31 +00:00
if ( noteStuff == null )
return ;
2022-01-26 01:30:29 +00:00
for ( sectionIndex => section in noteStuff )
2022-01-25 18:30:08 +00:00
{
2022-01-26 01:30:29 +00:00
for ( noteIndex => noteTypeDefShit in section . sectionNotes )
2022-01-25 18:30:08 +00:00
{
2022-01-26 01:30:29 +00:00
var dipshitArray: Array < Dynamic > = [
noteTypeDefShit . strumTime ,
noteTypeDefShit . noteData ,
noteTypeDefShit . sustainLength ,
noteTypeDefShit . altNote
] ;
noteStuff [ sectionIndex ] . sectionNotes [ noteIndex ] = cast dipshitArray ;
2022-01-25 18:30:08 +00:00
}
2022-01-26 01:30:29 +00:00
}
}
2022-02-04 00:51:16 +00:00
public static function castNoteDataToNoteData ( noteStuff : Array < SwagSection > )
{
if ( noteStuff == null )
return ;
for ( sectionIndex => section in noteStuff )
{
for ( noteIndex => noteTypedefShit in section . sectionNotes )
{
trace ( noteTypedefShit ) ;
noteStuff [ sectionIndex ] . sectionNotes [ noteIndex ] = noteTypedefShit ;
}
}
}
2022-01-26 01:30:29 +00:00
public static function parseJSONshit ( rawJson : String ) : SwagSong
{
2022-01-31 19:16:28 +00:00
var songParsed: Dynamic = Json . parse ( rawJson ) ;
var swagShit: SwagSong = cast songParsed . song ;
swagShit . difficulties = [ ] ; // reset it to default before load
swagShit . noteMap = new Map ( ) ;
2022-01-31 19:45:38 +00:00
swagShit . speedMap = new Map ( ) ;
2022-01-31 19:16:28 +00:00
for ( diff in Reflect . fields ( songParsed . song . notes ) )
2022-01-26 01:30:29 +00:00
{
2022-01-31 19:16:28 +00:00
swagShit . difficulties . push ( diff ) ;
swagShit . noteMap [ diff ] = cast Reflect . field ( songParsed . song . notes , diff ) ;
2022-02-04 00:51:16 +00:00
2022-01-31 19:16:28 +00:00
castArrayToNoteData ( swagShit . noteMap [ diff ] ) ;
2022-02-04 00:51:16 +00:00
// castNoteDataToNoteData(swagShit.noteMap[diff]);
2022-01-25 18:30:08 +00:00
2022-02-04 00:51:16 +00:00
/ *
switch ( diff )
{
c ase " e a s y " :
castArrayToNoteData ( swagShit . notes . hard ) ;
c ase " n o r m a l " :
castArrayToNoteData ( swagShit . notes . normal ) ;
c ase " h a r d " :
castArrayToNoteData ( swagShit . notes . hard ) ;
}
* /
2022-01-25 18:30:08 +00:00
}
2022-01-31 19:45:38 +00:00
for ( diff in swagShit . difficulties )
{
swagShit . speedMap [ diff ] = cast Reflect . field ( songParsed . song . speed , diff ) ;
}
2022-02-11 17:03:54 +00:00
// trace(swagShit.noteMap.toString());
// trace(swagShit.speedMap.toString());
// trace('that was just notemap string lol');
2022-01-31 19:16:28 +00:00
2020-12-25 09:09:14 +00:00
swagShit . validScore = true ;
2021-11-30 03:12:18 +00:00
2021-12-06 22:49:05 +00:00
trace ( " S O N G S H I T A B O U T T A W E E K A G O O O " ) ;
for ( field in Reflect . fields ( Json . parse ( rawJson ) . song . speed ) )
{
// swagShit.speed[field] = Reflect.field(Json.parse(rawJson).song.speed, field);
// swagShit.notes[field] = Reflect.field(Json.parse(rawJson).song.notes, field);
// trace(swagShit.notes[field]);
}
// swagShit.notes = cast Json.parse(rawJson).song.notes[SongLoad.curDiff]; // by default uses
2021-12-03 12:29:47 +00:00
2021-12-06 22:49:05 +00:00
trace ( ' T H A T S H I T W A S J U S T T H E N O R M A L N O T E S ! ! ! ' ) ;
2021-11-30 03:12:18 +00:00
songData = swagShit ;
2021-12-03 12:29:47 +00:00
// curNotes = songData.notes.get('normal');
2021-11-30 03:12:18 +00:00
2020-10-24 09:19:13 +00:00
return swagShit ;
2020-10-13 08:07:04 +00:00
}
}