forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblend_internals.h
215 lines (192 loc) · 5.65 KB
/
blend_internals.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
// Aseprite Document Library
// Copyright (c) 2024 Igara Studio S.A.
// 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_BLEND_INTERNALS_H_INCLUDED
#define DOC_BLEND_INTERNALS_H_INCLUDED
#pragma once
#include "../../third_party/pixman/pixman/pixman-combine32.h"
#if !defined(MUL_UN8) || !defined(DIV_UN8)
#error Invalid Pixman library
#endif
#include "doc/blend_funcs.h"
#include "doc/blend_mode.h"
#include "doc/color.h"
#include "doc/image.h"
#include "doc/image_traits.h"
#include "doc/palette.h"
namespace doc {
template<class DstTraits, class SrcTraits>
class BlenderHelper {
BlendFunc m_blendFunc;
color_t m_maskColor;
public:
BlenderHelper(Image* dst, const Image* src, const Palette* pal,
const BlendMode blendMode, const bool newBlend)
{
m_blendFunc = SrcTraits::get_blender(blendMode, newBlend);
m_maskColor = src->maskColor();
}
inline typename DstTraits::pixel_t
operator()(typename DstTraits::pixel_t dst,
typename SrcTraits::pixel_t src,
int opacity)
{
if (src != m_maskColor)
return (*m_blendFunc)(dst, src, opacity);
else
return dst;
}
};
//////////////////////////////////////////////////////////////////////
// X -> Rgb
template<>
class BlenderHelper<RgbTraits, GrayscaleTraits> {
BlendFunc m_blendFunc;
color_t m_maskColor;
public:
BlenderHelper(Image* dst, const Image* src, const Palette* pal,
const BlendMode blendMode, const bool newBlend)
{
m_blendFunc = RgbTraits::get_blender(blendMode, newBlend);
m_maskColor = src->maskColor();
}
inline RgbTraits::pixel_t
operator()(RgbTraits::pixel_t dst,
GrayscaleTraits::pixel_t src,
int opacity)
{
if (src != m_maskColor) {
int v = graya_getv(src);
return (*m_blendFunc)(dst, rgba(v, v, v, graya_geta(src)), opacity);
}
else
return dst;
}
};
template<>
class BlenderHelper<RgbTraits, IndexedTraits> {
const Palette* m_pal;
BlendMode m_blendMode;
BlendFunc m_blendFunc;
color_t m_maskColor;
public:
BlenderHelper(Image* dst, const Image* src, const Palette* pal,
const BlendMode blendMode, const bool newBlend)
{
m_blendMode = blendMode;
m_blendFunc = RgbTraits::get_blender(blendMode, newBlend);
m_maskColor = src->maskColor();
m_pal = pal;
}
inline RgbTraits::pixel_t
operator()(RgbTraits::pixel_t dst,
IndexedTraits::pixel_t src,
int opacity)
{
if (m_blendMode == BlendMode::SRC) {
return m_pal->getEntry(src);
}
else {
if (src != m_maskColor) {
return (*m_blendFunc)(dst, m_pal->getEntry(src), opacity);
}
else
return dst;
}
}
};
//////////////////////////////////////////////////////////////////////
// X -> Grayscale
template<>
class BlenderHelper<GrayscaleTraits, RgbTraits> {
BlendFunc m_blendFunc;
public:
BlenderHelper(Image* dst, const Image* src, const Palette* pal,
const BlendMode blendMode, const bool newBlend)
{
m_blendFunc = RgbTraits::get_blender(blendMode, newBlend);
}
inline GrayscaleTraits::pixel_t
operator()(GrayscaleTraits::pixel_t dst,
RgbTraits::pixel_t src,
int opacity)
{
// TODO we should be able to configure this function
return rgba_to_graya_using_luma(src);
}
};
//////////////////////////////////////////////////////////////////////
// X -> Indexed
template<>
class BlenderHelper<IndexedTraits, RgbTraits> {
const Palette* m_pal;
BlendMode m_blendMode;
BlendFunc m_blendFunc;
color_t m_maskColor;
public:
BlenderHelper(Image* dst, const Image* src, const Palette* pal,
const BlendMode blendMode, const bool newBlend)
{
m_blendMode = blendMode;
m_blendFunc = RgbTraits::get_blender(blendMode, newBlend);
m_pal = pal;
if (m_blendMode == BlendMode::SRC)
m_maskColor = -1;
else
m_maskColor = dst->maskColor();
}
inline IndexedTraits::pixel_t
operator()(IndexedTraits::pixel_t dst,
RgbTraits::pixel_t src,
int opacity)
{
if (dst != m_maskColor) {
src = (*m_blendFunc)(m_pal->getEntry(dst), src, opacity);
}
return m_pal->findBestfit(rgba_getr(src),
rgba_getg(src),
rgba_getb(src),
rgba_geta(src),
m_maskColor);
}
};
template<>
class BlenderHelper<IndexedTraits, IndexedTraits> {
BlendMode m_blendMode;
color_t m_maskColor;
int m_paletteSize;
public:
BlenderHelper(Image* dst, const Image* src, const Palette* pal,
const BlendMode blendMode, const bool newBlend)
{
m_blendMode = blendMode;
m_maskColor = src->maskColor();
m_paletteSize = pal->size();
}
inline IndexedTraits::pixel_t
operator()(IndexedTraits::pixel_t dst,
IndexedTraits::pixel_t src,
int opacity)
{
if (m_blendMode == BlendMode::SRC) {
return src;
}
else if (m_blendMode == BlendMode::DST_OVER) {
if (dst != m_maskColor)
return dst;
else
return src;
}
else {
if (src != m_maskColor && src < m_paletteSize)
return src;
else
return dst;
}
}
};
} // namespace doc
#endif