| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567 |
- /*
- Simple DirectMedia Layer
- Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
- 2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
- 3. This notice may not be removed or altered from any source distribution.
- */
- #include "SDL_internal.h"
- #if SDL_HAVE_RLE
- /*
- * RLE encoding for software colorkey and alpha-channel acceleration
- *
- * Original version by Sam Lantinga
- *
- * Mattias Engdegård (Yorick): Rewrite. New encoding format, encoder and
- * decoder. Added per-surface alpha blitter. Added per-pixel alpha
- * format, encoder and blitter.
- *
- * Many thanks to Xark and johns for hints, benchmarks and useful comments
- * leading to this code.
- *
- * Welcome to Macro Mayhem.
- */
- /*
- * The encoding translates the image data to a stream of segments of the form
- *
- * <skip> <run> <data>
- *
- * where <skip> is the number of transparent pixels to skip,
- * <run> is the number of opaque pixels to blit,
- * and <data> are the pixels themselves.
- *
- * This basic structure is used both for colorkeyed surfaces, used for simple
- * binary transparency and for per-surface alpha blending, and for surfaces
- * with per-pixel alpha. The details differ, however:
- *
- * Encoding of colorkeyed surfaces:
- *
- * Encoded pixels always have the same format as the target surface.
- * <skip> and <run> are unsigned 8 bit integers, except for 32 bit depth
- * where they are 16 bit. This makes the pixel data aligned at all times.
- * Segments never wrap around from one scan line to the next.
- *
- * The end of the sequence is marked by a zero <skip>,<run> pair at the *
- * beginning of a line.
- *
- * Encoding of surfaces with per-pixel alpha:
- *
- * The sequence begins with an SDL_PixelFormat value describing the target
- * pixel format, to provide reliable un-encoding.
- *
- * Each scan line is encoded twice: First all completely opaque pixels,
- * encoded in the target format as described above, and then all
- * partially transparent (translucent) pixels (where 1 <= alpha <= 254),
- * in the following 32-bit format:
- *
- * For 32-bit targets, each pixel has the target RGB format but with
- * the alpha value occupying the highest 8 bits. The <skip> and <run>
- * counts are 16 bit.
- *
- * For 16-bit targets, each pixel has the target RGB format, but with
- * the middle component (usually green) shifted 16 steps to the left,
- * and the hole filled with the 5 most significant bits of the alpha value.
- * i.e. if the target has the format rrrrrggggggbbbbb,
- * the encoded pixel will be 00000gggggg00000rrrrr0aaaaabbbbb.
- * The <skip> and <run> counts are 8 bit for the opaque lines, 16 bit
- * for the translucent lines. Two padding bytes may be inserted
- * before each translucent line to keep them 32-bit aligned.
- *
- * The end of the sequence is marked by a zero <skip>,<run> pair at the
- * beginning of an opaque line.
- */
- #include "SDL_sysvideo.h"
- #include "SDL_blit.h"
- #include "SDL_RLEaccel_c.h"
- #define PIXEL_COPY(to, from, len, bpp) \
- SDL_memcpy(to, from, (size_t)(len) * (bpp))
- /*
- * Various colorkey blit methods, for opaque and per-surface alpha
- */
- #define OPAQUE_BLIT(to, from, length, bpp, alpha) \
- PIXEL_COPY(to, from, length, bpp)
- /*
- * For 32bpp pixels on the form 0x00rrggbb:
- * If we treat the middle component separately, we can process the two
- * remaining in parallel. This is safe to do because of the gap to the left
- * of each component, so the bits from the multiplication don't collide.
- * This can be used for any RGB permutation of course.
- */
- #define ALPHA_BLIT32_888(to, from, length, bpp, alpha) \
- do { \
- int i; \
- Uint32 *src = (Uint32 *)(from); \
- Uint32 *dst = (Uint32 *)(to); \
- for (i = 0; i < (int)(length); i++) { \
- Uint32 s = *src++; \
- Uint32 d = *dst; \
- Uint32 s1 = s & 0xff00ff; \
- Uint32 d1 = d & 0xff00ff; \
- d1 = (d1 + ((s1 - d1) * alpha >> 8)) & 0xff00ff; \
- s &= 0xff00; \
- d &= 0xff00; \
- d = (d + ((s - d) * alpha >> 8)) & 0xff00; \
- *dst++ = d1 | d; \
- } \
- } while (0)
- /*
- * For 16bpp pixels we can go a step further: put the middle component
- * in the high 16 bits of a 32 bit word, and process all three RGB
- * components at the same time. Since the smallest gap is here just
- * 5 bits, we have to scale alpha down to 5 bits as well.
- */
- #define ALPHA_BLIT16_565(to, from, length, bpp, alpha) \
- do { \
- int i; \
- Uint16 *src = (Uint16 *)(from); \
- Uint16 *dst = (Uint16 *)(to); \
- Uint32 ALPHA = alpha >> 3; \
- for (i = 0; i < (int)(length); i++) { \
- Uint32 s = *src++; \
- Uint32 d = *dst; \
- s = (s | s << 16) & 0x07e0f81f; \
- d = (d | d << 16) & 0x07e0f81f; \
- d += (s - d) * ALPHA >> 5; \
- d &= 0x07e0f81f; \
- *dst++ = (Uint16)(d | d >> 16); \
- } \
- } while (0)
- #define ALPHA_BLIT16_555(to, from, length, bpp, alpha) \
- do { \
- int i; \
- Uint16 *src = (Uint16 *)(from); \
- Uint16 *dst = (Uint16 *)(to); \
- Uint32 ALPHA = alpha >> 3; \
- for (i = 0; i < (int)(length); i++) { \
- Uint32 s = *src++; \
- Uint32 d = *dst; \
- s = (s | s << 16) & 0x03e07c1f; \
- d = (d | d << 16) & 0x03e07c1f; \
- d += (s - d) * ALPHA >> 5; \
- d &= 0x03e07c1f; \
- *dst++ = (Uint16)(d | d >> 16); \
- } \
- } while (0)
- /*
- * The general slow catch-all function, for remaining depths and formats
- */
- #define ALPHA_BLIT_ANY(to, from, length, bpp, alpha) \
- do { \
- int i; \
- Uint8 *src = from; \
- Uint8 *dst = to; \
- for (i = 0; i < (int)(length); i++) { \
- Uint32 s = 0, d = 0; \
- unsigned rs, gs, bs, rd, gd, bd; \
- switch (bpp) { \
- case 2: \
- s = *(Uint16 *)src; \
- d = *(Uint16 *)dst; \
- break; \
- case 3: \
- if (SDL_BYTEORDER == SDL_BIG_ENDIAN) { \
- s = (src[0] << 16) | (src[1] << 8) | src[2]; \
- d = (dst[0] << 16) | (dst[1] << 8) | dst[2]; \
- } else { \
- s = (src[2] << 16) | (src[1] << 8) | src[0]; \
- d = (dst[2] << 16) | (dst[1] << 8) | dst[0]; \
- } \
- break; \
- case 4: \
- s = *(Uint32 *)src; \
- d = *(Uint32 *)dst; \
- break; \
- } \
- RGB_FROM_PIXEL(s, fmt, rs, gs, bs); \
- RGB_FROM_PIXEL(d, fmt, rd, gd, bd); \
- rd += (rs - rd) * alpha >> 8; \
- gd += (gs - gd) * alpha >> 8; \
- bd += (bs - bd) * alpha >> 8; \
- PIXEL_FROM_RGB(d, fmt, rd, gd, bd); \
- switch (bpp) { \
- case 2: \
- *(Uint16 *)dst = (Uint16)d; \
- break; \
- case 3: \
- if (SDL_BYTEORDER == SDL_BIG_ENDIAN) { \
- dst[0] = (Uint8)(d >> 16); \
- dst[1] = (Uint8)(d >> 8); \
- dst[2] = (Uint8)(d); \
- } else { \
- dst[0] = (Uint8)d; \
- dst[1] = (Uint8)(d >> 8); \
- dst[2] = (Uint8)(d >> 16); \
- } \
- break; \
- case 4: \
- *(Uint32 *)dst = d; \
- break; \
- } \
- src += bpp; \
- dst += bpp; \
- } \
- } while (0)
- /*
- * Special case: 50% alpha (alpha=128)
- * This is treated specially because it can be optimized very well, and
- * since it is good for many cases of semi-translucency.
- * The theory is to do all three components at the same time:
- * First zero the lowest bit of each component, which gives us room to
- * add them. Then shift right and add the sum of the lowest bits.
- */
- #define ALPHA_BLIT32_888_50(to, from, length, bpp, alpha) \
- do { \
- int i; \
- Uint32 *src = (Uint32 *)(from); \
- Uint32 *dst = (Uint32 *)(to); \
- for (i = 0; i < (int)(length); i++) { \
- Uint32 s = *src++; \
- Uint32 d = *dst; \
- *dst++ = (((s & 0x00fefefe) + (d & 0x00fefefe)) >> 1) + (s & d & 0x00010101); \
- } \
- } while (0)
- /*
- * For 16bpp, we can actually blend two pixels in parallel, if we take
- * care to shift before we add, not after.
- */
- /* helper: blend a single 16 bit pixel at 50% */
- #define BLEND16_50(dst, src, mask) \
- do { \
- Uint32 s = *src++; \
- Uint32 d = *dst; \
- *dst++ = (Uint16)((((s & mask) + (d & mask)) >> 1) + \
- (s & d & (~mask & 0xffff))); \
- } while (0)
- /* basic 16bpp blender. mask is the pixels to keep when adding. */
- #define ALPHA_BLIT16_50(to, from, length, bpp, alpha, mask) \
- do { \
- unsigned n = (length); \
- Uint16 *src = (Uint16 *)(from); \
- Uint16 *dst = (Uint16 *)(to); \
- if (((uintptr_t)src ^ (uintptr_t)dst) & 3) { \
- /* source and destination not in phase, blit one by one */ \
- while (n--) \
- BLEND16_50(dst, src, mask); \
- } else { \
- if ((uintptr_t)src & 3) { \
- /* first odd pixel */ \
- BLEND16_50(dst, src, mask); \
- n--; \
- } \
- for (; n > 1; n -= 2) { \
- Uint32 s = *(Uint32 *)src; \
- Uint32 d = *(Uint32 *)dst; \
- *(Uint32 *)dst = ((s & (mask | mask << 16)) >> 1) + ((d & (mask | mask << 16)) >> 1) + (s & d & (~(mask | mask << 16))); \
- src += 2; \
- dst += 2; \
- } \
- if (n) \
- BLEND16_50(dst, src, mask); /* last odd pixel */ \
- } \
- } while (0)
- #define ALPHA_BLIT16_565_50(to, from, length, bpp, alpha) \
- ALPHA_BLIT16_50(to, from, length, bpp, alpha, 0xf7deU)
- #define ALPHA_BLIT16_555_50(to, from, length, bpp, alpha) \
- ALPHA_BLIT16_50(to, from, length, bpp, alpha, 0xfbdeU)
- #define CHOOSE_BLIT(blitter, alpha, fmt) \
- do { \
- if (alpha == 255) { \
- switch (fmt->bytes_per_pixel) { \
- case 1: \
- blitter(1, Uint8, OPAQUE_BLIT); \
- break; \
- case 2: \
- blitter(2, Uint8, OPAQUE_BLIT); \
- break; \
- case 3: \
- blitter(3, Uint8, OPAQUE_BLIT); \
- break; \
- case 4: \
- blitter(4, Uint16, OPAQUE_BLIT); \
- break; \
- } \
- } else { \
- switch (fmt->bytes_per_pixel) { \
- case 1: \
- /* No 8bpp alpha blitting */ \
- break; \
- \
- case 2: \
- switch (fmt->Rmask | fmt->Gmask | fmt->Bmask) { \
- case 0xffff: \
- if (fmt->Gmask == 0x07e0 || fmt->Rmask == 0x07e0 || fmt->Bmask == 0x07e0) { \
- if (alpha == 128) { \
- blitter(2, Uint8, ALPHA_BLIT16_565_50); \
- } else { \
- blitter(2, Uint8, ALPHA_BLIT16_565); \
- } \
- } else { \
- goto general16; \
- } \
- break; \
- \
- case 0x7fff: \
- if (fmt->Gmask == 0x03e0 || fmt->Rmask == 0x03e0 || fmt->Bmask == 0x03e0) { \
- if (alpha == 128) { \
- blitter(2, Uint8, ALPHA_BLIT16_555_50); \
- } else { \
- blitter(2, Uint8, ALPHA_BLIT16_555); \
- } \
- break; \
- } else { \
- goto general16; \
- } \
- break; \
- \
- default: \
- general16: \
- blitter(2, Uint8, ALPHA_BLIT_ANY); \
- } \
- break; \
- \
- case 3: \
- blitter(3, Uint8, ALPHA_BLIT_ANY); \
- break; \
- \
- case 4: \
- if ((fmt->Rmask | fmt->Gmask | fmt->Bmask) == 0x00ffffff && (fmt->Gmask == 0xff00 || fmt->Rmask == 0xff00 || fmt->Bmask == 0xff00)) { \
- if (alpha == 128) { \
- blitter(4, Uint16, ALPHA_BLIT32_888_50); \
- } else { \
- blitter(4, Uint16, ALPHA_BLIT32_888); \
- } \
- } else { \
- blitter(4, Uint16, ALPHA_BLIT_ANY); \
- } \
- break; \
- } \
- } \
- } while (0)
- /*
- * Set a pixel value using the given format, except that the alpha value is
- * placed in the top byte. This is the format used for RLE with alpha.
- */
- #define RLEPIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a) \
- { \
- Pixel = ((r >> (8 - fmt->Rbits)) << fmt->Rshift) | \
- ((g >> (8 - fmt->Gbits)) << fmt->Gshift) | \
- ((b >> (8 - fmt->Bbits)) << fmt->Bshift) | \
- (a << 24); \
- }
- /*
- * This takes care of the case when the surface is clipped on the left and/or
- * right. Top clipping has already been taken care of.
- */
- #define RLECLIPBLIT(bpp, Type, do_blit) \
- do { \
- int linecount = srcrect->h; \
- int ofs = 0; \
- int left = srcrect->x; \
- int right = left + srcrect->w; \
- dstbuf -= left * bpp; \
- for (;;) { \
- int run; \
- ofs += *(Type *)srcbuf; \
- run = ((Type *)srcbuf)[1]; \
- srcbuf += 2 * sizeof(Type); \
- if (run) { \
- /* clip to left and right borders */ \
- if (ofs < right) { \
- int start = 0; \
- int len = run; \
- int startcol; \
- if (left - ofs > 0) { \
- start = left - ofs; \
- len -= start; \
- if (len <= 0) \
- goto nocopy##bpp##do_blit; \
- } \
- startcol = ofs + start; \
- if (len > right - startcol) \
- len = right - startcol; \
- do_blit(dstbuf + startcol * bpp, srcbuf + start * bpp, \
- len, bpp, alpha); \
- } \
- nocopy##bpp##do_blit : srcbuf += run * bpp; \
- ofs += run; \
- } else if (!ofs) { \
- break; \
- } \
- \
- if (ofs == w) { \
- ofs = 0; \
- dstbuf += surf_dst->pitch; \
- if (!--linecount) { \
- break; \
- } \
- } \
- } \
- } while (0)
- static void RLEClipBlit(int w, Uint8 *srcbuf, SDL_Surface *surf_dst,
- Uint8 *dstbuf, const SDL_Rect *srcrect, unsigned alpha)
- {
- const SDL_PixelFormatDetails *fmt = surf_dst->internal->format;
- CHOOSE_BLIT(RLECLIPBLIT, alpha, fmt);
- }
- #undef RLECLIPBLIT
- /* blit a colorkeyed RLE surface */
- static int SDLCALL SDL_RLEBlit(SDL_Surface *surf_src, const SDL_Rect *srcrect,
- SDL_Surface *surf_dst, const SDL_Rect *dstrect)
- {
- Uint8 *dstbuf;
- Uint8 *srcbuf;
- int x, y;
- int w = surf_src->w;
- unsigned alpha;
- /* Lock the destination if necessary */
- if (SDL_MUSTLOCK(surf_dst)) {
- if (SDL_LockSurface(surf_dst) < 0) {
- return -1;
- }
- }
- /* Set up the source and destination pointers */
- x = dstrect->x;
- y = dstrect->y;
- dstbuf = (Uint8 *)surf_dst->pixels + y * surf_dst->pitch + x * surf_src->internal->format->bytes_per_pixel;
- srcbuf = (Uint8 *)surf_src->internal->map.data + sizeof(SDL_PixelFormat);
- {
- /* skip lines at the top if necessary */
- int vskip = srcrect->y;
- int ofs = 0;
- if (vskip) {
- #define RLESKIP(bpp, Type) \
- for (;;) { \
- int run; \
- ofs += *(Type *)srcbuf; \
- run = ((Type *)srcbuf)[1]; \
- srcbuf += sizeof(Type) * 2; \
- if (run) { \
- srcbuf += run * bpp; \
- ofs += run; \
- } else if (!ofs) \
- goto done; \
- if (ofs == w) { \
- ofs = 0; \
- if (!--vskip) \
- break; \
- } \
- }
- switch (surf_src->internal->format->bytes_per_pixel) {
- case 1:
- RLESKIP(1, Uint8);
- break;
- case 2:
- RLESKIP(2, Uint8);
- break;
- case 3:
- RLESKIP(3, Uint8);
- break;
- case 4:
- RLESKIP(4, Uint16);
- break;
- }
- #undef RLESKIP
- }
- }
- alpha = surf_src->internal->map.info.a;
- /* if left or right edge clipping needed, call clip blit */
- if (srcrect->x || srcrect->w != surf_src->w) {
- RLEClipBlit(w, srcbuf, surf_dst, dstbuf, srcrect, alpha);
- } else {
- const SDL_PixelFormatDetails *fmt = surf_src->internal->format;
- #define RLEBLIT(bpp, Type, do_blit) \
- do { \
- int linecount = srcrect->h; \
- int ofs = 0; \
- for (;;) { \
- unsigned run; \
- ofs += *(Type *)srcbuf; \
- run = ((Type *)srcbuf)[1]; \
- srcbuf += 2 * sizeof(Type); \
- if (run) { \
- do_blit(dstbuf + ofs * bpp, srcbuf, run, bpp, alpha); \
- srcbuf += run * bpp; \
- ofs += run; \
- } else if (!ofs) \
- break; \
- if (ofs == w) { \
- ofs = 0; \
- dstbuf += surf_dst->pitch; \
- if (!--linecount) \
- break; \
- } \
- } \
- } while (0)
- CHOOSE_BLIT(RLEBLIT, alpha, fmt);
- #undef RLEBLIT
- }
- done:
- /* Unlock the destination if necessary */
- if (SDL_MUSTLOCK(surf_dst)) {
- SDL_UnlockSurface(surf_dst);
- }
- return 0;
- }
- #undef OPAQUE_BLIT
- /*
- * Per-pixel blitting macros for translucent pixels:
- * These use the same techniques as the per-surface blitting macros
- */
- /*
- * For 32bpp pixels, we have made sure the alpha is stored in the top
- * 8 bits, so proceed as usual
- */
- #define BLIT_TRANSL_888(src, dst) \
- do { \
- Uint32 s = src; \
- Uint32 d = dst; \
- unsigned alpha = s >> 24; \
- Uint32 s1 = s & 0xff00ff; \
- Uint32 d1 = d & 0xff00ff; \
- d1 = (d1 + ((s1 - d1) * alpha >> 8)) & 0xff00ff; \
- s &= 0xff00; \
- d &= 0xff00; \
- d = (d + ((s - d) * alpha >> 8)) & 0xff00; \
- dst = d1 | d | 0xff000000; \
- } while (0)
- /*
- * For 16bpp pixels, we have stored the 5 most significant alpha bits in
- * bits 5-10. As before, we can process all 3 RGB components at the same time.
- */
- #define BLIT_TRANSL_565(src, dst) \
- do { \
- Uint32 s = src; \
- Uint32 d = dst; \
- unsigned alpha = (s & 0x3e0) >> 5; \
- s &= 0x07e0f81f; \
- d = (d | d << 16) & 0x07e0f81f; \
- d += (s - d) * alpha >> 5; \
- d &= 0x07e0f81f; \
- dst = (Uint16)(d | d >> 16); \
- } while (0)
- #define BLIT_TRANSL_555(src, dst) \
- do { \
- Uint32 s = src; \
- Uint32 d = dst; \
- unsigned alpha = (s & 0x3e0) >> 5; \
- s &= 0x03e07c1f; \
- d = (d | d << 16) & 0x03e07c1f; \
- d += (s - d) * alpha >> 5; \
- d &= 0x03e07c1f; \
- dst = (Uint16)(d | d >> 16); \
- } while (0)
- /* blit a pixel-alpha RLE surface clipped at the right and/or left edges */
- static void RLEAlphaClipBlit(int w, Uint8 *srcbuf, SDL_Surface *surf_dst,
- Uint8 *dstbuf, const SDL_Rect *srcrect)
- {
- const SDL_PixelFormatDetails *df = surf_dst->internal->format;
- /*
- * clipped blitter: Ptype is the destination pixel type,
- * Ctype the translucent count type, and do_blend the macro
- * to blend one pixel.
- */
- #define RLEALPHACLIPBLIT(Ptype, Ctype, do_blend) \
- do { \
- int linecount = srcrect->h; \
- int left = srcrect->x; \
- int right = left + srcrect->w; \
- dstbuf -= left * sizeof(Ptype); \
- do { \
- int ofs = 0; \
- /* blit opaque pixels on one line */ \
- do { \
- unsigned run; \
- ofs += ((Ctype *)srcbuf)[0]; \
- run = ((Ctype *)srcbuf)[1]; \
- srcbuf += 2 * sizeof(Ctype); \
- if (run) { \
- /* clip to left and right borders */ \
- int cofs = ofs; \
- int crun = run; \
- if (left - cofs > 0) { \
- crun -= left - cofs; \
- cofs = left; \
- } \
- if (crun > right - cofs) \
- crun = right - cofs; \
- if (crun > 0) \
- PIXEL_COPY(dstbuf + cofs * sizeof(Ptype), \
- srcbuf + (cofs - ofs) * sizeof(Ptype), \
- (unsigned)crun, sizeof(Ptype)); \
- srcbuf += run * sizeof(Ptype); \
- ofs += run; \
- } else if (!ofs) \
- return; \
- } while (ofs < w); \
- /* skip padding if necessary */ \
- if (sizeof(Ptype) == 2) \
- srcbuf += (uintptr_t)srcbuf & 2; \
- /* blit translucent pixels on the same line */ \
- ofs = 0; \
- do { \
- unsigned run; \
- ofs += ((Uint16 *)srcbuf)[0]; \
- run = ((Uint16 *)srcbuf)[1]; \
- srcbuf += 4; \
- if (run) { \
- /* clip to left and right borders */ \
- int cofs = ofs; \
- int crun = run; \
- if (left - cofs > 0) { \
- crun -= left - cofs; \
- cofs = left; \
- } \
- if (crun > right - cofs) \
- crun = right - cofs; \
- if (crun > 0) { \
- Ptype *dst = (Ptype *)dstbuf + cofs; \
- Uint32 *src = (Uint32 *)srcbuf + (cofs - ofs); \
- int i; \
- for (i = 0; i < crun; i++) \
- do_blend(src[i], dst[i]); \
- } \
- srcbuf += run * 4; \
- ofs += run; \
- } \
- } while (ofs < w); \
- dstbuf += surf_dst->pitch; \
- } while (--linecount); \
- } while (0)
- switch (df->bytes_per_pixel) {
- case 2:
- if (df->Gmask == 0x07e0 || df->Rmask == 0x07e0 || df->Bmask == 0x07e0) {
- RLEALPHACLIPBLIT(Uint16, Uint8, BLIT_TRANSL_565);
- } else {
- RLEALPHACLIPBLIT(Uint16, Uint8, BLIT_TRANSL_555);
- }
- break;
- case 4:
- RLEALPHACLIPBLIT(Uint32, Uint16, BLIT_TRANSL_888);
- break;
- }
- }
- /* blit a pixel-alpha RLE surface */
- static int SDLCALL SDL_RLEAlphaBlit(SDL_Surface *surf_src, const SDL_Rect *srcrect,
- SDL_Surface *surf_dst, const SDL_Rect *dstrect)
- {
- int x, y;
- int w = surf_src->w;
- Uint8 *srcbuf, *dstbuf;
- const SDL_PixelFormatDetails *df = surf_dst->internal->format;
- /* Lock the destination if necessary */
- if (SDL_MUSTLOCK(surf_dst)) {
- if (SDL_LockSurface(surf_dst) < 0) {
- return -1;
- }
- }
- x = dstrect->x;
- y = dstrect->y;
- dstbuf = (Uint8 *)surf_dst->pixels + y * surf_dst->pitch + x * df->bytes_per_pixel;
- srcbuf = (Uint8 *)surf_src->internal->map.data + sizeof(SDL_PixelFormat);
- {
- /* skip lines at the top if necessary */
- int vskip = srcrect->y;
- if (vskip) {
- int ofs;
- if (df->bytes_per_pixel == 2) {
- /* the 16/32 interleaved format */
- do {
- /* skip opaque line */
- ofs = 0;
- do {
- int run;
- ofs += srcbuf[0];
- run = srcbuf[1];
- srcbuf += 2;
- if (run) {
- srcbuf += 2 * run;
- ofs += run;
- } else if (ofs == 0) {
- goto done;
- }
- } while (ofs < w);
- /* skip padding */
- srcbuf += (uintptr_t)srcbuf & 2;
- /* skip translucent line */
- ofs = 0;
- do {
- int run;
- ofs += ((Uint16 *)srcbuf)[0];
- run = ((Uint16 *)srcbuf)[1];
- srcbuf += 4 * (run + 1);
- ofs += run;
- } while (ofs < w);
- } while (--vskip);
- } else {
- /* the 32/32 interleaved format */
- vskip <<= 1; /* opaque and translucent have same format */
- do {
- ofs = 0;
- do {
- int run;
- ofs += ((Uint16 *)srcbuf)[0];
- run = ((Uint16 *)srcbuf)[1];
- srcbuf += 4;
- if (run) {
- srcbuf += 4 * run;
- ofs += run;
- } else if (ofs == 0) {
- goto done;
- }
- } while (ofs < w);
- } while (--vskip);
- }
- }
- }
- /* if left or right edge clipping needed, call clip blit */
- if (srcrect->x || srcrect->w != surf_src->w) {
- RLEAlphaClipBlit(w, srcbuf, surf_dst, dstbuf, srcrect);
- } else {
- /*
- * non-clipped blitter. Ptype is the destination pixel type,
- * Ctype the translucent count type, and do_blend the
- * macro to blend one pixel.
- */
- #define RLEALPHABLIT(Ptype, Ctype, do_blend) \
- do { \
- int linecount = srcrect->h; \
- do { \
- int ofs = 0; \
- /* blit opaque pixels on one line */ \
- do { \
- unsigned run; \
- ofs += ((Ctype *)srcbuf)[0]; \
- run = ((Ctype *)srcbuf)[1]; \
- srcbuf += 2 * sizeof(Ctype); \
- if (run) { \
- PIXEL_COPY(dstbuf + ofs * sizeof(Ptype), srcbuf, \
- run, sizeof(Ptype)); \
- srcbuf += run * sizeof(Ptype); \
- ofs += run; \
- } else if (!ofs) \
- goto done; \
- } while (ofs < w); \
- /* skip padding if necessary */ \
- if (sizeof(Ptype) == 2) \
- srcbuf += (uintptr_t)srcbuf & 2; \
- /* blit translucent pixels on the same line */ \
- ofs = 0; \
- do { \
- unsigned run; \
- ofs += ((Uint16 *)srcbuf)[0]; \
- run = ((Uint16 *)srcbuf)[1]; \
- srcbuf += 4; \
- if (run) { \
- Ptype *dst = (Ptype *)dstbuf + ofs; \
- unsigned i; \
- for (i = 0; i < run; i++) { \
- Uint32 src = *(Uint32 *)srcbuf; \
- do_blend(src, *dst); \
- srcbuf += 4; \
- dst++; \
- } \
- ofs += run; \
- } \
- } while (ofs < w); \
- dstbuf += surf_dst->pitch; \
- } while (--linecount); \
- } while (0)
- switch (df->bytes_per_pixel) {
- case 2:
- if (df->Gmask == 0x07e0 || df->Rmask == 0x07e0 || df->Bmask == 0x07e0) {
- RLEALPHABLIT(Uint16, Uint8, BLIT_TRANSL_565);
- } else {
- RLEALPHABLIT(Uint16, Uint8, BLIT_TRANSL_555);
- }
- break;
- case 4:
- RLEALPHABLIT(Uint32, Uint16, BLIT_TRANSL_888);
- break;
- }
- }
- done:
- /* Unlock the destination if necessary */
- if (SDL_MUSTLOCK(surf_dst)) {
- SDL_UnlockSurface(surf_dst);
- }
- return 0;
- }
- /*
- * Auxiliary functions:
- * The encoding functions take 32bpp rgb + a, and
- * return the number of bytes copied to the destination.
- * The decoding functions copy to 32bpp rgb + a, and
- * return the number of bytes copied from the source.
- * These are only used in the encoder and un-RLE code and are therefore not
- * highly optimised.
- */
- /* encode 32bpp rgb + a into 16bpp rgb, losing alpha */
- static int copy_opaque_16(void *dst, const Uint32 *src, int n,
- const SDL_PixelFormatDetails *sfmt, const SDL_PixelFormatDetails *dfmt)
- {
- int i;
- Uint16 *d = (Uint16 *)dst;
- for (i = 0; i < n; i++) {
- unsigned r, g, b;
- RGB_FROM_PIXEL(*src, sfmt, r, g, b);
- PIXEL_FROM_RGB(*d, dfmt, r, g, b);
- src++;
- d++;
- }
- return n * 2;
- }
- /* decode opaque pixels from 16bpp to 32bpp rgb + a */
- static int uncopy_opaque_16(Uint32 *dst, const void *src, int n,
- const SDL_PixelFormatDetails *sfmt, const SDL_PixelFormatDetails *dfmt)
- {
- int i;
- const Uint16 *s = (const Uint16 *)src;
- unsigned alpha = dfmt->Amask ? 255 : 0;
- for (i = 0; i < n; i++) {
- unsigned r, g, b;
- RGB_FROM_PIXEL(*s, sfmt, r, g, b);
- PIXEL_FROM_RGBA(*dst, dfmt, r, g, b, alpha);
- s++;
- dst++;
- }
- return n * 2;
- }
- /* encode 32bpp rgb + a into 32bpp G0RAB format for blitting into 565 */
- static int copy_transl_565(void *dst, const Uint32 *src, int n,
- const SDL_PixelFormatDetails *sfmt, const SDL_PixelFormatDetails *dfmt)
- {
- int i;
- Uint32 *d = (Uint32 *)dst;
- for (i = 0; i < n; i++) {
- unsigned r, g, b, a;
- Uint16 pix;
- RGBA_FROM_8888(*src, sfmt, r, g, b, a);
- PIXEL_FROM_RGB(pix, dfmt, r, g, b);
- *d = ((pix & 0x7e0) << 16) | (pix & 0xf81f) | ((a << 2) & 0x7e0);
- src++;
- d++;
- }
- return n * 4;
- }
- /* encode 32bpp rgb + a into 32bpp G0RAB format for blitting into 555 */
- static int copy_transl_555(void *dst, const Uint32 *src, int n,
- const SDL_PixelFormatDetails *sfmt, const SDL_PixelFormatDetails *dfmt)
- {
- int i;
- Uint32 *d = (Uint32 *)dst;
- for (i = 0; i < n; i++) {
- unsigned r, g, b, a;
- Uint16 pix;
- RGBA_FROM_8888(*src, sfmt, r, g, b, a);
- PIXEL_FROM_RGB(pix, dfmt, r, g, b);
- *d = ((pix & 0x3e0) << 16) | (pix & 0xfc1f) | ((a << 2) & 0x3e0);
- src++;
- d++;
- }
- return n * 4;
- }
- /* decode translucent pixels from 32bpp GORAB to 32bpp rgb + a */
- static int uncopy_transl_16(Uint32 *dst, const void *src, int n,
- const SDL_PixelFormatDetails *sfmt, const SDL_PixelFormatDetails *dfmt)
- {
- int i;
- const Uint32 *s = (const Uint32 *)src;
- for (i = 0; i < n; i++) {
- unsigned r, g, b, a;
- Uint32 pix = *s++;
- a = (pix & 0x3e0) >> 2;
- pix = (pix & ~0x3e0) | pix >> 16;
- RGB_FROM_PIXEL(pix, sfmt, r, g, b);
- PIXEL_FROM_RGBA(*dst, dfmt, r, g, b, a);
- dst++;
- }
- return n * 4;
- }
- /* encode 32bpp rgba into 32bpp rgba, keeping alpha (dual purpose) */
- static int copy_32(void *dst, const Uint32 *src, int n,
- const SDL_PixelFormatDetails *sfmt, const SDL_PixelFormatDetails *dfmt)
- {
- int i;
- Uint32 *d = (Uint32 *)dst;
- for (i = 0; i < n; i++) {
- unsigned r, g, b, a;
- RGBA_FROM_8888(*src, sfmt, r, g, b, a);
- RLEPIXEL_FROM_RGBA(*d, dfmt, r, g, b, a);
- d++;
- src++;
- }
- return n * 4;
- }
- /* decode 32bpp rgba into 32bpp rgba, keeping alpha (dual purpose) */
- static int uncopy_32(Uint32 *dst, const void *src, int n,
- const SDL_PixelFormatDetails *sfmt, const SDL_PixelFormatDetails *dfmt)
- {
- int i;
- const Uint32 *s = (const Uint32 *)src;
- for (i = 0; i < n; i++) {
- unsigned r, g, b, a;
- Uint32 pixel = *s++;
- RGB_FROM_PIXEL(pixel, sfmt, r, g, b);
- a = pixel >> 24;
- PIXEL_FROM_RGBA(*dst, dfmt, r, g, b, a);
- dst++;
- }
- return n * 4;
- }
- #define ISOPAQUE(pixel, fmt) ((((pixel)&fmt->Amask) >> fmt->Ashift) == 255)
- #define ISTRANSL(pixel, fmt) \
- ((unsigned)((((pixel)&fmt->Amask) >> fmt->Ashift) - 1U) < 254U)
- /* convert surface to be quickly alpha-blittable onto dest, if possible */
- static int RLEAlphaSurface(SDL_Surface *surface)
- {
- SDL_Surface *dest;
- const SDL_PixelFormatDetails *df;
- int maxsize = 0;
- int max_opaque_run;
- int max_transl_run = 65535;
- unsigned masksum;
- Uint8 *rlebuf, *dst;
- int (*copy_opaque)(void *, const Uint32 *, int,
- const SDL_PixelFormatDetails *, const SDL_PixelFormatDetails *);
- int (*copy_transl)(void *, const Uint32 *, int,
- const SDL_PixelFormatDetails *, const SDL_PixelFormatDetails *);
- dest = surface->internal->map.dst;
- if (!dest) {
- return -1;
- }
- df = dest->internal->format;
- if (surface->internal->format->bits_per_pixel != 32) {
- return -1; /* only 32bpp source supported */
- }
- /* find out whether the destination is one we support,
- and determine the max size of the encoded result */
- masksum = df->Rmask | df->Gmask | df->Bmask;
- switch (df->bytes_per_pixel) {
- case 2:
- /* 16bpp: only support 565 and 555 formats */
- switch (masksum) {
- case 0xffff:
- if (df->Gmask == 0x07e0 || df->Rmask == 0x07e0 || df->Bmask == 0x07e0) {
- copy_opaque = copy_opaque_16;
- copy_transl = copy_transl_565;
- } else {
- return -1;
- }
- break;
- case 0x7fff:
- if (df->Gmask == 0x03e0 || df->Rmask == 0x03e0 || df->Bmask == 0x03e0) {
- copy_opaque = copy_opaque_16;
- copy_transl = copy_transl_555;
- } else {
- return -1;
- }
- break;
- default:
- return -1;
- }
- max_opaque_run = 255; /* runs stored as bytes */
- /* worst case is alternating opaque and translucent pixels,
- with room for alignment padding between lines */
- maxsize = surface->h * (2 + (4 + 2) * (surface->w + 1)) + 2;
- break;
- case 4:
- if (masksum != 0x00ffffff) {
- return -1; /* requires unused high byte */
- }
- copy_opaque = copy_32;
- copy_transl = copy_32;
- max_opaque_run = 255; /* runs stored as short ints */
- /* worst case is alternating opaque and translucent pixels */
- maxsize = surface->h * 2 * 4 * (surface->w + 1) + 4;
- break;
- default:
- return -1; /* anything else unsupported right now */
- }
- maxsize += sizeof(SDL_PixelFormat);
- rlebuf = (Uint8 *)SDL_malloc(maxsize);
- if (!rlebuf) {
- return -1;
- }
- /* save the destination format so we can undo the encoding later */
- *(SDL_PixelFormat *)rlebuf = df->format;
- dst = rlebuf + sizeof(SDL_PixelFormat);
- /* Do the actual encoding */
- {
- int x, y;
- int h = surface->h, w = surface->w;
- const SDL_PixelFormatDetails *sf = surface->internal->format;
- Uint32 *src = (Uint32 *)surface->pixels;
- Uint8 *lastline = dst; /* end of last non-blank line */
- /* opaque counts are 8 or 16 bits, depending on target depth */
- #define ADD_OPAQUE_COUNTS(n, m) \
- if (df->bytes_per_pixel == 4) { \
- ((Uint16 *)dst)[0] = (Uint16)n; \
- ((Uint16 *)dst)[1] = (Uint16)m; \
- dst += 4; \
- } else { \
- dst[0] = (Uint8)n; \
- dst[1] = (Uint8)m; \
- dst += 2; \
- }
- /* translucent counts are always 16 bit */
- #define ADD_TRANSL_COUNTS(n, m) \
- (((Uint16 *)dst)[0] = (Uint16)n, ((Uint16 *)dst)[1] = (Uint16)m, dst += 4)
- for (y = 0; y < h; y++) {
- int runstart, skipstart;
- int blankline = 0;
- /* First encode all opaque pixels of a scan line */
- x = 0;
- do {
- int run, skip, len;
- skipstart = x;
- while (x < w && !ISOPAQUE(src[x], sf)) {
- x++;
- }
- runstart = x;
- while (x < w && ISOPAQUE(src[x], sf)) {
- x++;
- }
- skip = runstart - skipstart;
- if (skip == w) {
- blankline = 1;
- }
- run = x - runstart;
- while (skip > max_opaque_run) {
- ADD_OPAQUE_COUNTS(max_opaque_run, 0);
- skip -= max_opaque_run;
- }
- len = SDL_min(run, max_opaque_run);
- ADD_OPAQUE_COUNTS(skip, len);
- dst += copy_opaque(dst, src + runstart, len, sf, df);
- runstart += len;
- run -= len;
- while (run) {
- len = SDL_min(run, max_opaque_run);
- ADD_OPAQUE_COUNTS(0, len);
- dst += copy_opaque(dst, src + runstart, len, sf, df);
- runstart += len;
- run -= len;
- }
- } while (x < w);
- /* Make sure the next output address is 32-bit aligned */
- dst += (uintptr_t)dst & 2;
- /* Next, encode all translucent pixels of the same scan line */
- x = 0;
- do {
- int run, skip, len;
- skipstart = x;
- while (x < w && !ISTRANSL(src[x], sf)) {
- x++;
- }
- runstart = x;
- while (x < w && ISTRANSL(src[x], sf)) {
- x++;
- }
- skip = runstart - skipstart;
- blankline &= (skip == w);
- run = x - runstart;
- while (skip > max_transl_run) {
- ADD_TRANSL_COUNTS(max_transl_run, 0);
- skip -= max_transl_run;
- }
- len = SDL_min(run, max_transl_run);
- ADD_TRANSL_COUNTS(skip, len);
- dst += copy_transl(dst, src + runstart, len, sf, df);
- runstart += len;
- run -= len;
- while (run) {
- len = SDL_min(run, max_transl_run);
- ADD_TRANSL_COUNTS(0, len);
- dst += copy_transl(dst, src + runstart, len, sf, df);
- runstart += len;
- run -= len;
- }
- if (!blankline) {
- lastline = dst;
- }
- } while (x < w);
- src += surface->pitch >> 2;
- }
- dst = lastline; /* back up past trailing blank lines */
- ADD_OPAQUE_COUNTS(0, 0);
- }
- #undef ADD_OPAQUE_COUNTS
- #undef ADD_TRANSL_COUNTS
- /* Now that we have it encoded, release the original pixels */
- if (!(surface->flags & SDL_SURFACE_PREALLOCATED)) {
- if (surface->flags & SDL_SURFACE_SIMD_ALIGNED) {
- SDL_aligned_free(surface->pixels);
- surface->flags &= ~SDL_SURFACE_SIMD_ALIGNED;
- } else {
- SDL_free(surface->pixels);
- }
- surface->pixels = NULL;
- }
- /* reallocate the buffer to release unused memory */
- {
- Uint8 *p = (Uint8 *)SDL_realloc(rlebuf, dst - rlebuf);
- if (!p) {
- p = rlebuf;
- }
- surface->internal->map.data = p;
- }
- return 0;
- }
- static Uint32 getpix_8(const Uint8 *srcbuf)
- {
- return *srcbuf;
- }
- static Uint32 getpix_16(const Uint8 *srcbuf)
- {
- return *(const Uint16 *)srcbuf;
- }
- static Uint32 getpix_24(const Uint8 *srcbuf)
- {
- #if SDL_BYTEORDER == SDL_LIL_ENDIAN
- return srcbuf[0] + (srcbuf[1] << 8) + (srcbuf[2] << 16);
- #else
- return (srcbuf[0] << 16) + (srcbuf[1] << 8) + srcbuf[2];
- #endif
- }
- static Uint32 getpix_32(const Uint8 *srcbuf)
- {
- return *(const Uint32 *)srcbuf;
- }
- typedef Uint32 (*getpix_func)(const Uint8 *);
- static const getpix_func getpixes[4] = {
- getpix_8, getpix_16, getpix_24, getpix_32
- };
- static int RLEColorkeySurface(SDL_Surface *surface)
- {
- Uint8 *rlebuf, *dst;
- int maxn;
- int y;
- Uint8 *srcbuf, *lastline;
- int maxsize = 0;
- const int bpp = surface->internal->format->bytes_per_pixel;
- getpix_func getpix;
- Uint32 ckey, rgbmask;
- int w, h;
- /* calculate the worst case size for the compressed surface */
- switch (bpp) {
- case 1:
- /* worst case is alternating opaque and transparent pixels,
- starting with an opaque pixel */
- maxsize = surface->h * 3 * (surface->w / 2 + 1) + 2;
- break;
- case 2:
- case 3:
- /* worst case is solid runs, at most 255 pixels wide */
- maxsize = surface->h * (2 * (surface->w / 255 + 1) + surface->w * bpp) + 2;
- break;
- case 4:
- /* worst case is solid runs, at most 65535 pixels wide */
- maxsize = surface->h * (4 * (surface->w / 65535 + 1) + surface->w * 4) + 4;
- break;
- default:
- return -1;
- }
- rlebuf = (Uint8 *)SDL_malloc(maxsize);
- if (!rlebuf) {
- return -1;
- }
- /* Set up the conversion */
- srcbuf = (Uint8 *)surface->pixels;
- maxn = bpp == 4 ? 65535 : 255;
- dst = rlebuf;
- rgbmask = ~surface->internal->format->Amask;
- ckey = surface->internal->map.info.colorkey & rgbmask;
- lastline = dst;
- getpix = getpixes[bpp - 1];
- w = surface->w;
- h = surface->h;
- #define ADD_COUNTS(n, m) \
- if (bpp == 4) { \
- ((Uint16 *)dst)[0] = (Uint16)n; \
- ((Uint16 *)dst)[1] = (Uint16)m; \
- dst += 4; \
- } else { \
- dst[0] = (Uint8)n; \
- dst[1] = (Uint8)m; \
- dst += 2; \
- }
- for (y = 0; y < h; y++) {
- int x = 0;
- int blankline = 0;
- do {
- int run, skip;
- int len;
- int runstart;
- int skipstart = x;
- /* find run of transparent, then opaque pixels */
- while (x < w && (getpix(srcbuf + x * bpp) & rgbmask) == ckey) {
- x++;
- }
- runstart = x;
- while (x < w && (getpix(srcbuf + x * bpp) & rgbmask) != ckey) {
- x++;
- }
- skip = runstart - skipstart;
- if (skip == w) {
- blankline = 1;
- }
- run = x - runstart;
- /* encode segment */
- while (skip > maxn) {
- ADD_COUNTS(maxn, 0);
- skip -= maxn;
- }
- len = SDL_min(run, maxn);
- ADD_COUNTS(skip, len);
- SDL_memcpy(dst, srcbuf + runstart * bpp, (size_t)len * bpp);
- dst += len * bpp;
- run -= len;
- runstart += len;
- while (run) {
- len = SDL_min(run, maxn);
- ADD_COUNTS(0, len);
- SDL_memcpy(dst, srcbuf + runstart * bpp, (size_t)len * bpp);
- dst += len * bpp;
- runstart += len;
- run -= len;
- }
- if (!blankline) {
- lastline = dst;
- }
- } while (x < w);
- srcbuf += surface->pitch;
- }
- dst = lastline; /* back up bast trailing blank lines */
- ADD_COUNTS(0, 0);
- #undef ADD_COUNTS
- /* Now that we have it encoded, release the original pixels */
- if (!(surface->flags & SDL_SURFACE_PREALLOCATED)) {
- if (surface->flags & SDL_SURFACE_SIMD_ALIGNED) {
- SDL_aligned_free(surface->pixels);
- surface->flags &= ~SDL_SURFACE_SIMD_ALIGNED;
- } else {
- SDL_free(surface->pixels);
- }
- surface->pixels = NULL;
- }
- /* reallocate the buffer to release unused memory */
- {
- /* If SDL_realloc returns NULL, the original block is left intact */
- Uint8 *p = (Uint8 *)SDL_realloc(rlebuf, dst - rlebuf);
- if (!p) {
- p = rlebuf;
- }
- surface->internal->map.data = p;
- }
- return 0;
- }
- int SDL_RLESurface(SDL_Surface *surface)
- {
- int flags;
- /* Clear any previous RLE conversion */
- if (surface->internal->flags & SDL_INTERNAL_SURFACE_RLEACCEL) {
- SDL_UnRLESurface(surface, SDL_TRUE);
- }
- /* We don't support RLE encoding of bitmaps */
- if (SDL_BITSPERPIXEL(surface->format) < 8) {
- return -1;
- }
- /* Make sure the pixels are available */
- if (!surface->pixels) {
- return -1;
- }
- flags = surface->internal->map.info.flags;
- if (flags & SDL_COPY_COLORKEY) {
- /* ok */
- } else if ((flags & SDL_COPY_BLEND) && SDL_ISPIXELFORMAT_ALPHA(surface->format)) {
- /* ok */
- } else {
- /* If we don't have colorkey or blending, nothing to do... */
- return -1;
- }
- /* Pass on combinations not supported */
- if ((flags & SDL_COPY_MODULATE_COLOR) ||
- ((flags & SDL_COPY_MODULATE_ALPHA) && SDL_ISPIXELFORMAT_ALPHA(surface->format)) ||
- (flags & (SDL_COPY_BLEND_PREMULTIPLIED | SDL_COPY_ADD | SDL_COPY_ADD_PREMULTIPLIED | SDL_COPY_MOD | SDL_COPY_MUL)) ||
- (flags & SDL_COPY_NEAREST)) {
- return -1;
- }
- /* Encode and set up the blit */
- if (!SDL_ISPIXELFORMAT_ALPHA(surface->format) || !(flags & SDL_COPY_BLEND)) {
- if (!surface->internal->map.identity) {
- return -1;
- }
- if (RLEColorkeySurface(surface) < 0) {
- return -1;
- }
- surface->internal->map.blit = SDL_RLEBlit;
- surface->internal->map.info.flags |= SDL_COPY_RLE_COLORKEY;
- } else {
- if (RLEAlphaSurface(surface) < 0) {
- return -1;
- }
- surface->internal->map.blit = SDL_RLEAlphaBlit;
- surface->internal->map.info.flags |= SDL_COPY_RLE_ALPHAKEY;
- }
- /* The surface is now accelerated */
- surface->internal->flags |= SDL_INTERNAL_SURFACE_RLEACCEL;
- return 0;
- }
- /*
- * Un-RLE a surface with pixel alpha
- * This may not give back exactly the image before RLE-encoding; all
- * completely transparent pixels will be lost, and color and alpha depth
- * may have been reduced (when encoding for 16bpp targets).
- */
- static SDL_bool UnRLEAlpha(SDL_Surface *surface)
- {
- Uint8 *srcbuf;
- Uint32 *dst;
- const SDL_PixelFormatDetails *sf = surface->internal->format;
- const SDL_PixelFormatDetails *df = SDL_GetPixelFormatDetails(*(SDL_PixelFormat *)surface->internal->map.data);
- int (*uncopy_opaque)(Uint32 *, const void *, int,
- const SDL_PixelFormatDetails *, const SDL_PixelFormatDetails *);
- int (*uncopy_transl)(Uint32 *, const void *, int,
- const SDL_PixelFormatDetails *, const SDL_PixelFormatDetails *);
- int w = surface->w;
- int bpp = df->bytes_per_pixel;
- size_t size;
- if (bpp == 2) {
- uncopy_opaque = uncopy_opaque_16;
- uncopy_transl = uncopy_transl_16;
- } else {
- uncopy_opaque = uncopy_transl = uncopy_32;
- }
- if (SDL_size_mul_overflow(surface->h, surface->pitch, &size)) {
- return SDL_FALSE;
- }
- surface->pixels = SDL_aligned_alloc(SDL_GetSIMDAlignment(), size);
- if (!surface->pixels) {
- return SDL_FALSE;
- }
- surface->flags |= SDL_SURFACE_SIMD_ALIGNED;
- /* fill background with transparent pixels */
- SDL_memset(surface->pixels, 0, (size_t)surface->h * surface->pitch);
- dst = (Uint32 *)surface->pixels;
- srcbuf = (Uint8 *)surface->internal->map.data + sizeof(SDL_PixelFormat);
- for (;;) {
- /* copy opaque pixels */
- int ofs = 0;
- do {
- unsigned run;
- if (bpp == 2) {
- ofs += srcbuf[0];
- run = srcbuf[1];
- srcbuf += 2;
- } else {
- ofs += ((Uint16 *)srcbuf)[0];
- run = ((Uint16 *)srcbuf)[1];
- srcbuf += 4;
- }
- if (run) {
- srcbuf += uncopy_opaque(dst + ofs, srcbuf, run, df, sf);
- ofs += run;
- } else if (!ofs) {
- goto end_function;
- }
- } while (ofs < w);
- /* skip padding if needed */
- if (bpp == 2) {
- srcbuf += (uintptr_t)srcbuf & 2;
- }
- /* copy translucent pixels */
- ofs = 0;
- do {
- unsigned run;
- ofs += ((Uint16 *)srcbuf)[0];
- run = ((Uint16 *)srcbuf)[1];
- srcbuf += 4;
- if (run) {
- srcbuf += uncopy_transl(dst + ofs, srcbuf, run, df, sf);
- ofs += run;
- }
- } while (ofs < w);
- dst += surface->pitch >> 2;
- }
- end_function:
- return SDL_TRUE;
- }
- void SDL_UnRLESurface(SDL_Surface *surface, SDL_bool recode)
- {
- if (surface->internal->flags & SDL_INTERNAL_SURFACE_RLEACCEL) {
- surface->internal->flags &= ~SDL_INTERNAL_SURFACE_RLEACCEL;
- if (recode && !(surface->flags & SDL_SURFACE_PREALLOCATED)) {
- if (surface->internal->map.info.flags & SDL_COPY_RLE_COLORKEY) {
- SDL_Rect full;
- size_t size;
- /* re-create the original surface */
- if (SDL_size_mul_overflow(surface->h, surface->pitch, &size)) {
- /* Memory corruption? */
- surface->internal->flags |= SDL_INTERNAL_SURFACE_RLEACCEL;
- return;
- }
- surface->pixels = SDL_aligned_alloc(SDL_GetSIMDAlignment(), size);
- if (!surface->pixels) {
- /* Oh crap... */
- surface->internal->flags |= SDL_INTERNAL_SURFACE_RLEACCEL;
- return;
- }
- surface->flags |= SDL_SURFACE_SIMD_ALIGNED;
- /* fill it with the background color */
- SDL_FillSurfaceRect(surface, NULL, surface->internal->map.info.colorkey);
- /* now render the encoded surface */
- full.x = full.y = 0;
- full.w = surface->w;
- full.h = surface->h;
- SDL_RLEBlit(surface, &full, surface, &full);
- } else {
- if (!UnRLEAlpha(surface)) {
- /* Oh crap... */
- surface->internal->flags |= SDL_INTERNAL_SURFACE_RLEACCEL;
- return;
- }
- }
- }
- surface->internal->map.info.flags &=
- ~(SDL_COPY_RLE_COLORKEY | SDL_COPY_RLE_ALPHAKEY);
- SDL_free(surface->internal->map.data);
- surface->internal->map.data = NULL;
- }
- }
- #endif /* SDL_HAVE_RLE */
|