2015-06-24 17:29:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015 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 "SkAnimTimer.h"
|
|
|
|
#include "SkView.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkDrawable.h"
|
|
|
|
#include "SkPath.h"
|
|
|
|
#include "SkRandom.h"
|
|
|
|
#include "SkRSXform.h"
|
|
|
|
#include "SkSurface.h"
|
|
|
|
|
2015-08-06 12:14:11 +00:00
|
|
|
typedef void (*DrawAtlasProc)(SkCanvas*, SkImage*, const SkRSXform[], const SkRect[],
|
|
|
|
const SkColor[], int, const SkRect*, const SkPaint*);
|
|
|
|
|
|
|
|
static void draw_atlas(SkCanvas* canvas, SkImage* atlas, const SkRSXform xform[],
|
|
|
|
const SkRect tex[], const SkColor colors[], int count, const SkRect* cull,
|
|
|
|
const SkPaint* paint) {
|
|
|
|
canvas->drawAtlas(atlas, xform, tex, colors, count, SkXfermode::kModulate_Mode, cull, paint);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_atlas_sim(SkCanvas* canvas, SkImage* atlas, const SkRSXform xform[],
|
|
|
|
const SkRect tex[], const SkColor colors[], int count, const SkRect* cull,
|
|
|
|
const SkPaint* paint) {
|
|
|
|
for (int i = 0; i < count; ++i) {
|
|
|
|
SkMatrix matrix;
|
|
|
|
matrix.setRSXform(xform[i]);
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2015-08-06 12:14:11 +00:00
|
|
|
canvas->save();
|
|
|
|
canvas->concat(matrix);
|
2015-08-06 17:02:53 +00:00
|
|
|
canvas->drawImageRect(atlas, tex[i], tex[i].makeOffset(-tex[i].x(), -tex[i].y()), paint,
|
2015-08-06 13:51:52 +00:00
|
|
|
SkCanvas::kFast_SrcRectConstraint);
|
2015-08-06 12:14:11 +00:00
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-17 17:51:11 +00:00
|
|
|
static sk_sp<SkImage> make_atlas(int atlasSize, int cellSize) {
|
2015-06-24 17:29:17 +00:00
|
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(atlasSize, atlasSize);
|
2016-03-24 01:59:25 +00:00
|
|
|
auto surface(SkSurface::MakeRaster(info));
|
2015-06-24 17:29:17 +00:00
|
|
|
SkCanvas* canvas = surface->getCanvas();
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
SkRandom rand;
|
|
|
|
|
|
|
|
const SkScalar half = cellSize * SK_ScalarHalf;
|
|
|
|
const char* s = "01234567890!@#$%^&*=+<>?abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
|
|
paint.setTextSize(28);
|
|
|
|
paint.setTextAlign(SkPaint::kCenter_Align);
|
|
|
|
int i = 0;
|
|
|
|
for (int y = 0; y < atlasSize; y += cellSize) {
|
|
|
|
for (int x = 0; x < atlasSize; x += cellSize) {
|
|
|
|
paint.setColor(rand.nextU());
|
|
|
|
paint.setAlpha(0xFF);
|
|
|
|
int index = i % strlen(s);
|
|
|
|
canvas->drawText(&s[index], 1, x + half, y + half + half/2, paint);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
2016-03-17 17:51:11 +00:00
|
|
|
return surface->makeImageSnapshot();
|
2015-06-24 17:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class DrawAtlasDrawable : public SkDrawable {
|
|
|
|
enum {
|
|
|
|
kMaxScale = 2,
|
|
|
|
kCellSize = 32,
|
|
|
|
kAtlasSize = 512,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Rec {
|
|
|
|
SkPoint fCenter;
|
|
|
|
SkVector fVelocity;
|
|
|
|
SkScalar fScale;
|
|
|
|
SkScalar fDScale;
|
|
|
|
SkScalar fRadian;
|
|
|
|
SkScalar fDRadian;
|
|
|
|
SkScalar fAlpha;
|
|
|
|
SkScalar fDAlpha;
|
|
|
|
|
|
|
|
void advance(const SkRect& bounds) {
|
|
|
|
fCenter += fVelocity;
|
|
|
|
if (fCenter.fX > bounds.right()) {
|
|
|
|
SkASSERT(fVelocity.fX > 0);
|
|
|
|
fVelocity.fX = -fVelocity.fX;
|
|
|
|
} else if (fCenter.fX < bounds.left()) {
|
|
|
|
SkASSERT(fVelocity.fX < 0);
|
|
|
|
fVelocity.fX = -fVelocity.fX;
|
|
|
|
}
|
|
|
|
if (fCenter.fY > bounds.bottom()) {
|
2015-06-25 23:25:25 +00:00
|
|
|
if (fVelocity.fY > 0) {
|
|
|
|
fVelocity.fY = -fVelocity.fY;
|
|
|
|
}
|
2015-06-24 17:29:17 +00:00
|
|
|
} else if (fCenter.fY < bounds.top()) {
|
2015-06-25 23:25:25 +00:00
|
|
|
if (fVelocity.fY < 0) {
|
|
|
|
fVelocity.fY = -fVelocity.fY;
|
|
|
|
}
|
2015-06-24 17:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fScale += fDScale;
|
|
|
|
if (fScale > 2 || fScale < SK_Scalar1/2) {
|
|
|
|
fDScale = -fDScale;
|
|
|
|
}
|
|
|
|
|
|
|
|
fRadian += fDRadian;
|
|
|
|
fRadian = SkScalarMod(fRadian, 2 * SK_ScalarPI);
|
|
|
|
|
|
|
|
fAlpha += fDAlpha;
|
|
|
|
if (fAlpha > 1) {
|
|
|
|
fAlpha = 1;
|
|
|
|
fDAlpha = -fDAlpha;
|
|
|
|
} else if (fAlpha < 0) {
|
|
|
|
fAlpha = 0;
|
|
|
|
fDAlpha = -fDAlpha;
|
|
|
|
}
|
|
|
|
}
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2015-06-24 17:29:17 +00:00
|
|
|
SkRSXform asRSXform() const {
|
2015-07-30 12:46:05 +00:00
|
|
|
return SkRSXform::MakeFromRadians(fScale, fRadian, fCenter.x(), fCenter.y(),
|
|
|
|
SkScalarHalf(kCellSize), SkScalarHalf(kCellSize));
|
2015-06-24 17:29:17 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-08-06 12:14:11 +00:00
|
|
|
DrawAtlasProc fProc;
|
|
|
|
|
2015-06-24 17:29:17 +00:00
|
|
|
enum {
|
|
|
|
N = 256,
|
|
|
|
};
|
|
|
|
|
2016-03-17 17:51:11 +00:00
|
|
|
sk_sp<SkImage> fAtlas;
|
2015-06-24 17:29:17 +00:00
|
|
|
Rec fRec[N];
|
|
|
|
SkRect fTex[N];
|
|
|
|
SkRect fBounds;
|
|
|
|
bool fUseColors;
|
|
|
|
|
|
|
|
public:
|
2015-08-06 12:14:11 +00:00
|
|
|
DrawAtlasDrawable(DrawAtlasProc proc, const SkRect& r)
|
|
|
|
: fProc(proc), fBounds(r), fUseColors(false)
|
|
|
|
{
|
2015-06-24 17:29:17 +00:00
|
|
|
SkRandom rand;
|
2016-03-17 17:51:11 +00:00
|
|
|
fAtlas = make_atlas(kAtlasSize, kCellSize);
|
2015-06-24 17:29:17 +00:00
|
|
|
const SkScalar kMaxSpeed = 5;
|
|
|
|
const SkScalar cell = SkIntToScalar(kCellSize);
|
|
|
|
int i = 0;
|
|
|
|
for (int y = 0; y < kAtlasSize; y += kCellSize) {
|
|
|
|
for (int x = 0; x < kAtlasSize; x += kCellSize) {
|
|
|
|
const SkScalar sx = SkIntToScalar(x);
|
|
|
|
const SkScalar sy = SkIntToScalar(y);
|
|
|
|
fTex[i].setXYWH(sx, sy, cell, cell);
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2015-06-24 17:29:17 +00:00
|
|
|
fRec[i].fCenter.set(sx + cell/2, sy + 3*cell/4);
|
|
|
|
fRec[i].fVelocity.fX = rand.nextSScalar1() * kMaxSpeed;
|
|
|
|
fRec[i].fVelocity.fY = rand.nextSScalar1() * kMaxSpeed;
|
|
|
|
fRec[i].fScale = 1;
|
2015-07-30 12:46:05 +00:00
|
|
|
fRec[i].fDScale = rand.nextSScalar1() / 16;
|
2015-06-24 17:29:17 +00:00
|
|
|
fRec[i].fRadian = 0;
|
|
|
|
fRec[i].fDRadian = rand.nextSScalar1() / 8;
|
|
|
|
fRec[i].fAlpha = rand.nextUScalar1();
|
|
|
|
fRec[i].fDAlpha = rand.nextSScalar1() / 10;
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void toggleUseColors() {
|
|
|
|
fUseColors = !fUseColors;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void onDraw(SkCanvas* canvas) override {
|
|
|
|
SkRSXform xform[N];
|
|
|
|
SkColor colors[N];
|
|
|
|
|
|
|
|
for (int i = 0; i < N; ++i) {
|
|
|
|
fRec[i].advance(fBounds);
|
|
|
|
xform[i] = fRec[i].asRSXform();
|
|
|
|
if (fUseColors) {
|
|
|
|
colors[i] = SkColorSetARGB((int)(fRec[i].fAlpha * 0xFF), 0xFF, 0xFF, 0xFF);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setFilterQuality(kLow_SkFilterQuality);
|
|
|
|
|
|
|
|
const SkRect cull = this->getBounds();
|
2015-08-27 14:41:13 +00:00
|
|
|
const SkColor* colorsPtr = fUseColors ? colors : nullptr;
|
2016-03-17 17:51:11 +00:00
|
|
|
fProc(canvas, fAtlas.get(), xform, fTex, colorsPtr, N, &cull, &paint);
|
2015-06-24 17:29:17 +00:00
|
|
|
}
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2015-06-24 17:29:17 +00:00
|
|
|
SkRect onGetBounds() override {
|
|
|
|
const SkScalar border = kMaxScale * kCellSize;
|
|
|
|
SkRect r = fBounds;
|
|
|
|
r.outset(border, border);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef SkDrawable INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DrawAtlasView : public SampleView {
|
2015-08-06 12:14:11 +00:00
|
|
|
const char* fName;
|
|
|
|
DrawAtlasDrawable* fDrawable;
|
2015-06-24 17:29:17 +00:00
|
|
|
|
|
|
|
public:
|
2015-08-06 12:14:11 +00:00
|
|
|
DrawAtlasView(const char name[], DrawAtlasProc proc) : fName(name) {
|
|
|
|
fDrawable = new DrawAtlasDrawable(proc, SkRect::MakeWH(640, 480));
|
2015-06-24 17:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~DrawAtlasView() override {
|
|
|
|
fDrawable->unref();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool onQuery(SkEvent* evt) override {
|
|
|
|
if (SampleCode::TitleQ(*evt)) {
|
2015-08-06 12:14:11 +00:00
|
|
|
SampleCode::TitleR(evt, fName);
|
2015-06-24 17:29:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
SkUnichar uni;
|
|
|
|
if (SampleCode::CharQ(*evt, &uni)) {
|
|
|
|
switch (uni) {
|
2015-08-27 14:41:13 +00:00
|
|
|
case 'C': fDrawable->toggleUseColors(); this->inval(nullptr); return true;
|
2015-06-24 17:29:17 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this->INHERITED::onQuery(evt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void onDrawContent(SkCanvas* canvas) override {
|
|
|
|
canvas->drawDrawable(fDrawable);
|
|
|
|
}
|
|
|
|
|
2016-06-16 16:52:35 +00:00
|
|
|
bool onAnimate(const SkAnimTimer&) override {
|
|
|
|
return true;
|
|
|
|
}
|
2015-06-24 17:29:17 +00:00
|
|
|
#if 0
|
|
|
|
// TODO: switch over to use this for our animation
|
|
|
|
bool onAnimate(const SkAnimTimer& timer) override {
|
|
|
|
SkScalar angle = SkDoubleToScalar(fmod(timer.secs() * 360 / 24, 360));
|
|
|
|
fAnimatingDrawable->setSweep(angle);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef SampleView INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-08-06 12:14:11 +00:00
|
|
|
DEF_SAMPLE( return new DrawAtlasView("DrawAtlas", draw_atlas); )
|
|
|
|
DEF_SAMPLE( return new DrawAtlasView("DrawAtlasSim", draw_atlas_sim); )
|