Fix Alembic using wrong visible/selected flags, fix warnings.

This commit is contained in:
2019-04-14 19:37:30 +02:00
parent 91d611b7cb
commit 8b0102b443
5 changed files with 18 additions and 31 deletions

View File

@@ -145,18 +145,20 @@ static bool object_type_is_exportable(Scene *scene, Object *ob)
* This ignores selection and layer visibility, * This ignores selection and layer visibility,
* and assumes that the dupli-object itself (e.g. the group-instantiating empty) is exported. * and assumes that the dupli-object itself (e.g. the group-instantiating empty) is exported.
*/ */
static bool export_object(const ExportSettings * const settings, const Base * const ob_base, static bool export_object(const ExportSettings * const settings, const Base * const base,
bool is_duplicated) bool is_duplicated)
{ {
if (!is_duplicated) { if (!is_duplicated) {
View3D *v3d = NULL;
/* These two tests only make sense when the object isn't being instanced /* These two tests only make sense when the object isn't being instanced
* into the scene. When it is, its exportability is determined by * into the scene. When it is, its exportability is determined by
* its dupli-object and the DupliObject::no_draw property. */ * its dupli-object and the DupliObject::no_draw property. */
if (settings->selected_only && !object_selected(ob_base)) { if (settings->selected_only && !BASE_SELECTED(v3d, base)) {
return false; return false;
} }
// FIXME Sybren: handle these cleanly (maybe just remove code), now using active scene layer instead. // FIXME Sybren: handle these cleanly (maybe just remove code), now using active scene layer instead.
if (settings->visible_layers_only && (ob_base->flag & BASE_VISIBLE) == 0) { if (settings->visible_layers_only && !BASE_VISIBLE(v3d, base)) {
return false; return false;
} }
} }
@@ -371,21 +373,21 @@ void AbcExporter::createTransformWritersHierarchy()
/* We do not export transforms for objects of these classes. */ /* We do not export transforms for objects of these classes. */
break; break;
default: default:
exploreTransform(base, ob->parent, NULL); exploreTransform(base, ob, ob->parent, NULL);
} }
} }
} }
} }
void AbcExporter::exploreTransform(Base *ob_base, Object *parent, Object *dupliObParent) void AbcExporter::exploreTransform(Base *base, Object *object, Object *parent, Object *dupliObParent)
{ {
/* If an object isn't exported itself, its duplilist shouldn't be /* If an object isn't exported itself, its duplilist shouldn't be
* exported either. */ * exported either. */
if (!export_object(&m_settings, ob_base, dupliObParent != NULL)) { if (!export_object(&m_settings, base, dupliObParent != NULL)) {
return; return;
} }
Object *ob = DEG_get_evaluated_object(m_settings.depsgraph, ob_base->object); Object *ob = DEG_get_evaluated_object(m_settings.depsgraph, object);
if (object_type_is_exportable(m_settings.scene, ob)) { if (object_type_is_exportable(m_settings.scene, ob)) {
createTransformWriter(ob, parent, dupliObParent); createTransformWriter(ob, parent, dupliObParent);
} }
@@ -393,9 +395,6 @@ void AbcExporter::exploreTransform(Base *ob_base, Object *parent, Object *dupliO
ListBase *lb = object_duplilist(m_settings.depsgraph, m_settings.scene, ob); ListBase *lb = object_duplilist(m_settings.depsgraph, m_settings.scene, ob);
if (lb) { if (lb) {
Base fake_base = *ob_base; // copy flags (like selection state) from the real object.
fake_base.next = fake_base.prev = NULL;
DupliObject *link = static_cast<DupliObject *>(lb->first); DupliObject *link = static_cast<DupliObject *>(lb->first);
Object *dupli_ob = NULL; Object *dupli_ob = NULL;
Object *dupli_parent = NULL; Object *dupli_parent = NULL;
@@ -410,8 +409,7 @@ void AbcExporter::exploreTransform(Base *ob_base, Object *parent, Object *dupliO
dupli_ob = link->ob; dupli_ob = link->ob;
dupli_parent = (dupli_ob->parent) ? dupli_ob->parent : ob; dupli_parent = (dupli_ob->parent) ? dupli_ob->parent : ob;
fake_base.object = dupli_ob; exploreTransform(base, dupli_ob, dupli_parent, ob);
exploreTransform(&fake_base, dupli_parent, ob);
} }
} }
@@ -491,27 +489,24 @@ AbcTransformWriter *AbcExporter::createTransformWriter(Object *ob, Object *paren
void AbcExporter::createShapeWriters() void AbcExporter::createShapeWriters()
{ {
for (Base *base = static_cast<Base *>(m_settings.view_layer->object_bases.first); base; base = base->next) { for (Base *base = static_cast<Base *>(m_settings.view_layer->object_bases.first); base; base = base->next) {
exploreObject(base, NULL); exploreObject(base, base->object, NULL);
} }
} }
void AbcExporter::exploreObject(Base *ob_base, Object *dupliObParent) void AbcExporter::exploreObject(Base *base, Object *object, Object *dupliObParent)
{ {
/* If an object isn't exported itself, its duplilist shouldn't be /* If an object isn't exported itself, its duplilist shouldn't be
* exported either. */ * exported either. */
if (!export_object(&m_settings, ob_base, dupliObParent != NULL)) { if (!export_object(&m_settings, base, dupliObParent != NULL)) {
return; return;
} }
Object *ob = DEG_get_evaluated_object(m_settings.depsgraph, ob_base->object); Object *ob = DEG_get_evaluated_object(m_settings.depsgraph, object);
createShapeWriter(ob, dupliObParent); createShapeWriter(ob, dupliObParent);
ListBase *lb = object_duplilist(m_settings.depsgraph, m_settings.scene, ob); ListBase *lb = object_duplilist(m_settings.depsgraph, m_settings.scene, ob);
if (lb) { if (lb) {
Base fake_base = *ob_base; // copy flags (like selection state) from the real object.
fake_base.next = fake_base.prev = NULL;
DupliObject *link = static_cast<DupliObject *>(lb->first); DupliObject *link = static_cast<DupliObject *>(lb->first);
for (; link; link = link->next) { for (; link; link = link->next) {
@@ -520,8 +515,7 @@ void AbcExporter::exploreObject(Base *ob_base, Object *dupliObParent)
continue; continue;
} }
if (link->type == OB_DUPLICOLLECTION) { if (link->type == OB_DUPLICOLLECTION) {
fake_base.object = link->ob; exploreObject(base, link->ob, ob);
exploreObject(&fake_base, ob);
} }
} }

View File

@@ -116,8 +116,8 @@ private:
void createTransformWritersHierarchy(); void createTransformWritersHierarchy();
AbcTransformWriter *createTransformWriter(Object *ob, Object *parent, Object *dupliObParent); AbcTransformWriter *createTransformWriter(Object *ob, Object *parent, Object *dupliObParent);
void exploreTransform(Base *ob_base, Object *parent, Object *dupliObParent); void exploreTransform(Base *base, Object *object, Object *parent, Object *dupliObParent);
void exploreObject(Base *ob_base, Object *dupliObParent); void exploreObject(Base *base, Object *object, Object *dupliObParent);
void createShapeWriters(); void createShapeWriters();
void createShapeWriter(Object *ob, Object *dupliObParent); void createShapeWriter(Object *ob, Object *dupliObParent);
void createParticleSystemsWriters(Object *ob, AbcTransformWriter *xform); void createParticleSystemsWriters(Object *ob, AbcTransformWriter *xform);

View File

@@ -52,7 +52,7 @@ protected:
void freeEvaluatedMesh(struct Mesh *mesh) override; void freeEvaluatedMesh(struct Mesh *mesh) override;
private: private:
bool isAnimated() const; bool isAnimated() const override;
}; };

View File

@@ -86,11 +86,6 @@ std::string get_object_dag_path_name(const Object * const ob, Object *dupli_pare
return name; return name;
} }
bool object_selected(const Base * const ob_base)
{
return ob_base->flag & SELECT;
}
Imath::M44d convert_matrix(float mat[4][4]) Imath::M44d convert_matrix(float mat[4][4])
{ {
Imath::M44d m; Imath::M44d m;

View File

@@ -52,8 +52,6 @@ std::string get_id_name(const ID * const id);
std::string get_id_name(const Object * const ob); std::string get_id_name(const Object * const ob);
std::string get_object_dag_path_name(const Object * const ob, Object *dupli_parent); std::string get_object_dag_path_name(const Object * const ob, Object *dupli_parent);
bool object_selected(const Base * const ob_base);
Imath::M44d convert_matrix(float mat[4][4]); Imath::M44d convert_matrix(float mat[4][4]);
typedef enum { typedef enum {