-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathImage.cpp
351 lines (300 loc) · 8.03 KB
/
Image.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
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
#include "StdAfx.h"
#include "Image.h"
#include "ArcFile.h"
#include "Common.h"
/// Constructor
CImage::CImage()
{
}
bool CImage::Mount(CArcFile* archive)
{
return m_bmp.Mount(archive);
}
bool CImage::Decode(CArcFile* archive)
{
const SFileInfo* file_info = archive->GetOpenFileInfo();
if (file_info->format != _T("BMP"))
return false;
// Read BMP
std::vector<u8> src(file_info->size_org);
archive->Read(src.data(), src.size());
// Output
Init(archive, src.data());
Write(src.size());
return true;
}
/// Initialization (When BMP is passed)
///
/// @param archive Archive
/// @param bmp BMP data
/// @param file_name Filename
///
bool CImage::Init(CArcFile* archive, void* bmp, const YCString& file_name)
{
const SFileInfo* file_info = archive->GetOpenFileInfo();
u8* src = static_cast<u8*>(bmp);
if (file_info->format == _T("BMP") && file_info->title == _T("") && file_info->key == 0)
{
// Simple decoding
archive->InitDecrypt(src);
archive->Decrypt(src, file_info->size_org);
}
m_archive = archive;
m_bmp_data = src;
m_bmp_file_header = reinterpret_cast<BITMAPFILEHEADER*>(&src[0]);
m_bmp_info_header = reinterpret_cast<BITMAPINFOHEADER*>(&src[14]);
if (m_bmp_file_header->bfType != 0x4D42)
{
// No BM or such in an encryption header
archive->OpenFile();
archive->WriteFile(src, file_info->size_org);
m_is_valid_bmp_header = false;
return false;
}
// Normal BMP
return Init(archive, m_bmp_info_header->biWidth, m_bmp_info_header->biHeight, m_bmp_info_header->biBitCount, &src[54], m_bmp_file_header->bfOffBits - 54, file_name);
}
/// Initialization
///
/// @param archive Archive
/// @param width Width
/// @param height Height
/// @param bpp Number of bits
/// @param pallet Palette
/// @param pallet_size Palette size
/// @param file_name File name
///
bool CImage::Init(CArcFile* archive, s32 width, s32 height, u16 bpp, const void* pallet, size_t pallet_size, const YCString& file_name)
{
m_archive = archive;
m_option = archive->GetOpt();
// Header output
// BMP Output
if (m_option->bDstBMP)
{
TCHAR full_file_name[MAX_PATH];
lstrcpy(full_file_name, file_name);
PathRenameExtension(full_file_name, _T(".bmp"));
return m_bmp.Init(archive, width, height, bpp, pallet, pallet_size, full_file_name);
}
// PNG Output
if (m_option->bDstPNG)
{
TCHAR full_file_name[MAX_PATH];
lstrcpy(full_file_name, file_name);
PathRenameExtension(full_file_name, _T(".png"));
return m_png.Init(archive, width, height, bpp, pallet, pallet_size, full_file_name);
}
return true;
}
/// Close
void CImage::Close()
{
m_archive->CloseFile();
}
/// Output
///
/// @param bmp_size BMP Size
/// @param progress Request progress bar status
///
bool CImage::Write(size_t bmp_size, bool progress)
{
return Write(&m_bmp_data[m_bmp_file_header->bfOffBits], bmp_size - m_bmp_file_header->bfOffBits, progress);
}
/// Output
///
/// @param bmp_data BMP Data (header not included)
/// @param bmp_data_size BMP Data Size
/// @param progress Request progress bar status
///
bool CImage::Write(const void* bmp_data, size_t bmp_data_size, bool progress)
{
// Invalid BMP
if (!m_is_valid_bmp_header)
return false;
// BMP Output
if (m_option->bDstBMP)
{
m_bmp.Write(bmp_data, bmp_data_size, progress);
}
// PNG output
else if (m_option->bDstPNG)
{
// BMP format for top-down to Reverse
m_png.WriteReverse(bmp_data, bmp_data_size, progress);
}
return true;
}
/// Inverted Output
///
/// @param bmp_size BMP Size
/// @param progress Request progress bar status
///
bool CImage::WriteReverse(size_t bmp_size, bool progress)
{
return WriteReverse(&m_bmp_data[m_bmp_file_header->bfOffBits], bmp_size - m_bmp_file_header->bfOffBits, progress);
}
/// Inverted Output
///
/// @param bmp_data BMP Data (header not included)
/// @param bmp_data_size BMP Data Size
/// @param progress Request progress bar status
///
bool CImage::WriteReverse(const void* bmp_data, size_t bmp_data_size, bool progress)
{
// Invalid BMP
if (!m_is_valid_bmp_header)
return false;
// BMP output
if (m_option->bDstBMP)
{
m_bmp.WriteReverse(bmp_data, bmp_data_size, progress);
}
// PNG output
else if (m_option->bDstPNG)
{
// BMP format for top-down to Reverse
m_png.Write(bmp_data, bmp_data_size, progress);
}
return true;
}
/// Synthesize BGRA Output
///
/// @param bmp_size BMP Size
/// @param progress Request BMP status
///
bool CImage::WriteCompoBGRA(size_t bmp_size, bool progress)
{
return WriteCompoBGRA(&m_bmp_data[m_bmp_file_header->bfOffBits], bmp_size - m_bmp_file_header->bfOffBits, progress);
}
/// Synthesize BGRA Output
///
/// @param bmp_data BMP Data (header not included)
/// @param bmp_data_size BMP Data Size
/// @param progress Request progress bar status
///
bool CImage::WriteCompoBGRA(const void* bmp_data, size_t bmp_data_size, bool progress)
{
// Invalid BMP
if (!m_is_valid_bmp_header)
return false;
// BMP output
if (m_option->bDstBMP)
{
m_bmp.WriteCompoBGRA(bmp_data, bmp_data_size, progress);
}
// PNG output
else if (m_option->bDstPNG)
{
// BMP format for top-down to Reverse
m_png.WriteCompoBGRAReverse(bmp_data, bmp_data_size, progress);
}
return true;
}
/// Synthesize upside-down BGRA Output
///
/// @param bmp_size BMP Size
/// @param progress Request progress bar status
///
bool CImage::WriteCompoBGRAReverse(size_t bmp_size, bool progress)
{
return WriteCompoBGRAReverse(&m_bmp_data[m_bmp_file_header->bfOffBits], bmp_size - m_bmp_file_header->bfOffBits, progress);
}
/// Synthesize upside-down BGRA Output
///
/// @param bmp_data BMP Data (header not included)
/// @param bmp_data_size BMP Data Size
/// @param progress Request progress bar status
///
bool CImage::WriteCompoBGRAReverse(const void* bmp_data, size_t bmp_data_size, bool progress)
{
// Invalid BMP
if (!m_is_valid_bmp_header)
return false;
// BMP output
if (m_option->bDstBMP)
{
m_bmp.WriteCompoBGRAReverse(bmp_data, bmp_data_size, progress);
}
// PNG output
else if (m_option->bDstPNG)
{
// BMP format for top-down to Reverse
m_png.WriteCompoBGRA(bmp_data, bmp_data_size, progress);
}
return true;
}
/// Synthesize RGBA Output
///
/// @param bmp_size BMP Size
/// @param progress Request progress bar status
///
bool CImage::WriteCompoRGBA(size_t bmp_size, bool progress)
{
return WriteCompoRGBA(&m_bmp_data[m_bmp_file_header->bfOffBits], bmp_size - m_bmp_file_header->bfOffBits, progress);
}
/// Synthesize RGBA Output
///
/// @param bmp_data BMP Data (Header not included)
/// @param bmp_data_size BMP Data Size
/// @param progress Request progress bar status
///
bool CImage::WriteCompoRGBA(const void* bmp_data, size_t bmp_data_size, bool progress)
{
// Invalid BMP
if (!m_is_valid_bmp_header)
return false;
// BMP output
if (m_option->bDstBMP)
{
m_bmp.WriteCompoRGBA(bmp_data, bmp_data_size, progress);
}
// PNG output
else if (m_option->bDstPNG)
{
m_png.WriteCompoRGBAReverse(bmp_data, bmp_data_size, progress);
}
return true;
}
/// Synthesize upside-down RGBA Output
///
/// @param bmp_size BMP Size
/// @param progress Request progress bar status
///
bool CImage::WriteCompoRGBAReverse(size_t bmp_size, bool progress)
{
return WriteCompoRGBAReverse(&m_bmp_data[m_bmp_file_header->bfOffBits], bmp_size - m_bmp_file_header->bfOffBits, progress);
}
/// Synthesize upside-down RGBA Output
///
/// @param bmp_data BMP Data (Header not included)
/// @param bmp_data_size BMP Data Size
/// @param progress Requesting progress bar status
///
bool CImage::WriteCompoRGBAReverse(const void* bmp_data, size_t bmp_data_size, bool progress)
{
// Invalid BMP
if (!m_is_valid_bmp_header)
return false;
// BMP output
if (m_option->bDstBMP)
{
m_bmp.WriteCompoRGBAReverse(bmp_data, bmp_data_size, progress);
}
// PNG output
else if (m_option->bDstPNG)
{
m_png.WriteCompoRGBA(bmp_data, bmp_data_size, progress);
}
return true;
}
/// Get bitmap file header
BITMAPFILEHEADER* CImage::GetBmpFileHeader() const
{
return m_bmp_file_header;
}
/// Get bitmap info header
BITMAPINFOHEADER* CImage::GetBmpInfoHeader() const
{
return m_bmp_info_header;
}