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