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