/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

 */
package org.apache.batik.anim.values;

import org.apache.batik.anim.dom.AnimationTarget;

import org.w3c.dom.svg.SVGLength;

An SVG length list value in the animation system.
Author:Cameron McCormack
Version:$Id: AnimatableLengthListValue.java 1733416 2016-03-03 07:07:13Z gadams $
/** * An SVG length list value in the animation system. * * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @version $Id: AnimatableLengthListValue.java 1733416 2016-03-03 07:07:13Z gadams $ */
public class AnimatableLengthListValue extends AnimatableValue {
The length types.
/** * The length types. */
protected short[] lengthTypes;
The length values. These should be one of the constants defined in SVGLength.
/** * The length values. These should be one of the constants defined in * {@link SVGLength}. */
protected float[] lengthValues;
How to interpret percentage values. These should be one of the AnimationTarget.PERCENTAGE_* constants.
/** * How to interpret percentage values. These should be one of the * {@link AnimationTarget}.PERCENTAGE_* constants. */
protected short percentageInterpretation;
Creates a new, uninitialized AnimatableLengthListValue.
/** * Creates a new, uninitialized AnimatableLengthListValue. */
protected AnimatableLengthListValue(AnimationTarget target) { super(target); }
Creates a new AnimatableLengthListValue.
/** * Creates a new AnimatableLengthListValue. */
public AnimatableLengthListValue(AnimationTarget target, short[] types, float[] values, short pcInterp) { super(target); this.lengthTypes = types; this.lengthValues = values; this.percentageInterpretation = pcInterp; }
Performs interpolation to the given value.
/** * Performs interpolation to the given value. */
public AnimatableValue interpolate(AnimatableValue result, AnimatableValue to, float interpolation, AnimatableValue accumulation, int multiplier) { AnimatableLengthListValue toLengthList = (AnimatableLengthListValue) to; AnimatableLengthListValue accLengthList = (AnimatableLengthListValue) accumulation; boolean hasTo = to != null; boolean hasAcc = accumulation != null; boolean canInterpolate = !(hasTo && toLengthList.lengthTypes.length != lengthTypes.length) && !(hasAcc && accLengthList.lengthTypes.length != lengthTypes.length); short[] baseLengthTypes; float[] baseLengthValues; if (!canInterpolate && hasTo && interpolation >= 0.5) { baseLengthTypes = toLengthList.lengthTypes; baseLengthValues = toLengthList.lengthValues; } else { baseLengthTypes = lengthTypes; baseLengthValues = lengthValues; } int len = baseLengthTypes.length; AnimatableLengthListValue res; if (result == null) { res = new AnimatableLengthListValue(target); res.lengthTypes = new short[len]; res.lengthValues = new float[len]; } else { res = (AnimatableLengthListValue) result; if (res.lengthTypes == null || res.lengthTypes.length != len) { res.lengthTypes = new short[len]; res.lengthValues = new float[len]; } } res.hasChanged = percentageInterpretation != res.percentageInterpretation; res.percentageInterpretation = percentageInterpretation; for (int i = 0; i < len; i++) { float toV = 0, accV = 0; short newLengthType = baseLengthTypes[i]; float newLengthValue = baseLengthValues[i]; if (canInterpolate) { if (hasTo && !AnimatableLengthValue.compatibleTypes (newLengthType, percentageInterpretation, toLengthList.lengthTypes[i], toLengthList.percentageInterpretation) || hasAcc && !AnimatableLengthValue.compatibleTypes (newLengthType, percentageInterpretation, accLengthList.lengthTypes[i], accLengthList.percentageInterpretation)) { newLengthValue = target.svgToUserSpace (newLengthValue, newLengthType, percentageInterpretation); newLengthType = SVGLength.SVG_LENGTHTYPE_NUMBER; if (hasTo) { toV = to.target.svgToUserSpace (toLengthList.lengthValues[i], toLengthList.lengthTypes[i], toLengthList.percentageInterpretation); } if (hasAcc) { accV = accumulation.target.svgToUserSpace (accLengthList.lengthValues[i], accLengthList.lengthTypes[i], accLengthList.percentageInterpretation); } } else { if (hasTo) { toV = toLengthList.lengthValues[i]; } if (hasAcc) { accV = accLengthList.lengthValues[i]; } } newLengthValue += interpolation * (toV - newLengthValue) + multiplier * accV; } if (!res.hasChanged) { res.hasChanged = newLengthType != res.lengthTypes[i] || newLengthValue != res.lengthValues[i]; } res.lengthTypes[i] = newLengthType; res.lengthValues[i] = newLengthValue; } return res; }
Gets the length types.
/** * Gets the length types. */
public short[] getLengthTypes() { return lengthTypes; }
Gets the length values.
/** * Gets the length values. */
public float[] getLengthValues() { return lengthValues; }
Returns whether two values of this type can have their distance computed, as needed by paced animation.
/** * Returns whether two values of this type can have their distance * computed, as needed by paced animation. */
public boolean canPace() { return false; }
Returns the absolute distance between this value and the specified other value.
/** * Returns the absolute distance between this value and the specified other * value. */
public float distanceTo(AnimatableValue other) { return 0f; }
Returns a zero value of this AnimatableValue's type.
/** * Returns a zero value of this AnimatableValue's type. */
public AnimatableValue getZeroValue() { float[] vs = new float[lengthValues.length]; return new AnimatableLengthListValue (target, lengthTypes, vs, percentageInterpretation); }
Returns the CSS text representation of the value. Length lists can never be used for CSS properties.
/** * Returns the CSS text representation of the value. * Length lists can never be used for CSS properties. */
public String getCssText() { StringBuffer sb = new StringBuffer(); if (lengthValues.length > 0) { sb.append(formatNumber(lengthValues[0])); sb.append(AnimatableLengthValue.UNITS[lengthTypes[0] - 1]); } for (int i = 1; i < lengthValues.length; i++) { sb.append(','); sb.append(formatNumber(lengthValues[i])); sb.append(AnimatableLengthValue.UNITS[lengthTypes[i] - 1]); } return sb.toString(); } }