]> git.draconx.ca Git - liblbx.git/blob - src/gui/render.c
e30e6c845623feb011fb8397ce05bb80807a6434
[liblbx.git] / src / gui / render.c
1 /*
2  *  2ooM: The Master of Orion II Reverse Engineering Project
3  *  Routines for rendering LBX images to a GdkPixbuf.
4  *  Copyright (C) 2010 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
20 #include <config.h>
21 #include <assert.h>
22 #include <gtk/gtk.h>
23
24 #include "render.h"
25 #include "image.h"
26
27 /* LBX images can have up to three palettes, with each superseding the last. */
28 struct lbx_colour palette_external[256];
29 struct lbx_colour palette_internal[256];
30 struct lbx_colour palette_override[256];
31
32 static void get_colour(unsigned char index, unsigned char out[static 4])
33 {
34         struct lbx_colour *colour;
35
36         if (palette_override[index].active)
37                 colour = palette_override + index;
38         else if (palette_internal[index].active)
39                 colour = palette_internal + index;
40         else if (palette_external[index].active)
41                 colour = palette_external + index;
42         else
43                 colour = &(struct lbx_colour) { .red = 0xff, .blue = 0xff };
44
45         out[0] = colour->red;
46         out[1] = colour->green;
47         out[2] = colour->blue;
48         out[3] = -1; /* opaque */
49 }
50
51 int render_to_pixbuf(struct lbx_image *image, GdkPixbuf *pixbuf, unsigned frame)
52 {
53         unsigned char **framedata, **framemask, *outbuf;
54         unsigned stride;
55
56         assert(image->width  == gdk_pixbuf_get_width(pixbuf));
57         assert(image->height == gdk_pixbuf_get_height(pixbuf));
58
59         framedata = lbx_img_getframe(image, frame);
60         g_return_val_if_fail(framedata, -1);
61         framemask = lbx_img_getmask(image);
62
63         outbuf = gdk_pixbuf_get_pixels(pixbuf);
64         stride = gdk_pixbuf_get_rowstride(pixbuf);
65
66         for (unsigned i = 0; i < image->height; i++) {
67                 unsigned char (*px)[4] = (void *)(outbuf + i*stride);
68
69                 for (unsigned j = 0; j < image->width; j++) {
70                         if (framemask[i][j])
71                                 get_colour(framedata[i][j], px[j]);
72                         else
73                                 px[j][3] = 0; /* transparent */
74                 }
75         }
76
77         return 0;
78 }