1 /* Project 16 Source Code~
\r
2 * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669
\r
4 * This file is part of Project 16.
\r
6 * Project 16 is free software; you can redistribute it and/or modify
\r
7 * it under the terms of the GNU General Public License as published by
\r
8 * the Free Software Foundation; either version 3 of the License, or
\r
9 * (at your option) any later version.
\r
11 * Project 16 is distributed in the hope that it will be useful,
\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 * GNU General Public License for more details.
\r
16 * You should have received a copy of the GNU General Public License
\r
17 * along with this program. If not, see <http://www.gnu.org/licenses/>, or
\r
18 * write to the Free Software Foundation, Inc., 51 Franklin Street,
\r
19 * Fifth Floor, Boston, MA 02110-1301 USA.
\r
26 #include "src/lib/modex16/16planar.h"
\r
30 static struct pcxHeader {
\r
49 #endif /*PCXHEADER_H*/
\r
51 static void loadPcxpbufStage1(FILE *file, planar_buf_t *result) {
\r
56 /* read the header */
\r
57 fread(&head, sizeof(char), sizeof(struct pcxHeader), file);
\r
59 /* get the width and height */
\r
60 result->width = head.xmax - head.xmin + 1;
\r
61 result->height = head.ymax - head.ymin + 1;
\r
63 /* make sure this is 8bpp */
\r
65 fprintf(stderr, "I only know how to handle 8bpp pcx files!\n");
\r
71 static void loadPcxpbufPalette(FILE *file, planar_buf_t *result) {
\r
75 /* handle the palette */
\r
76 fseek(file, -769, SEEK_END);
\r
78 result->palette = modexNewPal();
\r
79 if(head.version == 5 && val == 12) {
\r
80 /* use the vga palette */
\r
81 for(index=0; !feof(file) && index < PAL_SIZE; index++) {
\r
83 result->palette[index] = val >> 2;
\r
86 /* use the 16 color palette */
\r
87 for(index=0; index<48; index++) {
\r
88 result->palette[index] = head.pal16[index];
\r
93 /* sparky4's functions~ */
\r
94 planar_buf_t planarLoadPcx(char *filename)
\r
97 planar_buf_t result;
\r
99 int index, plane, x, y;
\r
103 /* open the PCX file for reading */
\r
104 file = fopen(filename, "rb");
\r
106 fprintf(stderr, "Could not open %s for reading.\n", filename);
\r
110 /* load the first part of the pcx file */
\r
111 loadPcxpbufStage1(file, &result);
\r
113 /* allocate the buffer */
\r
114 bufSize = (/*(dword)*/result.width * result.height);
\r
115 //result = pbuf_alloc(result.width, result.height);
\r
116 if(!result.plane[0]) {
\r
117 fprintf(stderr, "Could not allocate memory for bitmap data.");
\r
122 /* read the buffer in */
\r
125 /* get the run length and the value */
\r
126 count = fgetc(file);
\r
127 if(0xC0 == (count & 0xC0)) { /* this is the run count */
\r
135 // start on the first plane
\r
137 /* write the pixel the specified number of times */
\r
138 for(; count && index < bufSize; count--,index++) {
\r
145 // copy to each plane
\r
146 result.plane[plane++][index]=val;
\r
148 } while(index < bufSize);
\r
150 //++++loadPcxpbufPalette(file, &result);
\r
158 planarLoadPcxTiles(char *filename, word twidth, word theight) {
\r
161 planar_buf_t result;
\r
164 /* open the PCX file for reading */
\r
165 file = fopen(filename, "rb");
\r
167 printf("Could not open %s for reading.\n", filename);
\r
171 /* load the first part of the pcx file */
\r
172 loadPcxpbufStage1(file, &result);
\r
174 /* get the number of tiles and set up the result structure */
\r
175 ts.twidth = twidth;
\r
176 ts.theight = theight;
\r
177 ts.ntiles = (result.width/twidth) * (result.height/theight);
\r
178 ts.palette = result.palette;
\r
180 /* allocate the pixel storage for the tiles */
\r
181 /*ts.data = malloc(sizeof(byte*) * ts.ntiles);
\r
182 ts.data[0] = malloc(sizeof(byte) * ts.ntiles * twidth * theight);
\r
183 for(i=1; i < ts.ntiles; i++) {
\r
184 ts.data[i] = ts.data[i-1] + twidth * theight;
\r
187 /* finish off the file */
\r
188 //++++loadPcxPalette(file, &result);
\r