author | Edouard Tisserant |
Fri, 01 Apr 2011 15:25:43 +0200 | |
changeset 517 | 026ef159e8a2 |
parent 508 | 01f49e491be5 |
child 537 | a31bf722aa82 |
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 |
#------------------------------------------------------------------------------- |
|
31 |
# Ladder Diagram PowerRail |
|
32 |
#------------------------------------------------------------------------------- |
|
33 |
||
34 |
""" |
|
35 |
Class that implements the graphic representation of a power rail |
|
36 |
""" |
|
37 |
||
38 |
class LD_PowerRail(Graphic_Element): |
|
39 |
||
40 |
# Create a new power rail |
|
41 |
def __init__(self, parent, type, id = None, connectors = [True]): |
|
42 |
Graphic_Element.__init__(self, parent) |
|
61
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
43 |
self.Type = None |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
44 |
self.Connectors = [] |
71 | 45 |
self.RealConnectors = None |
0 | 46 |
self.Id = id |
27 | 47 |
self.Extensions = [LD_LINE_SIZE / 2, LD_LINE_SIZE / 2] |
48 |
if len(connectors) < 1: |
|
49 |
connectors = [True] |
|
61
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
50 |
self.SetType(type, connectors) |
0 | 51 |
|
249 | 52 |
def Flush(self): |
53 |
for connector in self.Connectors: |
|
54 |
if connector is not None: |
|
55 |
connector.Flush() |
|
0 | 56 |
self.Connectors = [] |
57 |
||
112 | 58 |
# Make a clone of this LD_PowerRail |
162 | 59 |
def Clone(self, parent, id = None, pos = None): |
60 |
powerrail = LD_PowerRail(parent, self.Type, id) |
|
112 | 61 |
powerrail.SetSize(self.Size[0], self.Size[1]) |
62 |
if pos is not None: |
|
63 |
powerrail.SetPosition(pos.x, pos.y) |
|
283 | 64 |
else: |
65 |
powerrail.SetPosition(self.Pos.x, self.Pos.y) |
|
112 | 66 |
powerrail.Connectors = [] |
67 |
for connector in self.Connectors: |
|
68 |
if connector is not None: |
|
69 |
powerrail.Connectors.append(connector.Clone(powerrail)) |
|
70 |
else: |
|
71 |
powerrail.Connectors.append(None) |
|
72 |
return powerrail |
|
73 |
||
283 | 74 |
def GetConnectorTranslation(self, element): |
75 |
return dict(zip([connector for connector in self.Connectors if connector is not None], |
|
76 |
[connector for connector in element.Connectors if connector is not None])) |
|
77 |
||
144 | 78 |
# Returns the RedrawRect |
79 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
80 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
81 |
for connector in self.Connectors: |
|
82 |
if connector is not None: |
|
83 |
rect = rect.Union(connector.GetRedrawRect(movex, movey)) |
|
84 |
if movex != 0 or movey != 0: |
|
85 |
for connector in self.Connectors: |
|
86 |
if connector is not None and connector.IsConnected(): |
|
87 |
rect = rect.Union(connector.GetConnectedRedrawRect(movex, movey)) |
|
88 |
return rect |
|
89 |
||
0 | 90 |
# Forbids to change the power rail size |
91 |
def SetSize(self, width, height): |
|
42 | 92 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
27 | 93 |
Graphic_Element.SetSize(self, width, height) |
94 |
self.RefreshConnectors() |
|
0 | 95 |
|
96 |
# Forbids to select a power rail |
|
97 |
def HitTest(self, pt): |
|
42 | 98 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
99 |
return Graphic_Element.HitTest(self, pt) or self.TestConnector(pt, exclude=False) != None |
0 | 100 |
return False |
101 |
||
42 | 102 |
# Forbids to select a power rail |
103 |
def IsInSelection(self, rect): |
|
104 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
61
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
105 |
return Graphic_Element.IsInSelection(self, rect) |
42 | 106 |
return False |
107 |
||
0 | 108 |
# Deletes this power rail by calling the appropriate method |
109 |
def Delete(self): |
|
110 |
self.Parent.DeletePowerRail(self) |
|
111 |
||
112 |
# Unconnect all connectors |
|
113 |
def Clean(self): |
|
114 |
for connector in self.Connectors: |
|
115 |
if connector: |
|
61
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
116 |
connector.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 117 |
|
118 |
# Refresh the power rail bounding box |
|
119 |
def RefreshBoundingBox(self): |
|
144 | 120 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
0 | 121 |
|
122 |
# Refresh the power rail size |
|
123 |
def RefreshSize(self): |
|
144 | 124 |
self.Size = wx.Size(LD_POWERRAIL_WIDTH, LD_LINE_SIZE * len(self.Connectors)) |
0 | 125 |
self.RefreshBoundingBox() |
126 |
||
27 | 127 |
# Returns the block minimum size |
128 |
def GetMinSize(self): |
|
96 | 129 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
144 | 130 |
return LD_POWERRAIL_WIDTH, self.Extensions[0] + self.Extensions[1] |
131 |
else: |
|
132 |
return LD_POWERRAIL_WIDTH, LD_LINE_SIZE * len(self.Connectors) |
|
27 | 133 |
|
0 | 134 |
# Add a connector or a blank to this power rail at the last place |
135 |
def AddConnector(self, connector = True): |
|
136 |
self.InsertConnector(len(self.Connectors), connector) |
|
137 |
||
138 |
# Add a connector or a blank to this power rail at the place given |
|
139 |
def InsertConnector(self, idx, connector = True): |
|
140 |
if connector: |
|
141 |
if self.Type == LEFTRAIL: |
|
80 | 142 |
connector = Connector(self, "", "BOOL", wx.Point(self.Size[0], 0), EAST) |
0 | 143 |
elif self.Type == RIGHTRAIL: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
144 |
connector = Connector(self, "", "BOOL", wx.Point(0, 0), WEST) |
0 | 145 |
self.Connectors.insert(idx, connector) |
146 |
else: |
|
147 |
self.Connectors.insert(idx, None) |
|
148 |
self.RefreshSize() |
|
149 |
self.RefreshConnectors() |
|
150 |
||
27 | 151 |
# Moves the divergence connector given |
152 |
def MoveConnector(self, connector, movey): |
|
153 |
position = connector.GetRelPosition() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
154 |
connector.SetPosition(wx.Point(position.x, position.y + movey)) |
27 | 155 |
miny = self.Size[1] |
156 |
maxy = 0 |
|
157 |
for connect in self.Connectors: |
|
158 |
connect_pos = connect.GetRelPosition() |
|
80 | 159 |
miny = min(miny, connect_pos.y - self.Extensions[0]) |
160 |
maxy = max(maxy, connect_pos.y - self.Extensions[0]) |
|
161 |
min_pos = self.Pos.y + miny |
|
27 | 162 |
self.Pos.y = min(min_pos, self.Pos.y) |
163 |
if min_pos == self.Pos.y: |
|
164 |
for connect in self.Connectors: |
|
165 |
connect_pos = connect.GetRelPosition() |
|
80 | 166 |
connect.SetPosition(wx.Point(connect_pos.x, connect_pos.y - miny)) |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
96
diff
changeset
|
167 |
self.Connectors.sort(lambda x, y: x.Pos.y.__cmp__(y.Pos.y)) |
80 | 168 |
maxy = 0 |
169 |
for connect in self.Connectors: |
|
170 |
connect_pos = connect.GetRelPosition() |
|
171 |
maxy = max(maxy, connect_pos.y) |
|
172 |
self.Size[1] = max(maxy + self.Extensions[1], self.Size[1]) |
|
27 | 173 |
connector.MoveConnected() |
174 |
self.RefreshBoundingBox() |
|
175 |
||
0 | 176 |
# Returns the index in connectors list for the connector given |
177 |
def GetConnectorIndex(self, connector): |
|
178 |
if connector in self.Connectors: |
|
179 |
return self.Connectors.index(connector) |
|
180 |
return None |
|
181 |
||
182 |
# Returns if there is a connector in connectors list at the index given |
|
183 |
def IsNullConnector(self, idx): |
|
184 |
if idx < len(self.Connectors): |
|
185 |
return self.Connectors[idx] == None |
|
186 |
return False |
|
187 |
||
188 |
# Delete the connector or blank from connectors list at the index given |
|
189 |
def DeleteConnector(self, idx): |
|
190 |
self.Connectors.pop(idx) |
|
191 |
self.RefreshConnectors() |
|
192 |
self.RefreshSize() |
|
193 |
||
194 |
# Refresh the positions of the power rail connectors |
|
195 |
def RefreshConnectors(self): |
|
145 | 196 |
scaling = self.Parent.GetScaling() |
71 | 197 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
198 |
height = self.Size[1] - self.Extensions[0] - self.Extensions[1] |
|
80 | 199 |
interval = float(height) / float(max(len(self.Connectors) - 1, 1)) |
71 | 200 |
for i, connector in enumerate(self.Connectors): |
145 | 201 |
if self.RealConnectors: |
202 |
position = self.Extensions[0] + int(round(self.RealConnectors[i] * height)) |
|
203 |
else: |
|
204 |
position = self.Extensions[0] + int(round(i * interval)) |
|
205 |
if scaling is not None: |
|
206 |
position = round(float(self.Pos.y + position) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
80 | 207 |
if self.Type == LEFTRAIL: |
145 | 208 |
connector.SetPosition(wx.Point(self.Size[0], position)) |
80 | 209 |
elif self.Type == RIGHTRAIL: |
145 | 210 |
connector.SetPosition(wx.Point(0, position)) |
71 | 211 |
else: |
212 |
position = self.Extensions[0] |
|
213 |
for connector in self.Connectors: |
|
214 |
if connector: |
|
145 | 215 |
if scaling is not None: |
216 |
ypos = round(float(self.Pos.y + position) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
217 |
else: |
|
218 |
ypos = position |
|
71 | 219 |
if self.Type == LEFTRAIL: |
145 | 220 |
connector.SetPosition(wx.Point(self.Size[0], ypos)) |
71 | 221 |
elif self.Type == RIGHTRAIL: |
145 | 222 |
connector.SetPosition(wx.Point(0, ypos)) |
71 | 223 |
position += LD_LINE_SIZE |
0 | 224 |
self.RefreshConnected() |
225 |
||
7 | 226 |
# Refresh the position of wires connected to power rail |
0 | 227 |
def RefreshConnected(self, exclude = []): |
228 |
for connector in self.Connectors: |
|
8 | 229 |
if connector: |
230 |
connector.MoveConnected(exclude) |
|
0 | 231 |
|
232 |
# Returns the power rail connector that starts with the point given if it exists |
|
27 | 233 |
def GetConnector(self, position, name = None): |
234 |
# if a name is given |
|
235 |
if name: |
|
236 |
# Test each connector if it exists |
|
237 |
for connector in self.Connectors: |
|
238 |
if connector and name == connector.GetName(): |
|
239 |
return connector |
|
0 | 240 |
for connector in self.Connectors: |
241 |
if connector: |
|
242 |
connector_pos = connector.GetRelPosition() |
|
243 |
if position.x == self.Pos.x + connector_pos.x and position.y == self.Pos.y + connector_pos.y: |
|
244 |
return connector |
|
245 |
return None |
|
246 |
||
247 |
# Returns all the power rail connectors |
|
248 |
def GetConnectors(self): |
|
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
249 |
connectors = [connector for connector in self.Connectors if connector] |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
250 |
if self.Type == LEFTRAIL: |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
251 |
return {"inputs": [], "outputs": connectors} |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
252 |
else: |
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
253 |
return {"inputs": connectors, "outputs": []} |
0 | 254 |
|
255 |
# Test if point given is on one of the power rail connectors |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
256 |
def TestConnector(self, pt, direction = None, exclude = True): |
0 | 257 |
for connector in self.Connectors: |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
258 |
if connector and connector.TestPoint(pt, direction, exclude): |
0 | 259 |
return connector |
260 |
return None |
|
261 |
||
262 |
# Returns the power rail type |
|
61
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
263 |
def SetType(self, type, connectors): |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
264 |
if type != self.Type or len(self.Connectors) != len(connectors): |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
265 |
# Create a connector or a blank according to 'connectors' and add it in |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
266 |
# the connectors list |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
267 |
self.Type = type |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
268 |
self.Clean() |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
269 |
self.Connectors = [] |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
270 |
for connector in connectors: |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
271 |
self.AddConnector(connector) |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
272 |
self.RefreshSize() |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
273 |
|
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
274 |
# Returns the power rail type |
0 | 275 |
def GetType(self): |
276 |
return self.Type |
|
277 |
||
27 | 278 |
# Method called when a LeftDown event have been generated |
279 |
def OnLeftDown(self, event, dc, scaling): |
|
145 | 280 |
self.RealConnectors = [] |
281 |
height = self.Size[1] - self.Extensions[0] - self.Extensions[1] |
|
254 | 282 |
if height > 0: |
283 |
for connector in self.Connectors: |
|
284 |
position = connector.GetRelPosition() |
|
285 |
self.RealConnectors.append(max(0., min(float(position.y - self.Extensions[0]) / float(height), 1.))) |
|
286 |
elif len(self.Connectors) > 1: |
|
287 |
self.RealConnectors = map(lambda x : x * 1 / (len(self.Connectors) - 1), xrange(len(self.Connectors))) |
|
288 |
else: |
|
289 |
self.RealConnectors = [0.5] |
|
145 | 290 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
291 |
||
292 |
# Method called when a LeftUp event have been generated |
|
293 |
def OnLeftUp(self, event, dc, scaling): |
|
294 |
Graphic_Element.OnLeftUp(self, event, dc, scaling) |
|
295 |
self.RealConnectors = None |
|
296 |
||
297 |
# Method called when a LeftDown event have been generated |
|
298 |
def OnRightDown(self, event, dc, scaling): |
|
27 | 299 |
pos = GetScaledEventPosition(event, dc, scaling) |
300 |
# Test if a connector have been handled |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
301 |
connector = self.TestConnector(pos, exclude=False) |
27 | 302 |
if connector: |
303 |
self.Handle = (HANDLE_CONNECTOR, connector) |
|
381
98890d848701
Redefine cursor switching procedure in graphic viewers
laurent
parents:
379
diff
changeset
|
304 |
wx.CallAfter(self.Parent.SetCurrentCursor, 1) |
27 | 305 |
self.Selected = False |
306 |
# Initializes the last position |
|
307 |
self.oldPos = GetScaledEventPosition(event, dc, scaling) |
|
308 |
else: |
|
145 | 309 |
Graphic_Element.OnRightDown(self, event, dc, scaling) |
310 |
||
311 |
# Method called when a LeftDClick event have been generated |
|
312 |
def OnLeftDClick(self, event, dc, scaling): |
|
313 |
# Edit the powerrail properties |
|
314 |
self.Parent.EditPowerRailContent(self) |
|
315 |
||
316 |
# Method called when a RightUp event have been generated |
|
317 |
def OnRightUp(self, event, dc, scaling): |
|
27 | 318 |
handle_type, handle = self.Handle |
319 |
if handle_type == HANDLE_CONNECTOR: |
|
320 |
wires = handle.GetWires() |
|
80 | 321 |
if len(wires) == 1: |
322 |
if handle == wires[0][0].StartConnected: |
|
323 |
block = wires[0][0].EndConnected.GetParentBlock() |
|
324 |
else: |
|
325 |
block = wires[0][0].StartConnected.GetParentBlock() |
|
326 |
block.RefreshModel(False) |
|
145 | 327 |
Graphic_Element.OnRightUp(self, event, dc, scaling) |
328 |
else: |
|
329 |
self.Parent.PopupDefaultMenu() |
|
27 | 330 |
|
175 | 331 |
def Resize(self, x, y, width, height): |
332 |
self.Move(x, y) |
|
254 | 333 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
334 |
self.SetSize(width, height) |
|
335 |
else: |
|
336 |
self.SetSize(LD_POWERRAIL_WIDTH, height) |
|
175 | 337 |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
96
diff
changeset
|
338 |
# Refreshes the powerrail state according to move defined and handle selected |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
283
diff
changeset
|
339 |
def ProcessDragging(self, movex, movey, event, scaling): |
27 | 340 |
handle_type, handle = self.Handle |
341 |
# A connector has been handled |
|
342 |
if handle_type == HANDLE_CONNECTOR: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
343 |
movey = max(-self.BoundingBox.y, movey) |
145 | 344 |
if scaling is not None: |
345 |
position = handle.GetRelPosition() |
|
346 |
movey = round(float(self.Pos.y + position.y + movey) / float(scaling[1])) * scaling[1] - self.Pos.y - position.y |
|
27 | 347 |
self.MoveConnector(handle, movey) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
127
diff
changeset
|
348 |
return 0, movey |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
96
diff
changeset
|
349 |
else: |
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
283
diff
changeset
|
350 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
27 | 351 |
|
0 | 352 |
# Refreshes the power rail model |
353 |
def RefreshModel(self, move=True): |
|
354 |
self.Parent.RefreshPowerRailModel(self) |
|
355 |
# If power rail has moved and power rail is of type LEFT, refresh the model |
|
356 |
# of wires connected to connectors |
|
357 |
if move and self.Type == LEFTRAIL: |
|
358 |
for connector in self.Connectors: |
|
359 |
if connector: |
|
360 |
connector.RefreshWires() |
|
361 |
||
362 |
# Draws power rail |
|
363 |
def Draw(self, dc): |
|
144 | 364 |
Graphic_Element.Draw(self, dc) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
365 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
366 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 367 |
# Draw a rectangle with the power rail size |
175 | 368 |
if self.Type == LEFTRAIL: |
369 |
dc.DrawRectangle(self.Pos.x + self.Size[0] - LD_POWERRAIL_WIDTH, self.Pos.y, LD_POWERRAIL_WIDTH + 1, self.Size[1] + 1) |
|
370 |
else: |
|
371 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, LD_POWERRAIL_WIDTH + 1, self.Size[1] + 1) |
|
0 | 372 |
# Draw connectors |
373 |
for connector in self.Connectors: |
|
374 |
if connector: |
|
375 |
connector.Draw(dc) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
376 |
|
0 | 377 |
|
378 |
#------------------------------------------------------------------------------- |
|
379 |
# Ladder Diagram Contact |
|
380 |
#------------------------------------------------------------------------------- |
|
381 |
||
382 |
""" |
|
383 |
Class that implements the graphic representation of a contact |
|
384 |
""" |
|
385 |
||
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
360
diff
changeset
|
386 |
class LD_Contact(Graphic_Element, DebugDataConsumer): |
0 | 387 |
|
388 |
# Create a new contact |
|
389 |
def __init__(self, parent, type, name, id = None): |
|
390 |
Graphic_Element.__init__(self, parent) |
|
361
62570186dad4
Adding support for synchronize refreshing with tick and limit it to a defined period
greg
parents:
360
diff
changeset
|
391 |
DebugDataConsumer.__init__(self) |
0 | 392 |
self.Type = type |
393 |
self.Name = name |
|
394 |
self.Id = id |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
395 |
self.Size = wx.Size(LD_ELEMENT_SIZE[0], LD_ELEMENT_SIZE[1]) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
396 |
self.Errors = {} |
0 | 397 |
# Create an input and output connector |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
398 |
self.Input = Connector(self, "", "BOOL", wx.Point(0, self.Size[1] / 2 + 1), WEST) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
399 |
self.Output = Connector(self, "", "BOOL", wx.Point(self.Size[0], self.Size[1] / 2 + 1), EAST) |
249 | 400 |
self.PreviousValue = False |
401 |
self.PreviousSpreading = False |
|
42 | 402 |
self.RefreshNameSize() |
403 |
self.RefreshTypeSize() |
|
0 | 404 |
|
249 | 405 |
def Flush(self): |
406 |
if self.Input is not None: |
|
407 |
self.Input.Flush() |
|
408 |
self.Input = None |
|
409 |
if self.Output is not None: |
|
410 |
self.Output.Flush() |
|
411 |
self.Output = None |
|
412 |
||
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
413 |
def SetForced(self, forced): |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
414 |
if self.Forced != forced: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
415 |
self.Forced = forced |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
416 |
if self.Visible: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
417 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
418 |
|
249 | 419 |
def SetValue(self, value): |
508
01f49e491be5
Bug on Contact Rising and Falling edge not displayed correctly while debugging fixed
laurent
parents:
495
diff
changeset
|
420 |
if self.Type == CONTACT_RISING: |
01f49e491be5
Bug on Contact Rising and Falling edge not displayed correctly while debugging fixed
laurent
parents:
495
diff
changeset
|
421 |
refresh = self.Value and not self.PreviousValue |
01f49e491be5
Bug on Contact Rising and Falling edge not displayed correctly while debugging fixed
laurent
parents:
495
diff
changeset
|
422 |
elif self.Type == CONTACT_FALLING: |
01f49e491be5
Bug on Contact Rising and Falling edge not displayed correctly while debugging fixed
laurent
parents:
495
diff
changeset
|
423 |
refresh = not self.Value and self.PreviousValue |
01f49e491be5
Bug on Contact Rising and Falling edge not displayed correctly while debugging fixed
laurent
parents:
495
diff
changeset
|
424 |
else: |
01f49e491be5
Bug on Contact Rising and Falling edge not displayed correctly while debugging fixed
laurent
parents:
495
diff
changeset
|
425 |
refresh = False |
249 | 426 |
self.PreviousValue = self.Value |
427 |
self.Value = value |
|
508
01f49e491be5
Bug on Contact Rising and Falling edge not displayed correctly while debugging fixed
laurent
parents:
495
diff
changeset
|
428 |
if self.Value != self.PreviousValue or refresh: |
368 | 429 |
if self.Visible: |
430 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
|
249 | 431 |
self.SpreadCurrent() |
432 |
||
433 |
def SpreadCurrent(self): |
|
253 | 434 |
if self.Parent.Debug: |
435 |
if self.Value is None: |
|
436 |
self.Value = False |
|
437 |
spreading = self.Input.ReceivingCurrent() |
|
249 | 438 |
if self.Type == CONTACT_NORMAL: |
439 |
spreading &= self.Value |
|
440 |
elif self.Type == CONTACT_REVERSE: |
|
441 |
spreading &= not self.Value |
|
442 |
elif self.Type == CONTACT_RISING: |
|
443 |
spreading &= self.Value and not self.PreviousValue |
|
444 |
elif self.Type == CONTACT_FALLING: |
|
508
01f49e491be5
Bug on Contact Rising and Falling edge not displayed correctly while debugging fixed
laurent
parents:
495
diff
changeset
|
445 |
spreading &= not self.Value and self.PreviousValue |
249 | 446 |
else: |
447 |
spreading = False |
|
253 | 448 |
if spreading and not self.PreviousSpreading: |
449 |
self.Output.SpreadCurrent(True) |
|
450 |
elif not spreading and self.PreviousSpreading: |
|
451 |
self.Output.SpreadCurrent(False) |
|
452 |
self.PreviousSpreading = spreading |
|
0 | 453 |
|
112 | 454 |
# Make a clone of this LD_Contact |
162 | 455 |
def Clone(self, parent, id = None, pos = None): |
456 |
contact = LD_Contact(parent, self.Type, self.Name, id) |
|
112 | 457 |
contact.SetSize(self.Size[0], self.Size[1]) |
458 |
if pos is not None: |
|
459 |
contact.SetPosition(pos.x, pos.y) |
|
283 | 460 |
else: |
461 |
contact.SetPosition(self.Pos.x, self.Pos.y) |
|
112 | 462 |
contact.Input = self.Input.Clone(contact) |
463 |
contact.Output = self.Output.Clone(contact) |
|
464 |
return contact |
|
465 |
||
283 | 466 |
def GetConnectorTranslation(self, element): |
467 |
return {self.Input : element.Input, self.Output : element.Output} |
|
468 |
||
144 | 469 |
# Returns the RedrawRect |
470 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
471 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
472 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
473 |
rect = rect.Union(self.Output.GetRedrawRect(movex, movey)) |
|
474 |
if movex != 0 or movey != 0: |
|
475 |
if self.Input.IsConnected(): |
|
476 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
477 |
if self.Output.IsConnected(): |
|
478 |
rect = rect.Union(self.Output.GetConnectedRedrawRect(movex, movey)) |
|
479 |
return rect |
|
180
3b0d3ea35ee5
Fixed bad handle initialisation, causing exception on rightup event in some cases.
etisserant
parents:
175
diff
changeset
|
480 |
|
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
283
diff
changeset
|
481 |
def ProcessDragging(self, movex, movey, event, scaling): |
360 | 482 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling, height_fac = 2) |
144 | 483 |
|
0 | 484 |
# Forbids to change the contact size |
485 |
def SetSize(self, width, height): |
|
42 | 486 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
27 | 487 |
Graphic_Element.SetSize(self, width, height) |
488 |
self.RefreshConnectors() |
|
0 | 489 |
|
490 |
# Delete this contact by calling the appropriate method |
|
491 |
def Delete(self): |
|
492 |
self.Parent.DeleteContact(self) |
|
493 |
||
494 |
# Unconnect input and output |
|
495 |
def Clean(self): |
|
61
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
496 |
self.Input.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
dc7142ae9438
Adding possibility to change Type and Pin number of power rails
lbessard
parents:
58
diff
changeset
|
497 |
self.Output.UnConnect(delete = self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
0 | 498 |
|
42 | 499 |
# Refresh the size of text for name |
500 |
def RefreshNameSize(self): |
|
501 |
if self.Name != "": |
|
165 | 502 |
self.NameSize = self.Parent.GetTextExtent(self.Name) |
42 | 503 |
else: |
504 |
self.NameSize = 0, 0 |
|
505 |
||
506 |
# Refresh the size of text for type |
|
507 |
def RefreshTypeSize(self): |
|
508 |
typetext = "" |
|
509 |
if self.Type == CONTACT_REVERSE: |
|
510 |
typetext = "/" |
|
511 |
elif self.Type == CONTACT_RISING: |
|
512 |
typetext = "P" |
|
513 |
elif self.Type == CONTACT_FALLING: |
|
514 |
typetext = "N" |
|
515 |
if typetext != "": |
|
165 | 516 |
self.TypeSize = self.Parent.GetTextExtent(typetext) |
42 | 517 |
else: |
518 |
self.TypeSize = 0, 0 |
|
519 |
||
0 | 520 |
# Refresh the contact bounding box |
521 |
def RefreshBoundingBox(self): |
|
522 |
# Calculate the size of the name outside the contact |
|
165 | 523 |
text_width, text_height = self.Parent.GetTextExtent(self.Name) |
0 | 524 |
# Calculate the bounding box size |
525 |
if self.Name != "": |
|
526 |
bbx_x = self.Pos.x - max(0, (text_width - self.Size[0]) / 2) |
|
527 |
bbx_width = max(self.Size[0], text_width) |
|
528 |
bbx_y = self.Pos.y - (text_height + 2) |
|
529 |
bbx_height = self.Size[1] + (text_height + 2) |
|
530 |
else: |
|
531 |
bbx_x = self.Pos.x |
|
532 |
bbx_width = self.Size[0] |
|
533 |
bbx_y = self.Pos.y |
|
534 |
bbx_height = self.Size[1] |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
535 |
self.BoundingBox = wx.Rect(bbx_x, bbx_y, bbx_width + 1, bbx_height + 1) |
0 | 536 |
|
27 | 537 |
# Returns the block minimum size |
538 |
def GetMinSize(self): |
|
539 |
return LD_ELEMENT_SIZE |
|
540 |
||
0 | 541 |
# Refresh the position of wire connected to contact |
542 |
def RefreshConnected(self, exclude = []): |
|
543 |
self.Input.MoveConnected(exclude) |
|
544 |
self.Output.MoveConnected(exclude) |
|
545 |
||
546 |
# Returns the contact connector that starts with the point given if it exists |
|
27 | 547 |
def GetConnector(self, position, name = None): |
548 |
# if a name is given |
|
549 |
if name: |
|
550 |
# Test input and output connector |
|
551 |
if name == self.Input.GetName(): |
|
552 |
return self.Input |
|
553 |
if name == self.Output.GetName(): |
|
554 |
return self.Output |
|
0 | 555 |
# Test input connector |
556 |
input_pos = self.Input.GetRelPosition() |
|
557 |
if position.x == self.Pos.x + input_pos.x and position.y == self.Pos.y + input_pos.y: |
|
558 |
return self.Input |
|
559 |
# Test output connector |
|
560 |
output_pos = self.Output.GetRelPosition() |
|
561 |
if position.x == self.Pos.x + output_pos.x and position.y == self.Pos.y + output_pos.y: |
|
562 |
return self.Output |
|
563 |
return None |
|
564 |
||
565 |
# Returns input and output contact connectors |
|
566 |
def GetConnectors(self): |
|
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
567 |
return {"inputs": [self.Input], "outputs": [self.Output]} |
0 | 568 |
|
569 |
# Test if point given is on contact input or output connector |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
570 |
def TestConnector(self, pt, direction = None, exclude=True): |
0 | 571 |
# Test input connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
572 |
if self.Input.TestPoint(pt, direction, exclude): |
0 | 573 |
return self.Input |
574 |
# Test output connector |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
575 |
if self.Output.TestPoint(pt, direction, exclude): |
0 | 576 |
return self.Output |
577 |
return None |
|
578 |
||
27 | 579 |
# Refresh the positions of the block connectors |
580 |
def RefreshConnectors(self): |
|
145 | 581 |
scaling = self.Parent.GetScaling() |
582 |
position = self.Size[1] / 2 + 1 |
|
583 |
if scaling is not None: |
|
584 |
position = round(float(self.Pos.y + position) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
585 |
self.Input.SetPosition(wx.Point(0, position)) |
|
586 |
self.Output.SetPosition(wx.Point(self.Size[0], position)) |
|
27 | 587 |
self.RefreshConnected() |
588 |
||
0 | 589 |
# Changes the contact name |
590 |
def SetName(self, name): |
|
591 |
self.Name = name |
|
42 | 592 |
self.RefreshNameSize() |
0 | 593 |
|
594 |
# Returns the contact name |
|
595 |
def GetName(self): |
|
596 |
return self.Name |
|
597 |
||
598 |
# Changes the contact type |
|
599 |
def SetType(self, type): |
|
600 |
self.Type = type |
|
50 | 601 |
self.RefreshTypeSize() |
0 | 602 |
|
603 |
# Returns the contact type |
|
604 |
def GetType(self): |
|
605 |
return self.Type |
|
606 |
||
607 |
# Method called when a LeftDClick event have been generated |
|
27 | 608 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 609 |
# Edit the contact properties |
610 |
self.Parent.EditContactContent(self) |
|
611 |
||
127
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
612 |
# 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
|
613 |
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
|
614 |
# Popup the default menu |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
615 |
self.Parent.PopupDefaultMenu() |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
616 |
|
0 | 617 |
# Refreshes the contact model |
618 |
def RefreshModel(self, move=True): |
|
619 |
self.Parent.RefreshContactModel(self) |
|
620 |
# If contact has moved, refresh the model of wires connected to output |
|
621 |
if move: |
|
622 |
self.Output.RefreshWires() |
|
623 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
624 |
# 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
|
625 |
def DrawHighlightment(self, dc): |
144 | 626 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR)) |
627 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
628 |
dc.SetLogicalFunction(wx.AND) |
|
629 |
# Draw two rectangles for representing the contact |
|
630 |
dc.DrawRectangle(self.Pos.x - 2, self.Pos.y - 2, 6, self.Size[1] + 5) |
|
631 |
dc.DrawRectangle(self.Pos.x + self.Size[0] - 3, self.Pos.y - 2, 6, self.Size[1] + 5) |
|
632 |
dc.SetLogicalFunction(wx.COPY) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
633 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
634 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
635 |
self.Errors[infos[0]] = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
636 |
|
0 | 637 |
# Draws contact |
638 |
def Draw(self, dc): |
|
144 | 639 |
Graphic_Element.Draw(self, dc) |
249 | 640 |
if self.Value is not None: |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
641 |
if self.Type == CONTACT_NORMAL and self.Value or \ |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
642 |
self.Type == CONTACT_REVERSE and not self.Value or \ |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
643 |
self.Type == CONTACT_RISING and self.Value and not self.PreviousValue or \ |
508
01f49e491be5
Bug on Contact Rising and Falling edge not displayed correctly while debugging fixed
laurent
parents:
495
diff
changeset
|
644 |
self.Type == CONTACT_RISING and not self.Value and self.PreviousValue: |
478
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
645 |
if self.Forced: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
646 |
dc.SetPen(wx.CYAN_PEN) |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
647 |
else: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
648 |
dc.SetPen(wx.GREEN_PEN) |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
649 |
elif self.Forced: |
dc403c47af54
Adding colour to graphic element that showing forced values
laurent
parents:
383
diff
changeset
|
650 |
dc.SetPen(wx.Pen(wx.BLUE)) |
249 | 651 |
else: |
652 |
dc.SetPen(wx.BLACK_PEN) |
|
653 |
else: |
|
654 |
dc.SetPen(wx.BLACK_PEN) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
655 |
dc.SetBrush(wx.BLACK_BRUSH) |
213 | 656 |
|
657 |
# Compiling contact type modifier symbol |
|
0 | 658 |
typetext = "" |
659 |
if self.Type == CONTACT_REVERSE: |
|
660 |
typetext = "/" |
|
661 |
elif self.Type == CONTACT_RISING: |
|
662 |
typetext = "P" |
|
663 |
elif self.Type == CONTACT_FALLING: |
|
664 |
typetext = "N" |
|
213 | 665 |
|
666 |
if getattr(dc, "printing", False): |
|
667 |
name_size = dc.GetTextExtent(self.Name) |
|
668 |
if typetext != "": |
|
669 |
type_size = dc.GetTextExtent(typetext) |
|
670 |
else: |
|
671 |
name_size = self.NameSize |
|
672 |
if typetext != "": |
|
673 |
type_size = self.TypeSize |
|
674 |
||
675 |
# Draw two rectangles for representing the contact |
|
676 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, 2, self.Size[1] + 1) |
|
677 |
dc.DrawRectangle(self.Pos.x + self.Size[0] - 1, self.Pos.y, 2, self.Size[1] + 1) |
|
678 |
# Draw contact name |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
679 |
name_pos = (self.Pos.x + (self.Size[0] - name_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
680 |
self.Pos.y - (name_size[1] + 2)) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
681 |
dc.DrawText(self.Name, name_pos[0], name_pos[1]) |
213 | 682 |
# Draw the modifier symbol in the middle of contact |
0 | 683 |
if typetext != "": |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
684 |
type_pos = (self.Pos.x + (self.Size[0] - type_size[0]) / 2 + 1, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
685 |
self.Pos.y + (self.Size[1] - type_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
686 |
dc.DrawText(typetext, type_pos[0], type_pos[1]) |
0 | 687 |
# Draw input and output connectors |
688 |
self.Input.Draw(dc) |
|
689 |
self.Output.Draw(dc) |
|
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
690 |
if self.Errors.has_key("reference"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
691 |
HighlightErrorZone(dc, name_pos[0], name_pos[1], name_size[0], name_size[1]) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
692 |
if typetext != "" and (self.Errors.has_key("negated") or self.Errors.has_key("rising") or self.Errors.has_key("falling")): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
693 |
HighlightErrorZone(dc, type_pos[0], type_pos[1], type_size[0], type_size[1]) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
694 |
|
0 | 695 |
|
696 |
#------------------------------------------------------------------------------- |
|
697 |
# Ladder Diagram Coil |
|
698 |
#------------------------------------------------------------------------------- |
|
699 |
||
700 |
""" |
|
701 |
Class that implements the graphic representation of a coil |
|
702 |
""" |
|
703 |
||
704 |
class LD_Coil(Graphic_Element): |
|
705 |
||
706 |
# Create a new coil |
|
707 |
def __init__(self, parent, type, name, id = None): |
|
708 |
Graphic_Element.__init__(self, parent) |
|
709 |
self.Type = type |
|
710 |
self.Name = name |
|
711 |
self.Id = id |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
712 |
self.Size = wx.Size(LD_ELEMENT_SIZE[0], LD_ELEMENT_SIZE[1]) |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
713 |
self.Errors = {} |
0 | 714 |
# Create an input and output connector |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
715 |
self.Input = Connector(self, "", "BOOL", wx.Point(0, self.Size[1] / 2 + 1), WEST) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
716 |
self.Output = Connector(self, "", "BOOL", wx.Point(self.Size[0], self.Size[1] / 2 + 1), EAST) |
249 | 717 |
self.Value = None |
718 |
self.PreviousValue = False |
|
42 | 719 |
self.RefreshNameSize() |
720 |
self.RefreshTypeSize() |
|
0 | 721 |
|
249 | 722 |
def Flush(self): |
723 |
if self.Input is not None: |
|
724 |
self.Input.Flush() |
|
725 |
self.Input = None |
|
726 |
if self.Output is not None: |
|
727 |
self.Output.Flush() |
|
728 |
self.Output = None |
|
729 |
||
730 |
def SpreadCurrent(self): |
|
253 | 731 |
if self.Parent.Debug: |
732 |
self.PreviousValue = self.Value |
|
733 |
self.Value = self.Input.ReceivingCurrent() |
|
734 |
if self.Value and not self.PreviousValue: |
|
735 |
self.Output.SpreadCurrent(True) |
|
736 |
elif not self.Value and self.PreviousValue: |
|
737 |
self.Output.SpreadCurrent(False) |
|
368 | 738 |
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:
360
diff
changeset
|
739 |
self.Parent.UpdateRefreshRect(self.GetRedrawRect()) |
0 | 740 |
|
112 | 741 |
# Make a clone of this LD_Coil |
162 | 742 |
def Clone(self, parent, id = None, pos = None): |
743 |
coil = LD_Coil(parent, self.Type, self.Name, id) |
|
112 | 744 |
coil.SetSize(self.Size[0], self.Size[1]) |
745 |
if pos is not None: |
|
746 |
coil.SetPosition(pos.x, pos.y) |
|
283 | 747 |
else: |
748 |
coil.SetPosition(self.Pos.x, self.Pos.y) |
|
112 | 749 |
coil.Input = self.Input.Clone(coil) |
750 |
coil.Output = self.Output.Clone(coil) |
|
751 |
return coil |
|
752 |
||
283 | 753 |
def GetConnectorTranslation(self, element): |
754 |
return {self.Input : element.Input, self.Output : element.Output} |
|
755 |
||
144 | 756 |
# Returns the RedrawRect |
757 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
758 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
759 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
760 |
rect = rect.Union(self.Output.GetRedrawRect(movex, movey)) |
|
761 |
if movex != 0 or movey != 0: |
|
762 |
if self.Input.IsConnected(): |
|
763 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
764 |
if self.Output.IsConnected(): |
|
765 |
rect = rect.Union(self.Output.GetConnectedRedrawRect(movex, movey)) |
|
766 |
return rect |
|
767 |
||
327
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
283
diff
changeset
|
768 |
def ProcessDragging(self, movex, movey, event, scaling): |
7fd5233ce5ce
Adding support for contraining move to only one direction when control down
lbessard
parents:
283
diff
changeset
|
769 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling, height_fac = 2) |
180
3b0d3ea35ee5
Fixed bad handle initialisation, causing exception on rightup event in some cases.
etisserant
parents:
175
diff
changeset
|
770 |
|
3b0d3ea35ee5
Fixed bad handle initialisation, causing exception on rightup event in some cases.
etisserant
parents:
175
diff
changeset
|
771 |
# Forbids to change the Coil size |
0 | 772 |
def SetSize(self, width, height): |
42 | 773 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
27 | 774 |
Graphic_Element.SetSize(self, width, height) |
775 |
self.RefreshConnectors() |
|
0 | 776 |
|
777 |
# Delete this coil by calling the appropriate method |
|
778 |
def Delete(self): |
|
779 |
self.Parent.DeleteCoil(self) |
|
780 |
||
781 |
# Unconnect input and output |
|
782 |
def Clean(self): |
|
783 |
self.Input.UnConnect() |
|
784 |
self.Output.UnConnect() |
|
785 |
||
42 | 786 |
# Refresh the size of text for name |
787 |
def RefreshNameSize(self): |
|
788 |
if self.Name != "": |
|
165 | 789 |
self.NameSize = self.Parent.GetTextExtent(self.Name) |
42 | 790 |
else: |
791 |
self.NameSize = 0, 0 |
|
792 |
||
793 |
# Refresh the size of text for type |
|
794 |
def RefreshTypeSize(self): |
|
795 |
typetext = "" |
|
796 |
if self.Type == COIL_REVERSE: |
|
797 |
typetext = "/" |
|
798 |
elif self.Type == COIL_SET: |
|
799 |
typetext = "S" |
|
800 |
elif self.Type == COIL_RESET: |
|
801 |
typetext = "R" |
|
269
34eff05909b0
Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents:
254
diff
changeset
|
802 |
elif self.Type == COIL_RISING: |
34eff05909b0
Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents:
254
diff
changeset
|
803 |
typetext = "P" |
34eff05909b0
Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents:
254
diff
changeset
|
804 |
elif self.Type == COIL_FALLING: |
34eff05909b0
Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents:
254
diff
changeset
|
805 |
typetext = "N" |
42 | 806 |
if typetext != "": |
165 | 807 |
self.TypeSize = self.Parent.GetTextExtent(typetext) |
42 | 808 |
else: |
809 |
self.TypeSize = 0, 0 |
|
810 |
||
0 | 811 |
# Refresh the coil bounding box |
812 |
def RefreshBoundingBox(self): |
|
813 |
# Calculate the size of the name outside the coil |
|
165 | 814 |
text_width, text_height = self.Parent.GetTextExtent(self.Name) |
0 | 815 |
# Calculate the bounding box size |
816 |
if self.Name != "": |
|
817 |
bbx_x = self.Pos.x - max(0, (text_width - self.Size[0]) / 2) |
|
818 |
bbx_width = max(self.Size[0], text_width) |
|
819 |
bbx_y = self.Pos.y - (text_height + 2) |
|
820 |
bbx_height = self.Size[1] + (text_height + 2) |
|
821 |
else: |
|
822 |
bbx_x = self.Pos.x |
|
823 |
bbx_width = self.Size[0] |
|
824 |
bbx_y = self.Pos.y |
|
825 |
bbx_height = self.Size[1] |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
826 |
self.BoundingBox = wx.Rect(bbx_x, bbx_y, bbx_width + 1, bbx_height + 1) |
27 | 827 |
|
828 |
# Returns the block minimum size |
|
829 |
def GetMinSize(self): |
|
830 |
return LD_ELEMENT_SIZE |
|
0 | 831 |
|
832 |
# Refresh the position of wire connected to coil |
|
833 |
def RefreshConnected(self, exclude = []): |
|
834 |
self.Input.MoveConnected(exclude) |
|
835 |
self.Output.MoveConnected(exclude) |
|
836 |
||
837 |
# Returns the coil connector that starts with the point given if it exists |
|
27 | 838 |
def GetConnector(self, position, name = None): |
839 |
# if a name is given |
|
840 |
if name: |
|
841 |
# Test input and output connector |
|
842 |
if self.Input and name == self.Input.GetName(): |
|
843 |
return self.Input |
|
844 |
if self.Output and name == self.Output.GetName(): |
|
845 |
return self.Output |
|
0 | 846 |
# Test input connector |
847 |
input_pos = self.Input.GetRelPosition() |
|
848 |
if position.x == self.Pos.x + input_pos.x and position.y == self.Pos.y + input_pos.y: |
|
849 |
return self.Input |
|
850 |
# Test output connector |
|
851 |
output_pos = self.Output.GetRelPosition() |
|
852 |
if position.x == self.Pos.x + output_pos.x and position.y == self.Pos.y + output_pos.y: |
|
853 |
return self.Output |
|
854 |
return None |
|
855 |
||
856 |
# Returns input and output coil connectors |
|
857 |
def GetConnectors(self): |
|
383
25ffba02b6a8
Improving viewer loading instances procedure to faster
laurent
parents:
381
diff
changeset
|
858 |
return {"inputs": [self.Input], "outputs": [self.Output]} |
0 | 859 |
|
860 |
# Test if point given is on coil input or output connector |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
861 |
def TestConnector(self, pt, direction = None, exclude=True): |
0 | 862 |
# Test input connector |
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
863 |
if self.Input.TestPoint(pt, direction, exclude): |
0 | 864 |
return self.Input |
865 |
# Test output connector |
|
243
c5da8b706cde
Adding support for allowing connections only between an input and an output connector
lbessard
parents:
237
diff
changeset
|
866 |
if self.Output.TestPoint(pt, direction, exclude): |
0 | 867 |
return self.Output |
868 |
return None |
|
869 |
||
27 | 870 |
# Refresh the positions of the block connectors |
871 |
def RefreshConnectors(self): |
|
145 | 872 |
scaling = self.Parent.GetScaling() |
873 |
position = self.Size[1] / 2 + 1 |
|
874 |
if scaling is not None: |
|
875 |
position = round(float(self.Pos.y + position) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
876 |
self.Input.SetPosition(wx.Point(0, position)) |
|
877 |
self.Output.SetPosition(wx.Point(self.Size[0], position)) |
|
27 | 878 |
self.RefreshConnected() |
879 |
||
0 | 880 |
# Changes the coil name |
881 |
def SetName(self, name): |
|
882 |
self.Name = name |
|
42 | 883 |
self.RefreshNameSize() |
0 | 884 |
|
885 |
# Returns the coil name |
|
886 |
def GetName(self): |
|
887 |
return self.Name |
|
888 |
||
889 |
# Changes the coil type |
|
890 |
def SetType(self, type): |
|
891 |
self.Type = type |
|
42 | 892 |
self.RefreshTypeSize() |
0 | 893 |
|
894 |
# Returns the coil type |
|
895 |
def GetType(self): |
|
896 |
return self.Type |
|
897 |
||
898 |
# Method called when a LeftDClick event have been generated |
|
27 | 899 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 900 |
# Edit the coil properties |
901 |
self.Parent.EditCoilContent(self) |
|
902 |
||
127
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
903 |
# 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
|
904 |
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
|
905 |
# Popup the default menu |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
906 |
self.Parent.PopupDefaultMenu() |
436268f31dae
Adding contextual menu on LD_Contact, LD_Coil, LD_PowerRail and SFC_ActionBlock
lbessard
parents:
112
diff
changeset
|
907 |
|
0 | 908 |
# Refreshes the coil model |
909 |
def RefreshModel(self, move=True): |
|
910 |
self.Parent.RefreshCoilModel(self) |
|
911 |
# If coil has moved, refresh the model of wires connected to output |
|
912 |
if move: |
|
913 |
self.Output.RefreshWires() |
|
914 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
915 |
# 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
|
916 |
def DrawHighlightment(self, dc): |
144 | 917 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR, 6, wx.SOLID)) |
918 |
dc.SetBrush(wx.TRANSPARENT_BRUSH) |
|
919 |
dc.SetLogicalFunction(wx.AND) |
|
920 |
# Draw a two circle arcs for representing the coil |
|
921 |
dc.DrawEllipticArc(self.Pos.x, self.Pos.y - int(self.Size[1] * (sqrt(2) - 1.) / 2.) + 1, self.Size[0], int(self.Size[1] * sqrt(2)) - 1, 135, 225) |
|
922 |
dc.DrawEllipticArc(self.Pos.x, self.Pos.y - int(self.Size[1] * (sqrt(2) - 1.) / 2.) + 1, self.Size[0], int(self.Size[1] * sqrt(2)) - 1, -45, 45) |
|
923 |
dc.SetLogicalFunction(wx.COPY) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
924 |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
925 |
def AddError(self, infos, start, end): |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
926 |
self.Errors[infos[0]] = (start[1], end[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
927 |
|
0 | 928 |
# Draws coil |
929 |
def Draw(self, dc): |
|
144 | 930 |
Graphic_Element.Draw(self, dc) |
249 | 931 |
if self.Value is not None and self.Value: |
495 | 932 |
dc.SetPen(wx.Pen(wx.GREEN, 2, wx.SOLID)) |
249 | 933 |
else: |
934 |
dc.SetPen(wx.Pen(wx.BLACK, 2, wx.SOLID)) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
61
diff
changeset
|
935 |
dc.SetBrush(wx.TRANSPARENT_BRUSH) |
213 | 936 |
|
937 |
# Compiling coil type modifier symbol |
|
0 | 938 |
typetext = "" |
939 |
if self.Type == COIL_REVERSE: |
|
940 |
typetext = "/" |
|
941 |
elif self.Type == COIL_SET: |
|
942 |
typetext = "S" |
|
943 |
elif self.Type == COIL_RESET: |
|
944 |
typetext = "R" |
|
269
34eff05909b0
Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents:
254
diff
changeset
|
945 |
elif self.Type == COIL_RISING: |
34eff05909b0
Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents:
254
diff
changeset
|
946 |
typetext = "P" |
34eff05909b0
Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents:
254
diff
changeset
|
947 |
elif self.Type == COIL_FALLING: |
34eff05909b0
Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents:
254
diff
changeset
|
948 |
typetext = "N" |
213 | 949 |
|
950 |
if getattr(dc, "printing", False) and not isinstance(dc, wx.PostScriptDC): |
|
951 |
# Draw an clipped ellipse for representing the coil |
|
952 |
clipping_box = dc.GetClippingBox() |
|
953 |
dc.SetClippingRegion(self.Pos.x - 1, self.Pos.y, self.Size[0] + 2, self.Size[1] + 1) |
|
954 |
dc.DrawEllipse(self.Pos.x, self.Pos.y - int(self.Size[1] * (sqrt(2) - 1.) / 2.) + 1, self.Size[0], int(self.Size[1] * sqrt(2)) - 1) |
|
955 |
dc.DestroyClippingRegion() |
|
956 |
if clipping_box != (0, 0, 0, 0): |
|
957 |
dc.SetClippingRegion(*clipping_box) |
|
958 |
name_size = dc.GetTextExtent(self.Name) |
|
959 |
if typetext != "": |
|
960 |
type_size = dc.GetTextExtent(typetext) |
|
961 |
else: |
|
962 |
# Draw a two ellipse arcs for representing the coil |
|
963 |
dc.DrawEllipticArc(self.Pos.x, self.Pos.y - int(self.Size[1] * (sqrt(2) - 1.) / 2.) + 1, self.Size[0], int(self.Size[1] * sqrt(2)) - 1, 135, 225) |
|
964 |
dc.DrawEllipticArc(self.Pos.x, self.Pos.y - int(self.Size[1] * (sqrt(2) - 1.) / 2.) + 1, self.Size[0], int(self.Size[1] * sqrt(2)) - 1, -45, 45) |
|
965 |
# Draw a point to avoid hole in left arc |
|
966 |
if not getattr(dc, "printing", False): |
|
249 | 967 |
if self.Value is not None and self.Value: |
968 |
dc.SetPen(wx.GREEN_PEN) |
|
969 |
else: |
|
970 |
dc.SetPen(wx.BLACK_PEN) |
|
213 | 971 |
dc.DrawPoint(self.Pos.x + 1, self.Pos.y + self.Size[1] / 2 + 1) |
972 |
name_size = self.NameSize |
|
973 |
if typetext != "": |
|
974 |
type_size = self.TypeSize |
|
975 |
||
976 |
# Draw coil name |
|
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
977 |
name_pos = (self.Pos.x + (self.Size[0] - name_size[0]) / 2, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
978 |
self.Pos.y - (name_size[1] + 2)) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
979 |
dc.DrawText(self.Name, name_pos[0], name_pos[1]) |
213 | 980 |
# Draw the modifier symbol in the middle of coil |
0 | 981 |
if typetext != "": |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
982 |
type_pos = (self.Pos.x + (self.Size[0] - type_size[0]) / 2 + 1, |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
983 |
self.Pos.y + (self.Size[1] - type_size[1]) / 2) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
984 |
dc.DrawText(typetext, type_pos[0], type_pos[1]) |
0 | 985 |
# Draw input and output connectors |
986 |
self.Input.Draw(dc) |
|
987 |
self.Output.Draw(dc) |
|
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
988 |
if self.Errors.has_key("reference"): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
989 |
HighlightErrorZone(dc, name_pos[0], name_pos[1], name_size[0], name_size[1]) |
379
e4c26ee9c998
Code rewritten, replacing all list containing tests by dict key defining tests
laurent
parents:
368
diff
changeset
|
990 |
if typetext != "" and (self.Errors.has_key("negated") or self.Errors.has_key("rising") or self.Errors.has_key("falling")): |
231
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
991 |
HighlightErrorZone(dc, type_pos[0], type_pos[1], type_size[0], type_size[1]) |
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
992 |
|
fc2d6cbb8b39
Adding support for highlighing compiling errors from matiec
lbessard
parents:
213
diff
changeset
|
993 |