Salome HOME
Merge branch 'CPPHighAPI'
[modules/shaper.git] / src / PythonAddons / macros / box / feature.py
1 """Box macro-feature
2 Authors: Renaud Nedelec - Daniel Brunier-Coulin
3 Copyright (C) 2014-20xx CEA/DEN, EDF R&D
4 """
5
6 import model
7 import geom
8
9
10 class BoxFeature(model.Feature):
11     """An example of Box feature implementation.
12
13     BoxFeature() -> Box
14     """
15
16 # Initializations
17
18     def __init__(self):
19         """x.__init__(...) initializes x; see x.__class__.__doc__ for signature"""
20         model.Feature.__init__(self)
21
22     @staticmethod
23     def ID():
24         """Return Id of the feature."""
25         return "Box"
26
27     @staticmethod
28     def WIDTH_ID():
29         """Returns ID of Width parameter."""
30         return "width"
31
32     @staticmethod
33     def LENGTH_ID():
34         """Returns ID of Length parameter."""
35         return "length"
36
37     @staticmethod
38     def HEIGHT_ID():
39         """Returns ID of Height parameter."""
40         return "height"
41
42     def getKind(self):
43         """Override Feature.getKind()"""
44         return BoxFeature.ID()
45
46
47 # Creation of the box at default size
48
49     def initAttributes(self):
50         """Override Feature.initAttributes()"""
51         # Creating the input arguments of the feature
52         self.addRealInput(self.WIDTH_ID())
53         self.addRealInput(self.LENGTH_ID())
54         self.addRealInput(self.HEIGHT_ID())
55
56         # Creating the base of the box with unit values
57         mypart = model.activeDocument()
58         xoy = model.defaultPlane("XOY")
59
60         # A base of the geometry
61         self.base = model.addSketch(mypart, xoy)
62
63         p1 = geom.Pnt2d(0, 0)
64         p2 = geom.Pnt2d(0, 1)
65         p3 = geom.Pnt2d(1, 1)
66         p4 = geom.Pnt2d(1, 0)
67
68         line = model.addPolygon(self.base, p1, p2, p3, p4)
69
70         self.base.setParallel(line[0], line[2])
71         self.base.setParallel(line[1], line[3])
72         self.base.setPerpendicular(line[0], line[3])
73
74         # Setting the size of the base with default values
75         # Width
76         self.width = self.base.setLength(line[0], 50)  # Keeps the constraint for edition
77         # Length
78         self.length = self.base.setLength(line[3], 50)  # Keeps the constraint for edition
79
80         # Creating the extrusion (the box) at default size
81         # A box result
82         self.box = model.addExtrusion(mypart, self.base.selectFace(), 50)
83
84 # Edition of the box at user size
85
86     def execute(self):
87         """F.execute() -- execute the feature"""
88         # Retrieving the user inputs
89         width = self.real(self.WIDTH_ID())
90         length = self.real(self.LENGTH_ID())
91         height = self.real(self.HEIGHT_ID())
92
93         # Editing the box
94         if width.text() == "":
95             self.base.setValue(self.width, width.value())
96         else:
97             self.base.setValue(self.width, width.text())
98
99         if length.text() == "":
100             self.base.setValue(self.length, length.value())
101         else:
102             self.base.setValue(self.length, length.text())
103
104         if (height.text() == ""):
105             self.box.setSize(height.value())
106         else:
107             self.box.setSize(height.text())
108
109         # Publishing the result: not needed for Macro feature
110         # self.addResult( self.box.result() )
111
112     def isMacro(self):
113         """Override Feature.initAttributes().
114         F.isMacro() -> True
115
116         Box feature is macro: removes itself on the creation transaction
117         finish.
118         """
119         return True