/* * ***** BEGIN GPL LICENSE BLOCK ***** * * 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 2 * 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, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Contributor(s): Esteban Tovagliari, Cedric Paille, Kevin Dietrich * * ***** END GPL LICENSE BLOCK ***** */ #ifndef __ABC_OBJECT_H__ #define __ABC_OBJECT_H__ #include #include #include "abc_exporter.h" extern "C" { #include "DNA_ID.h" } class AbcTransformWriter; struct Main; struct Object; /* ************************************************************************** */ class AbcObjectWriter { protected: Object *m_object; ExportSettings &m_settings; Scene *m_scene; uint32_t m_time_sampling; Imath::Box3d m_bounds; std::vector m_children; std::vector< std::pair > m_props; bool m_first_frame; std::string m_name; public: AbcObjectWriter(Scene *scene, Object *ob, uint32_t time_sampling, ExportSettings &settings, AbcObjectWriter *parent = NULL); virtual ~AbcObjectWriter(); void addChild(AbcObjectWriter *child); virtual Imath::Box3d bounds(); void write(); private: virtual void do_write() = 0; }; /* ************************************************************************** */ class CacheFile; struct ImportSettings { bool do_convert_mat; float conversion_mat[4][4]; int from_up; int from_forward; float scale; bool is_sequence; bool set_frame_range; /* Length and frame offset of file sequences. */ int sequence_len; int offset; /* From MeshSeqCacheModifierData.read_flag */ int read_flag; bool validate_meshes; CacheFile *cache_file; ImportSettings() : do_convert_mat(false) , from_up(0) , from_forward(0) , scale(1.0f) , is_sequence(false) , set_frame_range(false) , sequence_len(1) , offset(0) , read_flag(0) , validate_meshes(false) , cache_file(NULL) {} }; template static bool has_animations(Schema &schema, ImportSettings *settings) { if (settings->is_sequence) { return true; } if (!schema.isConstant()) { return true; } return false; } /* ************************************************************************** */ struct DerivedMesh; using Alembic::AbcCoreAbstract::chrono_t; class AbcObjectReader { protected: std::string m_name; std::string m_object_name; std::string m_data_name; Object *m_object; Alembic::Abc::IObject m_iobject; ImportSettings *m_settings; chrono_t m_min_time; chrono_t m_max_time; /* Use reference counting since the same reader may be used by multiple * modifiers and/or constraints. */ int m_refcount; public: explicit AbcObjectReader(const Alembic::Abc::IObject &object, ImportSettings &settings); virtual ~AbcObjectReader(); const Alembic::Abc::IObject &iobject() const; Object *object() const; void object(Object *ob); virtual bool valid() const = 0; virtual void readObjectData(Main *bmain, float time) = 0; virtual DerivedMesh *read_derivedmesh(DerivedMesh *dm, const float time, int read_flag) { (void)time; (void)read_flag; return dm; } void readObjectMatrix(const float time); void addCacheModifier(); chrono_t minTime() const; chrono_t maxTime() const; int refcount() const; void incref(); void decref(); void read_matrix(float mat[4][4], const float time, const float scale, bool &is_constant); }; Imath::M44d get_matrix(const Alembic::AbcGeom::IXformSchema &schema, const float time); #endif /* __ABC_OBJECT_H__ */