/*===========================================================================*\ * * * OpenMesh * * Copyright (C) 2001-2011 by Computer Graphics Group, RWTH Aachen * * www.openmesh.org * * * *---------------------------------------------------------------------------* * This file is part of OpenMesh. * * * * OpenMesh 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, either version 3 of * * the License, or (at your option) any later version with the * * following exceptions: * * * * If other files instantiate templates or use macros * * or inline functions from this file, or you compile this file and * * link it with other files to produce an executable, this file does * * not by itself cause the resulting executable to be covered by the * * GNU Lesser General Public License. This exception does not however * * invalidate any other reasons why the executable file might be * * covered by the GNU Lesser General Public License. * * * * OpenMesh 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 LesserGeneral Public * * License along with OpenMesh. If not, * * see . * * * \*===========================================================================*/ /*===========================================================================*\ * * * $Revision$ * * $Date$ * * * \*===========================================================================*/ /** \file ModProgMeshT.cc */ //============================================================================= // // CLASS ModProgMeshT - IMPLEMENTATION // //============================================================================= #define OPENMESH_DECIMATER_MODPROGMESH_CC //== INCLUDES ================================================================= #include #include // -------------------- #include #include #include // -------------------- #include //== NAMESPACE =============================================================== namespace OpenMesh { namespace Decimater { //== IMPLEMENTATION ========================================================== template bool ModProgMeshT:: write( const std::string& _ofname ) { // sort vertices size_t i=0, N=Base::mesh().n_vertices(), n_base_vertices(0), n_base_faces(0); std::vector vhandles(N); // base vertices typename Mesh::VertexIter v_it=Base::mesh().vertices_begin(), v_end=Base::mesh().vertices_end(); for (; v_it != v_end; ++v_it) if (!Base::mesh().status(v_it).deleted()) { vhandles[i] = v_it.handle(); Base::mesh().property( idx_, v_it ) = i; ++i; } n_base_vertices = i; // deleted vertices typename InfoList::reverse_iterator r_it=pmi_.rbegin(), r_end=pmi_.rend(); for (; r_it!=r_end; ++r_it) { vhandles[i] = r_it->v0; Base::mesh().property( idx_, r_it->v0) = i; ++i; } // base faces typename Mesh::ConstFaceIter f_it = Base::mesh().faces_begin(), f_end = Base::mesh().faces_end(); for (; f_it != f_end; ++f_it) if (!Base::mesh().status(f_it).deleted()) ++n_base_faces; // ---------------------------------------- write progressive mesh std::ofstream out( _ofname.c_str(), std::ios::binary ); if (!out) return false; // always use little endian byte ordering bool swap = Endian::local() != Endian::LSB; // write header out << "ProgMesh"; IO::store( out, n_base_vertices, swap ); IO::store( out, n_base_faces , swap ); IO::store( out, pmi_.size() , swap ); Vec3f p; // write base vertices for (i=0; i( Base::mesh().point(vhandles[i]) ); IO::store( out, p, swap ); } // write base faces for (f_it=Base::mesh().faces_begin(); f_it != f_end; ++f_it) { if (!Base::mesh().status(f_it).deleted()) { typename Mesh::ConstFaceVertexIter fv_it(Base::mesh(), f_it.handle()); IO::store( out, Base::mesh().property( idx_, fv_it ) ); IO::store( out, Base::mesh().property( idx_, ++fv_it ) ); IO::store( out, Base::mesh().property( idx_, ++fv_it ) ); } } // write detail info for (r_it=pmi_.rbegin(); r_it!=r_end; ++r_it) { // store v0.pos, v1.idx, vl.idx, vr.idx IO::store( out, vector_cast(Base::mesh().point(r_it->v0))); IO::store( out, Base::mesh().property( idx_, r_it->v1 ) ); IO::store( out, r_it->vl.is_valid() ? Base::mesh().property(idx_, r_it->vl) : -1 ); IO::store( out, r_it->vr.is_valid() ? Base::mesh().property(idx_, r_it->vr) : -1 ); } return true; } //============================================================================= } // END_NS_DECIMATER } // END_NS_OPENMESH //=============================================================================