Merge pull request #1178 from JulianGro/rename_fbx_to_model-serializers

Rename fbx to model serializers
This commit is contained in:
Kalila 2021-04-19 16:00:21 -04:00 committed by GitHub
commit dec3369583
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 151 additions and 151 deletions

View file

@ -1,6 +1,6 @@
set(TARGET_NAME native-lib) set(TARGET_NAME native-lib)
setup_hifi_library() setup_hifi_library()
link_hifi_libraries(shared task networking gl gpu qml image fbx hfm render-utils physics entities octree ${PLATFORM_GL_BACKEND}) link_hifi_libraries(shared task networking gl gpu qml image model-serializers hfm render-utils physics entities octree ${PLATFORM_GL_BACKEND})
target_opengl() target_opengl()
target_bullet() target_bullet()

View file

@ -2,7 +2,7 @@ set(TARGET_NAME questInterface)
setup_hifi_library() setup_hifi_library()
link_hifi_libraries( link_hifi_libraries(
shared task networking qml shared task networking qml
image fbx hfm render-utils physics entities octree image model-serializers hfm render-utils physics entities octree
oculusMobile oculusMobilePlugin oculusMobile oculusMobilePlugin
gl gpu ${PLATFORM_GL_BACKEND} gl gpu ${PLATFORM_GL_BACKEND}
) )

View file

