2012-07-04 14:33:46 +00:00
|
|
|
/*
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
2024-02-23 21:30:05 +00:00
|
|
|
Copyright (c) 2006-2024, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2012-07-04 14:33:46 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the
|
2012-07-04 14:33:46 +00:00
|
|
|
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 assimp team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the assimp team.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2012-07-04 14:33:46 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 03:52:10 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2012-07-04 14:33:46 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 03:52:10 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2012-07-04 14:33:46 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 03:52:10 +00:00
|
|
|
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
|
2012-07-04 14:33:46 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file FBXModel.cpp
|
|
|
|
* @brief Assimp::FBX::Model implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_NO_FBX_IMPORTER
|
|
|
|
|
|
|
|
#include "FBXDocument.h"
|
|
|
|
#include "FBXDocumentUtil.h"
|
2020-03-08 20:24:01 +00:00
|
|
|
#include "FBXImporter.h"
|
|
|
|
#include "FBXMeshGeometry.h"
|
|
|
|
#include "FBXParser.h"
|
2012-07-04 14:33:46 +00:00
|
|
|
|
|
|
|
namespace Assimp {
|
|
|
|
namespace FBX {
|
|
|
|
|
2016-03-03 17:38:50 +00:00
|
|
|
using namespace Util;
|
2012-07-04 14:33:46 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-03-08 20:24:01 +00:00
|
|
|
Model::Model(uint64_t id, const Element &element, const Document &doc, const std::string &name) :
|
|
|
|
Object(id, element, name), shading("Y") {
|
|
|
|
const Scope &sc = GetRequiredScope(element);
|
|
|
|
const Element *const Shading = sc["Shading"];
|
|
|
|
const Element *const Culling = sc["Culling"];
|
|
|
|
|
|
|
|
if (Shading) {
|
|
|
|
shading = GetRequiredToken(*Shading, 0).StringContents();
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2012-07-04 14:33:46 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
if (Culling) {
|
2020-03-08 20:24:01 +00:00
|
|
|
culling = ParseTokenAsString(GetRequiredToken(*Culling, 0));
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2012-07-04 14:33:46 +00:00
|
|
|
|
2020-03-08 20:24:01 +00:00
|
|
|
props = GetPropertyTable(doc, "Model.FbxNode", element, sc);
|
|
|
|
ResolveLinks(element, doc);
|
2012-07-04 14:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-03-08 20:24:01 +00:00
|
|
|
void Model::ResolveLinks(const Element&, const Document &doc) {
|
|
|
|
const char *const arr[] = { "Geometry", "Material", "NodeAttribute" };
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// resolve material
|
2020-03-08 20:24:01 +00:00
|
|
|
const std::vector<const Connection *> &conns = doc.GetConnectionsByDestinationSequenced(ID(), arr, 3);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
materials.reserve(conns.size());
|
|
|
|
geometry.reserve(conns.size());
|
|
|
|
attributes.reserve(conns.size());
|
2020-03-08 20:24:01 +00:00
|
|
|
for (const Connection *con : conns) {
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// material and geometry links should be Object-Object connections
|
|
|
|
if (con->PropertyName().length()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-08 20:24:01 +00:00
|
|
|
const Object *const ob = con->SourceObject();
|
|
|
|
if (!ob) {
|
|
|
|
DOMWarning("failed to read source object for incoming Model link, ignoring", &element);
|
2015-05-19 03:57:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-08 20:24:01 +00:00
|
|
|
const Material *const mat = dynamic_cast<const Material *>(ob);
|
|
|
|
if (mat) {
|
2015-05-19 03:57:13 +00:00
|
|
|
materials.push_back(mat);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-08 20:24:01 +00:00
|
|
|
const Geometry *const geo = dynamic_cast<const Geometry *>(ob);
|
|
|
|
if (geo) {
|
2015-05-19 03:57:13 +00:00
|
|
|
geometry.push_back(geo);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-08 20:24:01 +00:00
|
|
|
const NodeAttribute *const att = dynamic_cast<const NodeAttribute *>(ob);
|
|
|
|
if (att) {
|
2015-05-19 03:57:13 +00:00
|
|
|
attributes.push_back(att);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-08 20:24:01 +00:00
|
|
|
DOMWarning("source object for model link is neither Material, NodeAttribute nor Geometry, ignoring", &element);
|
2015-05-19 03:57:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-07-04 14:33:46 +00:00
|
|
|
}
|
|
|
|
|
2012-08-25 20:24:08 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-03-08 20:24:01 +00:00
|
|
|
bool Model::IsNull() const {
|
|
|
|
const std::vector<const NodeAttribute *> &attrs = GetAttributes();
|
|
|
|
for (const NodeAttribute *att : attrs) {
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2020-03-08 20:24:01 +00:00
|
|
|
const Null *null_tag = dynamic_cast<const Null *>(att);
|
|
|
|
if (null_tag) {
|
2015-05-19 03:57:13 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2012-08-25 20:24:08 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
return false;
|
2012-08-25 20:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-03-08 20:24:01 +00:00
|
|
|
} // namespace FBX
|
|
|
|
} // namespace Assimp
|
2012-07-04 14:33:46 +00:00
|
|
|
|
|
|
|
#endif
|