Salome HOME
Fix compoundVertices and adding list of parameters
[modules/shaper.git] / src / PythonAddons / macros / importParameters / feature.py
1 """importParameters
2 Author: Nathalie Gore
3 """
4
5 from salome.shaper import model
6 from salome.shaper import geom
7 import ModelAPI
8
9 class importParameters(model.Feature):
10     """Import of Construction points
11     """
12
13 # Feature initializations
14
15     def __init__(self):
16         """x.__init__(...) initializes x; see x.__class__.__doc__ for signature"""
17         model.Feature.__init__(self)
18
19     @staticmethod
20     def ID():
21         """Return Id of the Feature."""
22         return "importParameters"
23
24     @staticmethod
25     def FILE_ID():
26         """Returns ID of the file select parameter."""
27         return "file_path"
28
29     def getKind(self):
30         """Override Feature.getKind()"""
31         return importParameters.ID()
32
33
34 # Initialization of the dialog panel
35
36     def initAttributes(self):
37         """Override Feature.initAttributes()"""
38         # Creating the input argument of the feature
39         self.data().addAttribute(self.FILE_ID(), ModelAPI.ModelAPI_AttributeString_typeId())
40
41 # Execution of the Import
42
43     def execute(self):
44         """F.execute() -- execute the Feature"""
45         # Retrieving the user input
46         apath    = self.string(self.FILE_ID())
47         filepath = apath.value()
48         #print("filepath : ", filepath)
49         if filepath != "" :
50
51             # Creating the parameters in the current document
52             part = model.activeDocument()
53
54             with open(filepath) as file:
55                 for line in file:
56                     defParameters = line.replace("\n","").split(' ')
57                     if len(defParameters) == 2 :
58                         model.addParameter(part, defParameters[0], defParameters[1])
59                 file.close()
60                 return
61         
62             setError("The file does not exist")
63