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