-
Notifications
You must be signed in to change notification settings - Fork 5
/
tga.hpp
446 lines (376 loc) · 9.58 KB
/
tga.hpp
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
#pragma once
#include <algorithm>
#include <cstdint>
#include <string>
#include <fstream>
/*!
* @file tga.hpp
* @brief All C++ library functional.
*/
namespace tga
{
template <typename Type>
static void ReadPixel8(Type*& Buffer, Type& Red)
{
Red = *Buffer++;
}
template <typename Type>
static void ReadPixel24(Type*& Buffer, Type& Red, Type& Green, Type& Blue)
{
Blue = *Buffer++;
Green = *Buffer++;
Red = *Buffer++;
}
template <typename Type>
static void ReadPixel32(Type*& Buffer, Type& Red, Type& Green, Type& Blue, Type& Alpha)
{
Blue = *Buffer++;
Green = *Buffer++;
Red = *Buffer++;
Alpha = *Buffer++;
}
template <typename Type>
static void WritePixel8(Type*& Buffer, Type Red)
{
*Buffer++ = Red;
}
template <typename Type>
static void WritePixel24(Type*& Buffer, Type Red, Type Green, Type Blue)
{
*Buffer++ = Red;
*Buffer++ = Green;
*Buffer++ = Blue;
}
template <typename Type>
static void WritePixel32(Type*& Buffer, Type Red, Type Green, Type Blue, Type Alpha)
{
*Buffer++ = Red;
*Buffer++ = Green;
*Buffer++ = Blue;
*Buffer++ = Alpha;
}
/*
* @brief Format of loaded image.
*/
enum class ImageFormat
{
Monochrome,
RGB,
RGBA,
Undefined
};
/**
* @brief Main TGA class.
*
* **Destructor deletes data. Pointer obtained with 'GetData' invalidates after destructing TGA object.**
*
* # Examples
*
* ```cpp
* #include "tga.hpp"
*
* tga::TGA tga;
* if (!tga.Load("image.tga")) error();
*
* uint8_t* Data = tga.GetData();
* uint64_t Size = tga.GetSize();
* uint32_t Width = tga.GetWidth();
* uint32_t Height = tga.GetHeight();
* tga::ImageFormat Format = tga.GetFormat();
* ```
*/
class TGA
{
private:
struct Header
{
uint8_t IDLength;
uint8_t ColorMapType;
uint8_t ImageType;
uint16_t ColorMapOrigin;
uint16_t ColorMapLength;
uint8_t ColorMapEntrySize;
uint16_t XOrigin;
uint16_t YOrigin;
uint16_t Width;
uint16_t Height;
uint8_t Bits;
uint8_t ImageDescriptor;
};
private:
uint8_t* Data;
uint64_t Size;
uint32_t Width;
uint32_t Height;
ImageFormat Format;
private:
template <typename Type>
void RGBPaletted(Type* InBuffer, uint8_t* ColorMap, uint8_t* OutBuffer, size_t Size);
template <typename Type>
void RGBAPaletted(Type* InBuffer, uint8_t* ColorMap, uint8_t* OutBuffer, size_t Size);
void RGBCompressed(uint8_t* InBuffer, uint8_t* OutBuffer, size_t Size);
void RGBACompressed(uint8_t* InBuffer, uint8_t* OutBuffer, size_t Size);
void MonochromeCompressed(uint8_t* InBuffer, uint8_t* OutBuffer, size_t Size);
public:
TGA() : Data(nullptr), Size(0), Width(0), Height(0), Format(ImageFormat::Undefined) {}
uint8_t* GetData() const { return Data; }
uint64_t GetSize() const { return Size; }
uint32_t GetWidth() const { return Width; }
uint32_t GetHeight() const { return Height; }
ImageFormat GetFormat() const { return Format; }
void Clear()
{
delete[] Data;
Size = 0;
Width = 0;
Height = 0;
Format = ImageFormat::Undefined;
}
/**
* @brief Loads image.
*
* **This function clears data i.e. invalidates data pointer.**
*
* @param Filename Image filename.
* @return true if success, otherwise false.
*/
bool Load(const std::string& Filename);
~TGA()
{
Clear();
}
};
template <typename Type>
void TGA::RGBPaletted(Type* InBuffer, uint8_t* ColorMap, uint8_t* OutBuffer, size_t Size)
{
const int PixelSize = 3;
Type Index;
uint8_t Red, Green, Blue;
uint8_t* ColorMapPtr;
for (size_t i = 0; i < Size; i++)
{
Index = InBuffer[i];
ColorMapPtr = &ColorMap[Index * PixelSize];
ReadPixel24(ColorMapPtr, Red, Green, Blue);
WritePixel24(OutBuffer, Red, Green, Blue);
}
}
template <typename Type>
void TGA::RGBAPaletted(Type* InBuffer, uint8_t* ColorMap, uint8_t* OutBuffer, size_t Size)
{
const int PixelSize = 4;
Type Index;
uint8_t Red, Green, Blue, Alpha;
uint8_t* ColorMapPtr;
for (size_t i = 0; i < Size; i++)
{
Index = InBuffer[i];
ColorMapPtr = &ColorMap[Index * PixelSize];
ReadPixel32(ColorMapPtr, Red, Green, Blue, Alpha);
WritePixel32(OutBuffer, Red, Green, Blue, Alpha);
}
}
void TGA::MonochromeCompressed(uint8_t* InBuffer, uint8_t* OutBuffer, size_t Size)
{
uint8_t Header;
uint8_t Red;
size_t i, j, PixelCount;
for (i = 0; i < Size; )
{
Header = *InBuffer++;
PixelCount = (Header & 0x7F) + 1;
if (Header & 0x80)
{
ReadPixel8(InBuffer, Red);
for (j = 0; j < PixelCount; j++)
{
WritePixel8(OutBuffer, Red);
}
i += PixelCount;
}
else
{
for (j = 0; j < PixelCount; j++)
{
ReadPixel8(InBuffer, Red);
WritePixel8(OutBuffer, Red);
}
i += PixelCount;
}
}
}
void TGA::RGBCompressed(uint8_t* InBuffer, uint8_t* OutBuffer, size_t Size)
{
uint8_t Header;
uint8_t Red, Green, Blue;
size_t i, j, PixelCount;
for (i = 0; i < Size; )
{
Header = *InBuffer++;
PixelCount = (Header & 0x7F) + 1;
if (Header & 0x80)
{
ReadPixel24(InBuffer, Red, Green, Blue);
for (j = 0; j < PixelCount; j++)
{
WritePixel24(OutBuffer, Red, Green, Blue);
}
i += PixelCount;
}
else
{
for (j = 0; j < PixelCount; j++)
{
ReadPixel24(InBuffer, Red, Green, Blue);
WritePixel24(OutBuffer, Red, Green, Blue);
}
i += PixelCount;
}
}
}
void TGA::RGBACompressed(uint8_t* InBuffer, uint8_t* OutBuffer, size_t Size)
{
uint8_t Header;
uint8_t Red, Green, Blue, Alpha;
size_t i, j, PixelCount;
for (i = 0; i < Size; )
{
Header = *InBuffer++;
PixelCount = (Header & 0x7F) + 1;
if (Header & 0x80)
{
ReadPixel32(InBuffer, Red, Green, Blue, Alpha);
for (j = 0; j < PixelCount; j++)
{
WritePixel32(OutBuffer, Red, Green, Blue, Alpha);
}
i += PixelCount;
}
else
{
for (j = 0; j < PixelCount; j++)
{
ReadPixel32(InBuffer, Red, Green, Blue, Alpha);
WritePixel32(OutBuffer, Red, Green, Blue, Alpha);
}
i += PixelCount;
}
}
}
bool TGA::Load(const std::string& Filename)
{
Clear();
std::ifstream File(Filename, std::ios::binary);
if (!File.is_open()) return false;
Header Head;
size_t FileSize = 0;
File.seekg(0, std::ios_base::end);
FileSize = File.tellg();
File.seekg(0, std::ios_base::beg);
File.read((char*)&Head.IDLength, sizeof(Head.IDLength));
File.read((char*)&Head.ColorMapType, sizeof(Head.ColorMapType));
File.read((char*)&Head.ImageType, sizeof(Head.ImageType));
File.read((char*)&Head.ColorMapOrigin, sizeof(Head.ColorMapOrigin));
File.read((char*)&Head.ColorMapLength, sizeof(Head.ColorMapLength));
File.read((char*)&Head.ColorMapEntrySize, sizeof(Head.ColorMapEntrySize));
File.read((char*)&Head.XOrigin, sizeof(Head.XOrigin));
File.read((char*)&Head.YOrigin, sizeof(Head.YOrigin));
File.read((char*)&Head.Width, sizeof(Head.Width));
File.read((char*)&Head.Height, sizeof(Head.Height));
File.read((char*)&Head.Bits, sizeof(Head.Bits));
File.read((char*)&Head.ImageDescriptor, sizeof(Head.ImageDescriptor));
uint8_t* Descriptor = new uint8_t[Head.ImageDescriptor];
File.read((char*)Descriptor, Head.ImageDescriptor);
size_t ColorMapElementSize = Head.ColorMapEntrySize / 8;
size_t ColorMapSize = Head.ColorMapLength * ColorMapElementSize;
uint8_t* ColorMap = new uint8_t[ColorMapSize];
if (Head.ColorMapType == 1)
{
File.read((char*)ColorMap, ColorMapSize);
}
size_t PixelSize = Head.ColorMapLength == 0 ? (Head.Bits / 8) : ColorMapElementSize;
size_t DataSize = FileSize - sizeof(Header) - (Head.ColorMapType == 1 ? ColorMapSize : 0);
size_t ImageSize = Head.Width * Head.Height * PixelSize;
uint8_t* Buffer = new uint8_t[DataSize];
File.read((char*)Buffer, DataSize);
Data = new uint8_t[ImageSize];
memset(Data, 0, ImageSize);
switch (Head.ImageType)
{
case 0: break; // No Image
case 1: // Uncompressed paletted
{
if (Head.Bits == 8)
{
switch (PixelSize)
{
case 3: RGBPaletted ((uint8_t*)Buffer, ColorMap, Data, Head.Width * Head.Height); break;
case 4: RGBAPaletted((uint8_t*)Buffer, ColorMap, Data, Head.Width * Head.Height); break;
}
}
else if (Head.Bits == 16)
{
switch (PixelSize)
{
case 3: RGBPaletted ((uint16_t*)Buffer, ColorMap, Data, Head.Width * Head.Height); break;
case 4: RGBAPaletted((uint16_t*)Buffer, ColorMap, Data, Head.Width * Head.Height); break;
}
}
break;
}
case 2: // Uncompressed TrueColor
{
if (Head.Bits = 24 || Head.Bits == 32)
{
std::copy(&Buffer[0], &Buffer[ImageSize], &Data[0]);
for (size_t i = 0; i < ImageSize; i += PixelSize)
{
std::swap(Data[i], Data[i + 2]);
}
}
break;
}
case 3: // Uncompressed Monochrome
{
if (Head.Bits == 8)
{
std::copy(&Buffer[0], &Buffer[ImageSize], &Data[0]);
}
break;
}
case 9: break; // Compressed paletted TODO
case 10: // Compressed TrueColor
{
switch (Head.Bits)
{
case 24: RGBCompressed (Buffer, Data, Head.Width * Head.Height); break;
case 32: RGBACompressed(Buffer, Data, Head.Width * Head.Height); break;
}
break;
}
case 11: // Compressed Monocrhome
{
if (Head.Bits == 8)
{
MonochromeCompressed(Buffer, Data, Head.Width * Head.Height);
}
break;
}
}
if (Head.ImageType != 0)
{
switch (PixelSize)
{
case 1: Format = ImageFormat::Monochrome; break;
case 3: Format = ImageFormat::RGB; break;
case 4: Format = ImageFormat::RGBA; break;
}
Width = Head.Width;
Height = Head.Height;
Size = ImageSize;
}
delete[] ColorMap;
delete[] Descriptor;
return true;
}
}