//============================================================================= // // OpenMesh // Copyright (C) 2003 by Computer Graphics Group, RWTH Aachen // www.openmesh.org // //----------------------------------------------------------------------------- // // License // // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation, version 2.1. // // This library 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 // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // //----------------------------------------------------------------------------- // // $Revision$ // $Date$ // //============================================================================= //============================================================================= // // CLASS OSGArrayKernelT // //============================================================================= #ifndef OPENMESH_KERNELOSG_ARRAY_KERNEL_HH #define OPENMEHS_KERNELOSG_ARRAY_KERNEL_HH //== INCLUDES ================================================================= #include // -------------------- #include #include #include // -------------------- #include //== NAMESPACES =============================================================== namespace OpenMesh { namespace Kernel_OSG { //== CLASS DEFINITION ========================================================= /** \ingroup mesh_kernels_group * * Mesh kernel using arrays for mesh item storage. * * This mesh kernel uses the OpenSG GeoProperties as container * to store the mesh items. * * \note You do not have to use this class directly, use the predefined * mesh-kernel combinations in \ref mesh_types_group. */ // \see OpenMesh::ArrayHandleT // \see \ref mesh_type template class ArrayKernelT : public OpenMesh::ArrayKernelT { public: typedef ArrayKernelT This; typedef OpenMesh::ArrayKernelT Base; // attributes // typedef typename Base::HasVertexNormals HasVertexNormals; // typedef typename Base::HasVertexColors HasVertexColors; // typedef typename Base::HasVertexTexCoords HasVertexTexCoords; // typedef typename Base::HasVertexStatus HasVertexStatus; typedef typename Base::HasPrevHalfedge HasPrevHalfedge; // typedef typename Base::HasEdgeStatus HasEdgeStatus; // typedef typename Base::HasFaceNormals HasFaceNormals; // typedef typename Base::HasFaceColors HasFaceColors; // typedef typename Base::HasFaceStatus HasFaceStatus; // item types typedef typename FinalMeshItems::Vertex Vertex; typedef typename FinalMeshItems::Halfedge Halfedge; typedef typename FinalMeshItems::Edge Edge; typedef typename FinalMeshItems::Face Face; typedef typename FinalMeshItems::Point Point; typedef typename FinalMeshItems::Normal Normal; typedef typename FinalMeshItems::Color Color; typedef typename FinalMeshItems::TexCoord TexCoord; typedef typename FinalMeshItems::Scalar Scalar; // // handles // typedef typename OpenMesh::VertexHandle VertexHandle; // typedef typename FinalMeshItems::HalfedgeHandle HalfedgeHandle; // typedef typename FinalMeshItems::EdgeHandle EdgeHandle; // typedef typename FinalMeshItems::FaceHandle FaceHandle; // iterators typedef std::vector VertexContainer; typedef std::vector EdgeContainer; typedef std::vector FaceContainer; typedef typename VertexContainer::iterator KernelVertexIter; typedef typename VertexContainer::const_iterator KernelConstVertexIter; typedef typename EdgeContainer::iterator KernelEdgeIter; typedef typename EdgeContainer::const_iterator KernelConstEdgeIter; typedef typename FaceContainer::iterator KernelFaceIter; typedef typename FaceContainer::const_iterator KernelConstFaceIter; public: ArrayKernelT() : Base() { } virtual ~ArrayKernelT() { } public: // replacements void set_halfedge_handle(VertexHandle _vh, HalfedgeHandle _heh) { Base::set_halfedge_handle( _vh, _heh ); } void set_halfedge_handle(FaceHandle _fh, HalfedgeHandle _heh) { Base::set_halfedge_handle( _fh, _heh ); osg_sync( _fh ); } void set_next_halfedge_handle(HalfedgeHandle _heh, HalfedgeHandle _nheh) { Base::set_next_halfedge_handle( _heh, _nheh ); osg_sync( face_handle( _heh ) ); // ##Changed } void garbage_collection(bool _v=true, bool _e=true, bool _f=true); protected: bool osg_sync( FaceHandle _fh ) { return _fh.is_valid() ? osg_sync( _fh, typename Face::IsTriangle() ) : false; } private: bool osg_sync( FaceHandle _fh, GenProg::Bool2Type ) { HalfedgeHandle hh( halfedge_handle(_fh) ); if ( !hh.is_valid() ) return false; FaceHandle f1( _fh.idx() * 3 ); set_face_indices( f1, to_vertex_handle(hh).idx() ); hh = next_halfedge_handle(hh); if ( !hh.is_valid() ) return false; FaceHandle f2( f1.idx()+1 ); set_face_indices( f2, to_vertex_handle(hh).idx() ); hh = next_halfedge_handle(hh); if ( !hh.is_valid() ) return false; FaceHandle f3( f1.idx()+2 ); set_face_indices( f3, to_vertex_handle(hh).idx() ); set_face_types ( _fh, GL_TRIANGLES ); set_face_lengths( _fh, 3 ); return true; } bool osg_sync( FaceHandle _fh, GenProg::Bool2Type ) { return false; } }; template void ArrayKernelT:: garbage_collection(bool _v, bool _e, bool _f) { Base::garbage_collection(_v, _e, _f); for (size_t fidx=0; fidx < n_faces(); ++fidx) osg_sync( FaceHandle(fidx) ); } //============================================================================= } // namespace Kernel_OSG } // namespace OpenMesh //============================================================================= #endif // OPENMESH_ARRAY_KERNEL_HH defined //=============================================================================