blob: 7a2bb8de470a7e9385c5dfa5beb34b586217d4d7 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 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 */
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#ifndef SkPictureRecord_DEFINED
9#define SkPictureRecord_DEFINED
10
11#include "SkCanvas.h"
12#include "SkFlattenable.h"
13#include "SkPathHeap.h"
14#include "SkPicture.h"
15#include "SkPictureFlat.h"
16#include "SkTemplates.h"
17#include "SkWriter32.h"
18
rileya@google.com9f5898d2012-09-11 20:21:44 +000019class SkPictureStateTree;
20class SkBBoxHierarchy;
21
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +000022// These macros help with packing and unpacking a single byte value and
23// a 3 byte value into/out of a uint32_t
24#define MASK_24 0x00FFFFFF
25#define UNPACK_8_24(combined, small, large) \
26 small = (combined >> 24) & 0xFF; \
27 large = combined & MASK_24;
28#define PACK_8_24(small, large) ((small << 24) | large)
29
30
reed@android.com8a1c16f2008-12-17 15:59:43 +000031class SkPictureRecord : public SkCanvas {
32public:
reed@google.comd86e7ab2012-09-27 20:31:31 +000033 SkPictureRecord(uint32_t recordFlags, SkDevice*);
reed@android.com8a1c16f2008-12-17 15:59:43 +000034 virtual ~SkPictureRecord();
35
junov@chromium.org4e6dfa52012-07-16 14:04:59 +000036 virtual SkDevice* setDevice(SkDevice* device) SK_OVERRIDE;
37
reed@google.com2d4297c2011-10-06 13:14:12 +000038 virtual int save(SaveFlags) SK_OVERRIDE;
39 virtual int saveLayer(const SkRect* bounds, const SkPaint*, SaveFlags) SK_OVERRIDE;
40 virtual void restore() SK_OVERRIDE;
41 virtual bool translate(SkScalar dx, SkScalar dy) SK_OVERRIDE;
42 virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
43 virtual bool rotate(SkScalar degrees) SK_OVERRIDE;
44 virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
45 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
46 virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
reed@google.com071eef92011-10-12 11:52:53 +000047 virtual bool clipRect(const SkRect&, SkRegion::Op, bool) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000048 virtual bool clipRRect(const SkRRect&, SkRegion::Op, bool) SK_OVERRIDE;
reed@google.com071eef92011-10-12 11:52:53 +000049 virtual bool clipPath(const SkPath&, SkRegion::Op, bool) SK_OVERRIDE;
reed@google.com2d4297c2011-10-06 13:14:12 +000050 virtual bool clipRegion(const SkRegion& region, SkRegion::Op op) SK_OVERRIDE;
51 virtual void clear(SkColor) SK_OVERRIDE;
52 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000053 virtual void drawPoints(PointMode, size_t count, const SkPoint pts[],
reed@google.com2d4297c2011-10-06 13:14:12 +000054 const SkPaint&) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000055 virtual void drawOval(const SkRect&, const SkPaint&) SK_OVERRIDE;
56 virtual void drawRect(const SkRect&, const SkPaint&) SK_OVERRIDE;
57 virtual void drawRRect(const SkRRect&, const SkPaint&) SK_OVERRIDE;
reed@google.com2d4297c2011-10-06 13:14:12 +000058 virtual void drawPath(const SkPath& path, const SkPaint&) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000059 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top,
reed@google.com2d4297c2011-10-06 13:14:12 +000060 const SkPaint*) SK_OVERRIDE;
reed@google.com71121732012-09-18 15:14:33 +000061 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src,
62 const SkRect& dst, const SkPaint*) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000063 virtual void drawBitmapMatrix(const SkBitmap&, const SkMatrix&,
reed@google.com2d4297c2011-10-06 13:14:12 +000064 const SkPaint*) SK_OVERRIDE;
reed@google.comf0b5e112011-09-07 11:57:34 +000065 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
reed@google.com2d4297c2011-10-06 13:14:12 +000066 const SkRect& dst, const SkPaint*) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000067 virtual void drawSprite(const SkBitmap&, int left, int top,
reed@google.com2d4297c2011-10-06 13:14:12 +000068 const SkPaint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000069 virtual void drawText(const void* text, size_t byteLength, SkScalar x,
reed@google.com2d4297c2011-10-06 13:14:12 +000070 SkScalar y, const SkPaint&) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000071 virtual void drawPosText(const void* text, size_t byteLength,
reed@google.com2d4297c2011-10-06 13:14:12 +000072 const SkPoint pos[], const SkPaint&) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000073 virtual void drawPosTextH(const void* text, size_t byteLength,
reed@google.com2d4297c2011-10-06 13:14:12 +000074 const SkScalar xpos[], SkScalar constY, const SkPaint&) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000075 virtual void drawTextOnPath(const void* text, size_t byteLength,
76 const SkPath& path, const SkMatrix* matrix,
reed@google.com2d4297c2011-10-06 13:14:12 +000077 const SkPaint&) SK_OVERRIDE;
78 virtual void drawPicture(SkPicture& picture) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000079 virtual void drawVertices(VertexMode, int vertexCount,
80 const SkPoint vertices[], const SkPoint texs[],
81 const SkColor colors[], SkXfermode*,
82 const uint16_t indices[], int indexCount,
reed@google.com2d4297c2011-10-06 13:14:12 +000083 const SkPaint&) SK_OVERRIDE;
84 virtual void drawData(const void*, size_t) SK_OVERRIDE;
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000085 virtual bool isDrawingToLayer() const SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000086
junov@chromium.org3f5ecd62013-01-22 18:01:26 +000087 void addFontMetricsTopBottom(const SkPaint& paint, const SkFlatData&,
reed@google.com45954262012-12-07 17:14:40 +000088 SkScalar minY, SkScalar maxY);
vandebo@chromium.org74b46192012-01-28 01:45:11 +000089
reed@android.com8a1c16f2008-12-17 15:59:43 +000090 const SkTDArray<SkPicture* >& getPictureRefs() const {
91 return fPictureRefs;
92 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +000093
junov@chromium.org4866cc02012-06-01 21:23:07 +000094 void setFlags(uint32_t recordFlags) {
95 fRecordFlags = recordFlags;
96 }
reed@android.com8a1c16f2008-12-17 15:59:43 +000097
98 const SkWriter32& writeStream() const {
99 return fWriter;
100 }
101
reed@google.comd86e7ab2012-09-27 20:31:31 +0000102 void beginRecording();
junov@chromium.orga6c9e0e2012-07-12 17:47:34 +0000103 void endRecording();
reed@google.comd86e7ab2012-09-27 20:31:31 +0000104
reed@android.com8a1c16f2008-12-17 15:59:43 +0000105private:
junov@chromium.orge3dbedb2012-07-09 16:03:55 +0000106 void recordRestoreOffsetPlaceholder(SkRegion::Op);
107 void fillRestoreOffsetPlaceholdersForCurrentStackLevel(
108 uint32_t restoreOffset);
109
reed@google.comffacd3c2012-08-30 15:31:23 +0000110 SkTDArray<int32_t> fRestoreOffsetStack;
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000111 int fFirstSavedLayerIndex;
112 enum {
113 kNoSavedLayerIndex = -1
114 };
reed@android.com8a1c16f2008-12-17 15:59:43 +0000115
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000116 /*
117 * Write the 'drawType' operation and chunk size to the skp. 'size'
skia.committer@gmail.comce8343d2013-02-16 07:01:31 +0000118 * can potentially be increased if the chunk size needs its own storage
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000119 * location (i.e., it overflows 24 bits).
120 * Returns the start offset of the chunk. This is the location at which
121 * the opcode & size are stored.
skia.committer@gmail.comce8343d2013-02-16 07:01:31 +0000122 * TODO: since we are handing the size into here we could call reserve
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000123 * and then return a pointer to the memory storage. This could decrease
124 * allocation overhead but could lead to more wasted space (the tail
125 * end of blocks could go unused). Possibly add a second addDraw that
126 * operates in this manner.
127 */
128 uint32_t addDraw(DrawType drawType, uint32_t* size) {
129 uint32_t offset = fWriter.size();
130
reed@google.com97af1a62012-08-28 12:19:02 +0000131 this->predrawNotify();
132
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000133 #ifdef SK_DEBUG_TRACE
reed@android.com8a1c16f2008-12-17 15:59:43 +0000134 SkDebugf("add %s\n", DrawTypeToString(drawType));
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000135 #endif
136
137 SkASSERT(0 != *size);
138 SkASSERT(((uint8_t) drawType) == drawType);
139
140 if (0 != (*size & ~MASK_24) || *size == MASK_24) {
141 fWriter.writeInt(PACK_8_24(drawType, MASK_24));
142 *size += 1;
143 fWriter.writeInt(*size);
144 } else {
145 fWriter.writeInt(PACK_8_24(drawType, *size));
146 }
147
148 return offset;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000149 }
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000150
reed@android.com8a1c16f2008-12-17 15:59:43 +0000151 void addInt(int value) {
152 fWriter.writeInt(value);
153 }
154 void addScalar(SkScalar scalar) {
155 fWriter.writeScalar(scalar);
156 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000157
reed@android.com8a1c16f2008-12-17 15:59:43 +0000158 void addBitmap(const SkBitmap& bitmap);
159 void addMatrix(const SkMatrix& matrix);
160 void addMatrixPtr(const SkMatrix* matrix);
junov@chromium.orgf3b12232013-01-22 17:50:47 +0000161 const SkFlatData* addPaint(const SkPaint& paint) { return this->addPaintPtr(&paint); }
162 const SkFlatData* addPaintPtr(const SkPaint* paint);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000163 void addPath(const SkPath& path);
164 void addPicture(SkPicture& picture);
165 void addPoint(const SkPoint& point);
166 void addPoints(const SkPoint pts[], int count);
167 void addRect(const SkRect& rect);
168 void addRectPtr(const SkRect* rect);
reed@google.comf0b5e112011-09-07 11:57:34 +0000169 void addIRect(const SkIRect& rect);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000170 void addIRectPtr(const SkIRect* rect);
reed@google.com4ed0fb72012-12-12 20:48:18 +0000171 void addRRect(const SkRRect&);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000172 void addRegion(const SkRegion& region);
173 void addText(const void* text, size_t byteLength);
174
junov@chromium.org4866cc02012-06-01 21:23:07 +0000175 int find(const SkBitmap& bitmap);
176
reed@android.com8a1c16f2008-12-17 15:59:43 +0000177#ifdef SK_DEBUG_DUMP
178public:
179 void dumpMatrices();
180 void dumpPaints();
181#endif
182
183#ifdef SK_DEBUG_SIZE
184public:
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000185 size_t size() const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000186 int bitmaps(size_t* size) const;
187 int matrices(size_t* size) const;
188 int paints(size_t* size) const;
189 int paths(size_t* size) const;
190 int regions(size_t* size) const;
191 size_t streamlen() const;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000192
reed@android.com8a1c16f2008-12-17 15:59:43 +0000193 size_t fPointBytes, fRectBytes, fTextBytes;
194 int fPointWrites, fRectWrites, fTextWrites;
195#endif
196
197#ifdef SK_DEBUG_VALIDATE
198public:
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000199 void validate(uint32_t initialOffset, uint32_t size) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000200private:
201 void validateBitmaps() const;
202 void validateMatrices() const;
203 void validatePaints() const;
204 void validatePaths() const;
205 void validateRegions() const;
206#else
207public:
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000208 void validate(uint32_t initialOffset, uint32_t size) const {
209 SkASSERT(fWriter.size() == initialOffset + size);
210 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000211#endif
212
rileya@google.com9f5898d2012-09-11 20:21:44 +0000213protected:
214
215 // These are set to NULL in our constructor, but may be changed by
216 // subclasses, in which case they will be SkSafeUnref'd in our destructor.
217 SkBBoxHierarchy* fBoundingHierarchy;
218 SkPictureStateTree* fStateTree;
219
robertphillips@google.com801cee12012-10-19 19:06:11 +0000220 // Allocated in the constructor and managed by this class.
djsollen@google.comc9ab9872012-08-29 18:52:07 +0000221 SkBitmapHeap* fBitmapHeap;
robertphillips@google.com801cee12012-10-19 19:06:11 +0000222
223private:
djsollen@google.com21830d92012-08-07 19:49:41 +0000224 SkChunkFlatController fFlattenableHeap;
junov@chromium.org4866cc02012-06-01 21:23:07 +0000225
djsollen@google.comd2700ee2012-05-30 16:54:13 +0000226 SkMatrixDictionary fMatrices;
227 SkPaintDictionary fPaints;
228 SkRegionDictionary fRegions;
229
reed@android.com8a1c16f2008-12-17 15:59:43 +0000230 SkPathHeap* fPathHeap; // reference counted
231 SkWriter32 fWriter;
232
reed@android.com09b84a02009-06-26 20:22:26 +0000233 // we ref each item in these arrays
reed@android.com8a1c16f2008-12-17 15:59:43 +0000234 SkTDArray<SkPicture*> fPictureRefs;
235
reed@android.comae814c82009-02-13 14:56:09 +0000236 uint32_t fRecordFlags;
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000237 int fInitialSaveCount;
reed@android.comae814c82009-02-13 14:56:09 +0000238
reed@android.com8a1c16f2008-12-17 15:59:43 +0000239 friend class SkPicturePlayback;
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000240 friend class SkPictureTester; // for unit testing
reed@android.com8a1c16f2008-12-17 15:59:43 +0000241
242 typedef SkCanvas INHERITED;
243};
244
245#endif