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

Latest commit

 

History

History
876 lines (806 loc) · 23.4 KB

SDL_pixels.c

File metadata and controls

876 lines (806 loc) · 23.4 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
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
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
28
29
30
31
32
33
/* General (mostly internal) pixel/color manipulation routines for SDL */
#include "SDL_endian.h"
#include "SDL_video.h"
#include "SDL_sysvideo.h"
#include "SDL_blit.h"
#include "SDL_pixels_c.h"
#include "SDL_RLEaccel_c.h"
/* Helper functions */
Jul 10, 2006
Jul 10, 2006
34
35
36
37
38
39
40
41
SDL_bool
SDL_PixelFormatEnumToMasks(Uint32 format, int *bpp, Uint32 * Rmask,
Uint32 * Gmask, Uint32 * Bmask, Uint32 * Amask)
{
Uint32 masks[4];
/* Initialize the values here */
Sep 20, 2009
Sep 20, 2009
42
if (SDL_BYTESPERPIXEL(format) <= 2) {
Jul 10, 2006
Jul 10, 2006
43
*bpp = SDL_BITSPERPIXEL(format);
Sep 20, 2009
Sep 20, 2009
44
45
} else {
*bpp = SDL_BYTESPERPIXEL(format) * 8;
Jul 10, 2006
Jul 10, 2006
46
47
48
}
*Rmask = *Gmask = *Bmask = *Amask = 0;
Aug 5, 2006
Aug 5, 2006
49
50
51
if (SDL_PIXELTYPE(format) != SDL_PIXELTYPE_PACKED8 &&
SDL_PIXELTYPE(format) != SDL_PIXELTYPE_PACKED16 &&
SDL_PIXELTYPE(format) != SDL_PIXELTYPE_PACKED32) {
Jul 10, 2006
Jul 10, 2006
52
53
54
55
56
/* Not a format that uses masks */
return SDL_TRUE;
}
switch (SDL_PIXELLAYOUT(format)) {
Aug 5, 2006
Aug 5, 2006
57
case SDL_PACKEDLAYOUT_332:
Jul 10, 2006
Jul 10, 2006
58
59
60
61
62
masks[0] = 0x00000000;
masks[1] = 0x000000E0;
masks[2] = 0x0000001C;
masks[3] = 0x00000003;
break;
Aug 5, 2006
Aug 5, 2006
63
case SDL_PACKEDLAYOUT_4444:
Jul 10, 2006
Jul 10, 2006
64
65
66
67
68
masks[0] = 0x0000F000;
masks[1] = 0x00000F00;
masks[2] = 0x000000F0;
masks[3] = 0x0000000F;
break;
Aug 5, 2006
Aug 5, 2006
69
case SDL_PACKEDLAYOUT_1555:
Jul 10, 2006
Jul 10, 2006
70
71
72
73
74
masks[0] = 0x00008000;
masks[1] = 0x00007C00;
masks[2] = 0x000003E0;
masks[3] = 0x0000001F;
break;
Jun 3, 2009
Jun 3, 2009
75
76
77
78
79
80
case SDL_PACKEDLAYOUT_5551:
masks[0] = 0x0000F800;
masks[1] = 0x000007C0;
masks[2] = 0x0000003E;
masks[3] = 0x00000001;
break;
Aug 5, 2006
Aug 5, 2006
81
case SDL_PACKEDLAYOUT_565:
Jul 10, 2006
Jul 10, 2006
82
83
84
85
86
masks[0] = 0x00000000;
masks[1] = 0x0000F800;
masks[2] = 0x000007E0;
masks[3] = 0x0000001F;
break;
Aug 5, 2006
Aug 5, 2006
87
case SDL_PACKEDLAYOUT_8888:
Jul 10, 2006
Jul 10, 2006
88
89
90
91
92
masks[0] = 0xFF000000;
masks[1] = 0x00FF0000;
masks[2] = 0x0000FF00;
masks[3] = 0x000000FF;
break;
Aug 5, 2006
Aug 5, 2006
93
case SDL_PACKEDLAYOUT_2101010:
Jul 10, 2006
Jul 10, 2006
94
95
96
97
98
masks[0] = 0xC0000000;
masks[1] = 0x3FF00000;
masks[2] = 0x000FFC00;
masks[3] = 0x000003FF;
break;
Jun 3, 2009
Jun 3, 2009
99
100
101
102
103
104
case SDL_PACKEDLAYOUT_1010102:
masks[0] = 0xFFC00000;
masks[1] = 0x003FF000;
masks[2] = 0x00000FFC;
masks[3] = 0x00000003;
break;
Jul 10, 2006
Jul 10, 2006
105
default:
Nov 22, 2009
Nov 22, 2009
106
SDL_SetError("Unknown pixel format");
Jul 10, 2006
Jul 10, 2006
107
108
109
110
return SDL_FALSE;
}
switch (SDL_PIXELORDER(format)) {
Aug 5, 2006
Aug 5, 2006
111
case SDL_PACKEDORDER_XRGB:
Jul 10, 2006
Jul 10, 2006
112
113
114
115
*Rmask = masks[1];
*Gmask = masks[2];
*Bmask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
116
case SDL_PACKEDORDER_RGBX:
Jul 10, 2006
Jul 10, 2006
117
118
119
120
*Rmask = masks[0];
*Gmask = masks[1];
*Bmask = masks[2];
break;
Aug 5, 2006
Aug 5, 2006
121
case SDL_PACKEDORDER_ARGB:
Jul 10, 2006
Jul 10, 2006
122
123
124
125
126
*Amask = masks[0];
*Rmask = masks[1];
*Gmask = masks[2];
*Bmask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
127
case SDL_PACKEDORDER_RGBA:
Jul 10, 2006
Jul 10, 2006
128
129
130
131
132
*Rmask = masks[0];
*Gmask = masks[1];
*Bmask = masks[2];
*Amask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
133
case SDL_PACKEDORDER_XBGR:
Jul 10, 2006
Jul 10, 2006
134
135
136
137
*Bmask = masks[1];
*Gmask = masks[2];
*Rmask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
138
case SDL_PACKEDORDER_BGRX:
Jul 10, 2006
Jul 10, 2006
139
140
141
142
*Bmask = masks[0];
*Gmask = masks[1];
*Rmask = masks[2];
break;
Aug 5, 2006
Aug 5, 2006
143
case SDL_PACKEDORDER_BGRA:
Jul 10, 2006
Jul 10, 2006
144
145
146
147
148
*Bmask = masks[0];
*Gmask = masks[1];
*Rmask = masks[2];
*Amask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
149
case SDL_PACKEDORDER_ABGR:
Jul 10, 2006
Jul 10, 2006
150
151
152
153
154
155
*Amask = masks[0];
*Bmask = masks[1];
*Gmask = masks[2];
*Rmask = masks[3];
break;
default:
Nov 22, 2009
Nov 22, 2009
156
SDL_SetError("Unknown pixel format");
Jul 10, 2006
Jul 10, 2006
157
158
159
160
161
162
163
164
165
166
167
168
169
return SDL_FALSE;
}
return SDL_TRUE;
}
Uint32
SDL_MasksToPixelFormatEnum(int bpp, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask,
Uint32 Amask)
{
switch (bpp) {
case 8:
switch (Rmask) {
case 0:
Aug 5, 2006
Aug 5, 2006
170
return SDL_PIXELFORMAT_INDEX8;
Jul 10, 2006
Jul 10, 2006
171
case 0xE0:
Aug 5, 2006
Aug 5, 2006
172
return SDL_PIXELFORMAT_RGB332;
Jul 10, 2006
Jul 10, 2006
173
174
175
176
177
}
break;
case 12:
switch (Rmask) {
case 0x0F00:
Aug 5, 2006
Aug 5, 2006
178
return SDL_PIXELFORMAT_RGB444;
Jul 10, 2006
Jul 10, 2006
179
180
181
182
}
break;
case 15:
switch (Rmask) {
Aug 27, 2008
Aug 27, 2008
183
184
case 0x001F:
return SDL_PIXELFORMAT_BGR555;
Jul 10, 2006
Jul 10, 2006
185
case 0x7C00:
Aug 5, 2006
Aug 5, 2006
186
return SDL_PIXELFORMAT_RGB555;
Jul 10, 2006
Jul 10, 2006
187
188
189
190
}
break;
case 16:
switch (Rmask) {
Jun 3, 2009
Jun 3, 2009
191
192
case 0x000F:
return SDL_PIXELFORMAT_ABGR4444;
Aug 27, 2008
Aug 27, 2008
193
case 0x001F:
Jun 3, 2009
Jun 3, 2009
194
195
196
if (Gmask == 0x07E0) {
return SDL_PIXELFORMAT_BGR565;
}
Aug 27, 2008
Aug 27, 2008
197
return SDL_PIXELFORMAT_ABGR1555;
Jul 10, 2006
Jul 10, 2006
198
case 0x0F00:
Aug 5, 2006
Aug 5, 2006
199
return SDL_PIXELFORMAT_ARGB4444;
Jul 10, 2006
Jul 10, 2006
200
case 0x7C00:
Aug 5, 2006
Aug 5, 2006
201
return SDL_PIXELFORMAT_ARGB1555;
Jul 10, 2006
Jul 10, 2006
202
case 0xF800:
Aug 5, 2006
Aug 5, 2006
203
return SDL_PIXELFORMAT_RGB565;
Jul 10, 2006
Jul 10, 2006
204
205
}
break;
Jun 10, 2009
Jun 10, 2009
206
207
208
209
210
211
212
213
214
215
216
case 24:
switch (Rmask) {
case 0x00FF0000:
return SDL_PIXELFORMAT_RGB888;
case 0x000000FF:
return SDL_PIXELFORMAT_BGR888;
case 0x00000000:
/* FIXME: At this point we can't distinguish */
/* if this format is RGB24 or BGR24 */
return SDL_PIXELFORMAT_RGB24;
}
Jul 10, 2006
Jul 10, 2006
217
218
219
220
case 32:
switch (Rmask) {
case 0xFF000000:
if (Amask == 0x000000FF) {
Aug 5, 2006
Aug 5, 2006
221
return SDL_PIXELFORMAT_RGBA8888;
Jul 10, 2006
Jul 10, 2006
222
223
224
225
}
break;
case 0x00FF0000:
if (Amask == 0xFF000000) {
Aug 5, 2006
Aug 5, 2006
226
return SDL_PIXELFORMAT_ARGB8888;
Jul 10, 2006
Jul 10, 2006
227
} else {
Aug 5, 2006
Aug 5, 2006
228
return SDL_PIXELFORMAT_RGB888;
Jul 10, 2006
Jul 10, 2006
229
230
231
232
}
break;
case 0x0000FF00:
if (Amask == 0x000000FF) {
Aug 5, 2006
Aug 5, 2006
233
return SDL_PIXELFORMAT_BGRA8888;
Jul 10, 2006
Jul 10, 2006
234
235
236
237
}
break;
case 0x000000FF:
if (Amask == 0xFF000000) {
Aug 5, 2006
Aug 5, 2006
238
return SDL_PIXELFORMAT_ABGR8888;
Jul 10, 2006
Jul 10, 2006
239
} else {
Aug 5, 2006
Aug 5, 2006
240
return SDL_PIXELFORMAT_BGR888;
Jul 10, 2006
Jul 10, 2006
241
242
243
}
break;
case 0x3FF00000:
Aug 5, 2006
Aug 5, 2006
244
return SDL_PIXELFORMAT_ARGB2101010;
Jul 10, 2006
Jul 10, 2006
245
246
}
}
Aug 5, 2006
Aug 5, 2006
247
return SDL_PIXELFORMAT_UNKNOWN;
Jul 10, 2006
Jul 10, 2006
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
}
SDL_Palette *
SDL_AllocPalette(int ncolors)
{
SDL_Palette *palette;
palette = (SDL_Palette *) SDL_malloc(sizeof(*palette));
if (!palette) {
SDL_OutOfMemory();
return NULL;
}
palette->colors =
(SDL_Color *) SDL_malloc(ncolors * sizeof(*palette->colors));
if (!palette->colors) {
SDL_free(palette);
return NULL;
}
palette->ncolors = ncolors;
palette->watch = NULL;
palette->refcount = 1;
SDL_memset(palette->colors, 0xFF, ncolors * sizeof(*palette->colors));
return palette;
}
int
SDL_AddPaletteWatch(SDL_Palette * palette, SDL_PaletteChangedFunc callback,
void *userdata)
{
SDL_PaletteWatch *watch;
if (!palette) {
return -1;
}
watch = (SDL_PaletteWatch *) SDL_malloc(sizeof(*watch));
if (!watch) {
SDL_OutOfMemory();
return -1;
}
watch->callback = callback;
watch->userdata = userdata;
watch->next = palette->watch;
palette->watch = watch;
++palette->refcount;
return 0;
}
void
SDL_DelPaletteWatch(SDL_Palette * palette, SDL_PaletteChangedFunc callback,
void *userdata)
{
SDL_PaletteWatch *prev, *watch;
if (!palette) {
return;
}
for (prev = NULL, watch = palette->watch; watch;
prev = watch, watch = watch->next) {
if (watch->callback == callback && watch->userdata == userdata) {
if (prev) {
prev->next = watch->next;
} else {
palette->watch = watch->next;
}
SDL_free(watch);
SDL_FreePalette(palette);
return;
}
}
}
int
SDL_SetPaletteColors(SDL_Palette * palette, const SDL_Color * colors,
int firstcolor, int ncolors)
{
SDL_PaletteWatch *watch;
int status = 0;
/* Verify the parameters */
if (!palette) {
return -1;
}
if (ncolors > (palette->ncolors - firstcolor)) {
ncolors = (palette->ncolors - firstcolor);
status = -1;
}
if (colors != (palette->colors + firstcolor)) {
SDL_memcpy(palette->colors + firstcolor, colors,
ncolors * sizeof(*colors));
}
for (watch = palette->watch; watch; watch = watch->next) {
if (watch->callback(watch->userdata, palette) < 0) {
status = -1;
}
}
return status;
}
void
SDL_FreePalette(SDL_Palette * palette)
{
if (!palette) {
return;
}
if (--palette->refcount > 0) {
return;
}
if (palette->colors) {
SDL_free(palette->colors);
}
SDL_free(palette);
}
Apr 26, 2001
Apr 26, 2001
370
371
372
/*
* Allocate a pixel format structure and fill it according to the given info.
*/
Jul 10, 2006
Jul 10, 2006
373
374
375
SDL_PixelFormat *
SDL_AllocFormat(int bpp,
Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
Apr 26, 2001
Apr 26, 2001
376
{
Jul 10, 2006
Jul 10, 2006
377
378
379
SDL_PixelFormat *format;
/* Allocate an empty pixel format structure */
Jan 2, 2009
Jan 2, 2009
380
format = SDL_malloc(sizeof(*format));
Jul 10, 2006
Jul 10, 2006
381
382
383
384
385
386
if (format == NULL) {
SDL_OutOfMemory();
return (NULL);
}
/* Set up the format */
Jan 2, 2009
Jan 2, 2009
387
388
389
390
return SDL_InitFormat(format, bpp, Rmask, Gmask, Bmask, Amask);
}
SDL_PixelFormat *
Jan 4, 2009
Jan 4, 2009
391
392
SDL_InitFormat(SDL_PixelFormat * format, int bpp, Uint32 Rmask, Uint32 Gmask,
Uint32 Bmask, Uint32 Amask)
Jan 2, 2009
Jan 2, 2009
393
394
395
396
397
{
Uint32 mask;
/* Set up the format */
SDL_zerop(format);
Jul 10, 2006
Jul 10, 2006
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
format->BitsPerPixel = bpp;
format->BytesPerPixel = (bpp + 7) / 8;
if (Rmask || Bmask || Gmask) { /* Packed pixels with custom mask */
format->Rshift = 0;
format->Rloss = 8;
if (Rmask) {
for (mask = Rmask; !(mask & 0x01); mask >>= 1)
++format->Rshift;
for (; (mask & 0x01); mask >>= 1)
--format->Rloss;
}
format->Gshift = 0;
format->Gloss = 8;
if (Gmask) {
for (mask = Gmask; !(mask & 0x01); mask >>= 1)
++format->Gshift;
for (; (mask & 0x01); mask >>= 1)
--format->Gloss;
}
format->Bshift = 0;
format->Bloss = 8;
if (Bmask) {
for (mask = Bmask; !(mask & 0x01); mask >>= 1)
++format->Bshift;
for (; (mask & 0x01); mask >>= 1)
--format->Bloss;
}
format->Ashift = 0;
format->Aloss = 8;
if (Amask) {
for (mask = Amask; !(mask & 0x01); mask >>= 1)
++format->Ashift;
for (; (mask & 0x01); mask >>= 1)
--format->Aloss;
}
format->Rmask = Rmask;
format->Gmask = Gmask;
format->Bmask = Bmask;
format->Amask = Amask;
} else if (bpp > 8) { /* Packed pixels with standard mask */
/* R-G-B */
if (bpp > 24)
bpp = 24;
format->Rloss = 8 - (bpp / 3);
format->Gloss = 8 - (bpp / 3) - (bpp % 3);
format->Bloss = 8 - (bpp / 3);
format->Rshift = ((bpp / 3) + (bpp % 3)) + (bpp / 3);
format->Gshift = (bpp / 3);
format->Bshift = 0;
format->Rmask = ((0xFF >> format->Rloss) << format->Rshift);
format->Gmask = ((0xFF >> format->Gloss) << format->Gshift);
format->Bmask = ((0xFF >> format->Bloss) << format->Bshift);
} else {
/* Palettized formats have no mask info */
format->Rloss = 8;
format->Gloss = 8;
format->Bloss = 8;
format->Aloss = 8;
format->Rshift = 0;
format->Gshift = 0;
format->Bshift = 0;
format->Ashift = 0;
format->Rmask = 0;
format->Gmask = 0;
format->Bmask = 0;
format->Amask = 0;
}
format->palette = NULL;
Jan 2, 2009
Jan 2, 2009
467
return format;
Apr 26, 2001
Apr 26, 2001
468
469
470
471
472
}
/*
* Change any previous mappings from/to the new surface format
*/
Jul 10, 2006
Jul 10, 2006
473
474
void
SDL_FormatChanged(SDL_Surface * surface)
Apr 26, 2001
Apr 26, 2001
475
{
Jul 10, 2006
Jul 10, 2006
476
477
478
479
480
481
482
static int format_version = 0;
++format_version;
if (format_version < 0) { /* It wrapped... */
format_version = 1;
}
surface->format_version = format_version;
SDL_InvalidateMap(surface->map);
Apr 26, 2001
Apr 26, 2001
483
}
Jul 10, 2006
Jul 10, 2006
484
Apr 26, 2001
Apr 26, 2001
485
486
487
/*
* Free a previously allocated format structure
*/
Jul 10, 2006
Jul 10, 2006
488
489
void
SDL_FreeFormat(SDL_PixelFormat * format)
Apr 26, 2001
Apr 26, 2001
490
{
Jul 10, 2006
Jul 10, 2006
491
492
493
494
if (!format) {
return;
}
SDL_free(format);
Apr 26, 2001
Apr 26, 2001
495
}
Jul 10, 2006
Jul 10, 2006
496
Apr 26, 2001
Apr 26, 2001
497
498
499
/*
* Calculate an 8-bit (3 red, 3 green, 2 blue) dithered palette of colors
*/
Jul 10, 2006
Jul 10, 2006
500
501
void
SDL_DitherColors(SDL_Color * colors, int bpp)
Apr 26, 2001
Apr 26, 2001
502
{
Jul 10, 2006
Jul 10, 2006
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
int i;
if (bpp != 8)
return; /* only 8bpp supported right now */
for (i = 0; i < 256; i++) {
int r, g, b;
/* map each bit field to the full [0, 255] interval,
so 0 is mapped to (0, 0, 0) and 255 to (255, 255, 255) */
r = i & 0xe0;
r |= r >> 3 | r >> 6;
colors[i].r = r;
g = (i << 3) & 0xe0;
g |= g >> 3 | g >> 6;
colors[i].g = g;
b = i & 0x3;
b |= b << 2;
b |= b << 4;
colors[i].b = b;
colors[i].unused = SDL_ALPHA_OPAQUE;
}
Apr 26, 2001
Apr 26, 2001
523
}
Jul 10, 2006
Jul 10, 2006
524
Apr 26, 2001
Apr 26, 2001
525
526
527
/*
* Calculate the pad-aligned scanline width of a surface
*/
Jul 10, 2006
Jul 10, 2006
528
529
int
SDL_CalculatePitch(SDL_Surface * surface)
Apr 26, 2001
Apr 26, 2001
530
{
Jul 10, 2006
Jul 10, 2006
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
int pitch;
/* Surface should be 4-byte aligned for speed */
pitch = surface->w * surface->format->BytesPerPixel;
switch (surface->format->BitsPerPixel) {
case 1:
pitch = (pitch + 7) / 8;
break;
case 4:
pitch = (pitch + 1) / 2;
break;
default:
break;
}
pitch = (pitch + 3) & ~3; /* 4-byte aligning */
return (pitch);
Apr 26, 2001
Apr 26, 2001
547
}
Jul 10, 2006
Jul 10, 2006
548
Apr 26, 2001
Apr 26, 2001
549
550
551
/*
* Match an RGB value to a particular palette index
*/
Jul 10, 2006
Jul 10, 2006
552
553
Uint8
SDL_FindColor(SDL_Palette * pal, Uint8 r, Uint8 g, Uint8 b)
Apr 26, 2001
Apr 26, 2001
554
{
Jul 10, 2006
Jul 10, 2006
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
/* Do colorspace distance matching */
unsigned int smallest;
unsigned int distance;
int rd, gd, bd;
int i;
Uint8 pixel = 0;
smallest = ~0;
for (i = 0; i < pal->ncolors; ++i) {
rd = pal->colors[i].r - r;
gd = pal->colors[i].g - g;
bd = pal->colors[i].b - b;
distance = (rd * rd) + (gd * gd) + (bd * bd);
if (distance < smallest) {
pixel = i;
if (distance == 0) { /* Perfect match! */
break;
}
smallest = distance;
}
}
return (pixel);
Apr 26, 2001
Apr 26, 2001
577
578
579
}
/* Find the opaque pixel value corresponding to an RGB triple */
Jul 10, 2006
Jul 10, 2006
580
Uint32
Sep 10, 2007
Sep 10, 2007
581
SDL_MapRGB(const SDL_PixelFormat * format, Uint8 r, Uint8 g, Uint8 b)
Apr 26, 2001
Apr 26, 2001
582
{
Jul 10, 2006
Jul 10, 2006
583
584
585
586
587
588
589
if (format->palette == NULL) {
return (r >> format->Rloss) << format->Rshift
| (g >> format->Gloss) << format->Gshift
| (b >> format->Bloss) << format->Bshift | format->Amask;
} else {
return SDL_FindColor(format->palette, r, g, b);
}
Apr 26, 2001
Apr 26, 2001
590
591
592
}
/* Find the pixel value corresponding to an RGBA quadruple */
Jul 10, 2006
Jul 10, 2006
593
Uint32
Sep 10, 2007
Sep 10, 2007
594
595
SDL_MapRGBA(const SDL_PixelFormat * format, Uint8 r, Uint8 g, Uint8 b,
Uint8 a)
Apr 26, 2001
Apr 26, 2001
596
{
Jul 10, 2006
Jul 10, 2006
597
598
599
600
601
602
603
604
if (format->palette == NULL) {
return (r >> format->Rloss) << format->Rshift
| (g >> format->Gloss) << format->Gshift
| (b >> format->Bloss) << format->Bshift
| ((a >> format->Aloss) << format->Ashift & format->Amask);
} else {
return SDL_FindColor(format->palette, r, g, b);
}
Apr 26, 2001
Apr 26, 2001
605
606
}
Jul 10, 2006
Jul 10, 2006
607
void
Sep 10, 2007
Sep 10, 2007
608
609
SDL_GetRGB(Uint32 pixel, const SDL_PixelFormat * format, Uint8 * r, Uint8 * g,
Uint8 * b)
Apr 26, 2001
Apr 26, 2001
610
{
Sep 10, 2007
Sep 10, 2007
611
if (format->palette == NULL) {
Jul 10, 2006
Jul 10, 2006
612
613
614
615
/*
* This makes sure that the result is mapped to the
* interval [0..255], and the maximum value for each
* component is 255. This is important to make sure
Sep 10, 2007
Sep 10, 2007
616
* that white is indeed reported as (255, 255, 255).
Jul 10, 2006
Jul 10, 2006
617
618
619
620
* This only works for RGB bit fields at least 4 bit
* wide, which is almost always the case.
*/
unsigned v;
Sep 10, 2007
Sep 10, 2007
621
622
623
624
625
626
v = (pixel & format->Rmask) >> format->Rshift;
*r = (v << format->Rloss) + (v >> (8 - (format->Rloss << 1)));
v = (pixel & format->Gmask) >> format->Gshift;
*g = (v << format->Gloss) + (v >> (8 - (format->Gloss << 1)));
v = (pixel & format->Bmask) >> format->Bshift;
*b = (v << format->Bloss) + (v >> (8 - (format->Bloss << 1)));
Jul 10, 2006
Jul 10, 2006
627
} else {
Sep 10, 2007
Sep 10, 2007
628
629
630
*r = format->palette->colors[pixel].r;
*g = format->palette->colors[pixel].g;
*b = format->palette->colors[pixel].b;
Jul 10, 2006
Jul 10, 2006
631
}
Apr 26, 2001
Apr 26, 2001
632
633
}
Jul 10, 2006
Jul 10, 2006
634
void
Sep 10, 2007
Sep 10, 2007
635
636
SDL_GetRGBA(Uint32 pixel, const SDL_PixelFormat * format,
Uint8 * r, Uint8 * g, Uint8 * b, Uint8 * a)
Apr 26, 2001
Apr 26, 2001
637
{
Sep 10, 2007
Sep 10, 2007
638
639
640
641
642
643
644
645
646
647
if (format->palette == NULL) {
/*
* This makes sure that the result is mapped to the
* interval [0..255], and the maximum value for each
* component is 255. This is important to make sure
* that white is indeed reported as (255, 255, 255),
* and that opaque alpha is 255.
* This only works for RGB bit fields at least 4 bit
* wide, which is almost always the case.
*/
Jul 10, 2006
Jul 10, 2006
648
unsigned v;
Sep 10, 2007
Sep 10, 2007
649
650
651
652
653
654
655
656
657
658
659
660
v = (pixel & format->Rmask) >> format->Rshift;
*r = (v << format->Rloss) + (v >> (8 - (format->Rloss << 1)));
v = (pixel & format->Gmask) >> format->Gshift;
*g = (v << format->Gloss) + (v >> (8 - (format->Gloss << 1)));
v = (pixel & format->Bmask) >> format->Bshift;
*b = (v << format->Bloss) + (v >> (8 - (format->Bloss << 1)));
if (format->Amask) {
v = (pixel & format->Amask) >> format->Ashift;
*a = (v << format->Aloss) + (v >> (8 - (format->Aloss << 1)));
} else {
*a = SDL_ALPHA_OPAQUE;
}
Jul 10, 2006
Jul 10, 2006
661
} else {
Sep 10, 2007
Sep 10, 2007
662
663
664
665
*r = format->palette->colors[pixel].r;
*g = format->palette->colors[pixel].g;
*b = format->palette->colors[pixel].b;
*a = SDL_ALPHA_OPAQUE;
Jul 10, 2006
Jul 10, 2006
666
}
Apr 26, 2001
Apr 26, 2001
667
668
669
}
/* Apply gamma to a set of colors - this is easy. :) */
Jul 10, 2006
Jul 10, 2006
670
671
672
void
SDL_ApplyGamma(Uint16 * gamma, SDL_Color * colors, SDL_Color * output,
int ncolors)
Apr 26, 2001
Apr 26, 2001
673
{
Jul 10, 2006
Jul 10, 2006
674
int i;
Apr 26, 2001
Apr 26, 2001
675
Jul 10, 2006
Jul 10, 2006
676
677
678
679
680
for (i = 0; i < ncolors; ++i) {
output[i].r = gamma[0 * 256 + colors[i].r] >> 8;
output[i].g = gamma[1 * 256 + colors[i].g] >> 8;
output[i].b = gamma[2 * 256 + colors[i].b] >> 8;
}
Apr 26, 2001
Apr 26, 2001
681
682
683
}
/* Map from Palette to Palette */
Jul 10, 2006
Jul 10, 2006
684
685
static Uint8 *
Map1to1(SDL_Palette * src, SDL_Palette * dst, int *identical)
Apr 26, 2001
Apr 26, 2001
686
{
Jul 10, 2006
Jul 10, 2006
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
Uint8 *map;
int i;
if (identical) {
if (src->ncolors <= dst->ncolors) {
/* If an identical palette, no need to map */
if (src == dst
||
(SDL_memcmp
(src->colors, dst->colors,
src->ncolors * sizeof(SDL_Color)) == 0)) {
*identical = 1;
return (NULL);
}
}
*identical = 0;
}
map = (Uint8 *) SDL_malloc(src->ncolors);
if (map == NULL) {
SDL_OutOfMemory();
return (NULL);
}
for (i = 0; i < src->ncolors; ++i) {
map[i] = SDL_FindColor(dst,
src->colors[i].r, src->colors[i].g,
src->colors[i].b);
}
return (map);
Apr 26, 2001
Apr 26, 2001
715
}
Jul 10, 2006
Jul 10, 2006
716
Apr 26, 2001
Apr 26, 2001
717
/* Map from Palette to BitField */
Jul 10, 2006
Jul 10, 2006
718
static Uint8 *
Aug 18, 2007
Aug 18, 2007
719
720
Map1toN(SDL_PixelFormat * src, Uint8 Rmod, Uint8 Gmod, Uint8 Bmod, Uint8 Amod,
SDL_PixelFormat * dst)
Apr 26, 2001
Apr 26, 2001
721
{
Jul 10, 2006
Jul 10, 2006
722
723
724
725
726
727
728
729
730
731
732
733
734
735
Uint8 *map;
int i;
int bpp;
SDL_Palette *pal = src->palette;
bpp = ((dst->BytesPerPixel == 3) ? 4 : dst->BytesPerPixel);
map = (Uint8 *) SDL_malloc(pal->ncolors * bpp);
if (map == NULL) {
SDL_OutOfMemory();
return (NULL);
}
/* We memory copy to the pixel map so the endianness is preserved */
for (i = 0; i < pal->ncolors; ++i) {
Aug 17, 2007
Aug 17, 2007
736
Uint8 A = Amod;
Aug 18, 2007
Aug 18, 2007
737
738
739
Uint8 R = (Uint8) ((pal->colors[i].r * Rmod) / 255);
Uint8 G = (Uint8) ((pal->colors[i].g * Gmod) / 255);
Uint8 B = (Uint8) ((pal->colors[i].b * Bmod) / 255);
Aug 17, 2007
Aug 17, 2007
740
ASSEMBLE_RGBA(&map[i * bpp], dst->BytesPerPixel, dst, R, G, B, A);
Jul 10, 2006
Jul 10, 2006
741
742
}
return (map);
Apr 26, 2001
Apr 26, 2001
743
}
Jul 10, 2006
Jul 10, 2006
744
Apr 26, 2001
Apr 26, 2001
745
/* Map from BitField to Dithered-Palette to Palette */
Jul 10, 2006
Jul 10, 2006
746
747
static Uint8 *
MapNto1(SDL_PixelFormat * src, SDL_PixelFormat * dst, int *identical)
Apr 26, 2001
Apr 26, 2001
748
{
Jul 10, 2006
Jul 10, 2006
749
750
751
752
753
754
755
756
757
/* Generate a 256 color dither palette */
SDL_Palette dithered;
SDL_Color colors[256];
SDL_Palette *pal = dst->palette;
dithered.ncolors = 256;
SDL_DitherColors(colors, 8);
dithered.colors = colors;
return (Map1to1(&dithered, pal, identical));
Apr 26, 2001
Apr 26, 2001
758
759
}
Jul 10, 2006
Jul 10, 2006
760
761
SDL_BlitMap *
SDL_AllocBlitMap(void)
Apr 26, 2001
Apr 26, 2001
762
{
Jul 10, 2006
Jul 10, 2006
763
764
765
SDL_BlitMap *map;
/* Allocate the empty map */
Jul 22, 2006
Jul 22, 2006
766
map = (SDL_BlitMap *) SDL_calloc(1, sizeof(*map));
Jul 10, 2006
Jul 10, 2006
767
768
769
770
if (map == NULL) {
SDL_OutOfMemory();
return (NULL);
}
Aug 18, 2007
Aug 18, 2007
771
772
773
774
map->info.r = 0xFF;
map->info.g = 0xFF;
map->info.b = 0xFF;
map->info.a = 0xFF;
Jul 10, 2006
Jul 10, 2006
775
776
777
/* It's ready to go */
return (map);
Apr 26, 2001
Apr 26, 2001
778
}
Jul 10, 2006
Jul 10, 2006
779
780
781
void
SDL_InvalidateMap(SDL_BlitMap * map)
Apr 26, 2001
Apr 26, 2001
782
{
Jul 10, 2006
Jul 10, 2006
783
784
785
786
787
if (!map) {
return;
}
map->dst = NULL;
map->format_version = (unsigned int) -1;
Aug 18, 2007
Aug 18, 2007
788
789
790
if (map->info.table) {
SDL_free(map->info.table);
map->info.table = NULL;
Jul 10, 2006
Jul 10, 2006
791
}
Apr 26, 2001
Apr 26, 2001
792
}
Aug 27, 2008
Aug 27, 2008
793
Jul 10, 2006
Jul 10, 2006
794
795
int
SDL_MapSurface(SDL_Surface * src, SDL_Surface * dst)
Apr 26, 2001
Apr 26, 2001
796
{
Jul 10, 2006
Jul 10, 2006
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
SDL_PixelFormat *srcfmt;
SDL_PixelFormat *dstfmt;
SDL_BlitMap *map;
/* Clear out any previous mapping */
map = src->map;
if ((src->flags & SDL_RLEACCEL) == SDL_RLEACCEL) {
SDL_UnRLESurface(src, 1);
}
SDL_InvalidateMap(map);
/* Figure out what kind of mapping we're doing */
map->identity = 0;
srcfmt = src->format;
dstfmt = dst->format;
switch (srcfmt->BytesPerPixel) {
case 1:
switch (dstfmt->BytesPerPixel) {
case 1:
/* Palette --> Palette */
Aug 18, 2007
Aug 18, 2007
817
map->info.table =
Jul 10, 2006
Jul 10, 2006
818
819
Map1to1(srcfmt->palette, dstfmt->palette, &map->identity);
if (!map->identity) {
Aug 18, 2007
Aug 18, 2007
820
if (map->info.table == NULL) {
Jul 10, 2006
Jul 10, 2006
821
822
823
824
825
826
827
828
829
return (-1);
}
}
if (srcfmt->BitsPerPixel != dstfmt->BitsPerPixel)
map->identity = 0;
break;
default:
/* Palette --> BitField */
Aug 18, 2007
Aug 18, 2007
830
831
832
833
map->info.table =
Map1toN(srcfmt, src->map->info.r, src->map->info.g,
src->map->info.b, src->map->info.a, dstfmt);
if (map->info.table == NULL) {
Jul 10, 2006
Jul 10, 2006
834
835
836
837
838
839
840
841
842
return (-1);
}
break;
}
break;
default:
switch (dstfmt->BytesPerPixel) {
case 1:
/* BitField --> Palette */
Aug 18, 2007
Aug 18, 2007
843
map->info.table = MapNto1(srcfmt, dstfmt, &map->identity);
Jul 10, 2006
Jul 10, 2006
844
if (!map->identity) {
Aug 18, 2007
Aug 18, 2007
845
if (map->info.table == NULL) {
Jul 10, 2006
Jul 10, 2006
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
return (-1);
}
}
map->identity = 0; /* Don't optimize to copy */
break;
default:
/* BitField --> BitField */
if (FORMAT_EQUAL(srcfmt, dstfmt))
map->identity = 1;
break;
}
break;
}
map->dst = dst;
map->format_version = dst->format_version;
/* Choose your blitters wisely */
return (SDL_CalculateBlit(src));
Apr 26, 2001
Apr 26, 2001
865
}
Jul 10, 2006
Jul 10, 2006
866
867
868
void
SDL_FreeBlitMap(SDL_BlitMap * map)
Apr 26, 2001
Apr 26, 2001
869
{
Jul 10, 2006
Jul 10, 2006
870
871
872
873
if (map) {
SDL_InvalidateMap(map);
SDL_free(map);
}
Apr 26, 2001
Apr 26, 2001
874
}
Jul 10, 2006
Jul 10, 2006
875
876
/* vi: set ts=4 sw=4 expandtab: */