blob: f4847e5c79becf95f0e208436610d6a72c06c00f [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>);
Jim Van Verth6f449692017-02-14 15:16:46 -050037 void setStartupSlide();
jvanverthc265a922016-04-08 12:51:45 -070038 void setupCurrentSlide(int previousSlide);
Jim Van Verth6f449692017-02-14 15:16:46 -050039 void listNames();
jvanverth2bb3b6d2016-04-08 07:24:09 -070040
liyuqiane5a6cd92016-05-27 08:52:52 -070041 void updateUIState();
42
Brian Osmanf750fbc2017-02-08 10:47:28 -050043 void drawSlide(SkCanvas* canvs);
jvanverth3d6ed3a2016-04-07 11:09:51 -070044 void drawStats(SkCanvas* canvas);
Brian Osman79086b92017-02-10 13:36:16 -050045 void drawImGui(SkCanvas* canvas);
jvanverth3d6ed3a2016-04-07 11:09:51 -070046
jvanverthc265a922016-04-08 12:51:45 -070047 void changeZoomLevel(float delta);
liyuqiand3cdbca2016-05-17 12:44:20 -070048 SkMatrix computeMatrix();
jvanverthc265a922016-04-08 12:51:45 -070049
jvanverth34524262016-05-04 13:49:13 -070050 sk_app::Window* fWindow;
jvanverth9f372462016-04-06 06:08:59 -070051
jvanverth3d6ed3a2016-04-07 11:09:51 -070052 static const int kMeasurementCount = 64; // should be power of 2 for fast mod
Brian Osman1df161a2017-02-09 12:10:20 -050053 double fPaintTimes[kMeasurementCount];
54 double fFlushTimes[kMeasurementCount];
55 double fAnimateTimes[kMeasurementCount];
jvanverth3d6ed3a2016-04-07 11:09:51 -070056 int fCurrentMeasurement;
57
jvanverthc265a922016-04-08 12:51:45 -070058 SkAnimTimer fAnimTimer;
jvanverth2bb3b6d2016-04-08 07:24:09 -070059 SkTArray<sk_sp<Slide>> fSlides;
60 int fCurrentSlide;
Jim Van Verth6f449692017-02-14 15:16:46 -050061 bool fSetupFirstFrame;
jvanverthc265a922016-04-08 12:51:45 -070062
63 bool fDisplayStats;
liyuqian2edb0f42016-07-06 14:11:32 -070064 bool fRefresh; // whether to continuously refresh for measuring render time
jvanverthc265a922016-04-08 12:51:45 -070065
Brian Osmanf6877092017-02-13 09:39:57 -050066 SkPaint fImGuiFontPaint;
Brian Osman79086b92017-02-10 13:36:16 -050067 bool fShowImGuiDebugWindow;
68 bool fShowImGuiTestWindow;
69
Brian Osmanf6877092017-02-13 09:39:57 -050070 bool fShowZoomWindow;
71 sk_sp<SkImage> fLastImage;
72
jvanverthaf236b52016-05-20 06:01:06 -070073 sk_app::Window::BackendType fBackendType;
74
Brian Osmanf750fbc2017-02-08 10:47:28 -050075 // Color properties for slide rendering
76 SkColorType fColorType;
77 sk_sp<SkColorSpace> fColorSpace;
78
jvanverthc265a922016-04-08 12:51:45 -070079 // transform data
jvanverthc265a922016-04-08 12:51:45 -070080 SkScalar fZoomCenterX;
81 SkScalar fZoomCenterY;
82 SkScalar fZoomLevel;
83 SkScalar fZoomScale;
84
brianosman622c8d52016-05-10 06:50:49 -070085 sk_app::CommandSet fCommands;
liyuqiand3cdbca2016-05-17 12:44:20 -070086
87 SkTouchGesture fGesture;
liyuqiane46e4f02016-05-20 07:32:19 -070088
89 // identity unless the window initially scales the content to fit the screen.
90 SkMatrix fDefaultMatrix;
91 SkMatrix fDefaultMatrixInv;
liyuqian1f508fd2016-06-07 06:57:40 -070092
93 Json::Value fAllSlideNames; // cache all slide names for fast updateUIState
jvanverth9f372462016-04-06 06:08:59 -070094};
95
96
97#endif