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
|
// Copyright (c) 2012, Motorola Mobility, Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of the Motorola Mobility, Inc. nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//find . -name '*.dae' -exec dae2json {} \;
#include <getopt.h>
#include <iostream>
#include <sstream>
#include <iomanip>
#include "GitSHA1.h"
#include "GLTF.h"
#include "GLTFOpenCOLLADA.h"
#include "GLTFAsset.h"
#include "COLLADA2GLTFWriter.h"
#include "JSONObject.h"
using namespace rapidjson;
#if __cplusplus <= 199711L
using namespace std::tr1;
#endif
using namespace std;
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
#define STDOUT_OUTPUT 0
#if USE_OPEN3DGC
#define OPTIONS_COUNT 15
#else
#define OPTIONS_COUNT 13
#endif
typedef struct {
const char* name;
int has_arg;
const char* help;
} OptionDescriptor;
option* opt_options;
std::string helpMessage = "";
static const OptionDescriptor options[] = {
{ "z", required_argument, "-z -> path of configuration file [string]" },
{ "f", required_argument, "-f -> path of input file, argument [string]" },
{ "o", required_argument, "-o -> path of output file argument [string]" },
{ "b", required_argument, "-b -> path of output bundle argument [string]" },
{ "a", required_argument, "-a -> export animations, argument [bool], default:true" },
{ "i", no_argument, "-i -> invert-transparency" },
{ "d", no_argument, "-d -> export pass details to be able to regenerate shaders and states" },
{ "p", no_argument, "-p -> output progress" },
{ "l", required_argument, "-l -> enable default lighting (if no lights in scene) [bool], default:true" },
#if USE_OPEN3DGC
{ "c", required_argument, "-c -> compression type: available: Open3DGC [string]" },
{ "m", required_argument, "-m -> compression mode: for Open3DGC can be \"ascii\"(default) or \"binary\" [string]" },
#endif
{ "v", no_argument, "-v -> print version" },
{ "s", no_argument, "-s -> experimental mode"},
{ "h", no_argument, "-h -> help" },
{ "r", no_argument, "-r -> verbose logging" },
{ "e", no_argument, "-e -> embed all resources as Data URIs" }
};
static void buildOptions() {
helpMessage += "usage: collada2gltlf -f [file] [options]\n";
helpMessage += "options:\n";
opt_options = (option*)malloc(sizeof(option) * OPTIONS_COUNT);
for (size_t i = 0 ; i < OPTIONS_COUNT ; i++) {
opt_options[i].flag = 0;
opt_options[i].val = 'f';
opt_options[i].name = options[i].name;
opt_options[i].has_arg = options[i].has_arg;
helpMessage += options[i].help;
helpMessage += "\n";
}
}
static void dumpHelpMessage() {
printf("%s\n", helpMessage.c_str());
}
static std::string replacePathExtensionWith(const std::string& inputFile, const std::string& extension)
{
COLLADABU::URI inputFileURI(inputFile.c_str());
std::string pathDir = inputFileURI.getPathDir();
std::string fileBase = inputFileURI.getPathFileBase();
return pathDir + fileBase + "." + extension;
}
bool fileExists(const char * filename) {
if (FILE * file = fopen(filename, "r")) {
fclose(file);
return true;
}
return false;
}
static bool processArgs(int argc, char * const * argv, GLTF::GLTFAsset *asset) {
int ch;
std::string file;
std::string output;
bool hasOutputPath = false;
bool hasInputPath = false;
bool shouldShowHelp = false;
buildOptions();
if (argc == 1) {
shouldShowHelp = true;
}
if (argc == 2) {
if (fileExists(argv[1])) {
asset->setInputFilePath(argv[1]);
asset->setOutputFilePath(replacePathExtensionWith(asset->getInputFilePath(), "gltf"));
return true;
}
}
shared_ptr<GLTF::GLTFConfig> converterConfig = asset->converterConfig();
while ((ch = getopt_long(argc, argv, "z:f:o:b:a:idpl:c:m:vhsre", opt_options, 0)) != -1) {
switch (ch) {
case 'z':
converterConfig->initWithPath(optarg);
break;
case 'h':
dumpHelpMessage();
return false;
case 'f':
asset->setInputFilePath(optarg);
hasInputPath = true;
break;
case 'b':
asset->setBundleOutputPath(replacePathExtensionWith(optarg, "glTF"));
hasOutputPath = true;
break;
case 'o':
asset->setOutputFilePath(replacePathExtensionWith(optarg, "gltf"));
hasOutputPath = true;
break;
case 'i':
converterConfig->config()->setBool("invertTransparency", true);
break;
case 'p':
converterConfig->config()->setBool("outputProgress", true);
break;
case 'c':
//compression type
converterConfig->config()->setString("compressionType", optarg);
break;
case 'v':
printf("collada2gltf@%s\n",g_GIT_SHA1);
break;
case 'm':
//compression mode
converterConfig->config()->setString("compressionMode", optarg);
break;
case 'l':
if (optarg != NULL) {
bool useDefaultLight;
if (strcmp(optarg, "true") == 0) {
useDefaultLight = true;
}
if (strcmp(optarg, "false") == 0) {
useDefaultLight = false;
} else {
useDefaultLight = atoi(optarg) != 0;
}
converterConfig->config()->setBool("useDefaultLight", useDefaultLight);
}
break;
case 'a':
//asset->exportAnimations = true;
break;
case 'd':
converterConfig->config()->setBool("exportPassDetails", true);
break;
case 's':
//special mode - not exposed - yet.
converterConfig->config()->setBool("alwaysExportTRS", true);
converterConfig->config()->setBool("alwaysExportFilterColor", true);
converterConfig->config()->setBool("alwaysExportTransparency", true);
converterConfig->config()->setBool("useDefaultLight", false);
converterConfig->config()->setBool("optimizeParameters", true);
break;
case 'r':
converterConfig->config()->setBool("verboseLogging", true);
break;
case 'e':
converterConfig->config()->setBool("embedResources", true);
asset->setEmbedResources(true);
break;
default:
shouldShowHelp = true;
break;
}
}
if (shouldShowHelp) {
dumpHelpMessage();
return false;
}
if (!hasOutputPath & hasInputPath) {
asset->setOutputFilePath(replacePathExtensionWith(asset->getInputFilePath(), "gltf"));
}
return true;
}
int main (int argc, char * const argv[]) {
shared_ptr <GLTF::GLTFAsset> asset(new GLTF::GLTFAsset());
if (processArgs(argc, argv, asset.get())) {
if (asset->getInputFilePath().length() == 0) {
return -1;
}
char* inputFilePathCStr = strdup(asset->getInputFilePath().c_str());
if (!fileExists(inputFilePathCStr)) {
free(inputFilePathCStr);
printf("path:%s does not exists or is not accessible, please check file path and permissions\n",inputFilePathCStr);
return -1;
}
#ifndef WIN32 || WIN64
struct stat attr;
if (stat(inputFilePathCStr, &attr) != -1) {
asset->convertionMetaData()->setString("date", ctime(&attr.st_ctime));
}
#endif
clock_t start = clock();
if (asset->converterConfig()->config()->getBool("outputProgress")) {
asset->log("convertion 0%%");
asset->log("\n\033[F\033[J");
} else {
asset->log("converting:%s ... as %s \n",asset->getInputFilePath().c_str(), asset->getOutputFilePath().c_str());
}
GLTF::COLLADA2GLTFWriter* writer = new GLTF::COLLADA2GLTFWriter(asset);
writer->write();
if (asset->converterConfig()->config()->getBool("outputProgress")) {
asset->log("convertion 100%%");
asset->log("\n");
} else {
asset->log("[completed conversion]\n");
}
#if WIN32
double clocks = CLK_TCK;
#else
double clocks = CLOCKS_PER_SEC;
#endif
std::stringstream s;
double elapsedTime = clock() - start;
s << std::setiosflags(std::ios::fixed) << std::setprecision(2) << elapsedTime / clocks ;
asset->log("Runtime: %s seconds\n", s.str().c_str());
free(inputFilePathCStr);
}
return 0;
}
|