Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
348 lines (315 loc) · 10.3 KB

SDL_blendline.c

File metadata and controls

348 lines (315 loc) · 10.3 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2009 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
Dec 21, 2008
Dec 21, 2008
24
#include "SDL_draw.h"
Dec 20, 2008
Dec 20, 2008
25
Dec 21, 2008
Dec 21, 2008
26
27
static int
SDL_BlendLine_RGB555(SDL_Surface * dst, int x1, int y1, int x2, int y2,
Dec 18, 2009
Dec 18, 2009
28
29
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a,
SDL_bool draw_end)
Dec 21, 2008
Dec 21, 2008
30
31
{
unsigned inva = 0xff - a;
Dec 21, 2008
Dec 21, 2008
33
34
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 18, 2009
Dec 18, 2009
35
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_BLEND_RGB555, draw_end);
Dec 21, 2008
Dec 21, 2008
36
37
break;
case SDL_BLENDMODE_ADD:
Dec 18, 2009
Dec 18, 2009
38
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ADD_RGB555, draw_end);
Dec 21, 2008
Dec 21, 2008
39
40
break;
case SDL_BLENDMODE_MOD:
Dec 18, 2009
Dec 18, 2009
41
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_MOD_RGB555, draw_end);
Dec 21, 2008
Dec 21, 2008
42
43
break;
default:
Dec 18, 2009
Dec 18, 2009
44
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_RGB555, draw_end);
Dec 21, 2008
Dec 21, 2008
45
46
47
48
49
50
51
break;
}
return 0;
}
static int
SDL_BlendLine_RGB565(SDL_Surface * dst, int x1, int y1, int x2, int y2,
Dec 18, 2009
Dec 18, 2009
52
53
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a,
SDL_bool draw_end)
Dec 21, 2008
Dec 21, 2008
55
56
57
58
unsigned inva = 0xff - a;
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 18, 2009
Dec 18, 2009
59
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_BLEND_RGB565, draw_end);
Dec 21, 2008
Dec 21, 2008
60
61
break;
case SDL_BLENDMODE_ADD:
Dec 18, 2009
Dec 18, 2009
62
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ADD_RGB565, draw_end);
Dec 21, 2008
Dec 21, 2008
63
64
break;
case SDL_BLENDMODE_MOD:
Dec 18, 2009
Dec 18, 2009
65
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_MOD_RGB565, draw_end);
Dec 21, 2008
Dec 21, 2008
66
67
break;
default:
Dec 18, 2009
Dec 18, 2009
68
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_RGB565, draw_end);
Dec 21, 2008
Dec 21, 2008
69
break;
Dec 21, 2008
Dec 21, 2008
71
72
return 0;
}
Dec 21, 2008
Dec 21, 2008
74
75
static int
SDL_BlendLine_RGB888(SDL_Surface * dst, int x1, int y1, int x2, int y2,
Dec 18, 2009
Dec 18, 2009
76
77
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a,
SDL_bool draw_end)
Dec 21, 2008
Dec 21, 2008
78
79
{
unsigned inva = 0xff - a;
Dec 21, 2008
Dec 21, 2008
81
82
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 18, 2009
Dec 18, 2009
83
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_BLEND_RGB888, draw_end);
Dec 21, 2008
Dec 21, 2008
84
85
break;
case SDL_BLENDMODE_ADD:
Dec 18, 2009
Dec 18, 2009
86
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ADD_RGB888, draw_end);
Dec 21, 2008
Dec 21, 2008
87
88
break;
case SDL_BLENDMODE_MOD:
Dec 18, 2009
Dec 18, 2009
89
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_MOD_RGB888, draw_end);
Dec 21, 2008
Dec 21, 2008
90
91
break;
default:
Dec 18, 2009
Dec 18, 2009
92
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_RGB888, draw_end);
Dec 21, 2008
Dec 21, 2008
93
break;
Dec 20, 2008
Dec 20, 2008
94
}
Dec 21, 2008
Dec 21, 2008
95
96
97
return 0;
}
Dec 21, 2008
Dec 21, 2008
98
99
static int
SDL_BlendLine_ARGB8888(SDL_Surface * dst, int x1, int y1, int x2, int y2,
Dec 18, 2009
Dec 18, 2009
100
101
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a,
SDL_bool draw_end)
Dec 21, 2008
Dec 21, 2008
102
103
104
105
106
{
unsigned inva = 0xff - a;
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 18, 2009
Dec 18, 2009
107
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_BLEND_ARGB8888, draw_end);
Dec 21, 2008
Dec 21, 2008
108
109
break;
case SDL_BLENDMODE_ADD:
Dec 18, 2009
Dec 18, 2009
110
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ADD_ARGB8888, draw_end);
Dec 21, 2008
Dec 21, 2008
111
112
break;
case SDL_BLENDMODE_MOD:
Dec 18, 2009
Dec 18, 2009
113
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_MOD_ARGB8888, draw_end);
Dec 21, 2008
Dec 21, 2008
114
115
break;
default:
Dec 18, 2009
Dec 18, 2009
116
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ARGB8888, draw_end);
Dec 21, 2008
Dec 21, 2008
117
118
119
120
121
break;
}
return 0;
}
Dec 21, 2008
Dec 21, 2008
122
123
static int
SDL_BlendLine_RGB(SDL_Surface * dst, int x1, int y1, int x2, int y2,
Dec 18, 2009
Dec 18, 2009
124
125
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a,
SDL_bool draw_end)
Dec 21, 2008
Dec 21, 2008
126
127
128
129
130
131
{
SDL_PixelFormat *fmt = dst->format;
unsigned inva = 0xff - a;
switch (fmt->BytesPerPixel) {
case 2:
Dec 20, 2008
Dec 20, 2008
132
133
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 18, 2009
Dec 18, 2009
134
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY2_BLEND_RGB, draw_end);
Dec 20, 2008
Dec 20, 2008
135
136
break;
case SDL_BLENDMODE_ADD:
Dec 18, 2009
Dec 18, 2009
137
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY2_ADD_RGB, draw_end);
Dec 20, 2008
Dec 20, 2008
138
139
break;
case SDL_BLENDMODE_MOD:
Dec 18, 2009
Dec 18, 2009
140
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY2_MOD_RGB, draw_end);
Dec 21, 2008
Dec 21, 2008
141
142
break;
default:
Dec 18, 2009
Dec 18, 2009
143
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY2_RGB, draw_end);
Dec 20, 2008
Dec 20, 2008
144
145
break;
}
Dec 21, 2008
Dec 21, 2008
146
147
return 0;
case 4:
Dec 20, 2008
Dec 20, 2008
148
149
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 18, 2009
Dec 18, 2009
150
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_BLEND_RGB, draw_end);
Dec 20, 2008
Dec 20, 2008
151
152
break;
case SDL_BLENDMODE_ADD:
Dec 18, 2009
Dec 18, 2009
153
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_ADD_RGB, draw_end);
Dec 20, 2008
Dec 20, 2008
154
155
break;
case SDL_BLENDMODE_MOD:
Dec 18, 2009
Dec 18, 2009
156
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_MOD_RGB, draw_end);
Dec 21, 2008
Dec 21, 2008
157
158
break;
default:
Dec 18, 2009
Dec 18, 2009
159
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_RGB, draw_end);
Dec 20, 2008
Dec 20, 2008
160
161
break;
}
Dec 21, 2008
Dec 21, 2008
162
163
164
165
166
167
168
169
170
return 0;
default:
SDL_Unsupported();
return -1;
}
}
static int
SDL_BlendLine_RGBA(SDL_Surface * dst, int x1, int y1, int x2, int y2,
Dec 18, 2009
Dec 18, 2009
171
172
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a,
SDL_bool draw_end)
Dec 21, 2008
Dec 21, 2008
173
174
175
176
177
178
{
SDL_PixelFormat *fmt = dst->format;
unsigned inva = 0xff - a;
switch (fmt->BytesPerPixel) {
case 4:
Dec 20, 2008
Dec 20, 2008
179
180
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 18, 2009
Dec 18, 2009
181
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_BLEND_RGBA, draw_end);
Dec 20, 2008
Dec 20, 2008
182
183
break;
case SDL_BLENDMODE_ADD:
Dec 18, 2009
Dec 18, 2009
184
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_ADD_RGBA, draw_end);
Dec 20, 2008
Dec 20, 2008
185
186
break;
case SDL_BLENDMODE_MOD:
Dec 18, 2009
Dec 18, 2009
187
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_MOD_RGBA, draw_end);
Dec 21, 2008
Dec 21, 2008
188
189
break;
default:
Dec 18, 2009
Dec 18, 2009
190
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_RGBA, draw_end);
Dec 20, 2008
Dec 20, 2008
191
192
break;
}
Dec 21, 2008
Dec 21, 2008
193
return 0;
Dec 20, 2008
Dec 20, 2008
194
195
196
197
default:
SDL_Unsupported();
return -1;
}
Dec 21, 2008
Dec 21, 2008
198
199
200
201
202
203
204
205
206
207
208
209
210
}
int
SDL_BlendLine(SDL_Surface * dst, int x1, int y1, int x2, int y2,
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
{
/* This function doesn't work on surfaces < 8 bpp */
if (dst->format->BitsPerPixel < 8) {
SDL_SetError("SDL_BlendLine(): Unsupported surface format");
return (-1);
}
/* Perform clipping */
Dec 23, 2008
Dec 23, 2008
211
if (!SDL_IntersectRectAndLine(&dst->clip_rect, &x1, &y1, &x2, &y2)) {
Dec 23, 2008
Dec 23, 2008
212
213
214
return (0);
}
Dec 21, 2008
Dec 21, 2008
215
Dec 9, 2009
Dec 9, 2009
216
if (blendMode == SDL_BLENDMODE_BLEND || blendMode == SDL_BLENDMODE_ADD) {
Dec 21, 2008
Dec 21, 2008
217
218
219
220
221
r = DRAW_MUL(r, a);
g = DRAW_MUL(g, a);
b = DRAW_MUL(b, a);
}
Dec 9, 2009
Dec 9, 2009
222
switch (dst->format->BitsPerPixel) {
Dec 21, 2008
Dec 21, 2008
223
case 15:
Dec 9, 2009
Dec 9, 2009
224
switch (dst->format->Rmask) {
Dec 21, 2008
Dec 21, 2008
225
226
case 0x7C00:
return SDL_BlendLine_RGB555(dst, x1, y1, x2, y2, blendMode, r, g,
Dec 18, 2009
Dec 18, 2009
227
b, a, SDL_TRUE);
Dec 21, 2008
Dec 21, 2008
228
229
230
}
break;
case 16:
Dec 9, 2009
Dec 9, 2009
231
switch (dst->format->Rmask) {
Dec 21, 2008
Dec 21, 2008
232
233
case 0xF800:
return SDL_BlendLine_RGB565(dst, x1, y1, x2, y2, blendMode, r, g,
Dec 18, 2009
Dec 18, 2009
234
b, a, SDL_TRUE);
Dec 21, 2008
Dec 21, 2008
235
236
237
}
break;
case 32:
Dec 9, 2009
Dec 9, 2009
238
switch (dst->format->Rmask) {
Dec 21, 2008
Dec 21, 2008
239
case 0x00FF0000:
Dec 9, 2009
Dec 9, 2009
240
if (!dst->format->Amask) {
Dec 21, 2008
Dec 21, 2008
241
return SDL_BlendLine_RGB888(dst, x1, y1, x2, y2, blendMode, r,
Dec 18, 2009
Dec 18, 2009
242
g, b, a, SDL_TRUE);
Dec 21, 2008
Dec 21, 2008
243
244
} else {
return SDL_BlendLine_ARGB8888(dst, x1, y1, x2, y2, blendMode,
Dec 18, 2009
Dec 18, 2009
245
r, g, b, a, SDL_TRUE);
Dec 21, 2008
Dec 21, 2008
246
247
248
}
break;
}
Dec 9, 2009
Dec 9, 2009
249
break;
Dec 21, 2008
Dec 21, 2008
250
251
252
253
default:
break;
}
Dec 9, 2009
Dec 9, 2009
254
if (!dst->format->Amask) {
Dec 18, 2009
Dec 18, 2009
255
256
return SDL_BlendLine_RGB(dst, x1, y1, x2, y2, blendMode,
r, g, b, a, SDL_TRUE);
Dec 21, 2008
Dec 21, 2008
257
} else {
Dec 18, 2009
Dec 18, 2009
258
259
return SDL_BlendLine_RGBA(dst, x1, y1, x2, y2, blendMode,
r, g, b, a, SDL_TRUE);
Dec 21, 2008
Dec 21, 2008
260
}
Dec 9, 2009
Dec 9, 2009
263
264
265
266
267
268
269
270
int
SDL_BlendLines(SDL_Surface * dst, const SDL_Point * points, int count,
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
{
int i;
int x1, y1;
int x2, y2;
int (*func)(SDL_Surface * dst, int x1, int y1, int x2, int y2,
Dec 18, 2009
Dec 18, 2009
271
272
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a,
SDL_bool draw_end) = NULL;
Dec 9, 2009
Dec 9, 2009
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
int status = 0;
if (!dst) {
SDL_SetError("Passed NULL destination surface");
return -1;
}
/* This function doesn't work on surfaces < 8 bpp */
if (dst->format->BitsPerPixel < 8) {
SDL_SetError("SDL_BlendLines(): Unsupported surface format");
return -1;
}
if (blendMode == SDL_BLENDMODE_BLEND || blendMode == SDL_BLENDMODE_ADD) {
r = DRAW_MUL(r, a);
g = DRAW_MUL(g, a);
b = DRAW_MUL(b, a);
}
/* FIXME: Does this function pointer slow things down significantly? */
switch (dst->format->BitsPerPixel) {
case 15:
switch (dst->format->Rmask) {
case 0x7C00:
func = SDL_BlendLine_RGB555;
}
break;
case 16:
switch (dst->format->Rmask) {
case 0xF800:
func = SDL_BlendLine_RGB565;
}
break;
case 32:
switch (dst->format->Rmask) {
case 0x00FF0000:
if (!dst->format->Amask) {
func = SDL_BlendLine_RGB888;
} else {
func = SDL_BlendLine_ARGB8888;
}
break;
}
default:
break;
}
if (!func) {
if (!dst->format->Amask) {
func = SDL_BlendLine_RGB;
} else {
func = SDL_BlendLine_RGBA;
}
}
for (i = 1; i < count; ++i) {
x1 = points[i-1].x;
y1 = points[i-1].y;
x2 = points[i].x;
y2 = points[i].y;
/* Perform clipping */
/* FIXME: We don't actually want to clip, as it may change line slope */
if (!SDL_IntersectRectAndLine(&dst->clip_rect, &x1, &y1, &x2, &y2)) {
continue;
}
Dec 18, 2009
Dec 18, 2009
340
341
342
343
status = func(dst, x1, y1, x2, y2, blendMode, r, g, b, a, SDL_FALSE);
}
if (points[0].x != points[count-1].x || points[0].y != points[count-1].y) {
SDL_BlendPoint(dst, points[count-1].x, points[count-1].y, r, g, b, a);
Dec 9, 2009
Dec 9, 2009
344
345
346
347
}
return status;
}
348
/* vi: set ts=4 sw=4 expandtab: */