forked from retroplasma/earth-reverse-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrocktree_ex.h
133 lines (111 loc) · 4.93 KB
/
rocktree_ex.h
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
#include "crn/crn.h"
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
void populateBulk(rocktree_t::bulk_t *bulk, std::unique_ptr<BulkMetadata> bulk_metadata) {
bulk->_metadata = std::move(bulk_metadata);
for (int i = 0; i < 3; i++) bulk->head_node_center[i] = bulk->_metadata->head_node_center()[i];
for (auto node_meta : bulk->_metadata->node_metadata()) {
auto aux = unpackPathAndFlags(node_meta);
auto has_data = !(aux.flags & NodeMetadata_Flags_NODATA);
auto has_bulk = strlen(aux.path) == 4 && !(aux.flags & NodeMetadata_Flags_LEAF);
if (has_bulk) {
auto epoch = node_meta.has_bulk_metadata_epoch()
? node_meta.bulk_metadata_epoch()
: bulk->_metadata->head_node_key().epoch();
auto b = std::make_unique<rocktree_t::bulk_t>();
b->setNotDownloadedYet();
b->parent = bulk;
b->request = createBulkMetadataRequest(bulk->request.node_key().path(), aux.path, epoch);
b->busy_ctr = 0;
assert(bulk->bulks.insert(std::make_pair(aux.path,std::move(b))).second);
}
if ((has_data || !(aux.flags & NodeMetadata_Flags_LEAF)) && !node_meta.has_oriented_bounding_box()) {
#ifndef EMSCRIPTEN
printf("skip unknown node\n");
#endif
}
if ((has_data || !(aux.flags & NodeMetadata_Flags_LEAF)) && node_meta.has_oriented_bounding_box()) {
auto meters_per_texel = node_meta.has_meters_per_texel()
? node_meta.meters_per_texel()
: bulk->_metadata->meters_per_texel(aux.level - 1);
auto n = std::make_unique<rocktree_t::node_t>();
n->setNotDownloadedYet();
n->parent = bulk;
n->can_have_data = has_data;
if (has_data) {
n->request = createNodeDataRequest(bulk->request.node_key().path(), *(bulk->_metadata), node_meta);
}
n->meters_per_texel = meters_per_texel;
n->obb = unpackObb(node_meta.oriented_bounding_box(), bulk->head_node_center, meters_per_texel);
assert(bulk->nodes.insert(std::make_pair(aux.path,std::move(n))).second);
}
}
bulk->_metadata = nullptr;
bulk->setFinishedDownloading();
}
void populatePlanetoid(rocktree_t *planetoid, std::unique_ptr<PlanetoidMetadata> planetoid_metadata) {
auto bulk = new rocktree_t::bulk_t();
bulk->parent = nullptr;
bulk->request = createBulkMetadataRequest("", "", planetoid_metadata->root_node_metadata().epoch());
bulk->busy_ctr = 0;
bulk->setNotDownloadedYet();
planetoid->radius = planetoid_metadata->radius();
planetoid->root_bulk = bulk;
planetoid->downloaded = true;
}
void populateNode(rocktree_t::node_t *node, std::unique_ptr<NodeData> node_data) {
assert(node->can_have_data);
for (int i = 0; i < 16; i++) node->matrix_globe_from_mesh.data()[i] = node_data->matrix_globe_from_mesh(i);
for (auto mesh : node_data->meshes()) {
rocktree_t::node_t::mesh_t m;
m.indices = unpackIndices(mesh.indices());
m.vertices = unpackVertices(mesh.vertices());
unpackTexCoords(mesh.texture_coordinates(), m.vertices.data(), m.vertices.size(), m.uv_offset, m.uv_scale);
if (mesh.uv_offset_and_scale_size() == 4) {
m.uv_offset[0] = mesh.uv_offset_and_scale(0);
m.uv_offset[1] = mesh.uv_offset_and_scale(1);
m.uv_scale[0] = mesh.uv_offset_and_scale(2);
m.uv_scale[1] = mesh.uv_offset_and_scale(3);
} else {
m.uv_offset[1] -= 1 / m.uv_scale[1];
m.uv_scale[1] *= -1;
}
int layer_bounds[10];
unpackOctantMaskAndOctantCountsAndLayerBounds(mesh.layer_and_octant_counts(), m.indices.data(), m.indices.size(), m.vertices.data(), m.vertices.size(), layer_bounds);
assert(0 <= layer_bounds[3] && layer_bounds[3] <= m.indices.size());
//m.indices_len = layer_bounds[3]; // enable
m.indices.resize(layer_bounds[3]);
auto textures = mesh.texture();
assert(textures.size() == 1);
auto texture = textures[0];
assert(texture.data().size() == 1);
auto tex = texture.data()[0];
// maybe: keep compressed in memory?
if (texture.format() == Texture_Format_JPG) {
auto data = (uint8_t*)tex.data();
int width, height, comp;
unsigned char* pixels = stbi_load_from_memory(&data[0], tex.size(), &width, &height, &comp, 0);
assert(pixels != NULL);
assert (width == texture.width() && height == texture.height() && comp == 3);
m.texture = std::vector<uint8_t>(pixels, pixels + width * height * comp);
stbi_image_free(pixels);
m.texture_format = rocktree_t::texture_format_rgb;
} else if (texture.format() == Texture_Format_CRN_DXT1) {
auto src_size = tex.size();
auto src = (uint8_t*)tex.data();
auto dst_size = crn_get_decompressed_size(src, src_size, 0);
assert(dst_size == ((texture.width() + 3) / 4) * ((texture.height() + 3) / 4) * 8);
m.texture = std::vector<uint8_t>(dst_size);
crn_decompress(src, src_size, m.texture.data(), dst_size, 0);
m.texture_format = rocktree_t::texture_format_dxt1;
} else {
fprintf(stderr, "unsupported texture format: %d\n", texture.format());
abort();
}
m.texture_width = texture.width();
m.texture_height = texture.height();
m.buffered = false;
node->meshes.push_back(m);
}
node->setFinishedDownloading();
}