]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/imagewal/wal.cpp
error check and bail if permission denied during gamepack install
[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 //    FILE      *f;
33         miptex_t    *wal_header;
34 //    rgb_t     *palette;
35         int i, num_pixels, size;
36 //    char      text_buf[255];
37         unsigned int length;
38         unsigned char   *palette_ent, *buf_temp;
39         unsigned char       *buffer, *wal_file_buffer;
40
41         // open file
42         if ( ( length = vfsLoadFile( (char *) name, (void **) &wal_file_buffer, 0 ) ) == (unsigned int) -1 ) {
43                 Sys_Printf( "Unable to open file %s\n",name );
44                 return;
45         }
46
47         wal_header = (miptex_t *)wal_file_buffer;
48
49         // make sure we have a valid bitmap file
50         if ( wal_header->width & 15 ) {
51                 vfsFreeFile( wal_file_buffer );
52                 Sys_Printf( "Invalid WAL file %s: Width not multiple of 16!\n", name );
53                 return;
54         }
55
56         if ( wal_header->height & 15 ) {
57                 vfsFreeFile( wal_file_buffer );
58                 Sys_Printf( "Invalid WAL file %s: Height not multiple of 16!\n", name );
59                 return;
60         }
61
62
63         // Get WAL Info
64         *width    = wal_header->width;      // Only interested in 1st MIP
65         *height   = wal_header->height;
66         num_pixels = ( *width ) * ( *height );
67         size = num_pixels * 4;
68
69         // Allocate buffer
70         buf_temp = (unsigned char *)( g_malloc( size ) );
71         *pic = buf_temp;
72
73         // Image data
74         buffer = wal_file_buffer + wal_header->offsets[0];
75
76
77         // Load texture into buffer
78         palette_ent = buffer;
79         for ( i = 0; i < num_pixels; i++ )
80         {
81                 *buf_temp++ = quake2_palette[*palette_ent][0];
82                 *buf_temp++ = quake2_palette[*palette_ent][1];
83                 *buf_temp++ = quake2_palette[*palette_ent][2];
84                 *buf_temp++ = 255;      // No alpha
85                 palette_ent++;
86         }
87
88         vfsFreeFile( wal_file_buffer );
89 }