Salome HOME
CEA : Lot2 - Bounding box
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Plugin.cpp
1 // Copyright (C) 2014-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include <FeaturesPlugin_Plugin.h>
21
22 #include <FeaturesPlugin_BooleanCut.h>
23 #include <FeaturesPlugin_BooleanFuse.h>
24 #include <FeaturesPlugin_BooleanCommon.h>
25 #include <FeaturesPlugin_BooleanSmash.h>
26 #include <FeaturesPlugin_BooleanFill.h>
27 #include <FeaturesPlugin_BoundingBox.h>
28 #include <FeaturesPlugin_Chamfer.h>
29 #include <FeaturesPlugin_CreateBoundingBox.h>
30 #include <FeaturesPlugin_Defeaturing.h>
31 #include <FeaturesPlugin_Extrusion.h>
32 #include <FeaturesPlugin_ExtrusionCut.h>
33 #include <FeaturesPlugin_ExtrusionFuse.h>
34 #include <FeaturesPlugin_Fillet.h>
35 #include <FeaturesPlugin_Fillet1D.h>
36 #include <FeaturesPlugin_GeometryCalculation.h>
37 #include <FeaturesPlugin_Intersection.h>
38 #include <FeaturesPlugin_Measurement.h>
39 #include <FeaturesPlugin_PointCoordinates.h>
40 #include <FeaturesPlugin_MultiRotation.h>
41 #include <FeaturesPlugin_MultiTranslation.h>
42 #include <FeaturesPlugin_Partition.h>
43 #include <FeaturesPlugin_Pipe.h>
44 #include <FeaturesPlugin_Placement.h>
45 #include <FeaturesPlugin_Recover.h>
46 #include <FeaturesPlugin_RemoveSubShapes.h>
47 #include <FeaturesPlugin_Revolution.h>
48 #include <FeaturesPlugin_RevolutionCut.h>
49 #include <FeaturesPlugin_RevolutionFuse.h>
50 #include <FeaturesPlugin_Rotation.h>
51 #include <FeaturesPlugin_Scale.h>
52 #include <FeaturesPlugin_Symmetry.h>
53 #include <FeaturesPlugin_Translation.h>
54 #include <FeaturesPlugin_Union.h>
55 #include <FeaturesPlugin_FusionFaces.h>
56 #include <FeaturesPlugin_RemoveResults.h>
57 #include <FeaturesPlugin_Copy.h>
58 #include <FeaturesPlugin_ImportResult.h>
59 #include <FeaturesPlugin_ValidatorTransform.h>
60 #include <FeaturesPlugin_Validators.h>
61
62 #include <ModelAPI_Session.h>
63
64 #include <string>
65
66 #include <memory>
67
68 // the only created instance of this plugin
69 static FeaturesPlugin_Plugin* MY_FEATURES_INSTANCE = new FeaturesPlugin_Plugin();
70
71 FeaturesPlugin_Plugin::FeaturesPlugin_Plugin()
72 {
73   SessionPtr aMgr = ModelAPI_Session::get();
74   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
75   aFactory->registerValidator("FeaturesPlugin_ValidatorTransform",
76                               new FeaturesPlugin_ValidatorTransform);
77   aFactory->registerValidator("FeaturesPlugin_ValidatorCompositeLauncher",
78                               new FeaturesPlugin_ValidatorCompositeLauncher);
79   aFactory->registerValidator("FeaturesPlugin_ValidatorBaseForGeneration",
80                               new FeaturesPlugin_ValidatorBaseForGeneration);
81   aFactory->registerValidator("FeaturesPlugin_ValidatorBaseForGenerationSketchOrSketchObjects",
82                               new FeaturesPlugin_ValidatorBaseForGenerationSketchOrSketchObjects);
83   aFactory->registerValidator("FeaturesPlugin_ValidatorPipeLocations",
84                               new FeaturesPlugin_ValidatorPipeLocations);
85   aFactory->registerValidator("FeaturesPlugin_ValidatorPipeLocationsNumber",
86                               new FeaturesPlugin_ValidatorPipeLocationsNumber);
87   aFactory->registerValidator("FeaturesPlugin_ValidatorExtrusionDir",
88                               new FeaturesPlugin_ValidatorExtrusionDir);
89   aFactory->registerValidator("FeaturesPlugin_ValidatorExtrusionBoundary",
90                               new FeaturesPlugin_ValidatorExtrusionBoundaryFace);
91   aFactory->registerValidator("FeaturesPlugin_ValidatorBooleanSelection",
92                               new FeaturesPlugin_ValidatorBooleanSelection);
93   aFactory->registerValidator("FeaturesPlugin_ValidatorPartitionSelection",
94                               new FeaturesPlugin_ValidatorPartitionSelection);
95   aFactory->registerValidator("FeaturesPlugin_ValidatorRemoveSubShapesSelection",
96                               new FeaturesPlugin_ValidatorRemoveSubShapesSelection);
97   aFactory->registerValidator("FeaturesPlugin_ValidatorRemoveSubShapesResult",
98                               new FeaturesPlugin_ValidatorRemoveSubShapesResult);
99   aFactory->registerValidator("FeaturesPlugin_ValidatorPipePath",
100                               new FeaturesPlugin_ValidatorPipePath);
101   aFactory->registerValidator("FeaturesPlugin_ValidatorUnionSelection",
102                               new FeaturesPlugin_ValidatorUnionSelection);
103   aFactory->registerValidator("FeaturesPlugin_ValidatorUnionArguments",
104                               new FeaturesPlugin_ValidatorUnionArguments);
105   aFactory->registerValidator("FeaturesPlugin_ValidatorConcealedResult",
106                               new FeaturesPlugin_ValidatorConcealedResult);
107   aFactory->registerValidator("FeaturesPlugin_ValidatorFilletSelection",
108                               new FeaturesPlugin_ValidatorFilletSelection);
109   aFactory->registerValidator("FeaturesPlugin_ValidatorFillet1DSelection",
110                               new FeaturesPlugin_ValidatorFillet1DSelection);
111   aFactory->registerValidator("FeaturesPlugin_ValidatorCircular",
112                               new FeaturesPlugin_ValidatorCircular);
113   aFactory->registerValidator("FeaturesPlugin_ValidatorBooleanArguments",
114                               new FeaturesPlugin_ValidatorBooleanArguments);
115   aFactory->registerValidator("FeaturesPlugin_ValidatorBooleanSmashSelection",
116                               new FeaturesPlugin_ValidatorBooleanSmashSelection);
117   aFactory->registerValidator("FeaturesPlugin_IntersectionSelection",
118                               new FeaturesPlugin_IntersectionSelection);
119   aFactory->registerValidator("FeaturesPlugin_ValidatorBooleanFuseSelection",
120                               new FeaturesPlugin_ValidatorBooleanFuseSelection);
121   aFactory->registerValidator("FeaturesPlugin_ValidatorBooleanFuseArguments",
122                               new FeaturesPlugin_ValidatorBooleanFuseArguments);
123   aFactory->registerValidator("FeaturesPlugin_ValidatorBooleanCommonSelection",
124                               new FeaturesPlugin_ValidatorBooleanCommonSelection);
125   aFactory->registerValidator("FeaturesPlugin_ValidatorBooleanCommonArguments",
126                               new FeaturesPlugin_ValidatorBooleanCommonArguments);
127   aFactory->registerValidator("FeaturesPlugin_ValidatorImportResults",
128                               new FeaturesPlugin_ValidatorImportResults);
129   aFactory->registerValidator("FeaturesPlugin_ValidatorDefeaturingSelection",
130                               new FeaturesPlugin_ValidatorDefeaturingSelection);
131
132   // register this plugin
133   ModelAPI_Session::get()->registerPlugin(this);
134 }
135
136 FeaturePtr FeaturesPlugin_Plugin::createFeature(std::string theFeatureID)
137 {
138   if (theFeatureID == FeaturesPlugin_Extrusion::ID()) {
139     return FeaturePtr(new FeaturesPlugin_Extrusion);
140   } else if (theFeatureID == FeaturesPlugin_Revolution::ID()) {
141    return FeaturePtr(new FeaturesPlugin_Revolution);
142   } else if (theFeatureID == FeaturesPlugin_Rotation::ID()) {
143     return FeaturePtr(new FeaturesPlugin_Rotation);
144   } else if (theFeatureID == FeaturesPlugin_Translation::ID()) {
145     return FeaturePtr(new FeaturesPlugin_Translation);
146   } else if (theFeatureID == FeaturesPlugin_BooleanCut::ID()) {
147     return FeaturePtr(new FeaturesPlugin_BooleanCut);
148   } else if (theFeatureID == FeaturesPlugin_BooleanFuse::ID()) {
149     return FeaturePtr(new FeaturesPlugin_BooleanFuse);
150   } else if (theFeatureID == FeaturesPlugin_BooleanCommon::ID()) {
151     return FeaturePtr(new FeaturesPlugin_BooleanCommon);
152   } else if (theFeatureID == FeaturesPlugin_BooleanSmash::ID()) {
153     return FeaturePtr(new FeaturesPlugin_BooleanSmash);
154   } else if (theFeatureID == FeaturesPlugin_BooleanFill::ID() || theFeatureID == "Fill") {
155     return FeaturePtr(new FeaturesPlugin_BooleanFill);
156   } else if (theFeatureID == FeaturesPlugin_Intersection::ID()) {
157     return FeaturePtr(new FeaturesPlugin_Intersection);
158   } else if (theFeatureID == FeaturesPlugin_Partition::ID()) {
159     return FeaturePtr(new FeaturesPlugin_Partition);
160   } else if (theFeatureID == FeaturesPlugin_Pipe::ID()) {
161     return FeaturePtr(new FeaturesPlugin_Pipe);
162   } else if (theFeatureID == FeaturesPlugin_Placement::ID()) {
163     return FeaturePtr(new FeaturesPlugin_Placement);
164   } else if (theFeatureID == FeaturesPlugin_Recover::ID()) {
165     return FeaturePtr(new FeaturesPlugin_Recover);
166   } else if (theFeatureID == FeaturesPlugin_ExtrusionCut::ID()) {
167     return FeaturePtr(new FeaturesPlugin_ExtrusionCut);
168   } else if (theFeatureID == FeaturesPlugin_ExtrusionFuse::ID()) {
169     return FeaturePtr(new FeaturesPlugin_ExtrusionFuse);
170   } else if (theFeatureID == FeaturesPlugin_RevolutionCut::ID()) {
171     return FeaturePtr(new FeaturesPlugin_RevolutionCut);
172   } else if (theFeatureID == FeaturesPlugin_RevolutionFuse::ID()) {
173     return FeaturePtr(new FeaturesPlugin_RevolutionFuse);
174   } else if (theFeatureID == FeaturesPlugin_RemoveSubShapes::ID()) {
175     return FeaturePtr(new FeaturesPlugin_RemoveSubShapes);
176   } else if (theFeatureID == FeaturesPlugin_Union::ID()) {
177     return FeaturePtr(new FeaturesPlugin_Union);
178   } else if (theFeatureID == FeaturesPlugin_FusionFaces::ID()) {
179     return FeaturePtr(new FeaturesPlugin_FusionFaces);
180   } else if (theFeatureID == FeaturesPlugin_Symmetry::ID()) {
181     return FeaturePtr(new FeaturesPlugin_Symmetry);
182   } else if (theFeatureID == FeaturesPlugin_Scale::ID()) {
183     return FeaturePtr(new FeaturesPlugin_Scale);
184   } else if (theFeatureID == FeaturesPlugin_MultiTranslation::ID()) {
185     return FeaturePtr(new FeaturesPlugin_MultiTranslation);
186   } else if (theFeatureID == FeaturesPlugin_MultiRotation::ID()) {
187     return FeaturePtr(new FeaturesPlugin_MultiRotation);
188   } else if (theFeatureID == FeaturesPlugin_Fillet::ID()) {
189     return FeaturePtr(new FeaturesPlugin_Fillet);
190   } else if (theFeatureID == FeaturesPlugin_Fillet1D::ID()) {
191     return FeaturePtr(new FeaturesPlugin_Fillet1D);
192   } else if (theFeatureID == FeaturesPlugin_Measurement::ID()) {
193     return FeaturePtr(new FeaturesPlugin_Measurement);
194   } else if (theFeatureID == FeaturesPlugin_RemoveResults::ID()) {
195     return FeaturePtr(new FeaturesPlugin_RemoveResults);
196   } else if (theFeatureID == FeaturesPlugin_Chamfer::ID()) {
197     return FeaturePtr(new FeaturesPlugin_Chamfer);
198   } else if (theFeatureID == FeaturesPlugin_Copy::ID()) {
199     return FeaturePtr(new FeaturesPlugin_Copy);
200   } else if (theFeatureID == FeaturesPlugin_ImportResult::ID()) {
201     return FeaturePtr(new FeaturesPlugin_ImportResult);
202   } else if (theFeatureID == FeaturesPlugin_Defeaturing::ID()) {
203     return FeaturePtr(new FeaturesPlugin_Defeaturing);
204   } else if (theFeatureID == FeaturesPlugin_PointCoordinates::ID()) {
205     return FeaturePtr(new FeaturesPlugin_PointCoordinates);
206   } else if (theFeatureID == FeaturesPlugin_GeometryCalculation::ID()) {
207     return FeaturePtr(new FeaturesPlugin_GeometryCalculation);
208   } else if (theFeatureID == FeaturesPlugin_BoundingBox::ID()) {
209     return FeaturePtr(new FeaturesPlugin_BoundingBox);
210   } else if (theFeatureID == FeaturesPlugin_CreateBoundingBox::ID()) {
211     return FeaturePtr(new FeaturesPlugin_CreateBoundingBox);
212   }
213
214
215   // feature of such kind is not found
216   return FeaturePtr();
217 }