]> 4ch.mooo.com Git - 16.git/blob - src/lib/modex16/16planar.c
eh...
[16.git] / src / lib / modex16 / 16planar.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669\r
3  *\r
4  * This file is part of Project 16.\r
5  *\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
10  *\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
15  *\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
20  *\r
21  */\r
22 \r
23 #include <stdio.h>\r
24 #include <stdlib.h>\r
25 #include <malloc.h>\r
26 #include "src/lib/modex16/16planar.h"\r
27 \r
28 /*\r
29  *============================================================================\r
30  */\r
31 \r
32 static void loadPcxpbufStage1(FILE *file, planar_buf_t *result) {\r
33         int index;\r
34         byte count, val;\r
35         long int pos;\r
36 \r
37 //word w=0;\r
38 //fprintf(stderr, "\nplanarLoadPcx: ");\r
39 //fprintf(stderr, "%u ", w++);\r
40         /* read the header */\r
41         fread(&head, sizeof(char), sizeof(struct pcxHeader), file);\r
42 //fprintf(stderr, "%u ", w++);\r
43         /* get the width and height */\r
44         result->width = head.xmax - head.xmin + 1;\r
45         result->height = head.ymax - head.ymin + 1;\r
46         result->pwidth = result->width / 4 + (result->width%4 ? 1 : 0);\r
47 //fprintf(stderr, "%u ", w++);\r
48         /* make sure this  is 8bpp */\r
49         if(head.bpp != 8) {\r
50                 fprintf(stderr, "I only know how to handle 8bpp pcx files!\n");\r
51                 fclose(file);\r
52                 exit(-2);\r
53         }\r
54 }\r
55 \r
56 static void loadPcxpbufPalette(FILE *file, planar_buf_t *result) {\r
57         byte val;\r
58         int index;\r
59 \r
60         /* handle the palette */\r
61         fseek(file, -769, SEEK_END);\r
62         val = fgetc(file);\r
63         result->palette = modexNewPal();\r
64         if(head.version == 5 && val == 12) {\r
65         /* use the vga palette */\r
66         for(index=0; !feof(file) && index < PAL_SIZE; index++) {\r
67                 val = fgetc(file);\r
68                 result->palette[index] = val >> 2;\r
69         }\r
70         } else {\r
71         /* use the 16 color palette */\r
72         for(index=0; index<48; index++) {\r
73                 result->palette[index]  = head.pal16[index];\r
74         }\r
75         }\r
76 }\r
77 \r
78 /* allocates a planar buffer with specified dimensions */\r
79 planar_buf_t\r
80 pbuf_alloc(word width, word height) {\r
81         planar_buf_t p;\r
82         int i;\r
83 \r
84         /* allocate the structure and populate sizes */\r
85         //p=malloc(sizeof(planar_buf_t));\r
86         p.width  = width;\r
87         p.height = height;\r
88         p.pwidth = width / 4 + (width%4 ? 1 : 0);\r
89         //p.pwidth = width / 4 + (width%4 ? 1 : 0);\r
90 \r
91         /* allocate the planes */\r
92         for(i=0; i<4; i++) {\r
93         p.plane[i] = _fmalloc(p.height * p.pwidth);\r
94         }\r
95 \r
96         return p;\r
97 }\r
98 \r
99 /* allocates a planar buffer with specified dimensions */\r
100 void\r
101 pbuf_alloc0(planar_buf_t *p, word width, word height) {\r
102         int i;\r
103 \r
104         /* allocate the structure and populate sizes */\r
105         //p=malloc(sizeof(planar_buf_t));\r
106         p->width  = width;\r
107         p->height = height;\r
108         p->pwidth = width / 4 + (width%4 ? 1 : 0);\r
109         //p.pwidth = width / 4 + (width%4 ? 1 : 0);\r
110 \r
111         /* allocate the planes */\r
112         for(i=0; i<4; i++) {\r
113         p->plane[i] = _fmalloc(p->height * p->pwidth);\r
114         }\r
115 }\r
116 \r
117 /*      sparky4's functions~    */\r
118 planar_buf_t planarLoadPcx(char *filename)\r
119 {\r
120         FILE *file;\r
121         planar_buf_t result;\r
122         dword bufSize;\r
123         int index[4], plane;\r
124         byte count, val;\r
125 \r
126 word w=0;\r
127 fprintf(stderr, "\nplanarLoadPcx: ");\r
128 fprintf(stderr, "%u ", w++);\r
129         /* open the PCX file for reading */\r
130         file = fopen(filename, "rb");\r
131 //fprintf(stderr, "%u ", w++);\r
132         if(!file) {\r
133                 fprintf(stderr, "Could not open %s for reading.\n", filename);\r
134                 exit(-2);\r
135         }\r
136 //fprintf(stderr, "%u ", w++);\r
137         /* load the first part of the pcx file */\r
138         loadPcxpbufStage1(file, &result);\r
139 //fprintf(stderr, "%u ", w++);\r
140         /* allocate the buffer */\r
141         bufSize = (/*(dword)*/result.width * result.height);\r
142         result = pbuf_alloc(result.width, result.height);\r
143         //pbuf_alloc0(&result, result.width, result.height);\r
144 //fprintf(stderr, "%u ", w++);\r
145         printf("&bufSize=%p\n", &bufSize);\r
146         printf("&result.data=%p\n", result.plane);\r
147         printf("Size of block is %zu bytes\n", _msize(result.plane));\r
148         printf("Size of bufSize is %zu bytes\n", bufSize);\r
149         printf("Size of result.width is %zu \n", result.width);\r
150         printf("Size of result.height is %zu \n", result.height);\r
151         printf("Dimensions of result is %lu\n", (dword)result.width*result.height);\r
152         //exit(0);\r
153         if(!result.plane) {\r
154                 fprintf(stderr, "Could not allocate memory for bitmap data.");\r
155                 fclose(file);\r
156                 exit(-1);\r
157         }\r
158 fprintf(stderr, "read the buffer? %u ", w++);\r
159 getch();\r
160         /*  read the buffer in */\r
161         index[0] = 0,index[1]=0,index[2]=0,index[3]=0;\r
162         /* start on the first plane */\r
163         plane=0;\r
164         do {\r
165         /* get the run length and the value */\r
166         count = fgetc(file);\r
167         if(0xC0 ==  (count & 0xC0)) { /* this is the run count */\r
168                 count &= 0x3f;\r
169                 val = fgetc(file);\r
170         } else {\r
171                 val = count;\r
172                 count = 1;\r
173         }\r
174 \r
175         /* write the pixel the specified number of times */\r
176 //fprintf(stderr, "\nputting in memory~ %u\n", w++);\r
177 //if(index>=49152) getch();\r
178         for(; count && (index[0]+index[1]+index[2]+index[3]) < bufSize; count--,index[plane]++)  {\r
179 //fprintf(stderr, "count=%d     index=%d        plane=%d\n", count, index, plane);\r
180                 switch (plane)\r
181                 {\r
182                         case 4:\r
183                                 plane=0;\r
184                         break;\r
185                         case 0:\r
186                         case 1:\r
187                         case 2:\r
188                                 plane++;\r
189                         break;\r
190                 }\r
191                 //fprintf(stderr, "%d ", result.plane[plane][(index[0]+index[1]+index[2]+index[3])]);\r
192                 // copy to each plane\r
193                 result.plane[plane++][index[plane]]=val;\r
194         }\r
195         } while((index[0]+index[1]+index[2]+index[3]) < bufSize);\r
196         getch();\r
197         //++++loadPcxpbufPalette(file, &result);\r
198         fclose(file);\r
199         return result;\r
200 \r
201 }\r
202 \r
203 //TODO: update!!\r
204 tileset_t\r
205 planarLoadPcxTiles(char *filename, word twidth, word theight) {\r
206         tileset_t ts;\r
207         FILE *file;\r
208         planar_buf_t result;\r
209         int i;\r
210 \r
211         /* open the PCX file for reading */\r
212         file = fopen(filename, "rb");\r
213         if(!file) {\r
214                 printf("Could not open %s for reading.\n", filename);\r
215                 exit(-2);\r
216         }\r
217 \r
218         /* load the first part of the pcx file */\r
219         loadPcxpbufStage1(file, &result);\r
220 \r
221         /* get the number of tiles and set up the result structure */\r
222         ts.twidth = twidth;\r
223         ts.theight = theight;\r
224         ts.ntiles = (result.width/twidth) * (result.height/theight);\r
225         ts.palette = result.palette;\r
226 \r
227         /* allocate the pixel storage for the tiles */\r
228         /*ts.data = malloc(sizeof(byte*) * ts.ntiles);\r
229         ts.data[0] = malloc(sizeof(byte) * ts.ntiles * twidth * theight);\r
230         for(i=1; i < ts.ntiles; i++) {\r
231                 ts.data[i] = ts.data[i-1] + twidth * theight;\r
232         }*/\r
233 \r
234         /* finish off the file */\r
235         //++++loadPcxPalette(file, &result);\r
236 \r
237         fclose(file);\r
238 \r
239         return ts;\r
240 }\r