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