2015-04-28 11:54:17 +00:00
|
|
|
/* ========================================================================= *
|
2009-06-04 08:46:29 +00:00
|
|
|
* *
|
|
|
|
|
* OpenMesh *
|
2022-01-18 09:50:04 +01:00
|
|
|
* Copyright (c) 2001-2022, RWTH-Aachen University *
|
2015-04-28 13:07:46 +00:00
|
|
|
* Department of Computer Graphics and Multimedia *
|
2015-04-28 11:33:32 +00:00
|
|
|
* 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. *
|
2015-04-28 11:54:17 +00:00
|
|
|
* *
|
|
|
|
|
* ========================================================================= */
|
2009-06-04 08:46:29 +00:00
|
|
|
|
2019-01-15 11:21:12 +01:00
|
|
|
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
|
2018-12-14 11:14:13 +01:00
|
|
|
#pragma once
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
//== INCLUDES =================================================================
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <OpenMesh/Core/IO/MeshIO.hh>
|
|
|
|
|
#include <OpenMesh/Core/IO/Options.hh>
|
|
|
|
|
#include <OpenMesh/Core/Utils/GenProg.hh>
|
|
|
|
|
#include <OpenMesh/Core/Utils/color_cast.hh>
|
|
|
|
|
#include <OpenMesh/Core/Mesh/Attributes.hh>
|
|
|
|
|
#include <OpenMesh/Tools/Utils/StripifierT.hh>
|
|
|
|
|
#include <OpenMesh/Tools/Utils/Timer.hh>
|
|
|
|
|
#include <OpenMesh/Apps/QtViewer/QGLViewerWidget.hh>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== FORWARDS =================================================================
|
|
|
|
|
|
|
|
|
|
class QImage;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== CLASS DEFINITION =========================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename M>
|
|
|
|
|
class MeshViewerWidgetT : public QGLViewerWidget
|
|
|
|
|
{
|
2018-12-14 11:14:13 +01:00
|
|
|
|
2009-02-06 13:37:46 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
typedef M Mesh;
|
|
|
|
|
typedef OpenMesh::StripifierT<Mesh> MyStripifier;
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
/// default constructor
|
2019-05-28 14:04:58 +02:00
|
|
|
explicit MeshViewerWidgetT(QWidget* _parent=0)
|
2009-02-06 13:37:46 +00:00
|
|
|
: QGLViewerWidget(_parent),
|
|
|
|
|
f_strips_(false),
|
|
|
|
|
tex_id_(0),
|
|
|
|
|
tex_mode_(GL_MODULATE),
|
|
|
|
|
strips_(mesh_),
|
|
|
|
|
use_color_(true),
|
|
|
|
|
show_vnormals_(false),
|
2019-05-28 14:04:58 +02:00
|
|
|
show_fnormals_(false),
|
|
|
|
|
normal_scale_(1.0)
|
2009-02-06 13:37:46 +00:00
|
|
|
{
|
|
|
|
|
add_draw_mode("Points");
|
|
|
|
|
add_draw_mode("Hidden-Line");
|
|
|
|
|
#if defined(OM_USE_OSG) && OM_USE_OSG
|
|
|
|
|
add_draw_mode("OpenSG Indices");
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// destructor
|
|
|
|
|
~MeshViewerWidgetT() {}
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
/// open mesh
|
|
|
|
|
virtual bool open_mesh(const char* _filename, OpenMesh::IO::Options _opt);
|
|
|
|
|
|
|
|
|
|
/// load texture
|
|
|
|
|
virtual bool open_texture( const char *_filename );
|
|
|
|
|
bool set_texture( QImage& _texsrc );
|
|
|
|
|
|
|
|
|
|
void enable_strips();
|
|
|
|
|
void disable_strips();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Mesh& mesh() { return mesh_; }
|
|
|
|
|
const Mesh& mesh() const { return mesh_; }
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
/// inherited drawing method
|
2019-05-28 14:22:36 +02:00
|
|
|
virtual void draw_scene(const std::string& _draw_mode) override;
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
/// draw the mesh
|
|
|
|
|
virtual void draw_openmesh(const std::string& _drawmode);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void glVertex( const typename Mesh::VertexHandle _vh )
|
|
|
|
|
{ glVertex3fv( &mesh_.point( _vh )[0] ); }
|
|
|
|
|
|
|
|
|
|
void glVertex( const typename Mesh::Point& _p )
|
|
|
|
|
{ glVertex3fv( &_p[0] ); }
|
|
|
|
|
|
|
|
|
|
void glNormal( const typename Mesh::VertexHandle _vh )
|
|
|
|
|
{ glNormal3fv( &mesh_.normal( _vh )[0] ); }
|
|
|
|
|
|
|
|
|
|
void glTexCoord( const typename Mesh::VertexHandle _vh )
|
|
|
|
|
{ glTexCoord2fv( &mesh_.texcoord(_vh)[0] ); }
|
|
|
|
|
|
|
|
|
|
void glColor( const typename Mesh::VertexHandle _vh )
|
|
|
|
|
{ glColor3ubv( &mesh_.color(_vh)[0] ); }
|
|
|
|
|
|
|
|
|
|
// face properties
|
|
|
|
|
|
|
|
|
|
void glNormal( const typename Mesh::FaceHandle _fh )
|
|
|
|
|
{ glNormal3fv( &mesh_.normal( _fh )[0] ); }
|
|
|
|
|
|
|
|
|
|
void glColor( const typename Mesh::FaceHandle _fh )
|
|
|
|
|
{ glColor3ubv( &mesh_.color(_fh)[0] ); }
|
|
|
|
|
|
|
|
|
|
void glMaterial( const typename Mesh::FaceHandle _fh,
|
|
|
|
|
int _f=GL_FRONT_AND_BACK, int _m=GL_DIFFUSE )
|
|
|
|
|
{
|
|
|
|
|
OpenMesh::Vec3f c=OpenMesh::color_cast<OpenMesh::Vec3f>(mesh_.color(_fh));
|
|
|
|
|
OpenMesh::Vec4f m( c[0], c[1], c[2], 1.0f );
|
|
|
|
|
|
|
|
|
|
glMaterialfv(_f, _m, &m[0]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected: // Strip support
|
|
|
|
|
|
|
|
|
|
void compute_strips(void)
|
|
|
|
|
{
|
|
|
|
|
if (f_strips_)
|
|
|
|
|
{
|
|
|
|
|
strips_.clear();
|
|
|
|
|
strips_.stripify();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected: // inherited
|
|
|
|
|
|
2019-05-28 14:22:36 +02:00
|
|
|
virtual void keyPressEvent( QKeyEvent* _event) override;
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
bool f_strips_; // enable/disable strip usage
|
|
|
|
|
GLuint tex_id_;
|
|
|
|
|
GLint tex_mode_;
|
|
|
|
|
OpenMesh::IO::Options opt_; // mesh file contained texcoords?
|
|
|
|
|
|
|
|
|
|
Mesh mesh_;
|
|
|
|
|
MyStripifier strips_;
|
|
|
|
|
bool use_color_;
|
|
|
|
|
bool show_vnormals_;
|
|
|
|
|
bool show_fnormals_;
|
|
|
|
|
float normal_scale_;
|
|
|
|
|
OpenMesh::FPropHandleT< typename Mesh::Point > fp_normal_base_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
2020-04-22 14:44:27 +02:00
|
|
|
#if defined(OM_INCLUDE_TEMPLATES)
|
2009-02-06 13:37:46 +00:00
|
|
|
# define OPENMESH_MESHVIEWERWIDGET_TEMPLATES
|
2019-02-20 12:14:46 +01:00
|
|
|
# include "MeshViewerWidgetT_impl.hh"
|
2009-02-06 13:37:46 +00:00
|
|
|
#endif
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|