author | lbessard |
Mon, 10 Sep 2007 18:16:07 +0200 | |
changeset 90 | 2245e8776086 |
parent 89 | a6ff2b3fcc25 |
child 94 | e7f5a251f251 |
permissions | -rw-r--r-- |
0 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
4 |
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor |
|
5 |
#based on the plcopen standard. |
|
6 |
# |
|
58 | 7 |
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
0 | 8 |
# |
9 |
#See COPYING file for copyrights details. |
|
10 |
# |
|
11 |
#This library is free software; you can redistribute it and/or |
|
2 | 12 |
#modify it under the terms of the GNU General Public |
0 | 13 |
#License as published by the Free Software Foundation; either |
14 |
#version 2.1 of the License, or (at your option) any later version. |
|
15 |
# |
|
16 |
#This library is distributed in the hope that it will be useful, |
|
17 |
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
18 |
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
58 | 19 |
#General Public License for more details. |
0 | 20 |
# |
2 | 21 |
#You should have received a copy of the GNU General Public |
0 | 22 |
#License along with this library; if not, write to the Free Software |
23 |
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
24 |
||
2 | 25 |
from xmlclass import * |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
26 |
from types import * |
77
346a43f179a5
xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents:
74
diff
changeset
|
27 |
import os |
0 | 28 |
|
29 |
""" |
|
30 |
Dictionary that makes the relation between var names in plcopen and displayed values |
|
31 |
""" |
|
32 |
VarTypes = {"Local" : "localVars", "Temp" : "tempVars", "Input" : "inputVars", |
|
33 |
"Output" : "outputVars", "InOut" : "inOutVars", "External" : "externalVars", |
|
34 |
"Global" : "globalVars", "Access" : "accessVars"} |
|
35 |
||
36 |
""" |
|
37 |
Define in which order var types must be displayed |
|
38 |
""" |
|
39 |
VarOrder = ["Local","Temp","Input","Output","InOut","External","Global","Access"] |
|
40 |
||
41 |
""" |
|
42 |
Define which action qualifier must be associated with a duration |
|
43 |
""" |
|
44 |
QualifierList = {"N" : False, "R" : False, "S" : False, "L" : True, "D" : True, |
|
45 |
"P" : False, "P0" : False, "P1" : False, "SD" : True, "DS" : True, "SL" : True} |
|
46 |
||
77
346a43f179a5
xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents:
74
diff
changeset
|
47 |
PLCOpenClasses, PLCOpenTypes = GenerateClassesFromXSD(os.path.join(os.path.split(__file__)[0], "TC6_XML_V10_B.xsd")) |
2 | 48 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
49 |
cls = PLCOpenClasses.get("dataType", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
50 |
if cls: |
2 | 51 |
cls.value = None |
52 |
||
53 |
def getValue(self): |
|
54 |
return self.value |
|
55 |
setattr(cls, "getValue", getValue) |
|
56 |
||
57 |
def setValue(self, value): |
|
58 |
self.value = value |
|
59 |
setattr(cls, "setValue", setValue) |
|
60 |
||
61 |
def loadXMLTree(self, tree): |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
62 |
node = tree.childNodes[1] |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
63 |
if node.nodeName == "derived": |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
64 |
self.value = PLCOpenClasses["derived"]() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
65 |
self.value.loadXMLTree(node) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
66 |
else: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
67 |
self.value = node.nodeName |
2 | 68 |
setattr(cls, "loadXMLTree", loadXMLTree) |
69 |
||
70 |
def generateXMLText(self, name, indent, extras = {}): |
|
71 |
ind1, ind2 = getIndent(indent, name) |
|
72 |
text = ind1 + "<%s>\n"%name |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
73 |
if isinstance(self.value, (StringType, UnicodeType)): |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
74 |
ind3, ind4 = getIndent(indent + 1, self.value) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
75 |
text += ind3 + "<%s/>\n"%self.value |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
76 |
else: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
77 |
text += self.value.generateXMLText("derived", indent + 1) |
2 | 78 |
text += ind1 + "</%s>\n"%name |
79 |
return text |
|
80 |
setattr(cls, "generateXMLText", generateXMLText) |
|
81 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
82 |
cls = PLCOpenClasses.get("formattedText", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
83 |
if cls: |
2 | 84 |
cls.text = "" |
85 |
||
86 |
def getText(self): |
|
87 |
return self.text |
|
88 |
setattr(cls, "getText", getText) |
|
89 |
||
90 |
def setText(self, text): |
|
91 |
self.text = text |
|
92 |
setattr(cls, "setText", setText) |
|
93 |
||
94 |
def loadXMLTree(self, tree): |
|
95 |
self.text = GetAttributeValue(tree) |
|
96 |
if len(self.text.splitlines()) > 1: |
|
97 |
self.text = self.text[1:].rstrip() |
|
98 |
setattr(cls, "loadXMLTree", loadXMLTree) |
|
99 |
||
100 |
def generateXMLText(self, name, indent, extras = {}): |
|
101 |
ind1, ind2 = getIndent(indent, name) |
|
102 |
if len(self.text.splitlines()) > 1: |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
103 |
text = ind1 + "<%s>\n<![CDATA[\n"%name |
2 | 104 |
text += "%s\n"%self.text |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
105 |
text += "]]>\n" + ind1 + "</%s>\n"%name |
0 | 106 |
return text |
2 | 107 |
else: |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
108 |
return ind1 + "<%s><![CDATA[%s]]></%s>\n"%(name, self.text, name) |
2 | 109 |
setattr(cls, "generateXMLText", generateXMLText) |
110 |
||
58 | 111 |
def updateElementName(self, old_name, new_name): |
112 |
index = self.text.find(old_name) |
|
113 |
while index != -1: |
|
114 |
if index > 0 and (self.text[index - 1].isalnum() or self.text[index - 1] == "_"): |
|
115 |
index = self.text.find(old_name, index + len(old_name)) |
|
116 |
elif index < len(self.text) - len(old_name) and (self.text[index + len(old_name)].isalnum() or self.text[index + len(old_name)] == "_"): |
|
117 |
index = self.text.find(old_name, index + len(old_name)) |
|
118 |
else: |
|
119 |
self.text = self.text[:index] + new_name + self.text[index + len(old_name):] |
|
120 |
index = self.text.find(old_name, index + len(new_name)) |
|
121 |
setattr(cls, "updateElementName", updateElementName) |
|
122 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
123 |
cls = PLCOpenClasses.get("project", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
124 |
if cls: |
2 | 125 |
cls.singleLineAttributes = False |
126 |
||
127 |
def getFileHeader(self): |
|
128 |
fileheader = {} |
|
129 |
fileheader["companyName"] = self.fileHeader.getCompanyName() |
|
130 |
if self.fileHeader.getCompanyURL(): |
|
131 |
fileheader["companyURL"] = self.fileHeader.getCompanyURL() |
|
132 |
fileheader["productName"] = self.fileHeader.getProductName() |
|
133 |
fileheader["productVersion"] = self.fileHeader.getProductVersion() |
|
134 |
if self.fileHeader.getProductRelease(): |
|
135 |
fileheader["productRelease"] = self.fileHeader.getProductRelease() |
|
136 |
fileheader["creationDateTime"] = self.fileHeader.getCreationDateTime() |
|
137 |
if self.fileHeader.getContentDescription(): |
|
138 |
fileheader["contentDescription"] = self.fileHeader.getContentDescription() |
|
139 |
return fileheader |
|
140 |
setattr(cls, "getFileHeader", getFileHeader) |
|
141 |
||
142 |
def setFileHeader(self, fileheader): |
|
143 |
self.fileHeader.setCompanyName(fileheader["companyName"]) |
|
144 |
if "companyURL" in fileheader: |
|
145 |
self.fileHeader.setCompanyURL(fileheader["companyURL"]) |
|
146 |
self.fileHeader.setProductName(fileheader["productName"]) |
|
147 |
self.fileHeader.setProductVersion(fileheader["productVersion"]) |
|
148 |
if "productRelease" in fileheader: |
|
149 |
self.fileHeader.setProductRelease(fileheader["productRelease"]) |
|
150 |
self.fileHeader.setCreationDateTime(fileheader["creationDateTime"]) |
|
151 |
if "contentDescription" in fileheader: |
|
152 |
self.fileHeader.setContentDescription(fileheader["contentDescription"]) |
|
153 |
setattr(cls, "setFileHeader", setFileHeader) |
|
154 |
||
155 |
def setName(self, name): |
|
156 |
self.contentHeader.setName(name) |
|
157 |
setattr(cls, "setName", setName) |
|
0 | 158 |
|
2 | 159 |
def getName(self): |
160 |
return self.contentHeader.getName() |
|
161 |
setattr(cls, "getName", getName) |
|
162 |
||
163 |
def getPous(self): |
|
164 |
return self.types.getPouElements() |
|
165 |
setattr(cls, "getPous", getPous) |
|
166 |
||
167 |
def getPou(self, name): |
|
168 |
return self.types.getPouElement(name) |
|
169 |
setattr(cls, "getPou", getPou) |
|
170 |
||
171 |
def appendPou(self, name, pou_type, body_type): |
|
172 |
self.types.appendPouElement(name, pou_type, body_type) |
|
173 |
setattr(cls, "appendPou", appendPou) |
|
0 | 174 |
|
2 | 175 |
def insertPou(self, index, pou): |
176 |
self.types.insertPouElement(index, pou) |
|
177 |
setattr(cls, "insertPou", insertPou) |
|
178 |
||
179 |
def removePou(self, name): |
|
180 |
self.types.removePouElement(name) |
|
181 |
setattr(cls, "removePou", removePou) |
|
182 |
||
183 |
def getConfigurations(self): |
|
184 |
configurations = self.instances.configurations.getConfiguration() |
|
185 |
if configurations: |
|
186 |
return configurations |
|
187 |
return [] |
|
188 |
setattr(cls, "getConfigurations", getConfigurations) |
|
189 |
||
190 |
def getConfiguration(self, name): |
|
191 |
for configuration in self.instances.configurations.getConfiguration(): |
|
192 |
if configuration.getName() == name: |
|
193 |
return configuration |
|
194 |
return None |
|
195 |
setattr(cls, "getConfiguration", getConfiguration) |
|
196 |
||
197 |
def addConfiguration(self, name): |
|
198 |
for configuration in self.instances.configurations.getConfiguration(): |
|
199 |
if configuration.getName() == name: |
|
200 |
raise ValueError, "\"%s\" configuration already exists !!!"%name |
|
201 |
new_configuration = PLCOpenClasses["configurations_configuration"]() |
|
202 |
new_configuration.setName(name) |
|
203 |
self.instances.configurations.appendConfiguration(new_configuration) |
|
204 |
setattr(cls, "addConfiguration", addConfiguration) |
|
205 |
||
206 |
def removeConfiguration(self, name): |
|
207 |
found = False |
|
208 |
for idx, configuration in enumerate(self.instances.configurations.getConfiguration()): |
|
209 |
if configuration.getName() == name: |
|
210 |
self.instances.configurations.removeConfiguration(idx) |
|
211 |
found = True |
|
212 |
break |
|
213 |
if not found: |
|
214 |
raise ValueError, "\"%s\" configuration doesn't exist !!!"%name |
|
215 |
setattr(cls, "removeConfiguration", removeConfiguration) |
|
216 |
||
217 |
def getConfigurationResource(self, config_name, name): |
|
218 |
configuration = self.getConfiguration(config_name) |
|
219 |
if configuration: |
|
220 |
for resource in configuration.getResource(): |
|
221 |
if resource.getName() == name: |
|
222 |
return resource |
|
223 |
return None |
|
224 |
setattr(cls, "getConfigurationResource", getConfigurationResource) |
|
225 |
||
226 |
def addConfigurationResource(self, config_name, name): |
|
227 |
configuration = self.getConfiguration(config_name) |
|
228 |
if configuration: |
|
229 |
for resource in configuration.getResource(): |
|
230 |
if resource.getName() == name: |
|
231 |
raise ValueError, "\"%s\" resource already exists in \"%s\" configuration !!!"%(name, config_name) |
|
232 |
new_resource = PLCOpenClasses["configuration_resource"]() |
|
233 |
new_resource.setName(name) |
|
234 |
configuration.appendResource(new_resource) |
|
235 |
setattr(cls, "addConfigurationResource", addConfigurationResource) |
|
236 |
||
237 |
def removeConfigurationResource(self, config_name, name): |
|
238 |
configuration = self.getConfiguration(config_name) |
|
239 |
if configuration: |
|
0 | 240 |
found = False |
2 | 241 |
for idx, resource in enumerate(configuration.getResource()): |
242 |
if resource.getName() == name: |
|
243 |
configuration.removeResource(idx) |
|
0 | 244 |
found = True |
245 |
break |
|
246 |
if not found: |
|
2 | 247 |
raise ValueError, "\"%s\" resource doesn't exist in \"%s\" configuration !!!"%(name, config_name) |
248 |
setattr(cls, "removeConfigurationResource", removeConfigurationResource) |
|
249 |
||
58 | 250 |
def updateElementName(self, old_name, new_name): |
251 |
for pou in self.types.getPouElements(): |
|
252 |
pou.updateElementName(old_name, new_name) |
|
253 |
for configuration in self.instances.configurations.getConfiguration(): |
|
254 |
configuration.updateElementName(old_name, new_name) |
|
255 |
setattr(cls, "updateElementName", updateElementName) |
|
256 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
257 |
cls = PLCOpenClasses.get("project_fileHeader", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
258 |
if cls: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
259 |
cls.singleLineAttributes = False |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
260 |
|
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
261 |
cls = PLCOpenClasses.get("configurations_configuration", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
262 |
if cls: |
58 | 263 |
def updateElementName(self, old_name, new_name): |
264 |
for resource in self.getResource(): |
|
265 |
resource.updateElementName(old_name, new_name) |
|
266 |
setattr(cls, "updateElementName", updateElementName) |
|
267 |
||
268 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
269 |
cls = PLCOpenClasses.get("configuration_resource", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
270 |
if cls: |
58 | 271 |
def updateElementName(self, old_name, new_name): |
272 |
for instance in self.getPouInstance(): |
|
273 |
instance.updateElementName(old_name, new_name) |
|
274 |
for task in self.getTask(): |
|
275 |
task.updateElementName(old_name, new_name) |
|
276 |
setattr(cls, "updateElementName", updateElementName) |
|
277 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
278 |
cls = PLCOpenClasses.get("resource_task", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
279 |
if cls: |
58 | 280 |
def updateElementName(self, old_name, new_name): |
281 |
if self.single == old_name: |
|
282 |
self.single = new_name |
|
283 |
for instance in self.getPouInstance(): |
|
284 |
instance.updateElementName(old_name, new_name) |
|
285 |
setattr(cls, "updateElementName", updateElementName) |
|
286 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
287 |
cls = PLCOpenClasses.get("pouInstance", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
288 |
if cls: |
58 | 289 |
def updateElementName(self, old_name, new_name): |
290 |
if self.type == old_name: |
|
291 |
self.type = new_name |
|
292 |
setattr(cls, "updateElementName", updateElementName) |
|
293 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
294 |
cls = PLCOpenClasses.get("project_types", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
295 |
if cls: |
2 | 296 |
def getPouElements(self): |
297 |
return self.pous.getPou() |
|
298 |
setattr(cls, "getPouElements", getPouElements) |
|
299 |
||
300 |
def getPouElement(self, name): |
|
301 |
elements = self.pous.getPou() |
|
302 |
for element in elements: |
|
303 |
if element.getName() == name: |
|
304 |
return element |
|
305 |
return None |
|
306 |
setattr(cls, "getPouElement", getPouElement) |
|
307 |
||
308 |
def appendPouElement(self, name, pou_type, body_type): |
|
309 |
for element in self.pous.getPou(): |
|
310 |
if element.getName() == name: |
|
311 |
raise ValueError, "\"%s\" POU already exists !!!"%name |
|
312 |
new_pou = PLCOpenClasses["pous_pou"]() |
|
313 |
new_pou.setName(name) |
|
314 |
new_pou.pouType.setValue(pou_type) |
|
315 |
new_pou.setBody(PLCOpenClasses["body"]()) |
|
316 |
new_pou.setBodyType(body_type) |
|
317 |
self.pous.appendPou(new_pou) |
|
318 |
setattr(cls, "appendPouElement", appendPouElement) |
|
319 |
||
320 |
def insertPouElement(self, index, pou): |
|
321 |
self.pous.insertPou(index, pou) |
|
322 |
setattr(cls, "insertPouElement", insertPouElement) |
|
323 |
||
324 |
def removePouElement(self, name): |
|
325 |
found = False |
|
326 |
for idx, element in enumerate(self.pous.getPou()): |
|
327 |
if element.getName() == name: |
|
328 |
self.pous.removePou(idx) |
|
329 |
found = True |
|
330 |
break |
|
331 |
if not found: |
|
332 |
raise ValueError, "\"%s\" POU doesn't exist !!!"%name |
|
333 |
setattr(cls, "removePouElement", removePouElement) |
|
334 |
||
335 |
def setBodyType(self, type): |
|
336 |
if type == "IL": |
|
337 |
self.body.setContent("IL", PLCOpenClasses["formattedText"]()) |
|
338 |
elif type == "ST": |
|
339 |
self.body.setContent("ST", PLCOpenClasses["formattedText"]()) |
|
340 |
elif type == "LD": |
|
341 |
self.body.setContent("LD", PLCOpenClasses["body_LD"]()) |
|
342 |
elif type == "FBD": |
|
343 |
self.body.setContent("FBD", PLCOpenClasses["body_FBD"]()) |
|
344 |
elif type == "SFC": |
|
345 |
self.body.setContent("SFC", PLCOpenClasses["body_SFC"]()) |
|
346 |
else: |
|
347 |
raise ValueError, "%s isn't a valid body type!"%type |
|
348 |
||
349 |
def getBodyType(self): |
|
350 |
return self.body.getContent()["name"] |
|
351 |
||
352 |
def addInstance(self, name, instance): |
|
353 |
self.body.appendContentInstance(name, instance) |
|
354 |
||
355 |
def getInstances(self): |
|
356 |
return self.body.getContentInstances() |
|
357 |
||
358 |
def getInstance(self, id): |
|
359 |
return self.body.getContentInstance(id) |
|
360 |
||
361 |
def getRandomInstance(self, exclude): |
|
362 |
return self.body.getContentRandomInstance(exclude) |
|
363 |
||
364 |
def getInstanceByName(self, name): |
|
365 |
return self.body.getContentInstanceByName(name) |
|
366 |
||
367 |
def removeInstance(self, id): |
|
368 |
self.body.removeContentInstance(id) |
|
369 |
||
370 |
def setText(self, text): |
|
371 |
self.body.setText(text) |
|
372 |
||
373 |
def getText(self): |
|
374 |
return self.body.getText() |
|
375 |
setattr(cls, "getText", getText) |
|
376 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
377 |
cls = PLCOpenClasses.get("pous_pou", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
378 |
if cls: |
2 | 379 |
setattr(cls, "setBodyType", setBodyType) |
380 |
setattr(cls, "getBodyType", getBodyType) |
|
381 |
setattr(cls, "addInstance", addInstance) |
|
382 |
setattr(cls, "getInstances", getInstances) |
|
383 |
setattr(cls, "getInstance", getInstance) |
|
384 |
setattr(cls, "getRandomInstance", getRandomInstance) |
|
385 |
setattr(cls, "getInstanceByName", getInstanceByName) |
|
386 |
setattr(cls, "removeInstance", removeInstance) |
|
387 |
setattr(cls, "setText", setText) |
|
388 |
setattr(cls, "getText", getText) |
|
389 |
||
390 |
def getVars(self): |
|
391 |
vars = [] |
|
392 |
reverse_types = {} |
|
393 |
for name, value in VarTypes.items(): |
|
394 |
reverse_types[value] = name |
|
395 |
for varlist in self.interface.getContent(): |
|
396 |
vars.append((reverse_types[varlist["name"]], varlist["value"])) |
|
397 |
return vars |
|
398 |
setattr(cls, "getVars", getVars) |
|
399 |
||
400 |
def setVars(self, vars): |
|
401 |
self.interface.setContent([]) |
|
402 |
for vartype, varlist in vars: |
|
403 |
self.interface.appendContent(VarTypes[vartype], varlist) |
|
404 |
setattr(cls, "setVars", setVars) |
|
405 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
406 |
def addPouVar(self, type, name): |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
407 |
content = self.interface.getContent() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
408 |
if len(content) == 0 or content[-1]["name"] != "localVars": |
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
409 |
content.append({"name" : "localVars", "value" : PLCOpenClasses["varList"]()}) |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
410 |
else: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
411 |
varlist = content[-1]["value"] |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
412 |
variables = varlist.getVariable() |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
413 |
if varlist.getConstant() or varlist.getRetain() or len(variables) > 0 and variables[0].getAddress(): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
414 |
content.append({"name" : "localVars", "value" : PLCOpenClasses["varList"]()}) |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
415 |
var = PLCOpenClasses["varListPlain_variable"]() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
416 |
var.setName(name) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
417 |
var_type = PLCOpenClasses["dataType"]() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
418 |
derived_type = PLCOpenClasses["derived"]() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
419 |
derived_type.setName(type) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
420 |
var_type.setValue(derived_type) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
421 |
var.setType(var_type) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
422 |
content[-1]["value"].appendVariable(var) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
423 |
setattr(cls, "addPouVar", addPouVar) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
424 |
|
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
425 |
def removePouVar(self, type, name): |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
426 |
content = self.interface.getContent() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
427 |
for varlist in content: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
428 |
variables = varlist["value"].getVariable() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
429 |
for var in variables: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
430 |
if var.getName() == name: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
431 |
var_type = var.getType().getValue() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
432 |
if isinstance(var_type, PLCOpenClasses["derived"]) and var_type.getName() == type: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
433 |
variables.remove(var) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
434 |
break |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
435 |
if len(varlist["value"].getVariable()) == 0: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
436 |
content.remove(varlist) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
437 |
break |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
438 |
setattr(cls, "removePouVar", removePouVar) |
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
439 |
|
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
440 |
def hasBlock(self, name): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
441 |
if self.getBodyType() in ["FBD", "LD", "SFC"]: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
442 |
for instance in self.getInstances(): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
443 |
if isinstance(instance, PLCOpenClasses["block"]) and instance.getInstanceName() == name: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
444 |
return True |
89 | 445 |
if self.transitions: |
446 |
for transition in self.transitions.getTransition(): |
|
447 |
result = transition.hasBlock(name) |
|
448 |
if result: |
|
449 |
return result |
|
450 |
if self.actions: |
|
451 |
for action in self.actions.getAction(): |
|
452 |
result = action.hasBlock(name) |
|
453 |
if result: |
|
454 |
return result |
|
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
455 |
return False |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
456 |
setattr(cls, "hasBlock", hasBlock) |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
457 |
|
2 | 458 |
def addTransition(self, name, type): |
459 |
if not self.transitions: |
|
460 |
self.addTransitions() |
|
461 |
self.transitions.setTransition([]) |
|
462 |
transition = PLCOpenClasses["transitions_transition"]() |
|
463 |
transition.setName(name) |
|
464 |
transition.setBodyType(type) |
|
465 |
self.transitions.appendTransition(transition) |
|
466 |
setattr(cls, "addTransition", addTransition) |
|
467 |
||
468 |
def getTransition(self, name): |
|
469 |
if self.transitions: |
|
470 |
for transition in self.transitions.getTransition(): |
|
471 |
if transition.getName() == name: |
|
472 |
return transition |
|
473 |
return None |
|
474 |
setattr(cls, "getTransition", getTransition) |
|
475 |
||
476 |
def getTransitionList(self): |
|
477 |
if self.transitions: |
|
478 |
return self.transitions.getTransition() |
|
479 |
return [] |
|
480 |
setattr(cls, "getTransitionList", getTransitionList) |
|
481 |
||
482 |
def removeTransition(self, name): |
|
483 |
if self.transitions: |
|
484 |
transitions = self.transitions.getTransition() |
|
485 |
i = 0 |
|
486 |
removed = False |
|
487 |
while i < len(transitions) and not removed: |
|
488 |
if transitions[i].getName() == name: |
|
46 | 489 |
transitions.pop(i) |
2 | 490 |
removed = True |
491 |
i += 1 |
|
492 |
if not removed: |
|
493 |
raise ValueError, "Transition with name %s doesn't exists!"%name |
|
494 |
setattr(cls, "removeTransition", removeTransition) |
|
495 |
||
496 |
def addAction(self, name, type): |
|
497 |
if not self.actions: |
|
498 |
self.addActions() |
|
499 |
self.actions.setAction([]) |
|
500 |
action = PLCOpenClasses["actions_action"]() |
|
501 |
action.setName(name) |
|
502 |
action.setBodyType(type) |
|
503 |
self.actions.appendAction(action) |
|
504 |
setattr(cls, "addAction", addAction) |
|
505 |
||
506 |
def getAction(self, name): |
|
507 |
if self.actions: |
|
508 |
for action in self.actions.getAction(): |
|
509 |
if action.getName() == name: |
|
510 |
return action |
|
511 |
return None |
|
512 |
setattr(cls, "getAction", getAction) |
|
513 |
||
514 |
def getActionList(self): |
|
515 |
if self.actions: |
|
516 |
return self.actions.getAction() |
|
517 |
return [] |
|
518 |
setattr(cls, "getActionList", getActionList) |
|
519 |
||
520 |
def removeAction(self, name): |
|
521 |
if self.actions: |
|
522 |
actions = self.actions.getAction() |
|
523 |
i = 0 |
|
524 |
removed = False |
|
525 |
while i < len(actions) and not removed: |
|
526 |
if actions[i].getName() == name: |
|
46 | 527 |
actions.pop(i) |
2 | 528 |
removed = True |
529 |
i += 1 |
|
530 |
if not removed: |
|
531 |
raise ValueError, "Action with name %s doesn't exists!"%name |
|
532 |
setattr(cls, "removeAction", removeAction) |
|
533 |
||
58 | 534 |
def updateElementName(self, old_name, new_name): |
535 |
self.body.updateElementName(old_name, new_name) |
|
536 |
for action in self.getActionList(): |
|
537 |
action.updateElementName(old_name, new_name) |
|
538 |
for transition in self.getTransitionList(): |
|
539 |
transition.updateElementName(old_name, new_name) |
|
540 |
setattr(cls, "updateElementName", updateElementName) |
|
541 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
542 |
cls = PLCOpenClasses.get("transitions_transition", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
543 |
if cls: |
2 | 544 |
setattr(cls, "setBodyType", setBodyType) |
545 |
setattr(cls, "getBodyType", getBodyType) |
|
546 |
setattr(cls, "addInstance", addInstance) |
|
547 |
setattr(cls, "getInstances", getInstances) |
|
548 |
setattr(cls, "getInstance", getInstance) |
|
549 |
setattr(cls, "getRandomInstance", getRandomInstance) |
|
550 |
setattr(cls, "getInstanceByName", getInstanceByName) |
|
551 |
setattr(cls, "removeInstance", removeInstance) |
|
552 |
setattr(cls, "setText", setText) |
|
553 |
setattr(cls, "getText", getText) |
|
554 |
||
58 | 555 |
def updateElementName(self, old_name, new_name): |
556 |
self.body.updateElementName(old_name, new_name) |
|
557 |
setattr(cls, "updateElementName", updateElementName) |
|
558 |
||
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
559 |
def hasBlock(self, name): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
560 |
if self.getBodyType() in ["FBD", "LD", "SFC"]: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
561 |
for instance in self.getInstances(): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
562 |
if isinstance(instance, PLCOpenClasses["block"]) and instance.getInstanceName() == name: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
563 |
return True |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
564 |
return False |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
565 |
setattr(cls, "hasBlock", hasBlock) |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
566 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
567 |
cls = PLCOpenClasses.get("actions_action", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
568 |
if cls: |
2 | 569 |
setattr(cls, "setBodyType", setBodyType) |
570 |
setattr(cls, "getBodyType", getBodyType) |
|
571 |
setattr(cls, "addInstance", addInstance) |
|
572 |
setattr(cls, "getInstances", getInstances) |
|
573 |
setattr(cls, "getInstance", getInstance) |
|
574 |
setattr(cls, "getRandomInstance", getRandomInstance) |
|
575 |
setattr(cls, "getInstanceByName", getInstanceByName) |
|
576 |
setattr(cls, "removeInstance", removeInstance) |
|
577 |
setattr(cls, "setText", setText) |
|
578 |
setattr(cls, "getText", getText) |
|
579 |
||
58 | 580 |
def updateElementName(self, old_name, new_name): |
581 |
self.body.updateElementName(old_name, new_name) |
|
582 |
setattr(cls, "updateElementName", updateElementName) |
|
583 |
||
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
584 |
def hasBlock(self, name): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
585 |
if self.getBodyType() in ["FBD", "LD", "SFC"]: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
586 |
for instance in self.getInstances(): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
587 |
if isinstance(instance, PLCOpenClasses["block"]) and instance.getInstanceName() == name: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
588 |
return True |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
589 |
return False |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
590 |
setattr(cls, "hasBlock", hasBlock) |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
591 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
592 |
cls = PLCOpenClasses.get("body", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
593 |
if cls: |
2 | 594 |
def appendContentInstance(self, name, instance): |
595 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
596 |
self.content["value"].appendContent(name, instance) |
|
597 |
else: |
|
598 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
599 |
setattr(cls, "appendContentInstance", appendContentInstance) |
|
600 |
||
601 |
def getContentInstances(self): |
|
602 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
603 |
instances = [] |
|
604 |
for element in self.content["value"].getContent(): |
|
605 |
instances.append(element["value"]) |
|
606 |
return instances |
|
607 |
else: |
|
608 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
609 |
setattr(cls, "getContentInstances", getContentInstances) |
|
610 |
||
611 |
def getContentInstance(self, id): |
|
612 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
613 |
for element in self.content["value"].getContent(): |
|
614 |
if element["value"].getLocalId() == id: |
|
615 |
return element["value"] |
|
0 | 616 |
return None |
2 | 617 |
else: |
618 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
619 |
setattr(cls, "getContentInstance", getContentInstance) |
|
620 |
||
621 |
def getContentRandomInstance(self, exclude): |
|
622 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
623 |
for element in self.content["value"].getContent(): |
|
624 |
if element["value"].getLocalId() not in exclude: |
|
625 |
return element["value"] |
|
626 |
return None |
|
627 |
else: |
|
628 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
629 |
setattr(cls, "getContentRandomInstance", getContentRandomInstance) |
|
630 |
||
631 |
def getContentInstanceByName(self, name): |
|
632 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
633 |
for element in self.content["value"].getContent(): |
|
634 |
if element["value"].getLocalId() == name: |
|
635 |
return element["value"] |
|
636 |
else: |
|
637 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
638 |
setattr(cls, "getContentInstanceByName", getContentInstanceByName) |
|
639 |
||
640 |
def removeContentInstance(self, id): |
|
641 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
642 |
i = 0 |
|
643 |
removed = False |
|
644 |
elements = self.content["value"].getContent() |
|
645 |
while i < len(elements) and not removed: |
|
646 |
if elements[i]["value"].getLocalId() == id: |
|
647 |
self.content["value"].removeContent(i) |
|
648 |
removed = True |
|
649 |
i += 1 |
|
650 |
if not removed: |
|
651 |
raise ValueError, "Instance with id %d doesn't exists!"%id |
|
652 |
else: |
|
653 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
654 |
setattr(cls, "removeContentInstance", removeContentInstance) |
|
655 |
||
656 |
def setText(self, text): |
|
657 |
if self.content["name"] in ["IL","ST"]: |
|
658 |
self.content["value"].setText(text) |
|
659 |
else: |
|
660 |
raise TypeError, "%s body don't have text!"%self.content["name"] |
|
661 |
setattr(cls, "setText", setText) |
|
662 |
||
663 |
def getText(self): |
|
664 |
if self.content["name"] in ["IL","ST"]: |
|
665 |
return self.content["value"].getText() |
|
666 |
else: |
|
667 |
raise TypeError, "%s body don't have text!"%self.content["name"] |
|
668 |
setattr(cls, "getText", getText) |
|
58 | 669 |
|
670 |
def updateElementName(self, old_name, new_name): |
|
671 |
if self.content["name"] in ["IL", "ST"]: |
|
672 |
self.content["value"].updateElementName(old_name, new_name) |
|
673 |
else: |
|
674 |
for element in self.content["value"].getContent(): |
|
675 |
element["value"].updateElementName(old_name, new_name) |
|
676 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 677 |
|
678 |
def getX(self): |
|
679 |
return self.position.getX() |
|
680 |
||
681 |
def getY(self): |
|
682 |
return self.position.getY() |
|
683 |
||
684 |
def setX(self, x): |
|
685 |
self.position.setX(x) |
|
686 |
||
687 |
def setY(self, y): |
|
688 |
self.position.setY(y) |
|
689 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
690 |
cls = PLCOpenClasses.get("comment", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
691 |
if cls: |
2 | 692 |
setattr(cls, "getX", getX) |
693 |
setattr(cls, "getY", getY) |
|
694 |
setattr(cls, "setX", setX) |
|
695 |
setattr(cls, "setY", setY) |
|
696 |
||
697 |
def setContentText(self, text): |
|
698 |
self.content.setText(text) |
|
699 |
setattr(cls, "setContentText", setContentText) |
|
0 | 700 |
|
2 | 701 |
def getContentText(self): |
702 |
return self.content.getText() |
|
703 |
setattr(cls, "getContentText", getContentText) |
|
58 | 704 |
|
705 |
def updateElementName(self, old_name, new_name): |
|
706 |
self.content.updateElementName(old_name, new_name) |
|
707 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 708 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
709 |
cls = PLCOpenClasses.get("block", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
710 |
if cls: |
2 | 711 |
setattr(cls, "getX", getX) |
712 |
setattr(cls, "getY", getY) |
|
713 |
setattr(cls, "setX", setX) |
|
714 |
setattr(cls, "setY", setY) |
|
715 |
||
58 | 716 |
def updateElementName(self, old_name, new_name): |
717 |
if self.typeName == old_name: |
|
718 |
self.typeName = new_name |
|
719 |
setattr(cls, "updateElementName", updateElementName) |
|
720 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
721 |
cls = PLCOpenClasses.get("inputVariables_variable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
722 |
if cls: |
2 | 723 |
def setConnectorEdge(self, edge): |
724 |
if not self.edge: |
|
725 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
726 |
self.edge.setValue(edge) |
|
727 |
setattr(cls, "setConnectorEdge", setConnectorEdge) |
|
728 |
||
729 |
def getConnectorEdge(self): |
|
730 |
if self.edge: |
|
731 |
return self.edge.getValue() |
|
732 |
return None |
|
733 |
setattr(cls, "getConnectorEdge", getConnectorEdge) |
|
734 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
735 |
cls = PLCOpenClasses.get("outputVariables_variable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
736 |
if cls: |
2 | 737 |
def setConnectorEdge(self, edge): |
738 |
if not self.edge: |
|
739 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
740 |
self.edge.setValue(edge) |
|
741 |
setattr(cls, "setConnectorEdge", setConnectorEdge) |
|
742 |
||
743 |
def getConnectorEdge(self): |
|
744 |
if self.edge: |
|
745 |
return self.edge.getValue() |
|
746 |
return None |
|
747 |
setattr(cls, "getConnectorEdge", getConnectorEdge) |
|
748 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
749 |
cls = PLCOpenClasses.get("leftPowerRail", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
750 |
if cls: |
2 | 751 |
setattr(cls, "getX", getX) |
752 |
setattr(cls, "getY", getY) |
|
753 |
setattr(cls, "setX", setX) |
|
754 |
setattr(cls, "setY", setY) |
|
755 |
||
58 | 756 |
def updateElementName(self, old_name, new_name): |
757 |
pass |
|
758 |
setattr(cls, "updateElementName", updateElementName) |
|
759 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
760 |
cls = PLCOpenClasses.get("rightPowerRail", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
761 |
if cls: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
762 |
setattr(cls, "getX", getX) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
763 |
setattr(cls, "getY", getY) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
764 |
setattr(cls, "setX", setX) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
765 |
setattr(cls, "setY", setY) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
766 |
|
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
767 |
def updateElementName(self, old_name, new_name): |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
768 |
pass |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
769 |
setattr(cls, "updateElementName", updateElementName) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
770 |
|
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
771 |
cls = PLCOpenClasses.get("contact", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
772 |
if cls: |
2 | 773 |
setattr(cls, "getX", getX) |
774 |
setattr(cls, "getY", getY) |
|
775 |
setattr(cls, "setX", setX) |
|
776 |
setattr(cls, "setY", setY) |
|
777 |
||
778 |
def setContactEdge(self, edge): |
|
779 |
if not self.edge: |
|
780 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
781 |
self.edge.setValue(edge) |
|
782 |
setattr(cls, "setContactEdge", setContactEdge) |
|
783 |
||
784 |
def getContactEdge(self): |
|
785 |
if self.edge: |
|
786 |
return self.edge.getValue() |
|
787 |
return None |
|
788 |
setattr(cls, "getContactEdge", getContactEdge) |
|
789 |
||
58 | 790 |
def updateElementName(self, old_name, new_name): |
791 |
if self.variable == old_name: |
|
792 |
self.variable = new_name |
|
793 |
setattr(cls, "updateElementName", updateElementName) |
|
794 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
795 |
cls = PLCOpenClasses.get("coil", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
796 |
if cls: |
2 | 797 |
setattr(cls, "getX", getX) |
798 |
setattr(cls, "getY", getY) |
|
799 |
setattr(cls, "setX", setX) |
|
800 |
setattr(cls, "setY", setY) |
|
801 |
||
802 |
def setCoilStorage(self, edge): |
|
803 |
if not self.storage: |
|
804 |
self.storage = PLCOpenClasses["storageModifierType"]() |
|
805 |
self.storage.setValue(edge) |
|
806 |
setattr(cls, "setCoilStorage", setCoilStorage) |
|
807 |
||
808 |
def getCoilStorage(self): |
|
809 |
if self.storage: |
|
810 |
return self.storage.getValue() |
|
811 |
return None |
|
812 |
setattr(cls, "getCoilStorage", getCoilStorage) |
|
813 |
||
58 | 814 |
def updateElementName(self, old_name, new_name): |
815 |
if self.variable == old_name: |
|
816 |
self.variable = new_name |
|
817 |
setattr(cls, "updateElementName", updateElementName) |
|
818 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
819 |
cls = PLCOpenClasses.get("step", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
820 |
if cls: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
821 |
setattr(cls, "getX", getX) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
822 |
setattr(cls, "getY", getY) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
823 |
setattr(cls, "setX", setX) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
824 |
setattr(cls, "setY", setY) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
825 |
|
58 | 826 |
def updateElementName(self, old_name, new_name): |
827 |
pass |
|
828 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 829 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
830 |
cls = PLCOpenClasses.get("transition", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
831 |
if cls: |
2 | 832 |
setattr(cls, "getX", getX) |
833 |
setattr(cls, "getY", getY) |
|
834 |
setattr(cls, "setX", setX) |
|
835 |
setattr(cls, "setY", setY) |
|
836 |
||
837 |
def setConditionContent(self, type, value): |
|
838 |
if not self.condition: |
|
839 |
self.addCondition() |
|
840 |
if type == "reference": |
|
841 |
condition = PLCOpenClasses["condition_reference"]() |
|
842 |
condition.setName(value) |
|
843 |
elif type == "inline": |
|
844 |
condition = PLCOpenClasses["condition_inline"]() |
|
845 |
condition.setContent("ST", PLCOpenClasses["formattedText"]()) |
|
846 |
condition.setText(value) |
|
69 | 847 |
elif type == "connection": |
848 |
condition = [] |
|
2 | 849 |
self.condition.setContent(type, condition) |
850 |
setattr(cls, "setConditionContent", setConditionContent) |
|
0 | 851 |
|
2 | 852 |
def getConditionContent(self): |
853 |
if self.condition: |
|
854 |
content = self.condition.getContent() |
|
855 |
values = {"type" : content["name"]} |
|
856 |
if values["type"] == "reference": |
|
857 |
values["value"] = content["value"].getName() |
|
858 |
elif values["type"] == "inline": |
|
859 |
values["value"] = content["value"].getText() |
|
860 |
return values |
|
861 |
return "" |
|
862 |
setattr(cls, "getConditionContent", getConditionContent) |
|
863 |
||
58 | 864 |
def updateElementName(self, old_name, new_name): |
865 |
if self.condition: |
|
866 |
content = self.condition.getContent() |
|
867 |
if content["name"] == "reference": |
|
868 |
if content["value"].getName() == old_name: |
|
869 |
content["value"].setName(new_name) |
|
870 |
elif content["name"] == "inline": |
|
871 |
content["value"].updateElementName(old_name, new_name) |
|
872 |
setattr(cls, "updateElementName", updateElementName) |
|
873 |
||
63
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
874 |
def addConnection(self): |
69 | 875 |
if self.condition: |
63
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
876 |
content = self.condition.getContent() |
69 | 877 |
if content["name"] != "connection": |
878 |
self.condition.setContent("connection", []) |
|
879 |
content = self.condition.getContent() |
|
880 |
content["value"].append(PLCOpenClasses["connection"]()) |
|
63
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
881 |
setattr(cls, "addConnection", addConnection) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
882 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
883 |
def removeConnection(self, idx): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
884 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
885 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
886 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
887 |
content["value"].pop(idx) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
888 |
setattr(cls, "removeConnection", removeConnection) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
889 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
890 |
def removeConnections(self): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
891 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
892 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
893 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
894 |
content["value"] = [] |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
895 |
setattr(cls, "removeConnections", removeConnections) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
896 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
897 |
def getConnections(self): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
898 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
899 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
900 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
901 |
return content["value"] |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
902 |
setattr(cls, "getConnections", getConnections) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
903 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
904 |
def setConnectionId(self, idx, id): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
905 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
906 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
907 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
908 |
content["value"][idx].setRefLocalId(id) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
909 |
setattr(cls, "setConnectionId", setConnectionId) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
910 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
911 |
def getConnectionId(self, idx): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
912 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
913 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
914 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
915 |
return content["value"][idx].getRefLocalId() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
916 |
return None |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
917 |
setattr(cls, "getConnectionId", getConnectionId) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
918 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
919 |
def setConnectionPoints(self, idx, points): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
920 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
921 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
922 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
923 |
content["value"][idx].setPoints(points) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
924 |
setattr(cls, "setConnectionPoints", setConnectionPoints) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
925 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
926 |
def getConnectionPoints(self, idx): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
927 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
928 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
929 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
930 |
return content["value"][idx].getPoints() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
931 |
return None |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
932 |
setattr(cls, "getConnectionPoints", getConnectionPoints) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
933 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
934 |
def setConnectionParameter(self, idx, parameter): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
935 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
936 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
937 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
938 |
content["value"][idx].setFormalParameter(parameter) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
939 |
setattr(cls, "setConnectionParameter", setConnectionParameter) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
940 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
941 |
def getConnectionParameter(self, idx): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
942 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
943 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
944 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
945 |
return content["value"][idx].getFormalParameter() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
946 |
return None |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
947 |
setattr(cls, "getConnectionParameter", getConnectionParameter) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
948 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
949 |
setattr(cls, "addConnection", addConnection) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
950 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
951 |
cls = PLCOpenClasses.get("selectionDivergence", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
952 |
if cls: |
2 | 953 |
setattr(cls, "getX", getX) |
954 |
setattr(cls, "getY", getY) |
|
955 |
setattr(cls, "setX", setX) |
|
956 |
setattr(cls, "setY", setY) |
|
957 |
||
58 | 958 |
def updateElementName(self, old_name, new_name): |
959 |
pass |
|
960 |
setattr(cls, "updateElementName", updateElementName) |
|
961 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
962 |
cls = PLCOpenClasses.get("selectionConvergence", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
963 |
if cls: |
2 | 964 |
setattr(cls, "getX", getX) |
965 |
setattr(cls, "getY", getY) |
|
966 |
setattr(cls, "setX", setX) |
|
967 |
setattr(cls, "setY", setY) |
|
968 |
||
58 | 969 |
def updateElementName(self, old_name, new_name): |
970 |
pass |
|
971 |
setattr(cls, "updateElementName", updateElementName) |
|
972 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
973 |
cls = PLCOpenClasses.get("simultaneousDivergence", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
974 |
if cls: |
2 | 975 |
setattr(cls, "getX", getX) |
976 |
setattr(cls, "getY", getY) |
|
977 |
setattr(cls, "setX", setX) |
|
978 |
setattr(cls, "setY", setY) |
|
979 |
||
58 | 980 |
def updateElementName(self, old_name, new_name): |
981 |
pass |
|
982 |
setattr(cls, "updateElementName", updateElementName) |
|
983 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
984 |
cls = PLCOpenClasses.get("simultaneousConvergence", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
985 |
if cls: |
2 | 986 |
setattr(cls, "getX", getX) |
987 |
setattr(cls, "getY", getY) |
|
988 |
setattr(cls, "setX", setX) |
|
989 |
setattr(cls, "setY", setY) |
|
58 | 990 |
|
991 |
def updateElementName(self, old_name, new_name): |
|
992 |
pass |
|
993 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 994 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
995 |
cls = PLCOpenClasses.get("jumpStep", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
996 |
if cls: |
2 | 997 |
setattr(cls, "getX", getX) |
998 |
setattr(cls, "getY", getY) |
|
999 |
setattr(cls, "setX", setX) |
|
1000 |
setattr(cls, "setY", setY) |
|
58 | 1001 |
|
1002 |
def updateElementName(self, old_name, new_name): |
|
1003 |
pass |
|
1004 |
setattr(cls, "updateElementName", updateElementName) |
|
1005 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1006 |
cls = PLCOpenClasses.get("actionBlock_action", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1007 |
if cls: |
2 | 1008 |
def setQualifierValue(self, value): |
1009 |
if self.qualifier: |
|
1010 |
self.qualifier.setValue(value) |
|
1011 |
setattr(cls, "setQualifierValue", setQualifierValue) |
|
1012 |
||
1013 |
def getQualifierValue(self): |
|
1014 |
if self.qualifier: |
|
1015 |
return self.qualifier.getValue() |
|
1016 |
return None |
|
1017 |
setattr(cls, "getQualifierValue", getQualifierValue) |
|
1018 |
||
1019 |
def setReferenceName(self, name): |
|
1020 |
if self.reference: |
|
1021 |
self.reference.setName(name) |
|
1022 |
setattr(cls, "setReferenceName", setReferenceName) |
|
1023 |
||
1024 |
def getReferenceName(self): |
|
1025 |
if self.reference: |
|
1026 |
return self.reference.getName() |
|
1027 |
return None |
|
1028 |
setattr(cls, "getReferenceName", getReferenceName) |
|
1029 |
||
1030 |
def setInlineContent(self, content): |
|
1031 |
if self.inline: |
|
1032 |
self.inline.setContent("ST", PLCOpenClasses["formattedText"]()) |
|
1033 |
self.inline.setText(content) |
|
1034 |
setattr(cls, "setInlineContent", setInlineContent) |
|
1035 |
||
1036 |
def getInlineContent(self): |
|
1037 |
if self.inline: |
|
1038 |
return self.inline.getText() |
|
1039 |
return None |
|
1040 |
setattr(cls, "getInlineContent", getInlineContent) |
|
1041 |
||
58 | 1042 |
def updateElementName(self, old_name, new_name): |
1043 |
if self.reference and self.reference.getName() == old_name: |
|
1044 |
self.reference.setName(new_name) |
|
1045 |
if self.inline: |
|
1046 |
self.inline.updateElementName(old_name, new_name) |
|
1047 |
setattr(cls, "updateElementName", updateElementName) |
|
1048 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1049 |
cls = PLCOpenClasses.get("actionBlock", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1050 |
if cls: |
2 | 1051 |
setattr(cls, "getX", getX) |
1052 |
setattr(cls, "getY", getY) |
|
1053 |
setattr(cls, "setX", setX) |
|
1054 |
setattr(cls, "setY", setY) |
|
1055 |
||
1056 |
def setActions(self, actions): |
|
1057 |
self.action = [] |
|
1058 |
for params in actions: |
|
1059 |
action = PLCOpenClasses["actionBlock_action"]() |
|
1060 |
action.addQualifier() |
|
1061 |
action.setQualifierValue(params["qualifier"]) |
|
1062 |
if params["type"] == "reference": |
|
1063 |
action.addReference() |
|
1064 |
action.setReferenceName(params["value"]) |
|
0 | 1065 |
else: |
2 | 1066 |
action.addInline() |
1067 |
action.setInlineContent(params["value"]) |
|
1068 |
if "duration" in params: |
|
1069 |
action.setDuration(params["duration"]) |
|
1070 |
if "indicator" in params: |
|
1071 |
action.setIndicator(params["indicator"]) |
|
1072 |
self.action.append(action) |
|
1073 |
setattr(cls, "setActions", setActions) |
|
1074 |
||
1075 |
def getActions(self): |
|
1076 |
actions = [] |
|
1077 |
for action in self.action: |
|
1078 |
params = {} |
|
1079 |
params["qualifier"] = action.getQualifierValue() |
|
1080 |
if action.getReference(): |
|
1081 |
params["type"] = "reference" |
|
1082 |
params["value"] = action.getReferenceName() |
|
1083 |
elif action.getInline(): |
|
1084 |
params["type"] = "inline" |
|
1085 |
params["value"] = action.getInlineContent() |
|
1086 |
duration = action.getDuration() |
|
1087 |
if duration: |
|
1088 |
params["duration"] = duration |
|
1089 |
indicator = action.getIndicator() |
|
1090 |
if indicator: |
|
1091 |
params["indicator"] = indicator |
|
1092 |
actions.append(params) |
|
1093 |
return actions |
|
1094 |
setattr(cls, "getActions", getActions) |
|
1095 |
||
58 | 1096 |
def updateElementName(self, old_name, new_name): |
1097 |
for action in self.action: |
|
1098 |
action.updateElementName(old_name, new_name) |
|
1099 |
setattr(cls, "updateElementName", updateElementName) |
|
1100 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1101 |
cls = PLCOpenClasses.get("inVariable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1102 |
if cls: |
2 | 1103 |
setattr(cls, "getX", getX) |
1104 |
setattr(cls, "getY", getY) |
|
1105 |
setattr(cls, "setX", setX) |
|
1106 |
setattr(cls, "setY", setY) |
|
1107 |
||
1108 |
def setConnectorEdge(self, edge): |
|
1109 |
if not self.edge: |
|
1110 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
1111 |
self.edge.setValue(edge) |
|
1112 |
setattr(cls, "setConnectorEdge", setConnectorEdge) |
|
1113 |
||
1114 |
def getConnectorEdge(self): |
|
1115 |
if self.edge: |
|
1116 |
return self.edge.getValue() |
|
1117 |
return None |
|
1118 |
setattr(cls, "getConnectorEdge", getConnectorEdge) |
|
58 | 1119 |
|
1120 |
def updateElementName(self, old_name, new_name): |
|
1121 |
if self.expression == old_name: |
|
1122 |
self.expression = new_name |
|
1123 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 1124 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1125 |
cls = PLCOpenClasses.get("outVariable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1126 |
if cls: |
2 | 1127 |
setattr(cls, "getX", getX) |
1128 |
setattr(cls, "getY", getY) |
|
1129 |
setattr(cls, "setX", setX) |
|
1130 |
setattr(cls, "setY", setY) |
|
1131 |
||
1132 |
def setConnectorEdge(self, edge): |
|
1133 |
if not self.edge: |
|
1134 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
1135 |
self.edge.setValue(edge) |
|
1136 |
setattr(cls, "setConnectorEdge", setConnectorEdge) |
|
1137 |
||
1138 |
def getConnectorEdge(self): |
|
1139 |
if self.edge: |
|
1140 |
return self.edge.getValue() |
|
1141 |
return None |
|
1142 |
setattr(cls, "getConnectorEdge", getConnectorEdge) |
|
1143 |
||
58 | 1144 |
def updateElementName(self, old_name, new_name): |
1145 |
if self.expression == old_name: |
|
1146 |
self.expression = new_name |
|
1147 |
setattr(cls, "updateElementName", updateElementName) |
|
1148 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1149 |
cls = PLCOpenClasses.get("inOutVariable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1150 |
if cls: |
2 | 1151 |
setattr(cls, "getX", getX) |
1152 |
setattr(cls, "getY", getY) |
|
1153 |
setattr(cls, "setX", setX) |
|
1154 |
setattr(cls, "setY", setY) |
|
1155 |
||
1156 |
def setInputEdge(self, edge): |
|
1157 |
if not self.edgeIn: |
|
1158 |
self.edgeIn = PLCOpenClasses["edgeModifierType"]() |
|
1159 |
self.edgeIn.setValue(edge) |
|
1160 |
setattr(cls, "setInputEdge", setInputEdge) |
|
1161 |
||
1162 |
def getInputEdge(self): |
|
1163 |
if self.edgeIn: |
|
1164 |
return self.edgeIn.getValue() |
|
1165 |
return None |
|
1166 |
setattr(cls, "getInputEdge", getInputEdge) |
|
1167 |
||
1168 |
def setOutputEdge(self, edge): |
|
1169 |
if not self.edgeOut: |
|
1170 |
self.edgeOut = PLCOpenClasses["edgeModifierType"]() |
|
1171 |
self.edgeOut.setValue(edge) |
|
1172 |
setattr(cls, "setInputEdge", setInputEdge) |
|
1173 |
||
1174 |
def getOutputEdge(self): |
|
1175 |
if self.edgeOut: |
|
1176 |
return self.edgeOut.getValue() |
|
1177 |
return None |
|
1178 |
setattr(cls, "getOutputEdge", getOutputEdge) |
|
1179 |
||
58 | 1180 |
def updateElementName(self, old_name, new_name): |
1181 |
if self.expression == old_name: |
|
1182 |
self.expression = new_name |
|
1183 |
setattr(cls, "updateElementName", updateElementName) |
|
1184 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1185 |
cls = PLCOpenClasses.get("continuation", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1186 |
if cls: |
2 | 1187 |
setattr(cls, "getX", getX) |
1188 |
setattr(cls, "getY", getY) |
|
1189 |
setattr(cls, "setX", setX) |
|
1190 |
setattr(cls, "setY", setY) |
|
58 | 1191 |
|
1192 |
def updateElementName(self, old_name, new_name): |
|
1193 |
pass |
|
1194 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 1195 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1196 |
cls = PLCOpenClasses.get("connector", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1197 |
if cls: |
2 | 1198 |
setattr(cls, "getX", getX) |
1199 |
setattr(cls, "getY", getY) |
|
1200 |
setattr(cls, "setX", setX) |
|
1201 |
setattr(cls, "setY", setY) |
|
58 | 1202 |
|
1203 |
def updateElementName(self, old_name, new_name): |
|
1204 |
pass |
|
1205 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 1206 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1207 |
cls = PLCOpenClasses.get("connection", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1208 |
if cls: |
2 | 1209 |
def setPoints(self, points): |
1210 |
self.position = [] |
|
1211 |
for point in points: |
|
1212 |
position = PLCOpenClasses["position"]() |
|
1213 |
position.setX(point.x) |
|
1214 |
position.setY(point.y) |
|
1215 |
self.position.append(position) |
|
1216 |
setattr(cls, "setPoints", setPoints) |
|
1217 |
||
1218 |
def getPoints(self): |
|
1219 |
points = [] |
|
1220 |
for position in self.position: |
|
1221 |
points.append((position.getX(),position.getY())) |
|
1222 |
return points |
|
1223 |
setattr(cls, "getPoints", getPoints) |
|
1224 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1225 |
cls = PLCOpenClasses.get("connectionPointIn", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1226 |
if cls: |
2 | 1227 |
def setRelPosition(self, x, y): |
1228 |
self.relPosition = PLCOpenClasses["position"]() |
|
1229 |
self.relPosition.setX(x) |
|
1230 |
self.relPosition.setY(y) |
|
1231 |
setattr(cls, "setRelPosition", setRelPosition) |
|
1232 |
||
1233 |
def getRelPosition(self): |
|
1234 |
if self.relPosition: |
|
1235 |
return self.relPosition.getX(), self.relPosition.getY() |
|
1236 |
else: |
|
0 | 1237 |
return self.relPosition |
2 | 1238 |
setattr(cls, "getRelPosition", getRelPosition) |
1239 |
||
1240 |
def addConnection(self): |
|
1241 |
if not self.content: |
|
1242 |
self.content = {"name":"connection","value":[PLCOpenClasses["connection"]()]} |
|
1243 |
else: |
|
1244 |
self.content["value"].append(PLCOpenClasses["connection"]()) |
|
1245 |
setattr(cls, "addConnection", addConnection) |
|
1246 |
||
1247 |
def removeConnection(self, idx): |
|
1248 |
if self.content: |
|
1249 |
self.content["value"].pop(idx) |
|
1250 |
if len(self.content["value"]) == 0: |
|
1251 |
self.content = None |
|
1252 |
setattr(cls, "removeConnection", removeConnection) |
|
1253 |
||
1254 |
def removeConnections(self): |
|
1255 |
if self.content: |
|
1256 |
self.content = None |
|
1257 |
setattr(cls, "removeConnections", removeConnections) |
|
1258 |
||
1259 |
def getConnections(self): |
|
1260 |
if self.content: |
|
1261 |
return self.content["value"] |
|
1262 |
setattr(cls, "getConnections", getConnections) |
|
1263 |
||
1264 |
def setConnectionId(self, idx, id): |
|
1265 |
if self.content: |
|
1266 |
self.content["value"][idx].setRefLocalId(id) |
|
1267 |
setattr(cls, "setConnectionId", setConnectionId) |
|
1268 |
||
1269 |
def getConnectionId(self, idx): |
|
1270 |
if self.content: |
|
1271 |
return self.content["value"][idx].getRefLocalId() |
|
1272 |
return None |
|
1273 |
setattr(cls, "getConnectionId", getConnectionId) |
|
1274 |
||
1275 |
def setConnectionPoints(self, idx, points): |
|
1276 |
if self.content: |
|
1277 |
self.content["value"][idx].setPoints(points) |
|
1278 |
setattr(cls, "setConnectionPoints", setConnectionPoints) |
|
1279 |
||
1280 |
def getConnectionPoints(self, idx): |
|
1281 |
if self.content: |
|
1282 |
return self.content["value"][idx].getPoints() |
|
1283 |
return None |
|
1284 |
setattr(cls, "getConnectionPoints", getConnectionPoints) |
|
1285 |
||
27 | 1286 |
def setConnectionParameter(self, idx, parameter): |
1287 |
if self.content: |
|
1288 |
self.content["value"][idx].setFormalParameter(parameter) |
|
1289 |
setattr(cls, "setConnectionParameter", setConnectionParameter) |
|
1290 |
||
1291 |
def getConnectionParameter(self, idx): |
|
1292 |
if self.content: |
|
1293 |
return self.content["value"][idx].getFormalParameter() |
|
1294 |
return None |
|
1295 |
setattr(cls, "getConnectionParameter", getConnectionParameter) |
|
1296 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1297 |
cls = PLCOpenClasses.get("connectionPointOut", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1298 |
if cls: |
2 | 1299 |
def setRelPosition(self, x, y): |
1300 |
self.relPosition = PLCOpenClasses["position"]() |
|
1301 |
self.relPosition.setX(x) |
|
1302 |
self.relPosition.setY(y) |
|
1303 |
setattr(cls, "setRelPosition", setRelPosition) |
|
1304 |
||
1305 |
def getRelPosition(self): |
|
1306 |
if self.relPosition: |
|
1307 |
return self.relPosition.getX(), self.relPosition.getY() |
|
1308 |
return self.relPosition |
|
1309 |
setattr(cls, "getRelPosition", getRelPosition) |
|
1310 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1311 |
cls = PLCOpenClasses.get("value", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1312 |
if cls: |
2 | 1313 |
def setValue(self, value): |
1314 |
try: |
|
1315 |
value = eval(value) |
|
1316 |
except: |
|
1317 |
pass |
|
1318 |
if type(value) == ListType: |
|
1319 |
arrayValue = PLCOpenClasses["value_arrayValue"]() |
|
1320 |
arrayValue.setValue(value) |
|
1321 |
self.content = {"name":"arrayValue","value":arrayValue} |
|
1322 |
elif type(value) == DictType: |
|
1323 |
structValue = PLCOpenClasses["value_structValue"]() |
|
1324 |
structValue.setValue(value) |
|
1325 |
self.content = {"name":"structValue","value":structValue} |
|
1326 |
else: |
|
1327 |
simpleValue = PLCOpenClasses["value_simpleValue"]() |
|
1328 |
simpleValue.setValue(str(value)) |
|
1329 |
self.content = {"name":"simpleValue","value":simpleValue} |
|
1330 |
setattr(cls, "setValue", setValue) |
|
1331 |
||
1332 |
def getValue(self): |
|
1333 |
value = self.content["value"].getValue() |
|
1334 |
try: |
|
1335 |
value = eval(value) |
|
1336 |
except: |
|
1337 |
pass |
|
1338 |
return value |
|
1339 |
setattr(cls, "getValue", getValue) |
|
1340 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1341 |
cls = PLCOpenClasses.get("value_arrayValue", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1342 |
if cls: |
2 | 1343 |
def setValue(self, array): |
1344 |
self.value = [] |
|
1345 |
for value in array: |
|
1346 |
element = PLCOpenClasses["arrayValue_value"]() |
|
1347 |
element.setValue(value) |
|
1348 |
self.value.append(element) |
|
1349 |
setattr(cls, "setValue", setValue) |
|
1350 |
||
1351 |
def getValue(self): |
|
1352 |
return [element.getValue() for element in self.value] |
|
1353 |
setattr(cls, "getValue", getValue) |
|
1354 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1355 |
cls = PLCOpenClasses.get("value_structValue", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1356 |
if cls: |
2 | 1357 |
def setValue(self, dict): |
1358 |
self.value = [] |
|
1359 |
for name,value in dict.items(): |
|
1360 |
element = PLCOpenClasses["structValue_value"]() |
|
1361 |
element.setMember(name) |
|
1362 |
element.setValue(value) |
|
1363 |
self.value.append(element) |
|
1364 |
setattr(cls, "setValue", setValue) |
|
1365 |
||
1366 |
def getValue(self): |
|
1367 |
value = {} |
|
1368 |
for element in self.value: |
|
1369 |
value[element.getMember()] = element.getValue() |
|
1370 |
return value |
|
1371 |
setattr(cls, "getValue", getValue) |