forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage_iterator.h
428 lines (357 loc) · 11.1 KB
/
image_iterator.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
// Aseprite Document Library
// Copyright (c) 2001-2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef DOC_IMAGE_ITERATOR_H_INCLUDED
#define DOC_IMAGE_ITERATOR_H_INCLUDED
#pragma once
#include "doc/color.h"
#include "doc/primitives_fast.h"
#include "gfx/point.h"
#include "gfx/rect.h"
#include <cstdlib>
#include <iterator>
#include <iostream>
namespace doc {
class Image;
template<typename ImageTraits,
typename PointerType,
typename ReferenceType>
class ImageIteratorT : public std::iterator<std::forward_iterator_tag,
typename ImageTraits::pixel_t,
ptrdiff_t,
PointerType,
ReferenceType> {
public:
// GCC 4.6 needs these re-definitions here.
typedef ptrdiff_t difference_type;
typedef PointerType pointer;
typedef ReferenceType reference;
ImageIteratorT() : m_ptr(NULL) {
}
ImageIteratorT(const ImageIteratorT& other) :
m_image(other.m_image),
m_ptr(other.m_ptr),
m_x(other.m_x),
m_y(other.m_y),
m_xbegin(other.m_xbegin),
m_xend(other.m_xend)
{
}
ImageIteratorT(const Image* image, const gfx::Rect& bounds, int x, int y) :
m_image(const_cast<Image*>(image)),
m_ptr(get_pixel_address_fast<ImageTraits>(image, x, y)),
m_x(x),
m_y(y),
m_xbegin(bounds.x),
m_xend(bounds.x + bounds.w)
{
ASSERT(bounds.contains(gfx::Point(x, y)));
ASSERT(image->bounds().contains(bounds));
}
ImageIteratorT& operator=(const ImageIteratorT& other) {
m_image = other.m_image;
m_ptr = other.m_ptr;
m_x = other.m_x;
m_y = other.m_y;
m_xbegin = other.m_xbegin;
m_xend = other.m_xend;
return *this;
}
bool operator==(const ImageIteratorT& other) const {
if (m_ptr == other.m_ptr) {
ASSERT(m_x == other.m_x && m_y == other.m_y);
}
else {
ASSERT(m_x != other.m_x || m_y != other.m_y);
}
return m_ptr == other.m_ptr;
}
bool operator!=(const ImageIteratorT& other) const {
if (m_ptr != other.m_ptr) {
ASSERT(m_x != other.m_x || m_y != other.m_y);
}
else {
ASSERT(m_x == other.m_x && m_y == other.m_y);
}
return m_ptr != other.m_ptr;
}
bool operator<(const ImageIteratorT& other) const { return m_ptr < other.m_ptr; }
bool operator>(const ImageIteratorT& other) const { return m_ptr > other.m_ptr; }
bool operator<=(const ImageIteratorT& other) const { return m_ptr <= other.m_ptr; }
bool operator>=(const ImageIteratorT& other) const { return m_ptr >= other.m_ptr; }
ImageIteratorT& operator++() {
ASSERT(m_image->bounds().contains(gfx::Point(m_x, m_y)));
++m_ptr;
++m_x;
if (m_x == m_xend) {
m_x = m_xbegin;
++m_y;
if (m_y < m_image->height())
m_ptr = get_pixel_address_fast<ImageTraits>(m_image, m_x, m_y);
}
return *this;
}
ImageIteratorT& operator+=(int diff) {
while (diff-- > 0)
operator++();
return *this;
}
ImageIteratorT operator++(int) {
ImageIteratorT tmp(*this);
operator++();
return tmp;
}
reference operator*() { return *m_ptr; }
int x() const { return m_x; }
int y() const { return m_y; }
private:
Image* m_image;
pointer m_ptr;
int m_x, m_y;
int m_xbegin;
int m_xend;
};
template<typename ImageTraits>
class ImageIterator : public ImageIteratorT<ImageTraits,
typename ImageTraits::pixel_t *,
typename ImageTraits::pixel_t&> {
public:
// GCC 4.6 needs these re-definitions here.
typedef typename ImageTraits::pixel_t* pointer;
typedef typename ImageTraits::pixel_t& reference;
ImageIterator() {
}
ImageIterator(const Image* image, const gfx::Rect& bounds, int x, int y) :
ImageIteratorT<ImageTraits,
pointer,
reference>(image, bounds, x, y) {
}
};
template<typename ImageTraits>
class ImageConstIterator : public ImageIteratorT<ImageTraits,
typename ImageTraits::pixel_t const *,
typename ImageTraits::pixel_t const &> {
public:
// GCC 4.6 needs these re-definitions here.
typedef typename ImageTraits::pixel_t const* pointer;
typedef typename ImageTraits::pixel_t const& reference;
ImageConstIterator() {
}
ImageConstIterator(const Image* image, const gfx::Rect& bounds, int x, int y) :
ImageIteratorT<ImageTraits,
pointer,
reference>(image, bounds, x, y) {
}
};
//////////////////////////////////////////////////////////////////////
// Iterator for BitmapTraits
class BitPixelAccess {
public:
BitPixelAccess() :
m_ptr(NULL),
m_bit(0) {
}
void reset(BitmapTraits::address_t ptr, int bit) {
m_ptr = ptr;
m_bit = bit;
}
void reset(BitmapTraits::pixel_t const* ptr, int bit) {
m_ptr = const_cast<BitmapTraits::address_t>(ptr);
m_bit = bit;
}
operator color_t() const {
return (*m_ptr & m_bit) ? 1: 0;
}
BitPixelAccess& operator=(color_t value) {
if (value)
*m_ptr |= m_bit;
else
*m_ptr &= ~m_bit;
return *this;
}
// It doesn't copy the BitPixelAccess, it must copy the bit from
// "other" to "this".
BitPixelAccess& operator=(const BitPixelAccess& other) {
return this->operator=((color_t)other);
}
bool operator==(int b) const {
return (color_t(*this) == color_t(b));
}
bool operator==(color_t b) const {
return (color_t(*this) == b);
}
bool operator==(const BitPixelAccess& b) const {
return (color_t(*this) == color_t(b));
}
bool operator!=(int b) const {
return (color_t(*this) != color_t(b));
}
bool operator!=(color_t b) const {
return (color_t(*this) != b);
}
bool operator!=(const BitPixelAccess& b) const {
return (color_t(*this) != color_t(b));
}
private:
// Non-copyable by copy constructor.
BitPixelAccess(const BitPixelAccess& other);
BitmapTraits::address_t m_ptr;
int m_bit;
};
inline bool operator==(int a, const BitPixelAccess& b) {
return (color_t(a) == color_t(b));
}
inline bool operator==(color_t a, const BitPixelAccess& b) {
return (a == color_t(b));
}
inline bool operator!=(int a, const BitPixelAccess& b) {
return (color_t(a) != color_t(b));
}
inline bool operator!=(color_t a, const BitPixelAccess& b) {
return (a != color_t(b));
}
template<typename PointerType,
typename ReferenceType>
class ImageIteratorT<BitmapTraits, PointerType, ReferenceType>
: public std::iterator<std::forward_iterator_tag,
BitmapTraits::pixel_t,
ptrdiff_t,
PointerType,
ReferenceType> {
public:
// GCC 4.6 needs these re-definitions here.
typedef ptrdiff_t difference_type;
typedef PointerType pointer;
typedef ReferenceType reference;
enum { pixels_per_byte = BitmapTraits::pixels_per_byte };
ImageIteratorT() : m_ptr(NULL) {
}
ImageIteratorT(const ImageIteratorT& other) :
m_image(other.m_image),
m_ptr(other.m_ptr),
m_x(other.m_x),
m_y(other.m_y),
m_subPixel(other.m_subPixel),
m_xbegin(other.m_xbegin),
m_xend(other.m_xend)
{
}
ImageIteratorT(const Image* image, const gfx::Rect& bounds, int x, int y) :
m_image(const_cast<Image*>(image)),
m_ptr(get_pixel_address_fast<BitmapTraits>(image, x, y)),
m_x(x),
m_y(y),
m_subPixel(x % 8),
m_xbegin(bounds.x),
m_xend(bounds.x + bounds.w)
{
ASSERT(bounds.contains(gfx::Point(x, y)));
}
ImageIteratorT& operator=(const ImageIteratorT& other) {
m_image = other.m_image;
m_ptr = other.m_ptr;
m_x = other.m_x;
m_y = other.m_y;
m_subPixel = other.m_subPixel;
m_xbegin = other.m_xbegin;
m_xend = other.m_xend;
return *this;
}
bool operator==(const ImageIteratorT& other) const {
if (m_ptr == other.m_ptr &&
m_subPixel == other.m_subPixel) {
ASSERT(m_x == other.m_x && m_y == other.m_y);
}
else {
ASSERT(m_x != other.m_x || m_y != other.m_y);
}
return m_ptr == other.m_ptr;
}
bool operator!=(const ImageIteratorT& other) const {
if (m_ptr != other.m_ptr ||
m_subPixel != other.m_subPixel) {
ASSERT(m_x != other.m_x || m_y != other.m_y);
}
else {
ASSERT(m_x == other.m_x && m_y == other.m_y);
}
return m_ptr != other.m_ptr;
}
ImageIteratorT& operator++() {
ASSERT(m_image->bounds().contains(gfx::Point(m_x, m_y)));
++m_x;
++m_subPixel;
if (m_x == m_xend) {
m_x = m_xbegin;
m_subPixel = m_x % 8;
++m_y;
if (m_y < m_image->height())
m_ptr = get_pixel_address_fast<BitmapTraits>(m_image, m_x, m_y);
else
++m_ptr;
}
else if (m_subPixel == 8) {
m_subPixel = 0;
++m_ptr;
}
return *this;
}
ImageIteratorT& operator+=(int diff) {
while (diff-- > 0)
operator++();
return *this;
}
ImageIteratorT operator++(int) {
ImageIteratorT tmp(*this);
operator++();
return tmp;
}
reference operator*() const {
m_access.reset(m_ptr, 1 << m_subPixel);
return m_access;
}
reference operator*() {
m_access.reset(m_ptr, 1 << m_subPixel);
return m_access;
}
private:
Image* m_image;
pointer m_ptr;
int m_x, m_y;
int m_subPixel;
int m_xbegin;
int m_xend;
mutable BitPixelAccess m_access;
};
template<>
class ImageIterator<BitmapTraits> : public ImageIteratorT<BitmapTraits,
uint8_t*,
BitPixelAccess&> {
public:
typedef ImageIteratorT<BitmapTraits,
uint8_t*,
BitPixelAccess&> Base;
ImageIterator() {
}
ImageIterator(const Image* image, const gfx::Rect& bounds, int x, int y) :
Base(image, bounds, x, y) {
}
};
template<>
class ImageConstIterator<BitmapTraits> : public ImageIteratorT<BitmapTraits,
uint8_t const*,
const BitPixelAccess&> {
public:
typedef ImageIteratorT<BitmapTraits,
uint8_t const*,
const BitPixelAccess&> Base;
ImageConstIterator() {
}
ImageConstIterator(const Image* image, const gfx::Rect& bounds, int x, int y) :
Base(image, bounds, x, y) {
}
};
} // namespace doc
#endif