-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDecimaterPlugin.hh
253 lines (198 loc) · 9.61 KB
/
DecimaterPlugin.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/*===========================================================================*\
* *
* OpenFlipper *
* Copyright (C) 2001-2014 by Computer Graphics Group, RWTH Aachen *
* www.openflipper.org *
* *
*--------------------------------------------------------------------------- *
* This file is part of OpenFlipper. *
* *
* OpenFlipper 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. *
* *
* OpenFlipper 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 OpenFlipper. If not, *
* see <http://www.gnu.org/licenses/>. *
* *
\*===========================================================================*/
/*===========================================================================*\
* *
* $Revision$ *
* $LastChangedBy$ *
* $Date$ *
* *
\*===========================================================================*/
#ifndef DECIMATERPLUGIN_HH
#define DECIMATERPLUGIN_HH
//== INCLUDES =================================================================
#include <QObject>
#include <QMenuBar>
#include <QTimer>
#include <OpenFlipper/BasePlugin/BaseInterface.hh>
#include <OpenFlipper/BasePlugin/ToolboxInterface.hh>
#include <OpenFlipper/BasePlugin/BackupInterface.hh>
#include <OpenFlipper/BasePlugin/LoggingInterface.hh>
#include <OpenFlipper/BasePlugin/ScriptInterface.hh>
#include <OpenFlipper/BasePlugin/RPCInterface.hh>
#include <OpenFlipper/BasePlugin/LoadSaveInterface.hh>
#include <OpenFlipper/common/Types.hh>
#include <ObjectTypes/TriangleMesh/TriangleMesh.hh>
#include "DecimaterInfo.hh"
#include "DecimaterToolbarWidget.hh"
#include <OpenMesh/Tools/Decimater/DecimaterT.hh>
#include <OpenMesh/Tools/Decimater/McDecimaterT.hh>
#include <OpenMesh/Tools/Decimater/MixedDecimaterT.hh>
#include <OpenMesh/Tools/Decimater/ModQuadricT.hh>
#include <OpenMesh/Tools/Decimater/ModNormalFlippingT.hh>
#include <OpenMesh/Tools/Decimater/ModHausdorffT.hh>
#include <OpenMesh/Tools/Decimater/ModNormalDeviationT.hh>
#include <OpenMesh/Tools/Decimater/ModEdgeLengthT.hh>
#include <OpenMesh/Tools/Decimater/ModAspectRatioT.hh>
#include <OpenMesh/Tools/Decimater/ModRoundnessT.hh>
#include <OpenMesh/Tools/Decimater/ModIndependentSetsT.hh>
#include <ObjectTypes/TriangleMesh/TriangleMesh.hh>
#include <ACG/Utils/SmartPointer.hh>
#include <vector>
//== CLASS DEFINITION =========================================================
/** Plugin for Decimater Support
*/
class DecimaterPlugin : public QObject, BaseInterface, ToolboxInterface, LoggingInterface, ScriptInterface, BackupInterface, RPCInterface, LoadSaveInterface
{
Q_OBJECT
Q_INTERFACES(BaseInterface)
Q_INTERFACES(ToolboxInterface)
Q_INTERFACES(BackupInterface)
Q_INTERFACES(LoggingInterface)
Q_INTERFACES(ScriptInterface)
Q_INTERFACES(RPCInterface)
Q_INTERFACES(LoadSaveInterface)
#if QT_VERSION >= 0x050000
Q_PLUGIN_METADATA(IID "org.OpenFlipper.Plugins.Plugin-Decimater")
#endif
signals:
// BaseInterface
void updateView();
void updatedObject(int _id, const UpdateType& _type);
void setSlotDescription(QString _slotName, QString _slotDescription,
QStringList _parameters, QStringList _descriptions);
// LoggingInterface
void log(Logtype _type, QString _message);
void log(QString _message);
// RPC Interface
void pluginExists( QString _pluginName , bool& _exists ) ;
void functionExists( QString _pluginName , QString _functionName , bool& _exists );
// ToolboxInterface
void addToolbox( QString _name , QWidget* _widget, QIcon* _icon );
// ScriptInterface
void scriptInfo( QString _functionName );
// BackupInterface
void createBackup( int _id , QString _name, UpdateType _type = UPDATE_ALL );
private slots:
// BaseInterface
void initializePlugin();
void pluginsInitialized();
void slotObjectUpdated( int _identifier , const UpdateType& _type ); // BaseInterface
void slotObjectSelectionChanged( int _identifier ); // BaseInterface
void objectDeleted(int _id); //LoadSaveInterface
void slotAboutToRestore(int _id); //BackupInterface
// Tell system that this plugin runs without ui
void noguiSupported( ) {} ;
public :
/// Default constructor
DecimaterPlugin();
/// Default destructor
~DecimaterPlugin() {};
/// Name of the Plugin
QString name(){ return (QString("Decimater")); };
/// Description of the Plugin
QString description() { return (QString(tr("Mesh Decimation ..."))); };
private :
typedef OpenMesh::Decimater::BaseDecimaterT< TriMesh > BaseDecimaterType;
typedef OpenMesh::Decimater::DecimaterT< TriMesh > DecimaterType;
typedef OpenMesh::Decimater::McDecimaterT< TriMesh > McDecimaterType;
typedef OpenMesh::Decimater::MixedDecimaterT< TriMesh > MixedDecimaterType;
typedef OpenMesh::Decimater::ModAspectRatioT< TriMesh >::Handle ModAspectRatioH;
typedef OpenMesh::Decimater::ModEdgeLengthT< TriMesh >::Handle ModEdgeLengthH;
typedef OpenMesh::Decimater::ModHausdorffT< TriMesh >::Handle ModHausdorffH;
typedef OpenMesh::Decimater::ModIndependentSetsT< TriMesh >::Handle ModIndependentH;
typedef OpenMesh::Decimater::ModNormalDeviationT< TriMesh >::Handle ModNormalDeviationH;
typedef OpenMesh::Decimater::ModNormalFlippingT< TriMesh >::Handle ModNormalFlippingH;
typedef OpenMesh::Decimater::ModQuadricT< TriMesh >::Handle ModQuadricH;
typedef OpenMesh::Decimater::ModRoundnessT< TriMesh >::Handle ModRoundnessH;
/// Widget for Toolbox
DecimaterToolbarWidget* tool_;
//saves the decimater and the object id
struct DecimaterInit
{
ptr::shared_ptr<BaseDecimaterType> decimater;
int objId;
ModAspectRatioH hModAspectRatio;
ModEdgeLengthH hModEdgeLength;
ModHausdorffH hModHausdorff;
ModIndependentH hModIndependent;
ModNormalDeviationH hModNormalDeviation;
ModNormalFlippingH hModNormalFlipping;
ModQuadricH hModQuadric;
ModRoundnessH hModRoundness;
};
std::vector< ptr::shared_ptr<DecimaterInit> > decimater_objects_;
QIcon* toolIcon_;
public slots:
/// decimating called from button in toolbox
void slot_decimate();
/// init called from button in toolbox
void slot_initialize();
void slot_initialize_object(int obj_id, bool clear = false);
private slots:
/// roundness slider - spinbox sync
void slotUpdateRoundness(int _value);
void slotUpdateRoundness(double _value);
void slotUpdateAspectRatio(int _value);
void slotUpdateAspectRatio(double _value);
/// slider / spinbox updates
void slotUpdateDistance ();
void slotUpdateNormalDev ();
void slotUpdateVertices ();
void slotUpdateTriangles ();
void slotUpdateEdgeLength ();
/// update number of vertices information
void slotUpdateNumVertices();
void slotUpdateNumTriangles();
void slotMixedCounterValueChanged(double);
void slotMixedSliderValueChanged(int);
void slotDisableDecimation();
private:
void initialize_object(BaseObjectData *obj);
//===========================================================================
/** @name Scripting Functions
* @{ */
//===========================================================================
public slots:
/** \brief decimate an object
*
* @param _objID Id of the object that should be decimated
* @param _constraints List of constraints for the decimater
*
*/
void decimate(int _objID, QVariantMap _constraints);
/** @} */
public slots:
QString version() { return QString("1.0"); };
};
#endif //DECIMATERPLUGIN_HH