blob: 9499c6c9795098d207c39837b89782f226f83c7a [file] [log] [blame]
jvanverth9f372462016-04-06 06:08:59 -07001/*
2* Copyright 2016 Google Inc.
3*
4* Use of this source code is governed by a BSD-style license that can be
5* found in the LICENSE file.
6*/
7
jvanverth34524262016-05-04 13:49:13 -07008#ifndef Viewer_DEFINED
9#define Viewer_DEFINED
jvanverth9f372462016-04-06 06:08:59 -070010
jvanvertha8d0d6c2016-05-05 12:32:03 -070011#include "sk_app/Application.h"
brianosman622c8d52016-05-10 06:50:49 -070012#include "sk_app/CommandSet.h"
jvanvertha8d0d6c2016-05-05 12:32:03 -070013#include "sk_app/Window.h"
jvanverth9f372462016-04-06 06:08:59 -070014#include "gm.h"
jvanverthc265a922016-04-08 12:51:45 -070015#include "SkAnimTimer.h"
djsollen9207cae2016-06-10 07:50:00 -070016#include "SkTouchGesture.h"
jvanverth2bb3b6d2016-04-08 07:24:09 -070017#include "Slide.h"
jvanverth9f372462016-04-06 06:08:59 -070018
19class SkCanvas;
20
jvanverth34524262016-05-04 13:49:13 -070021class Viewer : public sk_app::Application {
jvanverth9f372462016-04-06 06:08:59 -070022public:
jvanverth34524262016-05-04 13:49:13 -070023 Viewer(int argc, char** argv, void* platformData);
24 ~Viewer() override;
jvanverth9f372462016-04-06 06:08:59 -070025
jvanverth9f372462016-04-06 06:08:59 -070026 void onPaint(SkCanvas* canvas);
liyuqian2edb0f42016-07-06 14:11:32 -070027 void onIdle() override;
jvanverth814e38d2016-06-06 08:48:47 -070028 bool onTouch(intptr_t owner, sk_app::Window::InputState state, float x, float y);
liyuqiane5a6cd92016-05-27 08:52:52 -070029 void onUIStateChanged(const SkString& stateName, const SkString& stateValue);
Brian Osman79086b92017-02-10 13:36:16 -050030 bool onKey(sk_app::Window::Key key, sk_app::Window::InputState state, uint32_t modifiers);
31 bool onChar(SkUnichar c, uint32_t modifiers);
jvanverth9f372462016-04-06 06:08:59 -070032
33private:
jvanverth2bb3b6d2016-04-08 07:24:09 -070034 void initSlides();
brianosman05de2162016-05-06 13:28:57 -070035 void updateTitle();
Brian Osmanf750fbc2017-02-08 10:47:28 -050036 void setColorMode(SkColorType, sk_sp<SkColorSpace>);
jvanverthc265a922016-04-08 12:51:45 -070037 void setupCurrentSlide(int previousSlide);
jvanverth2bb3b6d2016-04-08 07:24:09 -070038
liyuqiane5a6cd92016-05-27 08:52:52 -070039 void updateUIState();
40
Brian Osmanf750fbc2017-02-08 10:47:28 -050041 void drawSlide(SkCanvas* canvs);
jvanverth3d6ed3a2016-04-07 11:09:51 -070042 void drawStats(SkCanvas* canvas);
Brian Osman79086b92017-02-10 13:36:16 -050043 void drawImGui(SkCanvas* canvas);
jvanverth3d6ed3a2016-04-07 11:09:51 -070044
jvanverthc265a922016-04-08 12:51:45 -070045 void changeZoomLevel(float delta);
liyuqiand3cdbca2016-05-17 12:44:20 -070046 SkMatrix computeMatrix();
jvanverthc265a922016-04-08 12:51:45 -070047
jvanverth34524262016-05-04 13:49:13 -070048 sk_app::Window* fWindow;
jvanverth9f372462016-04-06 06:08:59 -070049
jvanverth3d6ed3a2016-04-07 11:09:51 -070050 static const int kMeasurementCount = 64; // should be power of 2 for fast mod
Brian Osman1df161a2017-02-09 12:10:20 -050051 double fPaintTimes[kMeasurementCount];
52 double fFlushTimes[kMeasurementCount];
53 double fAnimateTimes[kMeasurementCount];
jvanverth3d6ed3a2016-04-07 11:09:51 -070054 int fCurrentMeasurement;
55
jvanverthc265a922016-04-08 12:51:45 -070056 SkAnimTimer fAnimTimer;
jvanverth2bb3b6d2016-04-08 07:24:09 -070057 SkTArray<sk_sp<Slide>> fSlides;
58 int fCurrentSlide;
jvanverthc265a922016-04-08 12:51:45 -070059
60 bool fDisplayStats;
liyuqian2edb0f42016-07-06 14:11:32 -070061 bool fRefresh; // whether to continuously refresh for measuring render time
jvanverthc265a922016-04-08 12:51:45 -070062
Brian Osman79086b92017-02-10 13:36:16 -050063 sk_sp<SkImage> fImGuiFontImage;
64 bool fShowImGuiDebugWindow;
65 bool fShowImGuiTestWindow;
66
jvanverthaf236b52016-05-20 06:01:06 -070067 sk_app::Window::BackendType fBackendType;
68
Brian Osmanf750fbc2017-02-08 10:47:28 -050069 // Color properties for slide rendering
70 SkColorType fColorType;
71 sk_sp<SkColorSpace> fColorSpace;
72
jvanverthc265a922016-04-08 12:51:45 -070073 // transform data
jvanverthc265a922016-04-08 12:51:45 -070074 SkScalar fZoomCenterX;
75 SkScalar fZoomCenterY;
76 SkScalar fZoomLevel;
77 SkScalar fZoomScale;
78
brianosman622c8d52016-05-10 06:50:49 -070079 sk_app::CommandSet fCommands;
liyuqiand3cdbca2016-05-17 12:44:20 -070080
81 SkTouchGesture fGesture;
liyuqiane46e4f02016-05-20 07:32:19 -070082
83 // identity unless the window initially scales the content to fit the screen.
84 SkMatrix fDefaultMatrix;
85 SkMatrix fDefaultMatrixInv;
liyuqian1f508fd2016-06-07 06:57:40 -070086
87 Json::Value fAllSlideNames; // cache all slide names for fast updateUIState
jvanverth9f372462016-04-06 06:08:59 -070088};
89
90
91#endif