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

309 lines
7.6 KiB
Haxe
Raw Normal View History

2020-10-13 08:07:04 +00:00
package;
2022-01-25 18:30:08 +00:00
import Note.NoteData;
2020-10-24 09:19:13 +00:00
import 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;
var notes:FunnyNotes;
2022-01-31 19:16:28 +00:00
var difficulties:Array<String>;
var noteMap:Map<String, Array<SwagSection>>;
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>;
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;
var extraNotes:Map<String, Array<SwagSection>>;
2020-10-24 09:19:13 +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>;
}
class SongLoad
2020-10-13 08:07:04 +00:00
{
public static var curDiff:String = 'normal';
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
{
var rawJson = Assets.getText(Paths.json(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('LOADED FROM JSON: ' + songData.notes[i].sectionNotes);
// songData.notes[i].sectionNotes = songData.notes[i].sectionNotes
}
daNotes = songData.notes;
daSong = songData.song;
daBpm = songData.bpm; */
2020-10-13 08:07:04 +00:00
2020-12-25 09:09:14 +00:00
return parseJSONshit(rawJson);
}
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)
{
2022-01-21 03:55:19 +00:00
switch (diff)
{
case 'easy':
songShit = songData.notes.easy;
case 'normal':
songShit = songData.notes.normal;
case 'hard':
songShit = songData.notes.hard;
}
}
checkAndCreateNotemap(curDiff);
2022-01-31 19:45:38 +00:00
songShit = songData.noteMap[diff];
return songShit;
}
public static function checkAndCreateNotemap(diff:String):Void
{
if (songData.noteMap[diff] == null)
songData.noteMap[diff] = [];
}
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!
switch (diff)
{
case 'easy':
speedShit = songData.speed.easy;
case 'normal':
speedShit = songData.speed.normal;
case 'hard':
speedShit = songData.speed.hard;
}
if (songData.speedMap[diff] == null)
songData.speedMap[diff] = 1;
2022-01-31 19:45:38 +00:00
speedShit = songData.speedMap[diff];
return speedShit;
}
2022-01-21 03:55:19 +00:00
public static function getDefaultSwagSong():SwagSong
{
return {
song: 'Test',
notes: {easy: [], normal: [], hard: []},
2022-01-31 19:16:28 +00:00
difficulties: ["easy", "normal", "hard"],
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: 'bf',
player2: 'dad',
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: ["BF", "BF-pixel"],
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 LOADING shit from json usually)
*/
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-28 17:20:03 +00:00
trace(noteStuff);
2022-01-26 01:30:29 +00:00
for (sectionIndex => section in noteStuff)
{
for (noteIndex => noteDataArray in section.sectionNotes)
{
2022-01-28 17:20:03 +00:00
trace(noteDataArray);
2022-01-26 01:30:29 +00:00
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:20:03 +00:00
trace(arrayDipshit);
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];
}
else if (noteDataArray != null)
{
// 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;
}
else
throw "shit brokey"; // i actually dont know how throw works lol
2022-01-26 01:30:29 +00:00
}
}
}
/**
* Cast notedata to ARRAY (usually used for level SAVING)
*/
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
trace(swagShit.noteMap[diff]);
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)
{
case "easy":
castArrayToNoteData(swagShit.notes.hard);
case "normal":
castArrayToNoteData(swagShit.notes.normal);
case "hard":
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-01-31 19:16:28 +00:00
trace(swagShit.noteMap.toString());
2022-01-31 19:45:38 +00:00
trace(swagShit.speedMap.toString());
2022-01-31 19:16:28 +00:00
trace('that was just notemap string lol');
2020-12-25 09:09:14 +00:00
swagShit.validScore = true;
2021-11-30 03:12:18 +00:00
trace("SONG SHIT ABOUTTA WEEK AGOOO");
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
trace('THAT SHIT WAS JUST THE NORMAL NOTES!!!');
2021-11-30 03:12:18 +00:00
songData = swagShit;
// 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
}
}