package; import flixel.FlxSprite; import flixel.graphics.frames.FlxAtlasFrames; class Character extends FlxSprite { public var animOffsets:Map>; public var debugMode:Bool = false; public var isPlayer:Bool = false; public var curCharacter:String = 'bf'; public function new(x:Float, y:Float, ?character:String = "bf", ?isPlayer:Bool = false) { animOffsets = new Map>(); super(x, y); curCharacter = character; this.isPlayer = isPlayer; var tex:FlxAtlasFrames; antialiasing = true; switch (curCharacter) { case 'bf': 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); 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); 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', [16, 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'); } } private var danced:Bool = false; /** * FOR GF DANCING SHIT */ public function dance() { switch (curCharacter) { 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'); } } 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]); } } public function addOffset(name:String, x:Float = 0, y:Float = 0) { animOffsets[name] = [x, y]; } }