src/linetypes/subfilereference.cpp

Wed, 22 Sep 2021 14:03:43 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 22 Sep 2021 14:03:43 +0300
changeset 139
72098474d362
parent 134
f77d2230e87c
child 140
2f383e88acf4
permissions
-rw-r--r--

Document and refactor colors.cpp and colors.h

#include "subfilereference.h"
#include "documentmanager.h"
#include "invert.h"

ldraw::SubfileReference::SubfileReference
(
	const glm::mat4& transformation,
	const QString& referenceName,
	const Color color
) :
	ColoredObject{color},
	transformation{transformation},
	referenceName{referenceName}
{
}

QVariant ldraw::SubfileReference::getProperty(Property property) const
{
	switch (property)
	{
	case Property::Transformation:
		return QVariant::fromValue(this->transformation);
	case Property::ReferenceName:
		return this->referenceName;
	default:
		return ColoredObject::getProperty(property);
	}
}

void ldraw::SubfileReference::setProperty(SetPropertyResult* result, const PropertyKeyValue& pair)
{
	LDRAW_OBJECT_HANDLE_SET_PROPERTY(Transformation, {this->transformation = value;});
	LDRAW_OBJECT_HANDLE_SET_PROPERTY(ReferenceName, {this->referenceName = value;});
	ldraw::ColoredObject::setProperty(result, pair);
}

QString ldraw::SubfileReference::textRepresentation() const
{
	return referenceName + " " + utility::vertexToStringParens(this->position());
}

void ldraw::SubfileReference::getPolygons
(
	std::vector<gl::Polygon>& polygons,
	GetPolygonsContext* context
) const
{
	Model* model = this->resolve(context->documents);
	if (model != nullptr)
	{
		const bool needInverting = glm::determinant(this->transformation) < 0;
		const std::vector<gl::Polygon> modelPolygons = model->getPolygons(context->documents);
		polygons.reserve(polygons.size() + modelPolygons.size());
		for (gl::Polygon polygon : modelPolygons)
		{
			for (unsigned int i = 0; i < polygon.numPolygonVertices(); i += 1)
			{
				glm::vec4 vertex {polygon.vertices[i], 1};
				vertex = this->transformation * vertex;
				polygon.vertices[i] = vertex;
			}
			if (needInverting != this->isInverted)
			{
				gl::invert(polygon);
			}
			if (polygon.color == ldraw::MAIN_COLOR)
			{
				polygon.color = this->colorIndex;
			}
			polygon.id = this->id;
			polygons.push_back(polygon);
		}
	}
}

glm::vec3 ldraw::SubfileReference::position() const
{
	return this->transformation[3];
}

void ldraw::SubfileReference::invert()
{
	this->isInverted = not this->isInverted;
}

Model* ldraw::SubfileReference::resolve(DocumentManager* documents) const
{
	return documents->findModelByName(this->referenceName);
}

ldraw::Object::Type ldraw::SubfileReference::typeIdentifier() const
{
	return Type::SubfileReference;
}

QDataStream& ldraw::SubfileReference::serialize(QDataStream &stream) const
{
	return ColoredObject::serialize(stream) << this->transformation << this->referenceName << this->isInverted;
}

QDataStream& ldraw::SubfileReference::deserialize(QDataStream &stream)
{
	return ColoredObject::deserialize(stream) >> this->transformation >> this->referenceName >> this->isInverted;
}

mercurial