blob: 3dda5cdf20d5e5d8466c97149c762746361b6fd2 [file] [log] [blame]
package com.airbnb.lottie;
import android.util.Log;
import org.json.JSONException;
import org.json.JSONObject;
class ShapeFill {
private static final String TAG = ShapeFill.class.getSimpleName();
private boolean fillEnabled;
private AnimatableColorValue color;
private AnimatableIntegerValue opacity;
ShapeFill(JSONObject json, int frameRate, LottieComposition composition) {
JSONObject jsonColor = null;
try {
jsonColor = json.getJSONObject("c");
} catch (JSONException e) {
// Do nothing.
}
if (jsonColor != null) {
color = new AnimatableColorValue(jsonColor, frameRate, composition);
}
JSONObject jsonOpacity = null;
try {
jsonOpacity = json.getJSONObject("o");
} catch (JSONException e) {
// Do nothing.
}
if (jsonOpacity != null) {
opacity = new AnimatableIntegerValue(jsonOpacity, frameRate, composition, false, true);
}
try {
fillEnabled = json.getBoolean("fillEnabled");
} catch (JSONException e) {
// Do nothing.
}
if (L.DBG) Log.d(TAG, "Parsed new shape fill " + toString());
}
public AnimatableColorValue getColor() {
return color;
}
public AnimatableIntegerValue getOpacity() {
return opacity;
}
@Override
public String toString() {
return "ShapeFill{" + "color=" + Integer.toHexString(color.getInitialValue()) +
", fillEnabled=" + fillEnabled +
", opacity=" + opacity.getInitialValue() +
'}';
}
}