author | etisserant |
Fri, 29 Feb 2008 11:01:03 +0100 | |
changeset 183 | 99d77995b4ea |
parent 180 | 3b0d3ea35ee5 |
child 208 | c70aefcadf66 |
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 |
|
180
3b0d3ea35ee5
Fixed bad handle initialisation, causing exception on rightup event in some cases.
etisserant
parents:
175
diff
changeset
|
292 |
self.Handle = (None,None) |
0 | 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: |
|
165 | 491 |
dragx, dragy = self.ProcessDragging(movex, movey, event.ShiftDown(), 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 |
|
175 | 521 |
def ProcessDragging(self, movex, movey, centered, scaling, width_fac = 1, height_fac = 1): |
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: |
|
175 | 525 |
if scaling is not None: |
526 |
scaling = (scaling[0] * width_fac, scaling[1] * height_fac) |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
527 |
x = y = start_x = start_y = 0 |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
528 |
width, height = start_width, start_height = self.GetSize() |
0 | 529 |
if handle[0] == 1: |
145 | 530 |
movex = max(-self.BoundingBox.x, movex) |
531 |
if scaling is not None: |
|
180
3b0d3ea35ee5
Fixed bad handle initialisation, causing exception on rightup event in some cases.
etisserant
parents:
175
diff
changeset
|
532 |
movex = -(round(float(width - movex) / float(scaling[0])) * scaling[0] - width) |
145 | 533 |
x = movex |
165 | 534 |
if centered: |
535 |
width -= 2 * movex |
|
536 |
else: |
|
537 |
width -= movex |
|
0 | 538 |
elif handle[0] == 3: |
145 | 539 |
if scaling is not None: |
180
3b0d3ea35ee5
Fixed bad handle initialisation, causing exception on rightup event in some cases.
etisserant
parents:
175
diff
changeset
|
540 |
movex = round(float(width + movex) / float(scaling[0])) * scaling[0] - width |
165 | 541 |
if centered: |
542 |
x = -movex |
|
543 |
width += 2 * movex |
|
544 |
else: |
|
545 |
width += movex |
|
0 | 546 |
if handle[1] == 1: |
145 | 547 |
movey = max(-self.BoundingBox.y, movey) |
548 |
if scaling is not None: |
|
180
3b0d3ea35ee5
Fixed bad handle initialisation, causing exception on rightup event in some cases.
etisserant
parents:
175
diff
changeset
|
549 |
movey = -(round(float(height - movey) / float(scaling[1])) * scaling[1] - height) |
145 | 550 |
y = movey |
165 | 551 |
if centered: |
552 |
height -= 2 * movey |
|
553 |
else: |
|
554 |
height -= movey |
|
0 | 555 |
elif handle[1] == 3: |
145 | 556 |
if scaling is not None: |
180
3b0d3ea35ee5
Fixed bad handle initialisation, causing exception on rightup event in some cases.
etisserant
parents:
175
diff
changeset
|
557 |
movey = round(float(height + movey) / float(scaling[1])) * scaling[1] - height |
165 | 558 |
if centered: |
559 |
y = -movey |
|
560 |
height += 2 * movey |
|
561 |
else: |
|
562 |
height += movey |
|
0 | 563 |
# Verify that new size is not lesser than minimum |
564 |
min_width, min_height = self.GetMinSize() |
|
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
565 |
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
|
566 |
start_x = x |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
567 |
start_width = width |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
568 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
569 |
movex = 0 |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
570 |
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
|
571 |
start_y = y |
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
572 |
start_height = height |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
573 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
574 |
movey = 0 |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
575 |
if movex != 0 or movey != 0: |
110
29b6b70e1721
Bug that makes element resizing acting strongly fixed
lbessard
parents:
108
diff
changeset
|
576 |
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
|
577 |
return movex, movey |
0 | 578 |
# If it is a move handle, Move this element |
579 |
elif handle_type == HANDLE_MOVE: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
580 |
movex = max(-self.BoundingBox.x, movex) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
581 |
movey = max(-self.BoundingBox.y, movey) |
145 | 582 |
if scaling is not None: |
583 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
584 |
movey = round(float(self.Pos.y + movey) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
0 | 585 |
self.Move(movex, movey) |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
586 |
return movex, movey |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
587 |
return 0, 0 |
0 | 588 |
|
589 |
# Override this method for defining the method to call for refreshing the model of this element |
|
590 |
def RefreshModel(self, move=True): |
|
591 |
pass |
|
592 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
593 |
# 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
|
594 |
def DrawHighlightment(self, dc): |
144 | 595 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR)) |
596 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
597 |
dc.SetLogicalFunction(wx.AND) |
|
598 |
dc.DrawRectangle(self.Pos.x - 2, self.Pos.y - 2, self.Size.width + 5, self.Size.height + 5) |
|
599 |
dc.SetLogicalFunction(wx.COPY) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
600 |
|
0 | 601 |
# Draws the handles of this element if it is selected |
602 |
def Draw(self, dc): |
|
144 | 603 |
if self.Highlighted: |
604 |
self.DrawHighlightment(dc) |
|
0 | 605 |
if self.Selected: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
606 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
607 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 608 |
dc.DrawRectangle(self.BoundingBox.x - HANDLE_SIZE - 2, self.BoundingBox.y - HANDLE_SIZE - 2, HANDLE_SIZE, HANDLE_SIZE) |
609 |
dc.DrawRectangle(self.BoundingBox.x + (self.BoundingBox.width - HANDLE_SIZE) / 2, |
|
610 |
self.BoundingBox.y - HANDLE_SIZE - 2, HANDLE_SIZE, HANDLE_SIZE) |
|
611 |
dc.DrawRectangle(self.BoundingBox.x + self.BoundingBox.width + 2, |
|
612 |
self.BoundingBox.y - HANDLE_SIZE - 2, HANDLE_SIZE, HANDLE_SIZE) |
|
613 |
dc.DrawRectangle(self.BoundingBox.x + self.BoundingBox.width + 2, |
|
614 |
self.BoundingBox.y + (self.BoundingBox.height - HANDLE_SIZE) / 2, HANDLE_SIZE, HANDLE_SIZE) |
|
615 |
dc.DrawRectangle(self.BoundingBox.x + self.BoundingBox.width + 2, |
|
616 |
self.BoundingBox.y + self.BoundingBox.height + 2, HANDLE_SIZE, HANDLE_SIZE) |
|
617 |
dc.DrawRectangle(self.BoundingBox.x + (self.BoundingBox.width - HANDLE_SIZE) / 2, |
|
618 |
self.BoundingBox.y + self.BoundingBox.height + 2, HANDLE_SIZE, HANDLE_SIZE) |
|
619 |
dc.DrawRectangle(self.BoundingBox.x - HANDLE_SIZE - 2, self.BoundingBox.y + self.BoundingBox.height + 2, HANDLE_SIZE, HANDLE_SIZE) |
|
620 |
dc.DrawRectangle(self.BoundingBox.x - HANDLE_SIZE - 2, self.BoundingBox.y + (self.BoundingBox.height - HANDLE_SIZE) / 2, HANDLE_SIZE, HANDLE_SIZE) |
|
621 |
||
622 |
||
623 |
#------------------------------------------------------------------------------- |
|
624 |
# Group of graphic elements |
|
625 |
#------------------------------------------------------------------------------- |
|
626 |
||
627 |
""" |
|
628 |
Class that implements a group of graphic elements |
|
629 |
""" |
|
630 |
||
631 |
class Graphic_Group(Graphic_Element): |
|
632 |
||
633 |
# Create a new group of graphic elements |
|
634 |
def __init__(self, parent): |
|
635 |
Graphic_Element.__init__(self, parent) |
|
636 |
self.Elements = [] |
|
42 | 637 |
self.RefreshWireExclusion() |
0 | 638 |
self.RefreshBoundingBox() |
639 |
||
640 |
# Destructor |
|
641 |
def __del__(self): |
|
642 |
self.Elements = [] |
|
643 |
||
42 | 644 |
# Refresh the list of wire excluded |
645 |
def RefreshWireExclusion(self): |
|
646 |
self.WireExcluded = [] |
|
647 |
for element in self.Elements: |
|
648 |
if isinstance(element, Wire): |
|
649 |
startblock = element.StartConnected.GetParentBlock() |
|
650 |
endblock = element.EndConnected.GetParentBlock() |
|
651 |
if startblock in self.Elements and endblock in self.Elements: |
|
652 |
self.WireExcluded.append(element) |
|
653 |
||
0 | 654 |
# Make a clone of this group |
162 | 655 |
def Clone(self, parent): |
656 |
clone = Graphic_Group(parent) |
|
0 | 657 |
elements = [] |
658 |
# Makes a clone of all the elements in this group |
|
659 |
for element in self.Elements: |
|
162 | 660 |
elements.append(element.Clone(parent)) |
0 | 661 |
clone.SetElements(elements) |
662 |
return clone |
|
663 |
||
144 | 664 |
# Returns the RedrawRect |
665 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
666 |
rect = None |
|
667 |
for element in self.Elements: |
|
668 |
if rect is None: |
|
669 |
rect = element.GetRedrawRect(movex, movey) |
|
670 |
else: |
|
671 |
rect = rect.Union(element.GetRedrawRect(movex, movey)) |
|
672 |
return rect |
|
673 |
||
0 | 674 |
# Clean this group of elements |
675 |
def Clean(self): |
|
676 |
# Clean all the elements of the group |
|
677 |
for element in self.Elements: |
|
678 |
element.Clean() |
|
679 |
||
680 |
# Delete this group of elements |
|
681 |
def Delete(self): |
|
682 |
# Delete all the elements of the group |
|
683 |
for element in self.Elements: |
|
684 |
element.Delete() |
|
42 | 685 |
self.WireExcluded = [] |
0 | 686 |
|
687 |
# Returns if the point given is in the bounding box of one of the elements of this group |
|
688 |
def HitTest(self, pt): |
|
689 |
result = False |
|
690 |
for element in self.Elements: |
|
691 |
result |= element.HitTest(pt) |
|
692 |
return result |
|
693 |
||
694 |
# Returns if the element given is in this group |
|
695 |
def IsElementIn(self, element): |
|
696 |
return element in self.Elements |
|
697 |
||
698 |
# Change the elements of the group |
|
699 |
def SetElements(self, elements): |
|
700 |
self.Elements = elements |
|
42 | 701 |
self.RefreshWireExclusion() |
0 | 702 |
self.RefreshBoundingBox() |
703 |
||
704 |
# Returns the elements of the group |
|
705 |
def GetElements(self): |
|
706 |
return self.Elements |
|
707 |
||
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
708 |
# Align the group elements |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
709 |
def AlignElements(self, horizontally, vertically): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
710 |
minx = self.BoundingBox.x + self.BoundingBox.width |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
711 |
miny = self.BoundingBox.y + self.BoundingBox.height |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
712 |
maxx = self.BoundingBox.x |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
713 |
maxy = self.BoundingBox.y |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
714 |
for element in self.Elements: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
715 |
if not isinstance(element, Wire): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
716 |
posx, posy = element.GetPosition() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
717 |
width, height = element.GetSize() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
718 |
minx = min(minx, posx) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
719 |
miny = min(miny, posy) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
720 |
maxx = max(maxx, posx + width) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
721 |
maxy = max(maxy, posy + height) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
722 |
for element in self.Elements: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
723 |
if not isinstance(element, Wire): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
724 |
posx, posy = element.GetPosition() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
725 |
width, height = element.GetSize() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
726 |
movex = movey = 0 |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
727 |
if horizontally == ALIGN_LEFT: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
728 |
movex = minx - posx |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
729 |
elif horizontally == ALIGN_CENTER: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
730 |
movex = (maxx + minx - width) / 2 - posx |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
731 |
elif horizontally == ALIGN_RIGHT: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
732 |
movex = maxx - width - posx |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
733 |
if vertically == ALIGN_TOP: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
734 |
movey = miny - posy |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
735 |
elif vertically == ALIGN_MIDDLE: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
736 |
movey = (maxy + miny - height) / 2 - posy |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
737 |
elif vertically == ALIGN_BOTTOM: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
738 |
movey = maxy - height - posy |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
739 |
if movex != 0 or movey != 0: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
740 |
element.Move(movex, movey) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
741 |
element.RefreshModel() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
742 |
self.RefreshWireExclusion() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
743 |
self.RefreshBoundingBox() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
744 |
|
0 | 745 |
# Remove or select the given element if it is or not in the group |
746 |
def SelectElement(self, element): |
|
747 |
if element in self.Elements: |
|
748 |
self.Elements.remove(element) |
|
749 |
else: |
|
750 |
self.Elements.append(element) |
|
42 | 751 |
self.RefreshWireExclusion() |
0 | 752 |
self.RefreshBoundingBox() |
753 |
||
754 |
# Move this group of elements |
|
755 |
def Move(self, movex, movey): |
|
756 |
# Move all the elements of the group |
|
757 |
for element in self.Elements: |
|
42 | 758 |
if not isinstance(element, Wire): |
759 |
element.Move(movex, movey, self.WireExcluded) |
|
760 |
elif element in self.WireExcluded: |
|
0 | 761 |
element.Move(movex, movey, True) |
762 |
self.RefreshBoundingBox() |
|
763 |
||
764 |
# Refreshes the bounding box of this group of elements |
|
765 |
def RefreshBoundingBox(self): |
|
766 |
if len(self.Elements) > 0: |
|
767 |
bbox = self.Elements[0].GetBoundingBox() |
|
768 |
minx, miny = bbox.x, bbox.y |
|
769 |
maxx = bbox.x + bbox.width |
|
770 |
maxy = bbox.y + bbox.height |
|
771 |
for element in self.Elements[1:]: |
|
772 |
bbox = element.GetBoundingBox() |
|
773 |
minx = min(minx, bbox.x) |
|
774 |
miny = min(miny, bbox.y) |
|
775 |
maxx = max(maxx, bbox.x + bbox.width) |
|
776 |
maxy = max(maxy, bbox.y + bbox.height) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
777 |
self.BoundingBox = wx.Rect(minx, miny, maxx - minx, maxy - miny) |
0 | 778 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
779 |
self.BoundingBox = wx.Rect(0, 0, 0, 0) |
0 | 780 |
|
781 |
# Forbids to change the group position |
|
782 |
def SetPosition(x, y): |
|
783 |
pass |
|
784 |
||
785 |
# Returns the position of this group |
|
786 |
def GetPosition(self): |
|
787 |
return self.BoundingBox.x, self.BoundingBox.y |
|
788 |
||
789 |
# Forbids to change the group size |
|
790 |
def SetSize(width, height): |
|
791 |
pass |
|
792 |
||
793 |
# Returns the size of this group |
|
794 |
def GetSize(self): |
|
795 |
return self.BoundingBox.width, self.BoundingBox.height |
|
796 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
797 |
# 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
|
798 |
def SetHighlighted(self, highlighted): |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
799 |
for element in self.Elements: |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
800 |
element.SetHighlighted(highlighted) |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
801 |
|
0 | 802 |
# Change the variable that indicates if the elemente is selected |
803 |
def SetSelected(self, selected): |
|
804 |
for element in self.Elements: |
|
805 |
element.SetSelected(selected) |
|
806 |
||
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
807 |
# 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
|
808 |
def OnRightUp(self, event, dc, scaling): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
809 |
# 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
|
810 |
self.Parent.PopupGroupMenu() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
811 |
|
0 | 812 |
# Refreshes the model of all the elements of this group |
813 |
def RefreshModel(self): |
|
814 |
for element in self.Elements: |
|
815 |
element.RefreshModel() |
|
816 |
||
817 |
||
818 |
#------------------------------------------------------------------------------- |
|
819 |
# Connector for all types of blocks |
|
820 |
#------------------------------------------------------------------------------- |
|
821 |
||
822 |
""" |
|
823 |
Class that implements a connector for any type of block |
|
824 |
""" |
|
825 |
||
826 |
class Connector: |
|
827 |
||
828 |
# Create a new connector |
|
27 | 829 |
def __init__(self, parent, name, type, position, direction, negated = False, edge = "none", onlyone = False): |
0 | 830 |
self.ParentBlock = parent |
831 |
self.Name = name |
|
832 |
self.Type = type |
|
833 |
self.Pos = position |
|
834 |
self.Direction = direction |
|
835 |
self.Wires = [] |
|
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
836 |
if IsOfType("BOOL", type): |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
837 |
self.Negated = negated |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
838 |
self.Edge = edge |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
839 |
else: |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
840 |
self.Negated = False |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
841 |
self.Edge = "none" |
27 | 842 |
self.OneConnected = onlyone |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
843 |
self.Pen = wx.BLACK_PEN |
42 | 844 |
self.RefreshNameSize() |
0 | 845 |
|
144 | 846 |
# Returns the RedrawRect |
847 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
848 |
parent_pos = self.ParentBlock.GetPosition() |
|
849 |
x = min(parent_pos[0] + self.Pos.x, parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE) |
|
850 |
y = min(parent_pos[1] + self.Pos.y, parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE) |
|
851 |
if self.Direction[0] == 0: |
|
852 |
width = 5 |
|
853 |
else: |
|
854 |
width = CONNECTOR_SIZE |
|
855 |
if self.Direction[1] == 0: |
|
856 |
height = 5 |
|
857 |
else: |
|
858 |
height = CONNECTOR_SIZE |
|
859 |
return wx.Rect(x - abs(movex), y - abs(movey), width + 2 * abs(movex), height + 2 * abs(movey)) |
|
860 |
||
0 | 861 |
# Change the connector pen |
862 |
def SetPen(self, pen): |
|
863 |
self.Pen = pen |
|
864 |
||
865 |
# Make a clone of the connector |
|
112 | 866 |
def Clone(self, parent = None): |
867 |
if parent is None: |
|
868 |
parent = self.ParentBlock |
|
869 |
return Connector(parent, self.Name, self.Type, wx.Point(self.Pos[0], self.Pos[1]), |
|
0 | 870 |
self.Direction, self.Negated) |
871 |
||
872 |
# Returns the connector parent block |
|
873 |
def GetParentBlock(self): |
|
874 |
return self.ParentBlock |
|
875 |
||
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
876 |
# Returns the connector type |
112 | 877 |
def GetType(self, raw = False): |
878 |
if IsEndType(self.Type) or raw: |
|
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
879 |
return self.Type |
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
880 |
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
|
881 |
return "BOOL" |
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
882 |
else: |
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
883 |
return self.ParentBlock.GetConnectionResultType(self, self.Type) |
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
884 |
|
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
885 |
# Returns the connector type |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
886 |
def GetConnectedType(self): |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
887 |
if IsEndType(self.Type): |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
888 |
return self.Type |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
889 |
elif len(self.Wires) == 1: |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
890 |
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
|
891 |
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
|
892 |
|
144 | 893 |
# Returns the connector type |
894 |
def GetConnectedRedrawRect(self, movex, movey): |
|
895 |
rect = None |
|
896 |
for wire, handle in self.Wires: |
|
897 |
if rect is None: |
|
898 |
rect = wire.GetRedrawRect() |
|
899 |
else: |
|
900 |
rect = rect.Union(wire.GetRedrawRect()) |
|
901 |
return rect |
|
902 |
||
98 | 903 |
# Returns if connector type is compatible with type given |
904 |
def IsCompatible(self, type): |
|
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
905 |
reference = self.GetType() |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
906 |
return IsOfType(type, reference) or IsOfType(reference, type) |
98 | 907 |
|
3
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
908 |
# 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
|
909 |
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
|
910 |
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
|
911 |
|
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
912 |
# Returns the connector name |
0 | 913 |
def GetName(self): |
914 |
return self.Name |
|
915 |
||
916 |
# Changes the connector name |
|
917 |
def SetName(self, name): |
|
918 |
self.Name = name |
|
42 | 919 |
self.RefreshNameSize() |
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
920 |
|
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
921 |
def SetValue(self, value): |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
922 |
for wire, handle in self.Wires: |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
923 |
wire.SetValue(value) |
42 | 924 |
|
925 |
# Changes the connector name size |
|
926 |
def RefreshNameSize(self): |
|
927 |
if self.Name != "": |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
928 |
dc = wx.ClientDC(self.ParentBlock.Parent) |
42 | 929 |
self.NameSize = dc.GetTextExtent(self.Name) |
930 |
else: |
|
931 |
self.NameSize = 0, 0 |
|
932 |
||
933 |
# Returns the connector name size |
|
934 |
def GetNameSize(self): |
|
935 |
return self.NameSize |
|
0 | 936 |
|
937 |
# Returns the wires connected to the connector |
|
938 |
def GetWires(self): |
|
939 |
return self.Wires |
|
940 |
||
941 |
# Returns the parent block Id |
|
942 |
def GetBlockId(self): |
|
943 |
return self.ParentBlock.GetId() |
|
944 |
||
945 |
# Returns the connector relative position |
|
946 |
def GetRelPosition(self): |
|
947 |
return self.Pos |
|
948 |
||
949 |
# Returns the connector absolute position |
|
950 |
def GetPosition(self, size = True): |
|
951 |
parent_pos = self.ParentBlock.GetPosition() |
|
952 |
# If the position of the end of the connector is asked |
|
953 |
if size: |
|
954 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE |
|
955 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE |
|
956 |
else: |
|
957 |
x = parent_pos[0] + self.Pos.x |
|
958 |
y = parent_pos[1] + self.Pos.y |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
959 |
return wx.Point(x, y) |
0 | 960 |
|
961 |
# Change the connector relative position |
|
962 |
def SetPosition(self, pos): |
|
963 |
self.Pos = pos |
|
964 |
||
965 |
# Returns the connector direction |
|
966 |
def GetDirection(self): |
|
967 |
return self.Direction |
|
968 |
||
969 |
# Change the connector direction |
|
970 |
def SetDirection(self, direction): |
|
971 |
self.Direction = direction |
|
972 |
||
973 |
# Connect a wire to this connector at the last place |
|
974 |
def Connect(self, wire, refresh = True): |
|
975 |
self.InsertConnect(len(self.Wires), wire, refresh) |
|
976 |
||
977 |
# Connect a wire to this connector at the place given |
|
978 |
def InsertConnect(self, idx, wire, refresh = True): |
|
979 |
if wire not in self.Wires: |
|
980 |
self.Wires.insert(idx, wire) |
|
981 |
if refresh: |
|
982 |
self.ParentBlock.RefreshModel(False) |
|
983 |
||
984 |
# Returns the index of the wire given in the list of connected |
|
985 |
def GetWireIndex(self, wire): |
|
986 |
for i, (tmp_wire, handle) in enumerate(self.Wires): |
|
987 |
if tmp_wire == wire: |
|
988 |
return i |
|
989 |
return None |
|
990 |
||
991 |
# Unconnect a wire or all wires connected to the connector |
|
2 | 992 |
def UnConnect(self, wire = None, unconnect = True, delete = False): |
0 | 993 |
i = 0 |
994 |
found = False |
|
995 |
while i < len(self.Wires) and not found: |
|
996 |
if not wire or self.Wires[i][0] == wire: |
|
997 |
# If Unconnect haven't been called from a wire, disconnect the connector in the wire |
|
998 |
if unconnect: |
|
999 |
if self.Wires[i][1] == 0: |
|
2 | 1000 |
self.Wires[i][0].UnConnectStartPoint(delete) |
0 | 1001 |
else: |
2 | 1002 |
self.Wires[i][0].UnConnectEndPoint(delete) |
0 | 1003 |
# Remove wire from connected |
1004 |
if wire: |
|
1005 |
self.Wires.pop(i) |
|
1006 |
found = True |
|
1007 |
i += 1 |
|
1008 |
# If no wire defined, unconnect all wires |
|
1009 |
if not wire: |
|
1010 |
self.Wires = [] |
|
1011 |
self.ParentBlock.RefreshModel(False) |
|
1012 |
||
1013 |
# Returns if connector has one or more wire connected |
|
1014 |
def IsConnected(self): |
|
1015 |
return len(self.Wires) > 0 |
|
1016 |
||
1017 |
# Move the wires connected |
|
1018 |
def MoveConnected(self, exclude = []): |
|
1019 |
if len(self.Wires) > 0: |
|
1020 |
# Calculate the new position of the end point |
|
1021 |
parent_pos = self.ParentBlock.GetPosition() |
|
1022 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE |
|
1023 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE |
|
1024 |
# Move the corresponding point on all the wires connected |
|
1025 |
for wire, index in self.Wires: |
|
1026 |
if wire not in exclude: |
|
1027 |
if index == 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1028 |
wire.MoveStartPoint(wx.Point(x, y)) |
0 | 1029 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1030 |
wire.MoveEndPoint(wx.Point(x, y)) |
0 | 1031 |
|
1032 |
# Refreshes the model of all the wires connected |
|
1033 |
def RefreshWires(self): |
|
1034 |
for wire in self.Wires: |
|
1035 |
wire[0].RefreshModel() |
|
1036 |
||
1037 |
# Refreshes the parent block model |
|
1038 |
def RefreshParentBlock(self): |
|
1039 |
self.ParentBlock.RefreshModel(False) |
|
1040 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1041 |
# Highlight the parent block |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1042 |
def HighlightParentBlock(self, highlight): |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1043 |
self.ParentBlock.SetHighlighted(highlight) |
144 | 1044 |
self.ParentBlock.Refresh() |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1045 |
|
27 | 1046 |
# Returns all the blocks connected to this connector |
1047 |
def GetConnectedBlocks(self): |
|
1048 |
blocks = [] |
|
1049 |
for wire, handle in self.Wires: |
|
1050 |
# Get other connector connected to each wire |
|
1051 |
if handle == 0: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1052 |
connector = wire.GetEndConnected() |
27 | 1053 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1054 |
connector = wire.GetStartConnected() |
27 | 1055 |
# Get parent block for this connector |
1056 |
if connector: |
|
1057 |
block = connector.GetParentBlock() |
|
1058 |
if block not in blocks: |
|
1059 |
blocks.append(block) |
|
1060 |
return blocks |
|
1061 |
||
0 | 1062 |
# Returns the connector negated property |
1063 |
def IsNegated(self): |
|
1064 |
return self.Negated |
|
1065 |
||
1066 |
# Changes the connector negated property |
|
1067 |
def SetNegated(self, negated): |
|
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1068 |
if IsOfType("BOOL", self.Type): |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1069 |
self.Negated = negated |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1070 |
self.Edge = "none" |
0 | 1071 |
|
1072 |
# Returns the connector edge property |
|
1073 |
def GetEdge(self): |
|
1074 |
return self.Edge |
|
1075 |
||
1076 |
# Changes the connector edge property |
|
1077 |
def SetEdge(self, edge): |
|
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1078 |
if IsOfType("BOOL", self.Type): |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1079 |
self.Edge = edge |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1080 |
self.Negated = False |
0 | 1081 |
|
1082 |
# Tests if the point given is near from the end point of this connector |
|
1083 |
def TestPoint(self, pt, exclude = True): |
|
1084 |
parent_pos = self.ParentBlock.GetPosition() |
|
27 | 1085 |
if not (len(self.Wires) > 0 and self.OneConnected and exclude): |
0 | 1086 |
# Calculate a square around the end point of this connector |
1087 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE - ANCHOR_DISTANCE |
|
1088 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE - ANCHOR_DISTANCE |
|
1089 |
width = ANCHOR_DISTANCE * 2 + abs(self.Direction[0]) * CONNECTOR_SIZE |
|
1090 |
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
|
1091 |
rect = wx.Rect(x, y, width, height) |
0 | 1092 |
return rect.InsideXY(pt.x, pt.y) |
1093 |
return False |
|
1094 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1095 |
# 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
|
1096 |
def DrawHighlightment(self, dc): |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1097 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR)) |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1098 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
144 | 1099 |
dc.SetLogicalFunction(wx.AND) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1100 |
parent_pos = self.ParentBlock.GetPosition() |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1101 |
posx = parent_pos[0] + self.Pos.x |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1102 |
posy = parent_pos[1] + self.Pos.y |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1103 |
width = CONNECTOR_SIZE |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1104 |
height = CONNECTOR_SIZE |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1105 |
if self.Direction[0] < 0: |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1106 |
posx += CONNECTOR_SIZE * self.Direction[0] |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1107 |
elif self.Direction[0] == 0: |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1108 |
posx -= 2 |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1109 |
width = 5 |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1110 |
if self.Direction[1] < 0: |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1111 |
posy += CONNECTOR_SIZE * self.Direction[1] |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1112 |
elif self.Direction[1] == 0: |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1113 |
posy -= 2 |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1114 |
height = 5 |
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1115 |
dc.DrawRectangle(posx, posy, width, height) |
144 | 1116 |
dc.SetLogicalFunction(wx.COPY) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1117 |
|
0 | 1118 |
# Draws the connector |
1119 |
def Draw(self, dc): |
|
1120 |
dc.SetPen(self.Pen) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1121 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 1122 |
parent_pos = self.ParentBlock.GetPosition() |
1123 |
if self.Negated: |
|
1124 |
# If connector is negated, draw a circle |
|
1125 |
xcenter = parent_pos[0] + self.Pos.x + (CONNECTOR_SIZE * self.Direction[0]) / 2 |
|
1126 |
ycenter = parent_pos[1] + self.Pos.y + (CONNECTOR_SIZE * self.Direction[1]) / 2 |
|
1127 |
dc.DrawCircle(xcenter, ycenter, CONNECTOR_SIZE / 2) |
|
1128 |
else: |
|
1129 |
xstart = parent_pos[0] + self.Pos.x |
|
1130 |
ystart = parent_pos[1] + self.Pos.y |
|
1131 |
if self.Edge == "rising": |
|
1132 |
# If connector has a rising edge, draw a right arrow |
|
1133 |
dc.DrawLine(xstart, ystart, xstart - 4, ystart - 4) |
|
1134 |
dc.DrawLine(xstart, ystart, xstart - 4, ystart + 4) |
|
1135 |
elif self.Edge == "falling": |
|
1136 |
# If connector has a falling edge, draw a left arrow |
|
1137 |
dc.DrawLine(xstart, ystart, xstart + 4, ystart - 4) |
|
1138 |
dc.DrawLine(xstart, ystart, xstart + 4, ystart + 4) |
|
1139 |
xend = xstart + CONNECTOR_SIZE * self.Direction[0] |
|
1140 |
yend = ystart + CONNECTOR_SIZE * self.Direction[1] |
|
1141 |
dc.DrawLine(xstart + self.Direction[0], ystart + self.Direction[1], xend, yend) |
|
1142 |
if self.Direction[0] != 0: |
|
42 | 1143 |
ytext = parent_pos[1] + self.Pos.y - self.NameSize[1] / 2 |
0 | 1144 |
if self.Direction[0] < 0: |
1145 |
xtext = parent_pos[0] + self.Pos.x + 5 |
|
1146 |
else: |
|
42 | 1147 |
xtext = parent_pos[0] + self.Pos.x - (self.NameSize[0] + 5) |
0 | 1148 |
if self.Direction[1] != 0: |
42 | 1149 |
xtext = parent_pos[0] + self.Pos.x - self.NameSize[0] / 2 |
0 | 1150 |
if self.Direction[1] < 0: |
1151 |
ytext = parent_pos[1] + self.Pos.y + 5 |
|
1152 |
else: |
|
42 | 1153 |
ytext = parent_pos[1] + self.Pos.y - (self.NameSize[1] + 5) |
0 | 1154 |
# Draw the text |
1155 |
dc.DrawText(self.Name, xtext, ytext) |
|
1156 |
||
1157 |
||
1158 |
#------------------------------------------------------------------------------- |
|
1159 |
# Common Wire Element |
|
1160 |
#------------------------------------------------------------------------------- |
|
1161 |
||
1162 |
""" |
|
1163 |
Class that implements a wire for connecting two blocks |
|
1164 |
""" |
|
1165 |
||
1166 |
class Wire(Graphic_Element): |
|
1167 |
||
1168 |
# Create a new wire |
|
1169 |
def __init__(self, parent, start = None, end = None): |
|
1170 |
Graphic_Element.__init__(self, parent) |
|
1171 |
self.StartPoint = start |
|
1172 |
self.EndPoint = end |
|
1173 |
self.StartConnected = None |
|
1174 |
self.EndConnected = None |
|
1175 |
# If the start and end points are defined, calculate the wire |
|
1176 |
if start and end: |
|
1177 |
self.ResetPoints() |
|
1178 |
self.GeneratePoints() |
|
1179 |
else: |
|
1180 |
self.Points = [] |
|
1181 |
self.Segments = [] |
|
1182 |
self.SelectedSegment = None |
|
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1183 |
self.Value = None |
0 | 1184 |
self.OverStart = False |
1185 |
self.OverEnd = False |
|
1186 |
||
1187 |
# Destructor of a wire |
|
1188 |
def __del__(self): |
|
1189 |
self.StartConnected = None |
|
1190 |
self.EndConnected = None |
|
1191 |
||
144 | 1192 |
# Returns the RedrawRect |
1193 |
def GetRedrawRect(self, movex = 0, movey = 0): |
|
1194 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
|
1195 |
if self.StartConnected: |
|
1196 |
rect = rect.Union(self.StartConnected.GetRedrawRect(movex, movey)) |
|
1197 |
if self.EndConnected: |
|
1198 |
rect = rect.Union(self.EndConnected.GetRedrawRect(movex, movey)) |
|
1199 |
return rect |
|
1200 |
||
0 | 1201 |
# Forbids to change the wire position |
1202 |
def SetPosition(x, y): |
|
1203 |
pass |
|
1204 |
||
1205 |
# Forbids to change the wire size |
|
1206 |
def SetSize(width, height): |
|
1207 |
pass |
|
1208 |
||
27 | 1209 |
# Returns connector to which start point is connected |
1210 |
def GetStartConnected(self): |
|
1211 |
return self.StartConnected |
|
1212 |
||
98 | 1213 |
# Returns connector to which start point is connected |
1214 |
def GetStartConnectedType(self): |
|
1215 |
if self.StartConnected: |
|
1216 |
return self.StartConnected.GetType() |
|
1217 |
return None |
|
1218 |
||
27 | 1219 |
# Returns connector to which end point is connected |
1220 |
def GetEndConnected(self): |
|
1221 |
return self.EndConnected |
|
1222 |
||
98 | 1223 |
# Returns connector to which end point is connected |
1224 |
def GetEndConnectedType(self): |
|
1225 |
if self.EndConnected: |
|
1226 |
return self.EndConnected.GetType() |
|
1227 |
return None |
|
1228 |
||
145 | 1229 |
def GetOtherConnected(self, connector): |
1230 |
if self.StartConnected == connector: |
|
1231 |
return self.EndConnected |
|
1232 |
else: |
|
1233 |
return self.StartConnected |
|
1234 |
||
99
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1235 |
def GetOtherConnectedType(self, handle): |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1236 |
if handle == 0: |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1237 |
return self.GetEndConnectedType() |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1238 |
else: |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1239 |
return self.GetStartConnectedType() |
2b18a72dcaf0
Added support for standard functions type compatibility check
lbessard
parents:
98
diff
changeset
|
1240 |
|
98 | 1241 |
def IsConnectedCompatible(self): |
1242 |
if self.StartConnected: |
|
1243 |
return self.StartConnected.IsCompatible(self.GetEndConnectedType()) |
|
1244 |
elif self.EndConnected: |
|
1245 |
return True |
|
1246 |
return False |
|
1247 |
||
102
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1248 |
def SetValue(self, value): |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1249 |
self.Value = value |
85875dcb7754
Adding edit user's POU by double click on block instance
lbessard
parents:
99
diff
changeset
|
1250 |
|
0 | 1251 |
# Unconnect the start and end points |
1252 |
def Clean(self): |
|
1253 |
if self.StartConnected: |
|
1254 |
self.UnConnectStartPoint() |
|
1255 |
if self.EndConnected: |
|
1256 |
self.UnConnectEndPoint() |
|
1257 |
||
1258 |
# Delete this wire by calling the corresponding method |
|
1259 |
def Delete(self): |
|
1260 |
self.Parent.DeleteWire(self) |
|
1261 |
||
1262 |
# Select a segment and not the whole wire. It's useful for Ladder Diagram |
|
1263 |
def SetSelectedSegment(self, segment): |
|
1264 |
# The last segment is indicated |
|
1265 |
if segment == -1: |
|
1266 |
segment = len(self.Segments) - 1 |
|
1267 |
# The selected segment is reinitialised |
|
1268 |
if segment == None: |
|
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.BLACK_PEN) |
0 | 1273 |
# The segment selected is the first |
1274 |
elif segment == 0: |
|
1275 |
if self.StartConnected: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1276 |
self.StartConnected.SetPen(wx.RED_PEN) |
0 | 1277 |
if self.EndConnected: |
1278 |
# There is only one segment |
|
1279 |
if len(self.Segments) == 1: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1280 |
self.EndConnected.SetPen(wx.RED_PEN) |
0 | 1281 |
else: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1282 |
self.EndConnected.SetPen(wx.BLACK_PEN) |
0 | 1283 |
# The segment selected is the last |
1284 |
elif segment == len(self.Segments) - 1: |
|
1285 |
if self.StartConnected: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1286 |
self.StartConnected.SetPen(wx.BLACK_PEN) |
0 | 1287 |
if self.EndConnected: |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1288 |
self.EndConnected.SetPen(wx.RED_PEN) |
0 | 1289 |
self.SelectedSegment = segment |
144 | 1290 |
self.Refresh() |
0 | 1291 |
|
1292 |
# Reinitialize the wire points |
|
1293 |
def ResetPoints(self): |
|
1294 |
if self.StartPoint and self.EndPoint: |
|
1295 |
self.Points = [self.StartPoint[0], self.EndPoint[0]] |
|
1296 |
self.Segments = [self.StartPoint[1]] |
|
1297 |
else: |
|
1298 |
self.Points = [] |
|
1299 |
self.Segments = [] |
|
1300 |
||
1301 |
# Refresh the wire bounding box |
|
1302 |
def RefreshBoundingBox(self): |
|
1303 |
if len(self.Points) > 0: |
|
1304 |
# If startpoint or endpoint is connected, save the point radius |
|
1305 |
start_radius = end_radius = 0 |
|
1306 |
if not self.StartConnected: |
|
1307 |
start_radius = POINT_RADIUS |
|
1308 |
if not self.EndConnected: |
|
1309 |
end_radius = POINT_RADIUS |
|
1310 |
# Initialize minimum and maximum from the first point |
|
1311 |
minx, minbbxx = self.Points[0].x, self.Points[0].x - start_radius |
|
1312 |
maxx, maxbbxx = self.Points[0].x, self.Points[0].x + start_radius |
|
1313 |
miny, minbbxy = self.Points[0].y, self.Points[0].y - start_radius |
|
1314 |
maxy, maxbbxy = self.Points[0].y, self.Points[0].y + start_radius |
|
1315 |
# Actualize minimum and maximum with the other points |
|
1316 |
for point in self.Points[1:-1]: |
|
1317 |
minx, minbbxx = min(minx, point.x), min(minbbxx, point.x) |
|
1318 |
maxx, maxbbxx = max(maxx, point.x), max(maxbbxx, point.x) |
|
1319 |
miny, minbbxy = min(miny, point.y), min(minbbxy, point.y) |
|
1320 |
maxy, maxbbxy = max(maxy, point.y), max(maxbbxy, point.y) |
|
1321 |
if len(self.Points) > 1: |
|
1322 |
minx, minbbxx = min(minx, self.Points[-1].x), min(minbbxx, self.Points[-1].x - end_radius) |
|
1323 |
maxx, maxbbxx = max(maxx, self.Points[-1].x), max(maxbbxx, self.Points[-1].x + end_radius) |
|
1324 |
miny, minbbxy = min(miny, self.Points[-1].y), min(minbbxy, self.Points[-1].y - end_radius) |
|
1325 |
maxy, maxbbxy = max(maxy, self.Points[-1].y), max(maxbbxy, self.Points[-1].y + end_radius) |
|
108 | 1326 |
self.Pos.x, self.Pos.y = minx, miny |
1327 |
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
|
1328 |
self.BoundingBox = wx.Rect(minbbxx, minbbxy, maxbbxx - minbbxx + 1, maxbbxy - minbbxy + 1) |
0 | 1329 |
|
1330 |
# Refresh the realpoints that permits to keep the proportionality in wire during resizing |
|
1331 |
def RefreshRealPoints(self): |
|
1332 |
if len(self.Points) > 0: |
|
1333 |
self.RealPoints = [] |
|
1334 |
# Calculate float relative position of each point with the minimum point |
|
1335 |
for point in self.Points: |
|
1336 |
self.RealPoints.append([float(point.x - self.Pos.x), float(point.y - self.Pos.y)]) |
|
1337 |
||
1338 |
# Returns the wire minimum size |
|
1339 |
def GetMinSize(self): |
|
1340 |
width = 1 |
|
1341 |
height = 1 |
|
1342 |
dir_product = product(self.StartPoint[1], self.EndPoint[1]) |
|
1343 |
# The directions are opposed |
|
1344 |
if dir_product < 0: |
|
1345 |
if self.StartPoint[0] != 0: |
|
1346 |
width = MIN_SEGMENT_SIZE * 2 |
|
1347 |
if self.StartPoint[1] != 0: |
|
1348 |
height = MIN_SEGMENT_SIZE * 2 |
|
1349 |
# The directions are the same |
|
1350 |
elif dir_product > 0: |
|
1351 |
if self.StartPoint[0] != 0: |
|
1352 |
width = MIN_SEGMENT_SIZE |
|
1353 |
if self.StartPoint[1] != 0: |
|
1354 |
height = MIN_SEGMENT_SIZE |
|
1355 |
# The directions are perpendiculars |
|
1356 |
else: |
|
1357 |
width = MIN_SEGMENT_SIZE |
|
1358 |
height = MIN_SEGMENT_SIZE |
|
1359 |
return width + 1, height + 1 |
|
1360 |
||
1361 |
# Returns if the point given is on one of the wire segments |
|
1362 |
def HitTest(self, pt): |
|
1363 |
test = False |
|
1364 |
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
|
1365 |
rect = wx.Rect(0, 0, 0, 0) |
0 | 1366 |
x1, y1 = self.Points[i].x, self.Points[i].y |
1367 |
x2, y2 = self.Points[i + 1].x, self.Points[i + 1].y |
|
1368 |
# Calculate a rectangle around the segment |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1369 |
rect = wx.Rect(min(x1, x2) - ANCHOR_DISTANCE, min(y1, y2) - ANCHOR_DISTANCE, |
0 | 1370 |
abs(x1 - x2) + 2 * ANCHOR_DISTANCE, abs(y1 - y2) + 2 * ANCHOR_DISTANCE) |
1371 |
test |= rect.InsideXY(pt.x, pt.y) |
|
1372 |
return test |
|
1373 |
||
1374 |
# Returns the wire start or end point if the point given is on one of them |
|
1375 |
def TestPoint(self, pt): |
|
1376 |
# Test the wire start point |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1377 |
rect = wx.Rect(self.Points[0].x - ANCHOR_DISTANCE, self.Points[0].y - ANCHOR_DISTANCE, |
0 | 1378 |
2 * ANCHOR_DISTANCE, 2 * ANCHOR_DISTANCE) |
1379 |
if rect.InsideXY(pt.x, pt.y): |
|
1380 |
return 0 |
|
1381 |
# Test the wire end point |
|
1382 |
if len(self.Points) > 1: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1383 |
rect = wx.Rect(self.Points[-1].x - ANCHOR_DISTANCE, self.Points[-1].y - ANCHOR_DISTANCE, |
0 | 1384 |
2 * ANCHOR_DISTANCE, 2 * ANCHOR_DISTANCE) |
1385 |
if rect.InsideXY(pt.x, pt.y): |
|
1386 |
return -1 |
|
1387 |
return None |
|
1388 |
||
1389 |
# Returns the wire segment if the point given is on it |
|
1390 |
def TestSegment(self, pt, all=False): |
|
1391 |
for i in xrange(len(self.Segments)): |
|
1392 |
# If wire is not in a Ladder Diagram, first and last segments are excluded |
|
1393 |
if 0 < i < len(self.Segments) - 1 or all: |
|
1394 |
x1, y1 = self.Points[i].x, self.Points[i].y |
|
1395 |
x2, y2 = self.Points[i + 1].x, self.Points[i + 1].y |
|
1396 |
# Calculate a rectangle around the segment |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1397 |
rect = wx.Rect(min(x1, x2) - ANCHOR_DISTANCE, min(y1, y2) - ANCHOR_DISTANCE, |
0 | 1398 |
abs(x1 - x2) + 2 * ANCHOR_DISTANCE, abs(y1 - y2) + 2 * ANCHOR_DISTANCE) |
1399 |
if rect.InsideXY(pt.x, pt.y): |
|
1400 |
return i, self.Segments[i] |
|
1401 |
return None |
|
1402 |
||
1403 |
# Define the wire points |
|
1404 |
def SetPoints(self, points): |
|
1405 |
if len(points) > 1: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1406 |
self.Points = [wx.Point(x, y) for x, y in points] |
0 | 1407 |
# Calculate the start and end directions |
1408 |
self.StartPoint = [None, vector(self.Points[0], self.Points[1])] |
|
1409 |
self.EndPoint = [None, vector(self.Points[-1], self.Points[-2])] |
|
1410 |
# Calculate the start and end points |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1411 |
self.StartPoint[0] = wx.Point(self.Points[0].x + CONNECTOR_SIZE * self.StartPoint[1][0], |
0 | 1412 |
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
|
1413 |
self.EndPoint[0] = wx.Point(self.Points[-1].x + CONNECTOR_SIZE * self.EndPoint[1][0], |
0 | 1414 |
self.Points[-1].y + CONNECTOR_SIZE * self.EndPoint[1][1]) |
1415 |
self.Points[0] = self.StartPoint[0] |
|
1416 |
self.Points[-1] = self.EndPoint[0] |
|
1417 |
# Calculate the segments directions |
|
1418 |
self.Segments = [] |
|
1419 |
for i in xrange(len(self.Points) - 1): |
|
1420 |
self.Segments.append(vector(self.Points[i], self.Points[i + 1])) |
|
1421 |
self.RefreshBoundingBox() |
|
1422 |
self.RefreshRealPoints() |
|
1423 |
||
1424 |
# Returns the position of the point indicated |
|
1425 |
def GetPoint(self, index): |
|
1426 |
if index < len(self.Points): |
|
1427 |
return self.Points[index].x, self.Points[index].y |
|
1428 |
return None |
|
1429 |
||
1430 |
# Returns a list of the position of all wire points |
|
1431 |
def GetPoints(self, invert = False): |
|
1432 |
points = self.VerifyPoints() |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1433 |
points[0] = wx.Point(points[0].x - CONNECTOR_SIZE * self.StartPoint[1][0], |
0 | 1434 |
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
|
1435 |
points[-1] = wx.Point(points[-1].x - CONNECTOR_SIZE * self.EndPoint[1][0], |
0 | 1436 |
points[-1].y - CONNECTOR_SIZE * self.EndPoint[1][1]) |
1437 |
# An inversion of the list is asked |
|
1438 |
if invert: |
|
1439 |
points.reverse() |
|
1440 |
return points |
|
1441 |
||
1442 |
# Returns the position of the two selected segment points |
|
1443 |
def GetSelectedSegmentPoints(self): |
|
1444 |
if self.SelectedSegment != None and len(self.Points) > 1: |
|
1445 |
return self.Points[self.SelectedSegment:self.SelectedSegment + 2] |
|
1446 |
return [] |
|
1447 |
||
1448 |
# Returns if the selected segment is the first and/or the last of the wire |
|
1449 |
def GetSelectedSegmentConnections(self): |
|
1450 |
if self.SelectedSegment != None and len(self.Points) > 1: |
|
1451 |
return self.SelectedSegment == 0, self.SelectedSegment == len(self.Segments) - 1 |
|
1452 |
return (True, True) |
|
1453 |
||
1454 |
# Returns the connectors on which the wire is connected |
|
1455 |
def GetConnected(self): |
|
1456 |
connected = [] |
|
1457 |
if self.StartConnected and self.StartPoint[1] == WEST: |
|
1458 |
connected.append(self.StartConnected) |
|
1459 |
if self.EndConnected and self.EndPoint[1] == WEST: |
|
1460 |
connected.append(self.EndConnected) |
|
1461 |
return connected |
|
1462 |
||
1463 |
# Returns the id of the block connected to the first or the last wire point |
|
27 | 1464 |
def GetConnectedInfos(self, index): |
0 | 1465 |
if index == 0 and self.StartConnected: |
27 | 1466 |
return self.StartConnected.GetBlockId(), self.StartConnected.GetName() |
0 | 1467 |
elif index == -1 and self.EndConnected: |
42 | 1468 |
return self.EndConnected.GetBlockId(), self.EndConnected.GetName() |
0 | 1469 |
return None |
1470 |
||
1471 |
# Update the wire points position by keeping at most possible the current positions |
|
1472 |
def GeneratePoints(self, realpoints = True): |
|
1473 |
i = 0 |
|
1474 |
# 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
|
1475 |
end = wx.Point(self.EndPoint[0].x + self.EndPoint[1][0] * MIN_SEGMENT_SIZE, |
0 | 1476 |
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
|
1477 |
start = wx.Point(self.StartPoint[0].x + self.StartPoint[1][0] * MIN_SEGMENT_SIZE, |
0 | 1478 |
self.StartPoint[0].y + self.StartPoint[1][1] * MIN_SEGMENT_SIZE) |
1479 |
# Evaluate the point till it's the last |
|
1480 |
while i < len(self.Points) - 1: |
|
1481 |
# The next point is the last |
|
1482 |
if i + 1 == len(self.Points) - 1: |
|
1483 |
# Calculate the direction from current point to end point |
|
1484 |
v_end = vector(self.Points[i], end) |
|
1485 |
# The current point is the first |
|
1486 |
if i == 0: |
|
1487 |
# If the end point is not in the start direction, a point is added |
|
1488 |
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
|
1489 |
self.Points.insert(1, wx.Point(start.x, start.y)) |
0 | 1490 |
self.Segments.insert(1, DirectionChoice((self.Segments[0][1], |
1491 |
self.Segments[0][0]), v_end, self.EndPoint[1])) |
|
1492 |
# The current point is the second |
|
1493 |
elif i == 1: |
|
1494 |
# The previous direction and the target direction are mainly opposed, a point is added |
|
1495 |
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
|
1496 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
0 | 1497 |
self.Segments.insert(2, DirectionChoice((self.Segments[1][1], |
1498 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
|
1499 |
# The previous direction and the end direction are the same or they are |
|
1500 |
# perpendiculars and the end direction points towards current segment |
|
1501 |
elif product(self.Segments[0], self.EndPoint[1]) >= 0 and product(self.Segments[1], self.EndPoint[1]) <= 0: |
|
1502 |
# Current point and end point are aligned |
|
1503 |
if self.Segments[0][0] != 0: |
|
1504 |
self.Points[1].x = end.x |
|
1505 |
if self.Segments[0][1] != 0: |
|
1506 |
self.Points[1].y = end.y |
|
1507 |
# If the previous direction and the end direction are the same, a point is added |
|
1508 |
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
|
1509 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
0 | 1510 |
self.Segments.insert(2, DirectionChoice((self.Segments[1][1], |
1511 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
|
1512 |
else: |
|
1513 |
# Current point is positioned in the middle of start point |
|
1514 |
# and end point on the current direction and a point is added |
|
1515 |
if self.Segments[0][0] != 0: |
|
1516 |
self.Points[1].x = (end.x + start.x) / 2 |
|
1517 |
if self.Segments[0][1] != 0: |
|
1518 |
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
|
1519 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
0 | 1520 |
self.Segments.insert(2, DirectionChoice((self.Segments[1][1], |
1521 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
|
1522 |
else: |
|
1523 |
# The previous direction and the end direction are perpendiculars |
|
1524 |
if product(self.Segments[i - 1], self.EndPoint[1]) == 0: |
|
1525 |
# The target direction and the end direction aren't mainly the same |
|
1526 |
if product(v_end, self.EndPoint[1]) <= 0: |
|
1527 |
# Current point and end point are aligned |
|
1528 |
if self.Segments[i - 1][0] != 0: |
|
1529 |
self.Points[i].x = end.x |
|
1530 |
if self.Segments[i - 1][1] != 0: |
|
1531 |
self.Points[i].y = end.y |
|
1532 |
# Previous direction is updated from the new point |
|
1533 |
if product(vector(self.Points[i - 1], self.Points[i]), self.Segments[i - 1]) < 0: |
|
1534 |
self.Segments[i - 1] = (-self.Segments[i - 1][0], -self.Segments[i - 1][1]) |
|
1535 |
else: |
|
1536 |
test = True |
|
1537 |
# If the current point is the third, test if the second |
|
1538 |
# point can be aligned with the end point |
|
1539 |
if i == 2: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1540 |
test_point = wx.Point(self.Points[1].x, self.Points[1].y) |
0 | 1541 |
if self.Segments[1][0] != 0: |
1542 |
test_point.y = end.y |
|
1543 |
if self.Segments[1][1] != 0: |
|
1544 |
test_point.x = end.x |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1545 |
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
|
1546 |
test = norm(vector_test) > MIN_SEGMENT_SIZE and product(self.Segments[0], vector_test) > 0 |
0 | 1547 |
# The previous point can be aligned |
1548 |
if test: |
|
1549 |
self.Points[i].x, self.Points[i].y = end.x, end.y |
|
1550 |
if self.Segments[i - 1][0] != 0: |
|
1551 |
self.Points[i - 1].y = end.y |
|
1552 |
if self.Segments[i - 1][1] != 0: |
|
1553 |
self.Points[i - 1].x = end.x |
|
1554 |
self.Segments[i] = (-self.EndPoint[1][0], -self.EndPoint[1][1]) |
|
1555 |
else: |
|
1556 |
# Current point is positioned in the middle of previous point |
|
1557 |
# and end point on the current direction and a point is added |
|
1558 |
if self.Segments[1][0] != 0: |
|
1559 |
self.Points[2].x = (self.Points[1].x + end.x) / 2 |
|
1560 |
if self.Segments[1][1] != 0: |
|
1561 |
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
|
1562 |
self.Points.insert(3, wx.Point(self.Points[2].x, self.Points[2].y)) |
0 | 1563 |
self.Segments.insert(3, DirectionChoice((self.Segments[2][1], |
1564 |
self.Segments[2][0]), v_end, self.EndPoint[1])) |
|
1565 |
else: |
|
1566 |
# Current point is aligned with end point |
|
1567 |
if self.Segments[i - 1][0] != 0: |
|
1568 |
self.Points[i].x = end.x |
|
1569 |
if self.Segments[i - 1][1] != 0: |
|
1570 |
self.Points[i].y = end.y |
|
1571 |
# Previous direction is updated from the new point |
|
1572 |
if product(vector(self.Points[i - 1], self.Points[i]), self.Segments[i - 1]) < 0: |
|
1573 |
self.Segments[i - 1] = (-self.Segments[i - 1][0], -self.Segments[i - 1][1]) |
|
1574 |
# If previous direction and end direction are opposed |
|
1575 |
if product(self.Segments[i - 1], self.EndPoint[1]) < 0: |
|
1576 |
# Current point is positioned in the middle of previous point |
|
1577 |
# and end point on the current direction |
|
1578 |
if self.Segments[i - 1][0] != 0: |
|
1579 |
self.Points[i].x = (end.x + self.Points[i - 1].x) / 2 |
|
1580 |
if self.Segments[i - 1][1] != 0: |
|
1581 |
self.Points[i].y = (end.y + self.Points[i - 1].y) / 2 |
|
1582 |
# A point is added |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1583 |
self.Points.insert(i + 1, wx.Point(self.Points[i].x, self.Points[i].y)) |
0 | 1584 |
self.Segments.insert(i + 1, DirectionChoice((self.Segments[i][1], |
1585 |
self.Segments[i][0]), v_end, self.EndPoint[1])) |
|
1586 |
else: |
|
1587 |
# Current point is the first, and second is not mainly in the first direction |
|
1588 |
if i == 0 and product(vector(start, self.Points[1]), self.Segments[0]) < 0: |
|
1589 |
# If first and second directions aren't perpendiculars, a point is added |
|
1590 |
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
|
1591 |
self.Points.insert(1, wx.Point(start.x, start.y)) |
0 | 1592 |
self.Segments.insert(1, DirectionChoice((self.Segments[0][1], |
1593 |
self.Segments[0][0]), vector(start, self.Points[1]), self.Segments[1])) |
|
1594 |
else: |
|
1595 |
self.Points[1].x, self.Points[1].y = start.x, start.y |
|
1596 |
else: |
|
1597 |
# Next point is aligned with current point |
|
1598 |
if self.Segments[i][0] != 0: |
|
1599 |
self.Points[i + 1].y = self.Points[i].y |
|
1600 |
if self.Segments[i][1] != 0: |
|
1601 |
self.Points[i + 1].x = self.Points[i].x |
|
1602 |
# Current direction is updated from the new point |
|
1603 |
if product(vector(self.Points[i], self.Points[i + 1]), self.Segments[i]) < 0: |
|
1604 |
self.Segments[i] = (-self.Segments[i][0], -self.Segments[i][1]) |
|
1605 |
i += 1 |
|
1606 |
self.RefreshBoundingBox() |
|
1607 |
if realpoints: |
|
1608 |
self.RefreshRealPoints() |
|
1609 |
||
1610 |
# Verify that two consecutive points haven't the same position |
|
1611 |
def VerifyPoints(self): |
|
1612 |
points = [point for point in self.Points] |
|
1613 |
segments = [segment for segment in self.Segments] |
|
1614 |
i = 1 |
|
1615 |
while i < len(points) - 1: |
|
1616 |
if points[i] == points[i + 1] and segments[i - 1] == segments[i + 1]: |
|
1617 |
for j in xrange(2): |
|
1618 |
points.pop(i) |
|
1619 |
segments.pop(i) |
|
1620 |
else: |
|
1621 |
i += 1 |
|
1622 |
# If the wire isn't in a Ladder Diagram, save the new point list |
|
1623 |
if self.Parent.__class__.__name__ != "LD_Viewer": |
|
1624 |
self.Points = [point for point in points] |
|
1625 |
self.Segments = [segment for segment in segments] |
|
1626 |
self.RefreshBoundingBox() |
|
1627 |
self.RefreshRealPoints() |
|
1628 |
return points |
|
1629 |
||
1630 |
# Moves all the wire points except the first and the last if they are connected |
|
1631 |
def Move(self, dx, dy, endpoints = False): |
|
1632 |
for i, point in enumerate(self.Points): |
|
1633 |
if endpoints or not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
1634 |
point.x += dx |
|
1635 |
point.y += dy |
|
1636 |
self.StartPoint[0] = self.Points[0] |
|
1637 |
self.EndPoint[0] = self.Points[-1] |
|
1638 |
self.GeneratePoints() |
|
1639 |
||
1640 |
# Resize the wire from position and size given |
|
1641 |
def Resize(self, x, y, width, height): |
|
1642 |
if len(self.Points) > 1: |
|
1643 |
# Calculate the new position of each point for testing the new size |
|
1644 |
minx, miny = self.Pos.x, self.Pos.y |
|
1645 |
lastwidth, lastheight = self.Size.width, self.Size.height |
|
1646 |
for i, point in enumerate(self.RealPoints): |
|
1647 |
# If start or end point is connected, it's not calculate |
|
1648 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
1649 |
if i == 0: |
|
1650 |
dir = self.StartPoint[1] |
|
1651 |
elif i == len(self.Points) - 1: |
|
1652 |
dir = self.EndPoint[1] |
|
1653 |
else: |
|
1654 |
dir = (0, 0) |
|
1655 |
pointx = max(-dir[0] * MIN_SEGMENT_SIZE, min(int(round(point[0] * (width - 1) / float(lastwidth - 1))), |
|
1656 |
width - dir[0] * MIN_SEGMENT_SIZE - 1)) |
|
1657 |
pointy = max(-dir[1] * MIN_SEGMENT_SIZE, min(int(round(point[1] * (height - 1) / float(lastheight - 1))), |
|
1658 |
height - dir[1] * MIN_SEGMENT_SIZE - 1)) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1659 |
self.Points[i] = wx.Point(minx + x + pointx, miny + y + pointy) |
0 | 1660 |
self.StartPoint[0] = self.Points[0] |
1661 |
self.EndPoint[0] = self.Points[-1] |
|
1662 |
self.GeneratePoints(False) |
|
1663 |
# Test if the wire position or size have changed |
|
1664 |
if x != 0 and minx == self.Pos.x: |
|
1665 |
x = 0 |
|
1666 |
width = lastwidth |
|
1667 |
if y != 0 and miny == self.Pos.y: |
|
1668 |
y = 0 |
|
1669 |
height = lastwidth |
|
1670 |
if width != lastwidth and lastwidth == self.Size.width: |
|
1671 |
width = lastwidth |
|
1672 |
if height != lastheight and lastheight == self.Size.height: |
|
1673 |
height = lastheight |
|
1674 |
# Calculate the real points from the new size, it's important for |
|
1675 |
# keeping a proportionality in the points position with the size |
|
1676 |
# duringa resize dragging |
|
1677 |
for i, point in enumerate(self.RealPoints): |
|
1678 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
1679 |
point[0] = point[0] * (width - 1) / float(lastwidth - 1) |
|
1680 |
point[1] = point[1] * (height - 1) / float(lastheight - 1) |
|
1681 |
# Calculate the correct position of the points from real points |
|
1682 |
for i, point in enumerate(self.RealPoints): |
|
1683 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
1684 |
if i == 0: |
|
1685 |
dir = self.StartPoint[1] |
|
1686 |
elif i == len(self.Points) - 1: |
|
1687 |
dir = self.EndPoint[1] |
|
1688 |
else: |
|
1689 |
dir = (0, 0) |
|
1690 |
realpointx = max(-dir[0] * MIN_SEGMENT_SIZE, min(int(round(point[0])), |
|
1691 |
width - dir[0] * MIN_SEGMENT_SIZE - 1)) |
|
1692 |
realpointy = max(-dir[1] * MIN_SEGMENT_SIZE, min(int(round(point[1])), |
|
1693 |
height - dir[1] * MIN_SEGMENT_SIZE - 1)) |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1694 |
self.Points[i] = wx.Point(minx + x + realpointx, miny + y + realpointy) |
0 | 1695 |
self.StartPoint[0] = self.Points[0] |
1696 |
self.EndPoint[0] = self.Points[-1] |
|
1697 |
self.GeneratePoints(False) |
|
1698 |
||
1699 |
# Moves the wire start point and update the wire points |
|
1700 |
def MoveStartPoint(self, point): |
|
1701 |
if len(self.Points) > 1: |
|
1702 |
self.StartPoint[0] = point |
|
1703 |
self.Points[0] = point |
|
1704 |
self.GeneratePoints() |
|
1705 |
||
1706 |
# Changes the wire start direction and update the wire points |
|
1707 |
def SetStartPointDirection(self, dir): |
|
1708 |
if len(self.Points) > 1: |
|
1709 |
self.StartPoint[1] = dir |
|
1710 |
self.Segments[0] = dir |
|
1711 |
self.GeneratePoints() |
|
1712 |
||
1713 |
# Rotates the wire start direction by an angle of 90 degrees anticlockwise |
|
1714 |
def RotateStartPoint(self): |
|
1715 |
self.SetStartPointDirection((self.StartPoint[1][1], -self.StartPoint[1][0])) |
|
1716 |
||
1717 |
# Connects wire start point to the connector given and moves wire start point |
|
1718 |
# to given point |
|
1719 |
def ConnectStartPoint(self, point, connector): |
|
1720 |
if point: |
|
1721 |
self.MoveStartPoint(point) |
|
1722 |
self.StartConnected = connector |
|
145 | 1723 |
self.RefreshBoundingBox() |
0 | 1724 |
|
1725 |
# Unconnects wire start point |
|
2 | 1726 |
def UnConnectStartPoint(self, delete = False): |
1727 |
if delete: |
|
60 | 1728 |
self.StartConnected = None |
2 | 1729 |
self.Delete() |
60 | 1730 |
elif self.StartConnected: |
1731 |
self.StartConnected.UnConnect(self, unconnect = False) |
|
2 | 1732 |
self.StartConnected = None |
145 | 1733 |
self.RefreshBoundingBox() |
0 | 1734 |
|
1735 |
# Moves the wire end point and update the wire points |
|
1736 |
def MoveEndPoint(self, point): |
|
1737 |
if len(self.Points) > 1: |
|
1738 |
self.EndPoint[0] = point |
|
1739 |
self.Points[-1] = point |
|
1740 |
self.GeneratePoints() |
|
1741 |
||
1742 |
# Changes the wire end direction and update the wire points |
|
1743 |
def SetEndPointDirection(self, dir): |
|
1744 |
if len(self.Points) > 1: |
|
1745 |
self.EndPoint[1] = dir |
|
1746 |
self.GeneratePoints() |
|
1747 |
||
1748 |
# Rotates the wire end direction by an angle of 90 degrees anticlockwise |
|
1749 |
def RotateEndPoint(self): |
|
1750 |
self.SetEndPointDirection((self.EndPoint[1][1], -self.EndPoint[1][0])) |
|
1751 |
||
1752 |
# Connects wire end point to the connector given and moves wire end point |
|
1753 |
# to given point |
|
1754 |
def ConnectEndPoint(self, point, connector): |
|
1755 |
if point: |
|
1756 |
self.MoveEndPoint(point) |
|
1757 |
self.EndConnected = connector |
|
145 | 1758 |
self.RefreshBoundingBox() |
0 | 1759 |
|
1760 |
# Unconnects wire end point |
|
2 | 1761 |
def UnConnectEndPoint(self, delete = False): |
1762 |
if delete: |
|
60 | 1763 |
self.EndConnected = None |
2 | 1764 |
self.Delete() |
60 | 1765 |
elif self.EndConnected: |
1766 |
self.EndConnected.UnConnect(self, unconnect = False) |
|
2 | 1767 |
self.EndConnected = None |
145 | 1768 |
self.RefreshBoundingBox() |
0 | 1769 |
|
1770 |
# Moves the wire segment given by its index |
|
145 | 1771 |
def MoveSegment(self, idx, movex, movey, scaling): |
0 | 1772 |
if 0 < idx < len(self.Segments) - 1: |
1773 |
if self.Segments[idx] in (NORTH, SOUTH): |
|
112 | 1774 |
start_x = self.Points[idx].x |
145 | 1775 |
if scaling is not None: |
1776 |
movex = round(float(self.Points[idx].x + movex) / float(scaling[0])) * scaling[0] - self.Points[idx].x |
|
0 | 1777 |
self.Points[idx].x += movex |
1778 |
self.Points[idx + 1].x += movex |
|
112 | 1779 |
self.GeneratePoints() |
1780 |
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
|
1781 |
return self.Points[idx].x - start_x, 0 |
0 | 1782 |
elif self.Segments[idx] in (EAST, WEST): |
112 | 1783 |
start_y = self.Points[idx].y |
145 | 1784 |
if scaling is not None: |
1785 |
movey = round(float(self.Points[idx].y + movey) / float(scaling[1])) * scaling[1] - self.Points[idx].y |
|
0 | 1786 |
self.Points[idx].y += movey |
1787 |
self.Points[idx + 1].y += movey |
|
112 | 1788 |
self.GeneratePoints() |
1789 |
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
|
1790 |
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
|
1791 |
return 0, 0 |
0 | 1792 |
|
1793 |
# Adds two points in the middle of the handled segment |
|
1794 |
def AddSegment(self): |
|
1795 |
handle_type, handle = self.Handle |
|
1796 |
if handle_type == HANDLE_SEGMENT: |
|
1797 |
segment, dir = handle |
|
1798 |
pointx = self.Points[segment].x |
|
1799 |
pointy = self.Points[segment].y |
|
1800 |
if dir[0] != 0: |
|
1801 |
pointx = (self.Points[segment].x + self.Points[segment + 1].x) / 2 |
|
1802 |
if dir[1] != 0: |
|
1803 |
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
|
1804 |
self.Points.insert(segment + 1, wx.Point(pointx, pointy)) |
0 | 1805 |
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
|
1806 |
self.Points.insert(segment + 2, wx.Point(pointx, pointy)) |
0 | 1807 |
self.Segments.insert(segment + 2, dir) |
1808 |
self.GeneratePoints() |
|
1809 |
||
1810 |
# Delete the handled segment by removing the two segment points |
|
1811 |
def DeleteSegment(self): |
|
1812 |
handle_type, handle = self.Handle |
|
1813 |
if handle_type == HANDLE_SEGMENT: |
|
1814 |
segment, dir = handle |
|
1815 |
for i in xrange(2): |
|
1816 |
self.Points.pop(segment) |
|
1817 |
self.Segments.pop(segment) |
|
1818 |
self.GeneratePoints() |
|
1819 |
self.RefreshModel() |
|
1820 |
||
1821 |
# Method called when a LeftDown event have been generated |
|
27 | 1822 |
def OnLeftDown(self, event, dc, scaling): |
1823 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 1824 |
# 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
|
1825 |
#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
|
1826 |
#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
|
1827 |
# self.Handle = (HANDLE_POINT, result) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1828 |
# 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
|
1829 |
#else: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1830 |
# 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
|
1831 |
result = self.TestSegment(pos) |
0 | 1832 |
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
|
1833 |
if result[1] in (NORTH, SOUTH): |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1834 |
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
|
1835 |
elif result[1] in (EAST, WEST): |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1836 |
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
|
1837 |
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
|
1838 |
# Execute the default method for a graphic element |
0 | 1839 |
else: |
27 | 1840 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
0 | 1841 |
self.oldPos = pos |
1842 |
||
80 | 1843 |
# Method called when a RightUp event has been generated |
27 | 1844 |
def OnRightUp(self, event, dc, scaling): |
1845 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 1846 |
# Test if a segment has been handled |
1847 |
result = self.TestSegment(pos) |
|
1848 |
if result != None: |
|
1849 |
self.Handle = (HANDLE_SEGMENT, result) |
|
1850 |
# Popup the menu with special items for a wire |
|
1851 |
self.Parent.PopupWireMenu() |
|
1852 |
else: |
|
1853 |
# Execute the default method for a graphic element |
|
27 | 1854 |
Graphic_Element.OnRightUp(self, event, dc, scaling) |
0 | 1855 |
|
80 | 1856 |
# Method called when a LeftDClick event has been generated |
27 | 1857 |
def OnLeftDClick(self, event, dc, scaling): |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1858 |
if event.ControlDown(): |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1859 |
direction = (self.StartPoint[1], self.EndPoint[1]) |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1860 |
if direction in [(EAST, WEST), (WEST, EAST)]: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1861 |
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
|
1862 |
if self.StartConnected is not None: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1863 |
startblock = self.StartConnected.GetParentBlock() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1864 |
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
|
1865 |
startblock.RefreshModel() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1866 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1867 |
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
|
1868 |
if self.EndConnected is not None: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1869 |
endblock = self.EndConnected.GetParentBlock() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1870 |
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
|
1871 |
endblock.RefreshModel() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1872 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1873 |
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
|
1874 |
elif direction in [(NORTH, SOUTH), (SOUTH, NORTH)]: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1875 |
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
|
1876 |
if self.StartConnected is not None: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1877 |
startblock = self.StartConnected.GetParentBlock() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1878 |
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
|
1879 |
startblock.RefreshModel() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1880 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1881 |
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
|
1882 |
if self.EndConnected is not None: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1883 |
endblock = self.EndConnected.GetParentBlock() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1884 |
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
|
1885 |
endblock.RefreshModel() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1886 |
else: |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1887 |
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
|
1888 |
self.Parent.RefreshBuffer() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1889 |
else: |
145 | 1890 |
rect = self.GetRedrawRect() |
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1891 |
self.ResetPoints() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1892 |
self.GeneratePoints() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1893 |
self.RefreshModel() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1894 |
self.Parent.RefreshBuffer() |
155 | 1895 |
self.Parent.RefreshRect(self.Parent.GetScrolledRect(rect), False) |
0 | 1896 |
|
80 | 1897 |
# Method called when a Motion event has been generated |
27 | 1898 |
def OnMotion(self, event, dc, scaling): |
1899 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
0 | 1900 |
if not event.Dragging(): |
1901 |
# Test if a segment has been handled |
|
1902 |
result = self.TestSegment(pos) |
|
1903 |
if result: |
|
1904 |
if result[1] in (NORTH, SOUTH): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1905 |
if self.CurrentCursor != 4: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1906 |
self.CurrentCursor = 4 |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1907 |
wx.CallAfter(self.Parent.SetCursor, CURSORS[4]) |
0 | 1908 |
elif result[1] in (EAST, WEST): |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1909 |
if self.CurrentCursor != 5: |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1910 |
self.CurrentCursor = 5 |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1911 |
wx.CallAfter(self.Parent.SetCursor, CURSORS[5]) |
144 | 1912 |
return 0, 0 |
0 | 1913 |
else: |
1914 |
# 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
|
1915 |
#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
|
1916 |
#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
|
1917 |
# 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
|
1918 |
# 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
|
1919 |
# 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
|
1920 |
# 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
|
1921 |
#else: |
86ccc89d7b0b
FBD Blocks and Variables can now be modified and wires can't be unconnected on both sides
lbessard
parents:
2
diff
changeset
|
1922 |
# 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
|
1923 |
# 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
|
1924 |
# Execute the default method for a graphic element |
90
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
1925 |
return Graphic_Element.OnMotion(self, event, dc, scaling) |
0 | 1926 |
else: |
1927 |
# Execute the default method for a graphic element |
|
90
2245e8776086
Adding support support for using PLCOpenEditor with Beremiz
lbessard
parents:
80
diff
changeset
|
1928 |
return Graphic_Element.OnMotion(self, event, dc, scaling) |
0 | 1929 |
|
1930 |
# Refreshes the wire state according to move defined and handle selected |
|
165 | 1931 |
def ProcessDragging(self, movex, movey, centered, scaling): |
0 | 1932 |
handle_type, handle = self.Handle |
1933 |
# A point has been handled |
|
1934 |
if handle_type == HANDLE_POINT: |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1935 |
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
|
1936 |
movey = max(-self.Points[handle].y + POINT_RADIUS, movey) |
145 | 1937 |
if scaling is not None: |
1938 |
movex = round(float(self.Points[handle].x + movex) / float(scaling[0])) * scaling[0] - self.Points[handle].x |
|
1939 |
movey = round(float(self.Points[handle].y + movey) / float(scaling[1])) * scaling[1] - self.Points[handle].y |
|
0 | 1940 |
# Try to connect point to a connector |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
1941 |
new_pos = wx.Point(self.Points[handle].x + movex, self.Points[handle].y + movey) |
0 | 1942 |
connector = self.Parent.FindBlockConnector(new_pos) |
1943 |
if connector: |
|
98 | 1944 |
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
|
1945 |
connector.HighlightParentBlock(True) |
0 | 1946 |
connector.Connect((self, handle)) |
1947 |
self.SetStartPointDirection(connector.GetDirection()) |
|
1948 |
self.ConnectStartPoint(connector.GetPosition(), connector) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1949 |
pos = connector.GetPosition() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1950 |
movex = pos.x - self.oldPos.x |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1951 |
movey = pos.y - self.oldPos.y |
0 | 1952 |
self.Dragging = False |
98 | 1953 |
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
|
1954 |
connector.HighlightParentBlock(True) |
0 | 1955 |
connector.Connect((self, handle)) |
1956 |
self.SetEndPointDirection(connector.GetDirection()) |
|
1957 |
self.ConnectEndPoint(connector.GetPosition(), connector) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1958 |
pos = connector.GetPosition() |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1959 |
movex = pos.x - self.oldPos.x |
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1960 |
movey = pos.y - self.oldPos.y |
0 | 1961 |
self.Dragging = False |
1962 |
elif handle == 0: |
|
1963 |
self.MoveStartPoint(new_pos) |
|
1964 |
else: |
|
1965 |
self.MoveEndPoint(new_pos) |
|
1966 |
# If there is no connector, move the point |
|
1967 |
elif handle == 0: |
|
1968 |
if self.StartConnected: |
|
1969 |
self.UnConnectStartPoint() |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1970 |
self.StartConnected.HighlightParentBlock(False) |
0 | 1971 |
self.MoveStartPoint(new_pos) |
1972 |
else: |
|
1973 |
if self.EndConnected: |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1974 |
self.EndConnected.HighlightParentBlock(False) |
0 | 1975 |
self.UnConnectEndPoint() |
1976 |
self.MoveEndPoint(new_pos) |
|
138
9c74d00ce93e
Last bugs on block and wire moving, resizing with cursor fixed
lbessard
parents:
112
diff
changeset
|
1977 |
return movex, movey |
0 | 1978 |
# A segment has been handled, move a segment |
1979 |
elif handle_type == HANDLE_SEGMENT: |
|
145 | 1980 |
return self.MoveSegment(handle[0], movex, movey, scaling) |
0 | 1981 |
# Execute the default method for a graphic element |
1982 |
else: |
|
165 | 1983 |
return Graphic_Element.ProcessDragging(self, movex, movey, centered, scaling) |
0 | 1984 |
|
1985 |
# Refreshes the wire model |
|
1986 |
def RefreshModel(self, move=True): |
|
1987 |
if self.StartConnected and self.StartPoint[1] in [WEST, NORTH]: |
|
1988 |
self.StartConnected.RefreshParentBlock() |
|
1989 |
if self.EndConnected and self.EndPoint[1] in [WEST, NORTH]: |
|
1990 |
self.EndConnected.RefreshParentBlock() |
|
1991 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
1992 |
# 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
|
1993 |
def DrawHighlightment(self, dc): |
144 | 1994 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR)) |
1995 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
1996 |
dc.SetLogicalFunction(wx.AND) |
|
1997 |
# Draw the start and end points if they are not connected or the mouse is over them |
|
1998 |
if len(self.Points) > 0 and (not self.StartConnected or self.OverStart): |
|
1999 |
dc.DrawCircle(self.Points[0].x, self.Points[0].y, POINT_RADIUS + 2) |
|
2000 |
if len(self.Points) > 1 and (not self.EndConnected or self.OverEnd): |
|
2001 |
dc.DrawCircle(self.Points[-1].x, self.Points[-1].y, POINT_RADIUS + 2) |
|
2002 |
for i in xrange(len(self.Points) - 1): |
|
2003 |
posx = min(self.Points[i].x, self.Points[i + 1].x) - 2 |
|
2004 |
posy = min(self.Points[i].y, self.Points[i + 1].y) - 2 |
|
2005 |
width = abs(self.Points[i + 1].x - self.Points[i].x) + 5 |
|
2006 |
height = abs(self.Points[i + 1].y - self.Points[i].y) + 5 |
|
2007 |
dc.DrawRectangle(posx, posy, width, height) |
|
145 | 2008 |
dc.SetLogicalFunction(wx.COPY) |
144 | 2009 |
if self.StartConnected is not None: |
2010 |
self.StartConnected.DrawHighlightment(dc) |
|
145 | 2011 |
self.StartConnected.Draw(dc) |
144 | 2012 |
if self.EndConnected is not None: |
2013 |
self.EndConnected.DrawHighlightment(dc) |
|
145 | 2014 |
self.EndConnected.Draw(dc) |
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
2015 |
|
0 | 2016 |
# Draws the wire lines and points |
2017 |
def Draw(self, dc): |
|
144 | 2018 |
Graphic_Element.Draw(self, dc) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2019 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2020 |
dc.SetBrush(wx.BLACK_BRUSH) |
0 | 2021 |
# Draw the start and end points if they are not connected or the mouse is over them |
2022 |
if len(self.Points) > 0 and (not self.StartConnected or self.OverStart): |
|
2023 |
dc.DrawCircle(self.Points[0].x, self.Points[0].y, POINT_RADIUS) |
|
2024 |
if len(self.Points) > 1 and (not self.EndConnected or self.OverEnd): |
|
2025 |
dc.DrawCircle(self.Points[-1].x, self.Points[-1].y, POINT_RADIUS) |
|
2026 |
# Draw the wire lines and the last point (it seems that DrawLines stop before the last point) |
|
2027 |
dc.DrawLines(self.Points) |
|
2028 |
dc.DrawPoint(self.Points[-1].x, self.Points[-1].y) |
|
2029 |
# Draw the segment selected in red |
|
2030 |
if self.SelectedSegment != None: |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2031 |
dc.SetPen(wx.RED_PEN) |
0 | 2032 |
dc.DrawLine(self.Points[self.SelectedSegment].x, self.Points[self.SelectedSegment].y, |
2033 |
self.Points[self.SelectedSegment + 1].x, self.Points[self.SelectedSegment + 1].y) |
|
2034 |
if self.SelectedSegment == len(self.Segments) - 1: |
|
2035 |
dc.DrawPoint(self.Points[-1].x, self.Points[-1].y) |
|
144 | 2036 |
|
0 | 2037 |
|
2038 |
#------------------------------------------------------------------------------- |
|
2039 |
# Graphic comment element |
|
2040 |
#------------------------------------------------------------------------------- |
|
2041 |
||
2042 |
""" |
|
2043 |
Class that implements a comment |
|
2044 |
""" |
|
2045 |
||
2046 |
class Comment(Graphic_Element): |
|
2047 |
||
2048 |
# Create a new comment |
|
2049 |
def __init__(self, parent, content, id = None): |
|
2050 |
Graphic_Element.__init__(self, parent) |
|
2051 |
self.Id = id |
|
2052 |
self.Content = content |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2053 |
self.Pos = wx.Point(0, 0) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2054 |
self.Size = wx.Size(0, 0) |
0 | 2055 |
|
112 | 2056 |
# Make a clone of this comment |
162 | 2057 |
def Clone(self, parent, id = None, pos = None): |
2058 |
comment = Comment(parent, self.Content, id) |
|
145 | 2059 |
if pos is not None: |
2060 |
comment.SetPosition(pos.x, pos.y) |
|
112 | 2061 |
comment.SetSize(self.Size[0], self.Size[1]) |
2062 |
return comment |
|
2063 |
||
0 | 2064 |
# Method for keeping compatibility with others |
2065 |
def Clean(self): |
|
2066 |
pass |
|
2067 |
||
2068 |
# Delete this comment by calling the corresponding method |
|
2069 |
def Delete(self): |
|
2070 |
self.Parent.DeleteComment(self) |
|
2071 |
||
2072 |
# Refresh the comment bounding box |
|
2073 |
def RefreshBoundingBox(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2074 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
0 | 2075 |
|
2076 |
# Changes the comment size |
|
2077 |
def SetSize(self, width, height): |
|
2078 |
self.Size.SetWidth(width) |
|
2079 |
self.Size.SetHeight(height) |
|
2080 |
self.RefreshBoundingBox() |
|
2081 |
||
2082 |
# Returns the comment size |
|
2083 |
def GetSize(self): |
|
2084 |
return self.Size.GetWidth(), self.Size.GetHeight() |
|
2085 |
||
2086 |
# Returns the comment minimum size |
|
2087 |
def GetMinSize(self): |
|
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2088 |
dc = wx.ClientDC(self.Parent) |
0 | 2089 |
min_width = 0 |
2090 |
min_height = 0 |
|
2091 |
# The comment minimum size is the maximum size of words in the content |
|
2092 |
for line in self.Content.splitlines(): |
|
2093 |
for word in line.split(" "): |
|
2094 |
wordwidth, wordheight = dc.GetTextExtent(word) |
|
2095 |
min_width = max(min_width, wordwidth) |
|
2096 |
min_height = max(min_height, wordheight) |
|
2097 |
return min_width + 20, min_height + 20 |
|
2098 |
||
2099 |
# Changes the comment position |
|
2100 |
def SetPosition(self, x, y): |
|
2101 |
self.Pos.x = x |
|
2102 |
self.Pos.y = y |
|
2103 |
self.RefreshBoundingBox() |
|
2104 |
||
2105 |
# Changes the comment content |
|
2106 |
def SetContent(self, content): |
|
2107 |
self.Content = content |
|
2108 |
min_width, min_height = self.GetMinSize() |
|
2109 |
self.Size[0] = max(self.Size[0], min_width) |
|
2110 |
self.Size[1] = max(self.Size[1], min_height) |
|
2111 |
self.RefreshBoundingBox() |
|
2112 |
||
2113 |
# Returns the comment content |
|
2114 |
def GetContent(self): |
|
2115 |
return self.Content |
|
2116 |
||
2117 |
# Returns the comment position |
|
2118 |
def GetPosition(self): |
|
2119 |
return self.Pos.x, self.Pos.y |
|
2120 |
||
2121 |
# Moves the comment |
|
2122 |
def Move(self, dx, dy, connected = True): |
|
2123 |
self.Pos.x += dx |
|
2124 |
self.Pos.y += dy |
|
2125 |
self.RefreshBoundingBox() |
|
2126 |
||
2127 |
# Resizes the comment with the position and the size given |
|
2128 |
def Resize(self, x, y, width, height): |
|
2129 |
self.Move(x, y) |
|
2130 |
self.SetSize(width, height) |
|
2131 |
||
2132 |
# Method called when a RightUp event have been generated |
|
27 | 2133 |
def OnRightUp(self, event, dc, scaling): |
0 | 2134 |
# Popup the default menu |
2135 |
self.Parent.PopupDefaultMenu() |
|
2136 |
||
2137 |
# Refreshes the comment model |
|
2138 |
def RefreshModel(self, move=True): |
|
2139 |
self.Parent.RefreshCommentModel(self) |
|
2140 |
||
2141 |
# Method called when a LeftDClick event have been generated |
|
27 | 2142 |
def OnLeftDClick(self, event, dc, scaling): |
0 | 2143 |
# Edit the comment content |
2144 |
self.Parent.EditCommentContent(self) |
|
2145 |
||
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
2146 |
# 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
|
2147 |
def DrawHighlightment(self, dc): |
144 | 2148 |
dc.SetPen(wx.Pen(HIGHLIGHTCOLOR)) |
2149 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
2150 |
dc.SetLogicalFunction(wx.AND) |
|
2151 |
polygon = [wx.Point(self.Pos.x - 2, self.Pos.y - 2), |
|
2152 |
wx.Point(self.Pos.x + self.Size[0] - 8, self.Pos.y - 2), |
|
2153 |
wx.Point(self.Pos.x + self.Size[0] + 2, self.Pos.y + 8), |
|
2154 |
wx.Point(self.Pos.x + self.Size[0] + 2, self.Pos.y + self.Size[1] + 2), |
|
2155 |
wx.Point(self.Pos.x - 2, self.Pos.y + self.Size[1] + 2)] |
|
2156 |
dc.DrawPolygon(polygon) |
|
2157 |
dc.SetLogicalFunction(wx.COPY) |
|
140
06d28f03f6f4
Adding highlighting on group or element when mouse is over
lbessard
parents:
138
diff
changeset
|
2158 |
|
0 | 2159 |
# Draws the comment and its content |
2160 |
def Draw(self, dc): |
|
144 | 2161 |
Graphic_Element.Draw(self, dc) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2162 |
dc.SetPen(wx.BLACK_PEN) |
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2163 |
dc.SetBrush(wx.WHITE_BRUSH) |
0 | 2164 |
# Draws the comment shape |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2165 |
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
|
2166 |
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
|
2167 |
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
|
2168 |
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
|
2169 |
wx.Point(self.Pos.x, self.Pos.y + self.Size[1])] |
0 | 2170 |
dc.DrawPolygon(polygon) |
64
dd6f693e46a1
Cleaning code for using only wxPython 2.6 class naming
lbessard
parents:
60
diff
changeset
|
2171 |
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
|
2172 |
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
|
2173 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + 10)] |
0 | 2174 |
dc.DrawLines(lines) |
2175 |
# Draws the comment content |
|
2176 |
y = self.Pos.y + 10 |
|
2177 |
for line in self.Content.splitlines(): |
|
2178 |
first = True |
|
2179 |
words = line.split(" ") |
|
2180 |
for i, word in enumerate(words): |
|
2181 |
if first: |
|
2182 |
test = word |
|
2183 |
else: |
|
2184 |
test = linetext + " " + word |
|
2185 |
wordwidth, wordheight = dc.GetTextExtent(test) |
|
2186 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
2187 |
break |
|
2188 |
if wordwidth < self.Size[0] - 20 and i < len(words) - 1: |
|
2189 |
linetext = test |
|
2190 |
first = False |
|
2191 |
else: |
|
2192 |
if wordwidth < self.Size[0] - 20 and i == len(words) - 1: |
|
2193 |
dc.DrawText(test, self.Pos.x + 10, y) |
|
2194 |
else: |
|
2195 |
dc.DrawText(linetext, self.Pos.x + 10, y) |
|
2196 |
if i == len(words) - 1: |
|
2197 |
y += wordheight + 5 |
|
2198 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
2199 |
break |
|
2200 |
dc.DrawText(word, self.Pos.x + 10, y) |
|
2201 |
else: |
|
2202 |
linetext = word |
|
2203 |
y += wordheight + 5 |
|
2204 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
2205 |
break |