forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutline_filter.cpp
209 lines (171 loc) · 5.59 KB
/
outline_filter.cpp
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
// Aseprite
// Copyright (C) 2019 Igara Studio S.A.
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "filters/outline_filter.h"
#include "doc/image.h"
#include "doc/palette.h"
#include "doc/rgbmap.h"
#include "filters/filter_indexed_data.h"
#include "filters/filter_manager.h"
#include "filters/neighboring_pixels.h"
#include <algorithm>
namespace filters {
using namespace doc;
namespace {
struct GetPixelsDelegate {
color_t bgColor;
int transparent; // Transparent pixels
int opaque; // Opaque pixels
int matrix;
int bit;
void init(const color_t bgColor,
const OutlineFilter::Matrix matrix) {
this->bgColor = bgColor;
this->matrix = (int)matrix;
}
void reset() {
transparent = opaque = 0;
bit = 1;
}
};
struct GetPixelsDelegateRgba : public GetPixelsDelegate {
void operator()(RgbTraits::pixel_t color) {
if (rgba_geta(color) == 0 || color == bgColor)
transparent += (matrix & bit ? 1: 0);
else
opaque += (matrix & bit ? 1: 0);
bit <<= 1;
}
};
struct GetPixelsDelegateGrayscale : public GetPixelsDelegate {
void operator()(GrayscaleTraits::pixel_t color) {
if (graya_geta(color) == 0 || color == bgColor)
transparent += (matrix & bit ? 1: 0);
else
opaque += (matrix & bit ? 1: 0);
bit <<= 1;
}
};
struct GetPixelsDelegateIndexed : public GetPixelsDelegate {
const Palette* pal;
GetPixelsDelegateIndexed(const Palette* pal) : pal(pal) { }
void operator()(IndexedTraits::pixel_t color) {
color_t rgba = pal->getEntry(color);
if (rgba_geta(rgba) == 0 || color == bgColor)
transparent += (matrix & bit ? 1: 0);
else
opaque += (matrix & bit ? 1: 0);
bit <<= 1;
}
};
}
OutlineFilter::OutlineFilter()
: m_place(Place::Outside)
, m_matrix(Matrix::Circle)
, m_tiledMode(TiledMode::NONE)
, m_color(0)
, m_bgColor(0)
{
}
const char* OutlineFilter::getName()
{
return "Outline";
}
void OutlineFilter::applyToRgba(FilterManager* filterMgr)
{
const Image* src = filterMgr->getSourceImage();
int r, g, b, a, n;
color_t c;
bool isTransparent;
GetPixelsDelegateRgba delegate;
delegate.init(m_bgColor, m_matrix);
FILTER_LOOP_THROUGH_ROW_BEGIN(uint32_t) {
delegate.reset();
get_neighboring_pixels<RgbTraits>(src, x, y, 3, 3, 1, 1, m_tiledMode, delegate);
c = *src_address;
n = (m_place == Place::Outside ? delegate.opaque: delegate.transparent);
isTransparent = (rgba_geta(c) == 0 || c == m_bgColor);
if ((n >= 1) &&
((m_place == Place::Outside && isTransparent) ||
(m_place == Place::Inside && !isTransparent))) {
r = (target & TARGET_RED_CHANNEL ? rgba_getr(m_color): rgba_getr(c));
g = (target & TARGET_GREEN_CHANNEL ? rgba_getg(m_color): rgba_getg(c));
b = (target & TARGET_BLUE_CHANNEL ? rgba_getb(m_color): rgba_getb(c));
a = (target & TARGET_ALPHA_CHANNEL ? rgba_geta(m_color): rgba_geta(c));
c = rgba(r, g, b, a);
}
*dst_address = c;
}
FILTER_LOOP_THROUGH_ROW_END()
}
void OutlineFilter::applyToGrayscale(FilterManager* filterMgr)
{
const Image* src = filterMgr->getSourceImage();
int k, a, n;
color_t c;
bool isTransparent;
GetPixelsDelegateGrayscale delegate;
delegate.init(m_bgColor, m_matrix);
FILTER_LOOP_THROUGH_ROW_BEGIN(uint16_t) {
delegate.reset();
get_neighboring_pixels<GrayscaleTraits>(src, x, y, 3, 3, 1, 1, m_tiledMode, delegate);
c = *src_address;
n = (m_place == Place::Outside ? delegate.opaque: delegate.transparent);
isTransparent = (graya_geta(c) == 0 || c == m_bgColor);
if ((n >= 1) &&
((m_place == Place::Outside && isTransparent) ||
(m_place == Place::Inside && !isTransparent))) {
k = (target & TARGET_GRAY_CHANNEL ? graya_getv(m_color): graya_getv(c));
a = (target & TARGET_ALPHA_CHANNEL ? graya_geta(m_color): graya_geta(c));
c = graya(k, a);
}
*dst_address = c;
}
FILTER_LOOP_THROUGH_ROW_END()
}
void OutlineFilter::applyToIndexed(FilterManager* filterMgr)
{
const Image* src = filterMgr->getSourceImage();
const Palette* pal = filterMgr->getIndexedData()->getPalette();
const RgbMap* rgbmap = filterMgr->getIndexedData()->getRgbMap();
int r, g, b, a, n;
color_t c;
bool isTransparent;
GetPixelsDelegateIndexed delegate(pal);
delegate.init(m_bgColor, m_matrix);
FILTER_LOOP_THROUGH_ROW_BEGIN(uint8_t) {
delegate.reset();
get_neighboring_pixels<IndexedTraits>(src, x, y, 3, 3, 1, 1, m_tiledMode, delegate);
c = *src_address;
n = (m_place == Place::Outside ? delegate.opaque: delegate.transparent);
if (target & TARGET_INDEX_CHANNEL) {
isTransparent = (c == m_bgColor);
}
else {
isTransparent = (rgba_geta(pal->getEntry(c)) == 0 || c == m_bgColor);
}
if ((n >= 1) &&
((m_place == Place::Outside && isTransparent) ||
(m_place == Place::Inside && !isTransparent))) {
if (target & TARGET_INDEX_CHANNEL) {
c = m_color;
}
else {
c = pal->getEntry(c);
r = (target & TARGET_RED_CHANNEL ? rgba_getr(m_color): rgba_getr(c));
g = (target & TARGET_GREEN_CHANNEL ? rgba_getg(m_color): rgba_getg(c));
b = (target & TARGET_BLUE_CHANNEL ? rgba_getb(m_color): rgba_getb(c));
a = (target & TARGET_ALPHA_CHANNEL ? rgba_geta(m_color): rgba_geta(c));
c = rgbmap->mapColor(r, g, b, a);
}
}
*dst_address = c;
}
FILTER_LOOP_THROUGH_ROW_END()
}
} // namespace filters