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