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