forked from nillerusr/source-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtgaloader.cpp
279 lines (241 loc) · 6.41 KB
/
tgaloader.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#include "tgaloader.h"
#include "tier0/dbg.h"
#pragma pack(1)
typedef struct _TargaHeader {
unsigned char id_length, colormap_type, image_type;
unsigned short colormap_index, colormap_length;
unsigned char colormap_size;
unsigned short x_origin, y_origin, width, height;
unsigned char pixel_size, attributes;
} TargaHeader;
#pragma pack()
#define TGA_ATTRIBUTE_HFLIP 16
#define TGA_ATTRIBUTE_VFLIP 32
int fgetLittleShort (unsigned char **p)
{
byte b1, b2;
b1 = *((*p)++);
b2 = *((*p)++);
return (short)(b1 + b2*256);
}
int fgetLittleLong (unsigned char **p)
{
byte b1, b2, b3, b4;
b1 = *((*p)++);
b2 = *((*p)++);
b3 = *((*p)++);
b4 = *((*p)++);
return b1 + (b2<<8) + (b3<<16) + (b4<<24);
}
bool GetTGADimensions( int32 iBytes, char *pData, int * width, int *height )
{
TargaHeader header;
unsigned char *p = (unsigned char *)pData;
if (width) *width = 0;
if (height) *height = 0;
header.id_length = *(p++);
header.colormap_type = *(p++);
header.image_type = *(p++);
header.colormap_index = fgetLittleShort(&p);
header.colormap_length = fgetLittleShort(&p);
header.colormap_size = *(p++);
header.x_origin = fgetLittleShort(&p);
header.y_origin = fgetLittleShort(&p);
header.width = fgetLittleShort(&p);
header.height = fgetLittleShort(&p);
header.pixel_size = *(p++);
header.attributes = *(p++);
if ( header.image_type != 2 && header.image_type != 10 )
{
Msg( "LoadTGA: Only type 2 and 10 targa RGB images supported\n" );
return false;
}
if ( header.colormap_type !=0 || ( header.pixel_size != 32 && header.pixel_size != 24 ) )
{
Msg("Texture_LoadTGA: Only 32 or 24 bit images supported (no colormaps)\n");
return false;
}
if (width) *width = header.width;
if (height) *height = header.height;
return true;
}
bool LoadTGA( int32 iBytes, char *pData, byte **rawImage, int * rawImageBytes, int * width, int *height )
{
TargaHeader header;
unsigned char *p = (unsigned char *)pData;
if (width) *width = 0;
if (height) *height = 0;
header.id_length = *(p++);
header.colormap_type = *(p++);
header.image_type = *(p++);
header.colormap_index = fgetLittleShort(&p);
header.colormap_length = fgetLittleShort(&p);
header.colormap_size = *(p++);
header.x_origin = fgetLittleShort(&p);
header.y_origin = fgetLittleShort(&p);
header.width = fgetLittleShort(&p);
header.height = fgetLittleShort(&p);
header.pixel_size = *(p++);
header.attributes = *(p++);
if ( header.image_type != 2 && header.image_type != 10 )
{
Msg( "LoadTGA: Only type 2 and 10 targa RGB images supported\n" );
return false;
}
if ( header.colormap_type !=0 || ( header.pixel_size != 32 && header.pixel_size != 24 ) )
{
Msg("Texture_LoadTGA: Only 32 or 24 bit images supported (no colormaps)\n");
return false;
}
int columns = header.width;
int rows = header.height;
int numPixels = columns * rows;
if (width) *width = header.width;
if (height) *height = header.height;
if (rawImageBytes) *rawImageBytes = header.width * header.height * 4;
*rawImage = new byte[ numPixels * 4 ];
byte *pixbuf = *rawImage;
if ( header.id_length != 0 )
p += header.id_length; // skip TARGA image comment.
if ( header.image_type == 2 ) { // Uncompressed, RGB images
for(int row = rows - 1; row >=0; row-- )
{
if ( header.attributes & TGA_ATTRIBUTE_VFLIP )
pixbuf = *rawImage + (rows-row-1)*columns*4;
else
pixbuf = *rawImage + row*columns*4;
for(int column=0; column < columns; column++)
{
unsigned char red,green,blue,alphabyte;
switch ( header.pixel_size )
{
case 24:
blue = *(p++);
green = *(p++);
red = *(p++);
*pixbuf++ = red;
*pixbuf++ = green;
*pixbuf++ = blue;
*pixbuf++ = 255;
break;
case 32:
blue = *(p++);
green = *(p++);
red = *(p++);
alphabyte = *(p++);
*pixbuf++ = red;
*pixbuf++ = green;
*pixbuf++ = blue;
*pixbuf++ = alphabyte;
break;
}
}
}
}
else if ( header.image_type == 10 )
{
// Runlength encoded RGB images
unsigned char red,green,blue,alphabyte,packetHeader,packetSize,j;
for( int row = rows - 1; row >= 0; row--)
{
if ( header.attributes & TGA_ATTRIBUTE_VFLIP )
pixbuf = *rawImage + (rows-row-1)*columns*4;
else
pixbuf = *rawImage + row*columns*4;
for( int column=0; column < columns; ) {
packetHeader=*(p++);
packetSize = 1 + (packetHeader & 0x7f);
if (packetHeader & 0x80) { // run-length packet
switch ( header.pixel_size )
{
case 24:
blue = *(p++);
green = *(p++);
red = *(p++);
alphabyte = 255;
break;
case 32:
default:
blue = *(p++);
green = *(p++);
red = *(p++);
alphabyte = *(p++);
break;
}
for(j=0;j<packetSize;j++)
{
*pixbuf++=red;
*pixbuf++=green;
*pixbuf++=blue;
*pixbuf++=alphabyte;
column++;
if (column==columns) { // run spans across rows
column=0;
if (row>0)
row--;
else
goto breakOut;
pixbuf = *rawImage + row*columns*4;
}
}
}
else
{ // non run-length packet
for(j=0;j<packetSize;j++) {
switch (header.pixel_size) {
case 24:
blue = *(p++);
green = *(p++);
red = *(p++);
*pixbuf++ = red;
*pixbuf++ = green;
*pixbuf++ = blue;
*pixbuf++ = 255;
break;
case 32:
blue = *(p++);
green = *(p++);
red = *(p++);
alphabyte = *(p++);
*pixbuf++ = red;
*pixbuf++ = green;
*pixbuf++ = blue;
*pixbuf++ = alphabyte;
break;
}
column++;
if (column==columns)
{ // pixel packet run spans across rows
column=0;
if (row>0)
row--;
else
goto breakOut;
pixbuf = *rawImage + row*columns*4;
}
}
}
}
breakOut:;
}
}
return true;
}
void WriteTGA( const char *pchFileName, void *rgba, int wide, int tall )
{
_TargaHeader header;
memset( &header, 0x0, sizeof(header) );
header.width = wide;
header.height = tall;
header.image_type = 2;
header.pixel_size = 32;
FILE *fp = fopen( pchFileName, "w+" );
fwrite( &header, 1, sizeof(header), fp );
fwrite( rgba, 1, wide*tall*4, fp );
fclose(fp);
}