package loon.action; import loon.LSystem; import loon.action.map.Field2D; import loon.action.sprite.ISprite; import loon.action.sprite.effect.BaseEffect; import loon.canvas.LColor; import loon.event.FrameLoopEvent; import loon.event.Updateable; import loon.geom.Bezier; import loon.geom.Vector2f; import loon.utils.Array; import loon.utils.Easing; import loon.utils.TArray; import loon.utils.Easing.EasingMode; public class ActionTween extends ActionTweenBase<ActionTween> { private static int combinedAttrsLimit = 3; private static int funPointsLimit = 0; public static void setCombinedAttributesLimit(int limit) { ActionTween.combinedAttrsLimit = limit; } public static void setfunPointsLimit(int limit) { ActionTween.funPointsLimit = limit; } private static final ActionTweenPool.Callback<ActionTween> poolCallback = new ActionTweenPool.Callback<ActionTween>() { @Override public void onPool(ActionTween obj) { obj.reset(); } @Override public void onUnPool(ActionTween obj) { obj.reset(); } }; private static final ActionTweenPool<ActionTween> pool = new ActionTweenPool<ActionTween>( 20, poolCallback) { @Override protected ActionTween create() { return new ActionTween(); } }; /** * 从当前ActionBind数值到指定目标(大多数时候,调用此状态已经足够) * * @param target * 具体的操作对象 * @param tweenType * 需要转变的接口 * @param duration * 持续时间 * @return */ public static ActionTween to(ActionBind target, int tweenType, float duration) { ActionTween tween = pool.get(); tween.setup(target, tweenType, duration); tween.ease(Easing.QUAD_INOUT); tween.path(ActionControl.SMOOTH); return tween; } /** * 从注入的数值演变到当前值 * * @param target * @param tweenType * @param duration * @return */ public static ActionTween from(ActionBind target, int tweenType, float duration) { ActionTween tween = pool.get(); tween.setup(target, tweenType, duration); tween.ease(Easing.QUAD_INOUT); tween.path(ActionControl.SMOOTH); tween.isFrom = true; return tween; } /** * 直接注入当前对象为指定数值 * * @param target * @param tweenType * @return */ public static ActionTween set(ActionBind target, int tweenType) { ActionTween tween = pool.get(); tween.setup(target, tweenType, 0); tween.ease(Easing.QUAD_INOUT); return tween; } /** * 直接调用一个ActionCallback方法 * * @param callback * @return */ public static ActionTween call(ActionCallback callback) { ActionTween tween = pool.get(); tween.setup(null, -1, 0); tween.setCallback(callback); tween.setCallbackTriggers(ActionMode.START); return tween; } /** * 制作一个无状态的空ActionTween对象 * * @return */ public static ActionTween mark() { ActionTween tween = pool.get(); tween.setup(null, -1, 0); return tween; } public static int getPoolSize() { return pool.size(); } public static void resize(int minCapacity) { pool.resize(minCapacity); } private int type; private Easing equation; private ActionPath path; private boolean isFrom; private boolean isRelative; private boolean isRepeat; private int _combinedAttrsSize; private int _funPointsSize; private final float[] startValues = new float[combinedAttrsLimit]; private final float[] targetValues = new float[combinedAttrsLimit]; private final float[] funPoints = new float[funPointsLimit * combinedAttrsLimit]; private float[] accessorBuffer = new float[combinedAttrsLimit]; private float[] pathBuffer = new float[(2 + funPointsLimit) * combinedAttrsLimit]; private Array<ActionEvent> actionEvents; private ActionTween() { reset(); } public ActionTween flashTo() { return event(new FlashTo()); } public ActionTween flashTo(float duration) { return event(new FlashTo(duration)); } public ActionTween flashTo(float duration, EasingMode easing) { return event(new FlashTo(duration, easing)); } public ActionTween flashTo(float duration, float delay, EasingMode easing) { return event(new FlashTo(duration, delay, easing)); } public ActionTween moveTo(float endX, float endY) { return moveTo(endX, endY, false, 8); } public ActionTween moveTo(float endX, float endY, ActionListener l) { return moveTo(endX, endY, false, 8, l); } public ActionTween moveTo(float endX, float endY, int speed) { return moveTo(endX, endY, false, speed); } public ActionTween moveTo(float endX, float endY, int speed, ActionListener l) { return moveTo(endX, endY, false, speed, l); } public ActionTween moveTo(float endX, float endY, boolean flag) { return moveTo(LSystem.viewSize.newField2D(), endX, endY, flag, 8, 0, 0, null); } public ActionTween moveTo(float endX, float endY, boolean flag, ActionListener l) { return moveTo(LSystem.viewSize.newField2D(), endX, endY, flag, 8, 0, 0, l); } public ActionTween moveTo(float endX, float endY, boolean flag, int speed) { return moveTo(LSystem.viewSize.newField2D(), endX, endY, flag, speed, 0, 0, null); } public ActionTween moveTo(float endX, float endY, boolean flag, int speed, ActionListener l) { return moveTo(LSystem.viewSize.newField2D(), endX, endY, flag, speed, 0, 0, l); } public ActionTween moveTo(float endX, float endY, boolean flag, float offsetX, float offsetY) { return moveTo(LSystem.viewSize.newField2D(), endX, endY, flag, 8, offsetX, offsetY, null); } public ActionTween moveTo(float endX, float endY, boolean flag, float offsetX, float offsetY, ActionListener l) { return moveTo(LSystem.viewSize.newField2D(), endX, endY, flag, 8, offsetX, offsetY, l); } public ActionTween moveTo(float endX, float endY, boolean flag, int speed, float offsetX, float offsetY) { return moveTo(LSystem.viewSize.newField2D(), endX, endY, flag, speed, offsetX, offsetY, null); } public ActionTween moveTo(float endX, float endY, boolean flag, int speed, float offsetX, float offsetY, ActionListener l) { return moveTo(LSystem.viewSize.newField2D(), endX, endY, flag, speed, offsetX, offsetY, l); } public ActionTween moveTo(Field2D map, float endX, float endY, boolean flag, int speed) { return moveTo(map, endX, endY, flag, speed, 0, 0, null); } public ActionTween moveTo(Field2D map, float endX, float endY, boolean flag, int speed, ActionListener l) { return moveTo(map, endX, endY, flag, speed, 0, 0, l); } public ActionTween moveTo(Field2D map, float endX, float endY, boolean flag, int speed, float offsetX, float offsetY, ActionListener l) { if (map != null && map.inside(endX, endY)) { MoveTo move = new MoveTo(map, endX, endY, flag, speed); move.setDelay(0); move.setOffset(offsetX, offsetY); return event(move, l); } else { return moveBy(endX, endY, speed, EasingMode.Linear, offsetX, offsetY, l); } } public ActionTween moveBy(float endX, float endY) { return moveBy(endX, endY, 8); } public ActionTween moveBy(float endX, float endY, ActionListener l) { return moveBy(endX, endY, 8, l); } public ActionTween moveBy(float endX, float endY, int speed) { return event(new MoveBy(endX, endY, speed), null); } public ActionTween moveBy(float endX, float endY, int speed, ActionListener l) { return event(new MoveBy(endX, endY, speed), l); } public ActionTween moveBy(float endX, float endY, float duration, float delay, EasingMode easing, float offsetX, float offsetY) { return event(new MoveBy(-1f, -1f, endX, endY, 0, duration, delay, easing, offsetX, offsetY)); } public ActionTween moveBy(float endX, float endY, float duration, float delay, EasingMode easing, float offsetX, float offsetY, ActionListener l) { return event(new MoveBy(-1f, -1f, endX, endY, 0, duration, delay, easing, offsetX, offsetY), l); } public ActionTween moveBy(float endX, float endY, int speed, EasingMode easing, float offsetX, float offsetY) { return moveBy(endX, endY, speed, easing, offsetX, offsetY, null); } public ActionTween moveBy(float endX, float endY, int speed, EasingMode easing, float offsetX, float offsetY, ActionListener l) { return event(new MoveBy(endX, endY, speed, easing, offsetX, offsetY), l); } public ActionTween moveBy(float startX, float startY, float endX, float endY, float duration, float delay, EasingMode easing, float offsetX, float offsetY) { return event(new MoveBy(startX, startY, endX, endY, 0, duration, delay, easing, offsetX, offsetY), null); } public ActionTween moveBy(float startX, float startY, float endX, float endY, float duration, float delay, EasingMode easing, float offsetX, float offsetY, ActionListener l) { return event(new MoveBy(startX, startY, endX, endY, 0, duration, delay, easing, offsetX, offsetY), l); } public ActionTween moveBy(float endX, float endY, EasingMode easing) { return event(new MoveBy(endX, endY, easing)); } public ActionTween moveBy(float endX, float endY, EasingMode easing, ActionListener l) { return event(new MoveBy(endX, endY, easing), l); } public ActionTween moveBy(float endX, float endY, float duration, float delay, EasingMode easing) { return event(new MoveBy(endX, endY, duration, delay, easing)); } public ActionTween moveBy(float endX, float endY, float duration, float delay, EasingMode easing, ActionListener l) { return event(new MoveBy(endX, endY, duration, delay, easing), l); } public ActionTween moveBy(float endX, float endY, float duration, EasingMode easing) { return event(new MoveBy(endX, endY, duration, easing)); } public ActionTween moveBy(float endX, float endY, float duration, EasingMode easing, ActionListener l) { return event(new MoveBy(endX, endY, duration, easing), l); } public ActionTween fadeIn(float speed) { return fadeTo(ISprite.TYPE_FADE_IN, speed); } public ActionTween fadeOut(float speed) { return fadeTo(ISprite.TYPE_FADE_OUT, speed); } public ActionTween fadeTo(int fadeMode, float speed) { return event(new FadeTo(fadeMode, (int) speed)); } public ActionTween rotateTo(float angle) { return rotateTo(angle, 6f); } public ActionTween rotateTo(float angle, float speed) { return rotateTo(angle, 1f, speed); } public ActionTween rotateTo(float angle, float diff, float speed) { return event(new RotateTo(angle, diff, speed)); } public ActionTween rotateTo(float angle, float diff, float speed, EasingMode easing) { return event(new RotateTo(angle, diff, speed, easing)); } public ActionTween rotateTo(float startRotation, float dstAngle, float diffAngle, float duration, float delay, EasingMode easing) { return event(new RotateTo(startRotation, dstAngle, diffAngle, duration, delay, easing)); } public ActionTween colorTo(LColor end) { return colorTo(null, end); } public ActionTween colorTo(LColor start, LColor end) { ColorTo color = new ColorTo(start, end, 1f); color.setDelay(0); return event(color); } public ActionTween colorTo(LColor start, LColor end, float delay) { return colorTo(start, end, delay, 1f); } public ActionTween colorTo(LColor start, LColor end, float duration, float delay) { ColorTo color = new ColorTo(start, end, duration, delay); color.setDelay(0); return event(color); } public ActionTween eventTo(FrameLoopEvent e) { EventTo event = new EventTo(e); event.setDelay(0); return event(event); } public ActionTween transferTo(float startPos, float endPos, EasingMode mode, boolean controlX, boolean controlY) { TransferTo transfer = new TransferTo(startPos, endPos, 1f, mode, controlX, controlY); transfer.setDelay(0); return event(transfer); } public ActionTween transferTo(float startPos, float endPos, float duration, EasingMode mode) { TransferTo transfer = new TransferTo(startPos, endPos, duration, mode); transfer.setDelay(0); return event(transfer); } public ActionTween transferTo(float startPos, float endPos, float duration, EasingMode mode, boolean controlX, boolean controlY) { TransferTo transfer = new TransferTo(startPos, endPos, duration, mode, controlX, controlY); transfer.setDelay(0); return event(transfer); } public ActionTween transferTo(float startPos, float endPos, float duration, float delay, EasingMode mode, boolean controlX, boolean controlY) { TransferTo transfer = new TransferTo(startPos, endPos, delay, duration, mode, controlX, controlY); transfer.setDelay(0); return event(transfer); } public ActionTween shakeTo(float shake) { return shakeTo(shake, shake); } public ActionTween shakeTo(float shakeX, float shakeY) { ShakeTo shake = new ShakeTo(shakeX, shakeY); shake.setDelay(0); return event(shake); } public ActionTween shakeTo(float shakeX, float shakeY, float duration) { ShakeTo shake = new ShakeTo(shakeX, shakeY, duration); shake.setDelay(0); return event(shake); } public ActionTween shakeTo(float shakeX, float shakeY, float duration, float delay) { ShakeTo shake = new ShakeTo(shakeX, shakeY, duration, delay); shake.setDelay(0); return event(shake); } public ActionTween shakeTo(float shakeX, float shakeY, float duration, float delay, EasingMode easing) { ShakeTo shake = new ShakeTo(shakeX, shakeY, duration, delay, easing); shake.setDelay(0); return event(shake); } public ActionTween scaleTo(float s) { return scaleTo(s, s, 0.1f); } public ActionTween scaleTo(float sx, float sy) { return scaleTo(sx, sy, 0.1f); } public ActionTween scaleTo(float sx, float sy, float speed) { ScaleTo scale = new ScaleTo(sx, sy); scale.setDelay(0); scale.setSpeed(speed); return event(scale); } public ActionTween showTo(boolean v) { ShowTo show = new ShowTo(v); show.setDelay(0); return event(show); } public ActionTween arrowTo(float x, float y) { return event(new ArrowTo(x, y)); } public ActionTween arrowTo(float x, float y, float g) { return event(new ArrowTo(x, y, g)); } public ActionTween arrowTo(float x, float y, float speed, float g, EasingMode easing) { return event(new ArrowTo(x, y, speed, g, easing)); } public ActionTween arrowTo(float tx, float ty, float speed, float g) { return event(new ArrowTo(tx, ty, speed, g)); } public ActionTween arrowTo(float st, float sy, float tx, float ty, float speed, float g, float duration, float delay, EasingMode easing) { return event(new ArrowTo(st, sy, tx, ty, speed, g, duration, delay, easing)); } public ActionTween circleTo(int radius, int velocity) { return event(new CircleTo(radius, velocity)); } public ActionTween circleTo(float centerX, float cenertY, int radius, int velocity) { return circleTo(-1, -1, radius, velocity, 0.1f); } public ActionTween circleTo(float centerX, float cenertY, int radius, int velocity, float speed) { return event(new CircleTo(centerX, cenertY, radius, velocity, speed)); } public ActionTween effectTo(BaseEffect eff) { return event(new EffectTo(eff)); } public ActionTween fireTo(float endX, float endY, float speed) { return event(new FireTo(endX, endY, speed)); } public ActionTween jumpTo(int moveJump, float gravity) { return event(new JumpTo(moveJump, gravity)); } public ActionTween parallelTo(ActionEvent... eves) { return event(new ParallelTo(eves)); } public ActionTween parallelTo(TArray<ActionEvent> list) { return event(new ParallelTo(list)); } public ActionTween updateTo(Updateable u) { return event(new UpdateTo(u)); } public ActionTween moveRoundTo(float angle, float radius, Vector2f centerPoint, EasingMode easing) { return event(new MoveRoundTo(angle, radius, centerPoint, easing)); } public ActionTween moveRoundTo(float angle, float radius, Vector2f centerPoint, float duration, EasingMode easing) { return event(new MoveRoundTo(angle, radius, centerPoint, duration, easing)); } public ActionTween moveRoundTo(float startAngle, float angle, float startRadius, float radius, Vector2f centerPoint, Vector2f startPoint, float duration, float delay, EasingMode easing) { return event(new MoveRoundTo(startAngle, angle, startRadius, radius, centerPoint, startPoint, duration, delay, easing)); } public ActionTween moveOvalTo(float angle, float width, float height, Vector2f centerPoint, float duration, EasingMode easing) { return event(new MoveOvalTo(0, angle, width, height, centerPoint, duration, easing)); } public ActionTween moveOvalTo(float startAngle, float angle, float width, float height, Vector2f centerPoint, float duration, EasingMode easing) { return event(new MoveOvalTo(startAngle, angle, width, height, centerPoint, duration, easing)); } public ActionTween moveOvalTo(float startAngle, float angle, float width, float height, Vector2f centerPoint, Vector2f startPoint, float duration, float delay, EasingMode easing) { return event(new MoveOvalTo(startAngle, angle, width, height, centerPoint, startPoint, duration, delay, easing)); } public ActionTween bezierBy(float duration, Bezier b) { return event(new BezierBy(duration, b)); } public ActionTween bezierBy(float sx, float sy, float duration, Bezier b) { return event(new BezierBy(sx, sy, duration, b)); } public ActionTween bezierBy(float sx, float sy, float duration, EasingMode mode, Bezier b) { return event(new BezierBy(sx, sy, duration, mode, b)); } public ActionTween bezierTo(float duration, Bezier b) { return event(new BezierTo(duration, b)); } public ActionTween bezierTo(float sx, float sy, float duration, Bezier b) { return event(new BezierTo(sx, sy, duration, b)); } public ActionTween bezierTo(float sx, float sy, float duration, EasingMode mode, Bezier b) { return event(new BezierTo(sx, sy, duration, mode, b)); } public ActionTween flipX(boolean x) { return event(new FlipXTo(x)); } public ActionTween flipY(boolean y) { return event(new FlipYTo(y)); } public ActionTween removeActionsTo(ActionBind bind) { return event(new RemoveActionsTo(bind)); } public ActionTween removeActionsTo() { return removeActionsTo(null); } /** * 监听所有指定名称的已注入事件 * * @param name * @param listener * @return */ public ActionTween listenTags(Object tag, ActionListener listener) { if (actionEvents == null || tag == null) { return this; } for (; actionEvents.hashNext();) { ActionEvent tmp = actionEvents.next(); if (tmp != null) { if (tag.equals(tmp.tag) || tmp.tag == tag) { tmp.setActionListener(listener); } } } actionEvents.stopNext(); return this; } /** * 监听所有指定名称的已注入事件 * * @param name * @param listener * @return */ public ActionTween listenNames(String name, ActionListener listener) { if (actionEvents == null || name == null) { return this; } String findName = name.trim().toLowerCase(); for (; actionEvents.hashNext();) { ActionEvent tmp = actionEvents.next(); if (tmp != null) { if (findName.equals(tmp.getName())) { tmp.setActionListener(listener); } } } actionEvents.stopNext(); return this; } /** * 停止所有指定名的动画 * * @param name * @return */ public ActionTween killNames(String name) { if (actionEvents == null || name == null) { return this; } String findName = name.trim().toLowerCase(); for (; actionEvents.hashNext();) { ActionEvent tmp = actionEvents.next(); if (tmp != null) { if (findName.equals(tmp.getName())) { tmp.kill(); } } } actionEvents.stopNext(); return this; } /** * 停止所有包含指定标记的动画 * * @param tag * @return */ public ActionTween killTags(Object tag) { if (actionEvents == null || tag == null) { return this; } for (; actionEvents.hashNext();) { ActionEvent tmp = actionEvents.next(); if (tmp != null) { if (tag.equals(tmp.tag) || tmp.tag == tag) { tmp.kill(); } } } actionEvents.stopNext(); return this; } public ActionTween loop(int count) { return loop(count, false); } public ActionTween loop(int count, boolean reverse) { if (actionEvents == null) { return this; } if (count < 1) { return this; } if (count == 1) { count++; } ActionEvent e = null; Array<ActionEvent> tmps = new Array<ActionEvent>(); for (int i = 0; i < count - 1; i++) { for (; actionEvents.hashNext();) { ActionEvent tmp = actionEvents.next(); if (tmp != null) { e = tmp; } tmps.add(reverse ? e.reverse() : e.cpy()); } actionEvents.stopNext(); } actionEvents.addAll(tmps); return this; } public ActionTween loopLast(int count) { return loopLast(count, false); } public ActionTween loopLast(int count, boolean reverse) { if (actionEvents == null) { return this; } if (count < 1) { return this; } if (count == 1) { count++; } Array<ActionEvent> tmps = new Array<ActionEvent>(); for (int i = 0; i < count - 1; i++) { tmps.add(reverse ? actionEvents.last().reverse() : actionEvents .last().cpy()); } actionEvents.addAll(tmps); return this; } public TArray<ActionEvent> getActionEvents() { if (actionEvents == null) { return new TArray<ActionEvent>(0); } return new TArray<ActionEvent>(actionEvents); } @Override public ActionTween delay(float d) { super.delay(delay); if (actionEvents != null && d > 0) { DelayTo delay = new DelayTo(d); delay.setDelay(0); return event(delay); } else { return this; } } public ActionTween repeat(float time) { return repeat(1, time); } @Override public ActionTween repeat(int count, float time) { super.repeat(count, time); if (actionEvents == null) { return this; } isRepeat = true; boolean update = count > 1; ReplayTo replay = new ReplayTo(null, update); if (update) { replay.count = count; } event(replay); return delay(time); } @Override public ActionTween repeatBackward(int count, float time) { super.repeatBackward(count, time); if (actionEvents == null) { return this; } isRepeat = true; boolean update = count > 1; ReplayTo replay = new ReplayTo(null, update); if (update) { replay.count = count; } event(replay); return delay(time); } /** * 自定义事件请在此处注入 * * @param event * @return */ public ActionTween event(ActionEvent event) { return event(event, null); } /** * 注入缓动动画事件(自定义事件也请在此处注入) * * @param event * @param listener * @return */ public ActionTween event(ActionEvent event, ActionListener listener) { if (actionEvents == null) { actionEvents = new Array<ActionEvent>(); } if (event != null) { actionEvents.add(event); if (listener != null) { event.setActionListener(listener); } } return this; } public ActionEvent getCurrentActionEvent(){ return this.currentActionEvent; } @Override protected void reset() { super.reset(); _target = null; actionEvents = null; currentActionEvent = null; type = -1; equation = null; path = null; isFrom = isRelative = false; _combinedAttrsSize = _funPointsSize = 0; if (accessorBuffer.length != combinedAttrsLimit) { accessorBuffer = new float[combinedAttrsLimit]; } if (pathBuffer.length != (2 + funPointsLimit) * combinedAttrsLimit) { pathBuffer = new float[(2 + funPointsLimit) * combinedAttrsLimit]; } } private void setup(ActionBind target, int tweenType, float duration) { if (duration < 0) { throw LSystem.runThrow("Duration can't be negative ."); } this._target = target; this.type = tweenType; this.duration = duration; } public ActionTween ease(Easing ease) { this.equation = ease; return this; } public ActionTween target(float targetValue) { targetValues[0] = targetValue; return this; } public ActionTween target(float targetValue1, float targetValue2) { targetValues[0] = targetValue1; targetValues[1] = targetValue2; return this; } public ActionTween target(float targetValue1, float targetValue2, float targetValue3) { targetValues[0] = targetValue1; targetValues[1] = targetValue2; targetValues[2] = targetValue3; return this; } public ActionTween target(float... targetValues) { if (targetValues.length > combinedAttrsLimit) { return this; } System.arraycopy(targetValues, 0, this.targetValues, 0, targetValues.length); return this; } public ActionTween targetRelative(float targetValue) { isRelative = true; targetValues[0] = isInitialized() ? targetValue + startValues[0] : targetValue; return this; } public ActionTween targetRelative(float targetValue1, float targetValue2) { isRelative = true; targetValues[0] = isInitialized() ? targetValue1 + startValues[0] : targetValue1; targetValues[1] = isInitialized() ? targetValue2 + startValues[1] : targetValue2; return this; } public ActionTween targetRelative(float targetValue1, float targetValue2, float targetValue3) { isRelative = true; targetValues[0] = isInitialized() ? targetValue1 + startValues[0] : targetValue1; targetValues[1] = isInitialized() ? targetValue2 + startValues[1] : targetValue2; targetValues[2] = isInitialized() ? targetValue3 + startValues[2] : targetValue3; return this; } public ActionTween targetRelative(float... targetValues) { if (targetValues.length > combinedAttrsLimit) { return this; } for (int i = 0; i < targetValues.length; i++) { this.targetValues[i] = isInitialized() ? targetValues[i] + startValues[i] : targetValues[i]; } isRelative = true; return this; } public ActionTween funPoint(float targetValue) { if (_funPointsSize == funPointsLimit) { return this; } funPoints[_funPointsSize] = targetValue; _funPointsSize += 1; return this; } public ActionTween funPoint(float targetValue1, float targetValue2) { if (_funPointsSize == funPointsLimit) { return this; } funPoints[_funPointsSize * 2] = targetValue1; funPoints[_funPointsSize * 2 + 1] = targetValue2; _funPointsSize += 1; return this; } public ActionTween funPoint(float targetValue1, float targetValue2, float targetValue3) { if (_funPointsSize == funPointsLimit) { return this; } funPoints[_funPointsSize * 3] = targetValue1; funPoints[_funPointsSize * 3 + 1] = targetValue2; funPoints[_funPointsSize * 3 + 2] = targetValue3; _funPointsSize += 1; return this; } public ActionTween funPoint(float... targetValues) { if (_funPointsSize == funPointsLimit) { return this; } System.arraycopy(targetValues, 0, funPoints, _funPointsSize * targetValues.length, targetValues.length); _funPointsSize += 1; return this; } public ActionTween path(ActionPath path) { this.path = path; return this; } public ActionBind getTarget() { return _target; } public int getType() { return type; } public Easing getEasing() { return equation; } public float[] getTargetValues() { return targetValues; } public int getCombinedAttributesCount() { return _combinedAttrsSize; } @Override public void free() { pool.free(this); ActionControl.get().removeAllActions(_target); } @Override protected void initializeOverride() { if (_target == null) { return; } ActionType.getValues(_target, type, startValues); for (int i = 0; i < _combinedAttrsSize; i++) { targetValues[i] += isRelative ? startValues[i] : 0; for (int ii = 0; ii < _funPointsSize; ii++) { funPoints[ii * _combinedAttrsSize + i] += isRelative ? startValues[i] : 0; } if (isFrom) { float tmp = startValues[i]; startValues[i] = targetValues[i]; targetValues[i] = tmp; } } } private ActionEvent currentActionEvent; private Array<ActionEvent> repeatList; @Override protected boolean actionEventOver() { if (actionEvents == null) { return true; } if (actionEvents != null) { if (currentActionEvent != null && !currentActionEvent.isComplete()) { return false; } else if (currentActionEvent != null && currentActionEvent.isComplete()) { if (repeatList == null) { repeatList = new Array<ActionEvent>(); } if (!(currentActionEvent instanceof ReplayTo)) { repeatList.add(currentActionEvent.reverse()); } } ActionEvent event = actionEvents.first(); if (event != currentActionEvent && event != null) { actionEvents.remove(0); if (isRepeat) { if (event instanceof ReplayTo && repeatList != null && repeatList.size() > 0) { ReplayTo replayTo = ((ReplayTo) event); int size = replayTo.count - 1; if (size > 0) { for (int i = 0; i < size; i++) { repeatList.addFront(new ReplayTo(null)); repeatList.addFront(new DelayTo(0)); } } replayTo.set(repeatList); repeatList.clear(); } } ActionControl.get().addAction(event, _target); currentActionEvent = event; } } if (currentActionEvent != null && !currentActionEvent.isComplete()) { return false; } return (actionEvents == null || actionEvents.size() == 0); } @Override protected void update(int step, int lastStep, boolean isIterationStep, float delta) { if (_target == null || equation == null) { return; } if (!isIterationStep && step > lastStep) { ActionType.setValues(_target, type, isReverse(lastStep) ? startValues : targetValues); return; } if (!isIterationStep && step < lastStep) { ActionType.setValues(_target, type, isReverse(lastStep) ? targetValues : startValues); return; } if (duration < 0.00000000001f && delta > -0.00000000001f) { ActionType.setValues(_target, type, isReverse(step) ? targetValues : startValues); return; } if (duration < 0.00000000001f && delta < 0.00000000001f) { ActionType.setValues(_target, type, isReverse(step) ? startValues : targetValues); return; } float time = isReverse(step) ? duration - getCurrentTime() : getCurrentTime(); float t = equation.apply(time, duration, false); if (_funPointsSize == 0 || path == null) { for (int i = 0; i < _combinedAttrsSize; i++) { accessorBuffer[i] = startValues[i] + t * (targetValues[i] - startValues[i]); } } else { for (int i = 0; i < _combinedAttrsSize; i++) { pathBuffer[0] = startValues[i]; pathBuffer[1 + _funPointsSize] = targetValues[i]; for (int ii = 0; ii < _funPointsSize; ii++) { pathBuffer[ii + 1] = funPoints[ii * _combinedAttrsSize + i]; } accessorBuffer[i] = path.compute(t, pathBuffer, _funPointsSize + 2); } } ActionType.setValues(_target, type, accessorBuffer); } @Override protected void forceStartValues() { if (_target == null) { return; } ActionType.setValues(_target, type, startValues); } @Override protected void forceEndValues() { if (_target == null) { return; } ActionType.setValues(_target, type, targetValues); } @Override public ActionTween build() { if (_target == null) { return this; } _combinedAttrsSize = ActionType .getValues(_target, type, accessorBuffer); return this; } protected boolean containsTarget(ActionBind target) { return this._target == target; } protected boolean containsTarget(ActionBind target, int tweenType) { return this._target == target && this.type == tweenType; } }