src/ldDocument.h

Thu, 09 Feb 2017 00:43:30 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 09 Feb 2017 00:43:30 +0200
changeset 1098
0b837bed121d
parent 1090
ed73c4f48ca4
child 1101
6ac6a8838f29
permissions
-rw-r--r--

LDGLData merged into GLRenderer since it only deals with one document now. GLRenderer generalised from rendering documents to models.

/*
 *  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/>.
 */

#pragma once
#include <QObject>
#include "main.h"
#include "ldObject.h"
#include "editHistory.h"
#include "glShared.h"
#include "model.h"

struct LDGLData;
class DocumentManager;

//
// This class stores a document either as a editable file for the user or for
// subfile caching.
//
// A document is implicit when they are opened automatically for caching purposes
// and are hidden from the user. User-opened files are explicit (not implicit).
//
// The default name is a placeholder, initially suggested name for a file. The
// primitive generator uses this to give initial names to primitives.
//
class LDDocument : public QObject, public Model, public HierarchyElement
{
	Q_OBJECT

public:
	enum Flag
	{
		IsFrozen = (1 << 0), // Document may not be modified
		VerticesOutdated = (1 << 1),
		NeedsVertexMerge = (1 << 2),
		IsBeingDestroyed = (1 << 3),
		NeedsRecache = (1 << 4), // The next polygon inline of this document rebuilds stored polygon data.
	};

	Q_DECLARE_FLAGS(Flags, Flag)

	LDDocument (DocumentManager* parent);
	~LDDocument();

	void addHistoryStep();
	void addObjects (const LDObjectList& objs);
	void addToHistory (AbstractHistoryEntry* entry);
	void addToSelection (LDObject* obj);
	void clearHistory();
	void clearSelection();
	void close();
	QString defaultName() const;
	void forgetObject (LDObject* obj);
	QString fullPath();
	QString getDisplayName();
	const QSet<LDObject*>& getSelection() const;
	bool hasUnsavedChanges() const;
	EditHistory* history() const;
	void initializeCachedData();
	void inlineContents(Model& model, bool deep, bool renderinline);
	QList<LDPolygon> inlinePolygons();
	const QSet<Vertex>& inlineVertices();
	void insertObject (int pos, LDObject* obj);
	bool isFrozen() const;
	bool isSafeToClose();
	QString name() const;
	void needVertexMerge();
	void objectRemoved(LDObject* object, int index);
	const QList<LDPolygon>& polygonData() const;
	void recountTriangles();
	void redo();
	void redoVertices();
	void reloadAllSubfiles();
	void removeFromSelection (LDObject* obj);
	bool save (QString path = "", int64* sizeptr = nullptr);
	long savePosition() const;
	void setDefaultName (QString value);
	void setFrozen(bool value);
	void setFullPath (QString value);
	void setName (QString value);
	void setSavePosition (long value);
	void setTabIndex (int value);
	bool swapObjects (LDObject* one, LDObject* other);
	int tabIndex() const;
	void undo();
	void vertexChanged (const Vertex& a, const Vertex& b);

	static QString shortenName (QString a); // Turns a full path into a relative path

public slots:
	void objectChanged(int position, QString before, QString after);

protected:
	LDObject* withdrawAt(int position);

private:
	QString m_name;
	QString m_fullPath;
	QString m_defaultName;
	EditHistory* m_history;
	Flags m_flags;
	long m_savePosition;
	int m_tabIndex;
	int m_triangleCount;
	QList<LDPolygon> m_polygonData;
	QMap<LDObject*, QSet<Vertex>> m_objectVertices;
	QSet<Vertex> m_vertices;
	QSet<LDObject*> m_selection;
	DocumentManager* m_manager;

	DEFINE_FLAG_ACCESS_METHODS(m_flags)
	void addKnownVertices (LDObject* obj);
	void mergeVertices();
};

Q_DECLARE_OPERATORS_FOR_FLAGS(LDDocument::Flags)

// Parses a string line containing an LDraw object and returns the object parsed.
LDObject* ParseLine (QString line);

mercurial