Search in sources :

Example 1 with GradientStroke

use of com.airbnb.lottie.model.content.GradientStroke in project lottie-android by airbnb.

the class GradientStrokeParser method parse.

static GradientStroke parse(JsonReader reader, LottieComposition composition) throws IOException {
    String name = null;
    AnimatableGradientColorValue color = null;
    AnimatableIntegerValue opacity = null;
    GradientType gradientType = null;
    AnimatablePointValue startPoint = null;
    AnimatablePointValue endPoint = null;
    AnimatableFloatValue width = null;
    ShapeStroke.LineCapType capType = null;
    ShapeStroke.LineJoinType joinType = null;
    AnimatableFloatValue offset = null;
    float miterLimit = 0f;
    boolean hidden = false;
    List<AnimatableFloatValue> lineDashPattern = new ArrayList<>();
    while (reader.hasNext()) {
        switch(reader.selectName(NAMES)) {
            case 0:
                name = reader.nextString();
                break;
            case 1:
                int points = -1;
                reader.beginObject();
                while (reader.hasNext()) {
                    switch(reader.selectName(GRADIENT_NAMES)) {
                        case 0:
                            points = reader.nextInt();
                            break;
                        case 1:
                            color = AnimatableValueParser.parseGradientColor(reader, composition, points);
                            break;
                        default:
                            reader.skipName();
                            reader.skipValue();
                    }
                }
                reader.endObject();
                break;
            case 2:
                opacity = AnimatableValueParser.parseInteger(reader, composition);
                break;
            case 3:
                gradientType = reader.nextInt() == 1 ? GradientType.LINEAR : GradientType.RADIAL;
                break;
            case 4:
                startPoint = AnimatableValueParser.parsePoint(reader, composition);
                break;
            case 5:
                endPoint = AnimatableValueParser.parsePoint(reader, composition);
                break;
            case 6:
                width = AnimatableValueParser.parseFloat(reader, composition);
                break;
            case 7:
                capType = ShapeStroke.LineCapType.values()[reader.nextInt() - 1];
                break;
            case 8:
                joinType = ShapeStroke.LineJoinType.values()[reader.nextInt() - 1];
                break;
            case 9:
                miterLimit = (float) reader.nextDouble();
                break;
            case 10:
                hidden = reader.nextBoolean();
                break;
            case 11:
                reader.beginArray();
                while (reader.hasNext()) {
                    String n = null;
                    AnimatableFloatValue val = null;
                    reader.beginObject();
                    while (reader.hasNext()) {
                        switch(reader.selectName(DASH_PATTERN_NAMES)) {
                            case 0:
                                n = reader.nextString();
                                break;
                            case 1:
                                val = AnimatableValueParser.parseFloat(reader, composition);
                                break;
                            default:
                                reader.skipName();
                                reader.skipValue();
                        }
                    }
                    reader.endObject();
                    if (n.equals("o")) {
                        offset = val;
                    } else if (n.equals("d") || n.equals("g")) {
                        composition.setHasDashPattern(true);
                        lineDashPattern.add(val);
                    }
                }
                reader.endArray();
                if (lineDashPattern.size() == 1) {
                    // If there is only 1 value then it is assumed to be equal parts on and off.
                    lineDashPattern.add(lineDashPattern.get(0));
                }
                break;
            default:
                reader.skipName();
                reader.skipValue();
        }
    }
    // Telegram sometimes omits opacity.
    // https://github.com/airbnb/lottie-android/issues/1600
    opacity = opacity == null ? new AnimatableIntegerValue(Collections.singletonList(new Keyframe<>(100))) : opacity;
    return new GradientStroke(name, gradientType, color, opacity, startPoint, endPoint, width, capType, joinType, miterLimit, lineDashPattern, offset, hidden);
}
Also used : ShapeStroke(com.airbnb.lottie.model.content.ShapeStroke) AnimatableIntegerValue(com.airbnb.lottie.model.animatable.AnimatableIntegerValue) AnimatableFloatValue(com.airbnb.lottie.model.animatable.AnimatableFloatValue) GradientStroke(com.airbnb.lottie.model.content.GradientStroke) ArrayList(java.util.ArrayList) Keyframe(com.airbnb.lottie.value.Keyframe) AnimatablePointValue(com.airbnb.lottie.model.animatable.AnimatablePointValue) GradientType(com.airbnb.lottie.model.content.GradientType) AnimatableGradientColorValue(com.airbnb.lottie.model.animatable.AnimatableGradientColorValue)

Aggregations

AnimatableFloatValue (com.airbnb.lottie.model.animatable.AnimatableFloatValue)1 AnimatableGradientColorValue (com.airbnb.lottie.model.animatable.AnimatableGradientColorValue)1 AnimatableIntegerValue (com.airbnb.lottie.model.animatable.AnimatableIntegerValue)1 AnimatablePointValue (com.airbnb.lottie.model.animatable.AnimatablePointValue)1 GradientStroke (com.airbnb.lottie.model.content.GradientStroke)1 GradientType (com.airbnb.lottie.model.content.GradientType)1 ShapeStroke (com.airbnb.lottie.model.content.ShapeStroke)1 Keyframe (com.airbnb.lottie.value.Keyframe)1 ArrayList (java.util.ArrayList)1