You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
49 lines
1.3 KiB
4 months ago
|
/*
|
||
|
* Copyright 2017 Google Inc.
|
||
|
*
|
||
|
* Use of this source code is governed by a BSD-style license that can be
|
||
|
* found in the LICENSE file.
|
||
|
*/
|
||
|
|
||
|
#ifndef SkottieSlide_DEFINED
|
||
|
#define SkottieSlide_DEFINED
|
||
|
|
||
|
#include "Slide.h"
|
||
|
|
||
|
#if defined(SK_ENABLE_SKOTTIE)
|
||
|
#include "Skottie.h"
|
||
|
|
||
|
namespace sksg { class Scene; }
|
||
|
|
||
|
class SkottieSlide : public Slide {
|
||
|
public:
|
||
|
SkottieSlide(const SkString& name, const SkString& path);
|
||
|
~SkottieSlide() override = default;
|
||
|
|
||
|
void load(SkScalar winWidth, SkScalar winHeight) override;
|
||
|
void unload() override;
|
||
|
|
||
|
SkISize getDimensions() const override;
|
||
|
|
||
|
void draw(SkCanvas*) override;
|
||
|
bool animate(const SkAnimTimer&) override;
|
||
|
|
||
|
bool onChar(SkUnichar) override;
|
||
|
bool onMouse(SkScalar x, SkScalar y, sk_app::Window::InputState, uint32_t modifiers) override;
|
||
|
|
||
|
private:
|
||
|
SkString fPath;
|
||
|
sk_sp<skottie::Animation> fAnimation;
|
||
|
skottie::Animation::Builder::Stats fAnimationStats;
|
||
|
SkSize fWinSize = SkSize::MakeEmpty();
|
||
|
SkMSec fTimeBase = 0;
|
||
|
bool fShowAnimationInval = false,
|
||
|
fShowAnimationStats = false;
|
||
|
|
||
|
typedef Slide INHERITED;
|
||
|
};
|
||
|
|
||
|
#endif // SK_ENABLE_SKOTTIE
|
||
|
|
||
|
#endif // SkottieSlide_DEFINED
|