mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 06:14:36 +00:00
65 lines
1.3 KiB
Haxe
65 lines
1.3 KiB
Haxe
package;
|
|
|
|
import haxe.Json;
|
|
import lime.utils.Assets;
|
|
|
|
using StringTools;
|
|
|
|
class Song
|
|
{
|
|
public var song:String;
|
|
public var notes:Array<Section>;
|
|
public var bpm:Int;
|
|
public var sections:Int;
|
|
public var sectionLengths:Array<Dynamic> = [];
|
|
public var needsVoices:Bool = true;
|
|
public var speed:Float = 1;
|
|
|
|
public var player1:String = 'bf';
|
|
public var player2:String = 'dad';
|
|
|
|
public function new(song, notes, bpm, sections)
|
|
{
|
|
this.song = song;
|
|
this.notes = notes;
|
|
this.bpm = bpm;
|
|
this.sections = sections;
|
|
|
|
for (i in 0...notes.length)
|
|
{
|
|
this.sectionLengths.push(notes[i]);
|
|
}
|
|
}
|
|
|
|
public static function loadFromJson(jsonInput:String):Song
|
|
{
|
|
var daNotes:Array<Section> = [];
|
|
var daBpm:Int = 0;
|
|
var daSections:Int = 0;
|
|
var daSong:String = '';
|
|
var daSectionLengths:Array<Int> = [];
|
|
|
|
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);
|
|
|
|
var songData:Song = Json.parse(rawJson).song;
|
|
|
|
trace('LOADED FROM JSON: ' + songData.song);
|
|
/*
|
|
daNotes = songData.notes;
|
|
daSong = songData.song;
|
|
daSections = songData.sections;
|
|
daBpm = songData.bpm;
|
|
daSectionLengths = songData.sectionLengths; */
|
|
|
|
return songData;
|
|
}
|
|
}
|