]> git.draconx.ca Git - liblbx.git/blob - src/lbximg.c
lbximg: Push no-palette mode down into the PNG writer.
[liblbx.git] / src / lbximg.c
1 /*
2  *  2ooM: The Master of Orion II Reverse Engineering Project
3  *  Simple command-line tool to convert an LBX image to a set of PNGs.
4  *  Copyright © 2006-2011, 2013 Nick Bowler
5  *
6  *  This program is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 #include <config.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <limits.h>
24 #include <assert.h>
25 #include <getopt.h>
26 #include <errno.h>
27
28 #include "tools.h"
29 #include "image.h"
30 #include "error.h"
31 #include "lbx.h"
32
33 #include "imgoutput.h"
34
35 /* Global flags */
36 static int verbose = 0;
37 static char *outname = "out";
38 static int usepalette = 1;
39
40 static void printusage(void)
41 {
42         puts("usage: lbximg [-i|-d] [-v] [-p palette_file] [-O override_file]"
43                           " [-f path]");
44         puts("              [frameno ...]");
45 }
46
47 static void printhelp(void)
48 {
49         printusage();
50         puts("For now, see the man page for detailed help.");
51 }
52
53 enum {
54         MODE_NONE,
55         MODE_DECODE,
56         MODE_IDENT,
57 };
58
59 int parserange(unsigned frames, char *str, unsigned char *bits)
60 {
61         unsigned long start, end;
62         unsigned int i;
63         char *endptr;
64
65         start = strtoul(str, &endptr, 0);
66         if (start >= frames) {
67                 tool_err(-1, "frame %lu out of range.", start);
68                 return -1;
69         }
70
71         if (endptr == str) {
72                 tool_err(-1, "invalid frame range: %s.", str);
73                 return -1;
74         }
75
76         switch (*endptr) {
77         case '\0':
78                 end = start;
79                 break;
80         case '-':
81                 end = strtoul(endptr+1, &endptr, 0);
82                 if (end >= frames) {
83                         tool_err(-1, "frame %lu out of range.", end);
84                         return -1;
85                 }
86
87                 if (endptr == str)
88                         end = frames - 1;
89                 break;
90         default:
91                 tool_err(-1, "invalid frame range: %s.", str);
92                 return -1;
93         }
94
95         if (end < start) {
96                 tool_err(-1, "invalid frame range: %s.", str);
97                 return -1;
98         }
99
100         for (i = start; i <= end; i++) {
101                 bits[i / CHAR_BIT] |= 1 << (i % CHAR_BIT);
102         }
103
104         return 0;
105 }
106
107 int outpng(unsigned int frameno,
108            unsigned char **framedata, unsigned char **mask,
109            unsigned int width, unsigned int height,
110            struct lbx_colour palette[static 256])
111 {
112         char name[strlen(outname) + sizeof ".65535.png"];
113         FILE *of;
114         int rc;
115
116         assert(frameno < 65536);
117         snprintf(name, sizeof name, "%s.%03d.png", outname, frameno);
118
119         of = fopen(name, "wb");
120         if (!of) {
121                 tool_err(0, "failed to open %s", name);
122                 return -1;
123         }
124
125         rc = img_output_png(of, name, width, height, framedata, mask, palette);
126         if (rc < 0) {
127                 fclose(of);
128                 return -1;
129         }
130
131         if (fclose(of) == EOF) {
132                 tool_err(0, "error writing %s", name);
133                 return -1;
134         }
135                 
136         if (verbose)
137                 printf("wrote %s\n", name);
138
139         return 0;
140 }
141
142 static int loadoverride(FILE *f, struct lbx_colour palette[static 256])
143 {
144         struct lbx_image *overimg = lbx_img_open(f, &lbx_default_fops, NULL);
145         struct lbx_imginfo info;
146
147         if (!overimg) {
148                 tool_err(-1, "failed to open override image: %s", lbx_errmsg());
149                 return -1;
150         }
151         lbx_img_getinfo(overimg, &info);
152
153         if (!info.palettesz) {
154                 tool_err(-1, "override image has no palette.");
155                 lbx_img_close(overimg);
156                 return -1;
157         }
158
159         if (lbx_img_getpalette(overimg, palette) == -1) {
160                 tool_err(-1, "error reading override palette: %s", lbx_errmsg());
161                 lbx_img_close(overimg);
162                 return -1;
163         }
164
165         lbx_img_close(overimg);
166         return 0;
167 }
168
169 static int loadpalette(struct lbx_image *img, struct lbx_imginfo *info,
170                        FILE *palf, FILE *override,
171                        struct lbx_colour palette[static 256])
172 {
173         int i;
174
175         /* For sanity. */
176         if (!palf && !info->palettesz && !override) {
177                 tool_err(-1, "no palette available.");
178                 return -1;
179         }
180
181         /* Default the palette to a wonderful pink. */
182         for (i = 0; i < 256; i++) {
183                 palette[i] = (struct lbx_colour){0xff, 0x00, 0xff};
184         }
185
186         /* Read the external palette, if any. */
187         if (palf && lbx_img_loadpalette(palf, &lbx_default_fops, palette) != 0) {
188                 tool_err(-1, "error reading external palette: %s", lbx_errmsg());
189                 return -1;
190         }
191
192         /* Read the embedded palette, if any. */
193         if (info->palettesz && lbx_img_getpalette(img, palette) == -1) {
194                 tool_err(-1, "error reading embedded palette: %s", lbx_errmsg());
195                 return -1;
196         }
197
198         /* Read the override palette, if any. */
199         if (override && loadoverride(override, palette) == -1) {
200                 return -1;
201         }
202
203         return 0;
204 }
205
206 int decode(struct lbx_image *img, FILE *palf, FILE *override, char **argv)
207 {
208         unsigned char *framebits;
209         struct lbx_colour palette[256];
210         struct lbx_imginfo info;
211         int extracted = 0;
212         unsigned int i;
213
214         lbx_img_getinfo(img, &info);
215
216         framebits = calloc(1, img->frames / CHAR_BIT + 1);
217         if (!framebits) {
218                 return EXIT_FAILURE;
219         }
220
221         /* Figure out what images we're extracting. */
222         if (!argv[0]) {
223                 /* extract all images by default. */
224                 memset(framebits, -1, img->frames / CHAR_BIT + 1);
225         } else {
226                 for (i = 0; argv[i]; i++) {
227                         parserange(img->frames, argv[i], framebits);
228                 }
229         }
230
231         if (usepalette) {
232                 if (loadpalette(img, &info, palf, override, palette) == -1) {
233                         goto err;
234                 }
235         }
236
237         /* Extract the images, in order. */
238         for (i = 0; i < img->frames; i++) {
239                 unsigned char **data;
240                 unsigned char **mask;
241
242                 if (!(framebits[i / CHAR_BIT] & (1 << (i % CHAR_BIT))))
243                         continue;
244
245                 data = lbx_img_getframe(img, i);
246                 if (!data) {
247                         tool_err(-1, "error in frame %u: %s", i, lbx_errmsg());
248                         continue;
249                 }
250
251                 mask = lbx_img_getmask(img);
252
253                 if (!outpng(i, data, mask, img->width, img->height,
254                             usepalette ? palette : NULL)) {
255                         extracted = 1;
256                 }
257         }
258
259         if (!extracted) {
260                 tool_err(-1, "no frames extracted.");
261                 goto err;
262         }
263
264         free(framebits);
265         return EXIT_SUCCESS;
266 err:
267         free(framebits);
268         return EXIT_FAILURE;
269 }
270
271 int main(int argc, char **argv)
272 {
273         int mode = MODE_NONE, opt, rc = EXIT_FAILURE;
274         struct lbx_pipe_state stdin_handle = { .f = stdin };
275         FILE *palf = NULL, *overf = NULL;
276         const char *file = NULL;
277         struct lbx_image *img;
278
279         static const char *sopts = "idnvf:p:O:V";
280         static const struct option lopts[] = {
281                 { "ident",      0, NULL, 'i' },
282                 { "decode",     0, NULL, 'd' },
283                 { "verbose",    0, NULL, 'v' },
284                 { "file",       1, NULL, 'f' },
285                 { "palette",    1, NULL, 'p' },
286                 { "override",   1, NULL, 'p' },
287
288                 { "version",    0, NULL, 'V' },
289                 { "usage",      0, NULL, 'U' },
290                 { "help",       0, NULL, 'H' },
291
292                 { "no-palette", 0, NULL, 'n' },
293
294                 { 0 }
295         };
296
297         tool_init("lbximg", argc, argv);
298         while ((opt = getopt_long(argc, argv, sopts, lopts, NULL)) != -1) {
299                 switch(opt) {
300                 case 'i':
301                         mode = MODE_IDENT;
302                         break;
303                 case 'd':
304                         mode = MODE_DECODE;
305                         break;
306                 case 'v':
307                         verbose = 1;
308                         break;
309                 case 'f':
310                         file = optarg;
311                         break;
312                 case 'n':
313                         usepalette = 0;
314                         break;
315                 case 'p':
316                         palf = fopen(optarg, "rb");
317                         if (!palf) {
318                                 tool_err(0, "failed to open %s", optarg);
319                                 return EXIT_FAILURE;
320                         }
321
322                         break;
323                 case 'O':
324                         overf = fopen(optarg, "rb");
325                         if (!overf) {
326                                 tool_err(0, "failed to open %s", optarg);
327                                 return EXIT_FAILURE;
328                         }
329                         break;
330                 case 'V':
331                         tool_version();
332                         return EXIT_SUCCESS;
333                 case 'U':
334                         printusage();
335                         return EXIT_SUCCESS;
336                 case 'H':
337                         printhelp();
338                         return EXIT_SUCCESS;
339                 case '?':
340                 case ':':
341                         return EXIT_FAILURE;
342                 }
343         }
344
345         if (mode == MODE_NONE) {
346                 tool_err(-1, "you must specify a mode.");
347                 return EXIT_FAILURE;
348         }
349
350         if (file)
351                 img = lbx_img_fopen(file);
352         else
353                 img = lbx_img_open(&stdin_handle, &lbx_pipe_fops, NULL);
354
355         if (!img) {
356                 tool_err(-1, "failed to open image: %s.", lbx_errmsg());
357                 return EXIT_FAILURE;
358         }
359
360         if (verbose || mode == MODE_IDENT) {
361                 struct lbx_imginfo info;
362
363                 if (!file)
364                         file = "stdin";
365
366                 lbx_img_getinfo(img, &info);
367                 printf("%s is %ux%u LBX image, %u frame(s)%s%s\n",
368                        file, img->width, img->height, img->frames,
369                        info.palettesz ? ", embedded palette" : "",
370                        img->chunk     ? ", chunked" : "",
371                        info.looping   ? ", loops" : "");
372         }
373
374         switch (mode) {
375         case MODE_DECODE:
376                 rc = decode(img, palf, overf, &argv[optind]);
377                 break;
378         }
379
380         lbx_img_close(img);
381         return rc;
382 }