#include "ash/wm/overview/birch/birch_animation_utils.h"
#include "ash/utility/lottie_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/views/controls/animated_image_view.h"
#include "ui/views/view_utils.h"
namespace ash::birch_animation_utils {
namespace {
constexpr char kLoadingAnimationRestartMarker[] =
"_CrOS_Marker_CycleRestart_Line";
base::TimeDelta GetCycleRestartTimestamp(const cc::SkottieWrapper& skottie) {
CHECK(skottie.is_valid());
CHECK_EQ(skottie.GetAllMarkers().size(), 1u);
auto marker = skottie.GetAllMarkers().begin();
CHECK_EQ(marker->name, kLoadingAnimationRestartMarker);
return base::TimeDelta(base::Seconds(skottie.duration()) *
marker->begin_time);
}
}
std::unique_ptr<lottie::Animation> GetLottieAnimationData(int animation_id) {
std::optional<std::vector<uint8_t>> lottie_data =
ui::ResourceBundle::GetSharedInstance().GetLottieData(animation_id);
CHECK(lottie_data.has_value());
std::unique_ptr<lottie::Animation> animation =
std::make_unique<lottie::Animation>(
cc::SkottieWrapper::UnsafeCreateSerializable(lottie_data.value()));
return animation;
}
std::optional<lottie::Animation::PlaybackConfig> GetLottiePlaybackConfig(
const cc::SkottieWrapper& skottie) {
auto animation_duration = base::Seconds(skottie.duration());
return lottie::Animation::PlaybackConfig(
{{base::TimeDelta(), animation_duration},
{GetCycleRestartTimestamp(skottie), animation_duration}},
base::TimeDelta(),
0, lottie::Animation::Style::kLoop);
}
}