blob: 60f4eb2bc6d03456f88033f8aba5ee7b81c3d445 [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.AnimatablePointValue;
import com.airbnb.lottie.model.animatable.AnimatableValue;
import com.airbnb.lottie.model.content.RectangleShape;
import java.io.IOException;
class RectangleShapeParser {
private RectangleShapeParser() {}
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 =
AnimatablePathValueParser.parseSplitPath(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);
}
}