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

Latest commit

 

History

History
1013 lines (885 loc) · 26.3 KB

SDL_surface.c

File metadata and controls

1013 lines (885 loc) · 26.3 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 12, 2011
Feb 12, 2011
3
Copyright (C) 1997-2011 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
Feb 7, 2006
Feb 7, 2006
24
#include "SDL_video.h"
Jul 10, 2006
Jul 10, 2006
25
#include "SDL_compat.h"
Apr 26, 2001
Apr 26, 2001
26
27
28
29
30
#include "SDL_sysvideo.h"
#include "SDL_blit.h"
#include "SDL_RLEaccel_c.h"
#include "SDL_pixels_c.h"
Jan 19, 2006
Jan 19, 2006
31
Apr 26, 2001
Apr 26, 2001
32
33
34
35
/* Public routines */
/*
* Create an empty RGB surface of the appropriate depth
*/
Jul 10, 2006
Jul 10, 2006
36
37
38
39
SDL_Surface *
SDL_CreateRGBSurface(Uint32 flags,
int width, int height, int depth,
Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
Apr 26, 2001
Apr 26, 2001
40
{
Jul 10, 2006
Jul 10, 2006
41
SDL_Surface *surface;
Feb 13, 2011
Feb 13, 2011
42
Uint32 format;
Jul 10, 2006
Jul 10, 2006
43
Nov 29, 2008
Nov 29, 2008
44
/* The flags are no longer used, make the compiler happy */
May 9, 2010
May 9, 2010
45
(void)flags;
Nov 29, 2008
Nov 29, 2008
46
Feb 13, 2011
Feb 13, 2011
47
48
49
50
51
52
53
/* Get the pixel format */
format = SDL_MasksToPixelFormatEnum(depth, Rmask, Gmask, Bmask, Amask);
if (format == SDL_PIXELFORMAT_UNKNOWN) {
SDL_SetError("Unknown pixel format");
return NULL;
}
Jul 10, 2006
Jul 10, 2006
54
/* Allocate the surface */
Jul 22, 2006
Jul 22, 2006
55
surface = (SDL_Surface *) SDL_calloc(1, sizeof(*surface));
Jul 10, 2006
Jul 10, 2006
56
57
58
59
60
if (surface == NULL) {
SDL_OutOfMemory();
return NULL;
}
Feb 13, 2011
Feb 13, 2011
61
surface->format = SDL_AllocFormat(format);
Jul 10, 2006
Jul 10, 2006
62
63
64
65
66
67
68
69
70
if (!surface->format) {
SDL_FreeSurface(surface);
return NULL;
}
surface->w = width;
surface->h = height;
surface->pitch = SDL_CalculatePitch(surface);
SDL_SetClipRect(surface, NULL);
Feb 13, 2011
Feb 13, 2011
71
if (SDL_ISPIXELFORMAT_INDEXED(surface->format->format)) {
Jul 10, 2006
Jul 10, 2006
72
73
74
75
76
77
SDL_Palette *palette =
SDL_AllocPalette((1 << surface->format->BitsPerPixel));
if (!palette) {
SDL_FreeSurface(surface);
return NULL;
}
Mar 7, 2011
Mar 7, 2011
78
if (palette->ncolors == 2) {
Jul 10, 2006
Jul 10, 2006
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
/* Create a black and white bitmap palette */
palette->colors[0].r = 0xFF;
palette->colors[0].g = 0xFF;
palette->colors[0].b = 0xFF;
palette->colors[1].r = 0x00;
palette->colors[1].g = 0x00;
palette->colors[1].b = 0x00;
}
SDL_SetSurfacePalette(surface, palette);
SDL_FreePalette(palette);
}
/* Get the pixels */
if (surface->w && surface->h) {
surface->pixels = SDL_malloc(surface->h * surface->pitch);
if (!surface->pixels) {
SDL_FreeSurface(surface);
SDL_OutOfMemory();
return NULL;
}
/* This is important for bitmaps */
SDL_memset(surface->pixels, 0, surface->h * surface->pitch);
}
/* Allocate an empty mapping */
surface->map = SDL_AllocBlitMap();
if (!surface->map) {
SDL_FreeSurface(surface);
return NULL;
}
Aug 18, 2007
Aug 18, 2007
110
111
/* By default surface with an alpha mask are set up for blending */
if (Amask) {
Dec 20, 2008
Dec 20, 2008
112
SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_BLEND);
Aug 18, 2007
Aug 18, 2007
113
114
}
Jul 10, 2006
Jul 10, 2006
115
116
117
/* The surface is ready to go */
surface->refcount = 1;
return surface;
Apr 26, 2001
Apr 26, 2001
118
}
Jul 10, 2006
Jul 10, 2006
119
Apr 26, 2001
Apr 26, 2001
120
121
122
/*
* Create an RGB surface from an existing memory buffer
*/
Jul 10, 2006
Jul 10, 2006
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
SDL_Surface *
SDL_CreateRGBSurfaceFrom(void *pixels,
int width, int height, int depth, int pitch,
Uint32 Rmask, Uint32 Gmask, Uint32 Bmask,
Uint32 Amask)
{
SDL_Surface *surface;
surface =
SDL_CreateRGBSurface(0, 0, 0, depth, Rmask, Gmask, Bmask, Amask);
if (surface != NULL) {
surface->flags |= SDL_PREALLOC;
surface->pixels = pixels;
surface->w = width;
surface->h = height;
surface->pitch = pitch;
SDL_SetClipRect(surface, NULL);
}
return surface;
}
int
SDL_SetSurfacePalette(SDL_Surface * surface, SDL_Palette * palette)
Apr 26, 2001
Apr 26, 2001
146
{
Feb 13, 2011
Feb 13, 2011
147
if (!surface) {
Jul 10, 2006
Jul 10, 2006
148
149
150
SDL_SetError("SDL_SetSurfacePalette() passed a NULL surface");
return -1;
}
Feb 13, 2011
Feb 13, 2011
151
return SDL_SetPixelFormatPalette(surface->format, palette);
Apr 26, 2001
Apr 26, 2001
152
}
Jul 10, 2006
Jul 10, 2006
153
Aug 18, 2007
Aug 18, 2007
154
155
int
SDL_SetSurfaceRLE(SDL_Surface * surface, int flag)
Apr 26, 2001
Apr 26, 2001
156
{
Aug 18, 2007
Aug 18, 2007
157
int flags;
Aug 18, 2007
Aug 18, 2007
158
159
160
161
162
if (!surface) {
return -1;
}
Aug 18, 2007
Aug 18, 2007
163
flags = surface->map->info.flags;
Aug 18, 2007
Aug 18, 2007
164
if (flag) {
Aug 18, 2007
Aug 18, 2007
165
surface->map->info.flags |= SDL_COPY_RLE_DESIRED;
Jul 10, 2006
Jul 10, 2006
166
} else {
Aug 18, 2007
Aug 18, 2007
167
surface->map->info.flags &= ~SDL_COPY_RLE_DESIRED;
Aug 18, 2007
Aug 18, 2007
168
}
Aug 18, 2007
Aug 18, 2007
169
if (surface->map->info.flags != flags) {
Aug 18, 2007
Aug 18, 2007
170
SDL_InvalidateMap(surface->map);
Jul 10, 2006
Jul 10, 2006
171
}
Aug 18, 2007
Aug 18, 2007
172
173
return 0;
}
Jul 10, 2006
Jul 10, 2006
174
Aug 18, 2007
Aug 18, 2007
175
int
Dec 14, 2009
Dec 14, 2009
176
SDL_SetColorKey(SDL_Surface * surface, int flag, Uint32 key)
Aug 18, 2007
Aug 18, 2007
177
178
179
180
181
{
int flags;
if (!surface) {
return -1;
Jul 10, 2006
Jul 10, 2006
182
183
}
Aug 18, 2007
Aug 18, 2007
184
185
if (flag & SDL_RLEACCEL) {
SDL_SetSurfaceRLE(surface, 1);
Jul 10, 2006
Jul 10, 2006
186
187
}
Aug 18, 2007
Aug 18, 2007
188
flags = surface->map->info.flags;
Jul 10, 2006
Jul 10, 2006
189
if (flag) {
Aug 18, 2007
Aug 18, 2007
190
191
surface->map->info.flags |= SDL_COPY_COLORKEY;
surface->map->info.colorkey = key;
Jul 10, 2006
Jul 10, 2006
192
} else {
Aug 18, 2007
Aug 18, 2007
193
surface->map->info.flags &= ~SDL_COPY_COLORKEY;
Jul 10, 2006
Jul 10, 2006
194
}
Aug 18, 2007
Aug 18, 2007
195
196
197
if (surface->map->info.flags != flags) {
SDL_InvalidateMap(surface->map);
}
Aug 18, 2007
Aug 18, 2007
198
199
200
201
202
203
204
205
/* Compatibility mode */
if (surface->map->info.flags & SDL_COPY_COLORKEY) {
surface->flags |= SDL_SRCCOLORKEY;
} else {
surface->flags &= ~SDL_SRCCOLORKEY;
}
Aug 18, 2007
Aug 18, 2007
206
return 0;
Apr 26, 2001
Apr 26, 2001
207
}
Jul 10, 2006
Jul 10, 2006
208
Apr 3, 2009
Apr 3, 2009
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
int
SDL_GetColorKey(SDL_Surface * surface, Uint32 * key)
{
if (!surface) {
return -1;
}
if (!(surface->map->info.flags & SDL_COPY_COLORKEY)) {
return -1;
}
if (key) {
*key = surface->map->info.colorkey;
}
return 0;
}
Nov 25, 2008
Nov 25, 2008
226
/* This is a fairly slow function to switch from colorkey to alpha */
Nov 25, 2008
Nov 25, 2008
227
static void
Nov 25, 2008
Nov 25, 2008
228
SDL_ConvertColorkeyToAlpha(SDL_Surface * surface)
Nov 25, 2008
Nov 25, 2008
229
{
Nov 25, 2008
Nov 25, 2008
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
int x, y;
if (!surface) {
return;
}
if (!(surface->map->info.flags & SDL_COPY_COLORKEY) ||
!surface->format->Amask) {
return;
}
SDL_LockSurface(surface);
switch (surface->format->BytesPerPixel) {
case 2:
{
Uint16 *row, *spot;
Uint16 ckey = (Uint16) surface->map->info.colorkey;
Uint16 mask = (Uint16) (~surface->format->Amask);
row = (Uint16 *) surface->pixels;
for (y = surface->h; y--;) {
spot = row;
for (x = surface->w; x--;) {
if (*spot == ckey) {
*spot &= mask;
}
++spot;
}
row += surface->pitch / 2;
}
}
break;
case 3:
/* FIXME */
break;
case 4:
{
Uint32 *row, *spot;
Uint32 ckey = surface->map->info.colorkey;
Uint32 mask = ~surface->format->Amask;
row = (Uint32 *) surface->pixels;
for (y = surface->h; y--;) {
spot = row;
for (x = surface->w; x--;) {
if (*spot == ckey) {
*spot &= mask;
}
++spot;
}
row += surface->pitch / 4;
}
}
break;
}
SDL_UnlockSurface(surface);
SDL_SetColorKey(surface, 0, 0);
Dec 20, 2008
Dec 20, 2008
290
SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_BLEND);
Nov 25, 2008
Nov 25, 2008
291
292
}
Aug 18, 2007
Aug 18, 2007
293
294
int
SDL_SetSurfaceColorMod(SDL_Surface * surface, Uint8 r, Uint8 g, Uint8 b)
Apr 26, 2001
Apr 26, 2001
295
{
Aug 18, 2007
Aug 18, 2007
296
297
298
299
300
301
302
303
304
305
306
307
308
int flags;
if (!surface) {
return -1;
}
surface->map->info.r = r;
surface->map->info.g = g;
surface->map->info.b = b;
flags = surface->map->info.flags;
if (r != 0xFF || g != 0xFF || b != 0xFF) {
surface->map->info.flags |= SDL_COPY_MODULATE_COLOR;
Jul 10, 2006
Jul 10, 2006
309
} else {
Aug 18, 2007
Aug 18, 2007
310
311
312
313
surface->map->info.flags &= ~SDL_COPY_MODULATE_COLOR;
}
if (surface->map->info.flags != flags) {
SDL_InvalidateMap(surface->map);
Jul 10, 2006
Jul 10, 2006
314
}
Aug 18, 2007
Aug 18, 2007
315
316
317
return 0;
}
Jul 10, 2006
Jul 10, 2006
318
Aug 18, 2007
Aug 18, 2007
319
320
int
SDL_GetSurfaceColorMod(SDL_Surface * surface, Uint8 * r, Uint8 * g, Uint8 * b)
Aug 18, 2007
Aug 18, 2007
321
322
323
{
if (!surface) {
return -1;
Jul 10, 2006
Jul 10, 2006
324
325
}
Aug 18, 2007
Aug 18, 2007
326
327
328
329
330
331
332
333
334
335
336
if (r) {
*r = surface->map->info.r;
}
if (g) {
*g = surface->map->info.g;
}
if (b) {
*b = surface->map->info.b;
}
return 0;
}
Jul 10, 2006
Jul 10, 2006
337
Aug 18, 2007
Aug 18, 2007
338
339
int
SDL_SetSurfaceAlphaMod(SDL_Surface * surface, Uint8 alpha)
Aug 18, 2007
Aug 18, 2007
340
341
342
343
344
345
346
347
348
349
350
351
{
int flags;
if (!surface) {
return -1;
}
surface->map->info.a = alpha;
flags = surface->map->info.flags;
if (alpha != 0xFF) {
surface->map->info.flags |= SDL_COPY_MODULATE_ALPHA;
Jul 10, 2006
Jul 10, 2006
352
} else {
Aug 18, 2007
Aug 18, 2007
353
354
355
surface->map->info.flags &= ~SDL_COPY_MODULATE_ALPHA;
}
if (surface->map->info.flags != flags) {
Jul 10, 2006
Jul 10, 2006
356
357
SDL_InvalidateMap(surface->map);
}
Aug 18, 2007
Aug 18, 2007
358
return 0;
Apr 26, 2001
Apr 26, 2001
359
}
Aug 1, 2002
Aug 1, 2002
360
Aug 18, 2007
Aug 18, 2007
361
362
int
SDL_GetSurfaceAlphaMod(SDL_Surface * surface, Uint8 * alpha)
Jul 10, 2006
Jul 10, 2006
363
{
Aug 18, 2007
Aug 18, 2007
364
365
366
367
368
369
370
371
372
if (!surface) {
return -1;
}
if (alpha) {
*alpha = surface->map->info.a;
}
return 0;
}
Jul 10, 2006
Jul 10, 2006
373
Aug 18, 2007
Aug 18, 2007
374
int
Dec 12, 2010
Dec 12, 2010
375
SDL_SetSurfaceBlendMode(SDL_Surface * surface, SDL_BlendMode blendMode)
Aug 18, 2007
Aug 18, 2007
376
377
378
379
{
int flags, status;
if (!surface) {
Jul 10, 2006
Jul 10, 2006
380
381
return -1;
}
Aug 18, 2007
Aug 18, 2007
382
383
384
status = 0;
flags = surface->map->info.flags;
Feb 5, 2011
Feb 5, 2011
385
386
surface->map->info.flags &=
~(SDL_COPY_BLEND | SDL_COPY_ADD | SDL_COPY_MOD);
Aug 18, 2007
Aug 18, 2007
387
switch (blendMode) {
Dec 20, 2008
Dec 20, 2008
388
case SDL_BLENDMODE_NONE:
Aug 18, 2007
Aug 18, 2007
389
break;
Dec 20, 2008
Dec 20, 2008
390
case SDL_BLENDMODE_BLEND:
Aug 18, 2007
Aug 18, 2007
391
392
surface->map->info.flags |= SDL_COPY_BLEND;
break;
Dec 20, 2008
Dec 20, 2008
393
case SDL_BLENDMODE_ADD:
Aug 18, 2007
Aug 18, 2007
394
395
surface->map->info.flags |= SDL_COPY_ADD;
break;
Feb 5, 2011
Feb 5, 2011
396
397
398
case SDL_BLENDMODE_MOD:
surface->map->info.flags |= SDL_COPY_MOD;
break;
Aug 18, 2007
Aug 18, 2007
399
400
401
402
403
404
405
406
default:
SDL_Unsupported();
status = -1;
break;
}
if (surface->map->info.flags != flags) {
SDL_InvalidateMap(surface->map);
Jul 10, 2006
Jul 10, 2006
407
}
Aug 18, 2007
Aug 18, 2007
408
409
410
411
412
413
414
415
/* Compatibility mode */
if (surface->map->info.flags & SDL_COPY_BLEND) {
surface->flags |= SDL_SRCALPHA;
} else {
surface->flags &= ~SDL_SRCALPHA;
}
Aug 18, 2007
Aug 18, 2007
416
417
418
return status;
}
Aug 18, 2007
Aug 18, 2007
419
int
Dec 12, 2010
Dec 12, 2010
420
SDL_GetSurfaceBlendMode(SDL_Surface * surface, SDL_BlendMode *blendMode)
Aug 18, 2007
Aug 18, 2007
421
422
423
{
if (!surface) {
return -1;
Jul 10, 2006
Jul 10, 2006
424
}
Aug 1, 2002
Aug 1, 2002
425
Aug 18, 2007
Aug 18, 2007
426
427
if (!blendMode) {
return 0;
Jul 10, 2006
Jul 10, 2006
428
}
Aug 18, 2007
Aug 18, 2007
429
Feb 5, 2011
Feb 5, 2011
430
431
switch (surface->map->
info.flags & (SDL_COPY_BLEND | SDL_COPY_ADD | SDL_COPY_MOD)) {
Aug 18, 2007
Aug 18, 2007
432
case SDL_COPY_BLEND:
Dec 20, 2008
Dec 20, 2008
433
*blendMode = SDL_BLENDMODE_BLEND;
Aug 18, 2007
Aug 18, 2007
434
435
break;
case SDL_COPY_ADD:
Dec 20, 2008
Dec 20, 2008
436
*blendMode = SDL_BLENDMODE_ADD;
Aug 18, 2007
Aug 18, 2007
437
break;
Feb 5, 2011
Feb 5, 2011
438
439
440
case SDL_COPY_MOD:
*blendMode = SDL_BLENDMODE_MOD;
break;
Aug 18, 2007
Aug 18, 2007
441
default:
Dec 20, 2008
Dec 20, 2008
442
*blendMode = SDL_BLENDMODE_NONE;
Aug 18, 2007
Aug 18, 2007
443
break;
Jul 10, 2006
Jul 10, 2006
444
}
Aug 18, 2007
Aug 18, 2007
445
446
447
return 0;
}
Jul 10, 2006
Jul 10, 2006
448
449
SDL_bool
SDL_SetClipRect(SDL_Surface * surface, const SDL_Rect * rect)
Apr 26, 2001
Apr 26, 2001
450
{
Jul 10, 2006
Jul 10, 2006
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
SDL_Rect full_rect;
/* Don't do anything if there's no surface to act on */
if (!surface) {
return SDL_FALSE;
}
/* Set up the full surface rectangle */
full_rect.x = 0;
full_rect.y = 0;
full_rect.w = surface->w;
full_rect.h = surface->h;
/* Set the clipping rectangle */
if (!rect) {
surface->clip_rect = full_rect;
Jan 7, 2011
Jan 7, 2011
467
return SDL_TRUE;
Jul 10, 2006
Jul 10, 2006
468
469
}
return SDL_IntersectRect(rect, &full_rect, &surface->clip_rect);
Apr 26, 2001
Apr 26, 2001
470
}
Jul 10, 2006
Jul 10, 2006
471
472
473
void
SDL_GetClipRect(SDL_Surface * surface, SDL_Rect * rect)
Apr 26, 2001
Apr 26, 2001
474
{
Jul 10, 2006
Jul 10, 2006
475
476
477
if (surface && rect) {
*rect = surface->clip_rect;
}
Apr 26, 2001
Apr 26, 2001
478
}
Jul 10, 2006
Jul 10, 2006
479
Apr 26, 2001
Apr 26, 2001
480
481
482
483
484
485
486
487
488
489
490
/*
* Set up a blit between two surfaces -- split into three parts:
* The upper part, SDL_UpperBlit(), performs clipping and rectangle
* verification. The lower part is a pointer to a low level
* accelerated blitting function.
*
* These parts are separated out and each used internally by this
* library in the optimimum places. They are exported so that if
* you know exactly what you are doing, you can optimize your code
* by calling the one(s) you need.
*/
Jul 10, 2006
Jul 10, 2006
491
492
493
int
SDL_LowerBlit(SDL_Surface * src, SDL_Rect * srcrect,
SDL_Surface * dst, SDL_Rect * dstrect)
Apr 26, 2001
Apr 26, 2001
494
{
Jul 10, 2006
Jul 10, 2006
495
496
/* Check to make sure the blit mapping is valid */
if ((src->map->dst != dst) ||
Feb 13, 2011
Feb 13, 2011
497
498
(dst->format->palette &&
src->map->palette_version != dst->format->palette->version)) {
Jul 10, 2006
Jul 10, 2006
499
500
501
if (SDL_MapSurface(src, dst) < 0) {
return (-1);
}
Mar 14, 2008
Mar 14, 2008
502
/* just here for debugging */
Mar 14, 2008
Mar 14, 2008
503
504
505
506
/* printf */
/* ("src = 0x%08X src->flags = %08X src->map->info.flags = %08x\ndst = 0x%08X dst->flags = %08X dst->map->info.flags = %08X\nsrc->map->blit = 0x%08x\n", */
/* src, dst->flags, src->map->info.flags, dst, dst->flags, */
/* dst->map->info.flags, src->map->blit); */
Jul 10, 2006
Jul 10, 2006
507
}
Aug 17, 2007
Aug 17, 2007
508
return (src->map->blit(src, srcrect, dst, dstrect));
Apr 26, 2001
Apr 26, 2001
509
510
511
}
Jul 10, 2006
Jul 10, 2006
512
int
Jan 4, 2011
Jan 4, 2011
513
SDL_UpperBlit(SDL_Surface * src, const SDL_Rect * srcrect,
Jul 10, 2006
Jul 10, 2006
514
SDL_Surface * dst, SDL_Rect * dstrect)
Apr 26, 2001
Apr 26, 2001
515
{
Jul 10, 2006
Jul 10, 2006
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
SDL_Rect fulldst;
int srcx, srcy, w, h;
/* Make sure the surfaces aren't locked */
if (!src || !dst) {
SDL_SetError("SDL_UpperBlit: passed a NULL surface");
return (-1);
}
if (src->locked || dst->locked) {
SDL_SetError("Surfaces must not be locked during blit");
return (-1);
}
/* If the destination rectangle is NULL, use the entire dest surface */
if (dstrect == NULL) {
fulldst.x = fulldst.y = 0;
dstrect = &fulldst;
}
/* clip the source rectangle to the source surface */
if (srcrect) {
int maxw, maxh;
srcx = srcrect->x;
w = srcrect->w;
if (srcx < 0) {
w += srcx;
dstrect->x -= srcx;
srcx = 0;
}
maxw = src->w - srcx;
if (maxw < w)
w = maxw;
srcy = srcrect->y;
h = srcrect->h;
if (srcy < 0) {
h += srcy;
dstrect->y -= srcy;
srcy = 0;
}
maxh = src->h - srcy;
if (maxh < h)
h = maxh;
} else {
srcx = srcy = 0;
w = src->w;
h = src->h;
}
/* clip the destination rectangle against the clip rectangle */
{
SDL_Rect *clip = &dst->clip_rect;
int dx, dy;
dx = clip->x - dstrect->x;
if (dx > 0) {
w -= dx;
dstrect->x += dx;
srcx += dx;
}
dx = dstrect->x + w - clip->x - clip->w;
if (dx > 0)
w -= dx;
dy = clip->y - dstrect->y;
if (dy > 0) {
h -= dy;
dstrect->y += dy;
srcy += dy;
}
dy = dstrect->y + h - clip->y - clip->h;
if (dy > 0)
h -= dy;
}
if (w > 0 && h > 0) {
SDL_Rect sr;
sr.x = srcx;
sr.y = srcy;
sr.w = dstrect->w = w;
sr.h = dstrect->h = h;
return SDL_LowerBlit(src, &sr, dst, dstrect);
}
dstrect->w = dstrect->h = 0;
return 0;
Apr 26, 2001
Apr 26, 2001
603
604
}
Feb 14, 2011
Feb 14, 2011
605
int
Mar 14, 2011
Mar 14, 2011
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
SDL_UpperBlitScaled(SDL_Surface * src, const SDL_Rect * srcrect,
SDL_Surface * dst, SDL_Rect * dstrect)
{
SDL_Rect final_src, final_dst, fulldst;
/* Make sure the surfaces aren't locked */
if (!src || !dst) {
SDL_SetError("SDL_UpperBlitScaled: passed a NULL surface");
return (-1);
}
if (src->locked || dst->locked) {
SDL_SetError("Surfaces must not be locked during blit");
return (-1);
}
/* If the destination rectangle is NULL, use the entire dest surface */
if (dstrect == NULL) {
fulldst.x = fulldst.y = 0;
dstrect = &fulldst;
}
/* clip the source rectangle to the source surface */
if (srcrect) {
int maxw, maxh;
final_src.x = srcrect->x;
final_src.w = srcrect->w;
if (final_src.x < 0) {
final_src.w += final_src.x;
final_src.x = 0;
}
maxw = src->w - final_src.x;
if (maxw < final_src.w)
final_src.w = maxw;
final_src.y = srcrect->y;
final_src.h = srcrect->h;
if (final_src.y < 0) {
final_src.h += final_src.y;
final_src.y = 0;
}
maxh = src->h - final_src.y;
if (maxh < final_src.h)
final_src.h = maxh;
} else {
final_src.x = final_src.y = 0;
final_src.w = src->w;
final_src.h = src->h;
}
/* clip the destination rectangle against the clip rectangle */
if (dstrect) {
int maxw, maxh;
final_dst.x = dstrect->x;
final_dst.w = dstrect->w;
if (final_dst.x < 0) {
final_dst.w += final_dst.x;
final_dst.x = 0;
}
maxw = dst->w - final_dst.x;
if (maxw < final_dst.w)
final_dst.w = maxw;
final_dst.y = dstrect->y;
final_dst.h = dstrect->h;
if (final_dst.y < 0) {
final_dst.h += final_dst.y;
final_dst.y = 0;
}
maxh = dst->h - final_dst.y;
if (maxh < final_dst.h)
final_dst.h = maxh;
} else {
final_dst.x = final_dst.y = 0;
final_dst.w = dst->w;
final_dst.h = dst->h;
}
if (final_dst.w > 0 && final_dst.h > 0) {
return SDL_LowerBlitScaled(src, &final_src, dst, &final_dst);
}
return 0;
}
/**
* This is a semi-private blit function and it performs low-level surface
* scaled blitting only.
*/
int
SDL_LowerBlitScaled(SDL_Surface * src, SDL_Rect * srcrect,
SDL_Surface * dst, SDL_Rect * dstrect)
Feb 14, 2011
Feb 14, 2011
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
{
/* Save off the original dst width, height */
int dstW = dstrect->w;
int dstH = dstrect->h;
SDL_Rect final_dst = *dstrect;
SDL_Rect final_src = *srcrect;
/* Clip the dst surface to the dstrect */
SDL_SetClipRect( dst, &final_dst );
/* Did the dst width change? */
if ( dstW != dst->clip_rect.w ) {
/* scale the src width appropriately */
final_src.w = final_src.w * dst->clip_rect.w / dstW;
}
/* Did the dst height change? */
if ( dstH != dst->clip_rect.h ) {
/* scale the src width appropriately */
final_src.h = final_src.h * dst->clip_rect.h / dstH;
}
/* Clip the src surface to the srcrect */
SDL_SetClipRect( src, &final_src );
src->map->info.flags |= SDL_COPY_NEAREST;
if ( src->format->format == dst->format->format && !SDL_ISPIXELFORMAT_INDEXED(src->format->format) ) {
return SDL_SoftStretch( src, &final_src, dst, &final_dst );
} else {
return SDL_LowerBlit( src, &final_src, dst, &final_dst );
}
}
Apr 26, 2001
Apr 26, 2001
734
735
736
/*
* Lock a surface to directly access the pixels
*/
Jul 10, 2006
Jul 10, 2006
737
738
int
SDL_LockSurface(SDL_Surface * surface)
Apr 26, 2001
Apr 26, 2001
739
{
Jul 10, 2006
Jul 10, 2006
740
741
742
743
744
745
746
747
748
749
750
751
752
if (!surface->locked) {
/* Perform the lock */
if (surface->flags & SDL_RLEACCEL) {
SDL_UnRLESurface(surface, 1);
surface->flags |= SDL_RLEACCEL; /* save accel'd state */
}
}
/* Increment the surface lock count, for recursive locks */
++surface->locked;
/* Ready to go.. */
return (0);
Apr 26, 2001
Apr 26, 2001
753
}
Jul 10, 2006
Jul 10, 2006
754
Apr 26, 2001
Apr 26, 2001
755
756
757
/*
* Unlock a previously locked surface
*/
Jul 10, 2006
Jul 10, 2006
758
759
void
SDL_UnlockSurface(SDL_Surface * surface)
Apr 26, 2001
Apr 26, 2001
760
{
Jul 10, 2006
Jul 10, 2006
761
762
763
764
765
766
767
768
769
770
/* Only perform an unlock if we are locked */
if (!surface->locked || (--surface->locked > 0)) {
return;
}
/* Update RLE encoded surface with new data */
if ((surface->flags & SDL_RLEACCEL) == SDL_RLEACCEL) {
surface->flags &= ~SDL_RLEACCEL; /* stop lying */
SDL_RLESurface(surface);
}
Apr 26, 2001
Apr 26, 2001
771
772
773
774
775
}
/*
* Convert a surface into the specified pixel format.
*/
Jul 10, 2006
Jul 10, 2006
776
SDL_Surface *
Nov 29, 2008
Nov 29, 2008
777
778
SDL_ConvertSurface(SDL_Surface * surface, SDL_PixelFormat * format,
Uint32 flags)
Apr 26, 2001
Apr 26, 2001
779
{
Jul 10, 2006
Jul 10, 2006
780
SDL_Surface *convert;
Aug 18, 2007
Aug 18, 2007
781
Uint32 copy_flags;
Jul 10, 2006
Jul 10, 2006
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
SDL_Rect bounds;
/* Check for empty destination palette! (results in empty image) */
if (format->palette != NULL) {
int i;
for (i = 0; i < format->palette->ncolors; ++i) {
if ((format->palette->colors[i].r != 0xFF) ||
(format->palette->colors[i].g != 0xFF) ||
(format->palette->colors[i].b != 0xFF))
break;
}
if (i == format->palette->ncolors) {
SDL_SetError("Empty destination palette");
return (NULL);
}
}
/* Create a new surface with the desired format */
Nov 29, 2008
Nov 29, 2008
800
convert = SDL_CreateRGBSurface(flags, surface->w, surface->h,
Jul 10, 2006
Jul 10, 2006
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
format->BitsPerPixel, format->Rmask,
format->Gmask, format->Bmask,
format->Amask);
if (convert == NULL) {
return (NULL);
}
/* Copy the palette if any */
if (format->palette && convert->format->palette) {
SDL_memcpy(convert->format->palette->colors,
format->palette->colors,
format->palette->ncolors * sizeof(SDL_Color));
convert->format->palette->ncolors = format->palette->ncolors;
}
Aug 18, 2007
Aug 18, 2007
816
817
818
/* Save the original copy flags */
copy_flags = surface->map->info.flags;
surface->map->info.flags = 0;
Jul 10, 2006
Jul 10, 2006
819
820
821
822
823
824
825
826
827
/* Copy over the image data */
bounds.x = 0;
bounds.y = 0;
bounds.w = surface->w;
bounds.h = surface->h;
SDL_LowerBlit(surface, &bounds, convert, &bounds);
/* Clean up the original surface, and update converted surface */
Dec 2, 2008
Dec 2, 2008
828
829
830
831
832
833
834
835
836
837
convert->map->info.r = surface->map->info.r;
convert->map->info.g = surface->map->info.g;
convert->map->info.b = surface->map->info.b;
convert->map->info.a = surface->map->info.a;
convert->map->info.flags =
(copy_flags &
~(SDL_COPY_COLORKEY | SDL_COPY_BLEND
| SDL_COPY_RLE_DESIRED | SDL_COPY_RLE_COLORKEY |
SDL_COPY_RLE_ALPHAKEY));
surface->map->info.flags = copy_flags;
Aug 18, 2007
Aug 18, 2007
838
839
840
if (copy_flags & SDL_COPY_COLORKEY) {
Uint8 keyR, keyG, keyB, keyA;
Aug 18, 2007
Aug 18, 2007
841
842
SDL_GetRGBA(surface->map->info.colorkey, surface->format, &keyR,
&keyG, &keyB, &keyA);
Aug 18, 2007
Aug 18, 2007
843
844
SDL_SetColorKey(convert, 1,
SDL_MapRGBA(convert->format, keyR, keyG, keyB, keyA));
Dec 2, 2008
Dec 2, 2008
845
/* This is needed when converting for 3D texture upload */
Nov 25, 2008
Nov 25, 2008
846
SDL_ConvertColorkeyToAlpha(convert);
Aug 18, 2007
Aug 18, 2007
847
}
Dec 2, 2008
Dec 2, 2008
848
SDL_SetClipRect(convert, &surface->clip_rect);
Aug 18, 2007
Aug 18, 2007
849
850
851
/* Enable alpha blending by default if the new surface has an
* alpha channel or alpha modulation */
Dec 2, 2008
Dec 2, 2008
852
if ((surface->format->Amask && format->Amask) ||
Jul 8, 2010
Jul 8, 2010
853
(copy_flags & (SDL_COPY_COLORKEY|SDL_COPY_MODULATE_ALPHA))) {
Dec 20, 2008
Dec 20, 2008
854
SDL_SetSurfaceBlendMode(convert, SDL_BLENDMODE_BLEND);
Jul 10, 2006
Jul 10, 2006
855
}
Dec 2, 2008
Dec 2, 2008
856
857
858
if ((copy_flags & SDL_COPY_RLE_DESIRED) || (flags & SDL_RLEACCEL)) {
SDL_SetSurfaceRLE(convert, SDL_RLEACCEL);
}
Jul 10, 2006
Jul 10, 2006
859
860
861
/* We're ready to go! */
return (convert);
Apr 26, 2001
Apr 26, 2001
862
863
}
Feb 22, 2011
Feb 22, 2011
864
865
866
867
868
SDL_Surface *
SDL_ConvertSurfaceFormat(SDL_Surface * surface, Uint32 pixel_format,
Uint32 flags)
{
SDL_PixelFormat *fmt;
Mar 27, 2011
Mar 27, 2011
869
SDL_Surface *convert = NULL;
Feb 22, 2011
Feb 22, 2011
870
871
872
873
874
875
876
877
878
fmt = SDL_AllocFormat(pixel_format);
if (fmt) {
convert = SDL_ConvertSurface(surface, fmt, flags);
SDL_FreeFormat(fmt);
}
return convert;
}
Nov 15, 2009
Nov 15, 2009
879
880
881
882
883
884
885
886
/*
* Create a surface on the stack for quick blit operations
*/
static __inline__ SDL_bool
SDL_CreateSurfaceOnStack(int width, int height, Uint32 pixel_format,
void * pixels, int pitch, SDL_Surface * surface,
SDL_PixelFormat * format, SDL_BlitMap * blitmap)
{
Feb 13, 2011
Feb 13, 2011
887
888
if (SDL_ISPIXELFORMAT_INDEXED(pixel_format)) {
SDL_SetError("Indexed pixel formats not supported");
Nov 15, 2009
Nov 15, 2009
889
890
return SDL_FALSE;
}
Feb 13, 2011
Feb 13, 2011
891
if (SDL_InitFormat(format, pixel_format) < 0) {
Nov 15, 2009
Nov 15, 2009
892
893
894
895
896
return SDL_FALSE;
}
SDL_zerop(surface);
surface->flags = SDL_PREALLOC;
Feb 13, 2011
Feb 13, 2011
897
surface->format = format;
Nov 15, 2009
Nov 15, 2009
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
surface->pixels = pixels;
surface->w = width;
surface->h = height;
surface->pitch = pitch;
/* We don't actually need to set up the clip rect for our purposes */
/*SDL_SetClipRect(surface, NULL);*/
/* Allocate an empty mapping */
SDL_zerop(blitmap);
blitmap->info.r = 0xFF;
blitmap->info.g = 0xFF;
blitmap->info.b = 0xFF;
blitmap->info.a = 0xFF;
surface->map = blitmap;
/* The surface is ready to go */
surface->refcount = 1;
return SDL_TRUE;
}
/*
* Copy a block of pixels of one format to another format
*/
int SDL_ConvertPixels(int width, int height,
Uint32 src_format, const void * src, int src_pitch,
Uint32 dst_format, void * dst, int dst_pitch)
{
SDL_Surface src_surface, dst_surface;
SDL_PixelFormat src_fmt, dst_fmt;
SDL_BlitMap src_blitmap, dst_blitmap;
SDL_Rect rect;
/* Fast path for same format copy */
if (src_format == dst_format) {
int bpp;
if (SDL_ISPIXELFORMAT_FOURCC(src_format)) {
switch (src_format) {
case SDL_PIXELFORMAT_YV12:
case SDL_PIXELFORMAT_IYUV:
case SDL_PIXELFORMAT_YUY2:
case SDL_PIXELFORMAT_UYVY:
case SDL_PIXELFORMAT_YVYU:
bpp = 2;
default:
SDL_SetError("Unknown FOURCC pixel format");
return -1;
}
} else {
bpp = SDL_BYTESPERPIXEL(src_format);
}
width *= bpp;
while (height-- > 0) {
SDL_memcpy(dst, src, width);
src = (Uint8*)src + src_pitch;
dst = (Uint8*)dst + dst_pitch;
}
return SDL_TRUE;
}
if (!SDL_CreateSurfaceOnStack(width, height, src_format, (void*)src,
src_pitch,
&src_surface, &src_fmt, &src_blitmap)) {
return -1;
}
if (!SDL_CreateSurfaceOnStack(width, height, dst_format, dst, dst_pitch,
&dst_surface, &dst_fmt, &dst_blitmap)) {
return -1;
}
/* Set up the rect and go! */
rect.x = 0;
rect.y = 0;
rect.w = width;
Nov 16, 2009
Nov 16, 2009
973
rect.h = height;
Nov 15, 2009
Nov 15, 2009
974
975
976
return SDL_LowerBlit(&src_surface, &rect, &dst_surface, &rect);
}
Apr 26, 2001
Apr 26, 2001
977
978
979
/*
* Free a surface created by the above function.
*/
Jul 10, 2006
Jul 10, 2006
980
981
void
SDL_FreeSurface(SDL_Surface * surface)
Apr 26, 2001
Apr 26, 2001
982
{
Jul 10, 2006
Jul 10, 2006
983
984
985
if (surface == NULL) {
return;
}
Feb 13, 2011
Feb 13, 2011
986
987
988
if (surface->flags & SDL_DONTFREE) {
return;
}
Jul 10, 2006
Jul 10, 2006
989
990
991
992
993
994
995
996
997
998
999
1000
if (--surface->refcount > 0) {
return;
}
while (surface->locked > 0) {
SDL_UnlockSurface(surface);
}
if (surface->flags & SDL_RLEACCEL) {
SDL_UnRLESurface(surface, 0);
}
if (surface->format) {
SDL_SetSurfacePalette(surface, NULL);
SDL_FreeFormat(surface->format);