]> git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/imagem8/m32.cpp
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / plugins / imagem8 / m32.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 "m32.h"
26
27 void LoadM32( const char *name, unsigned char **pic, int *width, int *height ){
28 //    FILE      *f;
29         m32_header_t    *m32_header;
30         //rgb_t *palette;
31         int i, num_pixels, size;
32 //    char      text_buf[255];
33         unsigned int length;
34         unsigned char   *palette_ent, *buf_temp;
35         unsigned char       *buffer, *m32_file_buffer;
36
37         // open file
38         if ( ( length = vfsLoadFile( (char *) name, (void **) &m32_file_buffer, 0 ) ) == (unsigned int) -1 ) {
39                 Sys_Printf( "Unable to open file %s\n",name );
40                 return;
41         }
42
43         m32_header = (m32_header_t *)m32_file_buffer;
44
45         // make sure we have a valid bitmap file
46         if ( m32_header->version != M32_VERSION ) {
47                 vfsFreeFile( m32_file_buffer );
48                 Sys_Printf( "Invalid M32 file %s\n", name );
49         }
50
51         // Get M32 Info
52         *width    = m32_header->width[0];       // Only interested in 1st MIP
53         *height   = m32_header->height[0];
54         num_pixels = ( *width ) * ( *height );
55         size = num_pixels * 4;
56
57         // Allocate buffer
58         buf_temp = (unsigned char *)( g_malloc( size ) );
59         *pic = buf_temp;
60
61         // Image data
62         buffer = m32_file_buffer + m32_header->offsets[0];
63
64
65         // Load texture into buffer
66         palette_ent = buffer;
67         for ( i = 0; i < size; i++, palette_ent++ )
68         {
69                 *buf_temp++ = *palette_ent;
70         }
71
72         vfsFreeFile( m32_file_buffer );
73 }