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;
|
2021-12-06 22:49:05 +00:00
|
|
|
var notes:FunnyNotes;
|
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;
|
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 = '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
|
|
|
{
|
2021-02-10 20:18:14 +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;
|
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
|
|
|
|
|
|
|
if (songData != null)
|
2021-12-06 22:49:05 +00:00
|
|
|
{
|
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;
|
|
|
|
}
|
2021-12-06 22:49:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return songShit;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function getSpeed(?diff:String):Float
|
|
|
|
{
|
|
|
|
if (diff == null)
|
|
|
|
diff = SongLoad.curDiff;
|
|
|
|
|
|
|
|
var speedShit:Float = 1;
|
|
|
|
switch (diff)
|
|
|
|
{
|
|
|
|
case 'easy':
|
|
|
|
speedShit = songData.speed.easy;
|
|
|
|
case 'normal':
|
|
|
|
speedShit = songData.speed.normal;
|
|
|
|
case 'hard':
|
|
|
|
speedShit = songData.speed.hard;
|
|
|
|
}
|
|
|
|
|
|
|
|
return speedShit;
|
|
|
|
}
|
|
|
|
|
2022-01-21 03:55:19 +00:00
|
|
|
public static function getDefaultSwagSong():SwagSong
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
song: 'Test',
|
|
|
|
notes: {easy: [], normal: [], hard: []},
|
|
|
|
bpm: 150,
|
|
|
|
needsVoices: true,
|
|
|
|
player1: 'bf',
|
|
|
|
player2: 'dad',
|
|
|
|
speed: {easy: 1, normal: 1, hard: 1},
|
|
|
|
validScore: false,
|
|
|
|
voiceList: ["BF", "BF-pixel"],
|
|
|
|
extraNotes: []
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-01-25 18:30:08 +00:00
|
|
|
public static function getDefaultNoteData():NoteData
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
strumTime: 0,
|
|
|
|
altNote: false,
|
|
|
|
sustainLength: 0,
|
|
|
|
noteData: 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-25 09:09:14 +00:00
|
|
|
public static function parseJSONshit(rawJson:String):SwagSong
|
|
|
|
{
|
|
|
|
var swagShit:SwagSong = cast Json.parse(rawJson).song;
|
2022-01-25 18:30:08 +00:00
|
|
|
|
|
|
|
for (diff in Reflect.fields(Json.parse(rawJson).song.notes))
|
|
|
|
{
|
|
|
|
function funnyNoteSetter(noteStuff:Array<SwagSection>)
|
|
|
|
{
|
|
|
|
for (sectionIndex => section in noteStuff)
|
|
|
|
{
|
|
|
|
for (noteIndex => noteDataArray in section.sectionNotes)
|
|
|
|
{
|
|
|
|
trace(noteDataArray);
|
|
|
|
|
|
|
|
var arrayDipshit:Array<Dynamic> = cast noteDataArray; // crackhead
|
|
|
|
|
|
|
|
noteStuff[sectionIndex].sectionNotes[noteIndex] = cast SongLoad.getDefaultNoteData(); // turn it from an array (because of the cast), back to noteData?
|
|
|
|
|
|
|
|
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];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (diff)
|
|
|
|
{
|
|
|
|
case "easy":
|
|
|
|
funnyNoteSetter(swagShit.notes.hard);
|
|
|
|
|
|
|
|
case "normal":
|
|
|
|
funnyNoteSetter(swagShit.notes.normal);
|
|
|
|
case "hard":
|
|
|
|
funnyNoteSetter(swagShit.notes.hard);
|
|
|
|
}
|
|
|
|
trace(diff);
|
|
|
|
}
|
|
|
|
|
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("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
|
2021-12-03 12:29:47 +00:00
|
|
|
|
2021-12-06 22:49:05 +00:00
|
|
|
trace('THAT SHIT WAS JUST THE NORMAL NOTES!!!');
|
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
|
|
|
}
|
|
|
|
}
|