-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
main.cc
402 lines (318 loc) · 11.6 KB
/
main.cc
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
#include <algorithm>
#include <cctype>
#include <cstdlib>
#include <iostream>
#include <sstream>
#include "tinyusdz.hh"
#include "pprinter.hh"
#include "str-util.hh"
#include "io-util.hh"
#include "tydra/scene-access.hh"
struct CompositionFeatures {
bool subLayers{true};
bool inherits{true};
bool variantSets{true};
bool references{true};
bool payload{true}; // Not 'payloads'
bool specializes{true};
};
static std::string GetFileExtension(const std::string &filename) {
if (filename.find_last_of('.') != std::string::npos)
return filename.substr(filename.find_last_of('.') + 1);
return "";
}
static std::string str_tolower(std::string s) {
std::transform(s.begin(), s.end(), s.begin(),
[](unsigned char c) { return std::tolower(c); }
);
return s;
}
void print_help() {
std::cout << "Usage tusdcat [--flatten] [--loadOnly] [--composition=STRLIST] [--relative] [--extract-variants] input.usda/usdc/usdz\n";
std::cout << "\n --flatten (not fully implemented yet) Do composition(load sublayers, refences, payload, evaluate `over`, inherit, variants..)";
std::cout << " --composition: Specify which composition feature to be "
"enabled(valid when `--flatten` is supplied). Comma separated "
"list. \n l "
"`subLayers`, i `inherits`, v `variantSets`, r `references`, "
"p `payload`, s `specializes`. \n Example: "
"--composition=r,p --composition=references,subLayers\n";
std::cout << "\n --extract-variants (w.i.p) Dump variants information to .json\n";
std::cout << "\n --relative (not implemented yet) Print Path as relative Path\n";
std::cout << "\n -l, --loadOnly Load(Parse) USD file only(Check if input USD is valid or not)\n";
}
int main(int argc, char **argv) {
if (argc < 2) {
print_help();
return EXIT_FAILURE;
}
bool has_flatten{false};
bool has_relative{false};
bool has_extract_variants{false};
bool load_only{false};
constexpr int kMaxIteration = 128;
std::string filepath;
int input_index = -1;
CompositionFeatures comp_features;
for (size_t i = 1; i < argc; i++) {
std::string arg = argv[i];
if ((arg.compare("-h") == 0) || (arg.compare("--help") ==0)) {
print_help();
return EXIT_FAILURE;
} else if ((arg.compare("-f") == 0) || (arg.compare("--flatten") == 0)) {
has_flatten = true;
} else if (arg.compare("--relative") == 0) {
has_relative = true;
} else if ((arg.compare("-l") == 0) || (arg.compare("--loadOnly") == 0)) {
load_only = true;
} else if (arg.compare("--extract-variants") == 0) {
has_extract_variants = true;
} else if (tinyusdz::startsWith(arg, "--composition=")) {
std::string value_str = tinyusdz::removePrefix(arg, "--composition=");
if (value_str.empty()) {
std::cerr << "No values specified to --composition.\n";
exit(-1);
}
std::vector<std::string> items = tinyusdz::split(value_str, ",");
comp_features.subLayers = false;
comp_features.inherits = false;
comp_features.variantSets = false;
comp_features.references = false;
comp_features.payload = false;
comp_features.specializes = false;
for (const auto &item : items) {
if ((item == "l") || (item == "subLayers")) {
comp_features.subLayers = true;
} else if ((item == "i") || (item == "inherits")) {
comp_features.inherits = true;
} else if ((item == "v") || (item == "variantSets")) {
comp_features.variantSets = true;
} else if ((item == "r") || (item == "references")) {
comp_features.references = true;
} else if ((item == "p") || (item == "payload")) {
comp_features.payload = true;
} else if ((item == "s") || (item == "specializes")) {
comp_features.specializes = true;
} else {
std::cerr << "Invalid string for --composition : " << item << "\n";
exit(-1);
}
}
} else {
filepath = arg;
input_index = i;
}
}
if (filepath.empty() || (input_index < 0)) {
std::cout << "Input USD filename missing.\n";
return EXIT_FAILURE;
}
std::string warn;
std::string err;
std::string ext = str_tolower(GetFileExtension(filepath));
std::string base_dir;
base_dir = tinyusdz::io::GetBaseDir(filepath);
if (has_flatten) {
if (load_only) {
std::cerr << "--flatten and --loadOnly cannot be specified at a time\n";
return EXIT_FAILURE;
}
// TODO: flatten for USDZ
if (tinyusdz::IsUSDZ(filepath)) {
std::cout << "--flatten is ignored for USDZ at the moment.\n";
tinyusdz::Stage stage;
bool ret = tinyusdz::LoadUSDZFromFile(filepath, &stage, &warn, &err);
if (!warn.empty()) {
std::cerr << "WARN : " << warn << "\n";
}
if (!err.empty()) {
std::cerr << "ERR : " << err << "\n";
//return EXIT_FAILURE;
}
if (!ret) {
std::cerr << "Failed to load USDZ file: " << filepath << "\n";
return EXIT_FAILURE;
}
std::cout << to_string(stage) << "\n";
return EXIT_SUCCESS;
}
tinyusdz::Layer root_layer;
bool ret = tinyusdz::LoadLayerFromFile(filepath, &root_layer, &warn, &err);
if (warn.size()) {
std::cout << "WARN: " << warn << "\n";
}
if (!ret) {
std::cerr << "Failed to read USD data as Layer: \n";
std::cerr << err << "\n";
return -1;
}
std::cout << "# input\n";
std::cout << root_layer << "\n";
tinyusdz::Stage stage;
stage.metas() = root_layer.metas();
std::string warn;
tinyusdz::AssetResolutionResolver resolver;
resolver.set_current_working_path(base_dir);
resolver.set_search_paths({base_dir});
//
// LIVRPS strength ordering
// - [x] Local(subLayers)
// - [x] Inherits
// - [x] VariantSets
// - [x] References
// - [x] Payload
// - [ ] Specializes
//
tinyusdz::Layer src_layer = root_layer;
if (comp_features.subLayers) {
tinyusdz::Layer composited_layer;
if (!tinyusdz::CompositeSublayers(resolver, src_layer, &composited_layer, &warn, &err)) {
std::cerr << "Failed to composite subLayers: " << err << "\n";
return -1;
}
if (warn.size()) {
std::cout << "WARN: " << warn << "\n";
}
std::cout << "# `subLayers` composited\n";
std::cout << composited_layer << "\n";
src_layer = std::move(composited_layer);
}
// TODO: Find more better way to Recursively resolve references/payload/variants
for (int i = 0; i < kMaxIteration; i++) {
bool has_unresolved = false;
if (comp_features.references) {
if (!src_layer.check_unresolved_references()) {
std::cout << "# iter " << i << ": no unresolved references.\n";
} else {
has_unresolved = true;
tinyusdz::Layer composited_layer;
if (!tinyusdz::CompositeReferences(resolver, src_layer, &composited_layer, &warn, &err)) {
std::cerr << "Failed to composite `references`: " << err << "\n";
return -1;
}
if (warn.size()) {
std::cout << "WARN: " << warn << "\n";
}
std::cout << "# `references` composited\n";
std::cout << composited_layer << "\n";
src_layer = std::move(composited_layer);
}
}
if (comp_features.payload) {
if (!src_layer.check_unresolved_payload()) {
std::cout << "# iter " << i << ": no unresolved payload.\n";
} else {
has_unresolved = true;
tinyusdz::Layer composited_layer;
if (!tinyusdz::CompositePayload(resolver, src_layer, &composited_layer, &warn, &err)) {
std::cerr << "Failed to composite `payload`: " << err << "\n";
return -1;
}
if (warn.size()) {
std::cout << "WARN: " << warn << "\n";
}
std::cout << "# `payload` composited\n";
std::cout << composited_layer << "\n";
src_layer = std::move(composited_layer);
}
}
if (comp_features.inherits) {
if (!src_layer.check_unresolved_inherits()) {
std::cout << "# iter " << i << ": no unresolved inherits.\n";
} else {
has_unresolved = true;
tinyusdz::Layer composited_layer;
if (!tinyusdz::CompositeInherits(src_layer, &composited_layer, &warn, &err)) {
std::cerr << "Failed to composite `inherits`: " << err << "\n";
return -1;
}
if (warn.size()) {
std::cout << "WARN: " << warn << "\n";
}
std::cout << "# `inherits` composited\n";
std::cout << composited_layer << "\n";
src_layer = std::move(composited_layer);
}
}
if (comp_features.variantSets) {
if (!src_layer.check_unresolved_variant()) {
std::cout << "# iter " << i << ": no unresolved variant.\n";
} else {
has_unresolved = true;
tinyusdz::Layer composited_layer;
if (!tinyusdz::CompositeVariant(src_layer, &composited_layer, &warn, &err)) {
std::cerr << "Failed to composite `variantSet`: " << err << "\n";
return -1;
}
if (warn.size()) {
std::cout << "WARN: " << warn << "\n";
}
std::cout << "# `variantSet` composited\n";
std::cout << composited_layer << "\n";
src_layer = std::move(composited_layer);
}
}
// TODO
// - [ ] specializes
// - [ ] `class` Prim?
std::cout << "# has_unresolved_references: " << src_layer.check_unresolved_references() << "\n";
std::cout << "# all resolved? " << !has_unresolved << "\n";
if (!has_unresolved) {
std::cout << "# of composition iteration to resolve fully: " << (i + 1) << "\n";
break;
}
}
if (has_extract_variants) {
tinyusdz::Dictionary dict;
if (!tinyusdz::ExtractVariants(src_layer, &dict, &err)) {
std::cerr << "Failed to extract variants info: " << err;
} else {
std::cout << "== Variants info ==\n" << tinyusdz::to_string(dict) << "\n";
}
}
tinyusdz::Stage comp_stage;
ret = LayerToStage(src_layer, &comp_stage, &warn, &err);
if (warn.size()) {
std::cout << warn<< "\n";
}
if (!ret) {
std::cerr << err << "\n";
}
std::cout << comp_stage.ExportToString() << "\n";
using MeshMap = std::map<std::string, const tinyusdz::GeomMesh *>;
MeshMap meshmap;
tinyusdz::tydra::ListPrims(comp_stage, meshmap);
for (const auto &item : meshmap) {
std::cout << "Prim : " << item.first << "\n";
}
} else {
tinyusdz::Stage stage;
tinyusdz::USDLoadOptions options;
// auto detect format.
bool ret = tinyusdz::LoadUSDFromFile(filepath, &stage, &warn, &err, options);
if (!warn.empty()) {
std::cerr << "WARN : " << warn << "\n";
}
if (!err.empty()) {
std::cerr << "ERR : " << err << "\n";
//return EXIT_FAILURE;
}
if (!ret) {
std::cerr << "Failed to load USD file: " << filepath << "\n";
return EXIT_FAILURE;
}
if (load_only) {
return EXIT_SUCCESS;
}
std::string s = stage.ExportToString(has_relative);
std::cout << s << "\n";
if (has_extract_variants) {
tinyusdz::Dictionary dict;
if (!tinyusdz::ExtractVariants(stage, &dict, &err)) {
std::cerr << "Failed to extract variants info: " << err;
} else {
std::cout << "== Variants info ==\n" << tinyusdz::to_string(dict) << "\n";
}
}
}
return EXIT_SUCCESS;
}