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

65 lines
1.3 KiB
Haxe
Raw Normal View History

2020-10-13 08:07:04 +00:00
package;
import haxe.Json;
import lime.utils.Assets;
2020-10-14 05:02:36 +00:00
using StringTools;
2020-10-13 08:07:04 +00:00
class Song
{
public var song:String;
2020-10-14 01:44:07 +00:00
public var notes:Array<Section>;
2020-10-13 08:07:04 +00:00
public var bpm:Int;
public var sections:Int;
2020-10-14 01:44:07 +00:00
public var sectionLengths:Array<Dynamic> = [];
2020-10-14 08:18:19 +00:00
public var needsVoices:Bool = true;
2020-10-18 01:47:59 +00:00
public var speed:Float = 1;
2020-10-13 08:07:04 +00:00
2020-10-19 00:59:53 +00:00
public var player1:String = 'bf';
public var player2:String = 'dad';
2020-10-13 08:07:04 +00:00
public function new(song, notes, bpm, sections)
{
this.song = song;
this.notes = notes;
this.bpm = bpm;
this.sections = sections;
2020-10-14 01:44:07 +00:00
for (i in 0...notes.length)
{
this.sectionLengths.push(notes[i]);
}
2020-10-13 08:07:04 +00:00
}
public static function loadFromJson(jsonInput:String):Song
{
2020-10-14 01:44:07 +00:00
var daNotes:Array<Section> = [];
2020-10-13 08:07:04 +00:00
var daBpm:Int = 0;
var daSections:Int = 0;
var daSong:String = '';
2020-10-14 01:44:07 +00:00
var daSectionLengths:Array<Int> = [];
2020-10-13 08:07:04 +00:00
2020-10-14 05:02:36 +00:00
var rawJson = Assets.getText('assets/data/' + jsonInput + '/' + jsonInput + '.json').trim();
while (!rawJson.endsWith("}"))
{
rawJson = rawJson.substr(0, rawJson.length - 1);
// LOL GOING THROUGH THE BULLSHIT TO CLEAN IDK WHATS STRANGE
}
trace(rawJson);
2020-10-18 01:47:59 +00:00
var songData:Song = Json.parse(rawJson).song;
2020-10-13 08:07:04 +00:00
2020-10-18 01:47:59 +00:00
trace('LOADED FROM JSON: ' + songData.song);
/*
daNotes = songData.notes;
daSong = songData.song;
daSections = songData.sections;
daBpm = songData.bpm;
daSectionLengths = songData.sectionLengths; */
2020-10-13 08:07:04 +00:00
2020-10-18 01:47:59 +00:00
return songData;
2020-10-13 08:07:04 +00:00
}
}