| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 1 |  | 
 | 2 | /* | 
 | 3 |  * Copyright 2012 Google Inc. | 
 | 4 |  * | 
 | 5 |  * Use of this source code is governed by a BSD-style license that can be | 
 | 6 |  * found in the LICENSE file. | 
 | 7 |  */ | 
 | 8 |  | 
 | 9 |  | 
 | 10 | #ifndef SKDEBUGGER_H_ | 
 | 11 | #define SKDEBUGGER_H_ | 
 | 12 |  | 
 | 13 | #include "SkDebugCanvas.h" | 
 | 14 | #include "SkPicture.h" | 
| robertphillips@google.com | 8a1cdae | 2012-11-19 20:44:29 +0000 | [diff] [blame] | 15 | #include "SkTArray.h" | 
| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 16 |  | 
| borenet@google.com | 2d9dbd4 | 2013-03-12 13:07:40 +0000 | [diff] [blame] | 17 | class SkString; | 
 | 18 |  | 
| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 19 | class SkDebugger { | 
 | 20 | public: | 
 | 21 |     SkDebugger(); | 
 | 22 |  | 
 | 23 |     ~SkDebugger(); | 
 | 24 |  | 
 | 25 |     void setIndex(int index) { | 
 | 26 |         fIndex = index; | 
 | 27 |     } | 
 | 28 |     void draw(SkCanvas* canvas) { | 
 | 29 |         if (fIndex > 0) { | 
 | 30 |             fDebugCanvas->drawTo(canvas, fIndex); | 
 | 31 |         } | 
 | 32 |     } | 
 | 33 |  | 
 | 34 |     void step(); | 
 | 35 |     void stepBack(); | 
 | 36 |     void play(); | 
 | 37 |     void rewind(); | 
 | 38 |  | 
 | 39 |     bool isCommandVisible(int index) { | 
 | 40 |         return fDebugCanvas->getDrawCommandVisibilityAt(index); | 
 | 41 |     } | 
 | 42 |  | 
 | 43 |     void setCommandVisible(int index, bool isVisible) { | 
 | 44 |         fDebugCanvas->toggleCommand(index, isVisible); | 
 | 45 |     } | 
 | 46 |  | 
| robertphillips@google.com | 8a1cdae | 2012-11-19 20:44:29 +0000 | [diff] [blame] | 47 |     SkTArray<SkString>* getDrawCommandsAsStrings() { | 
| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 48 |         return fDebugCanvas->getDrawCommandsAsStrings(); | 
 | 49 |     } | 
 | 50 |  | 
| robertphillips@google.com | 8a1cdae | 2012-11-19 20:44:29 +0000 | [diff] [blame] | 51 |     const SkTDArray<SkDrawCommand*>& getDrawCommands() const { | 
 | 52 |         return fDebugCanvas->getDrawCommands(); | 
 | 53 |     } | 
 | 54 |  | 
| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 55 |     void highlightCurrentCommand(bool on) { | 
 | 56 |         fDebugCanvas->toggleFilter(on); | 
 | 57 |     } | 
 | 58 |  | 
 | 59 |     void resize(int width, int height) { | 
 | 60 |         fDebugCanvas->setBounds(width, height); | 
 | 61 |     } | 
 | 62 |  | 
 | 63 |     void loadPicture(SkPicture* picture); | 
 | 64 |  | 
| robertphillips@google.com | 25bc2f8 | 2013-01-22 18:03:56 +0000 | [diff] [blame] | 65 |     SkPicture* copyPicture(); | 
| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 66 |  | 
 | 67 |     int getSize() { | 
 | 68 |         return fDebugCanvas->getSize(); | 
 | 69 |     } | 
 | 70 |  | 
| bungeman@google.com | e8cc6e8 | 2013-01-17 16:30:56 +0000 | [diff] [blame] | 71 |     void setUserMatrix(SkMatrix userMatrix) { | 
| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 72 |         // Should this live in debugger instead? | 
| bungeman@google.com | e8cc6e8 | 2013-01-17 16:30:56 +0000 | [diff] [blame] | 73 |         fDebugCanvas->setUserMatrix(userMatrix); | 
| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 74 |     } | 
 | 75 |  | 
 | 76 |     int getCommandAtPoint(int x, int y, int index) { | 
 | 77 |         return fDebugCanvas->getCommandAtPoint(x, y, index); | 
 | 78 |     } | 
 | 79 |  | 
| chudy@google.com | 97cee97 | 2012-08-07 20:41:37 +0000 | [diff] [blame] | 80 |     SkTDArray<SkString*>* getCommandInfo(int index) { | 
| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 81 |         return fDebugCanvas->getCommandInfo(index); | 
 | 82 |     } | 
 | 83 |  | 
 | 84 |     const SkMatrix& getCurrentMatrix() { | 
 | 85 |         return fDebugCanvas->getCurrentMatrix(); | 
 | 86 |     } | 
 | 87 |  | 
 | 88 |     const SkIRect& getCurrentClip() { | 
 | 89 |         return fDebugCanvas->getCurrentClip(); | 
 | 90 |     } | 
 | 91 |  | 
 | 92 |     int pictureHeight() { | 
 | 93 |         return fPictureHeight; | 
 | 94 |     } | 
 | 95 |  | 
 | 96 |     int pictureWidth() { | 
 | 97 |         return fPictureWidth; | 
 | 98 |     } | 
 | 99 |  | 
 | 100 |     int index() { | 
 | 101 |         return fIndex; | 
 | 102 |     } | 
 | 103 |  | 
| robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 104 |     void setOverdrawViz(bool overDrawViz) { | 
 | 105 |         if (NULL != fDebugCanvas) { | 
 | 106 |             fDebugCanvas->setOverdrawViz(overDrawViz); | 
 | 107 |         } | 
 | 108 |     } | 
 | 109 |  | 
| skia.committer@gmail.com | 91274b9 | 2013-03-13 07:01:04 +0000 | [diff] [blame] | 110 |     void getOverviewText(const SkTDArray<double>* typeTimes, double totTime, | 
| robertphillips@google.com | e428f9b | 2013-03-12 15:33:40 +0000 | [diff] [blame] | 111 |                          SkString* overview, int numRuns); | 
| robertphillips@google.com | f4741c1 | 2013-02-06 20:13:54 +0000 | [diff] [blame] | 112 |  | 
| chudy@google.com | 607357f | 2012-08-07 16:12:23 +0000 | [diff] [blame] | 113 | private: | 
 | 114 |     SkDebugCanvas* fDebugCanvas; | 
 | 115 |     SkPicture* fPicture; | 
 | 116 |  | 
 | 117 |     int fPictureWidth; | 
 | 118 |     int fPictureHeight; | 
 | 119 |     int fIndex; | 
 | 120 | }; | 
 | 121 |  | 
 | 122 |  | 
 | 123 | #endif /* SKDEBUGGER_H_ */ |