2013-09-19 15:32:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gm.h"
|
2016-04-08 20:35:14 +00:00
|
|
|
#include "SkAnimTimer.h"
|
2013-09-19 15:32:22 +00:00
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkPath.h"
|
|
|
|
|
|
|
|
// Reproduces https://code.google.com/p/chromium/issues/detail?id=279014
|
|
|
|
|
2013-09-19 17:21:39 +00:00
|
|
|
static const int kWidth = 640;
|
|
|
|
static const int kHeight = 480;
|
2013-09-19 15:32:22 +00:00
|
|
|
static const SkScalar kAngle = 0.305f;
|
2016-04-08 20:35:14 +00:00
|
|
|
static const int kMaxNumSteps = 140;
|
2013-09-19 15:32:22 +00:00
|
|
|
|
|
|
|
// Renders a string art shape.
|
|
|
|
// The particular shape rendered can be controlled by adjusting kAngle, from 0 to 1
|
|
|
|
|
|
|
|
class StringArtGM : public skiagm::GM {
|
|
|
|
public:
|
2016-04-08 20:35:14 +00:00
|
|
|
StringArtGM() : fNumSteps(kMaxNumSteps) {}
|
2013-09-19 15:32:22 +00:00
|
|
|
|
|
|
|
protected:
|
2014-04-30 13:20:45 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkString onShortName() override {
|
2013-09-19 15:32:22 +00:00
|
|
|
return SkString("stringart");
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkISize onISize() override {
|
2013-09-19 15:32:22 +00:00
|
|
|
return SkISize::Make(kWidth, kHeight);
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2013-09-19 15:32:22 +00:00
|
|
|
SkScalar angle = kAngle*SK_ScalarPI + SkScalarHalf(SK_ScalarPI);
|
2013-09-19 17:21:39 +00:00
|
|
|
SkScalar size = SkIntToScalar(SkMin32(kWidth, kHeight));
|
2013-09-19 15:32:22 +00:00
|
|
|
SkPoint center = SkPoint::Make(SkScalarHalf(kWidth), SkScalarHalf(kHeight));
|
|
|
|
SkScalar length = 5;
|
|
|
|
SkScalar step = angle;
|
|
|
|
|
|
|
|
SkPath path;
|
|
|
|
path.moveTo(center);
|
|
|
|
|
2016-04-08 20:35:14 +00:00
|
|
|
for (int i = 0; i < fNumSteps && length < (SkScalarHalf(size) - 10.f); ++i) {
|
2013-09-19 15:32:22 +00:00
|
|
|
SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
|
|
|
|
length*SkScalarSin(step) + center.fY);
|
|
|
|
path.lineTo(rp);
|
2015-05-12 17:37:34 +00:00
|
|
|
length += angle / SkScalarHalf(SK_ScalarPI);
|
2013-09-19 15:32:22 +00:00
|
|
|
step += angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
2015-07-29 12:27:47 +00:00
|
|
|
paint.setColor(sk_tool_utils::color_to_565(0xFF007700));
|
2013-09-19 15:32:22 +00:00
|
|
|
|
|
|
|
canvas->drawPath(path, paint);
|
|
|
|
}
|
|
|
|
|
2016-04-08 20:35:14 +00:00
|
|
|
bool onAnimate(const SkAnimTimer& timer) override {
|
|
|
|
static const SkScalar kDesiredDurationSecs = 3.0f;
|
|
|
|
|
|
|
|
// Make the animation ping-pong back and forth but start in the fully drawn state
|
|
|
|
SkScalar fraction = 1.0f - timer.scaled(2.0f/kDesiredDurationSecs, 2.0f);
|
|
|
|
if (fraction <= 0.0f) {
|
|
|
|
fraction = -fraction;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkASSERT(fraction >= 0.0f && fraction <= 1.0f);
|
|
|
|
|
|
|
|
fNumSteps = (int) (fraction * kMaxNumSteps);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-19 15:32:22 +00:00
|
|
|
private:
|
2016-04-08 20:35:14 +00:00
|
|
|
int fNumSteps;
|
|
|
|
|
2013-09-19 15:32:22 +00:00
|
|
|
typedef GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
DEF_GM( return new StringArtGM; )
|