mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 13:54:22 +00:00
201 lines
5.4 KiB
Haxe
201 lines
5.4 KiB
Haxe
package;
|
|
|
|
import flixel.FlxSprite;
|
|
import flixel.graphics.frames.FlxAtlasFrames;
|
|
|
|
using StringTools;
|
|
|
|
class Character extends FlxSprite
|
|
{
|
|
public var animOffsets:Map<String, Array<Dynamic>>;
|
|
public var debugMode:Bool = false;
|
|
|
|
public var isPlayer:Bool = false;
|
|
public var curCharacter:String = 'bf';
|
|
|
|
public var holdTimer:Float = 0;
|
|
|
|
public function new(x:Float, y:Float, ?character:String = "bf", ?isPlayer:Bool = false)
|
|
{
|
|
animOffsets = new Map<String, Array<Dynamic>>();
|
|
super(x, y);
|
|
|
|
curCharacter = character;
|
|
this.isPlayer = isPlayer;
|
|
|
|
var tex:FlxAtlasFrames;
|
|
antialiasing = true;
|
|
|
|
switch (curCharacter)
|
|
{
|
|
case 'gf':
|
|
// GIRLFRIEND CODE
|
|
tex = FlxAtlasFrames.fromSparrow(AssetPaths.GF_assets__png, AssetPaths.GF_assets__xml);
|
|
frames = tex;
|
|
animation.addByPrefix('cheer', 'GF Cheer', 24, false);
|
|
animation.addByPrefix('singLEFT', 'GF left note', 24, false);
|
|
animation.addByPrefix('singRIGHT', 'GF Right Note', 24, false);
|
|
animation.addByPrefix('singUP', 'GF Up Note', 24, false);
|
|
animation.addByPrefix('singDOWN', 'GF Down Note', 24, false);
|
|
animation.addByIndices('sad', 'gf sad', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "", 24, false);
|
|
animation.addByIndices('danceLeft', 'GF Dancing Beat', [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], "", 24, false);
|
|
animation.addByIndices('danceRight', 'GF Dancing Beat', [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "", 24, false);
|
|
|
|
animation.addByPrefix('scared', 'GF FEAR', 24);
|
|
|
|
addOffset('cheer');
|
|
addOffset('sad', -2, -2);
|
|
addOffset('danceLeft', 0, -9);
|
|
addOffset('danceRight', 0, -9);
|
|
|
|
addOffset("singUP", 0, 4);
|
|
addOffset("singRIGHT", 0, -20);
|
|
addOffset("singLEFT", 0, -19);
|
|
addOffset("singDOWN", 0, -20);
|
|
|
|
addOffset('scared');
|
|
|
|
playAnim('danceRight');
|
|
|
|
case 'dad':
|
|
// DAD ANIMATION LOADING CODE
|
|
tex = FlxAtlasFrames.fromSparrow(AssetPaths.DADDY_DEAREST__png, AssetPaths.DADDY_DEAREST__xml);
|
|
frames = tex;
|
|
animation.addByPrefix('idle', 'Dad idle dance', 24);
|
|
animation.addByPrefix('singUP', 'Dad Sing Note UP', 24);
|
|
animation.addByPrefix('singRIGHT', 'Dad Sing Note RIGHT', 24);
|
|
animation.addByPrefix('singDOWN', 'Dad Sing Note DOWN', 24);
|
|
animation.addByPrefix('singLEFT', 'Dad Sing Note LEFT', 24);
|
|
playAnim('idle');
|
|
|
|
addOffset('idle');
|
|
addOffset("singUP", -6, 50);
|
|
addOffset("singRIGHT", 0, 27);
|
|
addOffset("singLEFT", -10, 10);
|
|
addOffset("singDOWN", 0, -30);
|
|
case 'spooky':
|
|
tex = FlxAtlasFrames.fromSparrow(AssetPaths.spooky_kids_assets__png, AssetPaths.spooky_kids_assets__xml);
|
|
frames = tex;
|
|
animation.addByPrefix('singUP', 'spooky UP NOTE', 24, false);
|
|
animation.addByPrefix('singDOWN', 'spooky DOWN note', 24, false);
|
|
animation.addByPrefix('singLEFT', 'note sing left', 24, false);
|
|
animation.addByPrefix('singRIGHT', 'spooky sing right', 24, false);
|
|
animation.addByIndices('danceLeft', 'spooky dance idle', [0, 2, 6], "", 12, false);
|
|
animation.addByIndices('danceRight', 'spooky dance idle', [8, 10, 12, 14], "", 12, false);
|
|
|
|
addOffset('danceLeft');
|
|
addOffset('danceRight');
|
|
|
|
addOffset("singUP", -20, 26);
|
|
addOffset("singRIGHT", -130, -14);
|
|
addOffset("singLEFT", 130, -10);
|
|
addOffset("singDOWN", -50, -130);
|
|
|
|
playAnim('danceRight');
|
|
case 'monster':
|
|
tex = FlxAtlasFrames.fromSparrow(AssetPaths.Monster_Assets__png, AssetPaths.Monster_Assets__xml);
|
|
frames = tex;
|
|
animation.addByPrefix('idle', 'monster idle', 24);
|
|
animation.addByPrefix('singUP', 'monster up note', 24, false);
|
|
animation.addByPrefix('singDOWN', 'monster down', 24, false);
|
|
animation.addByPrefix('singLEFT', 'Monster left note', 24, false);
|
|
animation.addByPrefix('singRIGHT', 'Monster Right note', 24, false);
|
|
|
|
addOffset('idle');
|
|
addOffset("singUP", -20, 50);
|
|
addOffset("singRIGHT", -51);
|
|
addOffset("singLEFT", -30);
|
|
addOffset("singDOWN", -30, -40);
|
|
playAnim('idle');
|
|
}
|
|
}
|
|
|
|
override function update(elapsed:Float)
|
|
{
|
|
if (curCharacter != 'bf')
|
|
{
|
|
if (animation.curAnim.name.startsWith('sing'))
|
|
{
|
|
holdTimer += elapsed;
|
|
}
|
|
|
|
var dadVar:Float = 4;
|
|
|
|
if (curCharacter == 'dad')
|
|
dadVar = 6.1;
|
|
if (holdTimer >= Conductor.stepCrochet * dadVar * 0.001)
|
|
{
|
|
dance();
|
|
holdTimer = 0;
|
|
}
|
|
}
|
|
|
|
super.update(elapsed);
|
|
}
|
|
|
|
private var danced:Bool = false;
|
|
|
|
/**
|
|
* FOR GF DANCING SHIT
|
|
*/
|
|
public function dance()
|
|
{
|
|
switch (curCharacter)
|
|
{
|
|
case 'bf':
|
|
|
|
case 'gf':
|
|
danced = !danced;
|
|
|
|
if (danced)
|
|
playAnim('danceRight');
|
|
else
|
|
playAnim('danceLeft');
|
|
case 'spooky':
|
|
danced = !danced;
|
|
|
|
if (danced)
|
|
playAnim('danceRight');
|
|
else
|
|
playAnim('danceLeft');
|
|
case 'dad':
|
|
playAnim('idle');
|
|
case 'monster':
|
|
playAnim('idle');
|
|
}
|
|
}
|
|
|
|
public function playAnim(AnimName:String, Force:Bool = false, Reversed:Bool = false, Frame:Int = 0):Void
|
|
{
|
|
animation.play(AnimName, Force, Reversed, Frame);
|
|
|
|
var daOffset = animOffsets.get(animation.curAnim.name);
|
|
if (animOffsets.exists(animation.curAnim.name))
|
|
{
|
|
offset.set(daOffset[0], daOffset[1]);
|
|
}
|
|
|
|
if (curCharacter == 'gf')
|
|
{
|
|
if (AnimName == 'singLEFT')
|
|
{
|
|
danced = true;
|
|
}
|
|
else if (AnimName == 'singRIGHT')
|
|
{
|
|
danced = false;
|
|
}
|
|
|
|
if (AnimName == 'singUP' || AnimName == 'singDOWN')
|
|
{
|
|
danced = !danced;
|
|
}
|
|
}
|
|
}
|
|
|
|
public function addOffset(name:String, x:Float = 0, y:Float = 0)
|
|
{
|
|
animOffsets[name] = [x, y];
|
|
}
|
|
}
|