author | greg |
Mon, 31 Dec 2007 13:36:11 +0100 | |
changeset 139 | c2d093402005 |
parent 138 | 9c74d00ce93e |
child 140 | 06d28f03f6f4 |
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 |
|
5 | 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 |
# |
5 | 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 |
||
25 |
import wx |
|
26 |
||
27 |
from GraphicCommons import * |
|
28 |
from plcopen.structures import * |
|
29 |
||
30 |
def GetWireSize(block): |
|
31 |
if isinstance(block, SFC_Step): |
|
32 |
return SFC_WIRE_MIN_SIZE + block.GetActionExtraLineNumber() * SFC_ACTION_MIN_SIZE[1] |
|
33 |
else: |
|
34 |
return SFC_WIRE_MIN_SIZE |
|
35 |
||
36 |
#------------------------------------------------------------------------------- |
|
37 |
# Sequencial Function Chart Step |
|
38 |
#------------------------------------------------------------------------------- |
|
39 |
||
40 |
""" |
|
41 |
Class that implements the graphic representation of a step |
|
42 |
""" |
|
43 |
||
44 |
class SFC_Step(Graphic_Element): |
|
45 |
||
46 |
# Create a new step |
|
47 |
def __init__(self, parent, name, initial = False, id = None): |
|
48 |
Graphic_Element.__init__(self, parent) |
|
49 |
self.Name = name |
|
50 |
self.Initial = initial |
|
51 |
self.Id = id |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
52 |
self.Size = wx.Size(SFC_STEP_DEFAULT_SIZE[0], SFC_STEP_DEFAULT_SIZE[1]) |
0 | 53 |
# Create an input and output connector |
54 |
if not self.Initial: |
|
108 | 55 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
0 | 56 |
else: |
57 |
self.Input = None |
|
58 |
self.Output = None |
|
59 |
self.Action = None |
|
60 |
||
61 |
# Destructor |
|
62 |
def __del__(self): |
|
63 |
self.Input = None |
|
64 |
self.Output = None |
|
65 |
self.Action = None |
|
66 |
||
112 | 67 |
# Make a clone of this SFC_Step |
68 |
def Clone(self, id = None, pos = None): |
|
69 |
step = SFC_Step(self.Parent, self.Type, self.Name, id) |
|
70 |
step.SetSize(self.Size[0], self.Size[1]) |
|
71 |
if pos is not None: |
|
72 |
step.SetPosition(pos.x, pos.y) |
|
73 |
step.Input = self.Input.Clone(step) |
|
74 |
step.Output = self.Output.Clone(step) |
|
75 |
step.Action = self.Action.Clone(step) |
|
76 |
return step |
|
77 |
||
0 | 78 |
# Delete this step by calling the appropriate method |
79 |
def Delete(self): |
|
80 |
self.Parent.DeleteStep(self) |
|
81 |
||
82 |
# Unconnect input and output |
|
83 |
def Clean(self): |
|
84 |
if self.Input: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
85 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 86 |
if self.Output: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
87 |
self.Output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 88 |
if self.Action: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
89 |
self.Action.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 90 |
|
91 |
# Add output connector to step |
|
71 | 92 |
def AddInput(self): |
93 |
if not self.Input: |
|
108 | 94 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
71 | 95 |
self.RefreshBoundingBox() |
96 |
||
97 |
# Remove output connector from step |
|
98 |
def RemoveInput(self): |
|
99 |
if self.Input: |
|
100 |
self.Input.UnConnect() |
|
101 |
self.Input = None |
|
102 |
self.RefreshBoundingBox() |
|
103 |
||
104 |
# Add output connector to step |
|
0 | 105 |
def AddOutput(self): |
106 |
if not self.Output: |
|
108 | 107 |
self.Output = Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH) |
0 | 108 |
self.RefreshBoundingBox() |
109 |
||
110 |
# Remove output connector from step |
|
111 |
def RemoveOutput(self): |
|
112 |
if self.Output: |
|
113 |
self.Output.UnConnect() |
|
114 |
self.Output = None |
|
115 |
self.RefreshBoundingBox() |
|
116 |
||
117 |
# Add action connector to step |
|
118 |
def AddAction(self): |
|
119 |
if not self.Action: |
|
108 | 120 |
self.Action = Connector(self, "", None, wx.Point(self.Size[0], self.Size[1] / 2), EAST) |
0 | 121 |
self.RefreshBoundingBox() |
122 |
||
123 |
# Remove action connector from step |
|
124 |
def RemoveAction(self): |
|
125 |
if self.Action: |
|
126 |
self.Action.UnConnect() |
|
127 |
self.Action = None |
|
128 |
self.RefreshBoundingBox() |
|
129 |
||
130 |
# Refresh the step bounding box |
|
131 |
def RefreshBoundingBox(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
132 |
dc = wx.ClientDC(self.Parent) |
0 | 133 |
# Calculate the bounding box size |
134 |
if self.Action: |
|
135 |
bbx_width = self.Size[0] + CONNECTOR_SIZE |
|
136 |
else: |
|
137 |
bbx_width = self.Size[0] |
|
138 |
if self.Initial: |
|
139 |
bbx_y = self.Pos.y |
|
140 |
bbx_height = self.Size[1] |
|
141 |
if self.Output: |
|
142 |
bbx_height += CONNECTOR_SIZE |
|
143 |
else: |
|
144 |
bbx_y = self.Pos.y - CONNECTOR_SIZE |
|
145 |
bbx_height = self.Size[1] + CONNECTOR_SIZE |
|
146 |
if self.Output: |
|
147 |
bbx_height += CONNECTOR_SIZE |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
148 |
#self.BoundingBox = wx.Rect(self.Pos.x, bbx_y, bbx_width + 1, bbx_height + 1) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
149 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
0 | 150 |
|
151 |
# Refresh the positions of the step connectors |
|
152 |
def RefreshConnectors(self): |
|
153 |
# Update input position if it exists |
|
154 |
if self.Input: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
155 |
self.Input.SetPosition(wx.Point(self.Size[0] / 2, 0)) |
0 | 156 |
# Update output position |
157 |
if self.Output: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
158 |
self.Output.SetPosition(wx.Point(self.Size[0] / 2, self.Size[1])) |
0 | 159 |
# Update action position if it exists |
160 |
if self.Action: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
161 |
self.Action.SetPosition(wx.Point(self.Size[0], self.Size[1] / 2)) |
0 | 162 |
self.RefreshConnected() |
163 |
||
164 |
# Refresh the position of wires connected to step |
|
165 |
def RefreshConnected(self, exclude = []): |
|
166 |
if self.Input: |
|
167 |
self.Input.MoveConnected(exclude) |
|
168 |
if self.Output: |
|
169 |
self.Output.MoveConnected(exclude) |
|
170 |
if self.Action: |
|
171 |
self.Action.MoveConnected(exclude) |
|
172 |
||
173 |
# Returns the step connector that starts with the point given if it exists |
|
27 | 174 |
def GetConnector(self, position, name = None): |
175 |
# if a name is given |
|
176 |
if name: |
|
177 |
# Test input, output and action connector if they exists |
|
178 |
if self.Input and name == self.Input.GetName(): |
|
179 |
return self.Input |
|
180 |
if self.Output and name == self.Output.GetName(): |
|
181 |
return self.Output |
|
182 |
if self.Action and name == self.Action.GetName(): |
|
183 |
return self.Action |
|
0 | 184 |
# Test input connector if it exists |
185 |
if self.Input: |
|
186 |
input_pos = self.Input.GetRelPosition() |
|
187 |
if position.x == self.Pos.x + input_pos.x and position.y == self.Pos.y + input_pos.y: |
|
188 |
return self.Input |
|
189 |
# Test output connector if it exists |
|
190 |
if self.Output: |
|
191 |
output_pos = self.Output.GetRelPosition() |
|
192 |
if position.x == self.Pos.x + output_pos.x and position.y == self.Pos.y + output_pos.y: |
|
193 |
return self.Output |
|
194 |
# Test action connector if it exists |
|
195 |
if self.Action: |
|
196 |
action_pos = self.Action.GetRelPosition() |
|
197 |
if position.x == self.Pos.x + action_pos.x and position.y == self.Pos.y + action_pos.y: |
|
198 |
return self.Action |
|
199 |
return None |
|
200 |
||
201 |
# Returns input and output step connectors |
|
202 |
def GetConnectors(self): |
|
203 |
return {"input":self.Input,"output":self.Output,"action":self.Action} |
|
204 |
||
205 |
# Test if point given is on step input or output connector |
|
206 |
def TestConnector(self, pt, exclude=True): |
|
207 |
# Test input connector if it exists |
|
208 |
if self.Input and self.Input.TestPoint(pt, exclude): |
|
209 |
return self.Input |
|
210 |
# Test output connector |
|
211 |
if self.Output and self.Output.TestPoint(pt, exclude): |
|
212 |
return self.Output |
|
108 | 213 |
# Test action connector |
214 |
if self.Action and self.Action.TestPoint(pt, exclude): |
|
215 |
return self.Action |
|
0 | 216 |
return None |
217 |
||
218 |
# Changes the step name |
|
219 |
def SetName(self, name): |
|
220 |
self.Name = name |
|
221 |
||
222 |
# Returns the step name |
|
223 |
def GetName(self): |
|
224 |
return self.Name |
|
225 |
||
226 |
# Returns the step initial property |
|
227 |
def GetInitial(self): |
|
228 |
return self.Initial |
|
229 |
||
230 |
# Returns the connector connected to input |
|
231 |
def GetPreviousConnector(self): |
|
232 |
if self.Input: |
|
233 |
wires = self.Input.GetWires() |
|
234 |
if len(wires) == 1: |
|
235 |
return wires[0][0].EndConnected |
|
236 |
return None |
|
237 |
||
238 |
# Returns the connector connected to output |
|
239 |
def GetNextConnector(self): |
|
240 |
if self.Output: |
|
241 |
wires = self.Output.GetWires() |
|
242 |
if len(wires) == 1: |
|
243 |
return wires[0][0].StartConnected |
|
244 |
return None |
|
245 |
||
246 |
# Returns the connector connected to action |
|
247 |
def GetActionConnector(self): |
|
248 |
if self.Action: |
|
249 |
wires = self.Action.GetWires() |
|
250 |
if len(wires) == 1: |
|
251 |
return wires[0][0].StartConnected |
|
252 |
return None |
|
253 |
||
254 |
# Returns the number of action line |
|
255 |
def GetActionExtraLineNumber(self): |
|
256 |
if self.Action: |
|
257 |
wires = self.Action.GetWires() |
|
258 |
if len(wires) != 1: |
|
259 |
return 0 |
|
260 |
action_block = wires[0][0].StartConnected.GetParentBlock() |
|
261 |
return max(0, action_block.GetLineNumber() - 1) |
|
262 |
return 0 |
|
263 |
||
264 |
# Returns the step minimum size |
|
265 |
def GetMinSize(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
266 |
dc = wx.ClientDC(self.Parent) |
0 | 267 |
text_width, text_height = dc.GetTextExtent(self.Name) |
268 |
if self.Initial: |
|
269 |
return text_width + 14, text_height + 14 |
|
270 |
else: |
|
271 |
return text_width + 10, text_height + 10 |
|
272 |
||
273 |
# Updates the step size |
|
274 |
def UpdateSize(self, width, height): |
|
275 |
diffx = self.Size.GetWidth() / 2 - width / 2 |
|
276 |
diffy = height - self.Size.GetHeight() |
|
277 |
self.Move(diffx, 0) |
|
278 |
Graphic_Element.SetSize(self, width, height) |
|
108 | 279 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
280 |
self.RefreshConnected() |
|
281 |
else: |
|
282 |
self.RefreshOutputPosition((0, diffy)) |
|
0 | 283 |
|
284 |
# Align input element with this step |
|
285 |
def RefreshInputPosition(self): |
|
286 |
if self.Input: |
|
287 |
current_pos = self.Input.GetPosition(False) |
|
288 |
input = self.GetPreviousConnector() |
|
289 |
if input: |
|
290 |
input_pos = input.GetPosition(False) |
|
291 |
diffx = current_pos.x - input_pos.x |
|
292 |
input_block = input.GetParentBlock() |
|
293 |
if isinstance(input_block, SFC_Divergence): |
|
294 |
input_block.MoveConnector(input, diffx) |
|
295 |
else: |
|
296 |
if isinstance(input_block, SFC_Step): |
|
297 |
input_block.MoveActionBlock((diffx, 0)) |
|
298 |
input_block.Move(diffx, 0) |
|
299 |
input_block.RefreshInputPosition() |
|
300 |
||
301 |
# Align output element with this step |
|
302 |
def RefreshOutputPosition(self, move = None): |
|
303 |
if self.Output: |
|
304 |
wires = self.Output.GetWires() |
|
305 |
if len(wires) != 1: |
|
306 |
return |
|
307 |
current_pos = self.Output.GetPosition(False) |
|
308 |
output = wires[0][0].StartConnected |
|
309 |
output_pos = output.GetPosition(False) |
|
310 |
diffx = current_pos.x - output_pos.x |
|
311 |
output_block = output.GetParentBlock() |
|
312 |
wire_size = SFC_WIRE_MIN_SIZE + self.GetActionExtraLineNumber() * SFC_ACTION_MIN_SIZE[1] |
|
313 |
diffy = wire_size - output_pos.y + current_pos.y |
|
314 |
if diffy != 0: |
|
315 |
if isinstance(output_block, SFC_Step): |
|
316 |
output_block.MoveActionBlock((diffx, diffy)) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
317 |
wires[0][0].SetPoints([wx.Point(current_pos.x, current_pos.y + wire_size), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
318 |
wx.Point(current_pos.x, current_pos.y)]) |
0 | 319 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
320 |
output_block.Move(diffx, diffy, self.Parent.Wires) |
|
321 |
output_block.RefreshOutputPosition((diffx, diffy)) |
|
322 |
else: |
|
323 |
output_block.RefreshPosition() |
|
324 |
elif move: |
|
325 |
if isinstance(output_block, SFC_Step): |
|
326 |
output_block.MoveActionBlock(move) |
|
327 |
wires[0][0].Move(move[0], move[1], True) |
|
328 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
329 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
330 |
output_block.RefreshOutputPosition(move) |
|
331 |
else: |
|
332 |
output_block.RefreshPosition() |
|
333 |
elif isinstance(output_block, SFC_Divergence): |
|
334 |
output_block.MoveConnector(output, diffx) |
|
335 |
else: |
|
336 |
if isinstance(output_block, SFC_Step): |
|
337 |
output_block.MoveActionBlock((diffx, 0)) |
|
338 |
output_block.Move(diffx, 0) |
|
339 |
output_block.RefreshOutputPosition() |
|
340 |
||
341 |
# Refresh action element with this step |
|
342 |
def MoveActionBlock(self, move): |
|
343 |
if self.Action: |
|
344 |
wires = self.Action.GetWires() |
|
345 |
if len(wires) != 1: |
|
346 |
return |
|
347 |
action_block = wires[0][0].StartConnected.GetParentBlock() |
|
348 |
action_block.Move(move[0], move[1], self.Parent.Wires) |
|
349 |
wires[0][0].Move(move[0], move[1], True) |
|
350 |
||
351 |
# Resize the divergence from position and size given |
|
352 |
def Resize(self, x, y, width, height): |
|
27 | 353 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
354 |
self.UpdateSize(width, height) |
|
355 |
else: |
|
356 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 357 |
|
358 |
# Method called when a LeftDClick event have been generated |
|
42 | 359 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 360 |
# Edit the step properties |
361 |
self.Parent.EditStepContent(self) |
|
362 |
||
363 |
# Method called when a RightUp event have been generated |
|
27 | 364 |
def OnRightUp(self, event, dc, scaling): |
0 | 365 |
# Popup the menu with special items for a step |
366 |
self.Parent.PopupDefaultMenu() |
|
367 |
||
368 |
# Refreshes the step state according to move defined and handle selected |
|
369 |
def ProcessDragging(self, movex, movey): |
|
370 |
handle_type, handle = self.Handle |
|
371 |
if handle_type == HANDLE_MOVE: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
372 |
movex = max(-self.BoundingBox.x, movex) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
373 |
movey = max(-self.BoundingBox.y, movey) |
0 | 374 |
action_block = None |
27 | 375 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
376 |
self.Move(movex, movey) |
|
377 |
self.RefreshConnected() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
378 |
return movex, movey |
27 | 379 |
elif self.Initial: |
0 | 380 |
self.MoveActionBlock((movex, movey)) |
381 |
self.Move(movex, movey, self.Parent.Wires) |
|
382 |
self.RefreshOutputPosition((movex, movey)) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
383 |
return movex, movey |
0 | 384 |
else: |
385 |
self.MoveActionBlock((movex, 0)) |
|
386 |
self.Move(movex, 0) |
|
387 |
self.RefreshInputPosition() |
|
388 |
self.RefreshOutputPosition() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
389 |
return movex, 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
390 |
else: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
391 |
return Graphic_Element.ProcessDragging(self, movex, movey) |
0 | 392 |
|
393 |
# Refresh input element model |
|
394 |
def RefreshInputModel(self): |
|
395 |
if self.Input: |
|
396 |
input = self.GetPreviousConnector() |
|
397 |
if input: |
|
398 |
input_block = input.GetParentBlock() |
|
399 |
input_block.RefreshModel(False) |
|
400 |
if not isinstance(input_block, SFC_Divergence): |
|
401 |
input_block.RefreshInputModel() |
|
402 |
||
403 |
# Refresh output element model |
|
404 |
def RefreshOutputModel(self, move=False): |
|
405 |
if self.Output: |
|
406 |
output = self.GetNextConnector() |
|
407 |
if output: |
|
408 |
output_block = output.GetParentBlock() |
|
409 |
output_block.RefreshModel(False) |
|
410 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
411 |
output_block.RefreshOutputModel(move) |
|
412 |
||
413 |
# Refreshes the step model |
|
414 |
def RefreshModel(self, move=True): |
|
415 |
self.Parent.RefreshStepModel(self) |
|
416 |
if self.Action: |
|
417 |
action = self.GetActionConnector() |
|
418 |
if action: |
|
419 |
action_block = action.GetParentBlock() |
|
420 |
action_block.RefreshModel(False) |
|
421 |
# If step has moved, refresh the model of wires connected to output |
|
422 |
if move: |
|
27 | 423 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
424 |
self.RefreshInputModel() |
|
425 |
self.RefreshOutputModel(self.Initial) |
|
426 |
elif self.Output: |
|
427 |
self.Output.RefreshWires() |
|
0 | 428 |
|
429 |
# Draws step |
|
430 |
def Draw(self, dc): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
431 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
432 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 433 |
# Draw two rectangles for representing the step |
434 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
435 |
if self.Initial: |
|
436 |
dc.DrawRectangle(self.Pos.x + 2, self.Pos.y + 2, self.Size[0] - 3, self.Size[1] - 3) |
|
437 |
# Draw step name |
|
438 |
namewidth, nameheight = dc.GetTextExtent(self.Name) |
|
439 |
dc.DrawText(self.Name, self.Pos.x + (self.Size[0] - namewidth) / 2, |
|
440 |
self.Pos.y + (self.Size[1] - nameheight) / 2) |
|
441 |
# Draw input and output connectors |
|
442 |
if self.Input: |
|
443 |
self.Input.Draw(dc) |
|
444 |
if self.Output: |
|
445 |
self.Output.Draw(dc) |
|
446 |
if self.Action: |
|
447 |
self.Action.Draw(dc) |
|
448 |
Graphic_Element.Draw(self, dc) |
|
449 |
||
450 |
#------------------------------------------------------------------------------- |
|
451 |
# Sequencial Function Chart Transition |
|
452 |
#------------------------------------------------------------------------------- |
|
453 |
||
454 |
""" |
|
455 |
Class that implements the graphic representation of a transition |
|
456 |
""" |
|
457 |
||
458 |
class SFC_Transition(Graphic_Element): |
|
459 |
||
460 |
# Create a new transition |
|
80 | 461 |
def __init__(self, parent, type = "reference", condition = None, priority = 0, id = None): |
0 | 462 |
Graphic_Element.__init__(self, parent) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
463 |
self.Type = None |
0 | 464 |
self.Id = id |
80 | 465 |
self.Priority = 0 |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
466 |
self.Size = wx.Size(SFC_TRANSITION_SIZE[0], SFC_TRANSITION_SIZE[1]) |
0 | 467 |
# Create an input and output connector |
108 | 468 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
469 |
self.Output = Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
470 |
self.SetType(type, condition) |
80 | 471 |
self.SetPriority(priority) |
0 | 472 |
|
473 |
# Destructor |
|
474 |
def __del__(self): |
|
475 |
self.Input = None |
|
476 |
self.Output = None |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
477 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
478 |
self.Condition = None |
0 | 479 |
|
112 | 480 |
# Make a clone of this SFC_Transition |
481 |
def Clone(self, id = None, pos = None): |
|
482 |
transition = SFC_Transition(self.Parent, self.Type, self.Condition, self.Priority, id) |
|
483 |
transition.SetSize(self.Size[0], self.Size[1]) |
|
484 |
if pos is not None: |
|
485 |
transition.SetPosition(pos.x, pos.y) |
|
486 |
transition.Input = self.Input.Clone(transition) |
|
487 |
transition.Output = self.Output.Clone(transition) |
|
488 |
return transition |
|
489 |
||
0 | 490 |
# Forbids to change the transition size |
491 |
def SetSize(self, width, height): |
|
27 | 492 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
493 |
Graphic_Element.SetSize(self, width, height) |
|
0 | 494 |
|
495 |
# Forbids to resize the transition |
|
496 |
def Resize(self, x, y, width, height): |
|
27 | 497 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
498 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 499 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
500 |
# Refresh the size of text for name |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
501 |
def RefreshConditionSize(self): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
502 |
if self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
503 |
dc = wx.ClientDC(self.Parent) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
504 |
if self.Condition != "": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
505 |
self.ConditionSize = dc.GetTextExtent(self.Condition) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
506 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
507 |
self.ConditionSize = dc.GetTextExtent("Transition") |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
508 |
|
80 | 509 |
# Refresh the size of text for name |
510 |
def RefreshPrioritySize(self): |
|
511 |
if self.Priority != "": |
|
512 |
dc = wx.ClientDC(self.Parent) |
|
513 |
self.PrioritySize = dc.GetTextExtent(str(self.Priority)) |
|
514 |
else: |
|
515 |
self.PrioritySize = None |
|
516 |
||
0 | 517 |
# Delete this transition by calling the appropriate method |
518 |
def Delete(self): |
|
519 |
self.Parent.DeleteTransition(self) |
|
520 |
||
521 |
# Unconnect input and output |
|
522 |
def Clean(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
523 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
524 |
self.Output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
525 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
526 |
self.Condition.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 527 |
|
528 |
# Refresh the transition bounding box |
|
529 |
def RefreshBoundingBox(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
530 |
dc = wx.ClientDC(self.Parent) |
80 | 531 |
bbx_x, bbx_y, bbx_width, bbx_height = self.Pos.x, self.Pos.y, self.Size[0], self.Size[1] |
532 |
if self.Priority != 0: |
|
533 |
bbx_y = self.Pos.y - self.PrioritySize[1] - 2 |
|
534 |
bbx_width = max(self.Size[0], self.PrioritySize[0]) |
|
535 |
bbx_height = self.Size[1] + self.PrioritySize[1] + 2 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
536 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
537 |
bbx_x = self.Pos.x - CONNECTOR_SIZE |
80 | 538 |
bbx_width = bbx_width + CONNECTOR_SIZE |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
539 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
540 |
text_width, text_height = self.ConditionSize |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
541 |
# Calculate the bounding box size |
80 | 542 |
bbx_width = max(bbx_width, self.Size[0] + 5 + text_width) |
543 |
bbx_y = min(bbx_y, self.Pos.y - max(0, (text_height - self.Size[1]) / 2)) |
|
544 |
bbx_height = max(bbx_height, self.Pos.y - bbx_y + (self.Size[1] + text_height) / 2) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
545 |
self.BoundingBox = wx.Rect(bbx_x, bbx_y, bbx_width + 1, bbx_height + 1) |
0 | 546 |
|
547 |
# Returns the connector connected to input |
|
548 |
def GetPreviousConnector(self): |
|
549 |
wires = self.Input.GetWires() |
|
550 |
if len(wires) == 1: |
|
551 |
return wires[0][0].EndConnected |
|
552 |
return None |
|
553 |
||
554 |
# Returns the connector connected to output |
|
555 |
def GetNextConnector(self): |
|
556 |
wires = self.Output.GetWires() |
|
557 |
if len(wires) == 1: |
|
558 |
return wires[0][0].StartConnected |
|
559 |
return None |
|
560 |
||
561 |
# Refresh the positions of the transition connectors |
|
562 |
def RefreshConnectors(self): |
|
563 |
# Update input position |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
564 |
self.Input.SetPosition(wx.Point(self.Size[0] / 2, 0)) |
0 | 565 |
# Update output position |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
566 |
self.Output.SetPosition(wx.Point(self.Size[0] / 2, self.Size[1])) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
567 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
568 |
self.Condition.SetPosition(wx.Point(0, self.Size[1] / 2)) |
0 | 569 |
self.RefreshConnected() |
570 |
||
571 |
# Refresh the position of the wires connected to transition |
|
572 |
def RefreshConnected(self, exclude = []): |
|
573 |
self.Input.MoveConnected(exclude) |
|
574 |
self.Output.MoveConnected(exclude) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
575 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
576 |
self.Condition.MoveConnected(exclude) |
0 | 577 |
|
578 |
# Returns the transition connector that starts with the point given if it exists |
|
27 | 579 |
def GetConnector(self, position, name = None): |
580 |
# if a name is given |
|
581 |
if name: |
|
582 |
# Test input and output connector |
|
583 |
if name == self.Input.GetName(): |
|
584 |
return self.Input |
|
585 |
if name == self.Output.GetName(): |
|
586 |
return self.Output |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
587 |
if self.Type == "connection" and name == self.Condition.GetName(): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
588 |
return self.Condition |
0 | 589 |
# Test input connector |
590 |
input_pos = self.Input.GetRelPosition() |
|
591 |
if position.x == self.Pos.x + input_pos.x and position.y == self.Pos.y + input_pos.y: |
|
592 |
return self.Input |
|
593 |
# Test output connector |
|
594 |
output_pos = self.Output.GetRelPosition() |
|
595 |
if position.x == self.Pos.x + output_pos.x and position.y == self.Pos.y + output_pos.y: |
|
596 |
return self.Output |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
597 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
598 |
# Test condition connector |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
599 |
condition_pos = self.Condition.GetRelPosition() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
600 |
if position.x == self.Pos.x + condition_pos.x and position.y == self.Pos.y + condition_pos.y: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
601 |
return self.Condition |
0 | 602 |
return None |
603 |
||
604 |
# Returns input and output transition connectors |
|
605 |
def GetConnectors(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
606 |
connectors = {"input":self.Input,"output":self.Output} |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
607 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
608 |
connectors["connection"] = self.Condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
609 |
return connectors |
0 | 610 |
|
611 |
# Test if point given is on transition input or output connector |
|
612 |
def TestConnector(self, pt, exclude=True): |
|
613 |
# Test input connector |
|
614 |
if self.Input.TestPoint(pt, exclude): |
|
615 |
return self.Input |
|
616 |
# Test output connector |
|
617 |
if self.Output.TestPoint(pt, exclude): |
|
618 |
return self.Output |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
619 |
# Test condition connector |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
620 |
if self.Type == "connection" and self.Condition.TestPoint(pt, exclude): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
621 |
return self.Condition |
0 | 622 |
return None |
623 |
||
624 |
# Changes the transition type |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
625 |
def SetType(self, type, condition = None): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
626 |
if self.Type != type: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
627 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
628 |
self.Condition.UnConnect() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
629 |
self.Type = type |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
630 |
if type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
631 |
self.Condition = Connector(self, "", "BOOL", wx.Point(0, self.Size[1] / 2), WEST) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
632 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
633 |
if condition == None: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
634 |
condition = "" |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
635 |
self.Condition = condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
636 |
self.RefreshConditionSize() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
637 |
elif self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
638 |
if condition == None: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
639 |
condition = "" |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
640 |
self.Condition = condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
641 |
self.RefreshConditionSize() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
642 |
self.RefreshBoundingBox() |
0 | 643 |
|
644 |
# Returns the transition type |
|
645 |
def GetType(self): |
|
646 |
return self.Type |
|
647 |
||
80 | 648 |
# Changes the transition priority |
649 |
def SetPriority(self, priority): |
|
650 |
self.Priority = priority |
|
651 |
self.RefreshPrioritySize() |
|
652 |
self.RefreshBoundingBox() |
|
653 |
||
654 |
# Returns the transition type |
|
655 |
def GetPriority(self): |
|
656 |
return self.Priority |
|
657 |
||
0 | 658 |
# Returns the transition condition |
659 |
def GetCondition(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
660 |
if self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
661 |
return self.Condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
662 |
return None |
0 | 663 |
|
664 |
# Returns the transition minimum size |
|
665 |
def GetMinSize(self): |
|
666 |
return SFC_TRANSITION_SIZE |
|
667 |
||
668 |
# Align input element with this step |
|
669 |
def RefreshInputPosition(self): |
|
670 |
wires = self.Input.GetWires() |
|
671 |
current_pos = self.Input.GetPosition(False) |
|
672 |
input = self.GetPreviousConnector() |
|
673 |
if input: |
|
674 |
input_pos = input.GetPosition(False) |
|
675 |
diffx = current_pos.x - input_pos.x |
|
676 |
input_block = input.GetParentBlock() |
|
677 |
if isinstance(input_block, SFC_Divergence): |
|
678 |
input_block.MoveConnector(input, diffx) |
|
679 |
else: |
|
680 |
if isinstance(input_block, SFC_Step): |
|
681 |
input_block.MoveActionBlock((diffx, 0)) |
|
682 |
input_block.Move(diffx, 0) |
|
683 |
input_block.RefreshInputPosition() |
|
684 |
||
685 |
# Align output element with this step |
|
686 |
def RefreshOutputPosition(self, move = None): |
|
687 |
wires = self.Output.GetWires() |
|
688 |
if len(wires) != 1: |
|
689 |
return |
|
690 |
current_pos = self.Output.GetPosition(False) |
|
691 |
output = wires[0][0].StartConnected |
|
692 |
output_pos = output.GetPosition(False) |
|
693 |
diffx = current_pos.x - output_pos.x |
|
694 |
output_block = output.GetParentBlock() |
|
695 |
if move: |
|
696 |
if isinstance(output_block, SFC_Step): |
|
697 |
output_block.MoveActionBlock(move) |
|
698 |
wires[0][0].Move(move[0], move[1], True) |
|
699 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
700 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
701 |
output_block.RefreshOutputPosition(move) |
|
702 |
else: |
|
703 |
output_block.RefreshPosition() |
|
704 |
elif isinstance(output_block, SFC_Divergence): |
|
705 |
output_block.MoveConnector(output, diffx) |
|
706 |
else: |
|
707 |
if isinstance(output_block, SFC_Step): |
|
708 |
output_block.MoveActionBlock((diffx, 0)) |
|
709 |
output_block.Move(diffx, 0) |
|
710 |
output_block.RefreshOutputPosition() |
|
27 | 711 |
|
0 | 712 |
# Method called when a LeftDClick event have been generated |
27 | 713 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 714 |
# Edit the transition properties |
715 |
self.Parent.EditTransitionContent(self) |
|
716 |
||
717 |
# Method called when a RightUp event have been generated |
|
27 | 718 |
def OnRightUp(self, event, dc, scaling): |
0 | 719 |
# Popup the menu with special items for a step |
720 |
self.Parent.PopupDefaultMenu() |
|
721 |
||
722 |
# Refreshes the transition state according to move defined and handle selected |
|
723 |
def ProcessDragging(self, movex, movey): |
|
27 | 724 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
725 |
movex = max(-self.BoundingBox.x, movex) |
27 | 726 |
self.Move(movex, 0) |
727 |
self.RefreshInputPosition() |
|
728 |
self.RefreshOutputPosition() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
729 |
return movex, 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
730 |
else: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
731 |
return Graphic_Element.ProcessDragging(self, movex, movey) |
0 | 732 |
|
733 |
# Refresh input element model |
|
734 |
def RefreshInputModel(self): |
|
27 | 735 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
736 |
input = self.GetPreviousConnector() |
|
737 |
if input: |
|
738 |
input_block = input.GetParentBlock() |
|
739 |
input_block.RefreshModel(False) |
|
740 |
if not isinstance(input_block, SFC_Divergence): |
|
741 |
input_block.RefreshInputModel() |
|
0 | 742 |
|
743 |
# Refresh output element model |
|
744 |
def RefreshOutputModel(self, move=False): |
|
745 |
output = self.GetNextConnector() |
|
746 |
if output: |
|
747 |
output_block = output.GetParentBlock() |
|
748 |
output_block.RefreshModel(False) |
|
749 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
750 |
output_block.RefreshOutputModel(move) |
|
751 |
||
752 |
# Refreshes the transition model |
|
753 |
def RefreshModel(self, move=True): |
|
754 |
self.Parent.RefreshTransitionModel(self) |
|
755 |
# If transition has moved, refresh the model of wires connected to output |
|
756 |
if move: |
|
27 | 757 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
758 |
self.RefreshInputModel() |
|
759 |
self.RefreshOutputModel() |
|
760 |
else: |
|
761 |
self.Output.RefreshWires() |
|
0 | 762 |
|
763 |
# Draws transition |
|
764 |
def Draw(self, dc): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
765 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
766 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 767 |
# Draw plain rectangle for representing the transition |
768 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
769 |
# Draw transition condition |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
770 |
if self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
771 |
text_width, text_height = self.ConditionSize |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
772 |
if self.Condition != "": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
773 |
condition = self.Condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
774 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
775 |
condition = "Transition" |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
776 |
dc.DrawText(condition, self.Pos.x + self.Size[0] + 5, |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
777 |
self.Pos.y + (self.Size[1] - text_height) / 2) |
80 | 778 |
# Draw priority number |
779 |
if self.Priority != 0: |
|
780 |
priority_width, priority_height = self.PrioritySize |
|
781 |
dc.DrawText(str(self.Priority), self.Pos.x, self.Pos.y - self.PrioritySize[1] - 2) |
|
0 | 782 |
# Draw input and output connectors |
783 |
self.Input.Draw(dc) |
|
784 |
self.Output.Draw(dc) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
785 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
786 |
self.Condition.Draw(dc) |
0 | 787 |
Graphic_Element.Draw(self, dc) |
788 |
||
789 |
#------------------------------------------------------------------------------- |
|
790 |
# Sequencial Function Chart Divergence and Convergence |
|
791 |
#------------------------------------------------------------------------------- |
|
792 |
||
793 |
""" |
|
794 |
Class that implements the graphic representation of a divergence or convergence, |
|
795 |
selection or simultaneous |
|
796 |
""" |
|
797 |
||
798 |
class SFC_Divergence(Graphic_Element): |
|
799 |
||
800 |
# Create a new divergence |
|
801 |
def __init__(self, parent, type, number = 2, id = None): |
|
802 |
Graphic_Element.__init__(self, parent) |
|
803 |
self.Type = type |
|
804 |
self.Id = id |
|
805 |
self.RealConnectors = None |
|
806 |
number = max(2, number) |
|
807 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
808 |
self.Size = wx.Size((number - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL, 1) |
0 | 809 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
810 |
self.Size = wx.Size((number - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL, 3) |
0 | 811 |
# Create an input and output connector |
812 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
108 | 813 |
self.Inputs = [Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH)] |
0 | 814 |
self.Outputs = [] |
815 |
for i in xrange(number): |
|
108 | 816 |
self.Outputs.append(Connector(self, "", None, wx.Point(i * SFC_DEFAULT_SEQUENCE_INTERVAL, self.Size[1]), SOUTH)) |
0 | 817 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
818 |
self.Inputs = [] |
|
819 |
for i in xrange(number): |
|
108 | 820 |
self.Inputs.append(Connector(self, "", None, wx.Point(i * SFC_DEFAULT_SEQUENCE_INTERVAL, 0), NORTH)) |
821 |
self.Outputs = [Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH)] |
|
0 | 822 |
|
823 |
# Destructor |
|
824 |
def __del__(self): |
|
825 |
self.Inputs = [] |
|
826 |
self.Outputs = [] |
|
827 |
||
112 | 828 |
# Make a clone of this SFC_Divergence |
829 |
def Clone(self, id = None, pos = None): |
|
830 |
divergence = SFC_Divergence(self.Parent, self.Type, max(len(self.Inputs), len(self.Outputs)), id) |
|
831 |
divergence.SetSize(self.Size[0], self.Size[1]) |
|
832 |
if pos is not None: |
|
833 |
divergence.SetPosition(pos.x, pos.y) |
|
834 |
divergence.Inputs = [input.Clone(divergence) for input in self.Inputs] |
|
835 |
divergence.Outputs = [output.Clone(divergence) for output in self.Outputs] |
|
836 |
return divergence |
|
837 |
||
0 | 838 |
# Forbids to resize the divergence |
839 |
def Resize(self, x, y, width, height): |
|
27 | 840 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
841 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 842 |
|
843 |
# Delete this divergence by calling the appropriate method |
|
844 |
def Delete(self): |
|
845 |
self.Parent.DeleteDivergence(self) |
|
846 |
||
847 |
# Returns the divergence type |
|
848 |
def GetType(self): |
|
849 |
return self.Type |
|
850 |
||
851 |
# Unconnect input and output |
|
852 |
def Clean(self): |
|
853 |
for input in self.Inputs: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
854 |
input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 855 |
for output in self.Outputs: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
856 |
output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 857 |
|
858 |
# Add a branch to the divergence |
|
859 |
def AddBranch(self): |
|
860 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
861 |
maxx = 0 |
|
862 |
for output in self.Outputs: |
|
863 |
pos = output.GetRelPosition() |
|
864 |
maxx = max(maxx, pos.x) |
|
108 | 865 |
connector = Connector(self, "", None, wx.Point(maxx + SFC_DEFAULT_SEQUENCE_INTERVAL, self.Size[1]), SOUTH) |
0 | 866 |
self.Outputs.append(connector) |
867 |
self.MoveConnector(connector, 0) |
|
868 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
869 |
maxx = 0 |
|
870 |
for input in self.Inputs: |
|
871 |
pos = input.GetRelPosition() |
|
872 |
maxx = max(maxx, pos.x) |
|
108 | 873 |
connector = Connector(self, "", None, wx.Point(maxx + SFC_DEFAULT_SEQUENCE_INTERVAL, 0), NORTH) |
0 | 874 |
self.Inputs.append(connector) |
875 |
self.MoveConnector(connector, SFC_DEFAULT_SEQUENCE_INTERVAL) |
|
876 |
||
877 |
# Remove a branch from the divergence |
|
878 |
def RemoveBranch(self, connector): |
|
879 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
880 |
if connector in self.Outputs and len(self.Outputs) > 2: |
0 | 881 |
self.Outputs.remove(connector) |
882 |
self.MoveConnector(self.Outputs[0], 0) |
|
883 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
884 |
if connector in self.Inputs and len(self.Inputs) > 2: |
0 | 885 |
self.Inputs.remove(connector) |
886 |
self.MoveConnector(self.Inputs[0], 0) |
|
887 |
||
80 | 888 |
# Remove the handled branch from the divergence |
889 |
def RemoveHandledBranch(self): |
|
890 |
handle_type, handle = self.Handle |
|
891 |
if handle_type == HANDLE_CONNECTOR: |
|
892 |
handle.UnConnect(delete=True) |
|
893 |
self.RemoveBranch(handle) |
|
894 |
||
0 | 895 |
# Return the number of branches for the divergence |
896 |
def GetBranchNumber(self): |
|
897 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
898 |
return len(self.Outputs) |
|
899 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
900 |
return len(self.Inputs) |
|
901 |
||
902 |
# Returns if the point given is in the bounding box |
|
903 |
def HitTest(self, pt): |
|
904 |
rect = self.BoundingBox |
|
905 |
return rect.InsideXY(pt.x, pt.y) or self.TestConnector(pt, False) != None |
|
906 |
||
907 |
# Refresh the divergence bounding box |
|
908 |
def RefreshBoundingBox(self): |
|
909 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
910 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y - 2, |
2 | 911 |
self.Size[0] + 1, self.Size[1] + 5) |
0 | 912 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
913 |
self.BoundingBox = wx.Rect(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y - 2, |
2 | 914 |
self.Size[0] + 2 * SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Size[1] + 5) |
0 | 915 |
|
916 |
# Refresh the position of wires connected to divergence |
|
917 |
def RefreshConnected(self, exclude = []): |
|
918 |
for input in self.Inputs: |
|
919 |
input.MoveConnected(exclude) |
|
920 |
for output in self.Outputs: |
|
921 |
output.MoveConnected(exclude) |
|
922 |
||
923 |
# Moves the divergence connector given |
|
924 |
def MoveConnector(self, connector, movex): |
|
925 |
position = connector.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
926 |
connector.SetPosition(wx.Point(position.x + movex, position.y)) |
0 | 927 |
minx = self.Size[0] |
928 |
maxx = 0 |
|
929 |
for input in self.Inputs: |
|
930 |
input_pos = input.GetRelPosition() |
|
931 |
minx = min(minx, input_pos.x) |
|
932 |
maxx = max(maxx, input_pos.x) |
|
933 |
for output in self.Outputs: |
|
934 |
output_pos = output.GetRelPosition() |
|
935 |
minx = min(minx, output_pos.x) |
|
936 |
maxx = max(maxx, output_pos.x) |
|
937 |
if minx != 0: |
|
938 |
for input in self.Inputs: |
|
939 |
input_pos = input.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
940 |
input.SetPosition(wx.Point(input_pos.x - minx, input_pos.y)) |
0 | 941 |
for output in self.Outputs: |
942 |
output_pos = output.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
943 |
output.SetPosition(wx.Point(output_pos.x - minx, output_pos.y)) |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
944 |
self.Inputs.sort(lambda x, y: x.Pos.x.__cmp__(y.Pos.x)) |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
945 |
self.Outputs.sort(lambda x, y: x.Pos.x.__cmp__(y.Pos.x)) |
0 | 946 |
self.Pos.x += minx |
947 |
self.Size[0] = maxx - minx |
|
948 |
connector.MoveConnected() |
|
949 |
self.RefreshBoundingBox() |
|
950 |
||
951 |
# Returns the divergence connector that starts with the point given if it exists |
|
27 | 952 |
def GetConnector(self, position, name = None): |
953 |
# if a name is given |
|
954 |
if name: |
|
955 |
# Test each input and output connector |
|
956 |
for input in self.Inputs: |
|
957 |
if name == input.GetName(): |
|
958 |
return input |
|
959 |
for output in self.Outputs: |
|
960 |
if name == output.GetName(): |
|
961 |
return output |
|
0 | 962 |
# Test input connector |
963 |
for input in self.Inputs: |
|
964 |
input_pos = input.GetPosition(False) |
|
965 |
if position.x == input_pos.x and position.y == input_pos.y: |
|
966 |
return input |
|
967 |
# Test output connector |
|
968 |
for output in self.Outputs: |
|
969 |
output_pos = output.GetPosition(False) |
|
970 |
if position.x == output_pos.x and position.y == output_pos.y: |
|
971 |
return output |
|
972 |
return None |
|
973 |
||
974 |
# Returns input and output divergence connectors |
|
975 |
def GetConnectors(self): |
|
976 |
return {"inputs":self.Inputs,"outputs":self.Outputs} |
|
977 |
||
978 |
# Test if point given is on divergence input or output connector |
|
979 |
def TestConnector(self, pt, exclude=True): |
|
980 |
# Test input connector |
|
981 |
for input in self.Inputs: |
|
982 |
if input.TestPoint(pt, exclude): |
|
983 |
return input |
|
984 |
# Test output connector |
|
985 |
for output in self.Outputs: |
|
986 |
if output.TestPoint(pt, exclude): |
|
987 |
return output |
|
988 |
return None |
|
989 |
||
990 |
# Changes the divergence size |
|
991 |
def SetSize(self, width, height): |
|
992 |
for i, input in enumerate(self.Inputs): |
|
993 |
position = input.GetRelPosition() |
|
994 |
if self.RealConnectors: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
995 |
input.SetPosition(wx.Point(int(round(self.RealConnectors["Inputs"][i] * width)), 0)) |
0 | 996 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
997 |
input.SetPosition(wx.Point(int(round(float(position.x)*float(width)/float(self.Size[0]))), 0)) |
0 | 998 |
input.MoveConnected() |
999 |
for i, output in enumerate(self.Outputs): |
|
1000 |
position = output.GetRelPosition() |
|
1001 |
if self.RealConnectors: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1002 |
output.SetPosition(wx.Point(int(round(self.RealConnectors["Outputs"][i] * width)), self.Size[1])) |
0 | 1003 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1004 |
output.SetPosition(wx.Point(int(round(float(position.x)*float(width)/float(self.Size[0]))), self.Size[1])) |
0 | 1005 |
output.MoveConnected() |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1006 |
self.Size = wx.Size(width, height) |
0 | 1007 |
self.RefreshBoundingBox() |
1008 |
||
1009 |
# Returns the divergence minimum size |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1010 |
def GetMinSize(self, default=False): |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1011 |
width = 0 |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1012 |
if default: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1013 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1014 |
width = (len(self.Outputs) - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1015 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1016 |
width = (len(self.Inputs) - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL |
27 | 1017 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1018 |
return width, 1 |
27 | 1019 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1020 |
return width, 3 |
27 | 1021 |
return 0, 0 |
0 | 1022 |
|
1023 |
# Refresh the position of the block connected to connector |
|
1024 |
def RefreshConnectedPosition(self, connector): |
|
1025 |
wires = connector.GetWires() |
|
1026 |
if len(wires) != 1: |
|
1027 |
return |
|
1028 |
current_pos = connector.GetPosition(False) |
|
1029 |
if connector in self.Inputs: |
|
1030 |
next = wires[0][0].EndConnected |
|
1031 |
else: |
|
1032 |
next = wires[0][0].StartConnected |
|
1033 |
next_pos = next.GetPosition(False) |
|
1034 |
diffx = current_pos.x - next_pos.x |
|
1035 |
next_block = next.GetParentBlock() |
|
1036 |
if isinstance(next_block, SFC_Divergence): |
|
1037 |
next_block.MoveConnector(next, diffx) |
|
1038 |
else: |
|
1039 |
next_block.Move(diffx, 0) |
|
1040 |
if connector in self.Inputs: |
|
1041 |
next_block.RefreshInputPosition() |
|
1042 |
else: |
|
1043 |
next_block.RefreshOutputPosition() |
|
27 | 1044 |
|
0 | 1045 |
# Refresh the position of this divergence |
1046 |
def RefreshPosition(self): |
|
1047 |
y = 0 |
|
1048 |
for input in self.Inputs: |
|
1049 |
wires = input.GetWires() |
|
1050 |
if len(wires) != 1: |
|
1051 |
return |
|
1052 |
previous = wires[0][0].EndConnected |
|
1053 |
previous_pos = previous.GetPosition(False) |
|
1054 |
y = max(y, previous_pos.y + GetWireSize(previous.GetParentBlock())) |
|
1055 |
diffy = y - self.Pos.y |
|
1056 |
if diffy != 0: |
|
1057 |
self.Move(0, diffy, self.Parent.Wires) |
|
1058 |
self.RefreshOutputPosition((0, diffy)) |
|
1059 |
for input in self.Inputs: |
|
1060 |
input.MoveConnected() |
|
1061 |
||
1062 |
# Align output element with this divergence |
|
1063 |
def RefreshOutputPosition(self, move = None): |
|
1064 |
if move: |
|
1065 |
for output_connector in self.Outputs: |
|
1066 |
wires = output_connector.GetWires() |
|
1067 |
if len(wires) != 1: |
|
1068 |
return |
|
1069 |
current_pos = output_connector.GetPosition(False) |
|
1070 |
output = wires[0][0].StartConnected |
|
1071 |
output_pos = output.GetPosition(False) |
|
1072 |
diffx = current_pos.x - output_pos.x |
|
1073 |
output_block = output.GetParentBlock() |
|
1074 |
if isinstance(output_block, SFC_Step): |
|
1075 |
output_block.MoveActionBlock(move) |
|
1076 |
wires[0][0].Move(move[0], move[1], True) |
|
1077 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
1078 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
1079 |
output_block.RefreshOutputPosition(move) |
|
1080 |
||
1081 |
# Method called when a LeftDown event have been generated |
|
27 | 1082 |
def OnLeftDown(self, event, dc, scaling): |
1083 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 1084 |
# Test if a connector have been handled |
1085 |
connector = self.TestConnector(pos, False) |
|
1086 |
if connector: |
|
1087 |
self.Handle = (HANDLE_CONNECTOR, connector) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1088 |
self.Parent.SetCursor(wx.StockCursor(wx.CURSOR_HAND)) |
0 | 1089 |
self.Selected = False |
1090 |
# Initializes the last position |
|
27 | 1091 |
self.oldPos = GetScaledEventPosition(event, dc, scaling) |
0 | 1092 |
else: |
1093 |
self.RealConnectors = {"Inputs":[],"Outputs":[]} |
|
1094 |
for input in self.Inputs: |
|
1095 |
position = input.GetRelPosition() |
|
1096 |
self.RealConnectors["Inputs"].append(float(position.x)/float(self.Size[0])) |
|
1097 |
for output in self.Outputs: |
|
1098 |
position = output.GetRelPosition() |
|
1099 |
self.RealConnectors["Outputs"].append(float(position.x)/float(self.Size[0])) |
|
27 | 1100 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
0 | 1101 |
|
1102 |
# Method called when a LeftUp event have been generated |
|
27 | 1103 |
def OnLeftUp(self, event, dc, scaling): |
0 | 1104 |
self.RealConnectors = None |
1105 |
handle_type, handle = self.Handle |
|
1106 |
if handle_type == HANDLE_CONNECTOR: |
|
1107 |
wires = handle.GetWires() |
|
1108 |
if len(wires) != 1: |
|
1109 |
return |
|
1110 |
if handle in self.Inputs: |
|
1111 |
block = wires[0][0].EndConnected.GetParentBlock() |
|
1112 |
else: |
|
1113 |
block = wires[0][0].StartConnected.GetParentBlock() |
|
1114 |
block.RefreshModel(False) |
|
1115 |
if not isinstance(block, SFC_Divergence): |
|
1116 |
if handle in self.Inputs: |
|
1117 |
block.RefreshInputModel() |
|
1118 |
else: |
|
1119 |
block.RefreshOutputModel() |
|
27 | 1120 |
Graphic_Element.OnLeftUp(self, event, dc, scaling) |
0 | 1121 |
|
1122 |
# Method called when a RightUp event have been generated |
|
27 | 1123 |
def OnRightUp(self, event, dc, scaling): |
1124 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 1125 |
# Popup the menu with special items for a block and a connector if one is handled |
1126 |
connector = self.TestConnector(pos, False) |
|
1127 |
if connector: |
|
1128 |
self.Handle = (HANDLE_CONNECTOR, connector) |
|
1129 |
self.Parent.PopupDivergenceMenu(True) |
|
1130 |
else: |
|
1131 |
# Popup the divergence menu without delete branch |
|
1132 |
self.Parent.PopupDivergenceMenu(False) |
|
1133 |
||
1134 |
# Refreshes the divergence state according to move defined and handle selected |
|
1135 |
def ProcessDragging(self, movex, movey): |
|
1136 |
handle_type, handle = self.Handle |
|
1137 |
# A connector has been handled |
|
1138 |
if handle_type == HANDLE_CONNECTOR: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1139 |
movex = max(-self.BoundingBox.x, movex) |
0 | 1140 |
self.MoveConnector(handle, movex) |
27 | 1141 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1142 |
self.RefreshConnectedPosition(handle) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1143 |
return movex, 0 |
27 | 1144 |
elif self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1145 |
return Graphic_Element.ProcessDragging(self, movex, movey) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1146 |
return 0, 0 |
0 | 1147 |
|
1148 |
# Refresh output element model |
|
1149 |
def RefreshOutputModel(self, move=False): |
|
27 | 1150 |
if move and self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
0 | 1151 |
for output in self.Outputs: |
1152 |
wires = output.GetWires() |
|
1153 |
if len(wires) != 1: |
|
1154 |
return |
|
1155 |
output_block = wires[0][0].StartConnected.GetParentBlock() |
|
1156 |
output_block.RefreshModel(False) |
|
1157 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
1158 |
output_block.RefreshOutputModel(move) |
|
1159 |
||
1160 |
# Refreshes the divergence model |
|
1161 |
def RefreshModel(self, move=True): |
|
1162 |
self.Parent.RefreshDivergenceModel(self) |
|
1163 |
# If divergence has moved, refresh the model of wires connected to outputs |
|
1164 |
if move: |
|
27 | 1165 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1166 |
self.RefreshOutputModel() |
|
1167 |
else: |
|
1168 |
for output in self.Outputs: |
|
1169 |
output.RefreshWires() |
|
0 | 1170 |
|
1171 |
# Draws divergence |
|
1172 |
def Draw(self, dc): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1173 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1174 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 1175 |
# Draw plain rectangle for representing the divergence |
1176 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
1177 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
1178 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1179 |
dc.DrawLine(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y, |
|
1180 |
self.Pos.x + self.Size[0] + SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Pos.y) |
|
27 | 1181 |
dc.DrawLine(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y + self.Size[1], |
1182 |
self.Pos.x + self.Size[0] + SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Pos.y + self.Size[1]) |
|
0 | 1183 |
# Draw inputs and outputs connectors |
1184 |
for input in self.Inputs: |
|
1185 |
input.Draw(dc) |
|
1186 |
for output in self.Outputs: |
|
1187 |
output.Draw(dc) |
|
1188 |
Graphic_Element.Draw(self, dc) |
|
1189 |
||
1190 |
#------------------------------------------------------------------------------- |
|
1191 |
# Sequencial Function Chart Jump to Step |
|
1192 |
#------------------------------------------------------------------------------- |
|
1193 |
||
1194 |
""" |
|
1195 |
Class that implements the graphic representation of a jump to step |
|
1196 |
""" |
|
1197 |
||
1198 |
class SFC_Jump(Graphic_Element): |
|
1199 |
||
1200 |
# Create a new jump |
|
1201 |
def __init__(self, parent, target, id = None): |
|
1202 |
Graphic_Element.__init__(self, parent) |
|
1203 |
self.Target = target |
|
1204 |
self.Id = id |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1205 |
self.Size = wx.Size(SFC_JUMP_SIZE[0], SFC_JUMP_SIZE[1]) |
0 | 1206 |
# Create an input and output connector |
108 | 1207 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
0 | 1208 |
|
1209 |
# Destructor |
|
1210 |
def __del__(self): |
|
27 | 1211 |
self.Input = None |
0 | 1212 |
|
112 | 1213 |
# Make a clone of this SFC_Jump |
1214 |
def Clone(self, id = None, pos = None): |
|
1215 |
jump = SFC_Jump(self.Parent, self.Target, id) |
|
1216 |
jump.SetSize(self.Size[0], self.Size[1]) |
|
1217 |
if pos is not None: |
|
1218 |
jump.SetPosition(pos.x, pos.y) |
|
1219 |
jump.Input = self.Input.Clone(jump) |
|
1220 |
return jump |
|
1221 |
||
0 | 1222 |
# Forbids to change the jump size |
1223 |
def SetSize(self, width, height): |
|
27 | 1224 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
1225 |
Graphic_Element.SetSize(self, width, height) |
|
0 | 1226 |
|
1227 |
# Forbids to resize jump |
|
1228 |
def Resize(self, x, y, width, height): |
|
27 | 1229 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
1230 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 1231 |
|
1232 |
# Delete this jump by calling the appropriate method |
|
1233 |
def Delete(self): |
|
1234 |
self.Parent.DeleteJump(self) |
|
1235 |
||
1236 |
# Unconnect input |
|
1237 |
def Clean(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1238 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 1239 |
|
1240 |
# Refresh the jump bounding box |
|
1241 |
def RefreshBoundingBox(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1242 |
dc = wx.ClientDC(self.Parent) |
0 | 1243 |
text_width, text_height = dc.GetTextExtent(self.Target) |
1244 |
# Calculate the bounding box size |
|
1245 |
bbx_width = self.Size[0] + 2 + text_width |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1246 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y - CONNECTOR_SIZE, |
0 | 1247 |
bbx_width + 1, self.Size[1] + CONNECTOR_SIZE + 1) |
1248 |
||
1249 |
# Returns the connector connected to input |
|
1250 |
def GetPreviousConnector(self): |
|
27 | 1251 |
wires = self.Input.GetWires() |
1252 |
if len(wires) == 1: |
|
1253 |
return wires[0][0].EndConnected |
|
0 | 1254 |
return None |
1255 |
||
27 | 1256 |
# Refresh the element connectors position |
1257 |
def RefreshConnectors(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1258 |
self.Input.SetPosition(wx.Point(self.Size[0] / 2, 0)) |
27 | 1259 |
self.RefreshConnected() |
1260 |
||
0 | 1261 |
# Refresh the position of wires connected to jump |
1262 |
def RefreshConnected(self, exclude = []): |
|
1263 |
if self.Input: |
|
1264 |
self.Input.MoveConnected(exclude) |
|
1265 |
||
1266 |
# Returns input jump connector |
|
27 | 1267 |
def GetConnector(self, position = None, name = None): |
0 | 1268 |
return self.Input |
1269 |
||
1270 |
# Test if point given is on jump input connector |
|
1271 |
def TestConnector(self, pt, exclude = True): |
|
1272 |
# Test input connector |
|
1273 |
if self.Input and self.Input.TestPoint(pt, exclude): |
|
1274 |
return self.Input |
|
1275 |
return None |
|
1276 |
||
1277 |
# Changes the jump target |
|
1278 |
def SetTarget(self, target): |
|
1279 |
self.Target = target |
|
1280 |
self.RefreshBoundingBox() |
|
1281 |
||
1282 |
# Returns the jump target |
|
1283 |
def GetTarget(self): |
|
1284 |
return self.Target |
|
1285 |
||
1286 |
# Returns the jump minimum size |
|
1287 |
def GetMinSize(self): |
|
1288 |
return SFC_JUMP_SIZE |
|
1289 |
||
1290 |
# Align input element with this jump |
|
1291 |
def RefreshInputPosition(self): |
|
1292 |
if self.Input: |
|
1293 |
current_pos = self.Input.GetPosition(False) |
|
1294 |
input = self.GetPreviousConnector() |
|
1295 |
if input: |
|
1296 |
input_pos = input.GetPosition(False) |
|
1297 |
diffx = current_pos.x - input_pos.x |
|
1298 |
input_block = input.GetParentBlock() |
|
1299 |
if isinstance(input_block, SFC_Divergence): |
|
1300 |
input_block.MoveConnector(input, diffx) |
|
1301 |
else: |
|
1302 |
if isinstance(input_block, SFC_Step): |
|
1303 |
input_block.MoveActionBlock((diffx, 0)) |
|
1304 |
input_block.Move(diffx, 0) |
|
1305 |
input_block.RefreshInputPosition() |
|
1306 |
||
1307 |
# Can't align output element, because there is no output |
|
1308 |
def RefreshOutputPosition(self, move = None): |
|
1309 |
pass |
|
1310 |
||
1311 |
# Method called when a LeftDClick event have been generated |
|
27 | 1312 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 1313 |
# Edit the jump properties |
1314 |
self.Parent.EditJumpContent(self) |
|
1315 |
||
1316 |
# Method called when a RightUp event have been generated |
|
27 | 1317 |
def OnRightUp(self, event, dc, scaling): |
0 | 1318 |
# Popup the default menu |
1319 |
self.Parent.PopupDefaultMenu() |
|
1320 |
||
1321 |
# Refreshes the jump state according to move defined and handle selected |
|
1322 |
def ProcessDragging(self, movex, movey): |
|
27 | 1323 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1324 |
movex = max(-self.BoundingBox.x, movex) |
27 | 1325 |
self.Move(movex, 0) |
1326 |
self.RefreshInputPosition() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1327 |
return movex, 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1328 |
else: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1329 |
return Graphic_Element.ProcessDragging(self, movex, movey) |
0 | 1330 |
|
1331 |
# Refresh input element model |
|
1332 |
def RefreshInputModel(self): |
|
27 | 1333 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1334 |
input = self.GetPreviousConnector() |
|
1335 |
if input: |
|
1336 |
input_block = input.GetParentBlock() |
|
1337 |
input_block.RefreshModel(False) |
|
1338 |
if not isinstance(input_block, SFC_Divergence): |
|
1339 |
input_block.RefreshInputModel() |
|
0 | 1340 |
|
1341 |
# Refresh output element model |
|
1342 |
def RefreshOutputModel(self, move=False): |
|
1343 |
pass |
|
1344 |
||
1345 |
# Refreshes the jump model |
|
1346 |
def RefreshModel(self, move=True): |
|
1347 |
self.Parent.RefreshJumpModel(self) |
|
1348 |
if move: |
|
27 | 1349 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1350 |
self.RefreshInputModel() |
|
0 | 1351 |
|
1352 |
# Draws divergence |
|
1353 |
def Draw(self, dc): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1354 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1355 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 1356 |
# Draw plain rectangle for representing the divergence |
1357 |
dc.DrawLine(self.Pos.x + self.Size[0] / 2, self.Pos.y, self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1]) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1358 |
points = [wx.Point(self.Pos.x, self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1359 |
wx.Point(self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1] / 3), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1360 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1361 |
wx.Point(self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1])] |
0 | 1362 |
dc.DrawPolygon(points) |
1363 |
text_width, text_height = dc.GetTextExtent(self.Target) |
|
1364 |
dc.DrawText(self.Target, self.Pos.x + self.Size[0] + 2, |
|
1365 |
self.Pos.y + (self.Size[1] - text_height) / 2) |
|
1366 |
# Draw input connector |
|
1367 |
if self.Input: |
|
1368 |
self.Input.Draw(dc) |
|
1369 |
Graphic_Element.Draw(self, dc) |
|
1370 |
||
1371 |
||
1372 |
#------------------------------------------------------------------------------- |
|
1373 |
# Sequencial Function Chart Action Block |
|
1374 |
#------------------------------------------------------------------------------- |
|
1375 |
||
1376 |
""" |
|
1377 |
Class that implements the graphic representation of an action block |
|
1378 |
""" |
|
1379 |
||
1380 |
class SFC_ActionBlock(Graphic_Element): |
|
1381 |
||
1382 |
# Create a new action block |
|
1383 |
def __init__(self, parent, actions = [], id = None): |
|
1384 |
Graphic_Element.__init__(self, parent) |
|
1385 |
self.Id = id |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1386 |
self.Size = wx.Size(SFC_ACTION_MIN_SIZE[0], SFC_ACTION_MIN_SIZE[1]) |
108 | 1387 |
self.MinSize = wx.Size(SFC_ACTION_MIN_SIZE[0], SFC_ACTION_MIN_SIZE[1]) |
0 | 1388 |
# Create an input and output connector |
108 | 1389 |
self.Input = Connector(self, "", None, wx.Point(0, SFC_ACTION_MIN_SIZE[1] / 2), WEST) |
0 | 1390 |
self.SetActions(actions) |
1391 |
||
1392 |
# Destructor |
|
1393 |
def __del__(self): |
|
1394 |
self.Input = None |
|
1395 |
||
112 | 1396 |
# Make a clone of this SFC_ActionBlock |
1397 |
def Clone(self, id = None, pos = None): |
|
1398 |
actions = [action.copy() for action in self.Actions] |
|
1399 |
action_block = SFC_ActionBlock(self.Parent, actions, id) |
|
1400 |
action_block.SetSize(self.Size[0], self.Size[1]) |
|
1401 |
if pos is not None: |
|
1402 |
action_block.SetPosition(pos.x, pos.y) |
|
1403 |
action_block.Input = self.Input.Clone(action_block) |
|
1404 |
return jump |
|
1405 |
||
0 | 1406 |
# Returns the number of action lines |
1407 |
def GetLineNumber(self): |
|
1408 |
return len(self.Actions) |
|
1409 |
||
27 | 1410 |
def GetLineSize(self): |
108 | 1411 |
if len(self.Actions) > 0: |
27 | 1412 |
return self.Size[1] / len(self.Actions) |
1413 |
else: |
|
1414 |
return SFC_ACTION_MIN_SIZE[1] |
|
1415 |
||
0 | 1416 |
# Forbids to resize the action block |
1417 |
def Resize(self, x, y, width, height): |
|
27 | 1418 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1419 |
if x == 0: |
|
1420 |
self.SetSize(width, self.Size[1]) |
|
1421 |
else: |
|
1422 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 1423 |
|
1424 |
# Delete this action block by calling the appropriate method |
|
1425 |
def Delete(self): |
|
1426 |
self.Parent.DeleteActionBlock(self) |
|
1427 |
||
1428 |
# Unconnect input and output |
|
1429 |
def Clean(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1430 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 1431 |
|
1432 |
# Refresh the action block bounding box |
|
1433 |
def RefreshBoundingBox(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1434 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0], self.Size[1]) |
0 | 1435 |
|
1436 |
# Refresh the position of wires connected to action block |
|
1437 |
def RefreshConnected(self, exclude = []): |
|
1438 |
self.Input.MoveConnected(exclude) |
|
1439 |
||
1440 |
# Returns input action block connector |
|
27 | 1441 |
def GetConnector(self, position = None, name = None): |
0 | 1442 |
return self.Input |
1443 |
||
1444 |
# Test if point given is on action block input connector |
|
1445 |
def TestConnector(self, pt, exclude = True): |
|
1446 |
# Test input connector |
|
1447 |
if self.Input.TestPoint(pt, exclude): |
|
1448 |
return self.Input |
|
1449 |
return None |
|
1450 |
||
1451 |
# Changes the action block actions |
|
1452 |
def SetActions(self, actions): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1453 |
dc = wx.ClientDC(self.Parent) |
0 | 1454 |
self.Actions = actions |
1455 |
self.ColSize = [0, 0, 0] |
|
108 | 1456 |
min_height = 0 |
0 | 1457 |
for action in self.Actions: |
1458 |
width, height = dc.GetTextExtent(action["qualifier"]) |
|
1459 |
self.ColSize[0] = max(self.ColSize[0], width + 10) |
|
108 | 1460 |
row_height = height |
0 | 1461 |
if "duration" in action: |
2 | 1462 |
width, height = dc.GetTextExtent(action["duration"]) |
108 | 1463 |
row_height = max(row_height, height) |
0 | 1464 |
self.ColSize[0] = max(self.ColSize[0], width + 10) |
1465 |
width, height = dc.GetTextExtent(action["value"]) |
|
108 | 1466 |
row_height = max(row_height, height) |
0 | 1467 |
self.ColSize[1] = max(self.ColSize[1], width + 10) |
1468 |
if "indicator" in action and action["indicator"] != "": |
|
1469 |
width, height = dc.GetTextExtent(action["indicator"]) |
|
108 | 1470 |
row_height = max(row_height, height) |
0 | 1471 |
self.ColSize[2] = max(self.ColSize[2], width + 10) |
108 | 1472 |
min_height += row_height + 5 |
27 | 1473 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
108 | 1474 |
self.Size = wx.Size(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], max(min_height, SFC_ACTION_MIN_SIZE[1], self.Size[1])) |
1475 |
self.MinSize = max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
|
1476 |
SFC_ACTION_MIN_SIZE[0]), max(SFC_ACTION_MIN_SIZE[1], min_height) |
|
1477 |
self.RefreshBoundingBox() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1478 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1479 |
self.Size = wx.Size(max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
27 | 1480 |
SFC_ACTION_MIN_SIZE[0]), len(self.Actions) * SFC_ACTION_MIN_SIZE[1]) |
108 | 1481 |
self.MinSize = max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
1482 |
SFC_ACTION_MIN_SIZE[0]), len(self.Actions) * SFC_ACTION_MIN_SIZE[1] |
|
1483 |
self.RefreshBoundingBox() |
|
1484 |
if self.Input: |
|
1485 |
wires = self.Input.GetWires() |
|
1486 |
if len(wires) == 1: |
|
1487 |
input_block = wires[0][0].EndConnected.GetParentBlock() |
|
1488 |
input_block.RefreshOutputPosition() |
|
1489 |
input_block.RefreshOutputModel(True) |
|
0 | 1490 |
|
1491 |
# Returns the action block actions |
|
1492 |
def GetActions(self): |
|
1493 |
return self.Actions |
|
1494 |
||
1495 |
# Returns the action block minimum size |
|
1496 |
def GetMinSize(self): |
|
108 | 1497 |
return self.MinSize |
0 | 1498 |
|
1499 |
# Method called when a LeftDClick event have been generated |
|
27 | 1500 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 1501 |
# Edit the action block properties |
1502 |
self.Parent.EditActionBlockContent(self) |
|
1503 |
||
127
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1504 |
# Method called when a RightUp event have been generated |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1505 |
def OnRightUp(self, event, dc, scaling): |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1506 |
# Popup the default menu |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1507 |
self.Parent.PopupDefaultMenu() |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1508 |
|
0 | 1509 |
# Refreshes the action block state according to move defined and handle selected |
1510 |
def ProcessDragging(self, movex, movey): |
|
27 | 1511 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1512 |
handle_type, handle = self.Handle |
|
1513 |
if handle_type == HANDLE_MOVE: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1514 |
movex = max(-self.BoundingBox.x, movex) |
27 | 1515 |
wires = self.Input.GetWires() |
1516 |
if len(wires) == 1: |
|
1517 |
input_pos = wires[0][0].EndConnected.GetPosition(False) |
|
1518 |
if self.Pos.x - input_pos.x + movex >= SFC_WIRE_MIN_SIZE: |
|
1519 |
self.Move(movex, 0) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1520 |
return movex, 0 |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1521 |
return 0, 0 |
27 | 1522 |
else: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1523 |
return Graphic_Element.ProcessDragging(self, movex, movey) |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1524 |
else: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1525 |
return Graphic_Element.ProcessDragging(self, movex, movey) |
27 | 1526 |
|
0 | 1527 |
|
1528 |
# Refreshes the action block model |
|
1529 |
def RefreshModel(self, move=True): |
|
1530 |
self.Parent.RefreshActionBlockModel(self) |
|
1531 |
||
1532 |
# Draws divergence |
|
1533 |
def Draw(self, dc): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1534 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1535 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 1536 |
colsize = [self.ColSize[0], self.Size[0] - self.ColSize[0] - self.ColSize[2], self.ColSize[2]] |
1537 |
# Draw plain rectangle for representing the action block |
|
1538 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
1539 |
dc.DrawLine(self.Pos.x + colsize[0], self.Pos.y, |
|
1540 |
self.Pos.x + colsize[0], self.Pos.y + self.Size[1]) |
|
1541 |
dc.DrawLine(self.Pos.x + colsize[0] + colsize[1], self.Pos.y, |
|
1542 |
self.Pos.x + colsize[0] + colsize[1], self.Pos.y + self.Size[1]) |
|
27 | 1543 |
line_size = self.GetLineSize() |
0 | 1544 |
for i, action in enumerate(self.Actions): |
1545 |
if i != 0: |
|
27 | 1546 |
dc.DrawLine(self.Pos.x, self.Pos.y + i * line_size, |
1547 |
self.Pos.x + self.Size[0], self.Pos.y + i * line_size) |
|
0 | 1548 |
text_width, text_height = dc.GetTextExtent(action["qualifier"]) |
1549 |
if "duration" in action: |
|
1550 |
dc.DrawText(action["qualifier"], self.Pos.x + (colsize[0] - text_width) / 2, |
|
27 | 1551 |
self.Pos.y + i * line_size + line_size / 2 - text_height) |
1 | 1552 |
text_width, text_height = dc.GetTextExtent(action["duration"]) |
1553 |
dc.DrawText(action["duration"], self.Pos.x + (colsize[0] - text_width) / 2, |
|
27 | 1554 |
self.Pos.y + i * line_size + line_size / 2) |
0 | 1555 |
else: |
1556 |
dc.DrawText(action["qualifier"], self.Pos.x + (colsize[0] - text_width) / 2, |
|
27 | 1557 |
self.Pos.y + i * line_size + (line_size - text_height) / 2) |
0 | 1558 |
text_width, text_height = dc.GetTextExtent(action["value"]) |
1559 |
dc.DrawText(action["value"], self.Pos.x + colsize[0] + (colsize[1] - text_width) / 2, |
|
27 | 1560 |
self.Pos.y + i * line_size + (line_size - text_height) / 2) |
0 | 1561 |
if "indicator" in action: |
1562 |
text_width, text_height = dc.GetTextExtent(action["indicator"]) |
|
1563 |
dc.DrawText(action["indicator"], self.Pos.x + colsize[0] + colsize[1] + (colsize[2] - text_width) / 2, |
|
27 | 1564 |
self.Pos.y + i * line_size + (line_size - text_height) / 2) |
0 | 1565 |
# Draw input connector |
1566 |
self.Input.Draw(dc) |
|
1567 |
Graphic_Element.Draw(self, dc) |
|
27 | 1568 |