summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds/libnds/source/arm9/pcx.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/arm/nds/libnds/source/arm9/pcx.c')
-rw-r--r--c/src/lib/libbsp/arm/nds/libnds/source/arm9/pcx.c85
1 files changed, 0 insertions, 85 deletions
diff --git a/c/src/lib/libbsp/arm/nds/libnds/source/arm9/pcx.c b/c/src/lib/libbsp/arm/nds/libnds/source/arm9/pcx.c
deleted file mode 100644
index 292f70fb6c..0000000000
--- a/c/src/lib/libbsp/arm/nds/libnds/source/arm9/pcx.c
+++ /dev/null
@@ -1,85 +0,0 @@
-/*---------------------------------------------------------------------------------
- Copyright (C) 2005
- Jason Rogers (dovoto)
- Dave Murphy (WinterMute)
-
- 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 <nds/jtypes.h>
-#include <nds/arm9/video.h>
-#include <nds/arm9/image.h>
-#include <malloc.h>
-
-//---------------------------------------------------------------------------------
-int loadPCX(unsigned char* pcx, sImage* image) {
-//---------------------------------------------------------------------------------
- //struct rgb {unsigned char b,g,r;};
- RGB_24* pal;
-
- PCXHeader* hdr = (PCXHeader*) pcx;
-
- pcx += sizeof(PCXHeader);
-
- unsigned char c;
- int size;
- int count;
- int run;
- int i;
-
- image->width = hdr->xmax - hdr->xmin + 1 ;
- image->height = hdr->ymax - hdr->ymin + 1;
-
- size = image->width *image->height;
-
- image->image.data8 = (unsigned char*)malloc(size);
- image->palette = (unsigned short*)malloc(256 * 2);
-
- if(hdr->bitsPerPixel != 8)
- return 0;
-
- count = 0;
-
- while(count < size) {
- c = *pcx++;
-
- if(c < 192) {
- image->image.data8[count++] = c;
- } else {
- run = c - 192;
-
- c = *pcx++;
-
- for(i = 0; i < run; i++)
- image->image.data8[count++] = c;
- }
- }
-
- pal = (RGB_24*)(pcx + 1);
-
- image->bpp = 8;
-
- for(i = 0; i < 256; i++)
- {
- u8 r = (pal[i].r + 4 > 255) ? 255 : (pal[i].r + 4);
- u8 g = (pal[i].g + 4 > 255) ? 255 : (pal[i].g + 4);
- u8 b = (pal[i].b + 4 > 255) ? 255 : (pal[i].b + 4);
- image->palette[i] = RGB15(r >> 3 , g >> 3 , b >> 3) ;
- }
- return 1;
-}