2018-01-12 16:24:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/android/SkAnimatedImage.h"
|
|
|
|
#include "include/codec/SkAndroidCodec.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkFont.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkPictureRecorder.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkScalar.h"
|
|
|
|
#include "include/core/SkString.h"
|
2019-07-11 20:32:53 +00:00
|
|
|
#include "tools/timer/TimeUtils.h"
|
2018-01-12 16:24:30 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "samplecode/Sample.h"
|
|
|
|
#include "tools/Resources.h"
|
2018-01-12 16:24:30 +00:00
|
|
|
|
|
|
|
static constexpr char kPauseKey = 'p';
|
|
|
|
static constexpr char kResetKey = 'r';
|
|
|
|
|
2018-08-08 15:36:17 +00:00
|
|
|
class SampleAnimatedImage : public Sample {
|
2019-07-17 13:08:11 +00:00
|
|
|
sk_sp<SkAnimatedImage> fImage;
|
|
|
|
sk_sp<SkDrawable> fDrawable;
|
|
|
|
SkScalar fYOffset = 0;
|
|
|
|
bool fRunning = false;
|
|
|
|
double fCurrentTime = 0.0;
|
|
|
|
double fLastWallTime = 0.0;
|
|
|
|
double fTimeToShowNextFrame = 0.0;
|
2018-01-12 16:24:30 +00:00
|
|
|
|
|
|
|
void onDrawBackground(SkCanvas* canvas) override {
|
2019-01-02 17:21:01 +00:00
|
|
|
SkFont font;
|
|
|
|
font.setSize(20);
|
2018-01-12 16:24:30 +00:00
|
|
|
|
|
|
|
SkString str = SkStringPrintf("Press '%c' to start/pause; '%c' to reset.",
|
|
|
|
kPauseKey, kResetKey);
|
|
|
|
const char* text = str.c_str();
|
|
|
|
SkRect bounds;
|
2019-05-07 19:38:46 +00:00
|
|
|
font.measureText(text, strlen(text), SkTextEncoding::kUTF8, &bounds);
|
2018-01-12 16:24:30 +00:00
|
|
|
fYOffset = bounds.height();
|
|
|
|
|
2019-05-07 19:38:46 +00:00
|
|
|
canvas->drawSimpleText(text, strlen(text), SkTextEncoding::kUTF8, 5, fYOffset, font, SkPaint());
|
2018-01-12 16:24:30 +00:00
|
|
|
fYOffset *= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
void onDrawContent(SkCanvas* canvas) override {
|
|
|
|
if (!fImage) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas->translate(0, fYOffset);
|
|
|
|
|
|
|
|
canvas->drawDrawable(fImage.get());
|
|
|
|
canvas->drawDrawable(fDrawable.get(), fImage->getBounds().width(), 0);
|
|
|
|
}
|
|
|
|
|
2019-07-11 20:32:53 +00:00
|
|
|
bool onAnimate(double nanos) override {
|
2018-01-12 16:24:30 +00:00
|
|
|
if (!fImage) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-30 00:35:55 +00:00
|
|
|
const double lastWallTime = fLastWallTime;
|
2019-07-11 20:32:53 +00:00
|
|
|
fLastWallTime = TimeUtils::NanosToMSec(nanos);
|
2018-01-30 00:35:55 +00:00
|
|
|
|
|
|
|
if (fRunning) {
|
|
|
|
fCurrentTime += fLastWallTime - lastWallTime;
|
|
|
|
if (fCurrentTime > fTimeToShowNextFrame) {
|
|
|
|
fTimeToShowNextFrame += fImage->decodeNextFrame();
|
|
|
|
if (fImage->isFinished()) {
|
|
|
|
fRunning = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-12 16:24:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void onOnceBeforeDraw() override {
|
|
|
|
sk_sp<SkData> file(GetResourceAsData("images/alphabetAnim.gif"));
|
|
|
|
std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(file));
|
|
|
|
if (!codec) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-14 19:46:51 +00:00
|
|
|
fImage = SkAnimatedImage::Make(SkAndroidCodec::MakeFromCodec(std::move(codec)));
|
2018-01-12 16:24:30 +00:00
|
|
|
if (!fImage) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-30 00:35:55 +00:00
|
|
|
fTimeToShowNextFrame = fImage->currentFrameDuration();
|
2018-01-12 16:24:30 +00:00
|
|
|
SkPictureRecorder recorder;
|
|
|
|
auto canvas = recorder.beginRecording(fImage->getBounds());
|
|
|
|
canvas->drawDrawable(fImage.get());
|
|
|
|
fDrawable = recorder.finishRecordingAsDrawable();
|
|
|
|
}
|
|
|
|
|
2019-07-03 14:55:44 +00:00
|
|
|
SkString name() override { return SkString("AnimatedImage"); }
|
2018-01-12 16:24:30 +00:00
|
|
|
|
2019-07-03 19:53:04 +00:00
|
|
|
bool onChar(SkUnichar uni) override {
|
|
|
|
if (fImage) {
|
2018-01-12 16:24:30 +00:00
|
|
|
switch (uni) {
|
|
|
|
case kPauseKey:
|
2018-01-30 00:35:55 +00:00
|
|
|
fRunning = !fRunning;
|
2020-06-11 21:55:07 +00:00
|
|
|
if (!fImage->isFinished()) {
|
2018-01-30 00:35:55 +00:00
|
|
|
return true;
|
2018-01-12 16:24:30 +00:00
|
|
|
}
|
2020-06-11 21:55:07 +00:00
|
|
|
[[fallthrough]];
|
2018-01-12 16:24:30 +00:00
|
|
|
case kResetKey:
|
|
|
|
fImage->reset();
|
2018-01-30 00:35:55 +00:00
|
|
|
fCurrentTime = fLastWallTime;
|
|
|
|
fTimeToShowNextFrame = fCurrentTime + fImage->currentFrameDuration();
|
2018-01-12 16:24:30 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-07-03 19:53:04 +00:00
|
|
|
return false;
|
2018-01-12 16:24:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-08 15:36:17 +00:00
|
|
|
DEF_SAMPLE( return new SampleAnimatedImage(); )
|