src/editmodes/drawMode.cpp

Sun, 29 Jan 2017 21:17:43 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 29 Jan 2017 21:17:43 +0200
changeset 1081
47cde4087cc5
parent 1079
67c6e5d32e68
child 1104
edddb9b0db9e
permissions
-rw-r--r--

Made all LDObject constructors protected. Emplacement is now the only way to create objects.

/*
 *  LDForge: LDraw parts authoring CAD
 *  Copyright (C) 2013 - 2017 Teemu Piippo
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <QPainter>
#include <QMouseEvent>
#include "drawMode.h"
#include "../ldObject.h"
#include "../glRenderer.h"

DrawMode::DrawMode (GLRenderer* renderer) :
	Super (renderer) {}

EditModeType DrawMode::type() const
{
	return EditModeType::Draw;
}

void DrawMode::render (QPainter& painter) const
{
	QVector<Vertex> poly;

	for (Vertex const& vert : m_drawedVerts)
		poly << vert;

	// Draw the cursor vertex as the last one in the list.
	if (countof(poly) < 4)
		poly << getCursorVertex();

	renderPolygon (painter, poly, true, true);
}

bool DrawMode::preAddVertex (Vertex const& pos)
{
	// If we picked an already-existing vertex, stop drawing
	for (Vertex& vert : m_drawedVerts)
	{
		if (vert == pos)
		{
			if (countof(m_drawedVerts) >= 2)
				endDraw();

			return true;
		}
	}

	return false;
}

void DrawMode::endDraw()
{
	// Clean the selection and create the object
	QList<Vertex>& verts = m_drawedVerts;
	Model model {m_documents};

	switch (countof(verts))
	{
	    case 2:
			// 2 verts - make a line
		    model.emplace<LDLine>(verts[0], verts[1]);
		    break;

		case 3:
		case 4:
		{
		    LDObject* obj = (countof(verts) == 3) ?
			            static_cast<LDObject*>(model.emplace<LDTriangle>()) :
			            static_cast<LDObject*>(model.emplace<LDQuad>());

			for (int i = 0; i < countof(verts); ++i)
				obj->setVertex (i, verts[i]);

			break;
		}
	}

	finishDraw (model);
}

mercurial