author | lbessard |
Thu, 23 Aug 2007 09:39:18 +0200 | |
changeset 78 | 049f2e7090a2 |
parent 64 | dd6f693e46a1 |
child 80 | c798a68c5560 |
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 |
from math import * |
|
27 |
||
28 |
||
29 |
#------------------------------------------------------------------------------- |
|
30 |
# Common constants |
|
31 |
#------------------------------------------------------------------------------- |
|
32 |
||
33 |
""" |
|
34 |
Definition of constants for dimensions of graphic elements |
|
35 |
""" |
|
36 |
||
37 |
# FBD and SFC constants |
|
28
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
38 |
MIN_MOVE = 5 # Minimum move before starting a element dragging |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
39 |
CONNECTOR_SIZE = 8 # Size of connectors |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
40 |
BLOCK_LINE_SIZE = 20 # Minimum size of each line in a block |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
41 |
HANDLE_SIZE = 6 # Size of the squares for handles |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
42 |
ANCHOR_DISTANCE = 5 # Distance where wire is automativally attached to a connector |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
43 |
POINT_RADIUS = 2 # Radius of the point of wire ends |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
44 |
MIN_SEGMENT_SIZE = 2 # Minimum size of the endling segments of a wire |
0 | 45 |
|
46 |
# LD constants |
|
28
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
47 |
LD_LINE_SIZE = 40 # Distance between two lines in a ladder rung |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
48 |
LD_ELEMENT_SIZE = (21, 15) # Size (width, height) of a ladder element (contact or coil) |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
49 |
LD_WIRE_SIZE = 30 # Size of a wire between two contact |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
50 |
LD_WIRECOIL_SIZE = 70 # Size of a wire between a coil and a contact |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
51 |
LD_OFFSET = (10, 10) # Distance (x, y) between each comment and rung of the ladder |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
52 |
LD_COMMENT_DEFAULTSIZE = (600, 40) # Size (width, height) of a comment box |
0 | 53 |
|
54 |
# SFC constants |
|
28
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
55 |
SFC_STEP_DEFAULT_SIZE = (40, 30) # Default size of a SFC step |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
56 |
SFC_TRANSITION_SIZE = (20, 2) # Size of a SFC transition |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
57 |
SFC_DEFAULT_SEQUENCE_INTERVAL = 40 # Default size of the interval between two divergence branches |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
58 |
SFC_SIMULTANEOUS_SEQUENCE_EXTRA = 20 # Size of extra lines for simultaneous divergence and convergence |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
59 |
SFC_JUMP_SIZE = (12, 13) # Size of a SFC jump to step |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
60 |
SFC_WIRE_MIN_SIZE = 25 # Size of a wire between two elements |
fc23e1f415d8
Adding support for concurrent overriden standard function
lbessard
parents:
27
diff
changeset
|
61 |
SFC_ACTION_MIN_SIZE = (100, 30) # Minimum size of an action block line |
0 | 62 |
|
63 |
# Type definition constants for graphic elements |
|
64 |
[INPUT, OUTPUT, INOUT] = range(3) |
|
65 |
[CONNECTOR, CONTINUATION] = range(2) |
|
66 |
[LEFTRAIL, RIGHTRAIL] = range(2) |
|
67 |
[CONTACT_NORMAL, CONTACT_REVERSE, CONTACT_RISING, CONTACT_FALLING] = range(4) |
|
68 |
[COIL_NORMAL, COIL_REVERSE, COIL_SET, COIL_RESET] = range(4) |
|
69 |
[SELECTION_DIVERGENCE, SELECTION_CONVERGENCE, SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE] = range(4) |
|
70 |
||
71 |
# Constants for defining the type of dragging that has been selected |
|
72 |
[HANDLE_MOVE, HANDLE_RESIZE, HANDLE_POINT, HANDLE_SEGMENT, HANDLE_CONNECTOR] = range(5) |
|
73 |
||
74 |
# List of value for resize handle that are valid |
|
75 |
VALID_HANDLES = [(1,1), (1,2), (1,3), (2,3), (3,3), (3,2), (3,1), (2,1)] |
|
76 |
||
77 |
# Contants for defining the direction of a connector |
|
78 |
[EAST, NORTH, WEST, SOUTH] = [(1,0), (0,-1), (-1,0), (0,1)] |
|
79 |
||
80 |
# Contants for defining which mode is selected for each view |
|
81 |
[MODE_SELECTION, MODE_BLOCK, MODE_VARIABLE, MODE_CONNECTION, MODE_COMMENT, MODE_WIRE, |
|
27 | 82 |
MODE_COIL, MODE_CONTACT, MODE_POWERRAIL, MODE_INITIALSTEP, MODE_STEP, MODE_TRANSITION, |
83 |
MODE_DIVERGENCE, MODE_JUMP, MODE_ACTION] = range(15) |
|
84 |
||
85 |
# Contants for defining which drawing mode is selected for app |
|
86 |
[FREEDRAWING_MODE, DRIVENDRAWING_MODE] = [1, 2] |
|
87 |
||
58 | 88 |
CURSORS = None |
89 |
||
90 |
def ResetCursors(): |
|
91 |
global CURSORS |
|
92 |
if CURSORS == None: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
93 |
CURSORS = [wx.NullCursor, |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
94 |
wx.StockCursor(wx.CURSOR_HAND), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
95 |
wx.StockCursor(wx.CURSOR_SIZENWSE), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
96 |
wx.StockCursor(wx.CURSOR_SIZENESW), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
97 |
wx.StockCursor(wx.CURSOR_SIZEWE), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
98 |
wx.StockCursor(wx.CURSOR_SIZENS)] |
58 | 99 |
|
100 |
HANDLE_CURSORS = { |
|
101 |
(1, 1) : 2, |
|
102 |
(3, 3) : 2, |
|
103 |
(1, 3) : 3, |
|
104 |
(3, 1) : 3, |
|
105 |
(1, 2) : 4, |
|
106 |
(3, 2) : 4, |
|
107 |
(2, 1) : 5, |
|
108 |
(2, 3) : 5 |
|
109 |
} |
|
0 | 110 |
|
111 |
""" |
|
112 |
Basic vector operations for calculate wire points |
|
113 |
""" |
|
114 |
||
115 |
# Calculate the scalar product of two vectors |
|
116 |
def product(v1, v2): |
|
117 |
return v1[0] * v2[0] + v1[1] * v2[1] |
|
118 |
||
119 |
# Create a vector from two points and define if vector must be normal |
|
120 |
def vector(p1, p2, normal = True): |
|
121 |
vector = (p2.x - p1.x, p2.y - p1.y) |
|
122 |
if normal: |
|
123 |
return normalize(vector) |
|
124 |
return vector |
|
125 |
||
126 |
# Calculate the norm of a given vector |
|
127 |
def norm(v): |
|
128 |
return sqrt(v[0] * v[0] + v[1] * v[1]) |
|
129 |
||
130 |
# Normalize a given vector |
|
131 |
def normalize(v): |
|
132 |
v_norm = norm(v) |
|
133 |
# Verifie if it is not a null vector |
|
134 |
if v_norm > 0: |
|
135 |
return (v[0] / v_norm, v[1] / v_norm) |
|
136 |
else: |
|
137 |
return v |
|
138 |
||
139 |
||
140 |
""" |
|
141 |
Function that calculates the nearest point of the grid defined by scaling for the given point |
|
142 |
""" |
|
143 |
||
27 | 144 |
def GetScaledEventPosition(event, dc, scaling): |
145 |
pos = event.GetLogicalPosition(dc) |
|
0 | 146 |
if scaling: |
147 |
pos.x = round(float(pos.x) / float(scaling[0])) * scaling[0] |
|
148 |
pos.y = round(float(pos.y) / float(scaling[1])) * scaling[1] |
|
149 |
return pos |
|
150 |
||
151 |
||
152 |
""" |
|
153 |
Function that choose a direction during the wire points generation |
|
154 |
""" |
|
155 |
||
156 |
def DirectionChoice(v_base, v_target, dir_target): |
|
157 |
dir_product = product(v_base, v_target) |
|
158 |
if dir_product < 0: |
|
159 |
return (-v_base[0], -v_base[1]) |
|
160 |
elif dir_product == 0 and product(v_base, dir_target) != 0: |
|
161 |
return dir_target |
|
162 |
return v_base |
|
163 |
||
164 |
||
165 |
#------------------------------------------------------------------------------- |
|
166 |
# Viewer Rubberband |
|
167 |
#------------------------------------------------------------------------------- |
|
168 |
||
169 |
""" |
|
170 |
Class that implements a rubberband |
|
171 |
""" |
|
172 |
||
173 |
class RubberBand: |
|
174 |
||
175 |
# Create a rubberband by indicated on which window it must be drawn |
|
176 |
def __init__(self, drawingSurface): |
|
177 |
self.drawingSurface = drawingSurface |
|
178 |
self.Reset() |
|
179 |
||
180 |
# Method that initializes the internal attributes of the rubberband |
|
181 |
def Reset(self): |
|
182 |
self.startPoint = None |
|
183 |
self.currentBox = None |
|
184 |
self.lastBox = None |
|
185 |
||
186 |
# Method that return if a box is currently edited |
|
187 |
def IsShown(self): |
|
188 |
return self.currentBox != None |
|
189 |
||
190 |
# Method that returns the currently edited box |
|
191 |
def GetCurrentExtent(self): |
|
192 |
return self.currentBox |
|
193 |
||
194 |
# Method called when a new box starts to be edited |
|
27 | 195 |
def OnLeftDown(self, event, dc, scaling): |
196 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 197 |
# Save the point for calculate the box position and size |
198 |
self.startPoint = pos |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
199 |
self.currentBox = wx.Rect(pos.x, pos.y, 0, 0) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
200 |
self.drawingSurface.SetCursor(wx.StockCursor(wx.CURSOR_CROSS)) |
0 | 201 |
self.Redraw() |
202 |
||
203 |
# Method called when dragging with a box edited |
|
27 | 204 |
def OnMotion(self, event, dc, scaling): |
205 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 206 |
# Save the last position and size of the box for erasing it |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
207 |
self.lastBox = wx.Rect(self.currentBox.x, self.currentBox.y, self.currentBox.width, |
0 | 208 |
self.currentBox.height) |
209 |
# Calculate new position and size of the box |
|
210 |
if pos.x >= self.startPoint.x: |
|
211 |
self.currentBox.x = self.startPoint.x |
|
212 |
self.currentBox.width = pos.x - self.startPoint.x + 1 |
|
213 |
else: |
|
214 |
self.currentBox.x = pos.x |
|
215 |
self.currentBox.width = self.startPoint.x - pos.x + 1 |
|
216 |
if pos.y >= self.startPoint.y: |
|
217 |
self.currentBox.y = self.startPoint.y |
|
218 |
self.currentBox.height = pos.y - self.startPoint.y + 1 |
|
219 |
else: |
|
220 |
self.currentBox.y = pos.y |
|
221 |
self.currentBox.height = self.startPoint.y - pos.y + 1 |
|
222 |
self.Redraw() |
|
223 |
||
224 |
# Method called when dragging is stopped |
|
27 | 225 |
def OnLeftUp(self, event, dc, scaling): |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
226 |
self.drawingSurface.SetCursor(wx.NullCursor) |
0 | 227 |
self.lastBox = self.currentBox |
228 |
self.currentBox = None |
|
229 |
self.Redraw() |
|
230 |
||
231 |
# Method that erase the last box and draw the new box |
|
232 |
def Redraw(self): |
|
27 | 233 |
dc = self.drawingSurface.GetLogicalDC() |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
234 |
dc.SetPen(wx.Pen(wx.WHITE, 1, wx.DOT)) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
235 |
dc.SetBrush(wx.TRANSPARENT_BRUSH) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
236 |
dc.SetLogicalFunction(wx.XOR) |
0 | 237 |
if self.lastBox: |
238 |
# Erase last box |
|
239 |
dc.DrawRectangle(self.lastBox.x, self.lastBox.y, self.lastBox.width, |
|
240 |
self.lastBox.height) |
|
241 |
if self.currentBox: |
|
242 |
# Draw current box |
|
243 |
dc.DrawRectangle(self.currentBox.x, self.currentBox.y, self.currentBox.width, |
|
244 |
self.currentBox.height) |
|
245 |
||
27 | 246 |
# Erase last box |
247 |
def Erase(self): |
|
248 |
dc = self.drawingSurface.GetLogicalDC() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
249 |
dc.SetPen(wx.Pen(wx.WHITE, 1, wx.DOT)) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
250 |
dc.SetBrush(wx.TRANSPARENT_BRUSH) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
251 |
dc.SetLogicalFunction(wx.XOR) |
27 | 252 |
if self.lastBox: |
253 |
dc.DrawRectangle(self.lastBox.x, self.lastBox.y, self.lastBox.width, |
|
254 |
self.lastBox.height) |
|
255 |
||
256 |
# Draw current box |
|
257 |
def Draw(self): |
|
258 |
dc = self.drawingSurface.GetLogicalDC() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
259 |
dc.SetPen(wx.Pen(wx.WHITE, 1, wx.DOT)) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
260 |
dc.SetBrush(wx.TRANSPARENT_BRUSH) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
261 |
dc.SetLogicalFunction(wx.XOR) |
27 | 262 |
if self.currentBox: |
263 |
# Draw current box |
|
264 |
dc.DrawRectangle(self.currentBox.x, self.currentBox.y, self.currentBox.width, |
|
265 |
self.currentBox.height) |
|
266 |
||
0 | 267 |
|
268 |
#------------------------------------------------------------------------------- |
|
269 |
# Graphic element base class |
|
270 |
#------------------------------------------------------------------------------- |
|
271 |
||
272 |
""" |
|
273 |
Class that implements a generic graphic element |
|
274 |
""" |
|
275 |
||
276 |
class Graphic_Element: |
|
277 |
||
278 |
# Create a new graphic element |
|
279 |
def __init__(self, parent, id = None): |
|
280 |
self.Parent = parent |
|
281 |
self.Id = id |
|
282 |
self.oldPos = None |
|
283 |
self.Handle = False |
|
284 |
self.Dragging = False |
|
285 |
self.Selected = False |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
286 |
self.Pos = wx.Point(0, 0) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
287 |
self.Size = wx.Size(0, 0) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
288 |
self.BoundingBox = wx.Rect(0, 0, 0, 0) |
58 | 289 |
self.CurrentCursor = 0 |
290 |
ResetCursors() |
|
0 | 291 |
|
292 |
# Make a clone of this element |
|
293 |
def Clone(self): |
|
294 |
return Graphic_Element(self.Parent, self.Id) |
|
295 |
||
296 |
# Changes the block position |
|
297 |
def SetPosition(self, x, y): |
|
298 |
self.Pos.x = x |
|
299 |
self.Pos.y = y |
|
300 |
self.RefreshConnected() |
|
301 |
self.RefreshBoundingBox() |
|
302 |
||
303 |
# Returns the block position |
|
304 |
def GetPosition(self): |
|
305 |
return self.Pos.x, self.Pos.y |
|
306 |
||
307 |
# Changes the element size |
|
308 |
def SetSize(self, width, height): |
|
309 |
self.Size.SetWidth(width) |
|
310 |
self.Size.SetHeight(height) |
|
311 |
self.RefreshConnectors() |
|
312 |
self.RefreshBoundingBox() |
|
313 |
||
314 |
# Returns the element size |
|
315 |
def GetSize(self): |
|
316 |
return self.Size.GetWidth(), self.Size.GetHeight() |
|
317 |
||
318 |
# Refresh the element Bounding Box |
|
319 |
def RefreshBoundingBox(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
320 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0], self.Size[1]) |
0 | 321 |
|
322 |
# Refresh the element connectors position |
|
323 |
def RefreshConnectors(self): |
|
324 |
pass |
|
325 |
||
326 |
# Refresh the position of wires connected to element inputs and outputs |
|
327 |
def RefreshConnected(self): |
|
328 |
pass |
|
329 |
||
330 |
# Change the parent |
|
331 |
def SetParent(self, parent): |
|
332 |
self.Parent = parent |
|
333 |
||
334 |
# Override this method for defining the method to call for deleting this element |
|
335 |
def Delete(self): |
|
336 |
pass |
|
337 |
||
338 |
# Returns the Id |
|
339 |
def GetId(self): |
|
340 |
return self.Id |
|
341 |
||
342 |
# Returns if the point given is in the bounding box |
|
343 |
def HitTest(self, pt): |
|
344 |
rect = self.BoundingBox |
|
345 |
return rect.InsideXY(pt.x, pt.y) |
|
346 |
||
42 | 347 |
# Returns if the point given is in the bounding box |
348 |
def IsInSelection(self, rect): |
|
349 |
return rect.InsideXY(self.BoundingBox.x, self.BoundingBox.y) and rect.InsideXY(self.BoundingBox.x + self.BoundingBox.width, self.BoundingBox.y + self.BoundingBox.height) |
|
350 |
||
0 | 351 |
# Override this method for refreshing the bounding box |
352 |
def RefreshBoundingBox(self): |
|
353 |
pass |
|
354 |
||
355 |
# Returns the bounding box |
|
356 |
def GetBoundingBox(self): |
|
357 |
return self.BoundingBox |
|
358 |
||
359 |
# Change the variable that indicates if this element is selected |
|
360 |
def SetSelected(self, selected): |
|
361 |
self.Selected = selected |
|
362 |
||
363 |
# Test if the point is on a handle of this element |
|
364 |
def TestHandle(self, pt): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
365 |
extern_rect = wx.Rect(self.BoundingBox.x - HANDLE_SIZE - 2, self.BoundingBox.y - HANDLE_SIZE - 2, |
58 | 366 |
self.BoundingBox.width + 2 * HANDLE_SIZE + 4, self.BoundingBox.height + 2 * HANDLE_SIZE + 4) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
367 |
intern_rect = wx.Rect(self.BoundingBox.x - 2, self.BoundingBox.y - 2, |
58 | 368 |
self.BoundingBox.width + 4, self.BoundingBox.height + 4) |
0 | 369 |
# Verify that this element is selected |
58 | 370 |
if self.Selected and extern_rect.InsideXY(pt.x, pt.y) and not intern_rect.InsideXY(pt.x, pt.y): |
0 | 371 |
# Find if point is on a handle horizontally |
372 |
if self.BoundingBox.x - HANDLE_SIZE - 2 <= pt.x < self.BoundingBox.x - 2: |
|
373 |
handle_x = 1 |
|
374 |
elif self.BoundingBox.x + (self.BoundingBox.width - HANDLE_SIZE) / 2 <= pt.x < self.BoundingBox.x + (self.BoundingBox.width + HANDLE_SIZE) / 2: |
|
375 |
handle_x = 2 |
|
376 |
elif self.BoundingBox.x + self.BoundingBox.width + 2 <= pt.x < self.BoundingBox.x + self.BoundingBox.width + HANDLE_SIZE + 2: |
|
377 |
handle_x = 3 |
|
378 |
else: |
|
379 |
handle_x = 0 |
|
380 |
# Find if point is on a handle vertically |
|
381 |
if self.BoundingBox.y - HANDLE_SIZE - 2 <= pt.y < self.BoundingBox.y - 2: |
|
382 |
handle_y = 1 |
|
383 |
elif self.BoundingBox.y + (self.BoundingBox.height - HANDLE_SIZE) / 2 <= pt.y < self.BoundingBox.y + (self.BoundingBox.height + HANDLE_SIZE) / 2: |
|
384 |
handle_y = 2 |
|
385 |
elif self.BoundingBox.y + self.BoundingBox.height - 2 <= pt.y < self.BoundingBox.y + self.BoundingBox.height + HANDLE_SIZE + 2: |
|
386 |
handle_y = 3 |
|
387 |
else: |
|
388 |
handle_y = 0 |
|
389 |
# Verify that the result is valid |
|
390 |
if (handle_x, handle_y) in VALID_HANDLES: |
|
391 |
return handle_x, handle_y |
|
392 |
return 0, 0 |
|
393 |
||
394 |
# Method called when a LeftDown event have been generated |
|
27 | 395 |
def OnLeftDown(self, event, dc, scaling): |
396 |
pos = event.GetLogicalPosition(dc) |
|
0 | 397 |
# Test if an handle have been clicked |
58 | 398 |
handle = self.TestHandle(pos) |
0 | 399 |
# Find which type of handle have been clicked, |
400 |
# Save a resize event and change the cursor |
|
58 | 401 |
cursor = HANDLE_CURSORS.get(handle, 1) |
402 |
if cursor != self.CurrentCursor: |
|
403 |
self.Parent.SetCursor(CURSORS[cursor]) |
|
404 |
self.CurrentCursor = cursor |
|
405 |
if cursor > 1: |
|
406 |
self.Handle = (HANDLE_RESIZE, handle) |
|
0 | 407 |
else: |
408 |
self.Handle = (HANDLE_MOVE, None) |
|
409 |
self.SetSelected(False) |
|
410 |
# Initializes the last position |
|
27 | 411 |
self.oldPos = GetScaledEventPosition(event, dc, scaling) |
0 | 412 |
|
413 |
# Method called when a LeftUp event have been generated |
|
27 | 414 |
def OnLeftUp(self, event, dc, scaling): |
0 | 415 |
# If a dragging have been initiated |
416 |
if self.Dragging and self.oldPos: |
|
417 |
# Calculate the movement of cursor and refreshes the element state |
|
27 | 418 |
pos = GetScaledEventPosition(event, dc, scaling) |
0 | 419 |
movex = pos.x - self.oldPos.x |
420 |
movey = pos.y - self.oldPos.y |
|
421 |
self.ProcessDragging(movex, movey) |
|
422 |
self.RefreshModel() |
|
56
7187e1c00975
Adding support for Undo/Redo and Unsaved File On Close detection
lbessard
parents:
42
diff
changeset
|
423 |
self.Parent.RefreshBuffer() |
58 | 424 |
if self.CurrentCursor != 0: |
425 |
self.Parent.SetCursor(CURSORS[0]) |
|
426 |
self.CurrentCursor = 0 |
|
0 | 427 |
self.SetSelected(True) |
428 |
self.oldPos = None |
|
429 |
||
430 |
# Method called when a RightUp event have been generated |
|
27 | 431 |
def OnRightUp(self, event, dc, scaling): |
0 | 432 |
self.SetSelected(True) |
433 |
self.oldPos = None |
|
434 |
||
435 |
# Method called when a LeftDClick event have been generated |
|
27 | 436 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 437 |
pass |
438 |
||
439 |
# Method called when a Motion event have been generated |
|
27 | 440 |
def OnMotion(self, event, dc, scaling): |
0 | 441 |
# If the cursor is dragging and the element have been clicked |
442 |
if event.Dragging() and self.oldPos: |
|
443 |
# Calculate the movement of cursor |
|
27 | 444 |
pos = GetScaledEventPosition(event, dc, scaling) |
0 | 445 |
movex = pos.x - self.oldPos.x |
446 |
movey = pos.y - self.oldPos.y |
|
447 |
# If movement is greater than MIN_MOVE then a dragging is initiated |
|
448 |
if not self.Dragging and (abs(movex) > MIN_MOVE or abs(movey) > MIN_MOVE): |
|
449 |
self.Dragging = True |
|
450 |
# If a dragging have been initiated, refreshes the element state |
|
451 |
if self.Dragging: |
|
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
452 |
self.oldPos = pos |
0 | 453 |
self.ProcessDragging(movex, movey) |
454 |
# If cursor just pass over the element, changes the cursor if it is on a handle |
|
455 |
else: |
|
27 | 456 |
pos = event.GetLogicalPosition(dc) |
0 | 457 |
handle = self.TestHandle(pos) |
58 | 458 |
# Find which type of handle have been clicked, |
459 |
# Save a resize event and change the cursor |
|
460 |
cursor = HANDLE_CURSORS.get(handle, 0) |
|
461 |
if cursor != self.CurrentCursor: |
|
462 |
self.Parent.SetCursor(CURSORS[cursor]) |
|
463 |
self.CurrentCursor = cursor |
|
464 |
||
0 | 465 |
# Moves the element |
466 |
def Move(self, dx, dy, exclude = []): |
|
467 |
self.Pos.x += dx |
|
468 |
self.Pos.y += dy |
|
469 |
self.RefreshConnected(exclude) |
|
470 |
self.RefreshBoundingBox() |
|
471 |
||
472 |
# Resizes the element from position and size given |
|
473 |
def Resize(self, x, y, width, height): |
|
474 |
self.Move(x, y) |
|
475 |
self.SetSize(width, height) |
|
476 |
||
477 |
# Refreshes the element state according to move defined and handle selected |
|
478 |
def ProcessDragging(self, movex, movey): |
|
479 |
handle_type, handle = self.Handle |
|
480 |
# If it is a resize handle, calculate the values from resizing |
|
481 |
if handle_type == HANDLE_RESIZE: |
|
482 |
x, y = 0, 0 |
|
483 |
width, height = self.GetSize() |
|
484 |
if handle[0] == 1: |
|
485 |
x = movex |
|
486 |
width -= movex |
|
487 |
elif handle[0] == 3: |
|
488 |
width += movex |
|
489 |
if handle[1] == 1: |
|
490 |
y = movey |
|
491 |
height -= movey |
|
492 |
elif handle[1] == 3: |
|
493 |
height += movey |
|
494 |
# Verify that new size is not lesser than minimum |
|
495 |
min_width, min_height = self.GetMinSize() |
|
496 |
if width >= min_width and height >= min_height: |
|
497 |
self.Resize(x, y, width, height) |
|
498 |
# If it is a move handle, Move this element |
|
499 |
elif handle_type == HANDLE_MOVE: |
|
500 |
self.Move(movex, movey) |
|
501 |
||
502 |
# Override this method for defining the method to call for refreshing the model of this element |
|
503 |
def RefreshModel(self, move=True): |
|
504 |
pass |
|
505 |
||
506 |
# Draws the handles of this element if it is selected |
|
507 |
def Draw(self, dc): |
|
508 |
if self.Selected: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
509 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
510 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 511 |
dc.DrawRectangle(self.BoundingBox.x - HANDLE_SIZE - 2, self.BoundingBox.y - HANDLE_SIZE - 2, HANDLE_SIZE, HANDLE_SIZE) |
512 |
dc.DrawRectangle(self.BoundingBox.x + (self.BoundingBox.width - HANDLE_SIZE) / 2, |
|
513 |
self.BoundingBox.y - HANDLE_SIZE - 2, HANDLE_SIZE, HANDLE_SIZE) |
|
514 |
dc.DrawRectangle(self.BoundingBox.x + self.BoundingBox.width + 2, |
|
515 |
self.BoundingBox.y - HANDLE_SIZE - 2, HANDLE_SIZE, HANDLE_SIZE) |
|
516 |
dc.DrawRectangle(self.BoundingBox.x + self.BoundingBox.width + 2, |
|
517 |
self.BoundingBox.y + (self.BoundingBox.height - HANDLE_SIZE) / 2, HANDLE_SIZE, HANDLE_SIZE) |
|
518 |
dc.DrawRectangle(self.BoundingBox.x + self.BoundingBox.width + 2, |
|
519 |
self.BoundingBox.y + self.BoundingBox.height + 2, HANDLE_SIZE, HANDLE_SIZE) |
|
520 |
dc.DrawRectangle(self.BoundingBox.x + (self.BoundingBox.width - HANDLE_SIZE) / 2, |
|
521 |
self.BoundingBox.y + self.BoundingBox.height + 2, HANDLE_SIZE, HANDLE_SIZE) |
|
522 |
dc.DrawRectangle(self.BoundingBox.x - HANDLE_SIZE - 2, self.BoundingBox.y + self.BoundingBox.height + 2, HANDLE_SIZE, HANDLE_SIZE) |
|
523 |
dc.DrawRectangle(self.BoundingBox.x - HANDLE_SIZE - 2, self.BoundingBox.y + (self.BoundingBox.height - HANDLE_SIZE) / 2, HANDLE_SIZE, HANDLE_SIZE) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
524 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 525 |
|
526 |
||
527 |
#------------------------------------------------------------------------------- |
|
528 |
# Group of graphic elements |
|
529 |
#------------------------------------------------------------------------------- |
|
530 |
||
531 |
""" |
|
532 |
Class that implements a group of graphic elements |
|
533 |
""" |
|
534 |
||
535 |
class Graphic_Group(Graphic_Element): |
|
536 |
||
537 |
# Create a new group of graphic elements |
|
538 |
def __init__(self, parent): |
|
539 |
Graphic_Element.__init__(self, parent) |
|
540 |
self.Elements = [] |
|
42 | 541 |
self.RefreshWireExclusion() |
0 | 542 |
self.RefreshBoundingBox() |
543 |
||
544 |
# Destructor |
|
545 |
def __del__(self): |
|
546 |
self.Elements = [] |
|
547 |
||
42 | 548 |
# Refresh the list of wire excluded |
549 |
def RefreshWireExclusion(self): |
|
550 |
self.WireExcluded = [] |
|
551 |
for element in self.Elements: |
|
552 |
if isinstance(element, Wire): |
|
553 |
startblock = element.StartConnected.GetParentBlock() |
|
554 |
endblock = element.EndConnected.GetParentBlock() |
|
555 |
if startblock in self.Elements and endblock in self.Elements: |
|
556 |
self.WireExcluded.append(element) |
|
557 |
||
0 | 558 |
# Make a clone of this group |
559 |
def Clone(self): |
|
560 |
clone = Graphic_Group(self.Parent) |
|
561 |
elements = [] |
|
562 |
# Makes a clone of all the elements in this group |
|
563 |
for element in self.Elements: |
|
564 |
elements.append(element.Clone()) |
|
565 |
clone.SetElements(elements) |
|
566 |
return clone |
|
567 |
||
568 |
# Clean this group of elements |
|
569 |
def Clean(self): |
|
570 |
# Clean all the elements of the group |
|
571 |
for element in self.Elements: |
|
572 |
element.Clean() |
|
573 |
||
574 |
# Delete this group of elements |
|
575 |
def Delete(self): |
|
576 |
# Delete all the elements of the group |
|
577 |
for element in self.Elements: |
|
578 |
element.Delete() |
|
42 | 579 |
self.WireExcluded = [] |
0 | 580 |
|
581 |
# Returns if the point given is in the bounding box of one of the elements of this group |
|
582 |
def HitTest(self, pt): |
|
583 |
result = False |
|
584 |
for element in self.Elements: |
|
585 |
result |= element.HitTest(pt) |
|
586 |
return result |
|
587 |
||
588 |
# Returns if the element given is in this group |
|
589 |
def IsElementIn(self, element): |
|
590 |
return element in self.Elements |
|
591 |
||
592 |
# Change the elements of the group |
|
593 |
def SetElements(self, elements): |
|
594 |
self.Elements = elements |
|
42 | 595 |
self.RefreshWireExclusion() |
0 | 596 |
self.RefreshBoundingBox() |
597 |
||
598 |
# Returns the elements of the group |
|
599 |
def GetElements(self): |
|
600 |
return self.Elements |
|
601 |
||
602 |
# Remove or select the given element if it is or not in the group |
|
603 |
def SelectElement(self, element): |
|
604 |
if element in self.Elements: |
|
605 |
self.Elements.remove(element) |
|
606 |
else: |
|
607 |
self.Elements.append(element) |
|
42 | 608 |
self.RefreshWireExclusion() |
0 | 609 |
self.RefreshBoundingBox() |
610 |
||
611 |
# Move this group of elements |
|
612 |
def Move(self, movex, movey): |
|
613 |
# Move all the elements of the group |
|
614 |
for element in self.Elements: |
|
42 | 615 |
if not isinstance(element, Wire): |
616 |
element.Move(movex, movey, self.WireExcluded) |
|
617 |
elif element in self.WireExcluded: |
|
0 | 618 |
element.Move(movex, movey, True) |
619 |
self.RefreshBoundingBox() |
|
620 |
||
621 |
# Refreshes the bounding box of this group of elements |
|
622 |
def RefreshBoundingBox(self): |
|
623 |
if len(self.Elements) > 0: |
|
624 |
bbox = self.Elements[0].GetBoundingBox() |
|
625 |
minx, miny = bbox.x, bbox.y |
|
626 |
maxx = bbox.x + bbox.width |
|
627 |
maxy = bbox.y + bbox.height |
|
628 |
for element in self.Elements[1:]: |
|
629 |
bbox = element.GetBoundingBox() |
|
630 |
minx = min(minx, bbox.x) |
|
631 |
miny = min(miny, bbox.y) |
|
632 |
maxx = max(maxx, bbox.x + bbox.width) |
|
633 |
maxy = max(maxy, bbox.y + bbox.height) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
634 |
self.BoundingBox = wx.Rect(minx, miny, maxx - minx, maxy - miny) |
0 | 635 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
636 |
self.BoundingBox = wx.Rect(0, 0, 0, 0) |
0 | 637 |
|
638 |
# Forbids to change the group position |
|
639 |
def SetPosition(x, y): |
|
640 |
pass |
|
641 |
||
642 |
# Returns the position of this group |
|
643 |
def GetPosition(self): |
|
644 |
return self.BoundingBox.x, self.BoundingBox.y |
|
645 |
||
646 |
# Forbids to change the group size |
|
647 |
def SetSize(width, height): |
|
648 |
pass |
|
649 |
||
650 |
# Returns the size of this group |
|
651 |
def GetSize(self): |
|
652 |
return self.BoundingBox.width, self.BoundingBox.height |
|
653 |
||
654 |
# Change the variable that indicates if the elemente is selected |
|
655 |
def SetSelected(self, selected): |
|
656 |
for element in self.Elements: |
|
657 |
element.SetSelected(selected) |
|
658 |
||
659 |
# Refreshes the model of all the elements of this group |
|
660 |
def RefreshModel(self): |
|
661 |
for element in self.Elements: |
|
662 |
element.RefreshModel() |
|
663 |
||
664 |
||
665 |
#------------------------------------------------------------------------------- |
|
666 |
# Connector for all types of blocks |
|
667 |
#------------------------------------------------------------------------------- |
|
668 |
||
669 |
""" |
|
670 |
Class that implements a connector for any type of block |
|
671 |
""" |
|
672 |
||
673 |
class Connector: |
|
674 |
||
675 |
# Create a new connector |
|
27 | 676 |
def __init__(self, parent, name, type, position, direction, negated = False, edge = "none", onlyone = False): |
0 | 677 |
self.ParentBlock = parent |
678 |
self.Name = name |
|
679 |
self.Type = type |
|
680 |
self.Pos = position |
|
681 |
self.Direction = direction |
|
682 |
self.Wires = [] |
|
683 |
self.Negated = negated |
|
684 |
self.Edge = edge |
|
27 | 685 |
self.OneConnected = onlyone |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
686 |
self.Pen = wx.BLACK_PEN |
42 | 687 |
self.RefreshNameSize() |
0 | 688 |
|
689 |
# Change the connector pen |
|
690 |
def SetPen(self, pen): |
|
691 |
self.Pen = pen |
|
692 |
||
693 |
# Make a clone of the connector |
|
694 |
def Clone(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
695 |
return Connector(self.ParentBlock, self.Name, self.Type, wx.Point(self.Pos[0], self.Pos[1]), |
0 | 696 |
self.Direction, self.Negated) |
697 |
||
698 |
# Returns the connector parent block |
|
699 |
def GetParentBlock(self): |
|
700 |
return self.ParentBlock |
|
701 |
||
702 |
# Returns the connector name |
|
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
703 |
def GetType(self): |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
704 |
return self.Type |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
705 |
|
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
706 |
# Changes the connector name |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
707 |
def SetType(self, type): |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
708 |
self.Type = type |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
709 |
|
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
710 |
# Returns the connector name |
0 | 711 |
def GetName(self): |
712 |
return self.Name |
|
713 |
||
714 |
# Changes the connector name |
|
715 |
def SetName(self, name): |
|
716 |
self.Name = name |
|
42 | 717 |
self.RefreshNameSize() |
718 |
||
719 |
# Changes the connector name size |
|
720 |
def RefreshNameSize(self): |
|
721 |
if self.Name != "": |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
722 |
dc = wx.ClientDC(self.ParentBlock.Parent) |
42 | 723 |
self.NameSize = dc.GetTextExtent(self.Name) |
724 |
else: |
|
725 |
self.NameSize = 0, 0 |
|
726 |
||
727 |
# Returns the connector name size |
|
728 |
def GetNameSize(self): |
|
729 |
return self.NameSize |
|
0 | 730 |
|
731 |
# Returns the wires connected to the connector |
|
732 |
def GetWires(self): |
|
733 |
return self.Wires |
|
734 |
||
735 |
# Returns the parent block Id |
|
736 |
def GetBlockId(self): |
|
737 |
return self.ParentBlock.GetId() |
|
738 |
||
739 |
# Returns the connector relative position |
|
740 |
def GetRelPosition(self): |
|
741 |
return self.Pos |
|
742 |
||
743 |
# Returns the connector absolute position |
|
744 |
def GetPosition(self, size = True): |
|
745 |
parent_pos = self.ParentBlock.GetPosition() |
|
746 |
# If the position of the end of the connector is asked |
|
747 |
if size: |
|
748 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE |
|
749 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE |
|
750 |
else: |
|
751 |
x = parent_pos[0] + self.Pos.x |
|
752 |
y = parent_pos[1] + self.Pos.y |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
753 |
return wx.Point(x, y) |
0 | 754 |
|
755 |
# Change the connector relative position |
|
756 |
def SetPosition(self, pos): |
|
757 |
self.Pos = pos |
|
758 |
||
759 |
# Returns the connector direction |
|
760 |
def GetDirection(self): |
|
761 |
return self.Direction |
|
762 |
||
763 |
# Change the connector direction |
|
764 |
def SetDirection(self, direction): |
|
765 |
self.Direction = direction |
|
766 |
||
767 |
# Connect a wire to this connector at the last place |
|
768 |
def Connect(self, wire, refresh = True): |
|
769 |
self.InsertConnect(len(self.Wires), wire, refresh) |
|
770 |
||
771 |
# Connect a wire to this connector at the place given |
|
772 |
def InsertConnect(self, idx, wire, refresh = True): |
|
773 |
if wire not in self.Wires: |
|
774 |
self.Wires.insert(idx, wire) |
|
775 |
if refresh: |
|
776 |
self.ParentBlock.RefreshModel(False) |
|
777 |
||
778 |
# Returns the index of the wire given in the list of connected |
|
779 |
def GetWireIndex(self, wire): |
|
780 |
for i, (tmp_wire, handle) in enumerate(self.Wires): |
|
781 |
if tmp_wire == wire: |
|
782 |
return i |
|
783 |
return None |
|
784 |
||
785 |
# Unconnect a wire or all wires connected to the connector |
|
2 | 786 |
def UnConnect(self, wire = None, unconnect = True, delete = False): |
0 | 787 |
i = 0 |
788 |
found = False |
|
789 |
while i < len(self.Wires) and not found: |
|
790 |
if not wire or self.Wires[i][0] == wire: |
|
791 |
# If Unconnect haven't been called from a wire, disconnect the connector in the wire |
|
792 |
if unconnect: |
|
793 |
if self.Wires[i][1] == 0: |
|
2 | 794 |
self.Wires[i][0].UnConnectStartPoint(delete) |
0 | 795 |
else: |
2 | 796 |
self.Wires[i][0].UnConnectEndPoint(delete) |
0 | 797 |
# Remove wire from connected |
798 |
if wire: |
|
799 |
self.Wires.pop(i) |
|
800 |
found = True |
|
801 |
i += 1 |
|
802 |
# If no wire defined, unconnect all wires |
|
803 |
if not wire: |
|
804 |
self.Wires = [] |
|
805 |
self.ParentBlock.RefreshModel(False) |
|
806 |
||
807 |
# Returns if connector has one or more wire connected |
|
808 |
def IsConnected(self): |
|
809 |
return len(self.Wires) > 0 |
|
810 |
||
811 |
# Move the wires connected |
|
812 |
def MoveConnected(self, exclude = []): |
|
813 |
if len(self.Wires) > 0: |
|
814 |
# Calculate the new position of the end point |
|
815 |
parent_pos = self.ParentBlock.GetPosition() |
|
816 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE |
|
817 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE |
|
818 |
# Move the corresponding point on all the wires connected |
|
819 |
for wire, index in self.Wires: |
|
820 |
if wire not in exclude: |
|
821 |
if index == 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
822 |
wire.MoveStartPoint(wx.Point(x, y)) |
0 | 823 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
824 |
wire.MoveEndPoint(wx.Point(x, y)) |
0 | 825 |
|
826 |
# Refreshes the model of all the wires connected |
|
827 |
def RefreshWires(self): |
|
828 |
for wire in self.Wires: |
|
829 |
wire[0].RefreshModel() |
|
830 |
||
831 |
# Refreshes the parent block model |
|
832 |
def RefreshParentBlock(self): |
|
833 |
self.ParentBlock.RefreshModel(False) |
|
834 |
||
27 | 835 |
# Returns all the blocks connected to this connector |
836 |
def GetConnectedBlocks(self): |
|
837 |
blocks = [] |
|
838 |
for wire, handle in self.Wires: |
|
839 |
# Get other connector connected to each wire |
|
840 |
if handle == 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
841 |
connector = wire.GetEndConnected() |
27 | 842 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
843 |
connector = wire.GetStartConnected() |
27 | 844 |
# Get parent block for this connector |
845 |
if connector: |
|
846 |
block = connector.GetParentBlock() |
|
847 |
if block not in blocks: |
|
848 |
blocks.append(block) |
|
849 |
return blocks |
|
850 |
||
0 | 851 |
# Returns the connector negated property |
852 |
def IsNegated(self): |
|
853 |
return self.Negated |
|
854 |
||
855 |
# Changes the connector negated property |
|
856 |
def SetNegated(self, negated): |
|
857 |
self.Negated = negated |
|
858 |
self.Edge = "none" |
|
859 |
||
860 |
# Returns the connector edge property |
|
861 |
def GetEdge(self): |
|
862 |
return self.Edge |
|
863 |
||
864 |
# Changes the connector edge property |
|
865 |
def SetEdge(self, edge): |
|
866 |
self.Edge = edge |
|
867 |
self.Negated = False |
|
868 |
||
869 |
# Tests if the point given is near from the end point of this connector |
|
870 |
def TestPoint(self, pt, exclude = True): |
|
871 |
parent_pos = self.ParentBlock.GetPosition() |
|
27 | 872 |
if not (len(self.Wires) > 0 and self.OneConnected and exclude): |
0 | 873 |
# Calculate a square around the end point of this connector |
874 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE - ANCHOR_DISTANCE |
|
875 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE - ANCHOR_DISTANCE |
|
876 |
width = ANCHOR_DISTANCE * 2 + abs(self.Direction[0]) * CONNECTOR_SIZE |
|
877 |
height = ANCHOR_DISTANCE * 2 + abs(self.Direction[1]) * CONNECTOR_SIZE |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
878 |
rect = wx.Rect(x, y, width, height) |
0 | 879 |
return rect.InsideXY(pt.x, pt.y) |
880 |
return False |
|
881 |
||
882 |
# Draws the connector |
|
883 |
def Draw(self, dc): |
|
884 |
dc.SetPen(self.Pen) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
885 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 886 |
parent_pos = self.ParentBlock.GetPosition() |
887 |
if self.Negated: |
|
888 |
# If connector is negated, draw a circle |
|
889 |
xcenter = parent_pos[0] + self.Pos.x + (CONNECTOR_SIZE * self.Direction[0]) / 2 |
|
890 |
ycenter = parent_pos[1] + self.Pos.y + (CONNECTOR_SIZE * self.Direction[1]) / 2 |
|
891 |
dc.DrawCircle(xcenter, ycenter, CONNECTOR_SIZE / 2) |
|
892 |
else: |
|
893 |
xstart = parent_pos[0] + self.Pos.x |
|
894 |
ystart = parent_pos[1] + self.Pos.y |
|
895 |
if self.Edge == "rising": |
|
896 |
# If connector has a rising edge, draw a right arrow |
|
897 |
dc.DrawLine(xstart, ystart, xstart - 4, ystart - 4) |
|
898 |
dc.DrawLine(xstart, ystart, xstart - 4, ystart + 4) |
|
899 |
elif self.Edge == "falling": |
|
900 |
# If connector has a falling edge, draw a left arrow |
|
901 |
dc.DrawLine(xstart, ystart, xstart + 4, ystart - 4) |
|
902 |
dc.DrawLine(xstart, ystart, xstart + 4, ystart + 4) |
|
903 |
xend = xstart + CONNECTOR_SIZE * self.Direction[0] |
|
904 |
yend = ystart + CONNECTOR_SIZE * self.Direction[1] |
|
905 |
dc.DrawLine(xstart + self.Direction[0], ystart + self.Direction[1], xend, yend) |
|
906 |
if self.Direction[0] != 0: |
|
42 | 907 |
ytext = parent_pos[1] + self.Pos.y - self.NameSize[1] / 2 |
0 | 908 |
if self.Direction[0] < 0: |
909 |
xtext = parent_pos[0] + self.Pos.x + 5 |
|
910 |
else: |
|
42 | 911 |
xtext = parent_pos[0] + self.Pos.x - (self.NameSize[0] + 5) |
0 | 912 |
if self.Direction[1] != 0: |
42 | 913 |
xtext = parent_pos[0] + self.Pos.x - self.NameSize[0] / 2 |
0 | 914 |
if self.Direction[1] < 0: |
915 |
ytext = parent_pos[1] + self.Pos.y + 5 |
|
916 |
else: |
|
42 | 917 |
ytext = parent_pos[1] + self.Pos.y - (self.NameSize[1] + 5) |
0 | 918 |
# Draw the text |
919 |
dc.DrawText(self.Name, xtext, ytext) |
|
920 |
||
921 |
||
922 |
#------------------------------------------------------------------------------- |
|
923 |
# Common Wire Element |
|
924 |
#------------------------------------------------------------------------------- |
|
925 |
||
926 |
""" |
|
927 |
Class that implements a wire for connecting two blocks |
|
928 |
""" |
|
929 |
||
930 |
class Wire(Graphic_Element): |
|
931 |
||
932 |
# Create a new wire |
|
933 |
def __init__(self, parent, start = None, end = None): |
|
934 |
Graphic_Element.__init__(self, parent) |
|
935 |
self.StartPoint = start |
|
936 |
self.EndPoint = end |
|
937 |
self.StartConnected = None |
|
938 |
self.EndConnected = None |
|
939 |
# If the start and end points are defined, calculate the wire |
|
940 |
if start and end: |
|
941 |
self.ResetPoints() |
|
942 |
self.GeneratePoints() |
|
943 |
else: |
|
944 |
self.Points = [] |
|
945 |
self.Segments = [] |
|
946 |
self.SelectedSegment = None |
|
947 |
self.OverStart = False |
|
948 |
self.OverEnd = False |
|
949 |
||
950 |
# Destructor of a wire |
|
951 |
def __del__(self): |
|
952 |
self.StartConnected = None |
|
953 |
self.EndConnected = None |
|
954 |
||
955 |
# Forbids to change the wire position |
|
956 |
def SetPosition(x, y): |
|
957 |
pass |
|
958 |
||
959 |
# Forbids to change the wire size |
|
960 |
def SetSize(width, height): |
|
961 |
pass |
|
962 |
||
27 | 963 |
# Returns connector to which start point is connected |
964 |
def GetStartConnected(self): |
|
965 |
return self.StartConnected |
|
966 |
||
967 |
# Returns connector to which end point is connected |
|
968 |
def GetEndConnected(self): |
|
969 |
return self.EndConnected |
|
970 |
||
0 | 971 |
# Unconnect the start and end points |
972 |
def Clean(self): |
|
973 |
if self.StartConnected: |
|
974 |
self.UnConnectStartPoint() |
|
975 |
if self.EndConnected: |
|
976 |
self.UnConnectEndPoint() |
|
977 |
||
978 |
# Delete this wire by calling the corresponding method |
|
979 |
def Delete(self): |
|
980 |
self.Parent.DeleteWire(self) |
|
981 |
||
982 |
# Select a segment and not the whole wire. It's useful for Ladder Diagram |
|
983 |
def SetSelectedSegment(self, segment): |
|
984 |
# The last segment is indicated |
|
985 |
if segment == -1: |
|
986 |
segment = len(self.Segments) - 1 |
|
987 |
# The selected segment is reinitialised |
|
988 |
if segment == None: |
|
989 |
if self.StartConnected: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
990 |
self.StartConnected.SetPen(wx.BLACK_PEN) |
0 | 991 |
if self.EndConnected: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
992 |
self.EndConnected.SetPen(wx.BLACK_PEN) |
0 | 993 |
# The segment selected is the first |
994 |
elif segment == 0: |
|
995 |
if self.StartConnected: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
996 |
self.StartConnected.SetPen(wx.RED_PEN) |
0 | 997 |
if self.EndConnected: |
998 |
# There is only one segment |
|
999 |
if len(self.Segments) == 1: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1000 |
self.EndConnected.SetPen(wx.RED_PEN) |
0 | 1001 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1002 |
self.EndConnected.SetPen(wx.BLACK_PEN) |
0 | 1003 |
# The segment selected is the last |
1004 |
elif segment == len(self.Segments) - 1: |
|
1005 |
if self.StartConnected: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1006 |
self.StartConnected.SetPen(wx.BLACK_PEN) |
0 | 1007 |
if self.EndConnected: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1008 |
self.EndConnected.SetPen(wx.RED_PEN) |
0 | 1009 |
self.SelectedSegment = segment |
1010 |
||
1011 |
# Reinitialize the wire points |
|
1012 |
def ResetPoints(self): |
|
1013 |
if self.StartPoint and self.EndPoint: |
|
1014 |
self.Points = [self.StartPoint[0], self.EndPoint[0]] |
|
1015 |
self.Segments = [self.StartPoint[1]] |
|
1016 |
else: |
|
1017 |
self.Points = [] |
|
1018 |
self.Segments = [] |
|
1019 |
||
1020 |
# Refresh the wire bounding box |
|
1021 |
def RefreshBoundingBox(self): |
|
1022 |
if len(self.Points) > 0: |
|
1023 |
# If startpoint or endpoint is connected, save the point radius |
|
1024 |
start_radius = end_radius = 0 |
|
1025 |
if not self.StartConnected: |
|
1026 |
start_radius = POINT_RADIUS |
|
1027 |
if not self.EndConnected: |
|
1028 |
end_radius = POINT_RADIUS |
|
1029 |
# Initialize minimum and maximum from the first point |
|
1030 |
minx, minbbxx = self.Points[0].x, self.Points[0].x - start_radius |
|
1031 |
maxx, maxbbxx = self.Points[0].x, self.Points[0].x + start_radius |
|
1032 |
miny, minbbxy = self.Points[0].y, self.Points[0].y - start_radius |
|
1033 |
maxy, maxbbxy = self.Points[0].y, self.Points[0].y + start_radius |
|
1034 |
# Actualize minimum and maximum with the other points |
|
1035 |
for point in self.Points[1:-1]: |
|
1036 |
minx, minbbxx = min(minx, point.x), min(minbbxx, point.x) |
|
1037 |
maxx, maxbbxx = max(maxx, point.x), max(maxbbxx, point.x) |
|
1038 |
miny, minbbxy = min(miny, point.y), min(minbbxy, point.y) |
|
1039 |
maxy, maxbbxy = max(maxy, point.y), max(maxbbxy, point.y) |
|
1040 |
if len(self.Points) > 1: |
|
1041 |
minx, minbbxx = min(minx, self.Points[-1].x), min(minbbxx, self.Points[-1].x - end_radius) |
|
1042 |
maxx, maxbbxx = max(maxx, self.Points[-1].x), max(maxbbxx, self.Points[-1].x + end_radius) |
|
1043 |
miny, minbbxy = min(miny, self.Points[-1].y), min(minbbxy, self.Points[-1].y - end_radius) |
|
1044 |
maxy, maxbbxy = max(maxy, self.Points[-1].y), max(maxbbxy, self.Points[-1].y + end_radius) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1045 |
self.Pos = wx.Point(minx, miny) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1046 |
self.Size = wx.Size(maxx -minx + 1, maxy - miny + 1) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1047 |
self.BoundingBox = wx.Rect(minbbxx, minbbxy, maxbbxx - minbbxx + 1, maxbbxy - minbbxy + 1) |
0 | 1048 |
|
1049 |
# Refresh the realpoints that permits to keep the proportionality in wire during resizing |
|
1050 |
def RefreshRealPoints(self): |
|
1051 |
if len(self.Points) > 0: |
|
1052 |
self.RealPoints = [] |
|
1053 |
# Calculate float relative position of each point with the minimum point |
|
1054 |
for point in self.Points: |
|
1055 |
self.RealPoints.append([float(point.x - self.Pos.x), float(point.y - self.Pos.y)]) |
|
1056 |
||
1057 |
# Returns the wire minimum size |
|
1058 |
def GetMinSize(self): |
|
1059 |
width = 1 |
|
1060 |
height = 1 |
|
1061 |
dir_product = product(self.StartPoint[1], self.EndPoint[1]) |
|
1062 |
# The directions are opposed |
|
1063 |
if dir_product < 0: |
|
1064 |
if self.StartPoint[0] != 0: |
|
1065 |
width = MIN_SEGMENT_SIZE * 2 |
|
1066 |
if self.StartPoint[1] != 0: |
|
1067 |
height = MIN_SEGMENT_SIZE * 2 |
|
1068 |
# The directions are the same |
|
1069 |
elif dir_product > 0: |
|
1070 |
if self.StartPoint[0] != 0: |
|
1071 |
width = MIN_SEGMENT_SIZE |
|
1072 |
if self.StartPoint[1] != 0: |
|
1073 |
height = MIN_SEGMENT_SIZE |
|
1074 |
# The directions are perpendiculars |
|
1075 |
else: |
|
1076 |
width = MIN_SEGMENT_SIZE |
|
1077 |
height = MIN_SEGMENT_SIZE |
|
1078 |
return width + 1, height + 1 |
|
1079 |
||
1080 |
# Returns if the point given is on one of the wire segments |
|
1081 |
def HitTest(self, pt): |
|
1082 |
test = False |
|
1083 |
for i in xrange(len(self.Points) - 1): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1084 |
rect = wx.Rect(0, 0, 0, 0) |
0 | 1085 |
x1, y1 = self.Points[i].x, self.Points[i].y |
1086 |
x2, y2 = self.Points[i + 1].x, self.Points[i + 1].y |
|
1087 |
# Calculate a rectangle around the segment |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1088 |
rect = wx.Rect(min(x1, x2) - ANCHOR_DISTANCE, min(y1, y2) - ANCHOR_DISTANCE, |
0 | 1089 |
abs(x1 - x2) + 2 * ANCHOR_DISTANCE, abs(y1 - y2) + 2 * ANCHOR_DISTANCE) |
1090 |
test |= rect.InsideXY(pt.x, pt.y) |
|
1091 |
return test |
|
1092 |
||
1093 |
# Returns the wire start or end point if the point given is on one of them |
|
1094 |
def TestPoint(self, pt): |
|
1095 |
# Test the wire start point |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1096 |
rect = wx.Rect(self.Points[0].x - ANCHOR_DISTANCE, self.Points[0].y - ANCHOR_DISTANCE, |
0 | 1097 |
2 * ANCHOR_DISTANCE, 2 * ANCHOR_DISTANCE) |
1098 |
if rect.InsideXY(pt.x, pt.y): |
|
1099 |
return 0 |
|
1100 |
# Test the wire end point |
|
1101 |
if len(self.Points) > 1: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1102 |
rect = wx.Rect(self.Points[-1].x - ANCHOR_DISTANCE, self.Points[-1].y - ANCHOR_DISTANCE, |
0 | 1103 |
2 * ANCHOR_DISTANCE, 2 * ANCHOR_DISTANCE) |
1104 |
if rect.InsideXY(pt.x, pt.y): |
|
1105 |
return -1 |
|
1106 |
return None |
|
1107 |
||
1108 |
# Returns the wire segment if the point given is on it |
|
1109 |
def TestSegment(self, pt, all=False): |
|
1110 |
for i in xrange(len(self.Segments)): |
|
1111 |
# If wire is not in a Ladder Diagram, first and last segments are excluded |
|
1112 |
if 0 < i < len(self.Segments) - 1 or all: |
|
1113 |
x1, y1 = self.Points[i].x, self.Points[i].y |
|
1114 |
x2, y2 = self.Points[i + 1].x, self.Points[i + 1].y |
|
1115 |
# Calculate a rectangle around the segment |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1116 |
rect = wx.Rect(min(x1, x2) - ANCHOR_DISTANCE, min(y1, y2) - ANCHOR_DISTANCE, |
0 | 1117 |
abs(x1 - x2) + 2 * ANCHOR_DISTANCE, abs(y1 - y2) + 2 * ANCHOR_DISTANCE) |
1118 |
if rect.InsideXY(pt.x, pt.y): |
|
1119 |
return i, self.Segments[i] |
|
1120 |
return None |
|
1121 |
||
1122 |
# Define the wire points |
|
1123 |
def SetPoints(self, points): |
|
1124 |
if len(points) > 1: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1125 |
self.Points = [wx.Point(x, y) for x, y in points] |
0 | 1126 |
# Calculate the start and end directions |
1127 |
self.StartPoint = [None, vector(self.Points[0], self.Points[1])] |
|
1128 |
self.EndPoint = [None, vector(self.Points[-1], self.Points[-2])] |
|
1129 |
# Calculate the start and end points |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1130 |
self.StartPoint[0] = wx.Point(self.Points[0].x + CONNECTOR_SIZE * self.StartPoint[1][0], |
0 | 1131 |
self.Points[0].y + CONNECTOR_SIZE * self.StartPoint[1][1]) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1132 |
self.EndPoint[0] = wx.Point(self.Points[-1].x + CONNECTOR_SIZE * self.EndPoint[1][0], |
0 | 1133 |
self.Points[-1].y + CONNECTOR_SIZE * self.EndPoint[1][1]) |
1134 |
self.Points[0] = self.StartPoint[0] |
|
1135 |
self.Points[-1] = self.EndPoint[0] |
|
1136 |
# Calculate the segments directions |
|
1137 |
self.Segments = [] |
|
1138 |
for i in xrange(len(self.Points) - 1): |
|
1139 |
self.Segments.append(vector(self.Points[i], self.Points[i + 1])) |
|
1140 |
self.RefreshBoundingBox() |
|
1141 |
self.RefreshRealPoints() |
|
1142 |
||
1143 |
# Returns the position of the point indicated |
|
1144 |
def GetPoint(self, index): |
|
1145 |
if index < len(self.Points): |
|
1146 |
return self.Points[index].x, self.Points[index].y |
|
1147 |
return None |
|
1148 |
||
1149 |
# Returns a list of the position of all wire points |
|
1150 |
def GetPoints(self, invert = False): |
|
1151 |
points = self.VerifyPoints() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1152 |
points[0] = wx.Point(points[0].x - CONNECTOR_SIZE * self.StartPoint[1][0], |
0 | 1153 |
points[0].y - CONNECTOR_SIZE * self.StartPoint[1][1]) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1154 |
points[-1] = wx.Point(points[-1].x - CONNECTOR_SIZE * self.EndPoint[1][0], |
0 | 1155 |
points[-1].y - CONNECTOR_SIZE * self.EndPoint[1][1]) |
1156 |
# An inversion of the list is asked |
|
1157 |
if invert: |
|
1158 |
points.reverse() |
|
1159 |
return points |
|
1160 |
||
1161 |
# Returns the position of the two selected segment points |
|
1162 |
def GetSelectedSegmentPoints(self): |
|
1163 |
if self.SelectedSegment != None and len(self.Points) > 1: |
|
1164 |
return self.Points[self.SelectedSegment:self.SelectedSegment + 2] |
|
1165 |
return [] |
|
1166 |
||
1167 |
# Returns if the selected segment is the first and/or the last of the wire |
|
1168 |
def GetSelectedSegmentConnections(self): |
|
1169 |
if self.SelectedSegment != None and len(self.Points) > 1: |
|
1170 |
return self.SelectedSegment == 0, self.SelectedSegment == len(self.Segments) - 1 |
|
1171 |
return (True, True) |
|
1172 |
||
1173 |
# Returns the connectors on which the wire is connected |
|
1174 |
def GetConnected(self): |
|
1175 |
connected = [] |
|
1176 |
if self.StartConnected and self.StartPoint[1] == WEST: |
|
1177 |
connected.append(self.StartConnected) |
|
1178 |
if self.EndConnected and self.EndPoint[1] == WEST: |
|
1179 |
connected.append(self.EndConnected) |
|
1180 |
return connected |
|
1181 |
||
1182 |
# Returns the id of the block connected to the first or the last wire point |
|
27 | 1183 |
def GetConnectedInfos(self, index): |
0 | 1184 |
if index == 0 and self.StartConnected: |
27 | 1185 |
return self.StartConnected.GetBlockId(), self.StartConnected.GetName() |
0 | 1186 |
elif index == -1 and self.EndConnected: |
42 | 1187 |
return self.EndConnected.GetBlockId(), self.EndConnected.GetName() |
0 | 1188 |
return None |
1189 |
||
1190 |
# Update the wire points position by keeping at most possible the current positions |
|
1191 |
def GeneratePoints(self, realpoints = True): |
|
1192 |
i = 0 |
|
1193 |
# Calculate the start enad end points with the minimum segment size in the right direction |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1194 |
end = wx.Point(self.EndPoint[0].x + self.EndPoint[1][0] * MIN_SEGMENT_SIZE, |
0 | 1195 |
self.EndPoint[0].y + self.EndPoint[1][1] * MIN_SEGMENT_SIZE) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1196 |
start = wx.Point(self.StartPoint[0].x + self.StartPoint[1][0] * MIN_SEGMENT_SIZE, |
0 | 1197 |
self.StartPoint[0].y + self.StartPoint[1][1] * MIN_SEGMENT_SIZE) |
1198 |
# Evaluate the point till it's the last |
|
1199 |
while i < len(self.Points) - 1: |
|
1200 |
# The next point is the last |
|
1201 |
if i + 1 == len(self.Points) - 1: |
|
1202 |
# Calculate the direction from current point to end point |
|
1203 |
v_end = vector(self.Points[i], end) |
|
1204 |
# The current point is the first |
|
1205 |
if i == 0: |
|
1206 |
# If the end point is not in the start direction, a point is added |
|
1207 |
if v_end != self.Segments[0] or v_end == self.EndPoint[1]: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1208 |
self.Points.insert(1, wx.Point(start.x, start.y)) |
0 | 1209 |
self.Segments.insert(1, DirectionChoice((self.Segments[0][1], |
1210 |
self.Segments[0][0]), v_end, self.EndPoint[1])) |
|
1211 |
# The current point is the second |
|
1212 |
elif i == 1: |
|
1213 |
# The previous direction and the target direction are mainly opposed, a point is added |
|
1214 |
if product(v_end, self.Segments[0]) < 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1215 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
0 | 1216 |
self.Segments.insert(2, DirectionChoice((self.Segments[1][1], |
1217 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
|
1218 |
# The previous direction and the end direction are the same or they are |
|
1219 |
# perpendiculars and the end direction points towards current segment |
|
1220 |
elif product(self.Segments[0], self.EndPoint[1]) >= 0 and product(self.Segments[1], self.EndPoint[1]) <= 0: |
|
1221 |
# Current point and end point are aligned |
|
1222 |
if self.Segments[0][0] != 0: |
|
1223 |
self.Points[1].x = end.x |
|
1224 |
if self.Segments[0][1] != 0: |
|
1225 |
self.Points[1].y = end.y |
|
1226 |
# If the previous direction and the end direction are the same, a point is added |
|
1227 |
if product(self.Segments[0], self.EndPoint[1]) > 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1228 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
0 | 1229 |
self.Segments.insert(2, DirectionChoice((self.Segments[1][1], |
1230 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
|
1231 |
else: |
|
1232 |
# Current point is positioned in the middle of start point |
|
1233 |
# and end point on the current direction and a point is added |
|
1234 |
if self.Segments[0][0] != 0: |
|
1235 |
self.Points[1].x = (end.x + start.x) / 2 |
|
1236 |
if self.Segments[0][1] != 0: |
|
1237 |
self.Points[1].y = (end.y + start.y) / 2 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1238 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
0 | 1239 |
self.Segments.insert(2, DirectionChoice((self.Segments[1][1], |
1240 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
|
1241 |
else: |
|
1242 |
# The previous direction and the end direction are perpendiculars |
|
1243 |
if product(self.Segments[i - 1], self.EndPoint[1]) == 0: |
|
1244 |
# The target direction and the end direction aren't mainly the same |
|
1245 |
if product(v_end, self.EndPoint[1]) <= 0: |
|
1246 |
# Current point and end point are aligned |
|
1247 |
if self.Segments[i - 1][0] != 0: |
|
1248 |
self.Points[i].x = end.x |
|
1249 |
if self.Segments[i - 1][1] != 0: |
|
1250 |
self.Points[i].y = end.y |
|
1251 |
# Previous direction is updated from the new point |
|
1252 |
if product(vector(self.Points[i - 1], self.Points[i]), self.Segments[i - 1]) < 0: |
|
1253 |
self.Segments[i - 1] = (-self.Segments[i - 1][0], -self.Segments[i - 1][1]) |
|
1254 |
else: |
|
1255 |
test = True |
|
1256 |
# If the current point is the third, test if the second |
|
1257 |
# point can be aligned with the end point |
|
1258 |
if i == 2: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1259 |
test_point = wx.Point(self.Points[1].x, self.Points[1].y) |
0 | 1260 |
if self.Segments[1][0] != 0: |
1261 |
test_point.y = end.y |
|
1262 |
if self.Segments[1][1] != 0: |
|
1263 |
test_point.x = end.x |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1264 |
vector_test = vector(self.Points[0], test_point, False) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1265 |
test = norm(vector_test) > MIN_SEGMENT_SIZE and product(self.Segments[0], vector_test) > 0 |
0 | 1266 |
# The previous point can be aligned |
1267 |
if test: |
|
1268 |
self.Points[i].x, self.Points[i].y = end.x, end.y |
|
1269 |
if self.Segments[i - 1][0] != 0: |
|
1270 |
self.Points[i - 1].y = end.y |
|
1271 |
if self.Segments[i - 1][1] != 0: |
|
1272 |
self.Points[i - 1].x = end.x |
|
1273 |
self.Segments[i] = (-self.EndPoint[1][0], -self.EndPoint[1][1]) |
|
1274 |
else: |
|
1275 |
# Current point is positioned in the middle of previous point |
|
1276 |
# and end point on the current direction and a point is added |
|
1277 |
if self.Segments[1][0] != 0: |
|
1278 |
self.Points[2].x = (self.Points[1].x + end.x) / 2 |
|
1279 |
if self.Segments[1][1] != 0: |
|
1280 |
self.Points[2].y = (self.Points[1].y + end.y) / 2 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1281 |
self.Points.insert(3, wx.Point(self.Points[2].x, self.Points[2].y)) |
0 | 1282 |
self.Segments.insert(3, DirectionChoice((self.Segments[2][1], |
1283 |
self.Segments[2][0]), v_end, self.EndPoint[1])) |
|
1284 |
else: |
|
1285 |
# Current point is aligned with end point |
|
1286 |
if self.Segments[i - 1][0] != 0: |
|
1287 |
self.Points[i].x = end.x |
|
1288 |
if self.Segments[i - 1][1] != 0: |
|
1289 |
self.Points[i].y = end.y |
|
1290 |
# Previous direction is updated from the new point |
|
1291 |
if product(vector(self.Points[i - 1], self.Points[i]), self.Segments[i - 1]) < 0: |
|
1292 |
self.Segments[i - 1] = (-self.Segments[i - 1][0], -self.Segments[i - 1][1]) |
|
1293 |
# If previous direction and end direction are opposed |
|
1294 |
if product(self.Segments[i - 1], self.EndPoint[1]) < 0: |
|
1295 |
# Current point is positioned in the middle of previous point |
|
1296 |
# and end point on the current direction |
|
1297 |
if self.Segments[i - 1][0] != 0: |
|
1298 |
self.Points[i].x = (end.x + self.Points[i - 1].x) / 2 |
|
1299 |
if self.Segments[i - 1][1] != 0: |
|
1300 |
self.Points[i].y = (end.y + self.Points[i - 1].y) / 2 |
|
1301 |
# A point is added |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1302 |
self.Points.insert(i + 1, wx.Point(self.Points[i].x, self.Points[i].y)) |
0 | 1303 |
self.Segments.insert(i + 1, DirectionChoice((self.Segments[i][1], |
1304 |
self.Segments[i][0]), v_end, self.EndPoint[1])) |
|
1305 |
else: |
|
1306 |
# Current point is the first, and second is not mainly in the first direction |
|
1307 |
if i == 0 and product(vector(start, self.Points[1]), self.Segments[0]) < 0: |
|
1308 |
# If first and second directions aren't perpendiculars, a point is added |
|
1309 |
if product(self.Segments[0], self.Segments[1]) != 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1310 |
self.Points.insert(1, wx.Point(start.x, start.y)) |
0 | 1311 |
self.Segments.insert(1, DirectionChoice((self.Segments[0][1], |
1312 |
self.Segments[0][0]), vector(start, self.Points[1]), self.Segments[1])) |
|
1313 |
else: |
|
1314 |
self.Points[1].x, self.Points[1].y = start.x, start.y |
|
1315 |
else: |
|
1316 |
# Next point is aligned with current point |
|
1317 |
if self.Segments[i][0] != 0: |
|
1318 |
self.Points[i + 1].y = self.Points[i].y |
|
1319 |
if self.Segments[i][1] != 0: |
|
1320 |
self.Points[i + 1].x = self.Points[i].x |
|
1321 |
# Current direction is updated from the new point |
|
1322 |
if product(vector(self.Points[i], self.Points[i + 1]), self.Segments[i]) < 0: |
|
1323 |
self.Segments[i] = (-self.Segments[i][0], -self.Segments[i][1]) |
|
1324 |
i += 1 |
|
1325 |
self.RefreshBoundingBox() |
|
1326 |
if realpoints: |
|
1327 |
self.RefreshRealPoints() |
|
1328 |
||
1329 |
# Verify that two consecutive points haven't the same position |
|
1330 |
def VerifyPoints(self): |
|
1331 |
points = [point for point in self.Points] |
|
1332 |
segments = [segment for segment in self.Segments] |
|
1333 |
i = 1 |
|
1334 |
while i < len(points) - 1: |
|
1335 |
if points[i] == points[i + 1] and segments[i - 1] == segments[i + 1]: |
|
1336 |
for j in xrange(2): |
|
1337 |
points.pop(i) |
|
1338 |
segments.pop(i) |
|
1339 |
else: |
|
1340 |
i += 1 |
|
1341 |
# If the wire isn't in a Ladder Diagram, save the new point list |
|
1342 |
if self.Parent.__class__.__name__ != "LD_Viewer": |
|
1343 |
self.Points = [point for point in points] |
|
1344 |
self.Segments = [segment for segment in segments] |
|
1345 |
self.RefreshBoundingBox() |
|
1346 |
self.RefreshRealPoints() |
|
1347 |
return points |
|
1348 |
||
1349 |
# Moves all the wire points except the first and the last if they are connected |
|
1350 |
def Move(self, dx, dy, endpoints = False): |
|
1351 |
for i, point in enumerate(self.Points): |
|
1352 |
if endpoints or not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
1353 |
point.x += dx |
|
1354 |
point.y += dy |
|
1355 |
self.StartPoint[0] = self.Points[0] |
|
1356 |
self.EndPoint[0] = self.Points[-1] |
|
1357 |
self.GeneratePoints() |
|
1358 |
||
1359 |
# Resize the wire from position and size given |
|
1360 |
def Resize(self, x, y, width, height): |
|
1361 |
if len(self.Points) > 1: |
|
1362 |
# Calculate the new position of each point for testing the new size |
|
1363 |
minx, miny = self.Pos.x, self.Pos.y |
|
1364 |
lastwidth, lastheight = self.Size.width, self.Size.height |
|
1365 |
for i, point in enumerate(self.RealPoints): |
|
1366 |
# If start or end point is connected, it's not calculate |
|
1367 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
1368 |
if i == 0: |
|
1369 |
dir = self.StartPoint[1] |
|
1370 |
elif i == len(self.Points) - 1: |
|
1371 |
dir = self.EndPoint[1] |
|
1372 |
else: |
|
1373 |
dir = (0, 0) |
|
1374 |
pointx = max(-dir[0] * MIN_SEGMENT_SIZE, min(int(round(point[0] * (width - 1) / float(lastwidth - 1))), |
|
1375 |
width - dir[0] * MIN_SEGMENT_SIZE - 1)) |
|
1376 |
pointy = max(-dir[1] * MIN_SEGMENT_SIZE, min(int(round(point[1] * (height - 1) / float(lastheight - 1))), |
|
1377 |
height - dir[1] * MIN_SEGMENT_SIZE - 1)) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1378 |
self.Points[i] = wx.Point(minx + x + pointx, miny + y + pointy) |
0 | 1379 |
self.StartPoint[0] = self.Points[0] |
1380 |
self.EndPoint[0] = self.Points[-1] |
|
1381 |
self.GeneratePoints(False) |
|
1382 |
# Test if the wire position or size have changed |
|
1383 |
if x != 0 and minx == self.Pos.x: |
|
1384 |
x = 0 |
|
1385 |
width = lastwidth |
|
1386 |
if y != 0 and miny == self.Pos.y: |
|
1387 |
y = 0 |
|
1388 |
height = lastwidth |
|
1389 |
if width != lastwidth and lastwidth == self.Size.width: |
|
1390 |
width = lastwidth |
|
1391 |
if height != lastheight and lastheight == self.Size.height: |
|
1392 |
height = lastheight |
|
1393 |
# Calculate the real points from the new size, it's important for |
|
1394 |
# keeping a proportionality in the points position with the size |
|
1395 |
# duringa resize dragging |
|
1396 |
for i, point in enumerate(self.RealPoints): |
|
1397 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
1398 |
point[0] = point[0] * (width - 1) / float(lastwidth - 1) |
|
1399 |
point[1] = point[1] * (height - 1) / float(lastheight - 1) |
|
1400 |
# Calculate the correct position of the points from real points |
|
1401 |
for i, point in enumerate(self.RealPoints): |
|
1402 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
1403 |
if i == 0: |
|
1404 |
dir = self.StartPoint[1] |
|
1405 |
elif i == len(self.Points) - 1: |
|
1406 |
dir = self.EndPoint[1] |
|
1407 |
else: |
|
1408 |
dir = (0, 0) |
|
1409 |
realpointx = max(-dir[0] * MIN_SEGMENT_SIZE, min(int(round(point[0])), |
|
1410 |
width - dir[0] * MIN_SEGMENT_SIZE - 1)) |
|
1411 |
realpointy = max(-dir[1] * MIN_SEGMENT_SIZE, min(int(round(point[1])), |
|
1412 |
height - dir[1] * MIN_SEGMENT_SIZE - 1)) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1413 |
self.Points[i] = wx.Point(minx + x + realpointx, miny + y + realpointy) |
0 | 1414 |
self.StartPoint[0] = self.Points[0] |
1415 |
self.EndPoint[0] = self.Points[-1] |
|
1416 |
self.GeneratePoints(False) |
|
1417 |
||
1418 |
# Moves the wire start point and update the wire points |
|
1419 |
def MoveStartPoint(self, point): |
|
1420 |
if len(self.Points) > 1: |
|
1421 |
self.StartPoint[0] = point |
|
1422 |
self.Points[0] = point |
|
1423 |
self.GeneratePoints() |
|
1424 |
||
1425 |
# Changes the wire start direction and update the wire points |
|
1426 |
def SetStartPointDirection(self, dir): |
|
1427 |
if len(self.Points) > 1: |
|
1428 |
self.StartPoint[1] = dir |
|
1429 |
self.Segments[0] = dir |
|
1430 |
self.GeneratePoints() |
|
1431 |
||
1432 |
# Rotates the wire start direction by an angle of 90 degrees anticlockwise |
|
1433 |
def RotateStartPoint(self): |
|
1434 |
self.SetStartPointDirection((self.StartPoint[1][1], -self.StartPoint[1][0])) |
|
1435 |
||
1436 |
# Connects wire start point to the connector given and moves wire start point |
|
1437 |
# to given point |
|
1438 |
def ConnectStartPoint(self, point, connector): |
|
1439 |
if point: |
|
1440 |
self.MoveStartPoint(point) |
|
1441 |
self.StartConnected = connector |
|
1442 |
||
1443 |
# Unconnects wire start point |
|
2 | 1444 |
def UnConnectStartPoint(self, delete = False): |
1445 |
if delete: |
|
60 | 1446 |
self.StartConnected = None |
2 | 1447 |
self.Delete() |
60 | 1448 |
elif self.StartConnected: |
1449 |
self.StartConnected.UnConnect(self, unconnect = False) |
|
2 | 1450 |
self.StartConnected = None |
0 | 1451 |
|
1452 |
# Moves the wire end point and update the wire points |
|
1453 |
def MoveEndPoint(self, point): |
|
1454 |
if len(self.Points) > 1: |
|
1455 |
self.EndPoint[0] = point |
|
1456 |
self.Points[-1] = point |
|
1457 |
self.GeneratePoints() |
|
1458 |
||
1459 |
# Changes the wire end direction and update the wire points |
|
1460 |
def SetEndPointDirection(self, dir): |
|
1461 |
if len(self.Points) > 1: |
|
1462 |
self.EndPoint[1] = dir |
|
1463 |
self.GeneratePoints() |
|
1464 |
||
1465 |
# Rotates the wire end direction by an angle of 90 degrees anticlockwise |
|
1466 |
def RotateEndPoint(self): |
|
1467 |
self.SetEndPointDirection((self.EndPoint[1][1], -self.EndPoint[1][0])) |
|
1468 |
||
1469 |
# Connects wire end point to the connector given and moves wire end point |
|
1470 |
# to given point |
|
1471 |
def ConnectEndPoint(self, point, connector): |
|
1472 |
if point: |
|
1473 |
self.MoveEndPoint(point) |
|
1474 |
self.EndConnected = connector |
|
1475 |
||
1476 |
# Unconnects wire end point |
|
2 | 1477 |
def UnConnectEndPoint(self, delete = False): |
1478 |
if delete: |
|
60 | 1479 |
self.EndConnected = None |
2 | 1480 |
self.Delete() |
60 | 1481 |
elif self.EndConnected: |
1482 |
self.EndConnected.UnConnect(self, unconnect = False) |
|
2 | 1483 |
self.EndConnected = None |
0 | 1484 |
|
1485 |
# Moves the wire segment given by its index |
|
1486 |
def MoveSegment(self, idx, movex, movey): |
|
1487 |
if 0 < idx < len(self.Segments) - 1: |
|
1488 |
if self.Segments[idx] in (NORTH, SOUTH): |
|
1489 |
self.Points[idx].x += movex |
|
1490 |
self.Points[idx + 1].x += movex |
|
1491 |
elif self.Segments[idx] in (EAST, WEST): |
|
1492 |
self.Points[idx].y += movey |
|
1493 |
self.Points[idx + 1].y += movey |
|
1494 |
self.GeneratePoints() |
|
1495 |
||
1496 |
# Adds two points in the middle of the handled segment |
|
1497 |
def AddSegment(self): |
|
1498 |
handle_type, handle = self.Handle |
|
1499 |
if handle_type == HANDLE_SEGMENT: |
|
1500 |
segment, dir = handle |
|
1501 |
pointx = self.Points[segment].x |
|
1502 |
pointy = self.Points[segment].y |
|
1503 |
if dir[0] != 0: |
|
1504 |
pointx = (self.Points[segment].x + self.Points[segment + 1].x) / 2 |
|
1505 |
if dir[1] != 0: |
|
1506 |
pointy = (self.Points[segment].y + self.Points[segment + 1].y) / 2 |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1507 |
self.Points.insert(segment + 1, wx.Point(pointx, pointy)) |
0 | 1508 |
self.Segments.insert(segment + 1, (dir[1], dir[0])) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1509 |
self.Points.insert(segment + 2, wx.Point(pointx, pointy)) |
0 | 1510 |
self.Segments.insert(segment + 2, dir) |
1511 |
self.GeneratePoints() |
|
1512 |
||
1513 |
# Delete the handled segment by removing the two segment points |
|
1514 |
def DeleteSegment(self): |
|
1515 |
handle_type, handle = self.Handle |
|
1516 |
if handle_type == HANDLE_SEGMENT: |
|
1517 |
segment, dir = handle |
|
1518 |
for i in xrange(2): |
|
1519 |
self.Points.pop(segment) |
|
1520 |
self.Segments.pop(segment) |
|
1521 |
self.GeneratePoints() |
|
1522 |
self.RefreshModel() |
|
1523 |
||
1524 |
# Method called when a LeftDown event have been generated |
|
27 | 1525 |
def OnLeftDown(self, event, dc, scaling): |
1526 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 1527 |
# Test if a point have been handled |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1528 |
#result = self.TestPoint(pos) |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1529 |
#if result != None: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1530 |
# self.Handle = (HANDLE_POINT, result) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1531 |
# self.Parent.SetCursor(wx.StockCursor(wx.CURSOR_HAND)) |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1532 |
#else: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1533 |
# Test if a segment have been handled |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1534 |
result = self.TestSegment(pos) |
0 | 1535 |
if result != None: |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1536 |
if result[1] in (NORTH, SOUTH): |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1537 |
self.Parent.SetCursor(wx.StockCursor(wx.CURSOR_SIZEWE)) |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1538 |
elif result[1] in (EAST, WEST): |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1539 |
self.Parent.SetCursor(wx.StockCursor(wx.CURSOR_SIZENS)) |
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1540 |
self.Handle = (HANDLE_SEGMENT, result) |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1541 |
# Execute the default method for a graphic element |
0 | 1542 |
else: |
27 | 1543 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
0 | 1544 |
self.oldPos = pos |
1545 |
||
1546 |
# Method called when a RightUp event have been generated |
|
27 | 1547 |
def OnRightUp(self, event, dc, scaling): |
1548 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 1549 |
# Test if a segment has been handled |
1550 |
result = self.TestSegment(pos) |
|
1551 |
if result != None: |
|
1552 |
self.Handle = (HANDLE_SEGMENT, result) |
|
1553 |
# Popup the menu with special items for a wire |
|
1554 |
self.Parent.PopupWireMenu() |
|
1555 |
else: |
|
1556 |
# Execute the default method for a graphic element |
|
27 | 1557 |
Graphic_Element.OnRightUp(self, event, dc, scaling) |
0 | 1558 |
|
1559 |
# Method called when a LeftDClick event have been generated |
|
27 | 1560 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 1561 |
self.ResetPoints() |
1562 |
self.GeneratePoints() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1563 |
self.RefreshModel() |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1564 |
self.Parent.RefreshBuffer() |
0 | 1565 |
|
1566 |
# Method called when a Motion event have been generated |
|
27 | 1567 |
def OnMotion(self, event, dc, scaling): |
1568 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 1569 |
if not event.Dragging(): |
1570 |
# Test if a segment has been handled |
|
1571 |
result = self.TestSegment(pos) |
|
1572 |
if result: |
|
1573 |
if result[1] in (NORTH, SOUTH): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1574 |
if self.CurrentCursor != 4: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1575 |
self.CurrentCursor = 4 |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1576 |
wx.CallAfter(self.Parent.SetCursor, CURSORS[4]) |
0 | 1577 |
elif result[1] in (EAST, WEST): |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1578 |
if self.CurrentCursor != 5: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1579 |
self.CurrentCursor = 5 |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1580 |
wx.CallAfter(self.Parent.SetCursor, CURSORS[5]) |
0 | 1581 |
else: |
1582 |
# Test if a point has been handled |
|
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1583 |
#result = self.TestPoint(pos) |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1584 |
#if result != None: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1585 |
# if result == 0 and self.StartConnected: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1586 |
# self.OverStart = True |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1587 |
# elif result != 0 and self.EndConnected: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1588 |
# self.OverEnd = True |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1589 |
#else: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1590 |
# self.OverStart = False |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1591 |
# self.OverEnd = False |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1592 |
# Execute the default method for a graphic element |
27 | 1593 |
Graphic_Element.OnMotion(self, event, dc, scaling) |
0 | 1594 |
else: |
1595 |
# Execute the default method for a graphic element |
|
27 | 1596 |
Graphic_Element.OnMotion(self, event, dc, scaling) |
0 | 1597 |
|
1598 |
# Refreshes the wire state according to move defined and handle selected |
|
1599 |
def ProcessDragging(self, movex, movey): |
|
1600 |
handle_type, handle = self.Handle |
|
1601 |
# A point has been handled |
|
1602 |
if handle_type == HANDLE_POINT: |
|
1603 |
# Try to connect point to a connector |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1604 |
new_pos = wx.Point(self.Points[handle].x + movex, self.Points[handle].y + movey) |
0 | 1605 |
connector = self.Parent.FindBlockConnector(new_pos) |
1606 |
if connector: |
|
1607 |
if handle == 0 and self.EndConnected != connector: |
|
1608 |
connector.Connect((self, handle)) |
|
1609 |
self.SetStartPointDirection(connector.GetDirection()) |
|
1610 |
self.ConnectStartPoint(connector.GetPosition(), connector) |
|
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1611 |
self.oldPos = connector.GetPosition() |
0 | 1612 |
self.Dragging = False |
1613 |
elif handle != 0 and self.StartConnected != connector: |
|
1614 |
connector.Connect((self, handle)) |
|
1615 |
self.SetEndPointDirection(connector.GetDirection()) |
|
1616 |
self.ConnectEndPoint(connector.GetPosition(), connector) |
|
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1617 |
self.oldPos = connector.GetPosition() |
0 | 1618 |
self.Dragging = False |
1619 |
elif handle == 0: |
|
1620 |
self.MoveStartPoint(new_pos) |
|
1621 |
else: |
|
1622 |
self.MoveEndPoint(new_pos) |
|
1623 |
# If there is no connector, move the point |
|
1624 |
elif handle == 0: |
|
1625 |
if self.StartConnected: |
|
1626 |
self.UnConnectStartPoint() |
|
1627 |
self.MoveStartPoint(new_pos) |
|
1628 |
else: |
|
1629 |
if self.EndConnected: |
|
1630 |
self.UnConnectEndPoint() |
|
1631 |
self.MoveEndPoint(new_pos) |
|
1632 |
# A segment has been handled, move a segment |
|
1633 |
elif handle_type == HANDLE_SEGMENT: |
|
1634 |
self.MoveSegment(handle[0], movex, movey) |
|
1635 |
# Execute the default method for a graphic element |
|
1636 |
else: |
|
1637 |
Graphic_Element.ProcessDragging(self, movex, movey) |
|
1638 |
||
1639 |
# Refreshes the wire model |
|
1640 |
def RefreshModel(self, move=True): |
|
1641 |
if self.StartConnected and self.StartPoint[1] in [WEST, NORTH]: |
|
1642 |
self.StartConnected.RefreshParentBlock() |
|
1643 |
if self.EndConnected and self.EndPoint[1] in [WEST, NORTH]: |
|
1644 |
self.EndConnected.RefreshParentBlock() |
|
1645 |
||
1646 |
# Draws the wire lines and points |
|
1647 |
def Draw(self, dc): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1648 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1649 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 1650 |
# Draw the start and end points if they are not connected or the mouse is over them |
1651 |
if len(self.Points) > 0 and (not self.StartConnected or self.OverStart): |
|
1652 |
dc.DrawCircle(self.Points[0].x, self.Points[0].y, POINT_RADIUS) |
|
1653 |
if len(self.Points) > 1 and (not self.EndConnected or self.OverEnd): |
|
1654 |
dc.DrawCircle(self.Points[-1].x, self.Points[-1].y, POINT_RADIUS) |
|
1655 |
# Draw the wire lines and the last point (it seems that DrawLines stop before the last point) |
|
1656 |
dc.DrawLines(self.Points) |
|
1657 |
dc.DrawPoint(self.Points[-1].x, self.Points[-1].y) |
|
1658 |
# Draw the segment selected in red |
|
1659 |
if self.SelectedSegment != None: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1660 |
dc.SetPen(wx.RED_PEN) |
0 | 1661 |
dc.DrawLine(self.Points[self.SelectedSegment].x, self.Points[self.SelectedSegment].y, |
1662 |
self.Points[self.SelectedSegment + 1].x, self.Points[self.SelectedSegment + 1].y) |
|
1663 |
if self.SelectedSegment == len(self.Segments) - 1: |
|
1664 |
dc.DrawPoint(self.Points[-1].x, self.Points[-1].y) |
|
1665 |
Graphic_Element.Draw(self, dc) |
|
1666 |
||
1667 |
||
1668 |
#------------------------------------------------------------------------------- |
|
1669 |
# Graphic comment element |
|
1670 |
#------------------------------------------------------------------------------- |
|
1671 |
||
1672 |
""" |
|
1673 |
Class that implements a comment |
|
1674 |
""" |
|
1675 |
||
1676 |
class Comment(Graphic_Element): |
|
1677 |
||
1678 |
# Create a new comment |
|
1679 |
def __init__(self, parent, content, id = None): |
|
1680 |
Graphic_Element.__init__(self, parent) |
|
1681 |
self.Id = id |
|
1682 |
self.Content = content |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1683 |
self.Pos = wx.Point(0, 0) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1684 |
self.Size = wx.Size(0, 0) |
0 | 1685 |
|
1686 |
# Method for keeping compatibility with others |
|
1687 |
def Clean(self): |
|
1688 |
pass |
|
1689 |
||
1690 |
# Delete this comment by calling the corresponding method |
|
1691 |
def Delete(self): |
|
1692 |
self.Parent.DeleteComment(self) |
|
1693 |
||
1694 |
# Refresh the comment bounding box |
|
1695 |
def RefreshBoundingBox(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1696 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
0 | 1697 |
|
1698 |
# Changes the comment size |
|
1699 |
def SetSize(self, width, height): |
|
1700 |
self.Size.SetWidth(width) |
|
1701 |
self.Size.SetHeight(height) |
|
1702 |
self.RefreshBoundingBox() |
|
1703 |
||
1704 |
# Returns the comment size |
|
1705 |
def GetSize(self): |
|
1706 |
return self.Size.GetWidth(), self.Size.GetHeight() |
|
1707 |
||
1708 |
# Returns the comment minimum size |
|
1709 |
def GetMinSize(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1710 |
dc = wx.ClientDC(self.Parent) |
0 | 1711 |
min_width = 0 |
1712 |
min_height = 0 |
|
1713 |
# The comment minimum size is the maximum size of words in the content |
|
1714 |
for line in self.Content.splitlines(): |
|
1715 |
for word in line.split(" "): |
|
1716 |
wordwidth, wordheight = dc.GetTextExtent(word) |
|
1717 |
min_width = max(min_width, wordwidth) |
|
1718 |
min_height = max(min_height, wordheight) |
|
1719 |
return min_width + 20, min_height + 20 |
|
1720 |
||
1721 |
# Changes the comment position |
|
1722 |
def SetPosition(self, x, y): |
|
1723 |
self.Pos.x = x |
|
1724 |
self.Pos.y = y |
|
1725 |
self.RefreshBoundingBox() |
|
1726 |
||
1727 |
# Changes the comment content |
|
1728 |
def SetContent(self, content): |
|
1729 |
self.Content = content |
|
1730 |
min_width, min_height = self.GetMinSize() |
|
1731 |
self.Size[0] = max(self.Size[0], min_width) |
|
1732 |
self.Size[1] = max(self.Size[1], min_height) |
|
1733 |
self.RefreshBoundingBox() |
|
1734 |
||
1735 |
# Returns the comment content |
|
1736 |
def GetContent(self): |
|
1737 |
return self.Content |
|
1738 |
||
1739 |
# Returns the comment position |
|
1740 |
def GetPosition(self): |
|
1741 |
return self.Pos.x, self.Pos.y |
|
1742 |
||
1743 |
# Moves the comment |
|
1744 |
def Move(self, dx, dy, connected = True): |
|
1745 |
self.Pos.x += dx |
|
1746 |
self.Pos.y += dy |
|
1747 |
self.RefreshBoundingBox() |
|
1748 |
||
1749 |
# Resizes the comment with the position and the size given |
|
1750 |
def Resize(self, x, y, width, height): |
|
1751 |
self.Move(x, y) |
|
1752 |
self.SetSize(width, height) |
|
1753 |
||
1754 |
# Method called when a RightUp event have been generated |
|
27 | 1755 |
def OnRightUp(self, event, dc, scaling): |
0 | 1756 |
# Popup the default menu |
1757 |
self.Parent.PopupDefaultMenu() |
|
1758 |
||
1759 |
# Refreshes the comment model |
|
1760 |
def RefreshModel(self, move=True): |
|
1761 |
self.Parent.RefreshCommentModel(self) |
|
1762 |
||
1763 |
# Method called when a LeftDClick event have been generated |
|
27 | 1764 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 1765 |
# Edit the comment content |
1766 |
self.Parent.EditCommentContent(self) |
|
1767 |
||
1768 |
# Draws the comment and its content |
|
1769 |
def Draw(self, dc): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1770 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1771 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 1772 |
# Draws the comment shape |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1773 |
polygon = [wx.Point(self.Pos.x, self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1774 |
wx.Point(self.Pos.x + self.Size[0] - 10, self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1775 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + 10), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1776 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + self.Size[1] + 1), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1777 |
wx.Point(self.Pos.x, self.Pos.y + self.Size[1] + 1)] |
0 | 1778 |
dc.DrawPolygon(polygon) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1779 |
lines = [wx.Point(self.Pos.x + self.Size[0] - 10, self.Pos.y), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1780 |
wx.Point(self.Pos.x + self.Size[0] - 10, self.Pos.y + 10), |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1781 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + 10)] |
0 | 1782 |
dc.DrawLines(lines) |
1783 |
# Draws the comment content |
|
1784 |
y = self.Pos.y + 10 |
|
1785 |
for line in self.Content.splitlines(): |
|
1786 |
first = True |
|
1787 |
words = line.split(" ") |
|
1788 |
for i, word in enumerate(words): |
|
1789 |
if first: |
|
1790 |
test = word |
|
1791 |
else: |
|
1792 |
test = linetext + " " + word |
|
1793 |
wordwidth, wordheight = dc.GetTextExtent(test) |
|
1794 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
1795 |
break |
|
1796 |
if wordwidth < self.Size[0] - 20 and i < len(words) - 1: |
|
1797 |
linetext = test |
|
1798 |
first = False |
|
1799 |
else: |
|
1800 |
if wordwidth < self.Size[0] - 20 and i == len(words) - 1: |
|
1801 |
dc.DrawText(test, self.Pos.x + 10, y) |
|
1802 |
else: |
|
1803 |
dc.DrawText(linetext, self.Pos.x + 10, y) |
|
1804 |
if i == len(words) - 1: |
|
1805 |
y += wordheight + 5 |
|
1806 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
1807 |
break |
|
1808 |
dc.DrawText(word, self.Pos.x + 10, y) |
|
1809 |
else: |
|
1810 |
linetext = word |
|
1811 |
y += wordheight + 5 |
|
1812 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
1813 |
break |
|
1814 |
Graphic_Element.Draw(self, dc) |