author | laurent |
Mon, 12 Oct 2009 10:20:09 +0200 | |
changeset 447 | 6083dcecd2c5 |
parent 383 | 25ffba02b6a8 |
child 478 | dc403c47af54 |
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 |
||
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
327
diff
changeset
|
44 |
class SFC_Step(Graphic_Element, DebugDataConsumer): |
0 | 45 |
|
46 |
# Create a new step |
|
47 |
def __init__(self, parent, name, initial = False, id = None): |
|
48 |
Graphic_Element.__init__(self, parent) |
|
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
327
diff
changeset
|
49 |
DebugDataConsumer.__init__(self) |
213 | 50 |
self.SetName(name) |
0 | 51 |
self.Initial = initial |
52 |
self.Id = id |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
53 |
self.Error = None |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
54 |
self.Size = wx.Size(SFC_STEP_DEFAULT_SIZE[0], SFC_STEP_DEFAULT_SIZE[1]) |
0 | 55 |
# Create an input and output connector |
56 |
if not self.Initial: |
|
108 | 57 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
0 | 58 |
else: |
59 |
self.Input = None |
|
60 |
self.Output = None |
|
61 |
self.Action = None |
|
253 | 62 |
self.PreviousValue = None |
63 |
self.PreviousSpreading = False |
|
0 | 64 |
|
249 | 65 |
def Flush(self): |
66 |
if self.Input is not None: |
|
67 |
self.Input.Flush() |
|
68 |
self.Input = None |
|
69 |
if self.Output is not None: |
|
70 |
self.Output.Flush() |
|
71 |
self.Output = None |
|
72 |
if self.Output is not None: |
|
73 |
self.Action.Flush() |
|
74 |
self.Action = None |
|
0 | 75 |
|
253 | 76 |
def SetValue(self, value): |
77 |
self.PreviousValue = self.Value |
|
78 |
self.Value = value |
|
79 |
if self.Value != self.PreviousValue: |
|
368 | 80 |
if self.Visible: |
81 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
|
253 | 82 |
self.SpreadCurrent() |
83 |
||
84 |
def SpreadCurrent(self): |
|
85 |
if self.Parent.Debug: |
|
86 |
spreading = self.Value |
|
87 |
if spreading and not self.PreviousSpreading: |
|
263 | 88 |
if self.Output is not None: |
89 |
self.Output.SpreadCurrent(True) |
|
253 | 90 |
if self.Action is not None: |
91 |
self.Action.SpreadCurrent(True) |
|
92 |
elif not spreading and self.PreviousSpreading: |
|
263 | 93 |
if self.Output is not None: |
94 |
self.Output.SpreadCurrent(False) |
|
253 | 95 |
if self.Action is not None: |
96 |
self.Action.SpreadCurrent(False) |
|
97 |
self.PreviousSpreading = spreading |
|
98 |
||
112 | 99 |
# Make a clone of this SFC_Step |
162 | 100 |
def Clone(self, parent, id = None, name = "Step", pos = None): |
101 |
step = SFC_Step(parent, name, self.Initial, id) |
|
112 | 102 |
step.SetSize(self.Size[0], self.Size[1]) |
103 |
if pos is not None: |
|
104 |
step.SetPosition(pos.x, pos.y) |
|
283 | 105 |
else: |
106 |
step.SetPosition(self.Pos.x, self.Pos.y) |
|
144 | 107 |
if self.Input: |
108 |
step.Input = self.Input.Clone(step) |
|
109 |
if self.Output: |
|
110 |
step.Output = self.Output.Clone(step) |
|
111 |
if self.Action: |
|
112 |
step.Action = self.Action.Clone(step) |
|
112 | 113 |
return step |
114 |
||
283 | 115 |
def GetConnectorTranslation(self, element): |
116 |
connectors = {} |
|
117 |
if self.Input is not None: |
|
287 | 118 |
connectors[self.Input] = element.Input |
283 | 119 |
if self.Output is not None: |
120 |
connectors[self.Output] = element.Output |
|
121 |
if self.Action is not None: |
|
122 |
connectors[self.Action] = element.Action |
|
123 |
return connectors |
|
124 |
||
144 | 125 |
# Returns the RedrawRect |
126 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
127 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
128 |
if self.Input: |
|
129 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
130 |
if self.Output: |
|
131 |
rect = rect.Union(self.Output.GetRedrawRect(movex, movey)) |
|
132 |
if self.Action: |
|
133 |
rect = rect.Union(self.Action.GetRedrawRect(movex, movey)) |
|
134 |
if movex != 0 or movey != 0: |
|
135 |
if self.Input and self.Input.IsConnected(): |
|
136 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
137 |
if self.Output and self.Output.IsConnected(): |
|
138 |
rect = rect.Union(self.Output.GetConnectedRedrawRect(movex, movey)) |
|
139 |
if self.Action and self.Action.IsConnected(): |
|
140 |
rect = rect.Union(self.Action.GetConnectedRedrawRect(movex, movey)) |
|
141 |
return rect |
|
142 |
||
0 | 143 |
# Delete this step by calling the appropriate method |
144 |
def Delete(self): |
|
145 |
self.Parent.DeleteStep(self) |
|
146 |
||
147 |
# Unconnect input and output |
|
148 |
def Clean(self): |
|
149 |
if self.Input: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
150 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 151 |
if self.Output: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
152 |
self.Output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 153 |
if self.Action: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
154 |
self.Action.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 155 |
|
213 | 156 |
# Refresh the size of text for name |
157 |
def RefreshNameSize(self): |
|
158 |
self.NameSize = self.Parent.GetTextExtent(self.Name) |
|
159 |
||
0 | 160 |
# Add output connector to step |
71 | 161 |
def AddInput(self): |
162 |
if not self.Input: |
|
108 | 163 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
71 | 164 |
self.RefreshBoundingBox() |
165 |
||
166 |
# Remove output connector from step |
|
167 |
def RemoveInput(self): |
|
168 |
if self.Input: |
|
154 | 169 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
71 | 170 |
self.Input = None |
171 |
self.RefreshBoundingBox() |
|
172 |
||
173 |
# Add output connector to step |
|
0 | 174 |
def AddOutput(self): |
175 |
if not self.Output: |
|
145 | 176 |
self.Output = Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH, onlyone = True) |
0 | 177 |
self.RefreshBoundingBox() |
178 |
||
179 |
# Remove output connector from step |
|
180 |
def RemoveOutput(self): |
|
181 |
if self.Output: |
|
154 | 182 |
self.Output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 183 |
self.Output = None |
184 |
self.RefreshBoundingBox() |
|
185 |
||
186 |
# Add action connector to step |
|
187 |
def AddAction(self): |
|
188 |
if not self.Action: |
|
145 | 189 |
self.Action = Connector(self, "", None, wx.Point(self.Size[0], self.Size[1] / 2), EAST, onlyone = True) |
0 | 190 |
self.RefreshBoundingBox() |
191 |
||
192 |
# Remove action connector from step |
|
193 |
def RemoveAction(self): |
|
194 |
if self.Action: |
|
154 | 195 |
self.Action.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 196 |
self.Action = None |
197 |
self.RefreshBoundingBox() |
|
198 |
||
199 |
# Refresh the step bounding box |
|
200 |
def RefreshBoundingBox(self): |
|
201 |
# Calculate the bounding box size |
|
202 |
if self.Action: |
|
203 |
bbx_width = self.Size[0] + CONNECTOR_SIZE |
|
204 |
else: |
|
205 |
bbx_width = self.Size[0] |
|
206 |
if self.Initial: |
|
207 |
bbx_y = self.Pos.y |
|
208 |
bbx_height = self.Size[1] |
|
209 |
if self.Output: |
|
210 |
bbx_height += CONNECTOR_SIZE |
|
211 |
else: |
|
212 |
bbx_y = self.Pos.y - CONNECTOR_SIZE |
|
213 |
bbx_height = self.Size[1] + CONNECTOR_SIZE |
|
214 |
if self.Output: |
|
215 |
bbx_height += CONNECTOR_SIZE |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
216 |
#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
|
217 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
0 | 218 |
|
219 |
# Refresh the positions of the step connectors |
|
220 |
def RefreshConnectors(self): |
|
145 | 221 |
scaling = self.Parent.GetScaling() |
222 |
horizontal_pos = self.Size[0] / 2 |
|
223 |
vertical_pos = self.Size[1] / 2 |
|
224 |
if scaling is not None: |
|
225 |
horizontal_pos = round(float(self.Pos.x + horizontal_pos) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
226 |
vertical_pos = round(float(self.Pos.y + vertical_pos) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
0 | 227 |
# Update input position if it exists |
228 |
if self.Input: |
|
145 | 229 |
self.Input.SetPosition(wx.Point(horizontal_pos, 0)) |
0 | 230 |
# Update output position |
231 |
if self.Output: |
|
145 | 232 |
self.Output.SetPosition(wx.Point(horizontal_pos, self.Size[1])) |
0 | 233 |
# Update action position if it exists |
234 |
if self.Action: |
|
145 | 235 |
self.Action.SetPosition(wx.Point(self.Size[0], vertical_pos)) |
0 | 236 |
self.RefreshConnected() |
237 |
||
238 |
# Refresh the position of wires connected to step |
|
239 |
def RefreshConnected(self, exclude = []): |
|
240 |
if self.Input: |
|
241 |
self.Input.MoveConnected(exclude) |
|
242 |
if self.Output: |
|
243 |
self.Output.MoveConnected(exclude) |
|
244 |
if self.Action: |
|
245 |
self.Action.MoveConnected(exclude) |
|
246 |
||
247 |
# Returns the step connector that starts with the point given if it exists |
|
27 | 248 |
def GetConnector(self, position, name = None): |
249 |
# if a name is given |
|
250 |
if name: |
|
251 |
# Test input, output and action connector if they exists |
|
252 |
if self.Input and name == self.Input.GetName(): |
|
253 |
return self.Input |
|
254 |
if self.Output and name == self.Output.GetName(): |
|
255 |
return self.Output |
|
256 |
if self.Action and name == self.Action.GetName(): |
|
257 |
return self.Action |
|
0 | 258 |
# Test input connector if it exists |
259 |
if self.Input: |
|
260 |
input_pos = self.Input.GetRelPosition() |
|
261 |
if position.x == self.Pos.x + input_pos.x and position.y == self.Pos.y + input_pos.y: |
|
262 |
return self.Input |
|
263 |
# Test output connector if it exists |
|
264 |
if self.Output: |
|
265 |
output_pos = self.Output.GetRelPosition() |
|
266 |
if position.x == self.Pos.x + output_pos.x and position.y == self.Pos.y + output_pos.y: |
|
267 |
return self.Output |
|
268 |
# Test action connector if it exists |
|
269 |
if self.Action: |
|
270 |
action_pos = self.Action.GetRelPosition() |
|
271 |
if position.x == self.Pos.x + action_pos.x and position.y == self.Pos.y + action_pos.y: |
|
272 |
return self.Action |
|
273 |
return None |
|
274 |
||
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
275 |
# Returns action step connector |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
276 |
def GetActionConnector(self): |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
277 |
return self.Action |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
278 |
|
0 | 279 |
# Returns input and output step connectors |
280 |
def GetConnectors(self): |
|
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
281 |
connectors = {"inputs": [], "outputs": []} |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
282 |
if self.Input: |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
283 |
connectors["inputs"].append(self.Input) |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
284 |
if self.Output: |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
285 |
connectors["outputs"].append(self.Output) |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
286 |
return connectors |
0 | 287 |
|
288 |
# Test if point given is on step input or output connector |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
289 |
def TestConnector(self, pt, direction = None, exclude=True): |
0 | 290 |
# Test input connector if it exists |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
291 |
if self.Input and self.Input.TestPoint(pt, direction, exclude): |
0 | 292 |
return self.Input |
293 |
# Test output connector |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
294 |
if self.Output and self.Output.TestPoint(pt, direction, exclude): |
0 | 295 |
return self.Output |
108 | 296 |
# Test action connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
297 |
if self.Action and self.Action.TestPoint(pt, direction, exclude): |
108 | 298 |
return self.Action |
0 | 299 |
return None |
300 |
||
301 |
# Changes the step name |
|
302 |
def SetName(self, name): |
|
303 |
self.Name = name |
|
213 | 304 |
self.RefreshNameSize() |
0 | 305 |
|
306 |
# Returns the step name |
|
307 |
def GetName(self): |
|
308 |
return self.Name |
|
309 |
||
310 |
# Returns the step initial property |
|
311 |
def GetInitial(self): |
|
312 |
return self.Initial |
|
313 |
||
314 |
# Returns the connector connected to input |
|
315 |
def GetPreviousConnector(self): |
|
316 |
if self.Input: |
|
317 |
wires = self.Input.GetWires() |
|
318 |
if len(wires) == 1: |
|
145 | 319 |
return wires[0][0].GetOtherConnected(self.Input) |
0 | 320 |
return None |
321 |
||
322 |
# Returns the connector connected to output |
|
323 |
def GetNextConnector(self): |
|
324 |
if self.Output: |
|
325 |
wires = self.Output.GetWires() |
|
326 |
if len(wires) == 1: |
|
145 | 327 |
return wires[0][0].GetOtherConnected(self.Output) |
0 | 328 |
return None |
329 |
||
330 |
# Returns the connector connected to action |
|
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
331 |
def GetActionConnected(self): |
0 | 332 |
if self.Action: |
333 |
wires = self.Action.GetWires() |
|
334 |
if len(wires) == 1: |
|
145 | 335 |
return wires[0][0].GetOtherConnected(self.Action) |
0 | 336 |
return None |
337 |
||
338 |
# Returns the number of action line |
|
339 |
def GetActionExtraLineNumber(self): |
|
340 |
if self.Action: |
|
341 |
wires = self.Action.GetWires() |
|
342 |
if len(wires) != 1: |
|
343 |
return 0 |
|
145 | 344 |
action_block = wires[0][0].GetOtherConnected(self.Action).GetParentBlock() |
0 | 345 |
return max(0, action_block.GetLineNumber() - 1) |
346 |
return 0 |
|
347 |
||
348 |
# Returns the step minimum size |
|
349 |
def GetMinSize(self): |
|
165 | 350 |
text_width, text_height = self.Parent.GetTextExtent(self.Name) |
0 | 351 |
if self.Initial: |
352 |
return text_width + 14, text_height + 14 |
|
353 |
else: |
|
354 |
return text_width + 10, text_height + 10 |
|
355 |
||
356 |
# Updates the step size |
|
357 |
def UpdateSize(self, width, height): |
|
358 |
diffx = self.Size.GetWidth() / 2 - width / 2 |
|
359 |
diffy = height - self.Size.GetHeight() |
|
360 |
self.Move(diffx, 0) |
|
361 |
Graphic_Element.SetSize(self, width, height) |
|
108 | 362 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
363 |
self.RefreshConnected() |
|
364 |
else: |
|
365 |
self.RefreshOutputPosition((0, diffy)) |
|
0 | 366 |
|
367 |
# Align input element with this step |
|
368 |
def RefreshInputPosition(self): |
|
369 |
if self.Input: |
|
370 |
current_pos = self.Input.GetPosition(False) |
|
371 |
input = self.GetPreviousConnector() |
|
372 |
if input: |
|
373 |
input_pos = input.GetPosition(False) |
|
374 |
diffx = current_pos.x - input_pos.x |
|
375 |
input_block = input.GetParentBlock() |
|
376 |
if isinstance(input_block, SFC_Divergence): |
|
377 |
input_block.MoveConnector(input, diffx) |
|
378 |
else: |
|
379 |
if isinstance(input_block, SFC_Step): |
|
380 |
input_block.MoveActionBlock((diffx, 0)) |
|
381 |
input_block.Move(diffx, 0) |
|
382 |
input_block.RefreshInputPosition() |
|
383 |
||
384 |
# Align output element with this step |
|
385 |
def RefreshOutputPosition(self, move = None): |
|
386 |
if self.Output: |
|
387 |
wires = self.Output.GetWires() |
|
388 |
if len(wires) != 1: |
|
389 |
return |
|
390 |
current_pos = self.Output.GetPosition(False) |
|
145 | 391 |
output = wires[0][0].GetOtherConnected(self.Output) |
0 | 392 |
output_pos = output.GetPosition(False) |
393 |
diffx = current_pos.x - output_pos.x |
|
394 |
output_block = output.GetParentBlock() |
|
395 |
wire_size = SFC_WIRE_MIN_SIZE + self.GetActionExtraLineNumber() * SFC_ACTION_MIN_SIZE[1] |
|
396 |
diffy = wire_size - output_pos.y + current_pos.y |
|
397 |
if diffy != 0: |
|
398 |
if isinstance(output_block, SFC_Step): |
|
399 |
output_block.MoveActionBlock((diffx, diffy)) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
400 |
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
|
401 |
wx.Point(current_pos.x, current_pos.y)]) |
0 | 402 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
403 |
output_block.Move(diffx, diffy, self.Parent.Wires) |
|
404 |
output_block.RefreshOutputPosition((diffx, diffy)) |
|
405 |
else: |
|
406 |
output_block.RefreshPosition() |
|
407 |
elif move: |
|
408 |
if isinstance(output_block, SFC_Step): |
|
409 |
output_block.MoveActionBlock(move) |
|
410 |
wires[0][0].Move(move[0], move[1], True) |
|
411 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
412 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
413 |
output_block.RefreshOutputPosition(move) |
|
414 |
else: |
|
415 |
output_block.RefreshPosition() |
|
416 |
elif isinstance(output_block, SFC_Divergence): |
|
417 |
output_block.MoveConnector(output, diffx) |
|
418 |
else: |
|
419 |
if isinstance(output_block, SFC_Step): |
|
420 |
output_block.MoveActionBlock((diffx, 0)) |
|
421 |
output_block.Move(diffx, 0) |
|
422 |
output_block.RefreshOutputPosition() |
|
423 |
||
424 |
# Refresh action element with this step |
|
425 |
def MoveActionBlock(self, move): |
|
426 |
if self.Action: |
|
427 |
wires = self.Action.GetWires() |
|
428 |
if len(wires) != 1: |
|
429 |
return |
|
145 | 430 |
action_block = wires[0][0].GetOtherConnected(self.Action).GetParentBlock() |
0 | 431 |
action_block.Move(move[0], move[1], self.Parent.Wires) |
432 |
wires[0][0].Move(move[0], move[1], True) |
|
433 |
||
434 |
# Resize the divergence from position and size given |
|
435 |
def Resize(self, x, y, width, height): |
|
27 | 436 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
437 |
self.UpdateSize(width, height) |
|
438 |
else: |
|
439 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 440 |
|
441 |
# Method called when a LeftDClick event have been generated |
|
42 | 442 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 443 |
# Edit the step properties |
444 |
self.Parent.EditStepContent(self) |
|
445 |
||
446 |
# Method called when a RightUp event have been generated |
|
27 | 447 |
def OnRightUp(self, event, dc, scaling): |
0 | 448 |
# Popup the menu with special items for a step |
449 |
self.Parent.PopupDefaultMenu() |
|
450 |
||
451 |
# Refreshes the step state according to move defined and handle selected |
|
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
452 |
def ProcessDragging(self, movex, movey, event, scaling): |
0 | 453 |
handle_type, handle = self.Handle |
454 |
if handle_type == HANDLE_MOVE: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
455 |
movex = max(-self.BoundingBox.x, movex) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
456 |
movey = max(-self.BoundingBox.y, movey) |
145 | 457 |
if scaling is not None: |
458 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
459 |
movey = round(float(self.Pos.y + movey) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
0 | 460 |
action_block = None |
27 | 461 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
462 |
self.Move(movex, movey) |
|
463 |
self.RefreshConnected() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
464 |
return movex, movey |
27 | 465 |
elif self.Initial: |
0 | 466 |
self.MoveActionBlock((movex, movey)) |
467 |
self.Move(movex, movey, self.Parent.Wires) |
|
468 |
self.RefreshOutputPosition((movex, movey)) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
469 |
return movex, movey |
0 | 470 |
else: |
471 |
self.MoveActionBlock((movex, 0)) |
|
472 |
self.Move(movex, 0) |
|
473 |
self.RefreshInputPosition() |
|
474 |
self.RefreshOutputPosition() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
475 |
return movex, 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
476 |
else: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
477 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
0 | 478 |
|
479 |
# Refresh input element model |
|
480 |
def RefreshInputModel(self): |
|
481 |
if self.Input: |
|
482 |
input = self.GetPreviousConnector() |
|
483 |
if input: |
|
484 |
input_block = input.GetParentBlock() |
|
485 |
input_block.RefreshModel(False) |
|
486 |
if not isinstance(input_block, SFC_Divergence): |
|
487 |
input_block.RefreshInputModel() |
|
488 |
||
489 |
# Refresh output element model |
|
490 |
def RefreshOutputModel(self, move=False): |
|
491 |
if self.Output: |
|
492 |
output = self.GetNextConnector() |
|
493 |
if output: |
|
494 |
output_block = output.GetParentBlock() |
|
495 |
output_block.RefreshModel(False) |
|
496 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
497 |
output_block.RefreshOutputModel(move) |
|
498 |
||
499 |
# Refreshes the step model |
|
500 |
def RefreshModel(self, move=True): |
|
501 |
self.Parent.RefreshStepModel(self) |
|
502 |
if self.Action: |
|
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
503 |
action = self.GetActionConnected() |
0 | 504 |
if action: |
505 |
action_block = action.GetParentBlock() |
|
506 |
action_block.RefreshModel(False) |
|
507 |
# If step has moved, refresh the model of wires connected to output |
|
508 |
if move: |
|
27 | 509 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
510 |
self.RefreshInputModel() |
|
511 |
self.RefreshOutputModel(self.Initial) |
|
512 |
elif self.Output: |
|
513 |
self.Output.RefreshWires() |
|
0 | 514 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
515 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
516 |
if infos[0] == "name" and start[0] == 0 and end[0] == 0: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
517 |
self.Error = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
518 |
|
0 | 519 |
# Draws step |
520 |
def Draw(self, dc): |
|
144 | 521 |
Graphic_Element.Draw(self, dc) |
253 | 522 |
if self.Value: |
523 |
dc.SetPen(wx.GREEN_PEN) |
|
524 |
else: |
|
525 |
dc.SetPen(wx.BLACK_PEN) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
526 |
dc.SetBrush(wx.WHITE_BRUSH) |
213 | 527 |
|
528 |
if getattr(dc, "printing", False): |
|
529 |
name_size = dc.GetTextExtent(self.Name) |
|
530 |
else: |
|
531 |
name_size = self.NameSize |
|
532 |
||
0 | 533 |
# Draw two rectangles for representing the step |
534 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
535 |
if self.Initial: |
|
536 |
dc.DrawRectangle(self.Pos.x + 2, self.Pos.y + 2, self.Size[0] - 3, self.Size[1] - 3) |
|
537 |
# Draw step name |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
538 |
name_pos = (self.Pos.x + (self.Size[0] - name_size[0]) / 2, |
213 | 539 |
self.Pos.y + (self.Size[1] - name_size[1]) / 2) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
540 |
dc.DrawText(self.Name, name_pos[0], name_pos[1]) |
0 | 541 |
# Draw input and output connectors |
542 |
if self.Input: |
|
543 |
self.Input.Draw(dc) |
|
544 |
if self.Output: |
|
545 |
self.Output.Draw(dc) |
|
546 |
if self.Action: |
|
547 |
self.Action.Draw(dc) |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
548 |
if self.Error is not None: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
549 |
HighlightErrorZone(dc, name_pos[0], name_pos[1], name_size[0], name_size[1]) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
550 |
|
0 | 551 |
|
552 |
#------------------------------------------------------------------------------- |
|
553 |
# Sequencial Function Chart Transition |
|
554 |
#------------------------------------------------------------------------------- |
|
555 |
||
556 |
""" |
|
557 |
Class that implements the graphic representation of a transition |
|
558 |
""" |
|
559 |
||
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
327
diff
changeset
|
560 |
class SFC_Transition(Graphic_Element, DebugDataConsumer): |
0 | 561 |
|
562 |
# Create a new transition |
|
80 | 563 |
def __init__(self, parent, type = "reference", condition = None, priority = 0, id = None): |
0 | 564 |
Graphic_Element.__init__(self, parent) |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
327
diff
changeset
|
565 |
DebugDataConsumer.__init__(self) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
566 |
self.Type = None |
0 | 567 |
self.Id = id |
80 | 568 |
self.Priority = 0 |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
569 |
self.Size = wx.Size(SFC_TRANSITION_SIZE[0], SFC_TRANSITION_SIZE[1]) |
0 | 570 |
# Create an input and output connector |
145 | 571 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH, onlyone = True) |
572 |
self.Output = Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH, onlyone = True) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
573 |
self.SetType(type, condition) |
80 | 574 |
self.SetPriority(priority) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
575 |
self.Errors = {} |
253 | 576 |
self.PreviousValue = None |
577 |
self.PreviousSpreading = False |
|
0 | 578 |
|
249 | 579 |
def Flush(self): |
580 |
if self.Input is not None: |
|
581 |
self.Input.Flush() |
|
582 |
self.Input = None |
|
583 |
if self.Output is not None: |
|
584 |
self.Output.Flush() |
|
585 |
self.Output = None |
|
586 |
if self.Type == "connection" and self.Condition is not None: |
|
587 |
self.Condition.Flush() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
588 |
self.Condition = None |
0 | 589 |
|
253 | 590 |
def SetValue(self, value): |
591 |
self.PreviousValue = self.Value |
|
592 |
self.Value = value |
|
593 |
if self.Value != self.PreviousValue: |
|
368 | 594 |
if self.Visible: |
595 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
|
253 | 596 |
self.SpreadCurrent() |
597 |
||
598 |
def SpreadCurrent(self): |
|
599 |
if self.Parent.Debug: |
|
600 |
if self.Value is None: |
|
601 |
self.Value = False |
|
602 |
spreading = self.Input.ReceivingCurrent() & self.Value |
|
603 |
if spreading and not self.PreviousSpreading: |
|
604 |
self.Output.SpreadCurrent(True) |
|
605 |
elif not spreading and self.PreviousSpreading: |
|
606 |
self.Output.SpreadCurrent(False) |
|
607 |
self.PreviousSpreading = spreading |
|
608 |
||
112 | 609 |
# Make a clone of this SFC_Transition |
162 | 610 |
def Clone(self, parent, id = None, pos = None): |
611 |
transition = SFC_Transition(parent, self.Type, self.Condition, self.Priority, id) |
|
112 | 612 |
transition.SetSize(self.Size[0], self.Size[1]) |
613 |
if pos is not None: |
|
614 |
transition.SetPosition(pos.x, pos.y) |
|
283 | 615 |
else: |
616 |
transition.SetPosition(self.Pos.x, self.Pos.y) |
|
112 | 617 |
transition.Input = self.Input.Clone(transition) |
618 |
transition.Output = self.Output.Clone(transition) |
|
172 | 619 |
if self.Type == "connection": |
620 |
transition.Condition = self.Condition.Clone(transition) |
|
112 | 621 |
return transition |
622 |
||
283 | 623 |
def GetConnectorTranslation(self, element): |
624 |
connectors = {self.Input : element.Input, self.Output : element.Output} |
|
625 |
if self.Type == "connection" and self.Condition is not None: |
|
626 |
connectors[self.Condition] = element.Condition |
|
627 |
return connectors |
|
628 |
||
144 | 629 |
# Returns the RedrawRect |
630 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
631 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
632 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
633 |
rect = rect.Union(self.Output.GetRedrawRect(movex, movey)) |
|
634 |
if movex != 0 or movey != 0: |
|
635 |
if self.Input.IsConnected(): |
|
636 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
637 |
if self.Output.IsConnected(): |
|
638 |
rect = rect.Union(self.Output.GetConnectedRedrawRect(movex, movey)) |
|
175 | 639 |
if self.Type == "connection" and self.Condition.IsConnected(): |
172 | 640 |
rect = rect.Union(self.Condition.GetConnectedRedrawRect(movex, movey)) |
144 | 641 |
return rect |
642 |
||
0 | 643 |
# Forbids to change the transition size |
644 |
def SetSize(self, width, height): |
|
27 | 645 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
646 |
Graphic_Element.SetSize(self, width, height) |
|
0 | 647 |
|
648 |
# Forbids to resize the transition |
|
649 |
def Resize(self, x, y, width, height): |
|
27 | 650 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
651 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 652 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
653 |
# Refresh the size of text for name |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
654 |
def RefreshConditionSize(self): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
655 |
if self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
656 |
if self.Condition != "": |
165 | 657 |
self.ConditionSize = self.Parent.GetTextExtent(self.Condition) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
658 |
else: |
165 | 659 |
self.ConditionSize = self.Parent.GetTextExtent("Transition") |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
660 |
|
80 | 661 |
# Refresh the size of text for name |
662 |
def RefreshPrioritySize(self): |
|
663 |
if self.Priority != "": |
|
165 | 664 |
self.PrioritySize = self.Parent.GetTextExtent(str(self.Priority)) |
80 | 665 |
else: |
666 |
self.PrioritySize = None |
|
667 |
||
0 | 668 |
# Delete this transition by calling the appropriate method |
669 |
def Delete(self): |
|
670 |
self.Parent.DeleteTransition(self) |
|
671 |
||
672 |
# Unconnect input and output |
|
673 |
def Clean(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
674 |
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
|
675 |
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
|
676 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
677 |
self.Condition.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 678 |
|
679 |
# Refresh the transition bounding box |
|
680 |
def RefreshBoundingBox(self): |
|
80 | 681 |
bbx_x, bbx_y, bbx_width, bbx_height = self.Pos.x, self.Pos.y, self.Size[0], self.Size[1] |
682 |
if self.Priority != 0: |
|
683 |
bbx_y = self.Pos.y - self.PrioritySize[1] - 2 |
|
684 |
bbx_width = max(self.Size[0], self.PrioritySize[0]) |
|
685 |
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
|
686 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
687 |
bbx_x = self.Pos.x - CONNECTOR_SIZE |
80 | 688 |
bbx_width = bbx_width + CONNECTOR_SIZE |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
689 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
690 |
text_width, text_height = self.ConditionSize |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
691 |
# Calculate the bounding box size |
80 | 692 |
bbx_width = max(bbx_width, self.Size[0] + 5 + text_width) |
693 |
bbx_y = min(bbx_y, self.Pos.y - max(0, (text_height - self.Size[1]) / 2)) |
|
694 |
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
|
695 |
self.BoundingBox = wx.Rect(bbx_x, bbx_y, bbx_width + 1, bbx_height + 1) |
0 | 696 |
|
697 |
# Returns the connector connected to input |
|
698 |
def GetPreviousConnector(self): |
|
699 |
wires = self.Input.GetWires() |
|
700 |
if len(wires) == 1: |
|
145 | 701 |
return wires[0][0].GetOtherConnected(self.Input) |
0 | 702 |
return None |
703 |
||
704 |
# Returns the connector connected to output |
|
705 |
def GetNextConnector(self): |
|
706 |
wires = self.Output.GetWires() |
|
707 |
if len(wires) == 1: |
|
145 | 708 |
return wires[0][0].GetOtherConnected(self.Output) |
0 | 709 |
return None |
710 |
||
711 |
# Refresh the positions of the transition connectors |
|
712 |
def RefreshConnectors(self): |
|
145 | 713 |
scaling = self.Parent.GetScaling() |
714 |
horizontal_pos = self.Size[0] / 2 |
|
715 |
vertical_pos = self.Size[1] / 2 |
|
716 |
if scaling is not None: |
|
717 |
horizontal_pos = round(float(self.Pos.x + horizontal_pos) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
718 |
vertical_pos = round(float(self.Pos.y + vertical_pos) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
0 | 719 |
# Update input position |
145 | 720 |
self.Input.SetPosition(wx.Point(horizontal_pos, 0)) |
0 | 721 |
# Update output position |
145 | 722 |
self.Output.SetPosition(wx.Point(horizontal_pos, self.Size[1])) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
723 |
if self.Type == "connection": |
145 | 724 |
self.Condition.SetPosition(wx.Point(0, vertical_pos)) |
0 | 725 |
self.RefreshConnected() |
726 |
||
727 |
# Refresh the position of the wires connected to transition |
|
728 |
def RefreshConnected(self, exclude = []): |
|
729 |
self.Input.MoveConnected(exclude) |
|
730 |
self.Output.MoveConnected(exclude) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
731 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
732 |
self.Condition.MoveConnected(exclude) |
0 | 733 |
|
734 |
# Returns the transition connector that starts with the point given if it exists |
|
27 | 735 |
def GetConnector(self, position, name = None): |
736 |
# if a name is given |
|
737 |
if name: |
|
738 |
# Test input and output connector |
|
739 |
if name == self.Input.GetName(): |
|
740 |
return self.Input |
|
741 |
if name == self.Output.GetName(): |
|
742 |
return self.Output |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
743 |
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
|
744 |
return self.Condition |
0 | 745 |
# Test input connector |
746 |
input_pos = self.Input.GetRelPosition() |
|
747 |
if position.x == self.Pos.x + input_pos.x and position.y == self.Pos.y + input_pos.y: |
|
748 |
return self.Input |
|
749 |
# Test output connector |
|
750 |
output_pos = self.Output.GetRelPosition() |
|
751 |
if position.x == self.Pos.x + output_pos.x and position.y == self.Pos.y + output_pos.y: |
|
752 |
return self.Output |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
753 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
754 |
# Test condition connector |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
755 |
condition_pos = self.Condition.GetRelPosition() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
756 |
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
|
757 |
return self.Condition |
0 | 758 |
return None |
759 |
||
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
760 |
# Returns the transition condition connector |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
761 |
def GetConditionConnector(self): |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
762 |
if self.Type == "connection": |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
763 |
return self.Condition |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
764 |
return None |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
765 |
|
0 | 766 |
# Returns input and output transition connectors |
767 |
def GetConnectors(self): |
|
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
768 |
return {"inputs": [self.Input], "outputs": [self.Output]} |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
769 |
|
0 | 770 |
# Test if point given is on transition input or output connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
771 |
def TestConnector(self, pt, direction = None, exclude=True): |
0 | 772 |
# Test input connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
773 |
if self.Input.TestPoint(pt, direction, exclude): |
0 | 774 |
return self.Input |
775 |
# Test output connector |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
776 |
if self.Output.TestPoint(pt, direction, exclude): |
0 | 777 |
return self.Output |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
778 |
# Test condition connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
779 |
if self.Type == "connection" and self.Condition.TestPoint(pt, direction, exclude): |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
780 |
return self.Condition |
0 | 781 |
return None |
782 |
||
783 |
# Changes the transition type |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
784 |
def SetType(self, type, condition = None): |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
785 |
if self.Type != type: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
786 |
if self.Type == "connection": |
154 | 787 |
self.Condition.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
788 |
self.Type = type |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
789 |
if type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
790 |
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
|
791 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
792 |
if condition == None: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
793 |
condition = "" |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
794 |
self.Condition = condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
795 |
self.RefreshConditionSize() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
796 |
elif self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
797 |
if condition == None: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
798 |
condition = "" |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
799 |
self.Condition = condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
800 |
self.RefreshConditionSize() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
801 |
self.RefreshBoundingBox() |
0 | 802 |
|
803 |
# Returns the transition type |
|
804 |
def GetType(self): |
|
805 |
return self.Type |
|
806 |
||
80 | 807 |
# Changes the transition priority |
808 |
def SetPriority(self, priority): |
|
809 |
self.Priority = priority |
|
810 |
self.RefreshPrioritySize() |
|
811 |
self.RefreshBoundingBox() |
|
812 |
||
813 |
# Returns the transition type |
|
814 |
def GetPriority(self): |
|
815 |
return self.Priority |
|
816 |
||
0 | 817 |
# Returns the transition condition |
818 |
def GetCondition(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
819 |
if self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
820 |
return self.Condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
821 |
return None |
0 | 822 |
|
823 |
# Returns the transition minimum size |
|
824 |
def GetMinSize(self): |
|
825 |
return SFC_TRANSITION_SIZE |
|
826 |
||
827 |
# Align input element with this step |
|
828 |
def RefreshInputPosition(self): |
|
829 |
wires = self.Input.GetWires() |
|
830 |
current_pos = self.Input.GetPosition(False) |
|
831 |
input = self.GetPreviousConnector() |
|
832 |
if input: |
|
833 |
input_pos = input.GetPosition(False) |
|
834 |
diffx = current_pos.x - input_pos.x |
|
835 |
input_block = input.GetParentBlock() |
|
836 |
if isinstance(input_block, SFC_Divergence): |
|
837 |
input_block.MoveConnector(input, diffx) |
|
838 |
else: |
|
839 |
if isinstance(input_block, SFC_Step): |
|
840 |
input_block.MoveActionBlock((diffx, 0)) |
|
841 |
input_block.Move(diffx, 0) |
|
842 |
input_block.RefreshInputPosition() |
|
843 |
||
844 |
# Align output element with this step |
|
845 |
def RefreshOutputPosition(self, move = None): |
|
846 |
wires = self.Output.GetWires() |
|
847 |
if len(wires) != 1: |
|
848 |
return |
|
849 |
current_pos = self.Output.GetPosition(False) |
|
145 | 850 |
output = wires[0][0].GetOtherConnected(self.Output) |
0 | 851 |
output_pos = output.GetPosition(False) |
852 |
diffx = current_pos.x - output_pos.x |
|
853 |
output_block = output.GetParentBlock() |
|
854 |
if move: |
|
855 |
if isinstance(output_block, SFC_Step): |
|
856 |
output_block.MoveActionBlock(move) |
|
857 |
wires[0][0].Move(move[0], move[1], True) |
|
858 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
859 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
860 |
output_block.RefreshOutputPosition(move) |
|
861 |
else: |
|
862 |
output_block.RefreshPosition() |
|
863 |
elif isinstance(output_block, SFC_Divergence): |
|
864 |
output_block.MoveConnector(output, diffx) |
|
865 |
else: |
|
866 |
if isinstance(output_block, SFC_Step): |
|
867 |
output_block.MoveActionBlock((diffx, 0)) |
|
868 |
output_block.Move(diffx, 0) |
|
869 |
output_block.RefreshOutputPosition() |
|
27 | 870 |
|
0 | 871 |
# Method called when a LeftDClick event have been generated |
27 | 872 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 873 |
# Edit the transition properties |
874 |
self.Parent.EditTransitionContent(self) |
|
875 |
||
876 |
# Method called when a RightUp event have been generated |
|
27 | 877 |
def OnRightUp(self, event, dc, scaling): |
0 | 878 |
# Popup the menu with special items for a step |
879 |
self.Parent.PopupDefaultMenu() |
|
880 |
||
881 |
# Refreshes the transition state according to move defined and handle selected |
|
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
882 |
def ProcessDragging(self, movex, movey, event, scaling): |
27 | 883 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
884 |
movex = max(-self.BoundingBox.x, movex) |
145 | 885 |
if scaling is not None: |
886 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
27 | 887 |
self.Move(movex, 0) |
888 |
self.RefreshInputPosition() |
|
889 |
self.RefreshOutputPosition() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
890 |
return movex, 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
891 |
else: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
892 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling, width_fac = 2, height_fac = 2) |
0 | 893 |
|
894 |
# Refresh input element model |
|
895 |
def RefreshInputModel(self): |
|
27 | 896 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
897 |
input = self.GetPreviousConnector() |
|
898 |
if input: |
|
899 |
input_block = input.GetParentBlock() |
|
900 |
input_block.RefreshModel(False) |
|
901 |
if not isinstance(input_block, SFC_Divergence): |
|
902 |
input_block.RefreshInputModel() |
|
0 | 903 |
|
904 |
# Refresh output element model |
|
905 |
def RefreshOutputModel(self, move=False): |
|
906 |
output = self.GetNextConnector() |
|
907 |
if output: |
|
908 |
output_block = output.GetParentBlock() |
|
909 |
output_block.RefreshModel(False) |
|
910 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
911 |
output_block.RefreshOutputModel(move) |
|
912 |
||
913 |
# Refreshes the transition model |
|
914 |
def RefreshModel(self, move=True): |
|
915 |
self.Parent.RefreshTransitionModel(self) |
|
916 |
# If transition has moved, refresh the model of wires connected to output |
|
917 |
if move: |
|
27 | 918 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
919 |
self.RefreshInputModel() |
|
920 |
self.RefreshOutputModel() |
|
921 |
else: |
|
922 |
self.Output.RefreshWires() |
|
0 | 923 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
924 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
925 |
if infos[0] == "priority" and start[0] == 0 and start[1] == 0: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
926 |
self.Errors[infos[0]] = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
927 |
elif infos[0] == "inline": |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
928 |
if not self.Errors.has_key(infos[0]): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
929 |
self.Errors[infos[0]] = [] |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
930 |
self.Errors[infos[0]].append((start[1], end[1])) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
931 |
else: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
932 |
pass |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
933 |
|
0 | 934 |
# Draws transition |
935 |
def Draw(self, dc): |
|
144 | 936 |
Graphic_Element.Draw(self, dc) |
253 | 937 |
if self.Value: |
938 |
dc.SetPen(wx.GREEN_PEN) |
|
939 |
dc.SetBrush(wx.GREEN_BRUSH) |
|
940 |
else: |
|
941 |
dc.SetPen(wx.BLACK_PEN) |
|
942 |
dc.SetBrush(wx.BLACK_BRUSH) |
|
213 | 943 |
|
944 |
if getattr(dc, "printing", False): |
|
945 |
if self.Type != "connection": |
|
946 |
condition_size = dc.GetTextExtent(self.Condition) |
|
947 |
if self.Priority != 0: |
|
948 |
priority_size = dc.GetTextExtent(str(self.Priority)) |
|
949 |
else: |
|
950 |
if self.Type != "connection": |
|
951 |
condition_size = self.ConditionSize |
|
952 |
if self.Priority != 0: |
|
953 |
priority_size = self.PrioritySize |
|
954 |
||
0 | 955 |
# Draw plain rectangle for representing the transition |
175 | 956 |
dc.DrawRectangle(self.Pos.x, |
957 |
self.Pos.y + (self.Size[1] - SFC_TRANSITION_SIZE[1])/2, |
|
958 |
self.Size[0] + 1, |
|
959 |
SFC_TRANSITION_SIZE[1] + 1) |
|
960 |
vertical_line_x = self.Input.GetPosition()[0] |
|
199 | 961 |
dc.DrawLine(vertical_line_x, self.Pos.y, vertical_line_x, self.Pos.y + self.Size[1] + 1) |
0 | 962 |
# Draw transition condition |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
963 |
if self.Type != "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
964 |
if self.Condition != "": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
965 |
condition = self.Condition |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
966 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
967 |
condition = "Transition" |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
968 |
condition_pos = (self.Pos.x + self.Size[0] + 5, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
969 |
self.Pos.y + (self.Size[1] - condition_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
970 |
dc.DrawText(condition, condition_pos[0], condition_pos[1]) |
80 | 971 |
# Draw priority number |
972 |
if self.Priority != 0: |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
973 |
priority_pos = (self.Pos.x, self.Pos.y - priority_size[1] - 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
974 |
dc.DrawText(str(self.Priority), priority_pos[0], priority_pos[1]) |
0 | 975 |
# Draw input and output connectors |
976 |
self.Input.Draw(dc) |
|
977 |
self.Output.Draw(dc) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
978 |
if self.Type == "connection": |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
979 |
self.Condition.Draw(dc) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
980 |
if self.Errors.has_key("priority"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
981 |
HighlightErrorZone(dc, priority_pos[0], priority_pos[1], priority_size[0], priority_size[1]) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
982 |
if self.Errors.has_key("inline"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
983 |
for start, end in self.Errors["inline"]: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
984 |
offset = dc.GetTextExtent(self.Condition[:start]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
985 |
size = dc.GetTextExtent(self.Condition[start:end + 1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
986 |
HighlightErrorZone(dc, condition_pos[0] + offset[0], condition_pos[1], size[0], size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
987 |
|
0 | 988 |
|
989 |
#------------------------------------------------------------------------------- |
|
990 |
# Sequencial Function Chart Divergence and Convergence |
|
991 |
#------------------------------------------------------------------------------- |
|
992 |
||
993 |
""" |
|
994 |
Class that implements the graphic representation of a divergence or convergence, |
|
995 |
selection or simultaneous |
|
996 |
""" |
|
997 |
||
998 |
class SFC_Divergence(Graphic_Element): |
|
999 |
||
1000 |
# Create a new divergence |
|
1001 |
def __init__(self, parent, type, number = 2, id = None): |
|
1002 |
Graphic_Element.__init__(self, parent) |
|
1003 |
self.Type = type |
|
1004 |
self.Id = id |
|
1005 |
self.RealConnectors = None |
|
1006 |
number = max(2, number) |
|
175 | 1007 |
self.Size = wx.Size((number - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL, self.GetMinSize()[1]) |
0 | 1008 |
# Create an input and output connector |
1009 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
145 | 1010 |
self.Inputs = [Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH, onlyone = True)] |
0 | 1011 |
self.Outputs = [] |
1012 |
for i in xrange(number): |
|
145 | 1013 |
self.Outputs.append(Connector(self, "", None, wx.Point(i * SFC_DEFAULT_SEQUENCE_INTERVAL, self.Size[1]), SOUTH, onlyone = True)) |
0 | 1014 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
1015 |
self.Inputs = [] |
|
1016 |
for i in xrange(number): |
|
145 | 1017 |
self.Inputs.append(Connector(self, "", None, wx.Point(i * SFC_DEFAULT_SEQUENCE_INTERVAL, 0), NORTH, onlyone = True)) |
1018 |
self.Outputs = [Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH, onlyone = True)] |
|
253 | 1019 |
self.Value = None |
1020 |
self.PreviousValue = None |
|
0 | 1021 |
|
249 | 1022 |
def Flush(self): |
1023 |
for input in self.Inputs: |
|
1024 |
input.Flush() |
|
0 | 1025 |
self.Inputs = [] |
249 | 1026 |
for output in self.Outputs: |
1027 |
output.Flush() |
|
0 | 1028 |
self.Outputs = [] |
1029 |
||
253 | 1030 |
def SpreadCurrent(self): |
1031 |
if self.Parent.Debug: |
|
1032 |
self.PreviousValue = self.Value |
|
1033 |
if self.Type == SELECTION_CONVERGENCE: |
|
1034 |
self.Value = False |
|
1035 |
for input in self.Inputs: |
|
1036 |
self.Value |= input.ReceivingCurrent() |
|
1037 |
elif self.Type == SIMULTANEOUS_CONVERGENCE: |
|
1038 |
self.Value = True |
|
1039 |
for input in self.Inputs: |
|
1040 |
self.Value &= input.ReceivingCurrent() |
|
1041 |
elif self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1042 |
self.Value = self.Inputs[0].ReceivingCurrent() |
|
1043 |
else: |
|
1044 |
self.Value = False |
|
1045 |
if self.Value and not self.PreviousValue: |
|
368 | 1046 |
if self.Visible: |
1047 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
|
253 | 1048 |
for output in self.Outputs: |
1049 |
output.SpreadCurrent(True) |
|
1050 |
elif not self.Value and self.PreviousValue: |
|
368 | 1051 |
if self.Visible: |
1052 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
|
253 | 1053 |
for output in self.Outputs: |
1054 |
output.SpreadCurrent(False) |
|
1055 |
||
112 | 1056 |
# Make a clone of this SFC_Divergence |
162 | 1057 |
def Clone(self, parent, id = None, pos = None): |
1058 |
divergence = SFC_Divergence(parent, self.Type, max(len(self.Inputs), len(self.Outputs)), id) |
|
112 | 1059 |
divergence.SetSize(self.Size[0], self.Size[1]) |
1060 |
if pos is not None: |
|
1061 |
divergence.SetPosition(pos.x, pos.y) |
|
283 | 1062 |
else: |
1063 |
divergence.SetPosition(self.Pos.x, self.Pos.y) |
|
112 | 1064 |
divergence.Inputs = [input.Clone(divergence) for input in self.Inputs] |
1065 |
divergence.Outputs = [output.Clone(divergence) for output in self.Outputs] |
|
1066 |
return divergence |
|
1067 |
||
283 | 1068 |
def GetConnectorTranslation(self, element): |
1069 |
return dict(zip(self.Inputs + self.Outputs, element.Inputs + element.Outputs)) |
|
1070 |
||
144 | 1071 |
# Returns the RedrawRect |
1072 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
1073 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
1074 |
if movex != 0 or movey != 0: |
|
1075 |
for input in self.Inputs: |
|
1076 |
if input.IsConnected(): |
|
1077 |
rect = rect.Union(input.GetConnectedRedrawRect(movex, movey)) |
|
1078 |
for output in self.Outputs: |
|
1079 |
if output.IsConnected(): |
|
1080 |
rect = rect.Union(output.GetConnectedRedrawRect(movex, movey)) |
|
1081 |
return rect |
|
1082 |
||
0 | 1083 |
# Forbids to resize the divergence |
1084 |
def Resize(self, x, y, width, height): |
|
27 | 1085 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
175 | 1086 |
Graphic_Element.Resize(self, x, 0, width, self.GetMinSize()[1]) |
0 | 1087 |
|
1088 |
# Delete this divergence by calling the appropriate method |
|
1089 |
def Delete(self): |
|
1090 |
self.Parent.DeleteDivergence(self) |
|
1091 |
||
1092 |
# Returns the divergence type |
|
1093 |
def GetType(self): |
|
1094 |
return self.Type |
|
1095 |
||
1096 |
# Unconnect input and output |
|
1097 |
def Clean(self): |
|
1098 |
for input in self.Inputs: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1099 |
input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 1100 |
for output in self.Outputs: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1101 |
output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 1102 |
|
1103 |
# Add a branch to the divergence |
|
1104 |
def AddBranch(self): |
|
1105 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1106 |
maxx = 0 |
|
1107 |
for output in self.Outputs: |
|
1108 |
pos = output.GetRelPosition() |
|
1109 |
maxx = max(maxx, pos.x) |
|
145 | 1110 |
connector = Connector(self, "", None, wx.Point(maxx + SFC_DEFAULT_SEQUENCE_INTERVAL, self.Size[1]), SOUTH, onlyone = True) |
0 | 1111 |
self.Outputs.append(connector) |
1112 |
self.MoveConnector(connector, 0) |
|
1113 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1114 |
maxx = 0 |
|
1115 |
for input in self.Inputs: |
|
1116 |
pos = input.GetRelPosition() |
|
1117 |
maxx = max(maxx, pos.x) |
|
145 | 1118 |
connector = Connector(self, "", None, wx.Point(maxx + SFC_DEFAULT_SEQUENCE_INTERVAL, 0), NORTH, onlyone = True) |
0 | 1119 |
self.Inputs.append(connector) |
1120 |
self.MoveConnector(connector, SFC_DEFAULT_SEQUENCE_INTERVAL) |
|
1121 |
||
1122 |
# Remove a branch from the divergence |
|
1123 |
def RemoveBranch(self, connector): |
|
1124 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1125 |
if connector in self.Outputs and len(self.Outputs) > 2: |
0 | 1126 |
self.Outputs.remove(connector) |
1127 |
self.MoveConnector(self.Outputs[0], 0) |
|
1128 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1129 |
if connector in self.Inputs and len(self.Inputs) > 2: |
0 | 1130 |
self.Inputs.remove(connector) |
1131 |
self.MoveConnector(self.Inputs[0], 0) |
|
1132 |
||
80 | 1133 |
# Remove the handled branch from the divergence |
1134 |
def RemoveHandledBranch(self): |
|
1135 |
handle_type, handle = self.Handle |
|
1136 |
if handle_type == HANDLE_CONNECTOR: |
|
1137 |
handle.UnConnect(delete=True) |
|
1138 |
self.RemoveBranch(handle) |
|
1139 |
||
0 | 1140 |
# Return the number of branches for the divergence |
1141 |
def GetBranchNumber(self): |
|
1142 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1143 |
return len(self.Outputs) |
|
1144 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1145 |
return len(self.Inputs) |
|
1146 |
||
1147 |
# Returns if the point given is in the bounding box |
|
1148 |
def HitTest(self, pt): |
|
1149 |
rect = self.BoundingBox |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1150 |
return rect.InsideXY(pt.x, pt.y) or self.TestConnector(pt, exclude=False) != None |
0 | 1151 |
|
1152 |
# Refresh the divergence bounding box |
|
1153 |
def RefreshBoundingBox(self): |
|
1154 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
145 | 1155 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, |
1156 |
self.Size[0] + 1, self.Size[1] + 1) |
|
0 | 1157 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
145 | 1158 |
self.BoundingBox = wx.Rect(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y, |
1159 |
self.Size[0] + 2 * SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Size[1] + 1) |
|
0 | 1160 |
|
1161 |
# Refresh the position of wires connected to divergence |
|
1162 |
def RefreshConnected(self, exclude = []): |
|
1163 |
for input in self.Inputs: |
|
1164 |
input.MoveConnected(exclude) |
|
1165 |
for output in self.Outputs: |
|
1166 |
output.MoveConnected(exclude) |
|
1167 |
||
1168 |
# Moves the divergence connector given |
|
1169 |
def MoveConnector(self, connector, movex): |
|
1170 |
position = connector.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1171 |
connector.SetPosition(wx.Point(position.x + movex, position.y)) |
0 | 1172 |
minx = self.Size[0] |
1173 |
maxx = 0 |
|
1174 |
for input in self.Inputs: |
|
1175 |
input_pos = input.GetRelPosition() |
|
1176 |
minx = min(minx, input_pos.x) |
|
1177 |
maxx = max(maxx, input_pos.x) |
|
1178 |
for output in self.Outputs: |
|
1179 |
output_pos = output.GetRelPosition() |
|
1180 |
minx = min(minx, output_pos.x) |
|
1181 |
maxx = max(maxx, output_pos.x) |
|
1182 |
if minx != 0: |
|
1183 |
for input in self.Inputs: |
|
1184 |
input_pos = input.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1185 |
input.SetPosition(wx.Point(input_pos.x - minx, input_pos.y)) |
0 | 1186 |
for output in self.Outputs: |
1187 |
output_pos = output.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1188 |
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
|
1189 |
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
|
1190 |
self.Outputs.sort(lambda x, y: x.Pos.x.__cmp__(y.Pos.x)) |
0 | 1191 |
self.Pos.x += minx |
1192 |
self.Size[0] = maxx - minx |
|
1193 |
connector.MoveConnected() |
|
1194 |
self.RefreshBoundingBox() |
|
1195 |
||
1196 |
# Returns the divergence connector that starts with the point given if it exists |
|
27 | 1197 |
def GetConnector(self, position, name = None): |
1198 |
# if a name is given |
|
1199 |
if name: |
|
1200 |
# Test each input and output connector |
|
1201 |
for input in self.Inputs: |
|
1202 |
if name == input.GetName(): |
|
1203 |
return input |
|
1204 |
for output in self.Outputs: |
|
1205 |
if name == output.GetName(): |
|
1206 |
return output |
|
0 | 1207 |
# Test input connector |
1208 |
for input in self.Inputs: |
|
1209 |
input_pos = input.GetPosition(False) |
|
1210 |
if position.x == input_pos.x and position.y == input_pos.y: |
|
1211 |
return input |
|
1212 |
# Test output connector |
|
1213 |
for output in self.Outputs: |
|
1214 |
output_pos = output.GetPosition(False) |
|
1215 |
if position.x == output_pos.x and position.y == output_pos.y: |
|
1216 |
return output |
|
1217 |
return None |
|
1218 |
||
1219 |
# Returns input and output divergence connectors |
|
1220 |
def GetConnectors(self): |
|
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
1221 |
return {"inputs": self.Inputs, "outputs": self.Outputs} |
0 | 1222 |
|
1223 |
# Test if point given is on divergence input or output connector |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1224 |
def TestConnector(self, pt, direction = None, exclude=True): |
0 | 1225 |
# Test input connector |
1226 |
for input in self.Inputs: |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1227 |
if input.TestPoint(pt, direction, exclude): |
0 | 1228 |
return input |
1229 |
# Test output connector |
|
1230 |
for output in self.Outputs: |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1231 |
if output.TestPoint(pt, direction, exclude): |
0 | 1232 |
return output |
1233 |
return None |
|
1234 |
||
1235 |
# Changes the divergence size |
|
1236 |
def SetSize(self, width, height): |
|
199 | 1237 |
height = self.GetMinSize()[1] |
0 | 1238 |
for i, input in enumerate(self.Inputs): |
1239 |
position = input.GetRelPosition() |
|
1240 |
if self.RealConnectors: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1241 |
input.SetPosition(wx.Point(int(round(self.RealConnectors["Inputs"][i] * width)), 0)) |
0 | 1242 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1243 |
input.SetPosition(wx.Point(int(round(float(position.x)*float(width)/float(self.Size[0]))), 0)) |
0 | 1244 |
input.MoveConnected() |
1245 |
for i, output in enumerate(self.Outputs): |
|
1246 |
position = output.GetRelPosition() |
|
1247 |
if self.RealConnectors: |
|
146 | 1248 |
output.SetPosition(wx.Point(int(round(self.RealConnectors["Outputs"][i] * width)), height)) |
0 | 1249 |
else: |
146 | 1250 |
output.SetPosition(wx.Point(int(round(float(position.x)*float(width)/float(self.Size[0]))), height)) |
0 | 1251 |
output.MoveConnected() |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1252 |
self.Size = wx.Size(width, height) |
0 | 1253 |
self.RefreshBoundingBox() |
1254 |
||
1255 |
# Returns the divergence minimum size |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1256 |
def GetMinSize(self, default=False): |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1257 |
width = 0 |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1258 |
if default: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1259 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1260 |
width = (len(self.Outputs) - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1261 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1262 |
width = (len(self.Inputs) - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL |
27 | 1263 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1264 |
return width, 1 |
27 | 1265 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1266 |
return width, 3 |
27 | 1267 |
return 0, 0 |
0 | 1268 |
|
1269 |
# Refresh the position of the block connected to connector |
|
1270 |
def RefreshConnectedPosition(self, connector): |
|
1271 |
wires = connector.GetWires() |
|
1272 |
if len(wires) != 1: |
|
1273 |
return |
|
1274 |
current_pos = connector.GetPosition(False) |
|
145 | 1275 |
next = wires[0][0].GetOtherConnected(connector) |
0 | 1276 |
next_pos = next.GetPosition(False) |
1277 |
diffx = current_pos.x - next_pos.x |
|
1278 |
next_block = next.GetParentBlock() |
|
1279 |
if isinstance(next_block, SFC_Divergence): |
|
1280 |
next_block.MoveConnector(next, diffx) |
|
1281 |
else: |
|
1282 |
next_block.Move(diffx, 0) |
|
1283 |
if connector in self.Inputs: |
|
1284 |
next_block.RefreshInputPosition() |
|
1285 |
else: |
|
1286 |
next_block.RefreshOutputPosition() |
|
27 | 1287 |
|
0 | 1288 |
# Refresh the position of this divergence |
1289 |
def RefreshPosition(self): |
|
1290 |
y = 0 |
|
1291 |
for input in self.Inputs: |
|
1292 |
wires = input.GetWires() |
|
1293 |
if len(wires) != 1: |
|
1294 |
return |
|
145 | 1295 |
previous = wires[0][0].GetOtherConnected(input) |
0 | 1296 |
previous_pos = previous.GetPosition(False) |
1297 |
y = max(y, previous_pos.y + GetWireSize(previous.GetParentBlock())) |
|
1298 |
diffy = y - self.Pos.y |
|
1299 |
if diffy != 0: |
|
1300 |
self.Move(0, diffy, self.Parent.Wires) |
|
1301 |
self.RefreshOutputPosition((0, diffy)) |
|
1302 |
for input in self.Inputs: |
|
1303 |
input.MoveConnected() |
|
1304 |
||
1305 |
# Align output element with this divergence |
|
1306 |
def RefreshOutputPosition(self, move = None): |
|
1307 |
if move: |
|
1308 |
for output_connector in self.Outputs: |
|
1309 |
wires = output_connector.GetWires() |
|
1310 |
if len(wires) != 1: |
|
1311 |
return |
|
1312 |
current_pos = output_connector.GetPosition(False) |
|
145 | 1313 |
output = wires[0][0].GetOtherConnected(self.Output) |
0 | 1314 |
output_pos = output.GetPosition(False) |
1315 |
diffx = current_pos.x - output_pos.x |
|
1316 |
output_block = output.GetParentBlock() |
|
1317 |
if isinstance(output_block, SFC_Step): |
|
1318 |
output_block.MoveActionBlock(move) |
|
1319 |
wires[0][0].Move(move[0], move[1], True) |
|
1320 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
1321 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
1322 |
output_block.RefreshOutputPosition(move) |
|
1323 |
||
1324 |
# Method called when a LeftDown event have been generated |
|
27 | 1325 |
def OnLeftDown(self, event, dc, scaling): |
145 | 1326 |
self.RealConnectors = {"Inputs":[],"Outputs":[]} |
1327 |
for input in self.Inputs: |
|
1328 |
position = input.GetRelPosition() |
|
1329 |
self.RealConnectors["Inputs"].append(float(position.x)/float(self.Size[0])) |
|
1330 |
for output in self.Outputs: |
|
1331 |
position = output.GetRelPosition() |
|
1332 |
self.RealConnectors["Outputs"].append(float(position.x)/float(self.Size[0])) |
|
1333 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
|
1334 |
||
1335 |
# Method called when a LeftUp event have been generated |
|
1336 |
def OnLeftUp(self, event, dc, scaling): |
|
1337 |
Graphic_Element.OnLeftUp(self, event, dc, scaling) |
|
1338 |
self.RealConnectors = None |
|
1339 |
||
1340 |
# Method called when a RightDown event have been generated |
|
1341 |
def OnRightDown(self, event, dc, scaling): |
|
27 | 1342 |
pos = GetScaledEventPosition(event, dc, scaling) |
0 | 1343 |
# Test if a connector have been handled |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1344 |
connector = self.TestConnector(pos, exclude=False) |
0 | 1345 |
if connector: |
1346 |
self.Handle = (HANDLE_CONNECTOR, connector) |
|
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
379
diff
changeset
|
1347 |
wx.CallAfter(self.Parent.SetCurrentCursor, 1) |
0 | 1348 |
self.Selected = False |
1349 |
# Initializes the last position |
|
27 | 1350 |
self.oldPos = GetScaledEventPosition(event, dc, scaling) |
0 | 1351 |
else: |
145 | 1352 |
Graphic_Element.OnRightDown(self, event, dc, scaling) |
1353 |
||
1354 |
# Method called when a RightUp event have been generated |
|
1355 |
def OnRightUp(self, event, dc, scaling): |
|
0 | 1356 |
handle_type, handle = self.Handle |
204
5eb48c97f6e5
Bug with RightUp on SFC_Divergence connectors without movement fixed
lbessard
parents:
199
diff
changeset
|
1357 |
if handle_type == HANDLE_CONNECTOR and self.Dragging and self.oldPos: |
0 | 1358 |
wires = handle.GetWires() |
320 | 1359 |
if len(wires) == 1: |
1360 |
block = wires[0][0].GetOtherConnected(handle).GetParentBlock() |
|
1361 |
block.RefreshModel(False) |
|
1362 |
if not isinstance(block, SFC_Divergence): |
|
1363 |
if handle in self.Inputs: |
|
1364 |
block.RefreshInputModel() |
|
1365 |
else: |
|
1366 |
block.RefreshOutputModel() |
|
145 | 1367 |
Graphic_Element.OnRightUp(self, event, dc, scaling) |
1368 |
else: |
|
1369 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
1370 |
# Popup the menu with special items for a block and a connector if one is handled |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1371 |
connector = self.TestConnector(pos, exclude=False) |
145 | 1372 |
if connector: |
1373 |
self.Handle = (HANDLE_CONNECTOR, connector) |
|
1374 |
self.Parent.PopupDivergenceMenu(True) |
|
1375 |
else: |
|
1376 |
# Popup the divergence menu without delete branch |
|
1377 |
self.Parent.PopupDivergenceMenu(False) |
|
0 | 1378 |
|
1379 |
# Refreshes the divergence state according to move defined and handle selected |
|
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
1380 |
def ProcessDragging(self, movex, movey, event, scaling): |
0 | 1381 |
handle_type, handle = self.Handle |
1382 |
# A connector has been handled |
|
1383 |
if handle_type == HANDLE_CONNECTOR: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1384 |
movex = max(-self.BoundingBox.x, movex) |
145 | 1385 |
if scaling is not None: |
1386 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
0 | 1387 |
self.MoveConnector(handle, movex) |
27 | 1388 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1389 |
self.RefreshConnectedPosition(handle) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1390 |
return movex, 0 |
27 | 1391 |
elif self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
1392 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1393 |
return 0, 0 |
0 | 1394 |
|
1395 |
# Refresh output element model |
|
1396 |
def RefreshOutputModel(self, move=False): |
|
27 | 1397 |
if move and self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
0 | 1398 |
for output in self.Outputs: |
1399 |
wires = output.GetWires() |
|
1400 |
if len(wires) != 1: |
|
1401 |
return |
|
145 | 1402 |
output_block = wires[0][0].GetOtherConnected(output).GetParentBlock() |
0 | 1403 |
output_block.RefreshModel(False) |
1404 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
1405 |
output_block.RefreshOutputModel(move) |
|
1406 |
||
1407 |
# Refreshes the divergence model |
|
1408 |
def RefreshModel(self, move=True): |
|
1409 |
self.Parent.RefreshDivergenceModel(self) |
|
1410 |
# If divergence has moved, refresh the model of wires connected to outputs |
|
1411 |
if move: |
|
27 | 1412 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1413 |
self.RefreshOutputModel() |
|
1414 |
else: |
|
1415 |
for output in self.Outputs: |
|
1416 |
output.RefreshWires() |
|
0 | 1417 |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1418 |
# Draws the highlightment of this element if it is highlighted |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1419 |
def DrawHighlightment(self, dc): |
144 | 1420 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR)) |
1421 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
1422 |
dc.SetLogicalFunction(wx.AND) |
|
1423 |
# Draw two rectangles for representing the contact |
|
1424 |
posx = self.Pos.x - 2 |
|
1425 |
width = self.Size[0] + 5 |
|
1426 |
if self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1427 |
posx -= SFC_SIMULTANEOUS_SEQUENCE_EXTRA |
|
1428 |
width += SFC_SIMULTANEOUS_SEQUENCE_EXTRA * 2 |
|
1429 |
dc.DrawRectangle(posx, self.Pos.y - 2, width, self.Size[1] + 5) |
|
1430 |
dc.SetLogicalFunction(wx.COPY) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1431 |
|
0 | 1432 |
# Draws divergence |
1433 |
def Draw(self, dc): |
|
144 | 1434 |
Graphic_Element.Draw(self, dc) |
253 | 1435 |
if self.Value: |
1436 |
dc.SetPen(wx.GREEN_PEN) |
|
1437 |
dc.SetBrush(wx.GREEN_BRUSH) |
|
1438 |
else: |
|
1439 |
dc.SetPen(wx.BLACK_PEN) |
|
1440 |
dc.SetBrush(wx.BLACK_BRUSH) |
|
0 | 1441 |
# Draw plain rectangle for representing the divergence |
1442 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
1443 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
1444 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1445 |
dc.DrawLine(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y, |
|
1446 |
self.Pos.x + self.Size[0] + SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Pos.y) |
|
27 | 1447 |
dc.DrawLine(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y + self.Size[1], |
1448 |
self.Pos.x + self.Size[0] + SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Pos.y + self.Size[1]) |
|
0 | 1449 |
# Draw inputs and outputs connectors |
1450 |
for input in self.Inputs: |
|
1451 |
input.Draw(dc) |
|
1452 |
for output in self.Outputs: |
|
1453 |
output.Draw(dc) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1454 |
|
0 | 1455 |
|
1456 |
#------------------------------------------------------------------------------- |
|
1457 |
# Sequencial Function Chart Jump to Step |
|
1458 |
#------------------------------------------------------------------------------- |
|
1459 |
||
1460 |
""" |
|
1461 |
Class that implements the graphic representation of a jump to step |
|
1462 |
""" |
|
1463 |
||
1464 |
class SFC_Jump(Graphic_Element): |
|
1465 |
||
1466 |
# Create a new jump |
|
1467 |
def __init__(self, parent, target, id = None): |
|
1468 |
Graphic_Element.__init__(self, parent) |
|
213 | 1469 |
self.SetTarget(target) |
0 | 1470 |
self.Id = id |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1471 |
self.Size = wx.Size(SFC_JUMP_SIZE[0], SFC_JUMP_SIZE[1]) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1472 |
self.Errors = {} |
0 | 1473 |
# Create an input and output connector |
145 | 1474 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH, onlyone = True) |
253 | 1475 |
self.Value = None |
1476 |
self.PreviousValue = None |
|
0 | 1477 |
|
249 | 1478 |
def Flush(self): |
1479 |
if self.Input is not None: |
|
1480 |
self.Input.Flush() |
|
1481 |
self.Input = None |
|
0 | 1482 |
|
253 | 1483 |
def SpreadCurrent(self): |
1484 |
if self.Parent.Debug: |
|
1485 |
self.PreviousValue = self.Value |
|
1486 |
self.Value = self.Input.ReceivingCurrent() |
|
368 | 1487 |
if self.Value != self.PreviousValue and self.Visible: |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
327
diff
changeset
|
1488 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
253 | 1489 |
|
112 | 1490 |
# Make a clone of this SFC_Jump |
162 | 1491 |
def Clone(self, parent, id = None, pos = None): |
1492 |
jump = SFC_Jump(parent, self.Target, id) |
|
112 | 1493 |
jump.SetSize(self.Size[0], self.Size[1]) |
1494 |
if pos is not None: |
|
1495 |
jump.SetPosition(pos.x, pos.y) |
|
283 | 1496 |
else: |
1497 |
jump.SetPosition(self.Pos.x, self.Pos.y) |
|
112 | 1498 |
jump.Input = self.Input.Clone(jump) |
1499 |
return jump |
|
1500 |
||
283 | 1501 |
def GetConnectorTranslation(self, element): |
1502 |
return {self.Input : element.Input} |
|
1503 |
||
144 | 1504 |
# Returns the RedrawRect |
1505 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
1506 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
1507 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
1508 |
if movex != 0 or movey != 0: |
|
1509 |
if self.Input.IsConnected(): |
|
1510 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
1511 |
return rect |
|
1512 |
||
0 | 1513 |
# Forbids to change the jump size |
1514 |
def SetSize(self, width, height): |
|
27 | 1515 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
1516 |
Graphic_Element.SetSize(self, width, height) |
|
0 | 1517 |
|
1518 |
# Forbids to resize jump |
|
1519 |
def Resize(self, x, y, width, height): |
|
27 | 1520 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
1521 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 1522 |
|
1523 |
# Delete this jump by calling the appropriate method |
|
1524 |
def Delete(self): |
|
1525 |
self.Parent.DeleteJump(self) |
|
1526 |
||
1527 |
# Unconnect input |
|
1528 |
def Clean(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1529 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 1530 |
|
213 | 1531 |
# Refresh the size of text for target |
1532 |
def RefreshTargetSize(self): |
|
1533 |
self.TargetSize = self.Parent.GetTextExtent(self.Target) |
|
1534 |
||
0 | 1535 |
# Refresh the jump bounding box |
1536 |
def RefreshBoundingBox(self): |
|
165 | 1537 |
text_width, text_height = self.Parent.GetTextExtent(self.Target) |
0 | 1538 |
# Calculate the bounding box size |
1539 |
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
|
1540 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y - CONNECTOR_SIZE, |
0 | 1541 |
bbx_width + 1, self.Size[1] + CONNECTOR_SIZE + 1) |
1542 |
||
1543 |
# Returns the connector connected to input |
|
1544 |
def GetPreviousConnector(self): |
|
27 | 1545 |
wires = self.Input.GetWires() |
1546 |
if len(wires) == 1: |
|
145 | 1547 |
return wires[0][0].GetOtherConnected(self.Input) |
0 | 1548 |
return None |
1549 |
||
27 | 1550 |
# Refresh the element connectors position |
1551 |
def RefreshConnectors(self): |
|
145 | 1552 |
scaling = self.Parent.GetScaling() |
1553 |
horizontal_pos = self.Size[0] / 2 |
|
1554 |
if scaling is not None: |
|
1555 |
horizontal_pos = round(float(self.Pos.x + horizontal_pos) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
1556 |
self.Input.SetPosition(wx.Point(horizontal_pos, 0)) |
|
27 | 1557 |
self.RefreshConnected() |
1558 |
||
0 | 1559 |
# Refresh the position of wires connected to jump |
1560 |
def RefreshConnected(self, exclude = []): |
|
1561 |
if self.Input: |
|
1562 |
self.Input.MoveConnected(exclude) |
|
1563 |
||
1564 |
# Returns input jump connector |
|
27 | 1565 |
def GetConnector(self, position = None, name = None): |
0 | 1566 |
return self.Input |
1567 |
||
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
1568 |
# Returns all the jump connectors |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
1569 |
def GetConnectors(self): |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
1570 |
return {"inputs": [self.Input], "outputs": []} |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
1571 |
|
0 | 1572 |
# Test if point given is on jump input connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1573 |
def TestConnector(self, pt, direction = None, exclude = True): |
0 | 1574 |
# Test input connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1575 |
if self.Input and self.Input.TestPoint(pt, direction, exclude): |
0 | 1576 |
return self.Input |
1577 |
return None |
|
1578 |
||
1579 |
# Changes the jump target |
|
1580 |
def SetTarget(self, target): |
|
1581 |
self.Target = target |
|
213 | 1582 |
self.RefreshTargetSize() |
0 | 1583 |
self.RefreshBoundingBox() |
1584 |
||
1585 |
# Returns the jump target |
|
1586 |
def GetTarget(self): |
|
1587 |
return self.Target |
|
1588 |
||
1589 |
# Returns the jump minimum size |
|
1590 |
def GetMinSize(self): |
|
1591 |
return SFC_JUMP_SIZE |
|
1592 |
||
1593 |
# Align input element with this jump |
|
1594 |
def RefreshInputPosition(self): |
|
1595 |
if self.Input: |
|
1596 |
current_pos = self.Input.GetPosition(False) |
|
1597 |
input = self.GetPreviousConnector() |
|
1598 |
if input: |
|
1599 |
input_pos = input.GetPosition(False) |
|
1600 |
diffx = current_pos.x - input_pos.x |
|
1601 |
input_block = input.GetParentBlock() |
|
1602 |
if isinstance(input_block, SFC_Divergence): |
|
1603 |
input_block.MoveConnector(input, diffx) |
|
1604 |
else: |
|
1605 |
if isinstance(input_block, SFC_Step): |
|
1606 |
input_block.MoveActionBlock((diffx, 0)) |
|
1607 |
input_block.Move(diffx, 0) |
|
1608 |
input_block.RefreshInputPosition() |
|
1609 |
||
1610 |
# Can't align output element, because there is no output |
|
1611 |
def RefreshOutputPosition(self, move = None): |
|
1612 |
pass |
|
1613 |
||
1614 |
# Method called when a LeftDClick event have been generated |
|
27 | 1615 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 1616 |
# Edit the jump properties |
1617 |
self.Parent.EditJumpContent(self) |
|
1618 |
||
1619 |
# Method called when a RightUp event have been generated |
|
27 | 1620 |
def OnRightUp(self, event, dc, scaling): |
0 | 1621 |
# Popup the default menu |
1622 |
self.Parent.PopupDefaultMenu() |
|
1623 |
||
1624 |
# Refreshes the jump state according to move defined and handle selected |
|
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
1625 |
def ProcessDragging(self, movex, movey, event, scaling): |
27 | 1626 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1627 |
movex = max(-self.BoundingBox.x, movex) |
145 | 1628 |
if scaling is not None: |
1629 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
27 | 1630 |
self.Move(movex, 0) |
1631 |
self.RefreshInputPosition() |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1632 |
return movex, 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
1633 |
else: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
1634 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling, width_fac = 2) |
0 | 1635 |
|
1636 |
# Refresh input element model |
|
1637 |
def RefreshInputModel(self): |
|
27 | 1638 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1639 |
input = self.GetPreviousConnector() |
|
1640 |
if input: |
|
1641 |
input_block = input.GetParentBlock() |
|
1642 |
input_block.RefreshModel(False) |
|
1643 |
if not isinstance(input_block, SFC_Divergence): |
|
1644 |
input_block.RefreshInputModel() |
|
0 | 1645 |
|
1646 |
# Refresh output element model |
|
1647 |
def RefreshOutputModel(self, move=False): |
|
1648 |
pass |
|
1649 |
||
1650 |
# Refreshes the jump model |
|
1651 |
def RefreshModel(self, move=True): |
|
1652 |
self.Parent.RefreshJumpModel(self) |
|
1653 |
if move: |
|
27 | 1654 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1655 |
self.RefreshInputModel() |
|
0 | 1656 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1657 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1658 |
if infos[0] == "target" and start[0] == 0 and end[0] == 0: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1659 |
self.Errors[infos[0]] = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1660 |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1661 |
# Draws the highlightment of this element if it is highlighted |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1662 |
def DrawHighlightment(self, dc): |
144 | 1663 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR)) |
1664 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
1665 |
dc.SetLogicalFunction(wx.AND) |
|
1666 |
points = [wx.Point(self.Pos.x - 3, self.Pos.y - 2), |
|
1667 |
wx.Point(self.Pos.x + self.Size[0] + 4, self.Pos.y - 2), |
|
1668 |
wx.Point(self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1] + 4)] |
|
1669 |
dc.DrawPolygon(points) |
|
1670 |
dc.SetLogicalFunction(wx.COPY) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1671 |
|
0 | 1672 |
# Draws divergence |
1673 |
def Draw(self, dc): |
|
144 | 1674 |
Graphic_Element.Draw(self, dc) |
253 | 1675 |
if self.Value: |
1676 |
dc.SetPen(wx.GREEN_PEN) |
|
1677 |
dc.SetBrush(wx.GREEN_BRUSH) |
|
1678 |
else: |
|
1679 |
dc.SetPen(wx.BLACK_PEN) |
|
1680 |
dc.SetBrush(wx.BLACK_BRUSH) |
|
213 | 1681 |
|
1682 |
if getattr(dc, "printing", False): |
|
1683 |
target_size = dc.GetTextExtent(self.Target) |
|
1684 |
else: |
|
1685 |
target_size = self.TargetSize |
|
1686 |
||
0 | 1687 |
# Draw plain rectangle for representing the divergence |
1688 |
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
|
1689 |
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
|
1690 |
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
|
1691 |
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
|
1692 |
wx.Point(self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1])] |
0 | 1693 |
dc.DrawPolygon(points) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1694 |
target_pos = (self.Pos.x + self.Size[0] + 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1695 |
self.Pos.y + (self.Size[1] - target_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1696 |
dc.DrawText(self.Target, target_pos[0], target_pos[1]) |
0 | 1697 |
# Draw input connector |
1698 |
if self.Input: |
|
1699 |
self.Input.Draw(dc) |
|
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1700 |
if self.Errors.has_key("target"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1701 |
HighlightErrorZone(dc, target_pos[0], target_pos[1], target_size[0], target_size[1]) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1702 |
|
0 | 1703 |
|
1704 |
#------------------------------------------------------------------------------- |
|
1705 |
# Sequencial Function Chart Action Block |
|
1706 |
#------------------------------------------------------------------------------- |
|
1707 |
||
1708 |
""" |
|
1709 |
Class that implements the graphic representation of an action block |
|
1710 |
""" |
|
1711 |
||
1712 |
class SFC_ActionBlock(Graphic_Element): |
|
1713 |
||
1714 |
# Create a new action block |
|
1715 |
def __init__(self, parent, actions = [], id = None): |
|
1716 |
Graphic_Element.__init__(self, parent) |
|
1717 |
self.Id = id |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1718 |
self.Size = wx.Size(SFC_ACTION_MIN_SIZE[0], SFC_ACTION_MIN_SIZE[1]) |
108 | 1719 |
self.MinSize = wx.Size(SFC_ACTION_MIN_SIZE[0], SFC_ACTION_MIN_SIZE[1]) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1720 |
self.Errors = {} |
0 | 1721 |
# Create an input and output connector |
145 | 1722 |
self.Input = Connector(self, "", None, wx.Point(0, SFC_ACTION_MIN_SIZE[1] / 2), WEST, onlyone = True) |
0 | 1723 |
self.SetActions(actions) |
253 | 1724 |
self.Value = None |
1725 |
self.PreviousValue = None |
|
0 | 1726 |
|
249 | 1727 |
def Flush(self): |
1728 |
if self.Input is not None: |
|
1729 |
self.Input.Flush() |
|
1730 |
self.Input = None |
|
0 | 1731 |
|
253 | 1732 |
def SpreadCurrent(self): |
1733 |
if self.Parent.Debug: |
|
1734 |
self.PreviousValue = self.Value |
|
1735 |
self.Value = self.Input.ReceivingCurrent() |
|
368 | 1736 |
if self.Value != self.PreviousValue and self.Visible: |
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
327
diff
changeset
|
1737 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
253 | 1738 |
|
112 | 1739 |
# Make a clone of this SFC_ActionBlock |
162 | 1740 |
def Clone(self, parent, id = None, pos = None): |
112 | 1741 |
actions = [action.copy() for action in self.Actions] |
162 | 1742 |
action_block = SFC_ActionBlock(parent, actions, id) |
112 | 1743 |
action_block.SetSize(self.Size[0], self.Size[1]) |
1744 |
if pos is not None: |
|
1745 |
action_block.SetPosition(pos.x, pos.y) |
|
283 | 1746 |
else: |
1747 |
action_block.SetPosition(self.Pos.x, self.Pos.y) |
|
112 | 1748 |
action_block.Input = self.Input.Clone(action_block) |
144 | 1749 |
return action_block |
1750 |
||
283 | 1751 |
def GetConnectorTranslation(self, element): |
1752 |
return {self.Input : element.Input} |
|
1753 |
||
1754 |
# Returns the RedrawRect |
|
144 | 1755 |
def GetRedrawRect(self, movex = 0, movey = 0): |
1756 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
1757 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
1758 |
if movex != 0 or movey != 0: |
|
1759 |
if self.Input.IsConnected(): |
|
1760 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
1761 |
return rect |
|
112 | 1762 |
|
0 | 1763 |
# Returns the number of action lines |
1764 |
def GetLineNumber(self): |
|
1765 |
return len(self.Actions) |
|
1766 |
||
27 | 1767 |
def GetLineSize(self): |
108 | 1768 |
if len(self.Actions) > 0: |
27 | 1769 |
return self.Size[1] / len(self.Actions) |
1770 |
else: |
|
1771 |
return SFC_ACTION_MIN_SIZE[1] |
|
1772 |
||
0 | 1773 |
# Forbids to resize the action block |
1774 |
def Resize(self, x, y, width, height): |
|
27 | 1775 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1776 |
if x == 0: |
|
1777 |
self.SetSize(width, self.Size[1]) |
|
1778 |
else: |
|
1779 |
Graphic_Element.Resize(self, x, y, width, height) |
|
0 | 1780 |
|
1781 |
# Delete this action block by calling the appropriate method |
|
1782 |
def Delete(self): |
|
1783 |
self.Parent.DeleteActionBlock(self) |
|
1784 |
||
1785 |
# Unconnect input and output |
|
1786 |
def Clean(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1787 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 1788 |
|
1789 |
# Refresh the action block bounding box |
|
1790 |
def RefreshBoundingBox(self): |
|
144 | 1791 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
0 | 1792 |
|
1793 |
# Refresh the position of wires connected to action block |
|
1794 |
def RefreshConnected(self, exclude = []): |
|
1795 |
self.Input.MoveConnected(exclude) |
|
1796 |
||
1797 |
# Returns input action block connector |
|
27 | 1798 |
def GetConnector(self, position = None, name = None): |
0 | 1799 |
return self.Input |
1800 |
||
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
1801 |
# Returns all the action block connectors |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
1802 |
def GetConnectors(self): |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
1803 |
return {"inputs": [self.Input], "outputs": []} |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
1804 |
|
0 | 1805 |
# Test if point given is on action block input connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1806 |
def TestConnector(self, pt, direction = None, exclude = True): |
0 | 1807 |
# Test input connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
231
diff
changeset
|
1808 |
if self.Input.TestPoint(pt, direction, exclude): |
0 | 1809 |
return self.Input |
1810 |
return None |
|
1811 |
||
145 | 1812 |
# Refresh the element connectors position |
1813 |
def RefreshConnectors(self): |
|
1814 |
scaling = self.Parent.GetScaling() |
|
1815 |
vertical_pos = SFC_ACTION_MIN_SIZE[1] / 2 |
|
1816 |
if scaling is not None: |
|
1817 |
vertical_pos = round(float(self.Pos.y + vertical_pos) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
1818 |
self.Input.SetPosition(wx.Point(0, vertical_pos)) |
|
1819 |
self.RefreshConnected() |
|
1820 |
||
0 | 1821 |
# Changes the action block actions |
1822 |
def SetActions(self, actions): |
|
1823 |
self.Actions = actions |
|
1824 |
self.ColSize = [0, 0, 0] |
|
108 | 1825 |
min_height = 0 |
0 | 1826 |
for action in self.Actions: |
165 | 1827 |
width, height = self.Parent.GetTextExtent(action["qualifier"]) |
0 | 1828 |
self.ColSize[0] = max(self.ColSize[0], width + 10) |
108 | 1829 |
row_height = height |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1830 |
if action.has_key("duration"): |
165 | 1831 |
width, height = self.Parent.GetTextExtent(action["duration"]) |
108 | 1832 |
row_height = max(row_height, height) |
0 | 1833 |
self.ColSize[0] = max(self.ColSize[0], width + 10) |
165 | 1834 |
width, height = self.Parent.GetTextExtent(action["value"]) |
108 | 1835 |
row_height = max(row_height, height) |
0 | 1836 |
self.ColSize[1] = max(self.ColSize[1], width + 10) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1837 |
if action.get("indicator", "") != "": |
165 | 1838 |
width, height = self.Parent.GetTextExtent(action["indicator"]) |
108 | 1839 |
row_height = max(row_height, height) |
0 | 1840 |
self.ColSize[2] = max(self.ColSize[2], width + 10) |
108 | 1841 |
min_height += row_height + 5 |
27 | 1842 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
108 | 1843 |
self.Size = wx.Size(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], max(min_height, SFC_ACTION_MIN_SIZE[1], self.Size[1])) |
1844 |
self.MinSize = max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
|
1845 |
SFC_ACTION_MIN_SIZE[0]), max(SFC_ACTION_MIN_SIZE[1], min_height) |
|
1846 |
self.RefreshBoundingBox() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1847 |
else: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1848 |
self.Size = wx.Size(max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
27 | 1849 |
SFC_ACTION_MIN_SIZE[0]), len(self.Actions) * SFC_ACTION_MIN_SIZE[1]) |
108 | 1850 |
self.MinSize = max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
1851 |
SFC_ACTION_MIN_SIZE[0]), len(self.Actions) * SFC_ACTION_MIN_SIZE[1] |
|
1852 |
self.RefreshBoundingBox() |
|
1853 |
if self.Input: |
|
1854 |
wires = self.Input.GetWires() |
|
1855 |
if len(wires) == 1: |
|
145 | 1856 |
input_block = wires[0][0].GetOtherConnected(self.Input).GetParentBlock() |
108 | 1857 |
input_block.RefreshOutputPosition() |
1858 |
input_block.RefreshOutputModel(True) |
|
0 | 1859 |
|
1860 |
# Returns the action block actions |
|
1861 |
def GetActions(self): |
|
1862 |
return self.Actions |
|
1863 |
||
1864 |
# Returns the action block minimum size |
|
1865 |
def GetMinSize(self): |
|
108 | 1866 |
return self.MinSize |
0 | 1867 |
|
1868 |
# Method called when a LeftDClick event have been generated |
|
27 | 1869 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 1870 |
# Edit the action block properties |
1871 |
self.Parent.EditActionBlockContent(self) |
|
1872 |
||
127
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1873 |
# 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
|
1874 |
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
|
1875 |
# Popup the default menu |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1876 |
self.Parent.PopupDefaultMenu() |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
1877 |
|
0 | 1878 |
# Refreshes the action block state according to move defined and handle selected |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
1879 |
def ProcessDragging(self, movex, movey, event, scaling): |
27 | 1880 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
1881 |
handle_type, handle = self.Handle |
|
1882 |
if handle_type == HANDLE_MOVE: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1883 |
movex = max(-self.BoundingBox.x, movex) |
145 | 1884 |
if scaling is not None: |
1885 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
27 | 1886 |
wires = self.Input.GetWires() |
1887 |
if len(wires) == 1: |
|
145 | 1888 |
input_pos = wires[0][0].GetOtherConnected(self.Input).GetPosition(False) |
27 | 1889 |
if self.Pos.x - input_pos.x + movex >= SFC_WIRE_MIN_SIZE: |
1890 |
self.Move(movex, 0) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1891 |
return movex, 0 |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
1892 |
return 0, 0 |
27 | 1893 |
else: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
1894 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
1895 |
else: |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
320
diff
changeset
|
1896 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
27 | 1897 |
|
0 | 1898 |
|
1899 |
# Refreshes the action block model |
|
1900 |
def RefreshModel(self, move=True): |
|
1901 |
self.Parent.RefreshActionBlockModel(self) |
|
1902 |
||
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1903 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1904 |
if infos[0] == "action" and infos[1] < len(self.Actions): |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1905 |
if not self.Errors.has_key(infos[1]): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1906 |
self.Errors[infos[1]] = {} |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1907 |
if infos[2] == "inline": |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1908 |
if not self.Errors[infos[1]].has_key(infos[2]): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1909 |
self.Errors[infos[1]][infos[2]] = [] |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1910 |
self.Errors[infos[1]][infos[2]].append((start[1], end[1])) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1911 |
else: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1912 |
self.Errors[infos[1]][infos[2]] = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1913 |
|
0 | 1914 |
# Draws divergence |
1915 |
def Draw(self, dc): |
|
144 | 1916 |
Graphic_Element.Draw(self, dc) |
253 | 1917 |
if self.Value: |
1918 |
dc.SetPen(wx.GREEN_PEN) |
|
1919 |
else: |
|
1920 |
dc.SetPen(wx.BLACK_PEN) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
58
diff
changeset
|
1921 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 1922 |
colsize = [self.ColSize[0], self.Size[0] - self.ColSize[0] - self.ColSize[2], self.ColSize[2]] |
1923 |
# Draw plain rectangle for representing the action block |
|
1924 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
1925 |
dc.DrawLine(self.Pos.x + colsize[0], self.Pos.y, |
|
1926 |
self.Pos.x + colsize[0], self.Pos.y + self.Size[1]) |
|
1927 |
dc.DrawLine(self.Pos.x + colsize[0] + colsize[1], self.Pos.y, |
|
1928 |
self.Pos.x + colsize[0] + colsize[1], self.Pos.y + self.Size[1]) |
|
27 | 1929 |
line_size = self.GetLineSize() |
0 | 1930 |
for i, action in enumerate(self.Actions): |
1931 |
if i != 0: |
|
27 | 1932 |
dc.DrawLine(self.Pos.x, self.Pos.y + i * line_size, |
1933 |
self.Pos.x + self.Size[0], self.Pos.y + i * line_size) |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1934 |
qualifier_size = dc.GetTextExtent(action["qualifier"]) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1935 |
if action.has_key("duration"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1936 |
qualifier_pos = (self.Pos.x + (colsize[0] - qualifier_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1937 |
self.Pos.y + i * line_size + line_size / 2 - qualifier_size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1938 |
duration_size = dc.GetTextExtent(action["duration"]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1939 |
duration_pos = (self.Pos.x + (colsize[0] - duration_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1940 |
self.Pos.y + i * line_size + line_size / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1941 |
dc.DrawText(action["duration"], duration_pos[0], duration_pos[1]) |
0 | 1942 |
else: |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1943 |
qualifier_pos = (self.Pos.x + (colsize[0] - qualifier_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1944 |
self.Pos.y + i * line_size + (line_size - qualifier_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1945 |
dc.DrawText(action["qualifier"], qualifier_pos[0], qualifier_pos[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1946 |
content_size = dc.GetTextExtent(action["value"]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1947 |
content_pos = (self.Pos.x + colsize[0] + (colsize[1] - content_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1948 |
self.Pos.y + i * line_size + (line_size - content_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1949 |
dc.DrawText(action["value"], content_pos[0], content_pos[1]) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1950 |
if action.has_key("indicator"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1951 |
indicator_size = dc.GetTextExtent(action["indicator"]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1952 |
indicator_pos = (self.Pos.x + colsize[0] + colsize[1] + (colsize[2] - indicator_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1953 |
self.Pos.y + i * line_size + (line_size - indicator_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1954 |
dc.DrawText(action["indicator"], indicator_pos[0], indicator_pos[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1955 |
if i in self.Errors: |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1956 |
if self.Errors[i].has_key("duration") and action.has_key("duration"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1957 |
HighlightErrorZone(dc, duration_pos[0], duration_pos[1], duration_size[0], duration_size[1]) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1958 |
if self.Errors[i].has_key("qualifier"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1959 |
HighlightErrorZone(dc, qualifier_pos[0], qualifier_pos[1], qualifier_size[0], qualifier_size[1]) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1960 |
if self.Errors[i].has_key("reference"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1961 |
HighlightErrorZone(dc, content_pos[0], content_pos[1], content_size[0], content_size[1]) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1962 |
elif self.Errors[i].has_key("inline"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1963 |
for start, end in self.Errors[i]["inline"]: |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1964 |
offset = dc.GetTextExtent(action["value"][:start]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1965 |
size = dc.GetTextExtent(action["value"][start:end + 1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1966 |
HighlightErrorZone(dc, content_pos[0] + offset[0], content_pos[1], size[0], size[1]) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
1967 |
if self.Errors[i].has_key("indicator"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
1968 |
HighlightErrorZone(dc, indicator_pos[0], indicator_pos[1], indicator_size[0], indicator_size[1]) |
0 | 1969 |
# Draw input connector |
1970 |
self.Input.Draw(dc) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1971 |