]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/imagewal/wal.cpp
* fixed warnings
[xonotic/netradiant.git] / plugins / imagewal / wal.cpp
1 /*
2 Copyright (C) 1999-2007 id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5 This file is part of GtkRadiant.
6
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 */
21
22 #include <stdio.h>
23 #include <string.h>
24 #include <glib.h>
25 #include "wal.h"
26
27 #include "q2_palette.h"
28
29 #define Sys_Printf g_FuncTable.m_pfnSysPrintf
30
31 void LoadWAL(const char *name, unsigned char **pic, int *width, int *height)
32 {
33 //    FILE      *f;
34     miptex_t    *wal_header;
35 //    rgb_t     *palette;
36     int         i, num_pixels, size;
37 //    char      text_buf[255];
38     unsigned int        length;
39     unsigned char       *palette_ent, *buf_temp;
40     unsigned char       *buffer, *wal_file_buffer;
41
42     // open file
43     if ( (length = vfsLoadFile ((char *) name, (void **) &wal_file_buffer, 0)) == (unsigned int) -1)
44     {
45         Sys_Printf("Unable to open file %s\n",name);
46       return;
47     }
48
49     wal_header = (miptex_t *)wal_file_buffer;
50
51     // make sure we have a valid bitmap file
52     if ( wal_header->width & 15)
53     {
54             vfsFreeFile(wal_file_buffer);
55             Sys_Printf("Invalid WAL file %s: Width not multiple of 16!\n", name);
56             return;
57     }
58
59     if ( wal_header->height & 15)
60     {
61             vfsFreeFile(wal_file_buffer);
62             Sys_Printf("Invalid WAL file %s: Height not multiple of 16!\n", name);
63             return;
64     }
65
66
67     // Get WAL Info
68     *width    = wal_header->width;              // Only interested in 1st MIP
69     *height   = wal_header->height;
70     num_pixels = (*width) * (*height);
71     size = num_pixels*4;
72
73     // Allocate buffer
74     buf_temp = (unsigned char *)(g_malloc(size));
75     *pic = buf_temp;
76
77     // Image data
78     buffer = wal_file_buffer + wal_header->offsets[0];
79
80
81     // Load texture into buffer
82     palette_ent = buffer;
83     for(i=0; i<num_pixels; i++)
84     {
85       *buf_temp++ = quake2_palette[*palette_ent][0];
86       *buf_temp++ = quake2_palette[*palette_ent][1];
87       *buf_temp++ = quake2_palette[*palette_ent][2];
88       *buf_temp++ = 255;                // No alpha
89       palette_ent++;
90     }
91
92     vfsFreeFile(wal_file_buffer);
93 }