This repository was archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathEtcSourceImage.cpp
More file actions
293 lines (247 loc) · 7.5 KB
/
EtcSourceImage.cpp
File metadata and controls
293 lines (247 loc) · 7.5 KB
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
/*
* Copyright 2015 The Etc2Comp Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifdef _WIN32
#define _CRT_SECURE_NO_WARNINGS (1)
#endif
#include "EtcConfig.h"
#include "EtcSourceImage.h"
#include "Etc.h"
#if USE_STB_IMAGE_LOAD
#include "stb_image.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "lodepng.h"
namespace Etc
{
// ----------------------------------------------------------------------------------------------------
//
SourceImage::SourceImage(const char *a_pstrFilename, int a_iPixelX, int a_iPixelY)
{
m_pstrFilename = nullptr;
m_pstrName = nullptr;
m_pstrFileExtension = nullptr;
m_uiWidth = 0;
m_uiHeight = 0;
m_pafrgbaPixels = nullptr;
SetName(a_pstrFilename);
Read(a_iPixelX, a_iPixelY);
}
// ----------------------------------------------------------------------------------------------------
//
SourceImage::SourceImage(ColorFloatRGBA *a_pafrgbaSource,
unsigned int a_uiSourceWidth,
unsigned int a_uiSourceHeight)
{
m_pstrFilename = nullptr;
m_pstrName = nullptr;
m_pstrFileExtension = nullptr;
m_uiWidth = a_uiSourceWidth;
m_uiHeight = a_uiSourceHeight;
m_pafrgbaPixels = a_pafrgbaSource;
}
// ----------------------------------------------------------------------------------------------------
//
SourceImage::~SourceImage()
{
if (m_pstrFilename != nullptr)
{
delete[] m_pstrFilename;
m_pstrFilename = nullptr;
}
if (m_pstrName != nullptr)
{
delete[] m_pstrName;
m_pstrName = nullptr;
m_pstrFileExtension = nullptr;
}
if (m_pafrgbaPixels != nullptr)
{
delete[] m_pafrgbaPixels;
m_pafrgbaPixels = nullptr;
}
m_uiWidth = 0;
m_uiHeight = 0;
}
// ----------------------------------------------------------------------------------------------------
//
void SourceImage::Read(int a_iPixelX, int a_iPixelY)
{
unsigned char* paucPixels = nullptr;
int iWidth;
int iHeight;
bool bool16BitImage = false;
#if USE_STB_IMAGE_LOAD
int iBitsPerPixel;
//if stb_iamge is available, only use it to load files other than png
char *fileExt = strrchr(m_pstrFilename, '.');
if (strcmp(fileExt, ".png") != 0)
{
paucPixels = stbi_load(m_pstrFilename, &iWidth, &iHeight, &iBitsPerPixel, 4);
if (paucPixels == nullptr)
{
printf("stb_image error %s\n", stbi_failure_reason());
assert(0);
exit(1);
}
}
#endif
if (paucPixels == nullptr)
{
//we can load 8 or 16 bit pngs
int iBitDepth = 16;
int error = lodepng_decode_file(&paucPixels,
(unsigned int*)&iWidth, (unsigned int*)&iHeight,
m_pstrFilename,
LCT_RGBA, iBitDepth);
bool16BitImage = (iBitDepth == 16) ? true : false;
if (error)
{
printf("lodePNG error %u: %s\n", error, lodepng_error_text(error));
assert(0);
exit(1);
}
}
//the pixel cords for the top left corner of the block
int iBlockX = 0;
int iBlockY = 0;
if (a_iPixelX > -1 && a_iPixelY > -1)
{
// in 1 block mode, we basically will have an img thats 4x4
m_uiWidth = 4;
m_uiHeight = 4;
if(a_iPixelX > iWidth)
a_iPixelX = iWidth;
if (a_iPixelY > iHeight)
a_iPixelY = iHeight;
// remove the bottom 2 bits to get the block coordinates
iBlockX = (a_iPixelX & 0xFFFFFFFC);
iBlockY = (a_iPixelY & 0xFFFFFFFC);
}
else
{
m_uiWidth = iWidth;
m_uiHeight = iHeight;
}
m_pafrgbaPixels = new ColorFloatRGBA[m_uiWidth * m_uiHeight];
assert(m_pafrgbaPixels);
int iBytesPerPixel = bool16BitImage ? 8 : 4;
unsigned char *pucPixel; // = &paucPixels[(iBlockY * iWidth + iBlockX) * iBytesPerPixel];
ColorFloatRGBA *pfrgbaPixel = m_pafrgbaPixels;
// convert pixels from RGBA* to ColorFloatRGBA
for (unsigned int uiV = iBlockY; uiV < (iBlockY+m_uiHeight); ++uiV)
{
// reset coordinate for each row
pucPixel = &paucPixels[(uiV * iWidth + iBlockX) * iBytesPerPixel];
// read each row
for (unsigned int uiH = iBlockX; uiH < (iBlockX+m_uiWidth); ++uiH)
{
if (bool16BitImage)
{
unsigned short ushR = (pucPixel[0]<<8) + pucPixel[1];
unsigned short ushG = (pucPixel[2]<<8) + pucPixel[3];
unsigned short ushB = (pucPixel[4]<<8) + pucPixel[5];
unsigned short ushA = (pucPixel[6]<<8) + pucPixel[7];
*pfrgbaPixel++ = ColorFloatRGBA((float)ushR / 65535.0f,
(float)ushG / 65535.0f,
(float)ushB / 65535.0f,
(float)ushA / 65535.0f);
}
else
{
*pfrgbaPixel++ = ColorFloatRGBA::ConvertFromRGBA8(pucPixel[0], pucPixel[1],
pucPixel[2], pucPixel[3]);
}
pucPixel += iBytesPerPixel;
}
}
#if USE_STB_IMAGE_LOAD
stbi_image_free(paucPixels);
#else
free(paucPixels);
#endif
}
// ----------------------------------------------------------------------------------------------------
// sets m_pstrFilename, m_pstrName and m_pstrFileExtension
//
void SourceImage::SetName(const char *a_pstrFilename)
{
if (a_pstrFilename == nullptr)
{
return;
}
m_pstrFilename = new char[strlen(a_pstrFilename) + 1];
strcpy(m_pstrFilename, a_pstrFilename);
m_pstrName = new char[strlen(m_pstrFilename) + 1];
// ignore directory path
char *pcLastSlash = strrchr(m_pstrFilename, '/');
char *pcLastBackSlash = strrchr(m_pstrFilename, '\\');
if (pcLastSlash == nullptr && pcLastBackSlash == nullptr)
{
strcpy(m_pstrName, m_pstrFilename);
}
else if (pcLastSlash > pcLastBackSlash)
{
strcpy(m_pstrName, pcLastSlash + 1);
}
else
{
strcpy(m_pstrName, pcLastBackSlash + 1);
}
// find file extension and remove it from image name
char *pcLastPeriod = strrchr(m_pstrName, '.');
if (pcLastPeriod != nullptr)
{
m_pstrFileExtension = pcLastPeriod + 1;
*strrchr(m_pstrName, '.') = 0;
}
}
// ----------------------------------------------------------------------------------------------------
//
void SourceImage::NormalizeXYZ(void)
{
int iPixels = m_uiWidth * m_uiHeight;
ColorFloatRGBA *pfrgbaPixel = m_pafrgbaPixels;
for (int iPixel = 0; iPixel < iPixels; iPixel++)
{
float fX = 2.0f*pfrgbaPixel->fR - 1.0f;
float fY = 2.0f*pfrgbaPixel->fG - 1.0f;
float fZ = 2.0f*pfrgbaPixel->fB - 1.0f;
float fLength2 = fX*fX + fY*fY + fZ*fZ;
if (fLength2 == 0.0f)
{
pfrgbaPixel->fR = 1.0f;
pfrgbaPixel->fG = 0.0f;
pfrgbaPixel->fB = 0.0f;
}
else
{
float fLength = sqrtf(fLength2);
float fNormalizedX = fX / fLength;
float fNormalizedY = fY / fLength;
float fNormalizedZ = fZ / fLength;
pfrgbaPixel->fR = 0.5f * (fNormalizedX + 1.0f);
pfrgbaPixel->fG = 0.5f * (fNormalizedY + 1.0f);
pfrgbaPixel->fB = 0.5f * (fNormalizedZ + 1.0f);
}
pfrgbaPixel++;
}
}
// ----------------------------------------------------------------------------------------------------
//
} // namespace Etc