2020-10-04 06:42:58 +00:00
|
|
|
package;
|
|
|
|
|
|
|
|
import flixel.FlxG;
|
2020-10-04 22:27:49 +00:00
|
|
|
import flixel.FlxObject;
|
2020-10-04 21:44:52 +00:00
|
|
|
import flixel.FlxSprite;
|
2020-10-04 06:42:58 +00:00
|
|
|
import flixel.FlxState;
|
2020-10-04 21:44:52 +00:00
|
|
|
import flixel.addons.display.FlxGridOverlay;
|
|
|
|
import flixel.group.FlxGroup.FlxTypedGroup;
|
|
|
|
import flixel.text.FlxText;
|
2020-10-05 00:53:49 +00:00
|
|
|
import flixel.util.FlxColor;
|
2021-03-04 08:00:48 +00:00
|
|
|
import openfl.events.Event;
|
|
|
|
import openfl.events.IOErrorEvent;
|
|
|
|
import openfl.net.FileReference;
|
|
|
|
|
|
|
|
using StringTools;
|
2020-10-04 06:42:58 +00:00
|
|
|
|
2020-10-04 21:44:52 +00:00
|
|
|
/**
|
|
|
|
*DEBUG MODE
|
|
|
|
*/
|
2020-10-19 00:59:53 +00:00
|
|
|
class AnimationDebug extends FlxState
|
2020-10-04 06:42:58 +00:00
|
|
|
{
|
2020-10-04 21:44:52 +00:00
|
|
|
var bf:Boyfriend;
|
2020-10-19 00:59:53 +00:00
|
|
|
var dad:Character;
|
2020-10-04 22:27:49 +00:00
|
|
|
var char:Character;
|
2020-10-04 21:44:52 +00:00
|
|
|
var textAnim:FlxText;
|
|
|
|
var dumbTexts:FlxTypedGroup<FlxText>;
|
|
|
|
var animList:Array<String> = [];
|
|
|
|
var curAnim:Int = 0;
|
2020-10-30 03:06:52 +00:00
|
|
|
var isDad:Bool = true;
|
2020-10-23 23:12:38 +00:00
|
|
|
var daAnim:String = 'spooky';
|
2020-10-04 22:27:49 +00:00
|
|
|
var camFollow:FlxObject;
|
|
|
|
|
2020-10-23 23:12:38 +00:00
|
|
|
public function new(daAnim:String = 'spooky')
|
2020-10-04 22:27:49 +00:00
|
|
|
{
|
|
|
|
super();
|
2020-10-23 23:12:38 +00:00
|
|
|
this.daAnim = daAnim;
|
2020-10-04 22:27:49 +00:00
|
|
|
}
|
2020-10-04 21:44:52 +00:00
|
|
|
|
2020-10-04 06:42:58 +00:00
|
|
|
override function create()
|
|
|
|
{
|
|
|
|
FlxG.sound.music.stop();
|
|
|
|
|
2020-10-04 22:27:49 +00:00
|
|
|
var gridBG:FlxSprite = FlxGridOverlay.create(10, 10);
|
|
|
|
gridBG.scrollFactor.set(0.5, 0.5);
|
2020-10-04 21:44:52 +00:00
|
|
|
add(gridBG);
|
|
|
|
|
2020-10-30 03:06:52 +00:00
|
|
|
if (daAnim == 'bf')
|
|
|
|
isDad = false;
|
|
|
|
|
2020-10-04 22:27:49 +00:00
|
|
|
if (isDad)
|
|
|
|
{
|
2020-10-23 23:12:38 +00:00
|
|
|
dad = new Character(0, 0, daAnim);
|
2020-10-04 22:27:49 +00:00
|
|
|
dad.screenCenter();
|
|
|
|
dad.debugMode = true;
|
|
|
|
add(dad);
|
|
|
|
|
|
|
|
char = dad;
|
2021-01-15 04:33:12 +00:00
|
|
|
dad.flipX = false;
|
2020-10-04 22:27:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bf = new Boyfriend(0, 0);
|
|
|
|
bf.screenCenter();
|
|
|
|
bf.debugMode = true;
|
|
|
|
add(bf);
|
|
|
|
|
|
|
|
char = bf;
|
2021-01-15 04:33:12 +00:00
|
|
|
bf.flipX = false;
|
2020-10-04 22:27:49 +00:00
|
|
|
}
|
2020-10-04 21:44:52 +00:00
|
|
|
|
|
|
|
dumbTexts = new FlxTypedGroup<FlxText>();
|
|
|
|
add(dumbTexts);
|
|
|
|
|
2020-10-04 22:27:49 +00:00
|
|
|
textAnim = new FlxText(300, 16);
|
2020-10-04 21:44:52 +00:00
|
|
|
textAnim.size = 26;
|
2020-10-04 22:27:49 +00:00
|
|
|
textAnim.scrollFactor.set();
|
2020-10-04 21:44:52 +00:00
|
|
|
add(textAnim);
|
|
|
|
|
|
|
|
genBoyOffsets();
|
|
|
|
|
2020-10-04 22:27:49 +00:00
|
|
|
camFollow = new FlxObject(0, 0, 2, 2);
|
|
|
|
camFollow.screenCenter();
|
|
|
|
add(camFollow);
|
|
|
|
|
|
|
|
FlxG.camera.follow(camFollow);
|
|
|
|
|
2020-10-04 06:42:58 +00:00
|
|
|
super.create();
|
|
|
|
}
|
2020-10-04 21:44:52 +00:00
|
|
|
|
|
|
|
function genBoyOffsets(pushList:Bool = true):Void
|
|
|
|
{
|
|
|
|
var daLoop:Int = 0;
|
2020-10-04 22:27:49 +00:00
|
|
|
|
|
|
|
for (anim => offsets in char.animOffsets)
|
2020-10-04 21:44:52 +00:00
|
|
|
{
|
|
|
|
var text:FlxText = new FlxText(10, 20 + (18 * daLoop), 0, anim + ": " + offsets, 15);
|
2020-10-04 22:27:49 +00:00
|
|
|
text.scrollFactor.set();
|
2020-10-05 00:53:49 +00:00
|
|
|
text.color = FlxColor.BLUE;
|
2020-10-04 21:44:52 +00:00
|
|
|
dumbTexts.add(text);
|
|
|
|
|
|
|
|
if (pushList)
|
|
|
|
animList.push(anim);
|
|
|
|
|
|
|
|
daLoop++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateTexts():Void
|
|
|
|
{
|
|
|
|
dumbTexts.forEach(function(text:FlxText)
|
|
|
|
{
|
|
|
|
text.kill();
|
|
|
|
dumbTexts.remove(text, true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
override function update(elapsed:Float)
|
|
|
|
{
|
2020-10-04 22:27:49 +00:00
|
|
|
textAnim.text = char.animation.curAnim.name;
|
|
|
|
|
|
|
|
if (FlxG.keys.justPressed.E)
|
|
|
|
FlxG.camera.zoom += 0.25;
|
|
|
|
if (FlxG.keys.justPressed.Q)
|
|
|
|
FlxG.camera.zoom -= 0.25;
|
|
|
|
|
|
|
|
if (FlxG.keys.pressed.I || FlxG.keys.pressed.J || FlxG.keys.pressed.K || FlxG.keys.pressed.L)
|
|
|
|
{
|
|
|
|
if (FlxG.keys.pressed.I)
|
|
|
|
camFollow.velocity.y = -90;
|
|
|
|
else if (FlxG.keys.pressed.K)
|
|
|
|
camFollow.velocity.y = 90;
|
|
|
|
else
|
|
|
|
camFollow.velocity.y = 0;
|
|
|
|
|
|
|
|
if (FlxG.keys.pressed.J)
|
|
|
|
camFollow.velocity.x = -90;
|
|
|
|
else if (FlxG.keys.pressed.L)
|
|
|
|
camFollow.velocity.x = 90;
|
|
|
|
else
|
|
|
|
camFollow.velocity.x = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
camFollow.velocity.set();
|
|
|
|
}
|
2020-10-04 21:44:52 +00:00
|
|
|
|
|
|
|
if (FlxG.keys.justPressed.W)
|
|
|
|
{
|
|
|
|
curAnim -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FlxG.keys.justPressed.S)
|
|
|
|
{
|
|
|
|
curAnim += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (curAnim < 0)
|
|
|
|
curAnim = animList.length - 1;
|
|
|
|
|
|
|
|
if (curAnim >= animList.length)
|
|
|
|
curAnim = 0;
|
|
|
|
|
|
|
|
if (FlxG.keys.justPressed.S || FlxG.keys.justPressed.W || FlxG.keys.justPressed.SPACE)
|
|
|
|
{
|
2020-10-04 22:27:49 +00:00
|
|
|
char.playAnim(animList[curAnim]);
|
|
|
|
|
|
|
|
updateTexts();
|
|
|
|
genBoyOffsets(false);
|
2020-10-04 21:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var upP = FlxG.keys.anyJustPressed([UP]);
|
|
|
|
var rightP = FlxG.keys.anyJustPressed([RIGHT]);
|
|
|
|
var downP = FlxG.keys.anyJustPressed([DOWN]);
|
|
|
|
var leftP = FlxG.keys.anyJustPressed([LEFT]);
|
|
|
|
|
2020-10-04 22:27:49 +00:00
|
|
|
var holdShift = FlxG.keys.pressed.SHIFT;
|
|
|
|
var multiplier = 1;
|
|
|
|
if (holdShift)
|
|
|
|
multiplier = 10;
|
|
|
|
|
2020-10-04 21:44:52 +00:00
|
|
|
if (upP || rightP || downP || leftP)
|
|
|
|
{
|
|
|
|
updateTexts();
|
|
|
|
if (upP)
|
2020-10-04 22:27:49 +00:00
|
|
|
char.animOffsets.get(animList[curAnim])[1] += 1 * multiplier;
|
2020-10-04 21:44:52 +00:00
|
|
|
if (downP)
|
2020-10-04 22:27:49 +00:00
|
|
|
char.animOffsets.get(animList[curAnim])[1] -= 1 * multiplier;
|
2020-10-04 21:44:52 +00:00
|
|
|
if (leftP)
|
2020-10-04 22:27:49 +00:00
|
|
|
char.animOffsets.get(animList[curAnim])[0] += 1 * multiplier;
|
2020-10-04 21:44:52 +00:00
|
|
|
if (rightP)
|
2020-10-04 22:27:49 +00:00
|
|
|
char.animOffsets.get(animList[curAnim])[0] -= 1 * multiplier;
|
2020-10-04 21:44:52 +00:00
|
|
|
|
|
|
|
updateTexts();
|
|
|
|
genBoyOffsets(false);
|
2020-10-04 22:27:49 +00:00
|
|
|
char.playAnim(animList[curAnim]);
|
2020-10-04 21:44:52 +00:00
|
|
|
}
|
|
|
|
|
2021-03-04 08:00:48 +00:00
|
|
|
if (FlxG.keys.justPressed.ESCAPE)
|
|
|
|
{
|
|
|
|
var outputString:String = "";
|
|
|
|
|
|
|
|
for (swagAnim in animList)
|
|
|
|
{
|
|
|
|
outputString += swagAnim + " " + char.animOffsets.get(swagAnim)[0] + " " + char.animOffsets.get(swagAnim)[1] + "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
outputString.trim();
|
|
|
|
saveOffsets(outputString);
|
|
|
|
}
|
|
|
|
|
2020-10-04 21:44:52 +00:00
|
|
|
super.update(elapsed);
|
|
|
|
}
|
2021-03-04 08:00:48 +00:00
|
|
|
|
|
|
|
var _file:FileReference;
|
|
|
|
|
|
|
|
private function saveOffsets(saveString:String)
|
|
|
|
{
|
|
|
|
if ((saveString != null) && (saveString.length > 0))
|
|
|
|
{
|
|
|
|
_file = new FileReference();
|
|
|
|
_file.addEventListener(Event.COMPLETE, onSaveComplete);
|
|
|
|
_file.addEventListener(Event.CANCEL, onSaveCancel);
|
|
|
|
_file.addEventListener(IOErrorEvent.IO_ERROR, onSaveError);
|
|
|
|
_file.save(saveString, daAnim + "Offsets.txt");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onSaveComplete(_):Void
|
|
|
|
{
|
|
|
|
_file.removeEventListener(Event.COMPLETE, onSaveComplete);
|
|
|
|
_file.removeEventListener(Event.CANCEL, onSaveCancel);
|
|
|
|
_file.removeEventListener(IOErrorEvent.IO_ERROR, onSaveError);
|
|
|
|
_file = null;
|
|
|
|
FlxG.log.notice("Successfully saved LEVEL DATA.");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the save file dialog is cancelled.
|
|
|
|
*/
|
|
|
|
function onSaveCancel(_):Void
|
|
|
|
{
|
|
|
|
_file.removeEventListener(Event.COMPLETE, onSaveComplete);
|
|
|
|
_file.removeEventListener(Event.CANCEL, onSaveCancel);
|
|
|
|
_file.removeEventListener(IOErrorEvent.IO_ERROR, onSaveError);
|
|
|
|
_file = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called if there is an error while saving the gameplay recording.
|
|
|
|
*/
|
|
|
|
function onSaveError(_):Void
|
|
|
|
{
|
|
|
|
_file.removeEventListener(Event.COMPLETE, onSaveComplete);
|
|
|
|
_file.removeEventListener(Event.CANCEL, onSaveCancel);
|
|
|
|
_file.removeEventListener(IOErrorEvent.IO_ERROR, onSaveError);
|
|
|
|
_file = null;
|
|
|
|
FlxG.log.error("Problem saving Level data");
|
|
|
|
}
|
2020-10-04 06:42:58 +00:00
|
|
|
}
|