0933bc9b67
This reverts commitcca2300559
. Reason for revert: think I guessed wrong about g32 -- unreverting Original change's description: > Revert "resources: remove most uses of GetResourcePath()" > > This reverts commit5093a539de
. > > Reason for revert: google3 seems broken > > Original change's description: > > resources: remove most uses of GetResourcePath() > > > > Going forward, we will standardize on GetResourceAsData(), which will > > make it easier to run tests in environments without access to the > > filesystem. > > > > Also: GetResourceAsData() complains when a resource is missing. > > This is usually an error. > > > > Change-Id: Iaf70b71b0ca5ed8cd1a5538a60ef185ae8736188 > > Reviewed-on: https://skia-review.googlesource.com/82642 > > Reviewed-by: Hal Canary <halcanary@google.com> > > Commit-Queue: Hal Canary <halcanary@google.com> > > TBR=halcanary@google.com,scroggo@google.com > > Change-Id: Ic5a7c0167c995a672e6b06dc92abe00564432214 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://skia-review.googlesource.com/83001 > Reviewed-by: Mike Reed <reed@google.com> > Commit-Queue: Mike Reed <reed@google.com> TBR=halcanary@google.com,scroggo@google.com,reed@google.com Change-Id: I5a46e4de61186a8a5eb9cacd3275e24e311d5a07 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://skia-review.googlesource.com/82942 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
146 lines
3.6 KiB
C++
146 lines
3.6 KiB
C++
/*
|
|
* Copyright 2017 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "SampleCode.h"
|
|
#include "Resources.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkDOM.h"
|
|
#include "SkOSFile.h"
|
|
#include "SkOSPath.h"
|
|
#include "SkRect.h"
|
|
#include "SkStream.h"
|
|
#include "SkSVGDOM.h"
|
|
#include "SkView.h"
|
|
|
|
namespace {
|
|
|
|
class CowboyView : public SampleView {
|
|
public:
|
|
CowboyView()
|
|
: fLabel("SampleCowboy")
|
|
, fState(kZoomIn)
|
|
, fAnimationLoop(kAnimationIterations)
|
|
, fDelta(1) {}
|
|
~CowboyView() override = default;
|
|
|
|
protected:
|
|
static constexpr auto kAnimationIterations = 5;
|
|
|
|
enum State {
|
|
kZoomIn,
|
|
kScroll,
|
|
kZoomOut
|
|
};
|
|
|
|
void onOnceBeforeDraw() override {
|
|
constexpr char path[] = "Cowboy.svg";
|
|
auto data = GetResourceAsData(path);
|
|
if (!data) {
|
|
SkDebugf("file not found: \"%s\"\n", path);
|
|
return;
|
|
}
|
|
SkMemoryStream svgStream(std::move(data));
|
|
|
|
SkDOM xmlDom;
|
|
if (!xmlDom.build(svgStream)) {
|
|
SkDebugf("XML parsing failed: \"path\"\n", fPath.c_str());
|
|
return;
|
|
}
|
|
|
|
fDom = SkSVGDOM::MakeFromDOM(xmlDom);
|
|
if (fDom) {
|
|
fDom->setContainerSize(SkSize::Make(this->width(), this->height()));
|
|
}
|
|
}
|
|
|
|
void onDrawContent(SkCanvas* canvas) override {
|
|
if (fDom) {
|
|
canvas->setMatrix(SkMatrix::MakeScale(3));
|
|
canvas->clipRect(SkRect::MakeLTRB(0, 0, 400, 400));
|
|
switch (fState) {
|
|
case kZoomIn:
|
|
fDelta += 0.2f;
|
|
canvas->concat(SkMatrix::MakeScale(fDelta));
|
|
break;
|
|
case kScroll:
|
|
if (fAnimationLoop > kAnimationIterations/2) {
|
|
fDelta += 80.f;
|
|
} else {
|
|
fDelta -= 80.f;
|
|
}
|
|
canvas->concat(SkMatrix::MakeScale(fDelta));
|
|
canvas->translate(fDelta, 0);
|
|
break;
|
|
case kZoomOut:
|
|
fDelta += 0.2f;
|
|
canvas->concat(SkMatrix::MakeScale(fDelta));
|
|
break;
|
|
}
|
|
|
|
fDom->render(canvas);
|
|
}
|
|
}
|
|
|
|
void onSizeChange() override {
|
|
if (fDom) {
|
|
fDom->setContainerSize(SkSize::Make(this->width(), this->height()));
|
|
}
|
|
|
|
this->INHERITED::onSizeChange();
|
|
}
|
|
|
|
bool onQuery(SkEvent* evt) override {
|
|
if (SampleCode::TitleQ(*evt)) {
|
|
SampleCode::TitleR(evt, fLabel.c_str());
|
|
return true;
|
|
}
|
|
|
|
return this->INHERITED::onQuery(evt);
|
|
}
|
|
|
|
bool onAnimate(const SkAnimTimer& timer) override {
|
|
if (!fDom) {
|
|
return false;
|
|
}
|
|
|
|
--fAnimationLoop;
|
|
if (fAnimationLoop == 0) {
|
|
fAnimationLoop = kAnimationIterations;
|
|
switch (fState) {
|
|
case kZoomIn:
|
|
fState = kScroll;
|
|
fDelta = 0;
|
|
break;
|
|
case kScroll:
|
|
fState = kZoomOut;
|
|
fDelta = 2;
|
|
break;
|
|
case kZoomOut:
|
|
fState = kZoomIn;
|
|
fDelta = 1;
|
|
break;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
sk_sp<SkSVGDOM> fDom;
|
|
SkString fPath;
|
|
SkString fLabel;
|
|
State fState;
|
|
int fAnimationLoop;
|
|
SkScalar fDelta;
|
|
|
|
typedef SampleView INHERITED;
|
|
};
|
|
|
|
} // anonymous namespace
|
|
|
|
DEF_SAMPLE( return new CowboyView(); )
|
|
|