mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 19:33:36 +00:00
122 lines
2.6 KiB
Haxe
122 lines
2.6 KiB
Haxe
|
package funkin.ui.freeplay;
|
||
|
|
||
|
import funkin.data.freeplay.style.FreeplayStyleData;
|
||
|
import funkin.data.freeplay.style.FreeplayStyleRegistry;
|
||
|
import funkin.data.animation.AnimationData;
|
||
|
import funkin.data.IRegistryEntry;
|
||
|
import flixel.graphics.FlxGraphic;
|
||
|
import flixel.util.FlxColor;
|
||
|
|
||
|
/**
|
||
|
* A class representing the data for a style of the Freeplay menu.
|
||
|
*/
|
||
|
class FreeplayStyle implements IRegistryEntry<FreeplayStyleData>
|
||
|
{
|
||
|
/**
|
||
|
* The internal ID for this freeplay style.
|
||
|
*/
|
||
|
public final id:String;
|
||
|
|
||
|
/**
|
||
|
* The full data for a freeplay style.
|
||
|
*/
|
||
|
public final _data:FreeplayStyleData;
|
||
|
|
||
|
public function new(id:String)
|
||
|
{
|
||
|
this.id = id;
|
||
|
this._data = _fetchData(id);
|
||
|
|
||
|
if (_data == null)
|
||
|
{
|
||
|
throw 'Could not parse album data for id: $id';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the background art as a graphic, ready to apply to a sprite.
|
||
|
* @return The built graphic
|
||
|
*/
|
||
|
public function getBgAssetGraphic():FlxGraphic
|
||
|
{
|
||
|
return FlxG.bitmap.add(Paths.image(getBgAssetKey()));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the asset key for the background.
|
||
|
* @return The asset key
|
||
|
*/
|
||
|
public function getBgAssetKey():String
|
||
|
{
|
||
|
return _data.bgAsset;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the asset key for the background.
|
||
|
* @return The asset key
|
||
|
*/
|
||
|
public function getSelectorAssetKey():String
|
||
|
{
|
||
|
return _data.selectorAsset;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the asset key for the number assets.
|
||
|
* @return The asset key
|
||
|
*/
|
||
|
public function getCapsuleAssetKey():String
|
||
|
{
|
||
|
return _data.capsuleAsset;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the asset key for the capsule art.
|
||
|
* @return The asset key
|
||
|
*/
|
||
|
public function getNumbersAssetKey():String
|
||
|
{
|
||
|
return _data.numbersAsset;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Return the deselected color of the text outline
|
||
|
* for freeplay capsules.
|
||
|
* @return The deselected color
|
||
|
*/
|
||
|
public function getCapsuleDeselCol():FlxColor
|
||
|
{
|
||
|
return FlxColor.fromString(_data.capsuleTextColors[0]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Return the song selection transition delay.
|
||
|
* @return The start delay
|
||
|
*/
|
||
|
public function getStartDelay():Float
|
||
|
{
|
||
|
return _data.startDelay;
|
||
|
}
|
||
|
|
||
|
public function toString():String
|
||
|
{
|
||
|
return 'Style($id)';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Return the selected color of the text outline
|
||
|
* for freeplay capsules.
|
||
|
* @return The selected color
|
||
|
*/
|
||
|
public function getCapsuleSelCol():FlxColor
|
||
|
{
|
||
|
return FlxColor.fromString(_data.capsuleTextColors[1]);
|
||
|
}
|
||
|
|
||
|
public function destroy():Void {}
|
||
|
|
||
|
static function _fetchData(id:String):Null<FreeplayStyleData>
|
||
|
{
|
||
|
return FreeplayStyleRegistry.instance.parseEntryDataWithMigration(id, FreeplayStyleRegistry.instance.fetchEntryVersion(id));
|
||
|
}
|
||
|
}
|