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 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
|
/*
* Copyright 2006 Sony Computer Entertainment Inc.
*
* Licensed under the SCEA Shared Source License, Version 1.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://research.scea.com/scea_shared_source_license.html
*
* 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.
*/
#include "daeWriter.h"
#include <dom/domCOLLADA.h>
#include <dom/domNode.h>
#include <dom/domConstants.h>
#include <sstream>
#include <stdexcept>
#include <osgDB/ConvertUTF>
#include <limits>
namespace osgDAE {
daeWriter::ArrayNIndices::ArrayNIndices( osg::Array* vArray, osg::IndexArray* ind ) :
vec2(0), vec3(0), vec4(0),
vec2d(0), vec3d(0), vec4d(0),
vec4ub(0),
valArray(vArray),
inds( ind ), mode(NONE)
{
if ( valArray != NULL )
{
switch( valArray->getType() )
{
case osg::Array::Vec2ArrayType:
mode = VEC2F;
vec2 = (osg::Vec2Array*)valArray;
break;
case osg::Array::Vec3ArrayType:
mode = VEC3F;
vec3 = (osg::Vec3Array*)valArray;
break;
case osg::Array::Vec4ArrayType:
mode = VEC4F;
vec4 = (osg::Vec4Array*)valArray;
break;
case osg::Array::Vec2dArrayType:
mode = VEC2D;
vec2d = (osg::Vec2dArray*)valArray;
break;
case osg::Array::Vec3dArrayType:
mode = VEC3D;
vec3d = (osg::Vec3dArray*)valArray;
break;
case osg::Array::Vec4dArrayType:
mode = VEC4D;
vec4d = (osg::Vec4dArray*)valArray;
break;
case osg::Array::Vec4ubArrayType:
mode = VEC4_UB;
vec4ub = (osg::Vec4ubArray*)valArray;
break;
default:
OSG_WARN << "Array is unsupported vector type" << std::endl;
break;
}
}
}
std::string toString(const osg::Vec2f& value)
{
std::stringstream str;
str << value.x() << " " << value.y();
return str.str();
}
std::string toString(const osg::Vec2d& value)
{
std::stringstream str;
str << value.x() << " " << value.y();
return str.str();
}
std::string toString(const osg::Vec3f& value)
{
std::stringstream str;
str << value.x() << " " << value.y() << " " << value.z();
return str.str();
}
std::string toString(const osg::Vec3d& value)
{
std::stringstream str;
str << value.x() << " " << value.y() << " " << value.z();
return str.str();
}
std::string toString(const osg::Vec4f& value)
{
std::stringstream str;
str << value.x() << " " << value.y() << " " << value.z() << " " << value.w();
return str.str();
}
std::string toString(const osg::Vec4d& value)
{
std::stringstream str;
str << value.x() << " " << value.y() << " " << value.z() << " " << value.w();
return str.str();
}
template <typename T>
std::string matrixToString(T value)
{
std::stringstream str;
str << value(0,0) << " " << value(1,0) << " " << value(2,0) << " " << value(3,0) << " "
<< value(0,1) << " " << value(1,1) << " " << value(2,1) << " " << value(3,1) << " "
<< value(0,2) << " " << value(1,2) << " " << value(2,2) << " " << value(3,2) << " "
<< value(0,3) << " " << value(1,3) << " " << value(2,3) << " " << value(3,3);
return str.str();
}
std::string toString(const osg::Matrixf& value)
{
return matrixToString<osg::Matrixf>(value);
}
std::string toString(const osg::Matrixd& value)
{
return matrixToString<osg::Matrixd>(value);
}
daeWriter::Options::Options()
: usePolygons(false),
googleMode(false),
writeExtras(true),
earthTex(false),
linkOrignialTextures(false),
forceTexture(false),
namesUseCodepage(false),
relativiseImagesPathNbUpDirs(0),
renameIds(false)
{}
daeWriter::daeWriter( DAE *dae_, const std::string & fileURI, const std::string & directory, const std::string & srcDirectory, const osgDB::ReaderWriter::Options * options, TraversalMode tm, const Options * pluginOptions) : osg::NodeVisitor( tm ),
dae(dae_),
_domLibraryAnimations(NULL),
rootName(*dae_),
m_CurrentRenderingHint(osg::StateSet::DEFAULT_BIN),
_options(options),
_pluginOptions(pluginOptions ? *pluginOptions : Options()),
_externalWriter(srcDirectory, directory, true, pluginOptions ? pluginOptions->relativiseImagesPathNbUpDirs : 0)
{
success = true;
dae->setDatabase( NULL );
dae->setIOPlugin( NULL );
//create document
dae->getDatabase()->createDocument( fileURI.c_str(), &doc );
dom = (domCOLLADA*)doc->getDomRoot();
//create scene and instance visual scene
domCOLLADA::domScene *scene = daeSafeCast< domCOLLADA::domScene >( dom->add( COLLADA_ELEMENT_SCENE ) );
domInstanceWithExtra *ivs = daeSafeCast< domInstanceWithExtra >( scene->add( COLLADA_ELEMENT_INSTANCE_VISUAL_SCENE ) );
ivs->setUrl( "#defaultScene" );
//create library visual scenes and a visual scene and the root node
lib_vis_scenes = daeSafeCast<domLibrary_visual_scenes>( dom->add( COLLADA_ELEMENT_LIBRARY_VISUAL_SCENES ) );
vs = daeSafeCast< domVisual_scene >( lib_vis_scenes->add( COLLADA_ELEMENT_VISUAL_SCENE ) );
vs->setId( "defaultScene" );
currentNode = daeSafeCast< domNode >( vs->add( COLLADA_ELEMENT_NODE ) );
currentNode->setId( "sceneRoot" );
//create Asset
//createAssetTag(m_ZUpAxis); // we now call this in the set root node
lib_cameras = NULL;
lib_effects = NULL;
lib_controllers = NULL;
lib_geoms = NULL;
lib_lights = NULL;
lib_mats = NULL;
lastDepth = 0;
// Clean up caches
uniqueNames.clear();
currentStateSet = new osg::StateSet();
}
daeWriter::~daeWriter()
{
}
void daeWriter::debugPrint( osg::Node &node )
{
#ifdef _DEBUG
std::string indent = "";
for ( unsigned int i = 0; i < _nodePath.size(); i++ )
{
indent += " ";
}
OSG_INFO << indent << node.className() << std::endl;
#endif
}
void daeWriter::setRootNode( const osg::Node &node )
{
std::string fname = osgDB::findDataFile( node.getName() );
//create Asset with root node providing meta data
createAssetTag( node );
const_cast<osg::Node*>(&node)->accept( _animatedNodeCollector );
}
//### provide a name to node
std::string daeWriter::getNodeName(const osg::Node & node,const std::string & defaultName)
{
std::string nodeName;
if (node.getName().empty())
nodeName=uniquify(defaultName);
else
nodeName=uniquify(node.getName());
return nodeName;
}
//NODE
void daeWriter::apply( osg::Node &node )
{
debugPrint( node );
writeNodeExtra(node);
traverse( node );
}
void daeWriter::updateCurrentDaeNode()
{
while ( lastDepth >= _nodePath.size() )
{
//We are not a child of previous node
currentNode = daeSafeCast< domNode >( currentNode->getParentElement() );
--lastDepth;
}
}
std::string daeWriter::uniquify( const std::string & uname )
{
const std::string baseName( _pluginOptions.namesUseCodepage ? osgDB::convertStringFromCurrentCodePageToUTF8(uname) : uname );
std::string newName( baseName );
if (_pluginOptions.renameIds)
{
// Turn 'newName' into a simple ID
// Note: ConvertFilePathToColladaCompatibleURI(newName) did not the job: names such as "C:\somedir\somefile" become "/C:/somedir/somefile" and are not interpreted as a simple ID within Google Earth.
static const char * const REPLACE_CHARS = " /\\:#?=%&*";
for(std::size_t found = newName.find_first_of(REPLACE_CHARS); found != std::string::npos; found = newName.find_first_of(REPLACE_CHARS)) newName[found] = '_';
}
// Loop while newName is in use
UniqueNames::iterator iter;
for (iter = uniqueNames.find(newName); iter != uniqueNames.end(); iter = uniqueNames.find(newName))
{
if (iter->second == std::numeric_limits<UniqueNames::mapped_type>::max()) throw std::runtime_error("Not implemented: renaming DAE name above given limit.");
iter->second++; // Increment usage count
std::ostringstream num;
num << std::dec << iter->second;
newName = baseName + "_" + num.str();
}
uniqueNames.insert( std::make_pair( newName, 0 ) );
return newName;
}
void daeWriter::createAssetTag( bool isZUpAxis )
{
domAsset *asset = daeSafeCast< domAsset >(dom->add( COLLADA_ELEMENT_ASSET ) );
domAsset::domCreated *c = daeSafeCast< domAsset::domCreated >(asset->add(COLLADA_ELEMENT_CREATED));
domAsset::domModified *m = daeSafeCast< domAsset::domModified >(asset->add(COLLADA_ELEMENT_MODIFIED));
domAsset::domUnit *u = daeSafeCast< domAsset::domUnit >(asset->add(COLLADA_ELEMENT_UNIT));
domAsset::domUp_axis *up = daeSafeCast< domAsset::domUp_axis >(asset->add(COLLADA_ELEMENT_UP_AXIS));
up->setValue(UPAXISTYPE_Z_UP);
//TODO : set date and time
c->setValue( "2006-07-25T00:00:00Z" );
m->setValue( "2006-07-25T00:00:00Z" );
u->setName( "meter" );
u->setMeter( 1 );
}
// Overloaded version of createAssetTag that provides the ability to specify
// user defined values for child elements within asset tags
void daeWriter::createAssetTag(const osg::Node &node)
{
domAsset *asset = daeSafeCast< domAsset >(dom->add( COLLADA_ELEMENT_ASSET ) );
domAsset::domCreated *c = daeSafeCast< domAsset::domCreated >(asset->add("created" ));
domAsset::domModified *m = daeSafeCast< domAsset::domModified >(asset->add("modified" ));
domAsset::domUnit *u = daeSafeCast< domAsset::domUnit >(asset->add("unit"));
domAsset::domUp_axis *up_axis = daeSafeCast< domAsset::domUp_axis >(asset->add("up_axis"));
domAsset::domContributor *contributor = daeSafeCast< domAsset::domContributor >(asset->add("contributor" ));
// set date and time
// Generate the date like this
// "YYYY-mm-ddTHH:MM:SSZ" ISO 8601 Date Time format
const size_t bufSize = 1024;
static char dateStamp[bufSize];
time_t rawTime = time(NULL);
struct tm* timeInfo = localtime(&rawTime);
strftime(dateStamp, sizeof(dateStamp), "%Y-%m-%dT%H:%M:%SZ", timeInfo);
// set up fallback defaults
c->setValue( dateStamp );
m->setValue( dateStamp );
u->setName( "meter" ); // NOTE: SketchUp incorrectly sets this to "meters" but it does not really matter.
// Also note that since the default is: <unit meter="1.0" name="meter"/> this is equivalent to <unit/>
u->setMeter( 1.0 ); // this is the important units setting as it tells consuming apps how to convert to meters.
up_axis->setValue(UPAXISTYPE_Z_UP);
// get description info as name value pairs
if (node.getDescriptions().size()%2 == 0)
{
for(osg::Node::DescriptionList::const_iterator ditr=node.getDescriptions().begin();
ditr!=node.getDescriptions().end();
++ditr)
{
std::string attrName( *ditr ); ++ditr;
std::string attrValue( *ditr );
if (attrName=="collada_created" && !attrValue.empty())
{
c->setValue( attrValue.c_str() );
}
else if (attrName=="collada_modified" && !attrValue.empty())
{
m->setValue( attrValue.c_str() );
}
else if (attrName=="collada_keywords" && !attrValue.empty())
{
domAsset::domKeywords *keywords = daeSafeCast< domAsset::domKeywords >(asset->add("keywords" ));
keywords->setValue( attrValue.c_str() );
}
else if (attrName=="collada_revision" && !attrValue.empty())
{
domAsset::domRevision *revision = daeSafeCast< domAsset::domRevision >(asset->add("revision" ));
revision->setValue( attrValue.c_str() );
}
else if (attrName=="collada_subject" && !attrValue.empty())
{
domAsset::domSubject *subject = daeSafeCast< domAsset::domSubject >(asset->add("subject" ));
subject->setValue( attrValue.c_str() );
}
else if (attrName=="collada_title" && !attrValue.empty())
{
domAsset::domTitle *title = daeSafeCast< domAsset::domTitle >(asset->add("title" ));
title->setValue( attrValue.c_str() );
}
else if (attrName=="collada_up_axis" && !attrValue.empty())
{
if (attrValue=="X_UP")
{
up_axis->setValue( UPAXISTYPE_X_UP );
}
else if (attrValue=="Y_UP")
{
up_axis->setValue( UPAXISTYPE_Y_UP );
}
else
{
up_axis->setValue( UPAXISTYPE_Z_UP ); // default
}
}
else if (attrName=="collada_unit_name" && !attrValue.empty())
{
u->setName( attrValue.c_str() );
}
else if (attrName=="collada_unit_meter_length" && !attrValue.empty())
{
double fValFromStr(1.0);
try {
std::istringstream sConversion(attrValue);
sConversion >> fValFromStr;
u->setMeter((domFloat)fValFromStr);
}
catch (...)
{
// TODO: handle error
u->setMeter((domFloat)fValFromStr);
continue;
}
}
else if (attrName=="collada_contributor{0}.author" && !attrValue.empty())
{
domAsset::domContributor::domAuthor *author =
daeSafeCast< domAsset::domContributor::domAuthor >(contributor->add("author" ));
author->setValue( attrValue.c_str() );
}
else if (attrName=="collada_contributor{0}.authoring_tool" && !attrValue.empty())
{
domAsset::domContributor::domAuthoring_tool *authoring_tool =
daeSafeCast< domAsset::domContributor::domAuthoring_tool >(contributor->add("authoring_tool" ));
authoring_tool->setValue( attrValue.c_str() );
}
else if (attrName=="collada_contributor{0}.comments" && !attrValue.empty())
{
domAsset::domContributor::domComments *comments =
daeSafeCast< domAsset::domContributor::domComments >(contributor->add("comments" ));
comments->setValue( attrValue.c_str() );
}
else if (attrName=="collada_contributor{0}.source_data" && !attrValue.empty())
{
domAsset::domContributor::domSource_data *source_data =
daeSafeCast< domAsset::domContributor::domSource_data >(contributor->add("source_data" ));
source_data->setValue( attrValue.c_str() );
}
else if (attrName=="collada_contributor{0}.copyright" && !attrValue.empty())
{
domAsset::domContributor::domCopyright *copyright =
daeSafeCast< domAsset::domContributor::domCopyright >(contributor->add("copyright" ));
copyright->setValue( attrValue.c_str() );
}
// TODO: handle array of contributor data rather that just the first.
// also there is probably a better way to pass attribute data as DescriptionList is a bit fragile
}
}
}
void daeWriter::traverse (osg::Node &node)
{
pushStateSet(node.getStateSet());
osg::NodeVisitor::traverse( node );
popStateSet(node.getStateSet());
}
void daeWriter::pushStateSet(osg::StateSet* ss)
{
if (NULL!=ss) {
// Save our current stateset
stateSetStack.push(currentStateSet.get());
// merge with node stateset
currentStateSet = static_cast<osg::StateSet*>(currentStateSet->clone(osg::CopyOp::SHALLOW_COPY));
currentStateSet->merge(*ss);
}
}
void daeWriter::popStateSet(osg::StateSet* ss)
{
if (NULL!=ss) {
// restore the previous stateset
currentStateSet = stateSetStack.top();
stateSetStack.pop();
}
}
} // namespace osgdae
|