Funkin/source/HealthIcon.hx

74 lines
1.3 KiB
Haxe
Raw Normal View History

2020-12-24 18:24:11 -05:00
package;
import flixel.FlxSprite;
2021-03-18 21:08:44 -04:00
using StringTools;
2020-12-24 18:24:11 -05:00
class HealthIcon extends FlxSprite
{
2021-03-01 18:59:51 -05:00
/**
* Used for FreeplayState! If you use it elsewhere, prob gonna annoying
*/
public var sprTracker:FlxSprite;
var char:String = '';
2021-03-18 21:08:44 -04:00
var isPlayer:Bool = false;
2020-12-24 18:24:11 -05:00
public function new(char:String = 'bf', isPlayer:Bool = false)
{
super();
2021-03-18 21:08:44 -04:00
this.isPlayer = isPlayer;
changeIcon(char);
2020-12-24 18:24:11 -05:00
antialiasing = true;
scrollFactor.set();
}
2021-03-01 18:59:51 -05:00
2021-03-18 21:08:44 -04:00
public var isOldIcon:Bool = false;
public function swapOldIcon():Void
{
isOldIcon = !isOldIcon;
if (isOldIcon)
changeIcon('bf-old');
2021-03-18 21:08:44 -04:00
else
changeIcon(PlayState.SONG.player1);
2021-03-18 21:08:44 -04:00
}
public function changeIcon(newChar:String):Void
2021-03-18 21:08:44 -04:00
{
if (newChar != 'bf-pixel' && newChar != 'bf-old')
newChar = newChar.split('-')[0].trim();
if (newChar != char)
2021-03-19 00:03:29 -04:00
{
if (animation.getByName(newChar) == null)
{
2021-06-22 20:18:22 -04:00
var imgSize:Int = 150;
if (newChar.endsWith('pixel'))
imgSize = 32;
loadGraphic(Paths.image('icons/icon-' + newChar), true, imgSize, imgSize);
animation.add(newChar, [0, 1], 0, false, isPlayer);
}
animation.play(newChar);
char = newChar;
2021-06-22 20:18:22 -04:00
if (newChar.endsWith('pixel'))
setGraphicSize(150, 150);
2021-03-19 00:03:29 -04:00
}
2021-03-18 21:08:44 -04:00
}
2021-03-01 18:59:51 -05:00
override function update(elapsed:Float)
{
super.update(elapsed);
if (sprTracker != null)
setPosition(sprTracker.x + sprTracker.width + 10, sprTracker.y - 30);
}
2020-12-24 18:24:11 -05:00
}