404 lines
12 KiB
C++
404 lines
12 KiB
C++
|
#include <assert.h>
|
||
|
#include <QTextStream>
|
||
|
#include <QFile>
|
||
|
#include <cmath>
|
||
|
#include "model.h"
|
||
|
#include "version.h"
|
||
|
|
||
|
float Model::m_defaultMetalness = 0.0;
|
||
|
float Model::m_defaultRoughness = 1.0;
|
||
|
|
||
|
Model::Model(const Model &mesh) :
|
||
|
m_triangleVertices(nullptr),
|
||
|
m_triangleVertexCount(0),
|
||
|
m_edgeVertices(nullptr),
|
||
|
m_edgeVertexCount(0),
|
||
|
m_textureImage(nullptr)
|
||
|
{
|
||
|
if (nullptr != mesh.m_triangleVertices &&
|
||
|
mesh.m_triangleVertexCount > 0) {
|
||
|
this->m_triangleVertices = new ModelShaderVertex[mesh.m_triangleVertexCount];
|
||
|
this->m_triangleVertexCount = mesh.m_triangleVertexCount;
|
||
|
for (int i = 0; i < mesh.m_triangleVertexCount; i++)
|
||
|
this->m_triangleVertices[i] = mesh.m_triangleVertices[i];
|
||
|
}
|
||
|
if (nullptr != mesh.m_edgeVertices &&
|
||
|
mesh.m_edgeVertexCount > 0) {
|
||
|
this->m_edgeVertices = new ModelShaderVertex[mesh.m_edgeVertexCount];
|
||
|
this->m_edgeVertexCount = mesh.m_edgeVertexCount;
|
||
|
for (int i = 0; i < mesh.m_edgeVertexCount; i++)
|
||
|
this->m_edgeVertices[i] = mesh.m_edgeVertices[i];
|
||
|
}
|
||
|
if (nullptr != mesh.m_toolVertices &&
|
||
|
mesh.m_toolVertexCount > 0) {
|
||
|
this->m_toolVertices = new ModelShaderVertex[mesh.m_toolVertexCount];
|
||
|
this->m_toolVertexCount = mesh.m_toolVertexCount;
|
||
|
for (int i = 0; i < mesh.m_toolVertexCount; i++)
|
||
|
this->m_toolVertices[i] = mesh.m_toolVertices[i];
|
||
|
}
|
||
|
if (nullptr != mesh.m_textureImage) {
|
||
|
this->m_textureImage = new QImage(*mesh.m_textureImage);
|
||
|
}
|
||
|
if (nullptr != mesh.m_normalMapImage) {
|
||
|
this->m_normalMapImage = new QImage(*mesh.m_normalMapImage);
|
||
|
}
|
||
|
if (nullptr != mesh.m_metalnessRoughnessAmbientOcclusionImage) {
|
||
|
this->m_metalnessRoughnessAmbientOcclusionImage = new QImage(*mesh.m_metalnessRoughnessAmbientOcclusionImage);
|
||
|
this->m_hasMetalnessInImage = mesh.m_hasMetalnessInImage;
|
||
|
this->m_hasRoughnessInImage = mesh.m_hasRoughnessInImage;
|
||
|
this->m_hasAmbientOcclusionInImage = mesh.m_hasAmbientOcclusionInImage;
|
||
|
}
|
||
|
this->m_vertices = mesh.m_vertices;
|
||
|
this->m_faces = mesh.m_faces;
|
||
|
this->m_triangulatedVertices = mesh.m_triangulatedVertices;
|
||
|
this->m_meshId = mesh.meshId();
|
||
|
}
|
||
|
|
||
|
void Model::removeColor()
|
||
|
{
|
||
|
delete this->m_textureImage;
|
||
|
this->m_textureImage = nullptr;
|
||
|
|
||
|
delete this->m_normalMapImage;
|
||
|
this->m_normalMapImage = nullptr;
|
||
|
|
||
|
delete this->m_metalnessRoughnessAmbientOcclusionImage;
|
||
|
this->m_metalnessRoughnessAmbientOcclusionImage = nullptr;
|
||
|
|
||
|
this->m_hasMetalnessInImage = false;
|
||
|
this->m_hasRoughnessInImage = false;
|
||
|
this->m_hasAmbientOcclusionInImage = false;
|
||
|
|
||
|
for (int i = 0; i < this->m_triangleVertexCount; ++i) {
|
||
|
auto &vertex = this->m_triangleVertices[i];
|
||
|
vertex.colorR = 1.0;
|
||
|
vertex.colorG = 1.0;
|
||
|
vertex.colorB = 1.0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Model::Model(ModelShaderVertex *triangleVertices, int vertexNum, ModelShaderVertex *edgeVertices, int edgeVertexCount) :
|
||
|
m_triangleVertices(triangleVertices),
|
||
|
m_triangleVertexCount(vertexNum),
|
||
|
m_edgeVertices(edgeVertices),
|
||
|
m_edgeVertexCount(edgeVertexCount),
|
||
|
m_textureImage(nullptr)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Model::Model(const std::vector<dust3d::Vector3> &vertices, const std::vector<std::vector<size_t>> &triangles,
|
||
|
const std::vector<std::vector<dust3d::Vector3>> &triangleVertexNormals,
|
||
|
const dust3d::Color &color,
|
||
|
float metalness,
|
||
|
float roughness)
|
||
|
{
|
||
|
m_triangleVertexCount = (int)triangles.size() * 3;
|
||
|
m_triangleVertices = new ModelShaderVertex[m_triangleVertexCount];
|
||
|
int destIndex = 0;
|
||
|
for (size_t i = 0; i < triangles.size(); ++i) {
|
||
|
for (auto j = 0; j < 3; j++) {
|
||
|
int vertexIndex = (int)triangles[i][j];
|
||
|
const dust3d::Vector3 *srcVert = &vertices[vertexIndex];
|
||
|
const dust3d::Vector3 *srcNormal = &(triangleVertexNormals)[i][j];
|
||
|
ModelShaderVertex *dest = &m_triangleVertices[destIndex];
|
||
|
dest->colorR = color.r();
|
||
|
dest->colorG = color.g();
|
||
|
dest->colorB = color.b();
|
||
|
dest->alpha = color.alpha();
|
||
|
dest->posX = srcVert->x();
|
||
|
dest->posY = srcVert->y();
|
||
|
dest->posZ = srcVert->z();
|
||
|
dest->texU = 0;
|
||
|
dest->texV = 0;
|
||
|
dest->normX = srcNormal->x();
|
||
|
dest->normY = srcNormal->y();
|
||
|
dest->normZ = srcNormal->z();
|
||
|
dest->metalness = metalness;
|
||
|
dest->roughness = roughness;
|
||
|
dest->tangentX = 0;
|
||
|
dest->tangentY = 0;
|
||
|
dest->tangentZ = 0;
|
||
|
destIndex++;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Model::Model(dust3d::Object &object) :
|
||
|
m_triangleVertices(nullptr),
|
||
|
m_triangleVertexCount(0),
|
||
|
m_edgeVertices(nullptr),
|
||
|
m_edgeVertexCount(0),
|
||
|
m_textureImage(nullptr)
|
||
|
{
|
||
|
m_meshId = object.meshId;
|
||
|
m_vertices = object.vertices;
|
||
|
m_faces = object.triangleAndQuads;
|
||
|
|
||
|
m_triangleVertexCount = (int)object.triangles.size() * 3;
|
||
|
m_triangleVertices = new ModelShaderVertex[m_triangleVertexCount];
|
||
|
int destIndex = 0;
|
||
|
const auto triangleVertexNormals = object.triangleVertexNormals();
|
||
|
const auto triangleVertexUvs = object.triangleVertexUvs();
|
||
|
const auto triangleTangents = object.triangleTangents();
|
||
|
const dust3d::Vector3 defaultNormal = dust3d::Vector3(0, 0, 0);
|
||
|
const dust3d::Vector2 defaultUv = dust3d::Vector2(0, 0);
|
||
|
const dust3d::Vector3 defaultTangent = dust3d::Vector3(0, 0, 0);
|
||
|
for (size_t i = 0; i < object.triangles.size(); ++i) {
|
||
|
const auto &triangleColor = &object.triangleColors[i];
|
||
|
for (auto j = 0; j < 3; j++) {
|
||
|
int vertexIndex = (int)object.triangles[i][j];
|
||
|
const dust3d::Vector3 *srcVert = &object.vertices[vertexIndex];
|
||
|
const dust3d::Vector3 *srcNormal = &defaultNormal;
|
||
|
if (triangleVertexNormals)
|
||
|
srcNormal = &(*triangleVertexNormals)[i][j];
|
||
|
const dust3d::Vector2 *srcUv = &defaultUv;
|
||
|
if (triangleVertexUvs)
|
||
|
srcUv = &(*triangleVertexUvs)[i][j];
|
||
|
const dust3d::Vector3 *srcTangent = &defaultTangent;
|
||
|
if (triangleTangents)
|
||
|
srcTangent = &(*triangleTangents)[i];
|
||
|
ModelShaderVertex *dest = &m_triangleVertices[destIndex];
|
||
|
dest->colorR = triangleColor->r();
|
||
|
dest->colorG = triangleColor->g();
|
||
|
dest->colorB = triangleColor->b();
|
||
|
dest->alpha = triangleColor->alpha();
|
||
|
dest->posX = srcVert->x();
|
||
|
dest->posY = srcVert->y();
|
||
|
dest->posZ = srcVert->z();
|
||
|
dest->texU = srcUv->x();
|
||
|
dest->texV = srcUv->y();
|
||
|
dest->normX = srcNormal->x();
|
||
|
dest->normY = srcNormal->y();
|
||
|
dest->normZ = srcNormal->z();
|
||
|
dest->metalness = m_defaultMetalness;
|
||
|
dest->roughness = m_defaultRoughness;
|
||
|
dest->tangentX = srcTangent->x();
|
||
|
dest->tangentY = srcTangent->y();
|
||
|
dest->tangentZ = srcTangent->z();
|
||
|
destIndex++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
size_t edgeCount = 0;
|
||
|
for (const auto &face: object.triangleAndQuads) {
|
||
|
edgeCount += face.size();
|
||
|
}
|
||
|
m_edgeVertexCount = (int)edgeCount * 2;
|
||
|
m_edgeVertices = new ModelShaderVertex[m_edgeVertexCount];
|
||
|
size_t edgeVertexIndex = 0;
|
||
|
for (size_t faceIndex = 0; faceIndex < object.triangleAndQuads.size(); ++faceIndex) {
|
||
|
const auto &face = object.triangleAndQuads[faceIndex];
|
||
|
for (size_t i = 0; i < face.size(); ++i) {
|
||
|
for (size_t x = 0; x < 2; ++x) {
|
||
|
size_t sourceIndex = face[(i + x) % face.size()];
|
||
|
const dust3d::Vector3 *srcVert = &object.vertices[sourceIndex];
|
||
|
ModelShaderVertex *dest = &m_edgeVertices[edgeVertexIndex];
|
||
|
memset(dest, 0, sizeof(ModelShaderVertex));
|
||
|
dest->colorR = 0.0;
|
||
|
dest->colorG = 0.0;
|
||
|
dest->colorB = 0.0;
|
||
|
dest->alpha = 1.0;
|
||
|
dest->posX = srcVert->x();
|
||
|
dest->posY = srcVert->y();
|
||
|
dest->posZ = srcVert->z();
|
||
|
dest->metalness = m_defaultMetalness;
|
||
|
dest->roughness = m_defaultRoughness;
|
||
|
edgeVertexIndex++;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Model::Model() :
|
||
|
m_triangleVertices(nullptr),
|
||
|
m_triangleVertexCount(0),
|
||
|
m_edgeVertices(nullptr),
|
||
|
m_edgeVertexCount(0),
|
||
|
m_textureImage(nullptr)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Model::~Model()
|
||
|
{
|
||
|
delete[] m_triangleVertices;
|
||
|
m_triangleVertexCount = 0;
|
||
|
delete[] m_edgeVertices;
|
||
|
m_edgeVertexCount = 0;
|
||
|
delete[] m_toolVertices;
|
||
|
m_toolVertexCount = 0;
|
||
|
delete m_textureImage;
|
||
|
delete m_normalMapImage;
|
||
|
delete m_metalnessRoughnessAmbientOcclusionImage;
|
||
|
}
|
||
|
|
||
|
const std::vector<dust3d::Vector3> &Model::vertices()
|
||
|
{
|
||
|
return m_vertices;
|
||
|
}
|
||
|
|
||
|
const std::vector<std::vector<size_t>> &Model::faces()
|
||
|
{
|
||
|
return m_faces;
|
||
|
}
|
||
|
|
||
|
const std::vector<dust3d::Vector3> &Model::triangulatedVertices()
|
||
|
{
|
||
|
return m_triangulatedVertices;
|
||
|
}
|
||
|
|
||
|
ModelShaderVertex *Model::triangleVertices()
|
||
|
{
|
||
|
return m_triangleVertices;
|
||
|
}
|
||
|
|
||
|
int Model::triangleVertexCount()
|
||
|
{
|
||
|
return m_triangleVertexCount;
|
||
|
}
|
||
|
|
||
|
ModelShaderVertex *Model::edgeVertices()
|
||
|
{
|
||
|
return m_edgeVertices;
|
||
|
}
|
||
|
|
||
|
int Model::edgeVertexCount()
|
||
|
{
|
||
|
return m_edgeVertexCount;
|
||
|
}
|
||
|
|
||
|
ModelShaderVertex *Model::toolVertices()
|
||
|
{
|
||
|
return m_toolVertices;
|
||
|
}
|
||
|
|
||
|
int Model::toolVertexCount()
|
||
|
{
|
||
|
return m_toolVertexCount;
|
||
|
}
|
||
|
|
||
|
void Model::setTextureImage(QImage *textureImage)
|
||
|
{
|
||
|
m_textureImage = textureImage;
|
||
|
}
|
||
|
|
||
|
const QImage *Model::textureImage()
|
||
|
{
|
||
|
return m_textureImage;
|
||
|
}
|
||
|
|
||
|
void Model::setNormalMapImage(QImage *normalMapImage)
|
||
|
{
|
||
|
m_normalMapImage = normalMapImage;
|
||
|
}
|
||
|
|
||
|
const QImage *Model::normalMapImage()
|
||
|
{
|
||
|
return m_normalMapImage;
|
||
|
}
|
||
|
|
||
|
const QImage *Model::metalnessRoughnessAmbientOcclusionImage()
|
||
|
{
|
||
|
return m_metalnessRoughnessAmbientOcclusionImage;
|
||
|
}
|
||
|
|
||
|
void Model::setMetalnessRoughnessAmbientOcclusionImage(QImage *image)
|
||
|
{
|
||
|
m_metalnessRoughnessAmbientOcclusionImage = image;
|
||
|
}
|
||
|
|
||
|
bool Model::hasMetalnessInImage()
|
||
|
{
|
||
|
return m_hasMetalnessInImage;
|
||
|
}
|
||
|
|
||
|
void Model::setHasMetalnessInImage(bool hasInImage)
|
||
|
{
|
||
|
m_hasMetalnessInImage = hasInImage;
|
||
|
}
|
||
|
|
||
|
bool Model::hasRoughnessInImage()
|
||
|
{
|
||
|
return m_hasRoughnessInImage;
|
||
|
}
|
||
|
|
||
|
void Model::setHasRoughnessInImage(bool hasInImage)
|
||
|
{
|
||
|
m_hasRoughnessInImage = hasInImage;
|
||
|
}
|
||
|
|
||
|
bool Model::hasAmbientOcclusionInImage()
|
||
|
{
|
||
|
return m_hasAmbientOcclusionInImage;
|
||
|
}
|
||
|
|
||
|
void Model::setHasAmbientOcclusionInImage(bool hasInImage)
|
||
|
{
|
||
|
m_hasAmbientOcclusionInImage = hasInImage;
|
||
|
}
|
||
|
|
||
|
void Model::exportAsObj(QTextStream *textStream)
|
||
|
{
|
||
|
auto &stream = *textStream;
|
||
|
stream << "# " << APP_NAME << " " << APP_HUMAN_VER << endl;
|
||
|
stream << "# " << APP_HOMEPAGE_URL << endl;
|
||
|
for (std::vector<dust3d::Vector3>::const_iterator it = vertices().begin() ; it != vertices().end(); ++it) {
|
||
|
stream << "v " << QString::number((*it).x()) << " " << QString::number((*it).y()) << " " << QString::number((*it).z()) << endl;
|
||
|
}
|
||
|
for (std::vector<std::vector<size_t>>::const_iterator it = faces().begin() ; it != faces().end(); ++it) {
|
||
|
stream << "f";
|
||
|
for (std::vector<size_t>::const_iterator subIt = (*it).begin() ; subIt != (*it).end(); ++subIt) {
|
||
|
stream << " " << QString::number((1 + *subIt));
|
||
|
}
|
||
|
stream << endl;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void Model::exportAsObj(const QString &filename)
|
||
|
{
|
||
|
QFile file(filename);
|
||
|
if (file.open(QIODevice::WriteOnly)) {
|
||
|
QTextStream stream(&file);
|
||
|
exportAsObj(&stream);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void Model::updateTool(ModelShaderVertex *toolVertices, int vertexNum)
|
||
|
{
|
||
|
delete[] m_toolVertices;
|
||
|
m_toolVertices = nullptr;
|
||
|
m_toolVertexCount = 0;
|
||
|
|
||
|
m_toolVertices = toolVertices;
|
||
|
m_toolVertexCount = vertexNum;
|
||
|
}
|
||
|
|
||
|
void Model::updateEdges(ModelShaderVertex *edgeVertices, int edgeVertexCount)
|
||
|
{
|
||
|
delete[] m_edgeVertices;
|
||
|
m_edgeVertices = nullptr;
|
||
|
m_edgeVertexCount = 0;
|
||
|
|
||
|
m_edgeVertices = edgeVertices;
|
||
|
m_edgeVertexCount = edgeVertexCount;
|
||
|
}
|
||
|
|
||
|
void Model::updateTriangleVertices(ModelShaderVertex *triangleVertices, int triangleVertexCount)
|
||
|
{
|
||
|
delete[] m_triangleVertices;
|
||
|
m_triangleVertices = 0;
|
||
|
m_triangleVertexCount = 0;
|
||
|
|
||
|
m_triangleVertices = triangleVertices;
|
||
|
m_triangleVertexCount = triangleVertexCount;
|
||
|
}
|
||
|
|
||
|
quint64 Model::meshId() const
|
||
|
{
|
||
|
return m_meshId;
|
||
|
}
|
||
|
|
||
|
void Model::setMeshId(quint64 id)
|
||
|
{
|
||
|
m_meshId = id;
|
||
|
}
|