46656e298b
Bug: skia: Change-Id: I30fed2c0587f36aeccd5e366b823a8b044a371ea Reviewed-on: https://skia-review.googlesource.com/142164 Commit-Queue: Ruiqi Mao <ruiqimao@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
61 lines
1.3 KiB
C++
61 lines
1.3 KiB
C++
/*
|
|
* Copyright 2018 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef NIMASlide_DEFINED
|
|
#define NIMASlide_DEFINED
|
|
|
|
#include "Slide.h"
|
|
|
|
#include "SkCanvas.h"
|
|
#include "SkVertices.h"
|
|
#include <nima/Actor.hpp>
|
|
#include <nima/ActorImage.hpp>
|
|
#include <nima/Animation/ActorAnimationInstance.hpp>
|
|
#include <nima/Vec2D.hpp>
|
|
|
|
class NIMAActor;
|
|
class NIMAActorImage;
|
|
|
|
enum RenderFlags {
|
|
kImmediate_RenderFlag = 0x1,
|
|
kCache_RenderFlag = 0x2,
|
|
kBounds_RenderFlag = 0x4,
|
|
};
|
|
|
|
class NIMASlide : public Slide {
|
|
public:
|
|
NIMASlide(const SkString& name, const SkString& path);
|
|
~NIMASlide() override;
|
|
|
|
void draw(SkCanvas* canvas) override;
|
|
void load(SkScalar winWidth, SkScalar winHeight) override;
|
|
void unload() override;
|
|
bool animate(const SkAnimTimer& timer) override;
|
|
|
|
bool onChar(SkUnichar c) override;
|
|
bool onMouse(SkScalar x, SkScalar y, sk_app::Window::InputState state,
|
|
uint32_t modifiers) override;
|
|
|
|
private:
|
|
void resetActor();
|
|
|
|
void renderGUI();
|
|
|
|
private:
|
|
std::string fBasePath;
|
|
std::unique_ptr<NIMAActor> fActor;
|
|
|
|
bool fPlaying;
|
|
float fTime;
|
|
uint32_t fRenderFlags;
|
|
|
|
nima::ActorAnimationInstance* fAnimation;
|
|
int fAnimationIndex;
|
|
};
|
|
|
|
#endif
|