/*===========================================================================*\ * * * OpenMesh * * Copyright (c) 2001-2015, RWTH-Aachen University * * Department for Computer Graphics and Multimedia * * All rights reserved. * * www.openmesh.org * * * *---------------------------------------------------------------------------* * This file is part of OpenMesh. * *---------------------------------------------------------------------------* * * * Redistribution and use in source and binary forms, with or without * * modification, are permitted provided that the following conditions * * are met: * * * * 1. Redistributions of source code must retain the above copyright notice, * * this list of conditions and the following disclaimer. * * * * 2. Redistributions in binary form must reproduce the above copyright * * notice, this list of conditions and the following disclaimer in the * * documentation and/or other materials provided with the distribution. * * * * 3. Neither the name of the copyright holder nor the names of its * * contributors may be used to endorse or promote products derived from * * this software without specific prior written permission. * * * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A * * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER * * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * * /*===========================================================================*\ /*===========================================================================*\ * * * $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 //=============================================================================