blob: 487d3c5be30839c4e364b6015e56b47ecb62e22a [file] [log] [blame]
package com.airbnb.lottie.parser;
import android.graphics.PointF;
import android.util.JsonReader;
import com.airbnb.lottie.LottieComposition;
import com.airbnb.lottie.model.animatable.AnimatableFloatValue;
import com.airbnb.lottie.model.animatable.AnimatablePathValue;
import com.airbnb.lottie.model.animatable.AnimatablePointValue;
import com.airbnb.lottie.model.animatable.AnimatableValue;
import com.airbnb.lottie.model.content.RectangleShape;
import java.io.IOException;
public class RectangleShapeParser {
private RectangleShapeParser() {}
public static RectangleShape parse(
JsonReader reader, LottieComposition composition) throws IOException {
String name = null;
AnimatableValue<PointF, PointF> position = null;
AnimatablePointValue size = null;
AnimatableFloatValue roundedness = null;
while (reader.hasNext()) {
switch (reader.nextName()) {
case "nm":
name = reader.nextString();
break;
case "p":
position =
AnimatablePathValue.createAnimatablePathOrSplitDimensionPath(reader, composition);
break;
case "s":
size = AnimatableValueParser.parsePoint(reader, composition);
break;
case "r":
roundedness = AnimatableValueParser.parseFloat(reader, composition);
break;
default:
reader.skipValue();
}
}
return new RectangleShape(name, position, size, roundedness);
}
}