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

Latest commit

 

History

History
954 lines (866 loc) · 27 KB

SDL_surface.c

File metadata and controls

954 lines (866 loc) · 27 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 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"
Apr 26, 2001
Apr 26, 2001
25
26
27
28
29
30
31
#include "SDL_sysvideo.h"
#include "SDL_cursor_c.h"
#include "SDL_blit.h"
#include "SDL_RLEaccel_c.h"
#include "SDL_pixels_c.h"
#include "SDL_leaks.h"
Jan 19, 2006
Jan 19, 2006
32
Apr 26, 2001
Apr 26, 2001
33
34
35
36
/* Public routines */
/*
* Create an empty RGB surface of the appropriate depth
*/
May 28, 2006
May 28, 2006
37
SDL_Surface *
May 29, 2006
May 29, 2006
38
39
40
SDL_CreateRGBSurface(Uint32 flags,
int width, int height, int depth,
Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
Apr 26, 2001
Apr 26, 2001
41
{
May 29, 2006
May 29, 2006
42
SDL_VideoDevice *_this = SDL_GetVideoDevice();
May 28, 2006
May 28, 2006
43
44
45
SDL_Surface *screen;
SDL_Surface *surface;
Jun 7, 2006
Jun 7, 2006
46
/* FIXME!! */
May 28, 2006
May 28, 2006
47
48
49
/* Make sure the size requested doesn't overflow our datatypes */
/* Next time I write a library like SDL, I'll use int for size. :) */
if (width >= 16384 || height >= 65536) {
May 29, 2006
May 29, 2006
50
SDL_SetError("Width or height is too large");
May 28, 2006
May 28, 2006
51
52
53
54
return (NULL);
}
/* Allocate the surface */
May 29, 2006
May 29, 2006
55
surface = (SDL_Surface *) SDL_malloc(sizeof(*surface));
May 28, 2006
May 28, 2006
56
if (surface == NULL) {
May 29, 2006
May 29, 2006
57
SDL_OutOfMemory();
May 28, 2006
May 28, 2006
58
59
return (NULL);
}
Jun 7, 2006
Jun 7, 2006
60
surface->flags = 0;
May 29, 2006
May 29, 2006
61
surface->format = SDL_AllocFormat(depth, Rmask, Gmask, Bmask, Amask);
May 28, 2006
May 28, 2006
62
if (surface->format == NULL) {
May 29, 2006
May 29, 2006
63
SDL_free(surface);
May 28, 2006
May 28, 2006
64
65
66
67
68
69
70
return (NULL);
}
if (Amask) {
surface->flags |= SDL_SRCALPHA;
}
surface->w = width;
surface->h = height;
May 29, 2006
May 29, 2006
71
surface->pitch = SDL_CalculatePitch(surface);
May 28, 2006
May 28, 2006
72
73
74
75
surface->pixels = NULL;
surface->hwdata = NULL;
surface->locked = 0;
surface->map = NULL;
May 29, 2006
May 29, 2006
76
77
SDL_SetClipRect(surface, NULL);
SDL_FormatChanged(surface);
May 28, 2006
May 28, 2006
78
79
/* Get the pixels */
Jun 7, 2006
Jun 7, 2006
80
81
82
83
84
85
if (surface->w && surface->h) {
surface->pixels = SDL_malloc(surface->h * surface->pitch);
if (surface->pixels == NULL) {
SDL_FreeSurface(surface);
SDL_OutOfMemory();
return NULL;
May 28, 2006
May 28, 2006
86
}
Jun 7, 2006
Jun 7, 2006
87
88
/* This is important for bitmaps */
SDL_memset(surface->pixels, 0, surface->h * surface->pitch);
May 28, 2006
May 28, 2006
89
90
91
}
/* Allocate an empty mapping */
May 29, 2006
May 29, 2006
92
surface->map = SDL_AllocBlitMap();
May 28, 2006
May 28, 2006
93
if (surface->map == NULL) {
May 29, 2006
May 29, 2006
94
SDL_FreeSurface(surface);
May 28, 2006
May 28, 2006
95
96
97
98
99
return (NULL);
}
/* The surface is ready to go */
surface->refcount = 1;
Apr 26, 2001
Apr 26, 2001
100
#ifdef CHECK_LEAKS
May 28, 2006
May 28, 2006
101
++surfaces_allocated;
Apr 26, 2001
Apr 26, 2001
102
#endif
May 28, 2006
May 28, 2006
103
return (surface);
Apr 26, 2001
Apr 26, 2001
104
}
May 28, 2006
May 28, 2006
105
Apr 26, 2001
Apr 26, 2001
106
107
108
/*
* Create an RGB surface from an existing memory buffer
*/
May 28, 2006
May 28, 2006
109
SDL_Surface *
May 29, 2006
May 29, 2006
110
111
112
113
SDL_CreateRGBSurfaceFrom(void *pixels,
int width, int height, int depth, int pitch,
Uint32 Rmask, Uint32 Gmask, Uint32 Bmask,
Uint32 Amask)
Apr 26, 2001
Apr 26, 2001
114
{
May 28, 2006
May 28, 2006
115
116
SDL_Surface *surface;
May 29, 2006
May 29, 2006
117
118
surface = SDL_CreateRGBSurface(SDL_SWSURFACE, 0, 0, depth,
Rmask, Gmask, Bmask, Amask);
May 28, 2006
May 28, 2006
119
120
121
122
123
124
if (surface != NULL) {
surface->flags |= SDL_PREALLOC;
surface->pixels = pixels;
surface->w = width;
surface->h = height;
surface->pitch = pitch;
May 29, 2006
May 29, 2006
125
SDL_SetClipRect(surface, NULL);
May 28, 2006
May 28, 2006
126
}
Jun 7, 2006
Jun 7, 2006
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
return surface;
}
SDL_Surface *
SDL_CreateRGBSurfaceFromTexture(SDL_TextureID textureID)
{
SDL_Surface *surface;
Uint32 format;
int w, h;
int bpp;
Uint32 Rmask, Gmask, Bmask, Amask;
if (SDL_QueryTexture(textureID, &format, NULL, &w, &h) < 0) {
return NULL;
}
if (!SDL_PixelFormatEnumToMasks
(format, &bpp, &Rmask, &Gmask, &Bmask, &Amask)) {
SDL_SetError("Unknown texture format");
return NULL;
}
surface = SDL_CreateRGBSurface(SDL_SWSURFACE, 0, 0, bpp,
Rmask, Gmask, Bmask, Amask);
if (surface != NULL) {
surface->flags |= (SDL_HWSURFACE | SDL_PREALLOC);
surface->w = width;
surface->h = height;
SDL_SetClipRect(surface, NULL);
}
return surface;
}
/*
* Set the palette in a blittable surface
*/
int
SDL_SetColors(SDL_Surface * surface, SDL_Color * colors, int firstcolor,
int ncolors)
{
SDL_Palette *pal;
int gotall;
int palsize;
/* Verify the parameters */
pal = surface->format->palette;
if (!pal) {
return 0; /* not a palettized surface */
}
gotall = 1;
palsize = 1 << surface->format->BitsPerPixel;
if (ncolors > (palsize - firstcolor)) {
ncolors = (palsize - firstcolor);
gotall = 0;
}
if (colors != (pal->colors + firstcolor)) {
SDL_memcpy(pal->colors + firstcolor, colors,
ncolors * sizeof(*colors));
}
SDL_FormatChanged(surface);
if (surface->flags & (SDL_SHADOW_SURFACE | SDL_SCREEN_SURFACE)) {
gotall &= SDL_SetScreenColors(surface, colors, firstcolor, ncolors);
}
return gotall;
Apr 26, 2001
Apr 26, 2001
193
}
May 28, 2006
May 28, 2006
194
Apr 26, 2001
Apr 26, 2001
195
196
197
/*
* Set the color key in a blittable surface
*/
May 28, 2006
May 28, 2006
198
int
May 29, 2006
May 29, 2006
199
SDL_SetColorKey(SDL_Surface * surface, Uint32 flag, Uint32 key)
Apr 26, 2001
Apr 26, 2001
200
{
May 28, 2006
May 28, 2006
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* Sanity check the flag as it gets passed in */
if (flag & SDL_SRCCOLORKEY) {
if (flag & (SDL_RLEACCEL | SDL_RLEACCELOK)) {
flag = (SDL_SRCCOLORKEY | SDL_RLEACCELOK);
} else {
flag = SDL_SRCCOLORKEY;
}
} else {
flag = 0;
}
/* Optimize away operations that don't change anything */
if ((flag == (surface->flags & (SDL_SRCCOLORKEY | SDL_RLEACCELOK))) &&
(key == surface->format->colorkey)) {
return (0);
}
/* UnRLE surfaces before we change the colorkey */
if (surface->flags & SDL_RLEACCEL) {
May 29, 2006
May 29, 2006
220
SDL_UnRLESurface(surface, 1);
May 28, 2006
May 28, 2006
221
222
223
}
if (flag) {
May 29, 2006
May 29, 2006
224
SDL_VideoDevice *_this = SDL_GetVideoDevice();
May 28, 2006
May 28, 2006
225
226
227
228
229
surface->flags |= SDL_SRCCOLORKEY;
surface->format->colorkey = key;
if ((surface->flags & SDL_HWACCEL) == SDL_HWACCEL) {
if ((_this->SetHWColorKey == NULL) ||
May 29, 2006
May 29, 2006
230
(_this->SetHWColorKey(_this, surface, key) < 0)) {
May 28, 2006
May 28, 2006
231
232
233
234
235
236
237
238
239
240
241
242
surface->flags &= ~SDL_HWACCEL;
}
}
if (flag & SDL_RLEACCELOK) {
surface->flags |= SDL_RLEACCELOK;
} else {
surface->flags &= ~SDL_RLEACCELOK;
}
} else {
surface->flags &= ~(SDL_SRCCOLORKEY | SDL_RLEACCELOK);
surface->format->colorkey = 0;
}
May 29, 2006
May 29, 2006
243
SDL_InvalidateMap(surface->map);
May 28, 2006
May 28, 2006
244
return (0);
Apr 26, 2001
Apr 26, 2001
245
}
May 28, 2006
May 28, 2006
246
Aug 1, 2002
Aug 1, 2002
247
/* This function sets the alpha channel of a surface */
May 28, 2006
May 28, 2006
248
int
May 29, 2006
May 29, 2006
249
SDL_SetAlpha(SDL_Surface * surface, Uint32 flag, Uint8 value)
Apr 26, 2001
Apr 26, 2001
250
{
May 28, 2006
May 28, 2006
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
Uint32 oldflags = surface->flags;
Uint32 oldalpha = surface->format->alpha;
/* Sanity check the flag as it gets passed in */
if (flag & SDL_SRCALPHA) {
if (flag & (SDL_RLEACCEL | SDL_RLEACCELOK)) {
flag = (SDL_SRCALPHA | SDL_RLEACCELOK);
} else {
flag = SDL_SRCALPHA;
}
} else {
flag = 0;
}
/* Optimize away operations that don't change anything */
if ((flag == (surface->flags & (SDL_SRCALPHA | SDL_RLEACCELOK))) &&
(!flag || value == oldalpha)) {
return (0);
}
if (!(flag & SDL_RLEACCELOK) && (surface->flags & SDL_RLEACCEL))
May 29, 2006
May 29, 2006
272
SDL_UnRLESurface(surface, 1);
May 28, 2006
May 28, 2006
273
274
if (flag) {
May 29, 2006
May 29, 2006
275
SDL_VideoDevice *_this = SDL_GetVideoDevice();
May 28, 2006
May 28, 2006
276
277
278
279
280
surface->flags |= SDL_SRCALPHA;
surface->format->alpha = value;
if ((surface->flags & SDL_HWACCEL) == SDL_HWACCEL) {
if ((_this->SetHWAlpha == NULL) ||
May 29, 2006
May 29, 2006
281
(_this->SetHWAlpha(_this, surface, value) < 0)) {
May 28, 2006
May 28, 2006
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
surface->flags &= ~SDL_HWACCEL;
}
}
if (flag & SDL_RLEACCELOK) {
surface->flags |= SDL_RLEACCELOK;
} else {
surface->flags &= ~SDL_RLEACCELOK;
}
} else {
surface->flags &= ~SDL_SRCALPHA;
surface->format->alpha = SDL_ALPHA_OPAQUE;
}
/*
* The representation for software surfaces is independent of
* per-surface alpha, so no need to invalidate the blit mapping
* if just the alpha value was changed. (If either is 255, we still
* need to invalidate.)
*/
if ((surface->flags & SDL_HWACCEL) == SDL_HWACCEL
|| oldflags != surface->flags
|| (((oldalpha + 1) ^ (value + 1)) & 0x100))
May 29, 2006
May 29, 2006
303
SDL_InvalidateMap(surface->map);
May 28, 2006
May 28, 2006
304
return (0);
Apr 26, 2001
Apr 26, 2001
305
}
Aug 1, 2002
Aug 1, 2002
306
May 28, 2006
May 28, 2006
307
int
May 29, 2006
May 29, 2006
308
SDL_SetAlphaChannel(SDL_Surface * surface, Uint8 value)
May 28, 2006
May 28, 2006
309
310
311
312
313
314
315
{
int row, col;
int offset;
Uint8 *buf;
if ((surface->format->Amask != 0xFF000000) &&
(surface->format->Amask != 0x000000FF)) {
May 29, 2006
May 29, 2006
316
SDL_SetError("Unsupported surface alpha mask format");
May 28, 2006
May 28, 2006
317
318
return -1;
}
Aug 1, 2002
Aug 1, 2002
319
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
May 28, 2006
May 28, 2006
320
321
322
323
324
if (surface->format->Amask == 0xFF000000) {
offset = 3;
} else {
offset = 0;
}
Aug 1, 2002
Aug 1, 2002
325
#else
May 28, 2006
May 28, 2006
326
327
328
329
330
if (surface->format->Amask == 0xFF000000) {
offset = 0;
} else {
offset = 3;
}
Aug 1, 2002
Aug 1, 2002
331
332
#endif /* Byte ordering */
May 28, 2006
May 28, 2006
333
/* Quickly set the alpha channel of an RGBA or ARGB surface */
May 29, 2006
May 29, 2006
334
335
if (SDL_MUSTLOCK(surface)) {
if (SDL_LockSurface(surface) < 0) {
May 28, 2006
May 28, 2006
336
337
338
339
340
341
342
343
344
345
346
347
return -1;
}
}
row = surface->h;
while (row--) {
col = surface->w;
buf = (Uint8 *) surface->pixels + row * surface->pitch + offset;
while (col--) {
*buf = value;
buf += 4;
}
}
May 29, 2006
May 29, 2006
348
349
if (SDL_MUSTLOCK(surface)) {
SDL_UnlockSurface(surface);
May 28, 2006
May 28, 2006
350
351
}
return 0;
Aug 1, 2002
Aug 1, 2002
352
}
Apr 26, 2001
Apr 26, 2001
353
354
355
356
357
/*
* A function to calculate the intersection of two rectangles:
* return true if the rectangles intersect, false otherwise
*/
May 28, 2006
May 28, 2006
358
static __inline__ SDL_bool
May 29, 2006
May 29, 2006
359
360
SDL_IntersectRect(const SDL_Rect * A, const SDL_Rect * B,
SDL_Rect * intersection)
Apr 26, 2001
Apr 26, 2001
361
{
May 28, 2006
May 28, 2006
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
int Amin, Amax, Bmin, Bmax;
/* Horizontal intersection */
Amin = A->x;
Amax = Amin + A->w;
Bmin = B->x;
Bmax = Bmin + B->w;
if (Bmin > Amin)
Amin = Bmin;
intersection->x = Amin;
if (Bmax < Amax)
Amax = Bmax;
intersection->w = Amax - Amin > 0 ? Amax - Amin : 0;
/* Vertical intersection */
Amin = A->y;
Amax = Amin + A->h;
Bmin = B->y;
Bmax = Bmin + B->h;
if (Bmin > Amin)
Amin = Bmin;
intersection->y = Amin;
if (Bmax < Amax)
Amax = Bmax;
intersection->h = Amax - Amin > 0 ? Amax - Amin : 0;
return (intersection->w && intersection->h);
Apr 26, 2001
Apr 26, 2001
389
}
May 28, 2006
May 28, 2006
390
Apr 26, 2001
Apr 26, 2001
391
392
393
/*
* Set the clipping rectangle for a blittable surface
*/
May 28, 2006
May 28, 2006
394
SDL_bool
May 29, 2006
May 29, 2006
395
SDL_SetClipRect(SDL_Surface * surface, const SDL_Rect * rect)
Apr 26, 2001
Apr 26, 2001
396
{
May 28, 2006
May 28, 2006
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
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;
return 1;
}
May 29, 2006
May 29, 2006
415
return SDL_IntersectRect(rect, &full_rect, &surface->clip_rect);
Apr 26, 2001
Apr 26, 2001
416
}
May 28, 2006
May 28, 2006
417
418
void
May 29, 2006
May 29, 2006
419
SDL_GetClipRect(SDL_Surface * surface, SDL_Rect * rect)
Apr 26, 2001
Apr 26, 2001
420
{
May 28, 2006
May 28, 2006
421
422
423
if (surface && rect) {
*rect = surface->clip_rect;
}
Apr 26, 2001
Apr 26, 2001
424
}
May 28, 2006
May 28, 2006
425
Apr 26, 2001
Apr 26, 2001
426
427
428
429
430
431
432
433
434
435
436
/*
* 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.
*/
May 28, 2006
May 28, 2006
437
int
May 29, 2006
May 29, 2006
438
439
SDL_LowerBlit(SDL_Surface * src, SDL_Rect * srcrect,
SDL_Surface * dst, SDL_Rect * dstrect)
Apr 26, 2001
Apr 26, 2001
440
{
May 28, 2006
May 28, 2006
441
442
443
444
445
SDL_blit do_blit;
/* Check to make sure the blit mapping is valid */
if ((src->map->dst != dst) ||
(src->map->dst->format_version != src->map->format_version)) {
May 29, 2006
May 29, 2006
446
if (SDL_MapSurface(src, dst) < 0) {
May 28, 2006
May 28, 2006
447
448
449
450
451
452
453
454
455
456
return (-1);
}
}
/* Figure out which blitter to use */
if ((src->flags & SDL_HWACCEL) == SDL_HWACCEL) {
do_blit = src->map->hw_blit;
} else {
do_blit = src->map->sw_blit;
}
May 29, 2006
May 29, 2006
457
return (do_blit(src, srcrect, dst, dstrect));
Apr 26, 2001
Apr 26, 2001
458
459
460
}
May 28, 2006
May 28, 2006
461
int
May 29, 2006
May 29, 2006
462
463
SDL_UpperBlit(SDL_Surface * src, SDL_Rect * srcrect,
SDL_Surface * dst, SDL_Rect * dstrect)
Apr 26, 2001
Apr 26, 2001
464
{
May 28, 2006
May 28, 2006
465
466
467
468
469
SDL_Rect fulldst;
int srcx, srcy, w, h;
/* Make sure the surfaces aren't locked */
if (!src || !dst) {
May 29, 2006
May 29, 2006
470
SDL_SetError("SDL_UpperBlit: passed a NULL surface");
May 28, 2006
May 28, 2006
471
472
473
return (-1);
}
if (src->locked || dst->locked) {
May 29, 2006
May 29, 2006
474
SDL_SetError("Surfaces must not be locked during blit");
May 28, 2006
May 28, 2006
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
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
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;
May 29, 2006
May 29, 2006
548
return SDL_LowerBlit(src, &sr, dst, dstrect);
May 28, 2006
May 28, 2006
549
550
551
}
dstrect->w = dstrect->h = 0;
return 0;
Apr 26, 2001
Apr 26, 2001
552
553
}
May 28, 2006
May 28, 2006
554
static int
May 29, 2006
May 29, 2006
555
SDL_FillRect1(SDL_Surface * dst, SDL_Rect * dstrect, Uint32 color)
Oct 15, 2002
Oct 15, 2002
556
{
May 28, 2006
May 28, 2006
557
/* FIXME: We have to worry about packing order.. *sigh* */
May 29, 2006
May 29, 2006
558
SDL_SetError("1-bpp rect fill not yet implemented");
May 28, 2006
May 28, 2006
559
return -1;
Oct 15, 2002
Oct 15, 2002
560
561
}
May 28, 2006
May 28, 2006
562
static int
May 29, 2006
May 29, 2006
563
SDL_FillRect4(SDL_Surface * dst, SDL_Rect * dstrect, Uint32 color)
Oct 15, 2002
Oct 15, 2002
564
{
May 28, 2006
May 28, 2006
565
/* FIXME: We have to worry about packing order.. *sigh* */
May 29, 2006
May 29, 2006
566
SDL_SetError("4-bpp rect fill not yet implemented");
May 28, 2006
May 28, 2006
567
return -1;
Oct 15, 2002
Oct 15, 2002
568
569
}
Apr 26, 2001
Apr 26, 2001
570
571
572
/*
* This function performs a fast fill of the given rectangle with 'color'
*/
May 28, 2006
May 28, 2006
573
int
May 29, 2006
May 29, 2006
574
SDL_FillRect(SDL_Surface * dst, SDL_Rect * dstrect, Uint32 color)
Apr 26, 2001
Apr 26, 2001
575
{
May 29, 2006
May 29, 2006
576
SDL_VideoDevice *_this = SDL_GetVideoDevice();
May 28, 2006
May 28, 2006
577
578
579
580
581
582
583
int x, y;
Uint8 *row;
/* This function doesn't work on surfaces < 8 bpp */
if (dst->format->BitsPerPixel < 8) {
switch (dst->format->BitsPerPixel) {
case 1:
May 29, 2006
May 29, 2006
584
return SDL_FillRect1(dst, dstrect, color);
May 28, 2006
May 28, 2006
585
586
break;
case 4:
May 29, 2006
May 29, 2006
587
return SDL_FillRect4(dst, dstrect, color);
May 28, 2006
May 28, 2006
588
589
break;
default:
May 29, 2006
May 29, 2006
590
SDL_SetError("Fill rect on unsupported surface format");
May 28, 2006
May 28, 2006
591
592
593
594
595
596
597
598
return (-1);
break;
}
}
/* If 'dstrect' == NULL, then fill the whole surface */
if (dstrect) {
/* Perform clipping */
May 29, 2006
May 29, 2006
599
if (!SDL_IntersectRect(dstrect, &dst->clip_rect, dstrect)) {
May 28, 2006
May 28, 2006
600
601
602
603
604
605
606
607
608
return (0);
}
} else {
dstrect = &dst->clip_rect;
}
/* Check for hardware acceleration */
if (((dst->flags & SDL_HWSURFACE) == SDL_HWSURFACE) &&
_this->info.blit_fill) {
May 29, 2006
May 29, 2006
609
return (_this->FillHWRect(_this, dst, dstrect, color));
May 28, 2006
May 28, 2006
610
611
612
}
/* Perform software fill */
May 29, 2006
May 29, 2006
613
if (SDL_LockSurface(dst) != 0) {
May 28, 2006
May 28, 2006
614
615
616
617
618
619
620
621
622
623
return (-1);
}
row = (Uint8 *) dst->pixels + dstrect->y * dst->pitch +
dstrect->x * dst->format->BytesPerPixel;
if (dst->format->palette || (color == 0)) {
x = dstrect->w * dst->format->BytesPerPixel;
if (!color && !((uintptr_t) row & 3) && !(x & 3)
&& !(dst->pitch & 3)) {
int n = x >> 2;
for (y = dstrect->h; y; --y) {
May 29, 2006
May 29, 2006
624
SDL_memset4(row, 0, n);
May 28, 2006
May 28, 2006
625
626
627
row += dst->pitch;
}
} else {
Apr 26, 2001
Apr 26, 2001
628
#ifdef __powerpc__
May 28, 2006
May 28, 2006
629
630
631
632
633
634
635
636
637
638
639
640
641
/*
* SDL_memset() on PPC (both glibc and codewarrior) uses
* the dcbz (Data Cache Block Zero) instruction, which
* causes an alignment exception if the destination is
* uncachable, so only use it on software surfaces
*/
if ((dst->flags & SDL_HWSURFACE) == SDL_HWSURFACE) {
if (dstrect->w >= 8) {
/*
* 64-bit stores are probably most
* efficient to uncached video memory
*/
double fill;
May 29, 2006
May 29, 2006
642
SDL_memset(&fill, color, (sizeof fill));
May 28, 2006
May 28, 2006
643
644
645
646
647
648
for (y = dstrect->h; y; y--) {
Uint8 *d = row;
unsigned n = x;
unsigned nn;
Uint8 c = color;
double f = fill;
May 29, 2006
May 29, 2006
649
while ((unsigned long) d & (sizeof(double) - 1)) {
May 28, 2006
May 28, 2006
650
651
652
*d++ = c;
n--;
}
May 29, 2006
May 29, 2006
653
nn = n / (sizeof(double) * 4);
May 28, 2006
May 28, 2006
654
655
656
657
658
while (nn) {
((double *) d)[0] = f;
((double *) d)[1] = f;
((double *) d)[2] = f;
((double *) d)[3] = f;
May 29, 2006
May 29, 2006
659
d += 4 * sizeof(double);
May 28, 2006
May 28, 2006
660
661
nn--;
}
May 29, 2006
May 29, 2006
662
663
n &= ~(sizeof(double) * 4 - 1);
nn = n / sizeof(double);
May 28, 2006
May 28, 2006
664
665
while (nn) {
*(double *) d = f;
May 29, 2006
May 29, 2006
666
d += sizeof(double);
May 28, 2006
May 28, 2006
667
668
nn--;
}
May 29, 2006
May 29, 2006
669
n &= ~(sizeof(double) - 1);
May 28, 2006
May 28, 2006
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
while (n) {
*d++ = c;
n--;
}
row += dst->pitch;
}
} else {
/* narrow boxes */
for (y = dstrect->h; y; y--) {
Uint8 *d = row;
Uint8 c = color;
int n = x;
while (n) {
*d++ = c;
n--;
}
row += dst->pitch;
}
}
} else
Apr 26, 2001
Apr 26, 2001
690
#endif /* __powerpc__ */
May 28, 2006
May 28, 2006
691
692
{
for (y = dstrect->h; y; y--) {
May 29, 2006
May 29, 2006
693
SDL_memset(row, color, x);
May 28, 2006
May 28, 2006
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
row += dst->pitch;
}
}
}
} else {
switch (dst->format->BytesPerPixel) {
case 2:
for (y = dstrect->h; y; --y) {
Uint16 *pixels = (Uint16 *) row;
Uint16 c = (Uint16) color;
Uint32 cc = (Uint32) c << 16 | c;
int n = dstrect->w;
if ((uintptr_t) pixels & 3) {
*pixels++ = c;
n--;
}
if (n >> 1)
May 29, 2006
May 29, 2006
711
SDL_memset4(pixels, cc, n >> 1);
May 28, 2006
May 28, 2006
712
713
714
715
716
717
718
719
720
721
722
723
724
if (n & 1)
pixels[n - 1] = c;
row += dst->pitch;
}
break;
case 3:
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
color <<= 8;
#endif
for (y = dstrect->h; y; --y) {
Uint8 *pixels = row;
for (x = dstrect->w; x; --x) {
May 29, 2006
May 29, 2006
725
SDL_memcpy(pixels, &color, 3);
May 28, 2006
May 28, 2006
726
727
728
729
730
731
732
733
pixels += 3;
}
row += dst->pitch;
}
break;
case 4:
for (y = dstrect->h; y; --y) {
May 29, 2006
May 29, 2006
734
SDL_memset4(row, color, dstrect->w);
May 28, 2006
May 28, 2006
735
736
737
738
739
row += dst->pitch;
}
break;
}
}
May 29, 2006
May 29, 2006
740
SDL_UnlockSurface(dst);
May 28, 2006
May 28, 2006
741
742
743
/* We're done! */
return (0);
Apr 26, 2001
Apr 26, 2001
744
745
746
747
748
}
/*
* Lock a surface to directly access the pixels
*/
May 28, 2006
May 28, 2006
749
int
May 29, 2006
May 29, 2006
750
SDL_LockSurface(SDL_Surface * surface)
Apr 26, 2001
Apr 26, 2001
751
{
May 28, 2006
May 28, 2006
752
753
754
if (!surface->locked) {
/* Perform the lock */
if (surface->flags & SDL_HWSURFACE) {
May 29, 2006
May 29, 2006
755
756
SDL_VideoDevice *_this = SDL_GetVideoDevice();
if (_this->LockHWSurface(_this, surface) < 0) {
May 28, 2006
May 28, 2006
757
758
759
760
return (-1);
}
}
if (surface->flags & SDL_RLEACCEL) {
May 29, 2006
May 29, 2006
761
SDL_UnRLESurface(surface, 1);
May 28, 2006
May 28, 2006
762
763
764
765
766
767
768
769
770
771
772
surface->flags |= SDL_RLEACCEL; /* save accel'd state */
}
/* This needs to be done here in case pixels changes value */
surface->pixels = (Uint8 *) surface->pixels + surface->offset;
}
/* Increment the surface lock count, for recursive locks */
++surface->locked;
/* Ready to go.. */
return (0);
Apr 26, 2001
Apr 26, 2001
773
}
May 28, 2006
May 28, 2006
774
Apr 26, 2001
Apr 26, 2001
775
776
777
/*
* Unlock a previously locked surface
*/
May 28, 2006
May 28, 2006
778
void
May 29, 2006
May 29, 2006
779
SDL_UnlockSurface(SDL_Surface * surface)
Apr 26, 2001
Apr 26, 2001
780
{
May 28, 2006
May 28, 2006
781
782
783
784
785
786
787
788
789
790
/* Only perform an unlock if we are locked */
if (!surface->locked || (--surface->locked > 0)) {
return;
}
/* Perform the unlock */
surface->pixels = (Uint8 *) surface->pixels - surface->offset;
/* Unlock hardware or accelerated surfaces */
if (surface->flags & SDL_HWSURFACE) {
May 29, 2006
May 29, 2006
791
792
SDL_VideoDevice *_this = SDL_GetVideoDevice();
_this->UnlockHWSurface(_this, surface);
May 28, 2006
May 28, 2006
793
794
795
796
} else {
/* Update RLE encoded surface with new data */
if ((surface->flags & SDL_RLEACCEL) == SDL_RLEACCEL) {
surface->flags &= ~SDL_RLEACCEL; /* stop lying */
May 29, 2006
May 29, 2006
797
SDL_RLESurface(surface);
May 28, 2006
May 28, 2006
798
799
}
}
Apr 26, 2001
Apr 26, 2001
800
801
802
803
804
}
/*
* Convert a surface into the specified pixel format.
*/
May 28, 2006
May 28, 2006
805
SDL_Surface *
May 29, 2006
May 29, 2006
806
807
SDL_ConvertSurface(SDL_Surface * surface,
SDL_PixelFormat * format, Uint32 flags)
Apr 26, 2001
Apr 26, 2001
808
{
May 28, 2006
May 28, 2006
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
SDL_Surface *convert;
Uint32 colorkey = 0;
Uint8 alpha = 0;
Uint32 surface_flags;
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 != 0) ||
(format->palette->colors[i].g != 0) ||
(format->palette->colors[i].b != 0))
break;
}
if (i == format->palette->ncolors) {
May 29, 2006
May 29, 2006
825
SDL_SetError("Empty destination palette");
May 28, 2006
May 28, 2006
826
827
828
829
830
831
832
return (NULL);
}
}
/* Only create hw surfaces with alpha channel if hw alpha blits
are supported */
if (format->Amask != 0 && (flags & SDL_HWSURFACE)) {
May 29, 2006
May 29, 2006
833
const SDL_VideoInfo *vi = SDL_GetVideoInfo();
May 28, 2006
May 28, 2006
834
835
836
837
838
if (!vi || !vi->blit_hw_A)
flags &= ~SDL_HWSURFACE;
}
/* Create a new surface with the desired format */
May 29, 2006
May 29, 2006
839
840
841
842
843
convert = SDL_CreateRGBSurface(flags,
surface->w, surface->h,
format->BitsPerPixel, format->Rmask,
format->Gmask, format->Bmask,
format->Amask);
May 28, 2006
May 28, 2006
844
845
846
847
848
849
if (convert == NULL) {
return (NULL);
}
/* Copy the palette if any */
if (format->palette && convert->format->palette) {
May 29, 2006
May 29, 2006
850
851
852
SDL_memcpy(convert->format->palette->colors,
format->palette->colors,
format->palette->ncolors * sizeof(SDL_Color));
May 28, 2006
May 28, 2006
853
854
855
856
857
858
859
860
861
862
863
convert->format->palette->ncolors = format->palette->ncolors;
}
/* Save the original surface color key and alpha */
surface_flags = surface->flags;
if ((surface_flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY) {
/* Convert colourkeyed surfaces to RGBA if requested */
if ((flags & SDL_SRCCOLORKEY) != SDL_SRCCOLORKEY && format->Amask) {
surface_flags &= ~SDL_SRCCOLORKEY;
} else {
colorkey = surface->format->colorkey;
May 29, 2006
May 29, 2006
864
SDL_SetColorKey(surface, 0, 0);
May 28, 2006
May 28, 2006
865
866
867
868
869
870
871
872
}
}
if ((surface_flags & SDL_SRCALPHA) == SDL_SRCALPHA) {
/* Copy over the alpha channel to RGBA if requested */
if (format->Amask) {
surface->flags &= ~SDL_SRCALPHA;
} else {
alpha = surface->format->alpha;
May 29, 2006
May 29, 2006
873
SDL_SetAlpha(surface, 0, 0);
May 28, 2006
May 28, 2006
874
875
876
877
878
879
880
881
}
}
/* Copy over the image data */
bounds.x = 0;
bounds.y = 0;
bounds.w = surface->w;
bounds.h = surface->h;
May 29, 2006
May 29, 2006
882
SDL_LowerBlit(surface, &bounds, convert, &bounds);
May 28, 2006
May 28, 2006
883
884
885
/* Clean up the original surface, and update converted surface */
if (convert != NULL) {
May 29, 2006
May 29, 2006
886
SDL_SetClipRect(convert, &surface->clip_rect);
May 28, 2006
May 28, 2006
887
888
889
890
891
892
}
if ((surface_flags & SDL_SRCCOLORKEY) == SDL_SRCCOLORKEY) {
Uint32 cflags = surface_flags & (SDL_SRCCOLORKEY | SDL_RLEACCELOK);
if (convert != NULL) {
Uint8 keyR, keyG, keyB;
May 29, 2006
May 29, 2006
893
894
895
SDL_GetRGB(colorkey, surface->format, &keyR, &keyG, &keyB);
SDL_SetColorKey(convert, cflags | (flags & SDL_RLEACCELOK),
SDL_MapRGB(convert->format, keyR, keyG, keyB));
May 28, 2006
May 28, 2006
896
}
May 29, 2006
May 29, 2006
897
SDL_SetColorKey(surface, cflags, colorkey);
May 28, 2006
May 28, 2006
898
899
900
901
}
if ((surface_flags & SDL_SRCALPHA) == SDL_SRCALPHA) {
Uint32 aflags = surface_flags & (SDL_SRCALPHA | SDL_RLEACCELOK);
if (convert != NULL) {
May 29, 2006
May 29, 2006
902
SDL_SetAlpha(convert, aflags | (flags & SDL_RLEACCELOK), alpha);
May 28, 2006
May 28, 2006
903
904
905
906
}
if (format->Amask) {
surface->flags |= SDL_SRCALPHA;
} else {
May 29, 2006
May 29, 2006
907
SDL_SetAlpha(surface, aflags, alpha);
May 28, 2006
May 28, 2006
908
909
910
911
912
}
}
/* We're ready to go! */
return (convert);
Apr 26, 2001
Apr 26, 2001
913
914
915
916
917
}
/*
* Free a surface created by the above function.
*/
May 28, 2006
May 28, 2006
918
void
May 29, 2006
May 29, 2006
919
SDL_FreeSurface(SDL_Surface * surface)
Apr 26, 2001
Apr 26, 2001
920
{
May 28, 2006
May 28, 2006
921
if (surface == NULL) {
May 28, 2006
May 28, 2006
922
923
924
925
926
927
return;
}
if (--surface->refcount > 0) {
return;
}
while (surface->locked > 0) {
May 29, 2006
May 29, 2006
928
SDL_UnlockSurface(surface);
May 28, 2006
May 28, 2006
929
930
}
if ((surface->flags & SDL_RLEACCEL) == SDL_RLEACCEL) {
May 29, 2006
May 29, 2006
931
SDL_UnRLESurface(surface, 0);
May 28, 2006
May 28, 2006
932
933
}
if (surface->format) {
May 29, 2006
May 29, 2006
934
SDL_FreeFormat(surface->format);
May 28, 2006
May 28, 2006
935
936
937
surface->format = NULL;
}
if (surface->map != NULL) {
May 29, 2006
May 29, 2006
938
SDL_FreeBlitMap(surface->map);
May 28, 2006
May 28, 2006
939
940
941
surface->map = NULL;
}
if (surface->hwdata) {
May 29, 2006
May 29, 2006
942
943
SDL_VideoDevice *_this = SDL_GetVideoDevice();
_this->FreeHWSurface(_this, surface);
May 28, 2006
May 28, 2006
944
945
}
if (surface->pixels && ((surface->flags & SDL_PREALLOC) != SDL_PREALLOC)) {
May 29, 2006
May 29, 2006
946
SDL_free(surface->pixels);
May 28, 2006
May 28, 2006
947
}
May 29, 2006
May 29, 2006
948
SDL_free(surface);
Apr 26, 2001
Apr 26, 2001
949
#ifdef CHECK_LEAKS
May 28, 2006
May 28, 2006
950
--surfaces_allocated;
Apr 26, 2001
Apr 26, 2001
951
952
#endif
}
May 28, 2006
May 28, 2006
953
954
/* vi: set ts=4 sw=4 expandtab: */