123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936 |
- /* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
- //
- // Copyright (c) 2009, Wei Mingzhi <whistler_wmz@users.sf.net>.
- // All rights reserved.
- //
- // Based on PAL MapEditor by Baldur.
- //
- // This file is part of SDLPAL.
- //
- // SDLPAL is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program 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 General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- #include "palcommon.h"
- #include "global.h"
- #include "palcfg.h"
- INT
- PAL_RLEBlitToSurface(
- LPCBITMAPRLE lpBitmapRLE,
- SDL_Surface *lpDstSurface,
- PAL_POS pos
- )
- /*++
- Purpose:
- Blit an RLE-compressed bitmap to an SDL surface.
- NOTE: Assume the surface is already locked, and the surface is a 8-bit one.
- Parameters:
- [IN] lpBitmapRLE - pointer to the RLE-compressed bitmap to be decoded.
- [OUT] lpDstSurface - pointer to the destination SDL surface.
- [IN] pos - position of the destination area.
- Return value:
- 0 = success, -1 = error.
- --*/
- {
- UINT i, j;
- INT x, y;
- UINT uiLen = 0;
- UINT uiWidth = 0;
- UINT uiHeight = 0;
- BYTE T;
- INT dx = PAL_X(pos);
- INT dy = PAL_Y(pos);
- //
- // Check for NULL pointer.
- //
- if (lpBitmapRLE == NULL || lpDstSurface == NULL)
- {
- return -1;
- }
- //
- // Skip the 0x00000002 in the file header.
- //
- if (lpBitmapRLE[0] == 0x02 && lpBitmapRLE[1] == 0x00 &&
- lpBitmapRLE[2] == 0x00 && lpBitmapRLE[3] == 0x00)
- {
- lpBitmapRLE += 4;
- }
- //
- // Get the width and height of the bitmap.
- //
- uiWidth = lpBitmapRLE[0] | (lpBitmapRLE[1] << 8);
- uiHeight = lpBitmapRLE[2] | (lpBitmapRLE[3] << 8);
- //
- // Calculate the total length of the bitmap.
- // The bitmap is 8-bpp, each pixel will use 1 byte.
- //
- uiLen = uiWidth * uiHeight;
- //
- // Start decoding and blitting the bitmap.
- //
- lpBitmapRLE += 4;
- for (i = 0; i < uiLen;)
- {
- T = *lpBitmapRLE++;
- if ((T & 0x80) && T <= 0x80 + uiWidth)
- {
- i += T - 0x80;
- }
- else
- {
- for (j = 0; j < T; j++)
- {
- //
- // Calculate the destination coordination.
- // FIXME: This could be optimized
- //
- y = (i + j) / uiWidth + dy;
- x = (i + j) % uiWidth + dx;
- //
- // Skip the points which are out of the surface.
- //
- if (x < 0)
- {
- j += -x - 1;
- continue;
- }
- else if (x >= lpDstSurface->w)
- {
- j += x - lpDstSurface->w;
- continue;
- }
- if (y < 0)
- {
- j += -y * uiWidth - 1;
- continue;
- }
- else if (y >= lpDstSurface->h)
- {
- goto end; // No more pixels needed, break out
- }
- //
- // Put the pixel onto the surface (FIXME: inefficient).
- //
- ((LPBYTE)lpDstSurface->pixels)[y * lpDstSurface->pitch + x] = lpBitmapRLE[j];
- }
- lpBitmapRLE += T;
- i += T;
- }
- }
- end:
- //
- // Success
- //
- return 0;
- }
- INT
- PAL_RLEBlitWithColorShift(
- LPCBITMAPRLE lpBitmapRLE,
- SDL_Surface *lpDstSurface,
- PAL_POS pos,
- INT iColorShift
- )
- /*++
- Purpose:
- Blit an RLE-compressed bitmap to an SDL surface.
- NOTE: Assume the surface is already locked, and the surface is a 8-bit one.
- Parameters:
- [IN] lpBitmapRLE - pointer to the RLE-compressed bitmap to be decoded.
- [OUT] lpDstSurface - pointer to the destination SDL surface.
- [IN] pos - position of the destination area.
- [IN] iColorShift - shift the color by this value.
- Return value:
- 0 = success, -1 = error.
- --*/
- {
- UINT i, j;
- INT x, y;
- UINT uiLen = 0;
- UINT uiWidth = 0;
- UINT uiHeight = 0;
- BYTE T, b;
- INT dx = PAL_X(pos);
- INT dy = PAL_Y(pos);
- //
- // Check for NULL pointer.
- //
- if (lpBitmapRLE == NULL || lpDstSurface == NULL)
- {
- return -1;
- }
- //
- // Skip the 0x00000002 in the file header.
- //
- if (lpBitmapRLE[0] == 0x02 && lpBitmapRLE[1] == 0x00 &&
- lpBitmapRLE[2] == 0x00 && lpBitmapRLE[3] == 0x00)
- {
- lpBitmapRLE += 4;
- }
- //
- // Get the width and height of the bitmap.
- //
- uiWidth = lpBitmapRLE[0] | (lpBitmapRLE[1] << 8);
- uiHeight = lpBitmapRLE[2] | (lpBitmapRLE[3] << 8);
- //
- // Calculate the total length of the bitmap.
- // The bitmap is 8-bpp, each pixel will use 1 byte.
- //
- uiLen = uiWidth * uiHeight;
- //
- // Start decoding and blitting the bitmap.
- //
- lpBitmapRLE += 4;
- for (i = 0; i < uiLen;)
- {
- T = *lpBitmapRLE++;
- if ((T & 0x80) && T <= 0x80 + uiWidth)
- {
- i += T - 0x80;
- }
- else
- {
- for (j = 0; j < T; j++)
- {
- //
- // Calculate the destination coordination.
- // FIXME: This could be optimized
- //
- y = (i + j) / uiWidth + dy;
- x = (i + j) % uiWidth + dx;
- //
- // Skip the points which are out of the surface.
- //
- if (x < 0)
- {
- j += -x - 1;
- continue;
- }
- else if (x >= lpDstSurface->w)
- {
- j += x - lpDstSurface->w;
- continue;
- }
- if (y < 0)
- {
- j += -y * uiWidth - 1;
- continue;
- }
- else if (y >= lpDstSurface->h)
- {
- goto end; // No more pixels needed, break out
- }
- //
- // Put the pixel onto the surface (FIXME: inefficient).
- //
- b = (lpBitmapRLE[j] & 0x0F);
- if ((INT)b + iColorShift > 0x0F)
- {
- b = 0x0F;
- }
- else if ((INT)b + iColorShift < 0)
- {
- b = 0;
- }
- else
- {
- b += iColorShift;
- }
- ((LPBYTE)lpDstSurface->pixels)[y * lpDstSurface->pitch + x] =
- (b | (lpBitmapRLE[j] & 0xF0));
- }
- lpBitmapRLE += T;
- i += T;
- }
- }
- end:
- //
- // Success
- //
- return 0;
- }
- INT
- PAL_RLEBlitMonoColor(
- LPCBITMAPRLE lpBitmapRLE,
- SDL_Surface *lpDstSurface,
- PAL_POS pos,
- BYTE bColor,
- INT iColorShift
- )
- /*++
- Purpose:
- Blit an RLE-compressed bitmap to an SDL surface in mono-color form.
- NOTE: Assume the surface is already locked, and the surface is a 8-bit one.
- Parameters:
- [IN] lpBitmapRLE - pointer to the RLE-compressed bitmap to be decoded.
- [OUT] lpDstSurface - pointer to the destination SDL surface.
- [IN] pos - position of the destination area.
- [IN] bColor - the color to be used while drawing.
- [IN] iColorShift - shift the color by this value.
- Return value:
- 0 = success, -1 = error.
- --*/
- {
- UINT i, j;
- INT x, y;
- UINT uiLen = 0;
- UINT uiWidth = 0;
- UINT uiHeight = 0;
- BYTE T, b;
- INT dx = PAL_X(pos);
- INT dy = PAL_Y(pos);
- //
- // Check for NULL pointer.
- //
- if (lpBitmapRLE == NULL || lpDstSurface == NULL)
- {
- return -1;
- }
- //
- // Skip the 0x00000002 in the file header.
- //
- if (lpBitmapRLE[0] == 0x02 && lpBitmapRLE[1] == 0x00 &&
- lpBitmapRLE[2] == 0x00 && lpBitmapRLE[3] == 0x00)
- {
- lpBitmapRLE += 4;
- }
- //
- // Get the width and height of the bitmap.
- //
- uiWidth = lpBitmapRLE[0] | (lpBitmapRLE[1] << 8);
- uiHeight = lpBitmapRLE[2] | (lpBitmapRLE[3] << 8);
- //
- // Calculate the total length of the bitmap.
- // The bitmap is 8-bpp, each pixel will use 1 byte.
- //
- uiLen = uiWidth * uiHeight;
- //
- // Start decoding and blitting the bitmap.
- //
- lpBitmapRLE += 4;
- bColor &= 0xF0;
- for (i = 0; i < uiLen;)
- {
- T = *lpBitmapRLE++;
- if ((T & 0x80) && T <= 0x80 + uiWidth)
- {
- i += T - 0x80;
- }
- else
- {
- for (j = 0; j < T; j++)
- {
- //
- // Calculate the destination coordination.
- // FIXME: This could be optimized
- //
- y = (i + j) / uiWidth + dy;
- x = (i + j) % uiWidth + dx;
- //
- // Skip the points which are out of the surface.
- //
- if (x < 0)
- {
- j += -x - 1;
- continue;
- }
- else if (x >= lpDstSurface->w)
- {
- j += x - lpDstSurface->w;
- continue;
- }
- if (y < 0)
- {
- j += -y * uiWidth - 1;
- continue;
- }
- else if (y >= lpDstSurface->h)
- {
- goto end; // No more pixels needed, break out
- }
- //
- // Put the pixel onto the surface (FIXME: inefficient).
- //
- b = lpBitmapRLE[j] & 0x0F;
- if ((INT)b + iColorShift > 0x0F)
- {
- b = 0x0F;
- }
- else if ((INT)b + iColorShift < 0)
- {
- b = 0;
- }
- else
- {
- b += iColorShift;
- }
- ((LPBYTE)lpDstSurface->pixels)[y * lpDstSurface->pitch + x] = (b | bColor);
- }
- lpBitmapRLE += T;
- i += T;
- }
- }
- end:
- //
- // Success
- //
- return 0;
- }
- INT
- PAL_FBPBlitToSurface(
- LPBYTE lpBitmapFBP,
- SDL_Surface *lpDstSurface
- )
- /*++
- Purpose:
- Blit an uncompressed bitmap in FBP.MKF to an SDL surface.
- NOTE: Assume the surface is already locked, and the surface is a 8-bit 320x200 one.
- Parameters:
- [IN] lpBitmapFBP - pointer to the RLE-compressed bitmap to be decoded.
- [OUT] lpDstSurface - pointer to the destination SDL surface.
- Return value:
- 0 = success, -1 = error.
- --*/
- {
- int x, y;
- LPBYTE p;
- if (lpBitmapFBP == NULL || lpDstSurface == NULL ||
- lpDstSurface->w != 320 || lpDstSurface->h != 200)
- {
- return -1;
- }
- //
- // simply copy everything to the surface
- //
- for (y = 0; y < 200; y++)
- {
- p = (LPBYTE)(lpDstSurface->pixels) + y * lpDstSurface->pitch;
- for (x = 0; x < 320; x++)
- {
- *(p++) = *(lpBitmapFBP++);
- }
- }
- return 0;
- }
- INT
- PAL_RLEGetWidth(
- LPCBITMAPRLE lpBitmapRLE
- )
- /*++
- Purpose:
- Get the width of an RLE-compressed bitmap.
- Parameters:
- [IN] lpBitmapRLE - pointer to an RLE-compressed bitmap.
- Return value:
- Integer value which indicates the height of the bitmap.
- --*/
- {
- if (lpBitmapRLE == NULL)
- {
- return 0;
- }
- //
- // Skip the 0x00000002 in the file header.
- //
- if (lpBitmapRLE[0] == 0x02 && lpBitmapRLE[1] == 0x00 &&
- lpBitmapRLE[2] == 0x00 && lpBitmapRLE[3] == 0x00)
- {
- lpBitmapRLE += 4;
- }
- //
- // Return the width of the bitmap.
- //
- return lpBitmapRLE[0] | (lpBitmapRLE[1] << 8);
- }
- INT
- PAL_RLEGetHeight(
- LPCBITMAPRLE lpBitmapRLE
- )
- /*++
- Purpose:
- Get the height of an RLE-compressed bitmap.
- Parameters:
- [IN] lpBitmapRLE - pointer of an RLE-compressed bitmap.
- Return value:
- Integer value which indicates the height of the bitmap.
- --*/
- {
- if (lpBitmapRLE == NULL)
- {
- return 0;
- }
- //
- // Skip the 0x00000002 in the file header.
- //
- if (lpBitmapRLE[0] == 0x02 && lpBitmapRLE[1] == 0x00 &&
- lpBitmapRLE[2] == 0x00 && lpBitmapRLE[3] == 0x00)
- {
- lpBitmapRLE += 4;
- }
- //
- // Return the height of the bitmap.
- //
- return lpBitmapRLE[2] | (lpBitmapRLE[3] << 8);
- }
- WORD
- PAL_SpriteGetNumFrames(
- LPCSPRITE lpSprite
- )
- /*++
- Purpose:
- Get the total number of frames of a sprite.
- Parameters:
- [IN] lpSprite - pointer to the sprite.
- Return value:
- Number of frames of the sprite.
- --*/
- {
- if (lpSprite == NULL)
- {
- return 0;
- }
- return (lpSprite[0] | (lpSprite[1] << 8)) - 1;
- }
- LPCBITMAPRLE
- PAL_SpriteGetFrame(
- LPCSPRITE lpSprite,
- INT iFrameNum
- )
- /*++
- Purpose:
- Get the pointer to the specified frame from a sprite.
- Parameters:
- [IN] lpSprite - pointer to the sprite.
- [IN] iFrameNum - number of the frame.
- Return value:
- Pointer to the specified frame. NULL if the frame does not exist.
- --*/
- {
- int imagecount, offset;
- if (lpSprite == NULL)
- {
- return NULL;
- }
- //
- // Hack for broken sprites like the Bloody-Mouth Bug
- //
- // imagecount = (lpSprite[0] | (lpSprite[1] << 8)) - 1;
- imagecount = (lpSprite[0] | (lpSprite[1] << 8));
- if (iFrameNum < 0 || iFrameNum >= imagecount)
- {
- //
- // The frame does not exist
- //
- return NULL;
- }
- //
- // Get the offset of the frame
- //
- iFrameNum <<= 1;
- offset = ((lpSprite[iFrameNum] | (lpSprite[iFrameNum + 1] << 8)) << 1);
- if (!gConfig.fIsWIN95) offset = (WORD)offset;
- return &lpSprite[offset];
- }
- INT
- PAL_MKFGetChunkCount(
- FILE *fp
- )
- /*++
- Purpose:
- Get the number of chunks in an MKF archive.
- Parameters:
- [IN] fp - pointer to an fopen'ed MKF file.
- Return value:
- Integer value which indicates the number of chunks in the specified MKF file.
- --*/
- {
- INT iNumChunk;
- if (fp == NULL)
- {
- return 0;
- }
- fseek(fp, 0, SEEK_SET);
- fread(&iNumChunk, sizeof(INT), 1, fp);
- iNumChunk = (SDL_SwapLE32(iNumChunk) - 4) / 4;
- return iNumChunk;
- }
- INT
- PAL_MKFGetChunkSize(
- UINT uiChunkNum,
- FILE *fp
- )
- /*++
- Purpose:
- Get the size of a chunk in an MKF archive.
- Parameters:
- [IN] uiChunkNum - the number of the chunk in the MKF archive.
- [IN] fp - pointer to the fopen'ed MKF file.
- Return value:
- Integer value which indicates the size of the chunk.
- -1 if the chunk does not exist.
- --*/
- {
- UINT uiOffset = 0;
- UINT uiNextOffset = 0;
- UINT uiChunkCount = 0;
- //
- // Get the total number of chunks.
- //
- uiChunkCount = PAL_MKFGetChunkCount(fp);
- if (uiChunkNum >= uiChunkCount)
- {
- return -1;
- }
- //
- // Get the offset of the specified chunk and the next chunk.
- //
- fseek(fp, 4 * uiChunkNum, SEEK_SET);
- fread(&uiOffset, sizeof(UINT), 1, fp);
- fread(&uiNextOffset, sizeof(UINT), 1, fp);
- uiOffset = SDL_SwapLE32(uiOffset);
- uiNextOffset = SDL_SwapLE32(uiNextOffset);
- //
- // Return the length of the chunk.
- //
- return uiNextOffset - uiOffset;
- }
- INT
- PAL_MKFReadChunk(
- LPBYTE lpBuffer,
- UINT uiBufferSize,
- UINT uiChunkNum,
- FILE *fp
- )
- /*++
- Purpose:
- Read a chunk from an MKF archive into lpBuffer.
- Parameters:
- [OUT] lpBuffer - pointer to the destination buffer.
- [IN] uiBufferSize - size of the destination buffer.
- [IN] uiChunkNum - the number of the chunk in the MKF archive to read.
- [IN] fp - pointer to the fopen'ed MKF file.
- Return value:
- Integer value which indicates the size of the chunk.
- -1 if there are error in parameters.
- -2 if buffer size is not enough.
- --*/
- {
- UINT uiOffset = 0;
- UINT uiNextOffset = 0;
- UINT uiChunkCount;
- UINT uiChunkLen;
- if (lpBuffer == NULL || fp == NULL || uiBufferSize == 0)
- {
- return -1;
- }
- //
- // Get the total number of chunks.
- //
- uiChunkCount = PAL_MKFGetChunkCount(fp);
- if (uiChunkNum >= uiChunkCount)
- {
- return -1;
- }
- //
- // Get the offset of the chunk.
- //
- fseek(fp, 4 * uiChunkNum, SEEK_SET);
- fread(&uiOffset, 4, 1, fp);
- fread(&uiNextOffset, 4, 1, fp);
- uiOffset = SDL_SwapLE32(uiOffset);
- uiNextOffset = SDL_SwapLE32(uiNextOffset);
- //
- // Get the length of the chunk.
- //
- uiChunkLen = uiNextOffset - uiOffset;
- if (uiChunkLen > uiBufferSize)
- {
- return -2;
- }
- if (uiChunkLen != 0)
- {
- fseek(fp, uiOffset, SEEK_SET);
- fread(lpBuffer, uiChunkLen, 1, fp);
- }
- else
- {
- return -1;
- }
- return (INT)uiChunkLen;
- }
- INT
- PAL_MKFGetDecompressedSize(
- UINT uiChunkNum,
- FILE *fp
- )
- /*++
- Purpose:
- Get the decompressed size of a compressed chunk in an MKF archive.
- Parameters:
- [IN] uiChunkNum - the number of the chunk in the MKF archive.
- [IN] fp - pointer to the fopen'ed MKF file.
- Return value:
- Integer value which indicates the size of the chunk.
- -1 if the chunk does not exist.
- --*/
- {
- DWORD buf[2];
- UINT uiOffset;
- UINT uiChunkCount;
- if (fp == NULL)
- {
- return -1;
- }
- //
- // Get the total number of chunks.
- //
- uiChunkCount = PAL_MKFGetChunkCount(fp);
- if (uiChunkNum >= uiChunkCount)
- {
- return -1;
- }
- //
- // Get the offset of the chunk.
- //
- fseek(fp, 4 * uiChunkNum, SEEK_SET);
- fread(&uiOffset, 4, 1, fp);
- uiOffset = SDL_SwapLE32(uiOffset);
- //
- // Read the header.
- //
- fseek(fp, uiOffset, SEEK_SET);
- if (gConfig.fIsWIN95)
- {
- fread(buf, sizeof(DWORD), 1, fp);
- buf[0] = SDL_SwapLE32(buf[0]);
- return (INT)buf[0];
- }
- else
- {
- fread(buf, sizeof(DWORD), 2, fp);
- buf[0] = SDL_SwapLE32(buf[0]);
- buf[1] = SDL_SwapLE32(buf[1]);
- return (buf[0] != 0x315f4a59) ? -1 : (INT)buf[1];
- }
- }
- INT
- PAL_MKFDecompressChunk(
- LPBYTE lpBuffer,
- UINT uiBufferSize,
- UINT uiChunkNum,
- FILE *fp
- )
- /*++
- Purpose:
- Decompress a compressed chunk from an MKF archive into lpBuffer.
- Parameters:
- [OUT] lpBuffer - pointer to the destination buffer.
- [IN] uiBufferSize - size of the destination buffer.
- [IN] uiChunkNum - the number of the chunk in the MKF archive to read.
- [IN] fp - pointer to the fopen'ed MKF file.
- Return value:
- Integer value which indicates the size of the chunk.
- -1 if there are error in parameters, or buffer size is not enough.
- -3 if cannot allocate memory for decompression.
- --*/
- {
- LPBYTE buf;
- int len;
- len = PAL_MKFGetChunkSize(uiChunkNum, fp);
- if (len <= 0)
- {
- return len;
- }
- buf = (LPBYTE)malloc(len);
- if (buf == NULL)
- {
- return -3;
- }
- PAL_MKFReadChunk(buf, len, uiChunkNum, fp);
- len = Decompress(buf, lpBuffer, uiBufferSize);
- free(buf);
- return len;
- }
|