2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2010-10-06 13:21:08 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup collada
|
2011-02-21 08:38:53 +00:00
|
|
|
*/
|
|
|
|
|
|
2010-10-06 13:21:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
2010-10-06 13:55:50 +00:00
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
2010-10-06 13:21:08 +00:00
|
|
|
#include "COLLADASWLibraryMaterials.h"
|
|
|
|
|
#include "COLLADASWStreamWriter.h"
|
|
|
|
|
|
2012-08-12 17:13:07 +00:00
|
|
|
#include "BKE_material.h"
|
2020-05-08 18:16:39 +02:00
|
|
|
|
2012-08-12 17:13:07 +00:00
|
|
|
#include "DNA_material_types.h"
|
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
|
#include "DNA_scene_types.h"
|
2010-10-06 13:21:08 +00:00
|
|
|
|
2011-09-07 18:23:30 +00:00
|
|
|
#include "ExportSettings.h"
|
2020-03-19 09:33:03 +01:00
|
|
|
#include "GeometryExporter.h"
|
2018-11-23 18:38:07 +01:00
|
|
|
#include "Materials.h"
|
2020-03-19 09:33:03 +01:00
|
|
|
#include "collada_internal.h"
|
2010-10-06 13:21:08 +00:00
|
|
|
|
|
|
|
|
class MaterialsExporter : COLLADASW::LibraryMaterials {
|
|
|
|
|
public:
|
2019-05-23 12:17:17 +02:00
|
|
|
MaterialsExporter(COLLADASW::StreamWriter *sw, BCExportSettings &export_settings);
|
2011-09-07 18:23:30 +00:00
|
|
|
void exportMaterials(Scene *sce);
|
2010-10-06 13:21:08 +00:00
|
|
|
void operator()(Material *ma, Object *ob);
|
2011-07-28 00:08:03 +00:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool hasMaterials(Scene *sce);
|
2019-05-23 12:17:17 +02:00
|
|
|
BCExportSettings &export_settings;
|
2010-10-06 13:21:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// used in forEachMaterialInScene
|
|
|
|
|
template<class Functor> class ForEachMaterialFunctor {
|
|
|
|
|
std::vector<std::string>
|
|
|
|
|
mMat; /* contains list of material names, to avoid duplicate calling of f */
|
|
|
|
|
Functor *f;
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2010-10-06 13:21:08 +00:00
|
|
|
public:
|
|
|
|
|
ForEachMaterialFunctor(Functor *f) : f(f)
|
|
|
|
|
{
|
|
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2010-10-06 13:21:08 +00:00
|
|
|
void operator()(Object *ob)
|
|
|
|
|
{
|
|
|
|
|
int a;
|
2012-04-28 06:31:57 +00:00
|
|
|
for (a = 0; a < ob->totcol; a++) {
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-02-05 11:23:58 +01:00
|
|
|
Material *ma = BKE_object_material_get(ob, a + 1);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2019-05-31 22:51:19 +10:00
|
|
|
if (!ma) {
|
2010-10-06 13:21:08 +00:00
|
|
|
continue;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2010-10-06 13:21:08 +00:00
|
|
|
std::string translated_id = translate_id(id_name(ma));
|
|
|
|
|
if (find(mMat.begin(), mMat.end(), translated_id) == mMat.end()) {
|
|
|
|
|
(*this->f)(ma, ob);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2010-10-06 13:21:08 +00:00
|
|
|
mMat.push_back(translated_id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct MaterialFunctor {
|
|
|
|
|
/* calls f for each unique material linked to each object in sce
|
|
|
|
|
* f should have */
|
2013-03-08 04:00:06 +00:00
|
|
|
// void operator()(Material *ma)
|
2010-10-06 13:21:08 +00:00
|
|
|
template<class Functor>
|
2012-06-12 21:25:29 +00:00
|
|
|
void forEachMaterialInExportSet(Scene *sce, Functor &f, LinkNode *export_set)
|
2010-10-06 13:21:08 +00:00
|
|
|
{
|
|
|
|
|
ForEachMaterialFunctor<Functor> matfunc(&f);
|
|
|
|
|
GeometryFunctor gf;
|
2012-06-12 21:25:29 +00:00
|
|
|
gf.forEachMeshObjectInExportSet<ForEachMaterialFunctor<Functor>>(sce, matfunc, export_set);
|
2010-10-06 13:21:08 +00:00
|
|
|
}
|
|
|
|
|
};
|