@ -12,7 +12,7 @@ setup_thread_debugger()
# link in the shared libraries # link in the shared libraries
link_hifi_libraries( link_hifi_libraries(
audio avatars octree gpu graphics shaders fbx hfm entities audio avatars octree gpu graphics shaders model-serializers hfm entities
networking animation recording shared script-engine embedded-webserver networking animation recording shared script-engine embedded-webserver
controllers physics plugins midi image controllers physics plugins midi image
material-networking model-networking ktx shaders material-networking model-networking ktx shaders

View file

@ -219,7 +219,7 @@ endif()
# link required hifi libraries # link required hifi libraries
link_hifi_libraries( link_hifi_libraries(
shared workload task octree ktx gpu gl procedural graphics graphics-scripting render shared workload task octree ktx gpu gl procedural graphics graphics-scripting render
pointers recording hfm fbx networking material-networking pointers recording hfm model-serializers networking material-networking
model-networking model-baker entities avatars model-networking model-baker entities avatars
audio audio-client animation script-engine physics audio audio-client animation script-engine physics
render-utils entities-renderer avatars-renderer ui qml auto-updater midi render-utils entities-renderer avatars-renderer ui qml auto-updater midi

View file

@ -1,6 +1,6 @@
set(TARGET_NAME animation) set(TARGET_NAME animation)
setup_hifi_library(Network Script) setup_hifi_library(Network Script)
link_hifi_libraries(shared graphics fbx) link_hifi_libraries(shared graphics model-serializers)
include_hifi_library_headers(networking) include_hifi_library_headers(networking)
include_hifi_library_headers(gpu) include_hifi_library_headers(gpu)
include_hifi_library_headers(hfm) include_hifi_library_headers(hfm)

View file

@ -4,7 +4,7 @@ link_hifi_libraries(shared shaders gpu graphics animation material-networking mo
include_hifi_library_headers(avatars) include_hifi_library_headers(avatars)
include_hifi_library_headers(networking) include_hifi_library_headers(networking)
include_hifi_library_headers(hfm) include_hifi_library_headers(hfm)
include_hifi_library_headers(fbx) include_hifi_library_headers(model-serializers)
include_hifi_library_headers(recording) include_hifi_library_headers(recording)
include_hifi_library_headers(ktx) include_hifi_library_headers(ktx)
include_hifi_library_headers(procedural) include_hifi_library_headers(procedural)

View file

@ -1,7 +1,7 @@
set(TARGET_NAME baking) set(TARGET_NAME baking)
setup_hifi_library(Concurrent) setup_hifi_library(Concurrent)
link_hifi_libraries(shared shaders graphics networking procedural graphics-scripting ktx image fbx model-baker task) link_hifi_libraries(shared shaders graphics networking procedural graphics-scripting ktx image model-serializers model-baker task)
include_hifi_library_headers(gpu) include_hifi_library_headers(gpu)
include_hifi_library_headers(hfm) include_hifi_library_headers(hfm)
include_hifi_library_headers(material-networking) include_hifi_library_headers(material-networking)

View file

@ -7,7 +7,7 @@ include_hifi_library_headers(model-networking)
include_hifi_library_headers(networking) include_hifi_library_headers(networking)
include_hifi_library_headers(graphics) include_hifi_library_headers(graphics)
include_hifi_library_headers(hfm) include_hifi_library_headers(hfm)
include_hifi_library_headers(fbx) include_hifi_library_headers(model-serializers)
include_hifi_library_headers(image) include_hifi_library_headers(image)
include_hifi_library_headers(ktx) include_hifi_library_headers(ktx)
include_hifi_library_headers(render) include_hifi_library_headers(render)

View file

@ -9,7 +9,7 @@ include_hifi_library_headers(audio)
include_hifi_library_headers(physics) include_hifi_library_headers(physics)
include_hifi_library_headers(animation) include_hifi_library_headers(animation)
include_hifi_library_headers(hfm) include_hifi_library_headers(hfm)
include_hifi_library_headers(fbx) include_hifi_library_headers(model-serializers)
include_hifi_library_headers(entities) include_hifi_library_headers(entities)
include_hifi_library_headers(avatars) include_hifi_library_headers(avatars)
include_hifi_library_headers(controllers) include_hifi_library_headers(controllers)

View file

@ -1,8 +1,8 @@
set(TARGET_NAME entities) set(TARGET_NAME entities)
setup_hifi_library(Network Script) setup_hifi_library(Network Script)
target_include_directories(${TARGET_NAME} PRIVATE "${OPENSSL_INCLUDE_DIR}") target_include_directories(${TARGET_NAME} PRIVATE "${OPENSSL_INCLUDE_DIR}")
include_hifi_library_headers(hfm) include_hifi_library_headers(hfm)
include_hifi_library_headers(fbx) include_hifi_library_headers(model-serializers)
include_hifi_library_headers(gpu) include_hifi_library_headers(gpu)
include_hifi_library_headers(image) include_hifi_library_headers(image)
include_hifi_library_headers(ktx) include_hifi_library_headers(ktx)

View file

@ -1,4 +1,4 @@
set(TARGET_NAME graphics-scripting) set(TARGET_NAME graphics-scripting)
setup_hifi_library() setup_hifi_library()
link_hifi_libraries(shared networking graphics fbx image material-networking model-networking script-engine) link_hifi_libraries(shared networking graphics model-serializers image material-networking model-networking script-engine)
include_hifi_library_headers(gpu) include_hifi_library_headers(gpu)

View file

@ -1,9 +1,9 @@
set(TARGET_NAME model-networking) set(TARGET_NAME model-networking)
setup_hifi_library() setup_hifi_library()
link_hifi_libraries(shared shaders networking graphics fbx procedural model-baker) link_hifi_libraries(shared shaders networking graphics model-serializers procedural model-baker)
include_hifi_library_headers(hfm) include_hifi_library_headers(hfm)
include_hifi_library_headers(task) include_hifi_library_headers(task)
include_hifi_library_headers(gpu) include_hifi_library_headers(gpu)
include_hifi_library_headers(image) include_hifi_library_headers(image)
include_hifi_library_headers(ktx) include_hifi_library_headers(ktx)
include_hifi_library_headers(material-networking) include_hifi_library_headers(material-networking)

View file

@ -1,4 +1,4 @@
set(TARGET_NAME fbx) set(TARGET_NAME model-serializers)
setup_hifi_library() setup_hifi_library()
link_hifi_libraries(shared graphics networking image hfm) link_hifi_libraries(shared graphics networking image hfm)

View file

@ -1,6 +1,6 @@
// //
// FBX.h // FBX.h
// libraries/fbx/src // libraries/model-serializers/src
// //
// Created by Ryan Huffman on 9/5/17. // Created by Ryan Huffman on 9/5/17.
// Copyright 2017 High Fidelity, Inc. // Copyright 2017 High Fidelity, Inc.

View file

@ -1,6 +1,6 @@
// //
// FBXSerializer.cpp // FBXSerializer.cpp
// libraries/fbx/src // libraries/model-serializers/src
// //
// Created by Andrzej Kapolka on 9/18/13. // Created by Andrzej Kapolka on 9/18/13.
// Copyright 2013 High Fidelity, Inc. // Copyright 2013 High Fidelity, Inc.
@ -404,7 +404,7 @@ HFMModel* FBXSerializer::extractHFMModel(const hifi::VariantHash& mapping, const
QVector<ExtractedBlendshape> blendshapes; QVector<ExtractedBlendshape> blendshapes;
QHash<QString, FBXModel> fbxModels; QHash<QString, FBXModel> fbxModels;
QHash<QString, Cluster> clusters; QHash<QString, Cluster> clusters;
QHash<QString, AnimationCurve> animationCurves; QHash<QString, AnimationCurve> animationCurves;
QHash<QString, QString> typeFlags; QHash<QString, QString> typeFlags;
@ -1236,7 +1236,7 @@ HFMModel* FBXSerializer::extractHFMModel(const hifi::VariantHash& mapping, const
// models with clusters must be parented to the cluster top // models with clusters must be parented to the cluster top
// Unless the model is a root node. // Unless the model is a root node.
bool isARootNode = !modelIDs.contains(_connectionParentMap.value(fbxModel.key())); bool isARootNode = !modelIDs.contains(_connectionParentMap.value(fbxModel.key()));
if (!isARootNode) { if (!isARootNode) {
foreach(const QString& deformerID, _connectionChildMap.values(fbxModel.key())) { foreach(const QString& deformerID, _connectionChildMap.values(fbxModel.key())) {
foreach(const QString& clusterID, _connectionChildMap.values(deformerID)) { foreach(const QString& clusterID, _connectionChildMap.values(deformerID)) {
if (!clusters.contains(clusterID)) { if (!clusters.contains(clusterID)) {

View file

@ -1,6 +1,6 @@
// //
// FBXSerializer.h // FBXSerializer.h
// libraries/fbx/src // libraries/model-serializers/src
// //
// Created by Andrzej Kapolka on 9/18/13. // Created by Andrzej Kapolka on 9/18/13.
// Copyright 2013 High Fidelity, Inc. // Copyright 2013 High Fidelity, Inc.
@ -69,7 +69,7 @@ public:
useMaterial(true), useMaterial(true),
isDefault(true) isDefault(true)
{} {}
TextureParam(const TextureParam& src) : TextureParam(const TextureParam& src) :
cropping(src.cropping), cropping(src.cropping),
UVSet(src.UVSet), UVSet(src.UVSet),
@ -81,7 +81,7 @@ public:
useMaterial(src.useMaterial), useMaterial(src.useMaterial),
isDefault(src.isDefault) isDefault(src.isDefault)
{} {}
}; };
class MaterialParam { class MaterialParam {

View file

@ -1,6 +1,6 @@
// //
// FBXSerializer_Material.cpp // FBXSerializer_Material.cpp
// interface/src/fbx // libraries/model-serializers/src
// //
// Created by Sam Gateau on 8/27/2015. // Created by Sam Gateau on 8/27/2015.
// Copyright 2015 High Fidelity, Inc. // Copyright 2015 High Fidelity, Inc.

View file

@ -1,6 +1,6 @@
// //
// FBXSerializer_Mesh.cpp // FBXSerializer_Mesh.cpp
// interface/src/fbx // libraries/model-serializers/src
// //
// Created by Sam Gateau on 8/27/2015. // Created by Sam Gateau on 8/27/2015.
// Copyright 2015 High Fidelity, Inc. // Copyright 2015 High Fidelity, Inc.
@ -106,7 +106,7 @@ void appendIndex(MeshData& data, QVector<int>& indices, int index, bool deduplic
} }
Vertex vertex; Vertex vertex;
vertex.originalIndex = vertexIndex; vertex.originalIndex = vertexIndex;
glm::vec3 position; glm::vec3 position;
if (vertexIndex < data.vertices.size()) { if (vertexIndex < data.vertices.size()) {
position = data.vertices.at(vertexIndex); position = data.vertices.at(vertexIndex);
@ -114,7 +114,7 @@ void appendIndex(MeshData& data, QVector<int>& indices, int index, bool deduplic
glm::vec3 normal; glm::vec3 normal;
int normalIndex = data.normalsByVertex ? vertexIndex : index; int normalIndex = data.normalsByVertex ? vertexIndex : index;
if (data.normalIndices.isEmpty()) { if (data.normalIndices.isEmpty()) {
if (normalIndex < data.normals.size()) { if (normalIndex < data.normals.size()) {
normal = data.normals.at(normalIndex); normal = data.normals.at(normalIndex);
} }
@ -130,7 +130,7 @@ void appendIndex(MeshData& data, QVector<int>& indices, int index, bool deduplic
bool hasColors = (data.colors.size() > 0); bool hasColors = (data.colors.size() > 0);
if (hasColors) { if (hasColors) {
int colorIndex = data.colorsByVertex ? vertexIndex : index; int colorIndex = data.colorsByVertex ? vertexIndex : index;
if (data.colorIndices.isEmpty()) { if (data.colorIndices.isEmpty()) {
if (colorIndex < data.colors.size()) { if (colorIndex < data.colors.size()) {
color = data.colors.at(colorIndex); color = data.colors.at(colorIndex);
} }
@ -152,7 +152,7 @@ void appendIndex(MeshData& data, QVector<int>& indices, int index, bool deduplic
vertex.texCoord = data.texCoords.at(texCoordIndex); vertex.texCoord = data.texCoords.at(texCoordIndex);
} }
} }
bool hasMoreTexcoords = (data.attributes.size() > 1); bool hasMoreTexcoords = (data.attributes.size() > 1);
if (hasMoreTexcoords) { if (hasMoreTexcoords) {
if (data.attributes[1].texCoordIndices.empty()) { if (data.attributes[1].texCoordIndices.empty()) {
@ -222,7 +222,7 @@ ExtractedMesh FBXSerializer::extractMesh(const FBXNode& object, unsigned int& me
} else if (subdata.name == "MappingInformationType" && subdata.properties.at(0) == BY_VERTICE) { } else if (subdata.name == "MappingInformationType" && subdata.properties.at(0) == BY_VERTICE) {
data.normalsByVertex = true; data.normalsByVertex = true;
} else if (subdata.name == "ReferenceInformationType" && subdata.properties.at(0) == INDEX_TO_DIRECT) { } else if (subdata.name == "ReferenceInformationType" && subdata.properties.at(0) == INDEX_TO_DIRECT) {
indexToDirect = true; indexToDirect = true;
} }
@ -242,7 +242,7 @@ ExtractedMesh FBXSerializer::extractMesh(const FBXNode& object, unsigned int& me
} else if (subdata.name == "MappingInformationType" && subdata.properties.at(0) == BY_VERTICE) { } else if (subdata.name == "MappingInformationType" && subdata.properties.at(0) == BY_VERTICE) {
data.colorsByVertex = true; data.colorsByVertex = true;
} else if (subdata.name == "ReferenceInformationType" && subdata.properties.at(0) == INDEX_TO_DIRECT) { } else if (subdata.name == "ReferenceInformationType" && subdata.properties.at(0) == INDEX_TO_DIRECT) {
indexToDirect = true; indexToDirect = true;
} }
@ -264,7 +264,7 @@ ExtractedMesh FBXSerializer::extractMesh(const FBXNode& object, unsigned int& me
qCDebug(modelformat) << "LayerElementColor has an average value of 0.0f... let's forget it."; qCDebug(modelformat) << "LayerElementColor has an average value of 0.0f... let's forget it.";
} }
#endif #endif
} else if (child.name == "LayerElementUV") { } else if (child.name == "LayerElementUV") {
if (child.properties.at(0).toInt() == 0) { if (child.properties.at(0).toInt() == 0) {
AttributeData attrib; AttributeData attrib;
@ -278,7 +278,7 @@ ExtractedMesh FBXSerializer::extractMesh(const FBXNode& object, unsigned int& me
attrib.texCoordIndices = getIntVector(subdata); attrib.texCoordIndices = getIntVector(subdata);
} else if (subdata.name == "Name") { } else if (subdata.name == "Name") {
attrib.name = subdata.properties.at(0).toString(); attrib.name = subdata.properties.at(0).toString();
} }
#if defined(DEBUG_FBXSERIALIZER) #if defined(DEBUG_FBXSERIALIZER)
else { else {
int unknown = 0; int unknown = 0;
@ -579,6 +579,6 @@ ExtractedMesh FBXSerializer::extractMesh(const FBXNode& object, unsigned int& me
} }
} }
} }
return data.extracted; return data.extracted;
} }

View file

@ -1,6 +1,6 @@
// //
// FBXSerializer_Node.cpp // FBXSerializer_Node.cpp
// interface/src/fbx // libraries/model-serializers/src
// //
// Created by Sam Gateau on 8/27/2015. // Created by Sam Gateau on 8/27/2015.
// Copyright 2015 High Fidelity, Inc. // Copyright 2015 High Fidelity, Inc.
@ -183,7 +183,7 @@ FBXNode parseBinaryFBXNode(QDataStream& in, int& position, bool has64BitPosition
// FBX 2016 and beyond uses 64bit positions in the node headers, pre-2016 used 32bit values // FBX 2016 and beyond uses 64bit positions in the node headers, pre-2016 used 32bit values
// our code generally doesn't care about the size that much, so we will use 64bit values // our code generally doesn't care about the size that much, so we will use 64bit values
// from here on out, but if the file is an older format we read the stream into temp 32bit // from here on out, but if the file is an older format we read the stream into temp 32bit
// values and then assign to our actual 64bit values. // values and then assign to our actual 64bit values.
if (has64BitPositions) { if (has64BitPositions) {
in >> endOffset; in >> endOffset;
@ -335,8 +335,8 @@ FBXNode parseTextFBXNode(Tokenizer& tokenizer) {
if ((token = tokenizer.nextToken()) == ':') { if ((token = tokenizer.nextToken()) == ':') {
tokenizer.ungetChar(':'); tokenizer.ungetChar(':');
tokenizer.pushBackToken(Tokenizer::DATUM_TOKEN); tokenizer.pushBackToken(Tokenizer::DATUM_TOKEN);
return node; return node;
} else { } else {
tokenizer.pushBackToken(token); tokenizer.pushBackToken(token);
node.properties.append(datum); node.properties.append(datum);

View file

@ -1,6 +1,6 @@
// //
// FBXToJSON.cpp // FBXToJSON.cpp
// libraries/fbx/src // libraries/model-serializers/src
// //
// Created by Simon Walton on 5/4/2018. // Created by Simon Walton on 5/4/2018.
// Copyright 2018 High Fidelity, Inc. // Copyright 2018 High Fidelity, Inc.
@ -61,7 +61,7 @@ FBXToJSON& FBXToJSON::operator<<(const FBXNode& fbxNode) {
case QMetaType::QByteArray: case QMetaType::QByteArray:
*this << '"' << stringEscape(prop.toByteArray().toStdString()) << '"'; *this << '"' << stringEscape(prop.toByteArray().toStdString()) << '"';
break; break;
default: default:
if (prop.canConvert<QVector<float>>()) { if (prop.canConvert<QVector<float>>()) {
*this << prop.value<QVector<float>>(); *this << prop.value<QVector<float>>();
@ -95,7 +95,7 @@ FBXToJSON& FBXToJSON::operator<<(const FBXNode& fbxNode) {
string FBXToJSON::stringEscape(const string& in) { string FBXToJSON::stringEscape(const string& in) {
string out; string out;
out.reserve(in.length()); out.reserve(in.length());
for (unsigned char inChar: in) { for (unsigned char inChar: in) {
if (inChar == '"') { if (inChar == '"') {
out.append(R"(\")"); out.append(R"(\")");

View file

@ -1,6 +1,6 @@
// //
// FBXToJSON.h // FBXToJSON.h
// libraries/fbx/src // libraries/model-serializers/src
// //
// Created by Simon Walton on 5/4/2018. // Created by Simon Walton on 5/4/2018.
// Copyright 2018 High Fidelity, Inc. // Copyright 2018 High Fidelity, Inc.

View file

@ -1,6 +1,6 @@
// //
// FBXWriter.cpp // FBXWriter.cpp
// libraries/fbx/src // libraries/model-serializers/src
// //
// Created by Ryan Huffman on 9/5/17. // Created by Ryan Huffman on 9/5/17.
// Copyright 2017 High Fidelity, Inc. // Copyright 2017 High Fidelity, Inc.

View file

@ -1,6 +1,6 @@
// //
// FBXWriter.h // FBXWriter.h
// libraries/fbx/src // libraries/model-serializers/src
// //
// Created by Ryan Huffman on 9/5/17. // Created by Ryan Huffman on 9/5/17.
// Copyright 2017 High Fidelity, Inc. // Copyright 2017 High Fidelity, Inc.

View file

@ -1,6 +1,6 @@
// //
// GLTFSerializer.cpp // GLTFSerializer.cpp
// libraries/fbx/src // libraries/model-serializers/src
// //
// Created by Luis Cuenca on 8/30/17. // Created by Luis Cuenca on 8/30/17.
// Copyright 2017 High Fidelity, Inc. // Copyright 2017 High Fidelity, Inc.
@ -148,7 +148,7 @@ bool GLTFSerializer::getObjectArrayVal(const QJsonObject& object, const QString&
} }
hifi::ByteArray GLTFSerializer::setGLBChunks(const hifi::ByteArray& data) { hifi::ByteArray GLTFSerializer::setGLBChunks(const hifi::ByteArray& data) {
int byte = 4; int byte = 4;
int jsonStart = data.indexOf("JSON", Qt::CaseSensitive); int jsonStart = data.indexOf("JSON", Qt::CaseSensitive);
int binStart = data.indexOf("BIN", Qt::CaseSensitive); int binStart = data.indexOf("BIN", Qt::CaseSensitive);
int jsonLength, binLength; int jsonLength, binLength;
@ -271,7 +271,7 @@ bool GLTFSerializer::setAsset(const QJsonObject& object) {
QJsonObject jsAsset; QJsonObject jsAsset;
bool isAssetDefined = getObjectVal(object, "asset", jsAsset, _file.defined); bool isAssetDefined = getObjectVal(object, "asset", jsAsset, _file.defined);
if (isAssetDefined) { if (isAssetDefined) {
if (!getStringVal(jsAsset, "version", _file.asset.version, if (!getStringVal(jsAsset, "version", _file.asset.version,
_file.asset.defined) || _file.asset.version != "2.0") { _file.asset.defined) || _file.asset.version != "2.0") {
return false; return false;
} }
@ -318,7 +318,7 @@ GLTFAccessor::GLTFAccessorSparse GLTFSerializer::createAccessorSparse(const QJso
bool GLTFSerializer::addAccessor(const QJsonObject& object) { bool GLTFSerializer::addAccessor(const QJsonObject& object) {
GLTFAccessor accessor; GLTFAccessor accessor;
getIntVal(object, "bufferView", accessor.bufferView, accessor.defined); getIntVal(object, "bufferView", accessor.bufferView, accessor.defined);
getIntVal(object, "byteOffset", accessor.byteOffset, accessor.defined); getIntVal(object, "byteOffset", accessor.byteOffset, accessor.defined);
getIntVal(object, "componentType", accessor.componentType, accessor.defined); getIntVal(object, "componentType", accessor.componentType, accessor.defined);
@ -344,7 +344,7 @@ bool GLTFSerializer::addAccessor(const QJsonObject& object) {
bool GLTFSerializer::addAnimation(const QJsonObject& object) { bool GLTFSerializer::addAnimation(const QJsonObject& object) {
GLTFAnimation animation; GLTFAnimation animation;
QJsonArray channels; QJsonArray channels;
if (getObjectArrayVal(object, "channels", channels, animation.defined)) { if (getObjectArrayVal(object, "channels", channels, animation.defined)) {
foreach(const QJsonValue & v, channels) { foreach(const QJsonValue & v, channels) {
@ -355,7 +355,7 @@ bool GLTFSerializer::addAnimation(const QJsonObject& object) {
if (getObjectVal(v.toObject(), "target", jsChannel, channel.defined)) { if (getObjectVal(v.toObject(), "target", jsChannel, channel.defined)) {
getIntVal(jsChannel, "node", channel.target.node, channel.target.defined); getIntVal(jsChannel, "node", channel.target.node, channel.target.defined);
getIntVal(jsChannel, "path", channel.target.path, channel.target.defined); getIntVal(jsChannel, "path", channel.target.path, channel.target.defined);
} }
} }
} }
} }
@ -374,7 +374,7 @@ bool GLTFSerializer::addAnimation(const QJsonObject& object) {
} }
} }
} }
_file.animations.push_back(animation); _file.animations.push_back(animation);
return true; return true;
@ -382,20 +382,20 @@ bool GLTFSerializer::addAnimation(const QJsonObject& object) {
bool GLTFSerializer::addBufferView(const QJsonObject& object) { bool GLTFSerializer::addBufferView(const QJsonObject& object) {
GLTFBufferView bufferview; GLTFBufferView bufferview;
getIntVal(object, "buffer", bufferview.buffer, bufferview.defined); getIntVal(object, "buffer", bufferview.buffer, bufferview.defined);
getIntVal(object, "byteLength", bufferview.byteLength, bufferview.defined); getIntVal(object, "byteLength", bufferview.byteLength, bufferview.defined);
getIntVal(object, "byteOffset", bufferview.byteOffset, bufferview.defined); getIntVal(object, "byteOffset", bufferview.byteOffset, bufferview.defined);
getIntVal(object, "target", bufferview.target, bufferview.defined); getIntVal(object, "target", bufferview.target, bufferview.defined);
_file.bufferviews.push_back(bufferview); _file.bufferviews.push_back(bufferview);
return true; return true;
} }
bool GLTFSerializer::addBuffer(const QJsonObject& object) { bool GLTFSerializer::addBuffer(const QJsonObject& object) {
GLTFBuffer buffer; GLTFBuffer buffer;
getIntVal(object, "byteLength", buffer.byteLength, buffer.defined); getIntVal(object, "byteLength", buffer.byteLength, buffer.defined);
if (_url.path().endsWith("glb")) { if (_url.path().endsWith("glb")) {
@ -411,13 +411,13 @@ bool GLTFSerializer::addBuffer(const QJsonObject& object) {
} }
} }
_file.buffers.push_back(buffer); _file.buffers.push_back(buffer);
return true; return true;
} }
bool GLTFSerializer::addCamera(const QJsonObject& object) { bool GLTFSerializer::addCamera(const QJsonObject& object) {
GLTFCamera camera; GLTFCamera camera;
QJsonObject jsPerspective; QJsonObject jsPerspective;
QJsonObject jsOrthographic; QJsonObject jsOrthographic;
QString type; QString type;
@ -437,15 +437,15 @@ bool GLTFSerializer::addCamera(const QJsonObject& object) {
} else if (getStringVal(object, "type", type, camera.defined)) { } else if (getStringVal(object, "type", type, camera.defined)) {
camera.type = getCameraType(type); camera.type = getCameraType(type);
} }
_file.cameras.push_back(camera); _file.cameras.push_back(camera);
return true; return true;
} }
bool GLTFSerializer::addImage(const QJsonObject& object) { bool GLTFSerializer::addImage(const QJsonObject& object) {
GLTFImage image; GLTFImage image;
QString mime; QString mime;
getStringVal(object, "uri", image.uri, image.defined); getStringVal(object, "uri", image.uri, image.defined);
if (image.uri.contains("data:image/png;base64,")) { if (image.uri.contains("data:image/png;base64,")) {
@ -455,9 +455,9 @@ bool GLTFSerializer::addImage(const QJsonObject& object) {
} }
if (getStringVal(object, "mimeType", mime, image.defined)) { if (getStringVal(object, "mimeType", mime, image.defined)) {
image.mimeType = getImageMimeType(mime); image.mimeType = getImageMimeType(mime);
} }
getIntVal(object, "bufferView", image.bufferView, image.defined); getIntVal(object, "bufferView", image.bufferView, image.defined);
_file.images.push_back(image); _file.images.push_back(image);
return true; return true;
@ -489,20 +489,20 @@ bool GLTFSerializer::addMaterial(const QJsonObject& object) {
getDoubleVal(object, "alphaCutoff", material.alphaCutoff, material.defined); getDoubleVal(object, "alphaCutoff", material.alphaCutoff, material.defined);
QJsonObject jsMetallicRoughness; QJsonObject jsMetallicRoughness;
if (getObjectVal(object, "pbrMetallicRoughness", jsMetallicRoughness, material.defined)) { if (getObjectVal(object, "pbrMetallicRoughness", jsMetallicRoughness, material.defined)) {
getDoubleArrayVal(jsMetallicRoughness, "baseColorFactor", getDoubleArrayVal(jsMetallicRoughness, "baseColorFactor",
material.pbrMetallicRoughness.baseColorFactor, material.pbrMetallicRoughness.baseColorFactor,
material.pbrMetallicRoughness.defined); material.pbrMetallicRoughness.defined);
getIndexFromObject(jsMetallicRoughness, "baseColorTexture", getIndexFromObject(jsMetallicRoughness, "baseColorTexture",
material.pbrMetallicRoughness.baseColorTexture, material.pbrMetallicRoughness.baseColorTexture,
material.pbrMetallicRoughness.defined); material.pbrMetallicRoughness.defined);
getDoubleVal(jsMetallicRoughness, "metallicFactor", getDoubleVal(jsMetallicRoughness, "metallicFactor",
material.pbrMetallicRoughness.metallicFactor, material.pbrMetallicRoughness.metallicFactor,
material.pbrMetallicRoughness.defined); material.pbrMetallicRoughness.defined);
getDoubleVal(jsMetallicRoughness, "roughnessFactor", getDoubleVal(jsMetallicRoughness, "roughnessFactor",
material.pbrMetallicRoughness.roughnessFactor, material.pbrMetallicRoughness.roughnessFactor,
material.pbrMetallicRoughness.defined); material.pbrMetallicRoughness.defined);
getIndexFromObject(jsMetallicRoughness, "metallicRoughnessTexture", getIndexFromObject(jsMetallicRoughness, "metallicRoughnessTexture",
material.pbrMetallicRoughness.metallicRoughnessTexture, material.pbrMetallicRoughness.metallicRoughnessTexture,
material.pbrMetallicRoughness.defined); material.pbrMetallicRoughness.defined);
} }
_file.materials.push_back(material); _file.materials.push_back(material);
@ -524,7 +524,7 @@ bool GLTFSerializer::addMesh(const QJsonObject& object) {
getIntVal(jsPrimitive, "mode", primitive.mode, primitive.defined); getIntVal(jsPrimitive, "mode", primitive.mode, primitive.defined);
getIntVal(jsPrimitive, "indices", primitive.indices, primitive.defined); getIntVal(jsPrimitive, "indices", primitive.indices, primitive.defined);
getIntVal(jsPrimitive, "material", primitive.material, primitive.defined); getIntVal(jsPrimitive, "material", primitive.material, primitive.defined);
QJsonObject jsAttributes; QJsonObject jsAttributes;
if (getObjectVal(jsPrimitive, "attributes", jsAttributes, primitive.defined)) { if (getObjectVal(jsPrimitive, "attributes", jsAttributes, primitive.defined)) {
QStringList attrKeys = jsAttributes.keys(); QStringList attrKeys = jsAttributes.keys();
@ -550,7 +550,7 @@ bool GLTFSerializer::addMesh(const QJsonObject& object) {
primitive.targets.push_back(target); primitive.targets.push_back(target);
} }
} }
} }
mesh.primitives.push_back(primitive); mesh.primitives.push_back(primitive);
} }
} }
@ -561,8 +561,8 @@ bool GLTFSerializer::addMesh(const QJsonObject& object) {
if (getObjectVal(object, "extras", jsExtras, mesh.defined)) { if (getObjectVal(object, "extras", jsExtras, mesh.defined)) {
QJsonArray jsTargetNames; QJsonArray jsTargetNames;
if (getObjectArrayVal(jsExtras, "targetNames", jsTargetNames, extras.defined)) { if (getObjectArrayVal(jsExtras, "targetNames", jsTargetNames, extras.defined)) {
foreach (const QJsonValue& tarName, jsTargetNames) { foreach (const QJsonValue& tarName, jsTargetNames) {
extras.targetNames.push_back(tarName.toString()); extras.targetNames.push_back(tarName.toString());
} }
} }
mesh.extras = extras; mesh.extras = extras;
@ -575,7 +575,7 @@ bool GLTFSerializer::addMesh(const QJsonObject& object) {
bool GLTFSerializer::addNode(const QJsonObject& object) { bool GLTFSerializer::addNode(const QJsonObject& object) {
GLTFNode node; GLTFNode node;
getStringVal(object, "name", node.name, node.defined); getStringVal(object, "name", node.name, node.defined);
getIntVal(object, "camera", node.camera, node.defined); getIntVal(object, "camera", node.camera, node.defined);
getIntVal(object, "mesh", node.mesh, node.defined); getIntVal(object, "mesh", node.mesh, node.defined);
@ -630,10 +630,10 @@ bool GLTFSerializer::addSkin(const QJsonObject& object) {
} }
bool GLTFSerializer::addTexture(const QJsonObject& object) { bool GLTFSerializer::addTexture(const QJsonObject& object) {
GLTFTexture texture; GLTFTexture texture;
getIntVal(object, "sampler", texture.sampler, texture.defined); getIntVal(object, "sampler", texture.sampler, texture.defined);
getIntVal(object, "source", texture.source, texture.defined); getIntVal(object, "source", texture.source, texture.defined);
_file.textures.push_back(texture); _file.textures.push_back(texture);
return true; return true;
@ -646,8 +646,8 @@ bool GLTFSerializer::parseGLTF(const hifi::ByteArray& data) {
if (_url.path().endsWith("glb") && data.indexOf("glTF") == 0 && data.contains("JSON")) { if (_url.path().endsWith("glb") && data.indexOf("glTF") == 0 && data.contains("JSON")) {
jsonChunk = setGLBChunks(data); jsonChunk = setGLBChunks(data);
} }
QJsonDocument d = QJsonDocument::fromJson(jsonChunk); QJsonDocument d = QJsonDocument::fromJson(jsonChunk);
QJsonObject jsFile = d.object(); QJsonObject jsFile = d.object();
@ -769,7 +769,7 @@ bool GLTFSerializer::parseGLTF(const hifi::ByteArray& data) {
} }
} }
} }
} }
return success; return success;
} }
@ -789,13 +789,13 @@ glm::mat4 GLTFSerializer::getModelTransform(const GLTFNode& node) {
s = glm::scale(s, scale); s = glm::scale(s, scale);
tmat = s * tmat; tmat = s * tmat;
} }
if (node.defined["rotation"] && node.rotation.size() == 4) { if (node.defined["rotation"] && node.rotation.size() == 4) {
//quat(x,y,z,w) to quat(w,x,y,z) //quat(x,y,z,w) to quat(w,x,y,z)
glm::quat rotquat = glm::quat(node.rotation[3], node.rotation[0], node.rotation[1], node.rotation[2]); glm::quat rotquat = glm::quat(node.rotation[3], node.rotation[0], node.rotation[1], node.rotation[2]);
tmat = glm::mat4_cast(rotquat) * tmat; tmat = glm::mat4_cast(rotquat) * tmat;
} }
if (node.defined["translation"] && node.translation.size() == 3) { if (node.defined["translation"] && node.translation.size() == 3) {
glm::vec3 trans = glm::vec3(node.translation[0], node.translation[1], node.translation[2]); glm::vec3 trans = glm::vec3(node.translation[0], node.translation[1], node.translation[2]);
glm::mat4 t = glm::mat4(1.0); glm::mat4 t = glm::mat4(1.0);
@ -842,7 +842,7 @@ bool GLTFSerializer::buildGeometry(HFMModel& hfmModel, const hifi::VariantHash&
sortedNodes.push_back(nodecount); sortedNodes.push_back(nodecount);
++nodecount; ++nodecount;
} }
// Build transforms // Build transforms
nodecount = 0; nodecount = 0;
@ -965,8 +965,8 @@ bool GLTFSerializer::buildGeometry(HFMModel& hfmModel, const hifi::VariantHash&
std::vector<float>& value = inverseBindValues[s]; std::vector<float>& value = inverseBindValues[s];
int matrixCount = 16 * matrixIndex; int matrixCount = 16 * matrixIndex;
jointInverseBindTransforms[jointIndex] = jointInverseBindTransforms[jointIndex] =
glm::mat4(value[matrixCount], value[matrixCount + 1], value[matrixCount + 2], value[matrixCount + 3], glm::mat4(value[matrixCount], value[matrixCount + 1], value[matrixCount + 2], value[matrixCount + 3],
value[matrixCount + 4], value[matrixCount + 5], value[matrixCount + 6], value[matrixCount + 7], value[matrixCount + 4], value[matrixCount + 5], value[matrixCount + 6], value[matrixCount + 7],
value[matrixCount + 8], value[matrixCount + 9], value[matrixCount + 10], value[matrixCount + 11], value[matrixCount + 8], value[matrixCount + 9], value[matrixCount + 10], value[matrixCount + 11],
value[matrixCount + 12], value[matrixCount + 13], value[matrixCount + 14], value[matrixCount + 15]); value[matrixCount + 12], value[matrixCount + 13], value[matrixCount + 14], value[matrixCount + 15]);
} else { } else {
@ -1008,7 +1008,7 @@ bool GLTFSerializer::buildGeometry(HFMModel& hfmModel, const hifi::VariantHash&
setHFMMaterial(hfmMaterial, _file.materials[i]); setHFMMaterial(hfmMaterial, _file.materials[i]);
} }
// Build meshes // Build meshes
nodecount = 0; nodecount = 0;
hfmModel.meshExtents.reset(); hfmModel.meshExtents.reset();
@ -1061,7 +1061,7 @@ bool GLTFSerializer::buildGeometry(HFMModel& hfmModel, const hifi::VariantHash&
qWarning(modelformat) << "Indices accessor index is out of bounds for model " << _url; qWarning(modelformat) << "Indices accessor index is out of bounds for model " << _url;
continue; continue;
} }
GLTFAccessor& indicesAccessor = _file.accessors[indicesAccessorIdx]; GLTFAccessor& indicesAccessor = _file.accessors[indicesAccessorIdx];
// Buffers // Buffers
@ -1561,7 +1561,7 @@ bool GLTFSerializer::buildGeometry(HFMModel& hfmModel, const hifi::VariantHash&
// Use blendshape from mapping. // Use blendshape from mapping.
foreach(const QVariant& mapping, mappings) { foreach(const QVariant& mapping, mappings) {
auto blendshapeMapping = mapping.toList(); auto blendshapeMapping = mapping.toList();
blendshapeIndices.insert(blendshapeMapping.at(0).toString(), blendshapeIndices.insert(blendshapeMapping.at(0).toString(),
WeightedIndex(i, blendshapeMapping.at(1).toFloat())); WeightedIndex(i, blendshapeMapping.at(1).toFloat()));
} }
} else { } else {
@ -1627,7 +1627,7 @@ bool GLTFSerializer::buildGeometry(HFMModel& hfmModel, const hifi::VariantHash&
glm::vec3 transformedVertex = glm::vec3(globalTransforms[nodeIndex] * glm::vec4(vertex, 1.0f)); glm::vec3 transformedVertex = glm::vec3(globalTransforms[nodeIndex] * glm::vec4(vertex, 1.0f));
mesh.meshExtents.addPoint(transformedVertex); mesh.meshExtents.addPoint(transformedVertex);
hfmModel.meshExtents.addPoint(transformedVertex); hfmModel.meshExtents.addPoint(transformedVertex);
} }
} }
// Mesh extents must be at least a minimum size, in particular for blendshapes to work on planar meshes. // Mesh extents must be at least a minimum size, in particular for blendshapes to work on planar meshes.
@ -1664,7 +1664,7 @@ std::unique_ptr<hfm::Serializer::Factory> GLTFSerializer::getFactory() const {
HFMModel::Pointer GLTFSerializer::read(const hifi::ByteArray& data, const hifi::VariantHash& mapping, const hifi::URL& url) { HFMModel::Pointer GLTFSerializer::read(const hifi::ByteArray& data, const hifi::VariantHash& mapping, const hifi::URL& url) {
_url = url; _url = url;
// Normalize url for local files // Normalize url for local files
hifi::URL normalizeUrl = DependencyManager::get<ResourceManager>()->normalizeURL(_url); hifi::URL normalizeUrl = DependencyManager::get<ResourceManager>()->normalizeURL(_url);
if (normalizeUrl.scheme().isEmpty() || (normalizeUrl.scheme() == "file")) { if (normalizeUrl.scheme().isEmpty() || (normalizeUrl.scheme() == "file")) {
@ -1699,7 +1699,7 @@ bool GLTFSerializer::readBinary(const QString& url, hifi::ByteArray& outdata) {
hifi::URL binaryUrl = _url.resolved(url); hifi::URL binaryUrl = _url.resolved(url);
std::tie<bool, hifi::ByteArray>(success, outdata) = requestData(binaryUrl); std::tie<bool, hifi::ByteArray>(success, outdata) = requestData(binaryUrl);
} }
return success; return success;
} }
@ -1732,7 +1732,7 @@ std::tuple<bool, hifi::ByteArray> GLTFSerializer::requestData(hifi::URL& url) {
} }
hifi::ByteArray GLTFSerializer::requestEmbeddedData(const QString& url) { hifi::ByteArray GLTFSerializer::requestEmbeddedData(const QString& url) {
QString binaryUrl = url.split(",")[1]; QString binaryUrl = url.split(",")[1];
return binaryUrl.isEmpty() ? hifi::ByteArray() : QByteArray::fromBase64(binaryUrl.toUtf8()); return binaryUrl.isEmpty() ? hifi::ByteArray() : QByteArray::fromBase64(binaryUrl.toUtf8());
} }
@ -1764,7 +1764,7 @@ QNetworkReply* GLTFSerializer::request(hifi::URL& url, bool isTest) {
HFMTexture GLTFSerializer::getHFMTexture(const GLTFTexture& texture) { HFMTexture GLTFSerializer::getHFMTexture(const GLTFTexture& texture) {
HFMTexture fbxtex = HFMTexture(); HFMTexture fbxtex = HFMTexture();
fbxtex.texcoordSet = 0; fbxtex.texcoordSet = 0;
if (texture.defined["source"]) { if (texture.defined["source"]) {
QString url = _file.images[texture.source].uri; QString url = _file.images[texture.source].uri;
@ -1775,7 +1775,7 @@ HFMTexture GLTFSerializer::getHFMTexture(const GLTFTexture& texture) {
if (_url.path().endsWith("glb") && !_glbBinary.isEmpty()) { if (_url.path().endsWith("glb") && !_glbBinary.isEmpty()) {
int bufferView = _file.images[texture.source].bufferView; int bufferView = _file.images[texture.source].bufferView;
GLTFBufferView& imagesBufferview = _file.bufferviews[bufferView]; GLTFBufferView& imagesBufferview = _file.bufferviews[bufferView];
int offset = imagesBufferview.byteOffset; int offset = imagesBufferview.byteOffset;
int length = imagesBufferview.byteLength; int length = imagesBufferview.byteLength;
@ -1785,7 +1785,7 @@ HFMTexture GLTFSerializer::getHFMTexture(const GLTFTexture& texture) {
} }
if (url.contains("data:image/jpeg;base64,") || url.contains("data:image/png;base64,")) { if (url.contains("data:image/jpeg;base64,") || url.contains("data:image/png;base64,")) {
fbxtex.content = requestEmbeddedData(url); fbxtex.content = requestEmbeddedData(url);
} }
} }
return fbxtex; return fbxtex;
@ -1815,12 +1815,12 @@ void GLTFSerializer::setHFMMaterial(HFMMaterial& hfmMat, const GLTFMaterial& mat
hfmMat.emissiveTexture = getHFMTexture(_file.textures[material.emissiveTexture]); hfmMat.emissiveTexture = getHFMTexture(_file.textures[material.emissiveTexture]);
hfmMat.useEmissiveMap = true; hfmMat.useEmissiveMap = true;
} }
if (material.defined["normalTexture"]) { if (material.defined["normalTexture"]) {
hfmMat.normalTexture = getHFMTexture(_file.textures[material.normalTexture]); hfmMat.normalTexture = getHFMTexture(_file.textures[material.normalTexture]);
hfmMat.useNormalMap = true; hfmMat.useNormalMap = true;
} }
if (material.defined["occlusionTexture"]) { if (material.defined["occlusionTexture"]) {
hfmMat.occlusionTexture = getHFMTexture(_file.textures[material.occlusionTexture]); hfmMat.occlusionTexture = getHFMTexture(_file.textures[material.occlusionTexture]);
hfmMat.useOcclusionMap = true; hfmMat.useOcclusionMap = true;
@ -1848,7 +1848,7 @@ void GLTFSerializer::setHFMMaterial(HFMMaterial& hfmMat, const GLTFMaterial& mat
if (material.pbrMetallicRoughness.defined["roughnessFactor"]) { if (material.pbrMetallicRoughness.defined["roughnessFactor"]) {
hfmMat._material->setRoughness(material.pbrMetallicRoughness.roughnessFactor); hfmMat._material->setRoughness(material.pbrMetallicRoughness.roughnessFactor);
} }
if (material.pbrMetallicRoughness.defined["baseColorFactor"] && if (material.pbrMetallicRoughness.defined["baseColorFactor"] &&
material.pbrMetallicRoughness.baseColorFactor.size() == 4) { material.pbrMetallicRoughness.baseColorFactor.size() == 4) {
glm::vec3 dcolor = glm::vec3 dcolor =
glm::vec3(material.pbrMetallicRoughness.baseColorFactor[0], material.pbrMetallicRoughness.baseColorFactor[1], glm::vec3(material.pbrMetallicRoughness.baseColorFactor[0], material.pbrMetallicRoughness.baseColorFactor[1],
@ -1864,7 +1864,7 @@ void GLTFSerializer::setHFMMaterial(HFMMaterial& hfmMat, const GLTFMaterial& mat
template<typename T, typename L> template<typename T, typename L>
bool GLTFSerializer::readArray(const hifi::ByteArray& bin, int byteOffset, int count, bool GLTFSerializer::readArray(const hifi::ByteArray& bin, int byteOffset, int count,
QVector<L>& outarray, int accessorType, bool normalized) { QVector<L>& outarray, int accessorType, bool normalized) {
QDataStream blobstream(bin); QDataStream blobstream(bin);
blobstream.setByteOrder(QDataStream::LittleEndian); blobstream.setByteOrder(QDataStream::LittleEndian);
blobstream.setVersion(QDataStream::Qt_5_9); blobstream.setVersion(QDataStream::Qt_5_9);
@ -1904,7 +1904,7 @@ bool GLTFSerializer::readArray(const hifi::ByteArray& bin, int byteOffset, int c
if (normalized) { if (normalized) {
scale = (float)(std::numeric_limits<T>::max)(); scale = (float)(std::numeric_limits<T>::max)();
} }
for (int i = 0; i < count; ++i) { for (int i = 0; i < count; ++i) {
for (int j = 0; j < bufferCount; ++j) { for (int j = 0; j < bufferCount; ++j) {
if (!blobstream.atEnd()) { if (!blobstream.atEnd()) {
@ -1928,7 +1928,7 @@ bool GLTFSerializer::readArray(const hifi::ByteArray& bin, int byteOffset, int c
template<typename T> template<typename T>
bool GLTFSerializer::addArrayOfType(const hifi::ByteArray& bin, int byteOffset, int count, bool GLTFSerializer::addArrayOfType(const hifi::ByteArray& bin, int byteOffset, int count,
QVector<T>& outarray, int accessorType, int componentType, bool normalized) { QVector<T>& outarray, int accessorType, int componentType, bool normalized) {
switch (componentType) { switch (componentType) {
case GLTFAccessorComponentType::BYTE: {} case GLTFAccessorComponentType::BYTE: {}
case GLTFAccessorComponentType::UNSIGNED_BYTE: { case GLTFAccessorComponentType::UNSIGNED_BYTE: {
@ -1996,7 +1996,7 @@ bool GLTFSerializer::addArrayFromAccessor(GLTFAccessor& accessor, QVector<T>& ou
if (success) { if (success) {
for (int i = 0; i < accessor.sparse.count; ++i) { for (int i = 0; i < accessor.sparse.count; ++i) {
if ((i * 3) + 2 < out_sparse_values_array.size()) { if ((i * 3) + 2 < out_sparse_values_array.size()) {
if ((out_sparse_indices_array[i] * 3) + 2 < outarray.length()) { if ((out_sparse_indices_array[i] * 3) + 2 < outarray.length()) {
for (int j = 0; j < 3; ++j) { for (int j = 0; j < 3; ++j) {
outarray[(out_sparse_indices_array[i] * 3) + j] = out_sparse_values_array[(i * 3) + j]; outarray[(out_sparse_indices_array[i] * 3) + j] = out_sparse_values_array[(i * 3) + j];
@ -2018,8 +2018,8 @@ bool GLTFSerializer::addArrayFromAccessor(GLTFAccessor& accessor, QVector<T>& ou
return success; return success;
} }
void GLTFSerializer::retriangulate(const QVector<int>& inIndices, const QVector<glm::vec3>& in_vertices, void GLTFSerializer::retriangulate(const QVector<int>& inIndices, const QVector<glm::vec3>& in_vertices,
const QVector<glm::vec3>& in_normals, QVector<int>& outIndices, const QVector<glm::vec3>& in_normals, QVector<int>& outIndices,
QVector<glm::vec3>& out_vertices, QVector<glm::vec3>& out_normals) { QVector<glm::vec3>& out_vertices, QVector<glm::vec3>& out_normals) {
for (int i = 0; i < inIndices.size(); i = i + 3) { for (int i = 0; i < inIndices.size(); i = i + 3) {

View file

@ -1,6 +1,6 @@
// //
// GLTFSerializer.h // GLTFSerializer.h
// libraries/fbx/src // libraries/model-serializers/src
// //
// Created by Luis Cuenca on 8/30/17. // Created by Luis Cuenca on 8/30/17.
// Copyright 2017 High Fidelity, Inc. // Copyright 2017 High Fidelity, Inc.
@ -343,7 +343,7 @@ struct GLTFCamera {
QString name; QString name;
GLTFCameraPerspective perspective; //required (or) GLTFCameraPerspective perspective; //required (or)
GLTFCameraOrthographic orthographic; //required (or) GLTFCameraOrthographic orthographic; //required (or)
int type; int type;
QMap<QString, bool> defined; QMap<QString, bool> defined;
void dump() { void dump() {
if (defined["name"]) { if (defined["name"]) {
@ -519,7 +519,7 @@ struct GLTFAccessor {
QMap<QString, bool> defined; QMap<QString, bool> defined;
void dump() { void dump() {
} }
}; };
int bufferView; int bufferView;
@ -778,26 +778,26 @@ private:
bool buildGeometry(HFMModel& hfmModel, const hifi::VariantHash& mapping, const hifi::URL& url); bool buildGeometry(HFMModel& hfmModel, const hifi::VariantHash& mapping, const hifi::URL& url);
bool parseGLTF(const hifi::ByteArray& data); bool parseGLTF(const hifi::ByteArray& data);
bool getStringVal(const QJsonObject& object, const QString& fieldname, bool getStringVal(const QJsonObject& object, const QString& fieldname,
QString& value, QMap<QString, bool>& defined); QString& value, QMap<QString, bool>& defined);
bool getBoolVal(const QJsonObject& object, const QString& fieldname, bool getBoolVal(const QJsonObject& object, const QString& fieldname,
bool& value, QMap<QString, bool>& defined); bool& value, QMap<QString, bool>& defined);
bool getIntVal(const QJsonObject& object, const QString& fieldname, bool getIntVal(const QJsonObject& object, const QString& fieldname,
int& value, QMap<QString, bool>& defined); int& value, QMap<QString, bool>& defined);
bool getDoubleVal(const QJsonObject& object, const QString& fieldname, bool getDoubleVal(const QJsonObject& object, const QString& fieldname,
double& value, QMap<QString, bool>& defined); double& value, QMap<QString, bool>& defined);
bool getObjectVal(const QJsonObject& object, const QString& fieldname, bool getObjectVal(const QJsonObject& object, const QString& fieldname,
QJsonObject& value, QMap<QString, bool>& defined); QJsonObject& value, QMap<QString, bool>& defined);
bool getIntArrayVal(const QJsonObject& object, const QString& fieldname, bool getIntArrayVal(const QJsonObject& object, const QString& fieldname,
QVector<int>& values, QMap<QString, bool>& defined); QVector<int>& values, QMap<QString, bool>& defined);
bool getDoubleArrayVal(const QJsonObject& object, const QString& fieldname, bool getDoubleArrayVal(const QJsonObject& object, const QString& fieldname,
QVector<double>& values, QMap<QString, bool>& defined); QVector<double>& values, QMap<QString, bool>& defined);
bool getObjectArrayVal(const QJsonObject& object, const QString& fieldname, bool getObjectArrayVal(const QJsonObject& object, const QString& fieldname,
QJsonArray& objects, QMap<QString, bool>& defined); QJsonArray& objects, QMap<QString, bool>& defined);
hifi::ByteArray setGLBChunks(const hifi::ByteArray& data); hifi::ByteArray setGLBChunks(const hifi::ByteArray& data);
graphics::MaterialKey::OpacityMapMode getMaterialAlphaMode(const QString& type); graphics::MaterialKey::OpacityMapMode getMaterialAlphaMode(const QString& type);
int getAccessorType(const QString& type); int getAccessorType(const QString& type);
int getAnimationSamplerInterpolation(const QString& interpolation); int getAnimationSamplerInterpolation(const QString& interpolation);
@ -805,7 +805,7 @@ private:
int getImageMimeType(const QString& mime); int getImageMimeType(const QString& mime);
int getMeshPrimitiveRenderingMode(const QString& type); int getMeshPrimitiveRenderingMode(const QString& type);
bool getIndexFromObject(const QJsonObject& object, const QString& field, bool getIndexFromObject(const QJsonObject& object, const QString& field,
int& outidx, QMap<QString, bool>& defined); int& outidx, QMap<QString, bool>& defined);
bool setAsset(const QJsonObject& object); bool setAsset(const QJsonObject& object);
@ -841,8 +841,8 @@ private:
template <typename T> template <typename T>
bool addArrayFromAccessor(GLTFAccessor& accessor, QVector<T>& outarray); bool addArrayFromAccessor(GLTFAccessor& accessor, QVector<T>& outarray);
void retriangulate(const QVector<int>& in_indices, const QVector<glm::vec3>& in_vertices, void retriangulate(const QVector<int>& in_indices, const QVector<glm::vec3>& in_vertices,
const QVector<glm::vec3>& in_normals, QVector<int>& out_indices, const QVector<glm::vec3>& in_normals, QVector<int>& out_indices,
QVector<glm::vec3>& out_vertices, QVector<glm::vec3>& out_normals); QVector<glm::vec3>& out_vertices, QVector<glm::vec3>& out_normals);
std::tuple<bool, hifi::ByteArray> requestData(hifi::URL& url); std::tuple<bool, hifi::ByteArray> requestData(hifi::URL& url);
@ -857,4 +857,4 @@ private:
void glTFDebugDump(); void glTFDebugDump();
}; };
#endif // hifi_GLTFSerializer_h #endif // hifi_GLTFSerializer_h

View file

@ -1,6 +1,6 @@
// //
// OBJSerializer.cpp // OBJSerializer.cpp
// libraries/fbx/src/ // libraries/model-serializers/src
// //
// Created by Seth Alves on 3/7/15. // Created by Seth Alves on 3/7/15.
// Copyright 2013 High Fidelity, Inc. // Copyright 2013 High Fidelity, Inc.
@ -15,7 +15,7 @@
#include "OBJSerializer.h" #include "OBJSerializer.h"
#include <ctype.h> // .obj files are not locale-specific. The C/ASCII charset applies. #include <ctype.h> // .obj files are not locale-specific. The C/ASCII charset applies.
#include <sstream> #include <sstream>
#include <QtCore/QBuffer> #include <QtCore/QBuffer>
#include <QtCore/QIODevice> #include <QtCore/QIODevice>
@ -263,16 +263,16 @@ void OBJSerializer::parseMaterialLibrary(QIODevice* device) {
default: default:
materials[matName] = currentMaterial; materials[matName] = currentMaterial;
#ifdef WANT_DEBUG #ifdef WANT_DEBUG
qCDebug(modelformat) << qCDebug(modelformat) <<
"OBJSerializer Last material illumination model:" << currentMaterial.illuminationModel << "OBJSerializer Last material illumination model:" << currentMaterial.illuminationModel <<
" shininess:" << currentMaterial.shininess << " shininess:" << currentMaterial.shininess <<
" opacity:" << currentMaterial.opacity << " opacity:" << currentMaterial.opacity <<
" diffuse color:" << currentMaterial.diffuseColor << " diffuse color:" << currentMaterial.diffuseColor <<
" specular color:" << currentMaterial.specularColor << " specular color:" << currentMaterial.specularColor <<
" emissive color:" << currentMaterial.emissiveColor << " emissive color:" << currentMaterial.emissiveColor <<
" diffuse texture:" << currentMaterial.diffuseTextureFilename << " diffuse texture:" << currentMaterial.diffuseTextureFilename <<
" specular texture:" << currentMaterial.specularTextureFilename << " specular texture:" << currentMaterial.specularTextureFilename <<
" emissive texture:" << currentMaterial.emissiveTextureFilename << " emissive texture:" << currentMaterial.emissiveTextureFilename <<
" bump texture:" << currentMaterial.bumpTextureFilename << " bump texture:" << currentMaterial.bumpTextureFilename <<
" opacity texture:" << currentMaterial.opacityTextureFilename; " opacity texture:" << currentMaterial.opacityTextureFilename;
#endif #endif
@ -352,7 +352,7 @@ void OBJSerializer::parseMaterialLibrary(QIODevice* device) {
} }
} }
} }
} }
void OBJSerializer::parseTextureLine(const hifi::ByteArray& textureLine, hifi::ByteArray& filename, OBJMaterialTextureOptions& textureOptions) { void OBJSerializer::parseTextureLine(const hifi::ByteArray& textureLine, hifi::ByteArray& filename, OBJMaterialTextureOptions& textureOptions) {
// Texture options reference http://paulbourke.net/dataformats/mtl/ // Texture options reference http://paulbourke.net/dataformats/mtl/
@ -803,7 +803,7 @@ HFMModel::Pointer OBJSerializer::read(const hifi::ByteArray& data, const hifi::V
n0 = checked_at(normals, face.normalIndices[0]); n0 = checked_at(normals, face.normalIndices[0]);
n1 = checked_at(normals, face.normalIndices[1]); n1 = checked_at(normals, face.normalIndices[1]);
n2 = checked_at(normals, face.normalIndices[2]); n2 = checked_at(normals, face.normalIndices[2]);
} else { } else {
// generate normals from triangle plane if not provided // generate normals from triangle plane if not provided
n0 = n1 = n2 = glm::cross(v1 - v0, v2 - v0); n0 = n1 = n2 = glm::cross(v1 - v0, v2 - v0);
} }
@ -932,7 +932,7 @@ HFMModel::Pointer OBJSerializer::read(const hifi::ByteArray& data, const hifi::V
bool applyNonMetallic = false; bool applyNonMetallic = false;
bool fresnelOn = false; bool fresnelOn = false;
// Illumination model reference http://paulbourke.net/dataformats/mtl/ // Illumination model reference http://paulbourke.net/dataformats/mtl/
switch (objMaterial.illuminationModel) { switch (objMaterial.illuminationModel) {
case 0: // Color on and Ambient off case 0: // Color on and Ambient off
// We don't support ambient = do nothing? // We don't support ambient = do nothing?
@ -976,7 +976,7 @@ HFMModel::Pointer OBJSerializer::read(const hifi::ByteArray& data, const hifi::V
case 10: // Casts shadows onto invisible surfaces case 10: // Casts shadows onto invisible surfaces
// Do nothing? // Do nothing?
break; break;
} }
if (applyTransparency) { if (applyTransparency) {
hfmMaterial.opacity = std::max(hfmMaterial.opacity, ILLUMINATION_MODEL_MIN_OPACITY); hfmMaterial.opacity = std::max(hfmMaterial.opacity, ILLUMINATION_MODEL_MIN_OPACITY);

View file

@ -1,6 +1,6 @@
// //
// OBJSerializer.h // OBJSerializer.h
// libraries/fbx/src/ // libraries/model-serializers/src
// //
// Created by Seth Alves on 3/6/15. // Created by Seth Alves on 3/6/15.
// Copyright 2015 High Fidelity, Inc. // Copyright 2015 High Fidelity, Inc.
@ -93,7 +93,7 @@ class OBJSerializer: public QObject, public HFMSerializer { // QObject so we can
public: public:
MediaType getMediaType() const override; MediaType getMediaType() const override;
std::unique_ptr<hfm::Serializer::Factory> getFactory() const override; std::unique_ptr<hfm::Serializer::Factory> getFactory() const override;
typedef QVector<OBJFace> FaceGroup; typedef QVector<OBJFace> FaceGroup;
QVector<glm::vec3> vertices; QVector<glm::vec3> vertices;
QVector<glm::vec3> vertexColors; QVector<glm::vec3> vertexColors;
@ -102,7 +102,7 @@ public:
QVector<FaceGroup> faceGroups; QVector<FaceGroup> faceGroups;
QString currentMaterialName; QString currentMaterialName;
QHash<QString, OBJMaterial> materials; QHash<QString, OBJMaterial> materials;
HFMModel::Pointer read(const hifi::ByteArray& data, const hifi::VariantHash& mapping, const hifi::URL& url = hifi::URL()) override; HFMModel::Pointer read(const hifi::ByteArray& data, const hifi::VariantHash& mapping, const hifi::URL& url = hifi::URL()) override;
private: private:

View file

@ -1,6 +1,6 @@
// //
// OBJWriter.cpp // OBJWriter.cpp
// libraries/fbx/src/ // libraries/model-serializers/src
// //
// Created by Seth Alves on 2017-1-27. // Created by Seth Alves on 2017-1-27.
// Copyright 2017 High Fidelity, Inc. // Copyright 2017 High Fidelity, Inc.

View file

@ -1,6 +1,6 @@
// //
// OBJWriter.h // OBJWriter.h
// libraries/fbx/src/ // libraries/model-serializers/src
// //
// Created by Seth Alves on 2017-1-27. // Created by Seth Alves on 2017-1-27.
// Copyright 2017 High Fidelity, Inc. // Copyright 2017 High Fidelity, Inc.

View file

@ -12,7 +12,7 @@ include_hifi_library_headers(image)
include_hifi_library_headers(ktx) include_hifi_library_headers(ktx)
include_hifi_library_headers(gpu) include_hifi_library_headers(gpu)
include_hifi_library_headers(hfm) include_hifi_library_headers(hfm)
include_hifi_library_headers(fbx) include_hifi_library_headers(model-serializers)
include_hifi_library_headers(graphics) include_hifi_library_headers(graphics)
target_bullet() target_bullet()

View file

@ -3,7 +3,7 @@ set(TARGET_NAME render-utils)
# pull in the resources.qrc file # pull in the resources.qrc file
qt5_add_resources(QT_RESOURCES_FILE "${CMAKE_CURRENT_SOURCE_DIR}/res/fonts/fonts.qrc") qt5_add_resources(QT_RESOURCES_FILE "${CMAKE_CURRENT_SOURCE_DIR}/res/fonts/fonts.qrc")
setup_hifi_library(Gui Network Qml Quick Script) setup_hifi_library(Gui Network Qml Quick Script)
link_hifi_libraries(shared task ktx gpu shaders graphics graphics-scripting material-networking model-networking render animation fbx image procedural) link_hifi_libraries(shared task ktx gpu shaders graphics graphics-scripting material-networking model-networking render animation model-serializers image procedural)
include_hifi_library_headers(audio) include_hifi_library_headers(audio)
include_hifi_library_headers(networking) include_hifi_library_headers(networking)
include_hifi_library_headers(octree) include_hifi_library_headers(octree)

View file

@ -7,7 +7,7 @@ if (NOT ANDROID)
target_quazip() target_quazip()
endif () endif ()
link_hifi_libraries(shared networking shaders material-networking model-networking recording avatars fbx entities controllers animation audio midi) link_hifi_libraries(shared networking shaders material-networking model-networking recording avatars model-serializers entities controllers animation audio midi)
include_hifi_library_headers(gl) include_hifi_library_headers(gl)
include_hifi_library_headers(hfm) include_hifi_library_headers(hfm)
include_hifi_library_headers(gpu) include_hifi_library_headers(gpu)

View file

@ -10,9 +10,9 @@
if ((WIN32 OR UNIX AND NOT APPLE) AND NOT USE_GLES) if ((WIN32 OR UNIX AND NOT APPLE) AND NOT USE_GLES)
set(TARGET_NAME openvr) set(TARGET_NAME openvr)
setup_hifi_plugin(Gui Qml Multimedia) setup_hifi_plugin(Gui Qml Multimedia)
link_hifi_libraries(shared task gl qml networking controllers ui link_hifi_libraries(shared task gl qml networking controllers ui
plugins display-plugins ui-plugins input-plugins script-engine plugins display-plugins ui-plugins input-plugins script-engine
audio-client render-utils graphics shaders gpu render material-networking model-networking model-baker hfm fbx ktx image procedural ${PLATFORM_GL_BACKEND}) audio-client render-utils graphics shaders gpu render material-networking model-networking model-baker hfm model-serializers ktx image procedural ${PLATFORM_GL_BACKEND})
include_hifi_library_headers(octree) include_hifi_library_headers(octree)
target_openvr() target_openvr()

View file

@ -44,7 +44,7 @@ exports.handlers = {
'../../libraries/controllers/src/controllers/impl/', '../../libraries/controllers/src/controllers/impl/',
'../../libraries/display-plugins/src/display-plugins/', '../../libraries/display-plugins/src/display-plugins/',
'../../libraries/entities/src', '../../libraries/entities/src',
'../../libraries/fbx/src', '../../libraries/model-serializers/src',
'../../libraries/graphics/src/graphics/', '../../libraries/graphics/src/graphics/',
'../../libraries/graphics-scripting/src/graphics-scripting/', '../../libraries/graphics-scripting/src/graphics-scripting/',
'../../libraries/image/src/image', '../../libraries/image/src/image',

View file

@ -2,7 +2,7 @@ set(TARGET_NAME oven)
setup_hifi_project(Widgets Gui Concurrent) setup_hifi_project(Widgets Gui Concurrent)
link_hifi_libraries(shared shaders image gpu ktx fbx hfm baking graphics networking procedural material-networking model-baker task) link_hifi_libraries(shared shaders image gpu ktx model-serializers hfm baking graphics networking procedural material-networking model-baker task)
setup_memory_debugger() setup_memory_debugger()
setup_thread_debugger() setup_thread_debugger()

View file

@ -2,6 +2,6 @@ set(TARGET_NAME skeleton-dump)
setup_hifi_project(Core) setup_hifi_project(Core)
setup_memory_debugger() setup_memory_debugger()
setup_thread_debugger() setup_thread_debugger()
link_hifi_libraries(shared fbx hfm graphics gpu gl animation) link_hifi_libraries(shared model-serializers hfm graphics gpu gl animation)
include_hifi_library_headers(image) include_hifi_library_headers(image)

View file

@ -1,6 +1,6 @@
set(TARGET_NAME vhacd-util) set(TARGET_NAME vhacd-util)
setup_hifi_project(Core) setup_hifi_project(Core)
link_hifi_libraries(shared fbx hfm graphics gpu gl) link_hifi_libraries(shared model-serializers hfm graphics gpu gl)
include_hifi_library_headers(image) include_hifi_library_headers(image)