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
|
/*************************************************************************/
/* image_etc.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* http://www.godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "image_etc.h"
#include "image.h"
#include "rg_etc1.h"
#include "print_string.h"
#include "os/copymem.h"
static void _decompress_etc(Image *p_img) {
ERR_FAIL_COND(p_img->get_format()!=Image::FORMAT_ETC);
int imgw = p_img->get_width();
int imgh = p_img->get_height();
PoolVector<uint8_t> src=p_img->get_data();
PoolVector<uint8_t> dst;
PoolVector<uint8_t>::Read r = src.read();
int mmc=p_img->get_mipmap_count();
for(int i=0;i<=mmc;i++) {
dst.resize(dst.size()+imgw*imgh*3);
const uint8_t *srcbr=&r[p_img->get_mipmap_offset(i)];
PoolVector<uint8_t>::Write w = dst.write();
uint8_t *wptr = &w[dst.size()-imgw*imgh*3];
int bw=MAX(imgw/4,1);
int bh=MAX(imgh/4,1);
for(int y=0;y<bh;y++) {
for(int x=0;x<bw;x++) {
uint8_t block[4*4*4];
rg_etc1::unpack_etc1_block(srcbr,(unsigned int*)block);
srcbr+=8;
int maxx=MIN(imgw,4);
int maxy=MIN(imgh,4);
for(int yy=0;yy<maxy;yy++) {
for(int xx=0;xx<maxx;xx++) {
uint32_t src_ofs = (yy*4+xx)*4;
uint32_t dst_ofs = ((y*4+yy)*imgw+x*4+xx)*3;
wptr[dst_ofs+0]=block[src_ofs+0];
wptr[dst_ofs+1]=block[src_ofs+1];
wptr[dst_ofs+2]=block[src_ofs+2];
}
}
}
}
imgw=MAX(1,imgw/2);
imgh=MAX(1,imgh/2);
}
r=PoolVector<uint8_t>::Read();
//print_line("Re Creating ETC into regular image: w "+itos(p_img->get_width())+" h "+itos(p_img->get_height())+" mm "+itos(p_img->get_mipmaps()));
*p_img=Image(p_img->get_width(),p_img->get_height(),p_img->has_mipmaps(),Image::FORMAT_RGB8,dst);
if (p_img->has_mipmaps())
p_img->generate_mipmaps(true);
}
static void _compress_etc(Image *p_img) {
Image img = *p_img;
int imgw=img.get_width(),imgh=img.get_height();
ERR_FAIL_COND( nearest_power_of_2(imgw)!=imgw || nearest_power_of_2(imgh)!=imgh );
if (img.get_format()!=Image::FORMAT_RGB8)
img.convert(Image::FORMAT_RGB8);
int mmc=img.get_mipmap_count();
if (mmc==0)
img.generate_mipmaps(); // force mipmaps, so it works on most hardware
PoolVector<uint8_t> res_data;
PoolVector<uint8_t> dst_data;
PoolVector<uint8_t>::Read r = img.get_data().read();
int mc=0;
rg_etc1::etc1_pack_params pp;
pp.m_quality=rg_etc1::cLowQuality;
for(int i=0;i<=mmc;i++) {
int bw=MAX(imgw/4,1);
int bh=MAX(imgh/4,1);
const uint8_t *src = &r[img.get_mipmap_offset(i)];
int mmsize = MAX(bw,1)*MAX(bh,1)*8;
dst_data.resize(dst_data.size()+mmsize);
PoolVector<uint8_t>::Write w=dst_data.write();
uint8_t *dst = &w[dst_data.size()-mmsize];
//print_line("bh: "+itos(bh)+" bw: "+itos(bw));
for(int y=0;y<bh;y++) {
for(int x=0;x<bw;x++) {
//print_line("x: "+itos(x)+" y: "+itos(y));
uint8_t block[4*4*4];
zeromem(block,4*4*4);
uint8_t cblock[8];
int maxy = MIN(imgh,4);
int maxx = MIN(imgw,4);
for(int yy=0;yy<maxy;yy++) {
for(int xx=0;xx<maxx;xx++) {
uint32_t dst_ofs = (yy*4+xx)*4;
uint32_t src_ofs = ((y*4+yy)*imgw+x*4+xx)*3;
block[dst_ofs+0]=src[src_ofs+0];
block[dst_ofs+1]=src[src_ofs+1];
block[dst_ofs+2]=src[src_ofs+2];
block[dst_ofs+3]=255;
}
}
rg_etc1::pack_etc1_block(cblock, (const unsigned int*)block, pp);
for(int j=0;j<8;j++) {
dst[j]=cblock[j];
}
dst+=8;
}
}
imgw=MAX(1,imgw/2);
imgh=MAX(1,imgh/2);
mc++;
}
*p_img=Image(p_img->get_width(),p_img->get_height(),(mc-1)?true:false,Image::FORMAT_ETC,dst_data);
}
void _register_etc1_compress_func() {
rg_etc1::pack_etc1_block_init();
Image::_image_compress_etc_func=_compress_etc;
Image::_image_decompress_etc=_decompress_etc;
}
|