src/polygoncache.cpp

Wed, 25 May 2022 17:56:30 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 25 May 2022 17:56:30 +0300
changeset 196
6bcb284679d4
parent 193
b4beff48bb7a
child 200
ca23936b455b
permissions
-rw-r--r--

delete unneeded things

#include "polygoncache.h"
#include "documentmanager.h"

static void getObjectPolygons(
	Model* model,
	const int index,
	std::vector<gl::Polygon>& polygons_out,
	ldraw::GetPolygonsContext* context);

/**
 * @brief Gets a list of GL polygons that are used to represent this model.
 * @details Will build polygons if polygons are outdated.
 * @param documents Documents to use to resolve subfile references
 * @return vector of GL polygons
 */
const std::vector<gl::Polygon> &getCachedPolygons(
	PolygonCache *cache,
	Model *model,
	DocumentManager *documents)
{
	if (cache->needRecache)
	{
		cache->cachedPolygons.clear();
		const std::optional<ModelId> modelId = documents->findIdForModel(model);
		if (modelId.has_value())
		{
			ldraw::GetPolygonsContext context{modelId.value(), documents};
			for (int i = 0; i < model->size(); i += 1)
			{
				getObjectPolygons(model, i, cache->cachedPolygons, &context);
			}
		}
		cache->needRecache = false;
	}
	return cache->cachedPolygons;
}

/**
 * @brief Gets the GL polygons of the object at the specified position in the model
 * @param index Index of object in the model
 * @param polygons_out Vector to add polygons into
 * @param context Context to use to resolve subfile references
 */
static void getObjectPolygons(
	Model* model,
	const int index,
	std::vector<gl::Polygon>& polygons_out,
	ldraw::GetPolygonsContext* context)
{
	const ldraw::Object* object = (*model)[unsigned_cast(index)];
	object->getPolygons(polygons_out, context);
}

mercurial