author | Andrey Skvortsov <andrej.skvortzov@gmail.com> |
Tue, 10 Oct 2017 13:49:13 +0300 | |
changeset 1861 | 410a3bcbeb29 |
parent 1852 | 70c1cc354a8f |
child 1872 | 866fb3ab8778 |
permissions | -rw-r--r-- |
814 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
4 |
# This file is part of Beremiz, a Integrated Development Environment for |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
5 |
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival. |
814 | 6 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
7 |
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
814 | 8 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
9 |
# See COPYING file for copyrights details. |
814 | 10 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
11 |
# This program is free software; you can redistribute it and/or |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
12 |
# modify it under the terms of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
13 |
# as published by the Free Software Foundation; either version 2 |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
14 |
# of the License, or (at your option) any later version. |
814 | 15 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
16 |
# This program is distributed in the hope that it will be useful, |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
17 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
18 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
19 |
# GNU General Public License for more details. |
814 | 20 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
21 |
# You should have received a copy of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
22 |
# along with this program; if not, write to the Free Software |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1339
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 24 |
|
25 |
import wx |
|
26 |
||
1176
f4b434672204
Moved and rewrote DebugViewer and DebusDataConsumer classes
Laurent Bessard
parents:
814
diff
changeset
|
27 |
from graphics.GraphicCommons import * |
f4b434672204
Moved and rewrote DebugViewer and DebusDataConsumer classes
Laurent Bessard
parents:
814
diff
changeset
|
28 |
from graphics.DebugDataConsumer import DebugDataConsumer |
814 | 29 |
from plcopen.structures import * |
30 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
31 |
|
814 | 32 |
def GetWireSize(block): |
33 |
if isinstance(block, SFC_Step): |
|
34 |
return SFC_WIRE_MIN_SIZE + block.GetActionExtraLineNumber() * SFC_ACTION_MIN_SIZE[1] |
|
35 |
else: |
|
36 |
return SFC_WIRE_MIN_SIZE |
|
37 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
38 |
# ------------------------------------------------------------------------------- |
814 | 39 |
# Sequencial Function Chart Step |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
40 |
# ------------------------------------------------------------------------------- |
814 | 41 |
|
42 |
||
43 |
class SFC_Step(Graphic_Element, DebugDataConsumer): |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
44 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
45 |
Class that implements the graphic representation of a step |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
46 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
47 |
|
814 | 48 |
# Create a new step |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
49 |
def __init__(self, parent, name, initial=False, id=None): |
814 | 50 |
Graphic_Element.__init__(self, parent) |
51 |
DebugDataConsumer.__init__(self) |
|
52 |
self.SetName(name) |
|
53 |
self.Initial = initial |
|
54 |
self.Id = id |
|
55 |
self.Highlights = [] |
|
56 |
self.Size = wx.Size(SFC_STEP_DEFAULT_SIZE[0], SFC_STEP_DEFAULT_SIZE[1]) |
|
57 |
# Create an input and output connector |
|
58 |
if not self.Initial: |
|
59 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
|
60 |
else: |
|
61 |
self.Input = None |
|
62 |
self.Output = None |
|
63 |
self.Action = None |
|
64 |
self.PreviousValue = None |
|
65 |
self.PreviousSpreading = False |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
66 |
|
814 | 67 |
def Flush(self): |
68 |
if self.Input is not None: |
|
69 |
self.Input.Flush() |
|
70 |
self.Input = None |
|
71 |
if self.Output is not None: |
|
72 |
self.Output.Flush() |
|
73 |
self.Output = None |
|
1653
d98cc9d19a5c
fix SFC Step flush method
Surkov Sergey <surkovsv93@gmail.com>
parents:
1652
diff
changeset
|
74 |
if self.Action is not None: |
814 | 75 |
self.Action.Flush() |
76 |
self.Action = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
77 |
|
814 | 78 |
def SetForced(self, forced): |
79 |
if self.Forced != forced: |
|
80 |
self.Forced = forced |
|
81 |
if self.Visible: |
|
82 |
self.Parent.ElementNeedRefresh(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
83 |
|
814 | 84 |
def SetValue(self, value): |
85 |
self.PreviousValue = self.Value |
|
86 |
self.Value = value |
|
87 |
if self.Value != self.PreviousValue: |
|
88 |
if self.Visible: |
|
89 |
self.Parent.ElementNeedRefresh(self) |
|
90 |
self.SpreadCurrent() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
91 |
|
814 | 92 |
def SpreadCurrent(self): |
93 |
if self.Parent.Debug: |
|
94 |
spreading = self.Value |
|
95 |
if spreading and not self.PreviousSpreading: |
|
96 |
if self.Output is not None: |
|
97 |
self.Output.SpreadCurrent(True) |
|
98 |
if self.Action is not None: |
|
99 |
self.Action.SpreadCurrent(True) |
|
100 |
elif not spreading and self.PreviousSpreading: |
|
101 |
if self.Output is not None: |
|
102 |
self.Output.SpreadCurrent(False) |
|
103 |
if self.Action is not None: |
|
104 |
self.Action.SpreadCurrent(False) |
|
105 |
self.PreviousSpreading = spreading |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
106 |
|
814 | 107 |
# Make a clone of this SFC_Step |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
108 |
def Clone(self, parent, id=None, name="Step", pos=None): |
814 | 109 |
step = SFC_Step(parent, name, self.Initial, id) |
110 |
step.SetSize(self.Size[0], self.Size[1]) |
|
111 |
if pos is not None: |
|
112 |
step.SetPosition(pos.x, pos.y) |
|
113 |
else: |
|
114 |
step.SetPosition(self.Pos.x, self.Pos.y) |
|
115 |
if self.Input: |
|
116 |
step.Input = self.Input.Clone(step) |
|
117 |
if self.Output: |
|
118 |
step.Output = self.Output.Clone(step) |
|
119 |
if self.Action: |
|
120 |
step.Action = self.Action.Clone(step) |
|
121 |
return step |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
122 |
|
814 | 123 |
def GetConnectorTranslation(self, element): |
124 |
connectors = {} |
|
125 |
if self.Input is not None: |
|
126 |
connectors[self.Input] = element.Input |
|
127 |
if self.Output is not None: |
|
128 |
connectors[self.Output] = element.Output |
|
129 |
if self.Action is not None: |
|
130 |
connectors[self.Action] = element.Action |
|
131 |
return connectors |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
132 |
|
814 | 133 |
# Returns the RedrawRect |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
134 |
def GetRedrawRect(self, movex=0, movey=0): |
814 | 135 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
136 |
if self.Input: |
|
137 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
|
138 |
if self.Output: |
|
139 |
rect = rect.Union(self.Output.GetRedrawRect(movex, movey)) |
|
140 |
if self.Action: |
|
141 |
rect = rect.Union(self.Action.GetRedrawRect(movex, movey)) |
|
142 |
if movex != 0 or movey != 0: |
|
143 |
if self.Input and self.Input.IsConnected(): |
|
144 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
145 |
if self.Output and self.Output.IsConnected(): |
|
146 |
rect = rect.Union(self.Output.GetConnectedRedrawRect(movex, movey)) |
|
147 |
if self.Action and self.Action.IsConnected(): |
|
148 |
rect = rect.Union(self.Action.GetConnectedRedrawRect(movex, movey)) |
|
149 |
return rect |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
150 |
|
814 | 151 |
# Delete this step by calling the appropriate method |
152 |
def Delete(self): |
|
153 |
self.Parent.DeleteStep(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
154 |
|
814 | 155 |
# Unconnect input and output |
156 |
def Clean(self): |
|
157 |
if self.Input: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
158 |
self.Input.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
814 | 159 |
if self.Output: |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
160 |
self.Output.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
814 | 161 |
if self.Action: |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
162 |
self.Action.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
163 |
|
814 | 164 |
# Refresh the size of text for name |
165 |
def RefreshNameSize(self): |
|
166 |
self.NameSize = self.Parent.GetTextExtent(self.Name) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
167 |
|
814 | 168 |
# Add output connector to step |
169 |
def AddInput(self): |
|
170 |
if not self.Input: |
|
171 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH) |
|
172 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
173 |
|
814 | 174 |
# Remove output connector from step |
175 |
def RemoveInput(self): |
|
176 |
if self.Input: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
177 |
self.Input.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
814 | 178 |
self.Input = None |
179 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
180 |
|
814 | 181 |
# Add output connector to step |
182 |
def AddOutput(self): |
|
183 |
if not self.Output: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
184 |
self.Output = Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH, onlyone=True) |
814 | 185 |
self.RefreshBoundingBox() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
186 |
|
814 | 187 |
# Remove output connector from step |
188 |
def RemoveOutput(self): |
|
189 |
if self.Output: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
190 |
self.Output.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
814 | 191 |
self.Output = None |
192 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
193 |
|
814 | 194 |
# Add action connector to step |
195 |
def AddAction(self): |
|
196 |
if not self.Action: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
197 |
self.Action = Connector(self, "", None, wx.Point(self.Size[0], self.Size[1] / 2), EAST, onlyone=True) |
814 | 198 |
self.RefreshBoundingBox() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
199 |
|
814 | 200 |
# Remove action connector from step |
201 |
def RemoveAction(self): |
|
202 |
if self.Action: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
203 |
self.Action.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
814 | 204 |
self.Action = None |
205 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
206 |
|
814 | 207 |
# Refresh the step bounding box |
208 |
def RefreshBoundingBox(self): |
|
1848
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
209 |
# TODO: check and remove dead coded |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
210 |
# |
814 | 211 |
# Calculate the bounding box size |
1848
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
212 |
# if self.Action: |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
213 |
# bbx_width = self.Size[0] + CONNECTOR_SIZE |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
214 |
# else: |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
215 |
# bbx_width = self.Size[0] |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
216 |
# if self.Initial: |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
217 |
# bbx_y = self.Pos.y |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
218 |
# bbx_height = self.Size[1] |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
219 |
# if self.Output: |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
220 |
# bbx_height += CONNECTOR_SIZE |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
221 |
# else: |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
222 |
# bbx_y = self.Pos.y - CONNECTOR_SIZE |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
223 |
# bbx_height = self.Size[1] + CONNECTOR_SIZE |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
224 |
# if self.Output: |
201e0f1896c4
comment out unused code SFC_Step.RefreshBoundingBox()
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
225 |
# bbx_height += CONNECTOR_SIZE |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
226 |
# self.BoundingBox = wx.Rect(self.Pos.x, bbx_y, bbx_width + 1, bbx_height + 1) |
814 | 227 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
228 |
|
814 | 229 |
# Refresh the positions of the step connectors |
230 |
def RefreshConnectors(self): |
|
231 |
scaling = self.Parent.GetScaling() |
|
232 |
horizontal_pos = self.Size[0] / 2 |
|
233 |
vertical_pos = self.Size[1] / 2 |
|
234 |
if scaling is not None: |
|
235 |
horizontal_pos = round(float(self.Pos.x + horizontal_pos) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
236 |
vertical_pos = round(float(self.Pos.y + vertical_pos) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
237 |
# Update input position if it exists |
|
238 |
if self.Input: |
|
239 |
self.Input.SetPosition(wx.Point(horizontal_pos, 0)) |
|
240 |
# Update output position |
|
241 |
if self.Output: |
|
242 |
self.Output.SetPosition(wx.Point(horizontal_pos, self.Size[1])) |
|
243 |
# Update action position if it exists |
|
244 |
if self.Action: |
|
245 |
self.Action.SetPosition(wx.Point(self.Size[0], vertical_pos)) |
|
246 |
self.RefreshConnected() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
247 |
|
814 | 248 |
# Refresh the position of wires connected to step |
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1849
diff
changeset
|
249 |
def RefreshConnected(self, exclude=None): |
814 | 250 |
if self.Input: |
251 |
self.Input.MoveConnected(exclude) |
|
252 |
if self.Output: |
|
253 |
self.Output.MoveConnected(exclude) |
|
254 |
if self.Action: |
|
255 |
self.Action.MoveConnected(exclude) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
256 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
257 |
# Returns the step connector that starts with the point given if it exists |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
258 |
def GetConnector(self, position, name=None): |
814 | 259 |
# if a name is given |
260 |
if name is not None: |
|
261 |
# Test input, output and action connector if they exists |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
262 |
# if self.Input and name == self.Input.GetName(): |
814 | 263 |
# return self.Input |
264 |
if self.Output and name == self.Output.GetName(): |
|
265 |
return self.Output |
|
266 |
if self.Action and name == self.Action.GetName(): |
|
267 |
return self.Action |
|
268 |
connectors = [] |
|
269 |
# Test input connector if it exists |
|
270 |
if self.Input: |
|
271 |
connectors.append(self.Input) |
|
272 |
# Test output connector if it exists |
|
273 |
if self.Output: |
|
274 |
connectors.append(self.Output) |
|
275 |
# Test action connector if it exists |
|
276 |
if self.Action: |
|
277 |
connectors.append(self.Action) |
|
278 |
return self.FindNearestConnector(position, connectors) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
279 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
280 |
# Returns action step connector |
814 | 281 |
def GetActionConnector(self): |
282 |
return self.Action |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
283 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
284 |
# Returns input and output step connectors |
814 | 285 |
def GetConnectors(self): |
286 |
connectors = {"inputs": [], "outputs": []} |
|
287 |
if self.Input: |
|
288 |
connectors["inputs"].append(self.Input) |
|
289 |
if self.Output: |
|
290 |
connectors["outputs"].append(self.Output) |
|
291 |
return connectors |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
292 |
|
814 | 293 |
# Test if point given is on step input or output connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
294 |
def TestConnector(self, pt, direction=None, exclude=True): |
814 | 295 |
# Test input connector if it exists |
296 |
if self.Input and self.Input.TestPoint(pt, direction, exclude): |
|
297 |
return self.Input |
|
298 |
# Test output connector |
|
299 |
if self.Output and self.Output.TestPoint(pt, direction, exclude): |
|
300 |
return self.Output |
|
301 |
# Test action connector |
|
302 |
if self.Action and self.Action.TestPoint(pt, direction, exclude): |
|
303 |
return self.Action |
|
304 |
return None |
|
305 |
||
306 |
# Changes the step name |
|
307 |
def SetName(self, name): |
|
308 |
self.Name = name |
|
309 |
self.RefreshNameSize() |
|
310 |
||
311 |
# Returns the step name |
|
312 |
def GetName(self): |
|
313 |
return self.Name |
|
314 |
||
315 |
# Returns the step initial property |
|
316 |
def GetInitial(self): |
|
317 |
return self.Initial |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
318 |
|
814 | 319 |
# Returns the connector connected to input |
320 |
def GetPreviousConnector(self): |
|
321 |
if self.Input: |
|
322 |
wires = self.Input.GetWires() |
|
323 |
if len(wires) == 1: |
|
324 |
return wires[0][0].GetOtherConnected(self.Input) |
|
325 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
326 |
|
814 | 327 |
# Returns the connector connected to output |
328 |
def GetNextConnector(self): |
|
329 |
if self.Output: |
|
330 |
wires = self.Output.GetWires() |
|
331 |
if len(wires) == 1: |
|
332 |
return wires[0][0].GetOtherConnected(self.Output) |
|
333 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
334 |
|
814 | 335 |
# Returns the connector connected to action |
336 |
def GetActionConnected(self): |
|
337 |
if self.Action: |
|
338 |
wires = self.Action.GetWires() |
|
339 |
if len(wires) == 1: |
|
340 |
return wires[0][0].GetOtherConnected(self.Action) |
|
341 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
342 |
|
814 | 343 |
# Returns the number of action line |
344 |
def GetActionExtraLineNumber(self): |
|
345 |
if self.Action: |
|
346 |
wires = self.Action.GetWires() |
|
347 |
if len(wires) != 1: |
|
348 |
return 0 |
|
349 |
action_block = wires[0][0].GetOtherConnected(self.Action).GetParentBlock() |
|
350 |
return max(0, action_block.GetLineNumber() - 1) |
|
351 |
return 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
352 |
|
814 | 353 |
# Returns the step minimum size |
354 |
def GetMinSize(self): |
|
355 |
text_width, text_height = self.Parent.GetTextExtent(self.Name) |
|
356 |
if self.Initial: |
|
357 |
return text_width + 14, text_height + 14 |
|
358 |
else: |
|
359 |
return text_width + 10, text_height + 10 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
360 |
|
814 | 361 |
# Updates the step size |
362 |
def UpdateSize(self, width, height): |
|
363 |
diffx = self.Size.GetWidth() / 2 - width / 2 |
|
364 |
diffy = height - self.Size.GetHeight() |
|
365 |
self.Move(diffx, 0) |
|
366 |
Graphic_Element.SetSize(self, width, height) |
|
367 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
368 |
self.RefreshConnected() |
|
369 |
else: |
|
370 |
self.RefreshOutputPosition((0, diffy)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
371 |
|
814 | 372 |
# Align input element with this step |
373 |
def RefreshInputPosition(self): |
|
374 |
if self.Input: |
|
375 |
current_pos = self.Input.GetPosition(False) |
|
376 |
input = self.GetPreviousConnector() |
|
377 |
if input: |
|
378 |
input_pos = input.GetPosition(False) |
|
379 |
diffx = current_pos.x - input_pos.x |
|
380 |
input_block = input.GetParentBlock() |
|
381 |
if isinstance(input_block, SFC_Divergence): |
|
382 |
input_block.MoveConnector(input, diffx) |
|
383 |
else: |
|
384 |
if isinstance(input_block, SFC_Step): |
|
385 |
input_block.MoveActionBlock((diffx, 0)) |
|
386 |
input_block.Move(diffx, 0) |
|
387 |
input_block.RefreshInputPosition() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
388 |
|
814 | 389 |
# Align output element with this step |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
390 |
def RefreshOutputPosition(self, move=None): |
814 | 391 |
if self.Output: |
392 |
wires = self.Output.GetWires() |
|
393 |
if len(wires) != 1: |
|
394 |
return |
|
395 |
current_pos = self.Output.GetPosition(False) |
|
396 |
output = wires[0][0].GetOtherConnected(self.Output) |
|
397 |
output_pos = output.GetPosition(False) |
|
398 |
diffx = current_pos.x - output_pos.x |
|
399 |
output_block = output.GetParentBlock() |
|
400 |
wire_size = SFC_WIRE_MIN_SIZE + self.GetActionExtraLineNumber() * SFC_ACTION_MIN_SIZE[1] |
|
401 |
diffy = wire_size - output_pos.y + current_pos.y |
|
402 |
if diffy != 0: |
|
403 |
if isinstance(output_block, SFC_Step): |
|
404 |
output_block.MoveActionBlock((diffx, diffy)) |
|
405 |
wires[0][0].SetPoints([wx.Point(current_pos.x, current_pos.y + wire_size), |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
406 |
wx.Point(current_pos.x, current_pos.y)]) |
814 | 407 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
408 |
output_block.Move(diffx, diffy, self.Parent.Wires) |
|
409 |
output_block.RefreshOutputPosition((diffx, diffy)) |
|
410 |
else: |
|
411 |
output_block.RefreshPosition() |
|
412 |
elif move: |
|
413 |
if isinstance(output_block, SFC_Step): |
|
414 |
output_block.MoveActionBlock(move) |
|
415 |
wires[0][0].Move(move[0], move[1], True) |
|
416 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
417 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
418 |
output_block.RefreshOutputPosition(move) |
|
419 |
else: |
|
420 |
output_block.RefreshPosition() |
|
421 |
elif isinstance(output_block, SFC_Divergence): |
|
422 |
output_block.MoveConnector(output, diffx) |
|
423 |
else: |
|
424 |
if isinstance(output_block, SFC_Step): |
|
425 |
output_block.MoveActionBlock((diffx, 0)) |
|
426 |
output_block.Move(diffx, 0) |
|
427 |
output_block.RefreshOutputPosition() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
428 |
|
814 | 429 |
# Refresh action element with this step |
430 |
def MoveActionBlock(self, move): |
|
431 |
if self.Action: |
|
432 |
wires = self.Action.GetWires() |
|
433 |
if len(wires) != 1: |
|
434 |
return |
|
435 |
action_block = wires[0][0].GetOtherConnected(self.Action).GetParentBlock() |
|
436 |
action_block.Move(move[0], move[1], self.Parent.Wires) |
|
437 |
wires[0][0].Move(move[0], move[1], True) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
438 |
|
814 | 439 |
# Resize the divergence from position and size given |
440 |
def Resize(self, x, y, width, height): |
|
441 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
442 |
self.UpdateSize(width, height) |
|
443 |
else: |
|
444 |
Graphic_Element.Resize(self, x, y, width, height) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
445 |
|
814 | 446 |
# Method called when a LeftDClick event have been generated |
447 |
def OnLeftDClick(self, event, dc, scaling): |
|
448 |
# Edit the step properties |
|
449 |
self.Parent.EditStepContent(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
450 |
|
814 | 451 |
# Method called when a RightUp event have been generated |
452 |
def OnRightUp(self, event, dc, scaling): |
|
453 |
# Popup the menu with special items for a step |
|
454 |
self.Parent.PopupDefaultMenu() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
455 |
|
814 | 456 |
# Refreshes the step state according to move defined and handle selected |
457 |
def ProcessDragging(self, movex, movey, event, scaling): |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
458 |
handle_type, _handle = self.Handle |
814 | 459 |
if handle_type == HANDLE_MOVE: |
460 |
movex = max(-self.BoundingBox.x, movex) |
|
461 |
movey = max(-self.BoundingBox.y, movey) |
|
462 |
if scaling is not None: |
|
463 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
464 |
movey = round(float(self.Pos.y + movey) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
465 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
466 |
self.Move(movex, movey) |
|
467 |
self.RefreshConnected() |
|
468 |
return movex, movey |
|
469 |
elif self.Initial: |
|
470 |
self.MoveActionBlock((movex, movey)) |
|
471 |
self.Move(movex, movey, self.Parent.Wires) |
|
472 |
self.RefreshOutputPosition((movex, movey)) |
|
473 |
return movex, movey |
|
474 |
else: |
|
475 |
self.MoveActionBlock((movex, 0)) |
|
476 |
self.Move(movex, 0) |
|
477 |
self.RefreshInputPosition() |
|
478 |
self.RefreshOutputPosition() |
|
479 |
return movex, 0 |
|
480 |
else: |
|
481 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
482 |
|
814 | 483 |
# Refresh input element model |
484 |
def RefreshInputModel(self): |
|
485 |
if self.Input: |
|
486 |
input = self.GetPreviousConnector() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
487 |
if input: |
814 | 488 |
input_block = input.GetParentBlock() |
489 |
input_block.RefreshModel(False) |
|
490 |
if not isinstance(input_block, SFC_Divergence): |
|
491 |
input_block.RefreshInputModel() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
492 |
|
814 | 493 |
# Refresh output element model |
494 |
def RefreshOutputModel(self, move=False): |
|
495 |
if self.Output: |
|
496 |
output = self.GetNextConnector() |
|
497 |
if output: |
|
498 |
output_block = output.GetParentBlock() |
|
499 |
output_block.RefreshModel(False) |
|
500 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
501 |
output_block.RefreshOutputModel(move) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
502 |
|
814 | 503 |
# Refreshes the step model |
504 |
def RefreshModel(self, move=True): |
|
505 |
self.Parent.RefreshStepModel(self) |
|
506 |
if self.Action: |
|
507 |
action = self.GetActionConnected() |
|
508 |
if action: |
|
509 |
action_block = action.GetParentBlock() |
|
510 |
action_block.RefreshModel(False) |
|
511 |
# If step has moved, refresh the model of wires connected to output |
|
512 |
if move: |
|
513 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
514 |
self.RefreshInputModel() |
|
515 |
self.RefreshOutputModel(self.Initial) |
|
516 |
elif self.Output: |
|
517 |
self.Output.RefreshWires() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
518 |
|
814 | 519 |
# Adds an highlight to the connection |
520 |
def AddHighlight(self, infos, start, end, highlight_type): |
|
521 |
if infos[0] == "name" and start[0] == 0 and end[0] == 0: |
|
522 |
AddHighlight(self.Highlights, (start, end, highlight_type)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
523 |
|
814 | 524 |
# Removes an highlight from the connection |
525 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
|
526 |
if infos[0] == "name": |
|
527 |
RemoveHighlight(self.Highlights, (start, end, highlight_type)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
528 |
|
814 | 529 |
# Removes all the highlights of one particular type from the connection |
530 |
def ClearHighlight(self, highlight_type=None): |
|
531 |
ClearHighlights(self.Highlights, highlight_type) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
532 |
|
814 | 533 |
# Draws step |
534 |
def Draw(self, dc): |
|
535 |
Graphic_Element.Draw(self, dc) |
|
536 |
if self.Value: |
|
537 |
if self.Forced: |
|
538 |
dc.SetPen(MiterPen(wx.CYAN)) |
|
539 |
else: |
|
540 |
dc.SetPen(MiterPen(wx.GREEN)) |
|
541 |
elif self.Forced: |
|
542 |
dc.SetPen(MiterPen(wx.BLUE)) |
|
543 |
else: |
|
544 |
dc.SetPen(MiterPen(wx.BLACK)) |
|
545 |
dc.SetBrush(wx.WHITE_BRUSH) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
546 |
|
814 | 547 |
if getattr(dc, "printing", False): |
548 |
name_size = dc.GetTextExtent(self.Name) |
|
549 |
else: |
|
550 |
name_size = self.NameSize |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
551 |
|
814 | 552 |
# Draw two rectangles for representing the step |
553 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
554 |
if self.Initial: |
|
555 |
dc.DrawRectangle(self.Pos.x + 2, self.Pos.y + 2, self.Size[0] - 3, self.Size[1] - 3) |
|
556 |
# Draw step name |
|
557 |
name_pos = (self.Pos.x + (self.Size[0] - name_size[0]) / 2, |
|
558 |
self.Pos.y + (self.Size[1] - name_size[1]) / 2) |
|
559 |
dc.DrawText(self.Name, name_pos[0], name_pos[1]) |
|
560 |
# Draw input and output connectors |
|
561 |
if self.Input: |
|
562 |
self.Input.Draw(dc) |
|
563 |
if self.Output: |
|
564 |
self.Output.Draw(dc) |
|
565 |
if self.Action: |
|
566 |
self.Action.Draw(dc) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
567 |
|
814 | 568 |
if not getattr(dc, "printing", False): |
569 |
DrawHighlightedText(dc, self.Name, self.Highlights, name_pos[0], name_pos[1]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
570 |
|
814 | 571 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
572 |
# ------------------------------------------------------------------------------- |
814 | 573 |
# Sequencial Function Chart Transition |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
574 |
# ------------------------------------------------------------------------------- |
814 | 575 |
|
576 |
||
577 |
class SFC_Transition(Graphic_Element, DebugDataConsumer): |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
578 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
579 |
Class that implements the graphic representation of a transition |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
580 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
581 |
|
814 | 582 |
# Create a new transition |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
583 |
def __init__(self, parent, type="reference", condition=None, priority=0, id=None): |
814 | 584 |
Graphic_Element.__init__(self, parent) |
585 |
DebugDataConsumer.__init__(self) |
|
586 |
self.Type = None |
|
587 |
self.Id = id |
|
588 |
self.Priority = 0 |
|
589 |
self.Size = wx.Size(SFC_TRANSITION_SIZE[0], SFC_TRANSITION_SIZE[1]) |
|
590 |
# Create an input and output connector |
|
1758
845ca626db09
clean-up: fix PEP8 E222 multiple spaces after operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1757
diff
changeset
|
591 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH, onlyone=True) |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
592 |
self.Output = Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH, onlyone=True) |
814 | 593 |
self.SetType(type, condition) |
594 |
self.SetPriority(priority) |
|
595 |
self.Highlights = {} |
|
596 |
self.PreviousValue = None |
|
597 |
self.PreviousSpreading = False |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
598 |
|
814 | 599 |
def Flush(self): |
600 |
if self.Input is not None: |
|
601 |
self.Input.Flush() |
|
602 |
self.Input = None |
|
603 |
if self.Output is not None: |
|
604 |
self.Output.Flush() |
|
605 |
self.Output = None |
|
606 |
if self.Type == "connection" and self.Condition is not None: |
|
607 |
self.Condition.Flush() |
|
608 |
self.Condition = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
609 |
|
814 | 610 |
def SetForced(self, forced): |
611 |
if self.Forced != forced: |
|
612 |
self.Forced = forced |
|
613 |
if self.Visible: |
|
614 |
self.Parent.ElementNeedRefresh(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
615 |
|
814 | 616 |
def SetValue(self, value): |
617 |
self.PreviousValue = self.Value |
|
618 |
self.Value = value |
|
619 |
if self.Value != self.PreviousValue: |
|
620 |
if self.Visible: |
|
621 |
self.Parent.ElementNeedRefresh(self) |
|
622 |
self.SpreadCurrent() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
623 |
|
814 | 624 |
def SpreadCurrent(self): |
625 |
if self.Parent.Debug: |
|
626 |
if self.Value is None: |
|
627 |
self.Value = False |
|
628 |
spreading = self.Input.ReceivingCurrent() & self.Value |
|
629 |
if spreading and not self.PreviousSpreading: |
|
630 |
self.Output.SpreadCurrent(True) |
|
631 |
elif not spreading and self.PreviousSpreading: |
|
632 |
self.Output.SpreadCurrent(False) |
|
633 |
self.PreviousSpreading = spreading |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
634 |
|
814 | 635 |
# Make a clone of this SFC_Transition |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
636 |
def Clone(self, parent, id=None, pos=None): |
814 | 637 |
transition = SFC_Transition(parent, self.Type, self.Condition, self.Priority, id) |
638 |
transition.SetSize(self.Size[0], self.Size[1]) |
|
639 |
if pos is not None: |
|
640 |
transition.SetPosition(pos.x, pos.y) |
|
641 |
else: |
|
642 |
transition.SetPosition(self.Pos.x, self.Pos.y) |
|
643 |
transition.Input = self.Input.Clone(transition) |
|
644 |
transition.Output = self.Output.Clone(transition) |
|
645 |
if self.Type == "connection": |
|
646 |
transition.Condition = self.Condition.Clone(transition) |
|
647 |
return transition |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
648 |
|
814 | 649 |
def GetConnectorTranslation(self, element): |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
650 |
connectors = {self.Input: element.Input, self.Output: element.Output} |
814 | 651 |
if self.Type == "connection" and self.Condition is not None: |
652 |
connectors[self.Condition] = element.Condition |
|
653 |
return connectors |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
654 |
|
814 | 655 |
# Returns the RedrawRect |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
656 |
def GetRedrawRect(self, movex=0, movey=0): |
814 | 657 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
1652
be605b2e6e3a
fix redraw debug instance tab after transferring new build to PLC. closes #15
Surkov Sergey <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
658 |
if self.Input: |
be605b2e6e3a
fix redraw debug instance tab after transferring new build to PLC. closes #15
Surkov Sergey <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
659 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
be605b2e6e3a
fix redraw debug instance tab after transferring new build to PLC. closes #15
Surkov Sergey <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
660 |
if self.Output: |
be605b2e6e3a
fix redraw debug instance tab after transferring new build to PLC. closes #15
Surkov Sergey <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
661 |
rect = rect.Union(self.Output.GetRedrawRect(movex, movey)) |
814 | 662 |
if movex != 0 or movey != 0: |
663 |
if self.Input.IsConnected(): |
|
664 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
665 |
if self.Output.IsConnected(): |
|
666 |
rect = rect.Union(self.Output.GetConnectedRedrawRect(movex, movey)) |
|
667 |
if self.Type == "connection" and self.Condition.IsConnected(): |
|
668 |
rect = rect.Union(self.Condition.GetConnectedRedrawRect(movex, movey)) |
|
669 |
return rect |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
670 |
|
814 | 671 |
# Forbids to change the transition size |
672 |
def SetSize(self, width, height): |
|
673 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
674 |
Graphic_Element.SetSize(self, width, height) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
675 |
|
814 | 676 |
# Forbids to resize the transition |
677 |
def Resize(self, x, y, width, height): |
|
678 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
679 |
Graphic_Element.Resize(self, x, y, width, height) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
680 |
|
814 | 681 |
# Refresh the size of text for name |
682 |
def RefreshConditionSize(self): |
|
683 |
if self.Type != "connection": |
|
684 |
if self.Condition != "": |
|
685 |
self.ConditionSize = self.Parent.GetTextExtent(self.Condition) |
|
686 |
else: |
|
687 |
self.ConditionSize = self.Parent.GetTextExtent("Transition") |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
688 |
|
814 | 689 |
# Refresh the size of text for name |
690 |
def RefreshPrioritySize(self): |
|
691 |
if self.Priority != "": |
|
692 |
self.PrioritySize = self.Parent.GetTextExtent(str(self.Priority)) |
|
693 |
else: |
|
694 |
self.PrioritySize = None |
|
695 |
||
696 |
# Delete this transition by calling the appropriate method |
|
697 |
def Delete(self): |
|
698 |
self.Parent.DeleteTransition(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
699 |
|
814 | 700 |
# Unconnect input and output |
701 |
def Clean(self): |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
702 |
self.Input.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
703 |
self.Output.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
814 | 704 |
if self.Type == "connection": |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
705 |
self.Condition.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
706 |
|
814 | 707 |
# Returns if the point given is in the bounding box |
708 |
def HitTest(self, pt, connectors=True): |
|
709 |
if self.Type != "connection": |
|
710 |
# Calculate the bounding box of the condition outside the transition |
|
711 |
text_width, text_height = self.ConditionSize |
|
712 |
text_bbx = wx.Rect(self.Pos.x + self.Size[0] + 5, |
|
713 |
self.Pos.y + (self.Size[1] - text_height) / 2, |
|
714 |
text_width, |
|
715 |
text_height) |
|
716 |
test_text = text_bbx.InsideXY(pt.x, pt.y) |
|
717 |
else: |
|
718 |
test_text = False |
|
719 |
return test_text or Graphic_Element.HitTest(self, pt, connectors) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
720 |
|
814 | 721 |
# Refresh the transition bounding box |
722 |
def RefreshBoundingBox(self): |
|
723 |
bbx_x, bbx_y, bbx_width, bbx_height = self.Pos.x, self.Pos.y, self.Size[0], self.Size[1] |
|
724 |
if self.Priority != 0: |
|
725 |
bbx_y = self.Pos.y - self.PrioritySize[1] - 2 |
|
726 |
bbx_width = max(self.Size[0], self.PrioritySize[0]) |
|
727 |
bbx_height = self.Size[1] + self.PrioritySize[1] + 2 |
|
728 |
if self.Type == "connection": |
|
729 |
bbx_x = self.Pos.x - CONNECTOR_SIZE |
|
730 |
bbx_width = bbx_width + CONNECTOR_SIZE |
|
731 |
else: |
|
732 |
text_width, text_height = self.ConditionSize |
|
733 |
# Calculate the bounding box size |
|
734 |
bbx_width = max(bbx_width, self.Size[0] + 5 + text_width) |
|
735 |
bbx_y = min(bbx_y, self.Pos.y - max(0, (text_height - self.Size[1]) / 2)) |
|
736 |
bbx_height = max(bbx_height, self.Pos.y - bbx_y + (self.Size[1] + text_height) / 2) |
|
737 |
self.BoundingBox = wx.Rect(bbx_x, bbx_y, bbx_width + 1, bbx_height + 1) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
738 |
|
814 | 739 |
# Returns the connector connected to input |
740 |
def GetPreviousConnector(self): |
|
741 |
wires = self.Input.GetWires() |
|
742 |
if len(wires) == 1: |
|
743 |
return wires[0][0].GetOtherConnected(self.Input) |
|
744 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
745 |
|
814 | 746 |
# Returns the connector connected to output |
747 |
def GetNextConnector(self): |
|
748 |
wires = self.Output.GetWires() |
|
749 |
if len(wires) == 1: |
|
750 |
return wires[0][0].GetOtherConnected(self.Output) |
|
751 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
752 |
|
814 | 753 |
# Refresh the positions of the transition connectors |
754 |
def RefreshConnectors(self): |
|
755 |
scaling = self.Parent.GetScaling() |
|
756 |
horizontal_pos = self.Size[0] / 2 |
|
757 |
vertical_pos = self.Size[1] / 2 |
|
758 |
if scaling is not None: |
|
759 |
horizontal_pos = round(float(self.Pos.x + horizontal_pos) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
760 |
vertical_pos = round(float(self.Pos.y + vertical_pos) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
761 |
# Update input position |
|
762 |
self.Input.SetPosition(wx.Point(horizontal_pos, 0)) |
|
763 |
# Update output position |
|
764 |
self.Output.SetPosition(wx.Point(horizontal_pos, self.Size[1])) |
|
765 |
if self.Type == "connection": |
|
766 |
self.Condition.SetPosition(wx.Point(0, vertical_pos)) |
|
767 |
self.RefreshConnected() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
768 |
|
814 | 769 |
# Refresh the position of the wires connected to transition |
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1849
diff
changeset
|
770 |
def RefreshConnected(self, exclude=None): |
814 | 771 |
self.Input.MoveConnected(exclude) |
772 |
self.Output.MoveConnected(exclude) |
|
773 |
if self.Type == "connection": |
|
774 |
self.Condition.MoveConnected(exclude) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
775 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
776 |
# Returns the transition connector that starts with the point given if it exists |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
777 |
def GetConnector(self, position, name=None): |
814 | 778 |
# if a name is given |
779 |
if name is not None: |
|
780 |
# Test input and output connector |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
781 |
# if name == self.Input.GetName(): |
814 | 782 |
# return self.Input |
783 |
if name == self.Output.GetName(): |
|
784 |
return self.Output |
|
785 |
if self.Type == "connection" and name == self.Condition.GetName(): |
|
786 |
return self.Condition |
|
787 |
connectors = [self.Input, self.Output] |
|
788 |
if self.Type == "connection": |
|
789 |
connectors.append(self.Condition) |
|
790 |
return self.FindNearestConnector(position, connectors) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
791 |
|
814 | 792 |
# Returns the transition condition connector |
793 |
def GetConditionConnector(self): |
|
794 |
if self.Type == "connection": |
|
795 |
return self.Condition |
|
796 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
797 |
|
814 | 798 |
# Returns input and output transition connectors |
799 |
def GetConnectors(self): |
|
800 |
return {"inputs": [self.Input], "outputs": [self.Output]} |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
801 |
|
814 | 802 |
# Test if point given is on transition input or output connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
803 |
def TestConnector(self, pt, direction=None, exclude=True): |
814 | 804 |
# Test input connector |
805 |
if self.Input.TestPoint(pt, direction, exclude): |
|
806 |
return self.Input |
|
807 |
# Test output connector |
|
808 |
if self.Output.TestPoint(pt, direction, exclude): |
|
809 |
return self.Output |
|
810 |
# Test condition connector |
|
811 |
if self.Type == "connection" and self.Condition.TestPoint(pt, direction, exclude): |
|
812 |
return self.Condition |
|
813 |
return None |
|
814 |
||
815 |
# Changes the transition type |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
816 |
def SetType(self, type, condition=None): |
814 | 817 |
if self.Type != type: |
818 |
if self.Type == "connection": |
|
1757
0de89da92ee0
clean-up: fix PEP8 E111 indentation is not a multiple of four
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1754
diff
changeset
|
819 |
self.Condition.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
814 | 820 |
self.Type = type |
821 |
if type == "connection": |
|
822 |
self.Condition = Connector(self, "", "BOOL", wx.Point(0, self.Size[1] / 2), WEST) |
|
823 |
else: |
|
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
824 |
if condition is None: |
814 | 825 |
condition = "" |
826 |
self.Condition = condition |
|
827 |
self.RefreshConditionSize() |
|
828 |
elif self.Type != "connection": |
|
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
829 |
if condition is None: |
814 | 830 |
condition = "" |
831 |
self.Condition = condition |
|
832 |
self.RefreshConditionSize() |
|
833 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
834 |
|
814 | 835 |
# Returns the transition type |
836 |
def GetType(self): |
|
837 |
return self.Type |
|
838 |
||
839 |
# Changes the transition priority |
|
840 |
def SetPriority(self, priority): |
|
841 |
self.Priority = priority |
|
842 |
self.RefreshPrioritySize() |
|
843 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
844 |
|
814 | 845 |
# Returns the transition type |
846 |
def GetPriority(self): |
|
847 |
return self.Priority |
|
848 |
||
849 |
# Returns the transition condition |
|
850 |
def GetCondition(self): |
|
851 |
if self.Type != "connection": |
|
852 |
return self.Condition |
|
853 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
854 |
|
814 | 855 |
# Returns the transition minimum size |
856 |
def GetMinSize(self): |
|
857 |
return SFC_TRANSITION_SIZE |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
858 |
|
814 | 859 |
# Align input element with this step |
860 |
def RefreshInputPosition(self): |
|
861 |
current_pos = self.Input.GetPosition(False) |
|
862 |
input = self.GetPreviousConnector() |
|
863 |
if input: |
|
864 |
input_pos = input.GetPosition(False) |
|
865 |
diffx = current_pos.x - input_pos.x |
|
866 |
input_block = input.GetParentBlock() |
|
867 |
if isinstance(input_block, SFC_Divergence): |
|
868 |
input_block.MoveConnector(input, diffx) |
|
869 |
else: |
|
870 |
if isinstance(input_block, SFC_Step): |
|
871 |
input_block.MoveActionBlock((diffx, 0)) |
|
872 |
input_block.Move(diffx, 0) |
|
873 |
input_block.RefreshInputPosition() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
874 |
|
814 | 875 |
# Align output element with this step |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
876 |
def RefreshOutputPosition(self, move=None): |
814 | 877 |
wires = self.Output.GetWires() |
878 |
if len(wires) != 1: |
|
879 |
return |
|
880 |
current_pos = self.Output.GetPosition(False) |
|
881 |
output = wires[0][0].GetOtherConnected(self.Output) |
|
882 |
output_pos = output.GetPosition(False) |
|
883 |
diffx = current_pos.x - output_pos.x |
|
884 |
output_block = output.GetParentBlock() |
|
885 |
if move: |
|
886 |
if isinstance(output_block, SFC_Step): |
|
887 |
output_block.MoveActionBlock(move) |
|
888 |
wires[0][0].Move(move[0], move[1], True) |
|
889 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
890 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
891 |
output_block.RefreshOutputPosition(move) |
|
892 |
else: |
|
893 |
output_block.RefreshPosition() |
|
894 |
elif isinstance(output_block, SFC_Divergence): |
|
895 |
output_block.MoveConnector(output, diffx) |
|
896 |
else: |
|
897 |
if isinstance(output_block, SFC_Step): |
|
898 |
output_block.MoveActionBlock((diffx, 0)) |
|
899 |
output_block.Move(diffx, 0) |
|
900 |
output_block.RefreshOutputPosition() |
|
901 |
||
902 |
# Method called when a LeftDClick event have been generated |
|
903 |
def OnLeftDClick(self, event, dc, scaling): |
|
904 |
# Edit the transition properties |
|
905 |
self.Parent.EditTransitionContent(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
906 |
|
814 | 907 |
# Method called when a RightUp event have been generated |
908 |
def OnRightUp(self, event, dc, scaling): |
|
909 |
# Popup the menu with special items for a step |
|
910 |
self.Parent.PopupDefaultMenu() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
911 |
|
814 | 912 |
# Refreshes the transition state according to move defined and handle selected |
913 |
def ProcessDragging(self, movex, movey, event, scaling): |
|
914 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
915 |
movex = max(-self.BoundingBox.x, movex) |
|
916 |
if scaling is not None: |
|
917 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
918 |
self.Move(movex, 0) |
|
919 |
self.RefreshInputPosition() |
|
920 |
self.RefreshOutputPosition() |
|
921 |
return movex, 0 |
|
922 |
else: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
923 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling, width_fac=2, height_fac=2) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
924 |
|
814 | 925 |
# Refresh input element model |
926 |
def RefreshInputModel(self): |
|
927 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
928 |
input = self.GetPreviousConnector() |
|
929 |
if input: |
|
930 |
input_block = input.GetParentBlock() |
|
931 |
input_block.RefreshModel(False) |
|
932 |
if not isinstance(input_block, SFC_Divergence): |
|
933 |
input_block.RefreshInputModel() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
934 |
|
814 | 935 |
# Refresh output element model |
936 |
def RefreshOutputModel(self, move=False): |
|
937 |
output = self.GetNextConnector() |
|
938 |
if output: |
|
939 |
output_block = output.GetParentBlock() |
|
940 |
output_block.RefreshModel(False) |
|
941 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
942 |
output_block.RefreshOutputModel(move) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
943 |
|
814 | 944 |
# Refreshes the transition model |
945 |
def RefreshModel(self, move=True): |
|
946 |
self.Parent.RefreshTransitionModel(self) |
|
947 |
# If transition has moved, refresh the model of wires connected to output |
|
948 |
if move: |
|
949 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
950 |
self.RefreshInputModel() |
|
951 |
self.RefreshOutputModel() |
|
952 |
else: |
|
953 |
self.Output.RefreshWires() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
954 |
|
814 | 955 |
# Adds an highlight to the block |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
956 |
def AddHighlight(self, infos, start, end, highlight_type): |
814 | 957 |
if infos[0] in ["reference", "inline", "priority"] and start[0] == 0 and end[0] == 0: |
958 |
highlights = self.Highlights.setdefault(infos[0], []) |
|
959 |
AddHighlight(highlights, (start, end, highlight_type)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
960 |
|
814 | 961 |
# Removes an highlight from the block |
962 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
|
963 |
if infos[0] in ["reference", "inline", "priority"]: |
|
964 |
highlights = self.Highlights.get(infos[0], []) |
|
965 |
if RemoveHighlight(highlights, (start, end, highlight_type)) and len(highlights) == 0: |
|
966 |
self.Highlights.pop(infos[0]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
967 |
|
814 | 968 |
# Removes all the highlights of one particular type from the block |
969 |
def ClearHighlight(self, highlight_type=None): |
|
970 |
if highlight_type is None: |
|
971 |
self.Highlights = {} |
|
972 |
else: |
|
973 |
highlight_items = self.Highlights.items() |
|
974 |
for name, highlights in highlight_items: |
|
975 |
highlights = ClearHighlights(highlight, highlight_type) |
|
976 |
if len(highlights) == 0: |
|
977 |
self.Highlights.pop(name) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
978 |
|
814 | 979 |
# Draws transition |
980 |
def Draw(self, dc): |
|
981 |
Graphic_Element.Draw(self, dc) |
|
982 |
if self.Value: |
|
983 |
if self.Forced: |
|
984 |
dc.SetPen(MiterPen(wx.CYAN)) |
|
985 |
dc.SetBrush(wx.CYAN_BRUSH) |
|
986 |
else: |
|
987 |
dc.SetPen(MiterPen(wx.GREEN)) |
|
988 |
dc.SetBrush(wx.GREEN_BRUSH) |
|
989 |
elif self.Forced: |
|
990 |
dc.SetPen(MiterPen(wx.BLUE)) |
|
991 |
dc.SetBrush(wx.BLUE_BRUSH) |
|
992 |
else: |
|
993 |
dc.SetPen(MiterPen(wx.BLACK)) |
|
994 |
dc.SetBrush(wx.BLACK_BRUSH) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
995 |
|
814 | 996 |
if getattr(dc, "printing", False): |
997 |
if self.Type != "connection": |
|
998 |
condition_size = dc.GetTextExtent(self.Condition) |
|
999 |
if self.Priority != 0: |
|
1000 |
priority_size = dc.GetTextExtent(str(self.Priority)) |
|
1001 |
else: |
|
1002 |
if self.Type != "connection": |
|
1003 |
condition_size = self.ConditionSize |
|
1004 |
if self.Priority != 0: |
|
1005 |
priority_size = self.PrioritySize |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1006 |
|
814 | 1007 |
# Draw plain rectangle for representing the transition |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1008 |
dc.DrawRectangle(self.Pos.x, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1009 |
self.Pos.y + (self.Size[1] - SFC_TRANSITION_SIZE[1])/2, |
814 | 1010 |
self.Size[0] + 1, |
1011 |
SFC_TRANSITION_SIZE[1] + 1) |
|
1012 |
vertical_line_x = self.Input.GetPosition()[0] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1013 |
dc.DrawLine(vertical_line_x, self.Pos.y, vertical_line_x, self.Pos.y + self.Size[1] + 1) |
814 | 1014 |
# Draw transition condition |
1015 |
if self.Type != "connection": |
|
1016 |
if self.Condition != "": |
|
1017 |
condition = self.Condition |
|
1018 |
else: |
|
1019 |
condition = "Transition" |
|
1020 |
condition_pos = (self.Pos.x + self.Size[0] + 5, |
|
1021 |
self.Pos.y + (self.Size[1] - condition_size[1]) / 2) |
|
1022 |
dc.DrawText(condition, condition_pos[0], condition_pos[1]) |
|
1023 |
# Draw priority number |
|
1024 |
if self.Priority != 0: |
|
1025 |
priority_pos = (self.Pos.x, self.Pos.y - priority_size[1] - 2) |
|
1026 |
dc.DrawText(str(self.Priority), priority_pos[0], priority_pos[1]) |
|
1027 |
# Draw input and output connectors |
|
1028 |
self.Input.Draw(dc) |
|
1029 |
self.Output.Draw(dc) |
|
1030 |
if self.Type == "connection": |
|
1031 |
self.Condition.Draw(dc) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1032 |
|
814 | 1033 |
if not getattr(dc, "printing", False): |
1034 |
for name, highlights in self.Highlights.iteritems(): |
|
1035 |
if name == "priority": |
|
1036 |
DrawHighlightedText(dc, str(self.Priority), highlights, priority_pos[0], priority_pos[1]) |
|
1037 |
else: |
|
1038 |
DrawHighlightedText(dc, condition, highlights, condition_pos[0], condition_pos[1]) |
|
1039 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1040 |
|
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1041 |
# ------------------------------------------------------------------------------- |
814 | 1042 |
# Sequencial Function Chart Divergence and Convergence |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1043 |
# ------------------------------------------------------------------------------- |
814 | 1044 |
|
1045 |
||
1046 |
class SFC_Divergence(Graphic_Element): |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1047 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1048 |
Class that implements the graphic representation of a divergence or convergence, |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1049 |
selection or simultaneous |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1050 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1051 |
|
814 | 1052 |
# Create a new divergence |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1053 |
def __init__(self, parent, type, number=2, id=None): |
814 | 1054 |
Graphic_Element.__init__(self, parent) |
1055 |
self.Type = type |
|
1056 |
self.Id = id |
|
1057 |
self.RealConnectors = None |
|
1058 |
number = max(2, number) |
|
1059 |
self.Size = wx.Size((number - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL, self.GetMinSize()[1]) |
|
1060 |
# Create an input and output connector |
|
1061 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1062 |
self.Inputs = [Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH, onlyone=True)] |
814 | 1063 |
self.Outputs = [] |
1064 |
for i in xrange(number): |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1065 |
self.Outputs.append(Connector(self, "", None, wx.Point(i * SFC_DEFAULT_SEQUENCE_INTERVAL, self.Size[1]), SOUTH, onlyone=True)) |
814 | 1066 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
1067 |
self.Inputs = [] |
|
1068 |
for i in xrange(number): |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1069 |
self.Inputs.append(Connector(self, "", None, wx.Point(i * SFC_DEFAULT_SEQUENCE_INTERVAL, 0), NORTH, onlyone=True)) |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1070 |
self.Outputs = [Connector(self, "", None, wx.Point(self.Size[0] / 2, self.Size[1]), SOUTH, onlyone=True)] |
814 | 1071 |
self.Value = None |
1072 |
self.PreviousValue = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1073 |
|
814 | 1074 |
def Flush(self): |
1075 |
for input in self.Inputs: |
|
1076 |
input.Flush() |
|
1077 |
self.Inputs = [] |
|
1078 |
for output in self.Outputs: |
|
1079 |
output.Flush() |
|
1080 |
self.Outputs = [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1081 |
|
814 | 1082 |
def SpreadCurrent(self): |
1083 |
if self.Parent.Debug: |
|
1084 |
self.PreviousValue = self.Value |
|
1085 |
if self.Type == SELECTION_CONVERGENCE: |
|
1086 |
self.Value = False |
|
1087 |
for input in self.Inputs: |
|
1088 |
self.Value |= input.ReceivingCurrent() |
|
1089 |
elif self.Type == SIMULTANEOUS_CONVERGENCE: |
|
1090 |
self.Value = True |
|
1091 |
for input in self.Inputs: |
|
1092 |
self.Value &= input.ReceivingCurrent() |
|
1093 |
elif self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1094 |
self.Value = self.Inputs[0].ReceivingCurrent() |
|
1095 |
else: |
|
1096 |
self.Value = False |
|
1097 |
if self.Value and not self.PreviousValue: |
|
1098 |
if self.Visible: |
|
1099 |
self.Parent.ElementNeedRefresh(self) |
|
1100 |
for output in self.Outputs: |
|
1101 |
output.SpreadCurrent(True) |
|
1102 |
elif not self.Value and self.PreviousValue: |
|
1103 |
if self.Visible: |
|
1104 |
self.Parent.ElementNeedRefresh(self) |
|
1105 |
for output in self.Outputs: |
|
1106 |
output.SpreadCurrent(False) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1107 |
|
814 | 1108 |
# Make a clone of this SFC_Divergence |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1109 |
def Clone(self, parent, id=None, pos=None): |
814 | 1110 |
divergence = SFC_Divergence(parent, self.Type, max(len(self.Inputs), len(self.Outputs)), id) |
1111 |
divergence.SetSize(self.Size[0], self.Size[1]) |
|
1112 |
if pos is not None: |
|
1113 |
divergence.SetPosition(pos.x, pos.y) |
|
1114 |
else: |
|
1115 |
divergence.SetPosition(self.Pos.x, self.Pos.y) |
|
1116 |
divergence.Inputs = [input.Clone(divergence) for input in self.Inputs] |
|
1117 |
divergence.Outputs = [output.Clone(divergence) for output in self.Outputs] |
|
1118 |
return divergence |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1119 |
|
814 | 1120 |
def GetConnectorTranslation(self, element): |
1121 |
return dict(zip(self.Inputs + self.Outputs, element.Inputs + element.Outputs)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1122 |
|
814 | 1123 |
# Returns the RedrawRect |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1124 |
def GetRedrawRect(self, movex=0, movey=0): |
814 | 1125 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
1126 |
if movex != 0 or movey != 0: |
|
1127 |
for input in self.Inputs: |
|
1128 |
if input.IsConnected(): |
|
1129 |
rect = rect.Union(input.GetConnectedRedrawRect(movex, movey)) |
|
1130 |
for output in self.Outputs: |
|
1131 |
if output.IsConnected(): |
|
1132 |
rect = rect.Union(output.GetConnectedRedrawRect(movex, movey)) |
|
1133 |
return rect |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1134 |
|
814 | 1135 |
# Forbids to resize the divergence |
1136 |
def Resize(self, x, y, width, height): |
|
1137 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
1138 |
Graphic_Element.Resize(self, x, 0, width, self.GetMinSize()[1]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1139 |
|
814 | 1140 |
# Delete this divergence by calling the appropriate method |
1141 |
def Delete(self): |
|
1142 |
self.Parent.DeleteDivergence(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1143 |
|
814 | 1144 |
# Returns the divergence type |
1145 |
def GetType(self): |
|
1146 |
return self.Type |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1147 |
|
814 | 1148 |
# Unconnect input and output |
1149 |
def Clean(self): |
|
1150 |
for input in self.Inputs: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1151 |
input.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
814 | 1152 |
for output in self.Outputs: |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1153 |
output.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1154 |
|
814 | 1155 |
# Add a branch to the divergence |
1156 |
def AddBranch(self): |
|
1157 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1158 |
maxx = 0 |
|
1159 |
for output in self.Outputs: |
|
1160 |
pos = output.GetRelPosition() |
|
1161 |
maxx = max(maxx, pos.x) |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1162 |
connector = Connector(self, "", None, wx.Point(maxx + SFC_DEFAULT_SEQUENCE_INTERVAL, self.Size[1]), SOUTH, onlyone=True) |
814 | 1163 |
self.Outputs.append(connector) |
1164 |
self.MoveConnector(connector, 0) |
|
1165 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1166 |
maxx = 0 |
|
1167 |
for input in self.Inputs: |
|
1168 |
pos = input.GetRelPosition() |
|
1169 |
maxx = max(maxx, pos.x) |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1170 |
connector = Connector(self, "", None, wx.Point(maxx + SFC_DEFAULT_SEQUENCE_INTERVAL, 0), NORTH, onlyone=True) |
814 | 1171 |
self.Inputs.append(connector) |
1172 |
self.MoveConnector(connector, SFC_DEFAULT_SEQUENCE_INTERVAL) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1173 |
|
814 | 1174 |
# Remove a branch from the divergence |
1175 |
def RemoveBranch(self, connector): |
|
1176 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1177 |
if connector in self.Outputs and len(self.Outputs) > 2: |
|
1178 |
self.Outputs.remove(connector) |
|
1179 |
self.MoveConnector(self.Outputs[0], 0) |
|
1180 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1181 |
if connector in self.Inputs and len(self.Inputs) > 2: |
|
1182 |
self.Inputs.remove(connector) |
|
1183 |
self.MoveConnector(self.Inputs[0], 0) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1184 |
|
814 | 1185 |
# Remove the handled branch from the divergence |
1186 |
def RemoveHandledBranch(self): |
|
1187 |
handle_type, handle = self.Handle |
|
1188 |
if handle_type == HANDLE_CONNECTOR: |
|
1189 |
handle.UnConnect(delete=True) |
|
1190 |
self.RemoveBranch(handle) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1191 |
|
814 | 1192 |
# Return the number of branches for the divergence |
1193 |
def GetBranchNumber(self): |
|
1194 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1195 |
return len(self.Outputs) |
|
1196 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1197 |
return len(self.Inputs) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1198 |
|
814 | 1199 |
# Returns if the point given is in the bounding box |
1200 |
def HitTest(self, pt, connectors=True): |
|
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
1201 |
return self.BoundingBox.InsideXY(pt.x, pt.y) or self.TestConnector(pt, exclude=False) is not None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1202 |
|
814 | 1203 |
# Refresh the divergence bounding box |
1204 |
def RefreshBoundingBox(self): |
|
1205 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1206 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1207 |
self.Size[0] + 1, self.Size[1] + 1) |
814 | 1208 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1209 |
self.BoundingBox = wx.Rect( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1210 |
self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y, |
814 | 1211 |
self.Size[0] + 2 * SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Size[1] + 1) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1212 |
|
814 | 1213 |
# Refresh the position of wires connected to divergence |
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1849
diff
changeset
|
1214 |
def RefreshConnected(self, exclude=None): |
814 | 1215 |
for input in self.Inputs: |
1216 |
input.MoveConnected(exclude) |
|
1217 |
for output in self.Outputs: |
|
1218 |
output.MoveConnected(exclude) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1219 |
|
814 | 1220 |
# Moves the divergence connector given |
1221 |
def MoveConnector(self, connector, movex): |
|
1222 |
position = connector.GetRelPosition() |
|
1223 |
connector.SetPosition(wx.Point(position.x + movex, position.y)) |
|
1224 |
minx = self.Size[0] |
|
1225 |
maxx = 0 |
|
1226 |
for input in self.Inputs: |
|
1227 |
input_pos = input.GetRelPosition() |
|
1228 |
minx = min(minx, input_pos.x) |
|
1229 |
maxx = max(maxx, input_pos.x) |
|
1230 |
for output in self.Outputs: |
|
1231 |
output_pos = output.GetRelPosition() |
|
1232 |
minx = min(minx, output_pos.x) |
|
1233 |
maxx = max(maxx, output_pos.x) |
|
1234 |
if minx != 0: |
|
1235 |
for input in self.Inputs: |
|
1236 |
input_pos = input.GetRelPosition() |
|
1237 |
input.SetPosition(wx.Point(input_pos.x - minx, input_pos.y)) |
|
1238 |
for output in self.Outputs: |
|
1239 |
output_pos = output.GetRelPosition() |
|
1240 |
output.SetPosition(wx.Point(output_pos.x - minx, output_pos.y)) |
|
1241 |
self.Inputs.sort(lambda x, y: cmp(x.Pos.x, y.Pos.x)) |
|
1242 |
self.Outputs.sort(lambda x, y: cmp(x.Pos.x, y.Pos.x)) |
|
1243 |
self.Pos.x += minx |
|
1244 |
self.Size[0] = maxx - minx |
|
1245 |
connector.MoveConnected() |
|
1246 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1247 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1248 |
# Returns the divergence connector that starts with the point given if it exists |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1249 |
def GetConnector(self, position, name=None): |
814 | 1250 |
# if a name is given |
1251 |
if name is not None: |
|
1252 |
# Test each input and output connector |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1253 |
# for input in self.Inputs: |
814 | 1254 |
# if name == input.GetName(): |
1255 |
# return input |
|
1256 |
for output in self.Outputs: |
|
1257 |
if name == output.GetName(): |
|
1258 |
return output |
|
1259 |
return self.FindNearestConnector(position, self.Inputs + self.Outputs) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1260 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1261 |
# Returns input and output divergence connectors |
814 | 1262 |
def GetConnectors(self): |
1263 |
return {"inputs": self.Inputs, "outputs": self.Outputs} |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1264 |
|
814 | 1265 |
# Test if point given is on divergence input or output connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1266 |
def TestConnector(self, pt, direction=None, exclude=True): |
814 | 1267 |
# Test input connector |
1268 |
for input in self.Inputs: |
|
1269 |
if input.TestPoint(pt, direction, exclude): |
|
1270 |
return input |
|
1271 |
# Test output connector |
|
1272 |
for output in self.Outputs: |
|
1273 |
if output.TestPoint(pt, direction, exclude): |
|
1274 |
return output |
|
1275 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1276 |
|
814 | 1277 |
# Changes the divergence size |
1278 |
def SetSize(self, width, height): |
|
1279 |
height = self.GetMinSize()[1] |
|
1280 |
for i, input in enumerate(self.Inputs): |
|
1281 |
position = input.GetRelPosition() |
|
1282 |
if self.RealConnectors: |
|
1283 |
input.SetPosition(wx.Point(int(round(self.RealConnectors["Inputs"][i] * width)), 0)) |
|
1284 |
else: |
|
1285 |
input.SetPosition(wx.Point(int(round(float(position.x)*float(width)/float(self.Size[0]))), 0)) |
|
1286 |
input.MoveConnected() |
|
1287 |
for i, output in enumerate(self.Outputs): |
|
1288 |
position = output.GetRelPosition() |
|
1289 |
if self.RealConnectors: |
|
1290 |
output.SetPosition(wx.Point(int(round(self.RealConnectors["Outputs"][i] * width)), height)) |
|
1291 |
else: |
|
1292 |
output.SetPosition(wx.Point(int(round(float(position.x)*float(width)/float(self.Size[0]))), height)) |
|
1293 |
output.MoveConnected() |
|
1294 |
self.Size = wx.Size(width, height) |
|
1295 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1296 |
|
814 | 1297 |
# Returns the divergence minimum size |
1298 |
def GetMinSize(self, default=False): |
|
1299 |
width = 0 |
|
1300 |
if default: |
|
1301 |
if self.Type in [SELECTION_DIVERGENCE, SIMULTANEOUS_DIVERGENCE]: |
|
1302 |
width = (len(self.Outputs) - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL |
|
1303 |
elif self.Type in [SELECTION_CONVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1304 |
width = (len(self.Inputs) - 1) * SFC_DEFAULT_SEQUENCE_INTERVAL |
|
1305 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
1306 |
return width, 1 |
|
1307 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1308 |
return width, 3 |
|
1309 |
return 0, 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1310 |
|
814 | 1311 |
# Refresh the position of the block connected to connector |
1312 |
def RefreshConnectedPosition(self, connector): |
|
1313 |
wires = connector.GetWires() |
|
1314 |
if len(wires) != 1: |
|
1315 |
return |
|
1316 |
current_pos = connector.GetPosition(False) |
|
1317 |
next = wires[0][0].GetOtherConnected(connector) |
|
1318 |
next_pos = next.GetPosition(False) |
|
1319 |
diffx = current_pos.x - next_pos.x |
|
1320 |
next_block = next.GetParentBlock() |
|
1321 |
if isinstance(next_block, SFC_Divergence): |
|
1322 |
next_block.MoveConnector(next, diffx) |
|
1323 |
else: |
|
1324 |
next_block.Move(diffx, 0) |
|
1325 |
if connector in self.Inputs: |
|
1326 |
next_block.RefreshInputPosition() |
|
1327 |
else: |
|
1328 |
next_block.RefreshOutputPosition() |
|
1329 |
||
1330 |
# Refresh the position of this divergence |
|
1331 |
def RefreshPosition(self): |
|
1332 |
y = 0 |
|
1333 |
for input in self.Inputs: |
|
1334 |
wires = input.GetWires() |
|
1335 |
if len(wires) != 1: |
|
1336 |
return |
|
1337 |
previous = wires[0][0].GetOtherConnected(input) |
|
1338 |
previous_pos = previous.GetPosition(False) |
|
1339 |
y = max(y, previous_pos.y + GetWireSize(previous.GetParentBlock())) |
|
1340 |
diffy = y - self.Pos.y |
|
1341 |
if diffy != 0: |
|
1342 |
self.Move(0, diffy, self.Parent.Wires) |
|
1343 |
self.RefreshOutputPosition((0, diffy)) |
|
1344 |
for input in self.Inputs: |
|
1345 |
input.MoveConnected() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1346 |
|
814 | 1347 |
# Align output element with this divergence |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1348 |
def RefreshOutputPosition(self, move=None): |
814 | 1349 |
if move: |
1350 |
for output_connector in self.Outputs: |
|
1351 |
wires = output_connector.GetWires() |
|
1352 |
if len(wires) != 1: |
|
1353 |
return |
|
1354 |
output = wires[0][0].GetOtherConnected(self.Output) |
|
1355 |
output_block = output.GetParentBlock() |
|
1356 |
if isinstance(output_block, SFC_Step): |
|
1357 |
output_block.MoveActionBlock(move) |
|
1358 |
wires[0][0].Move(move[0], move[1], True) |
|
1359 |
if not isinstance(output_block, SFC_Divergence) or output_block.GetConnectors()["inputs"].index(output) == 0: |
|
1360 |
output_block.Move(move[0], move[1], self.Parent.Wires) |
|
1361 |
output_block.RefreshOutputPosition(move) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1362 |
|
814 | 1363 |
# Method called when a LeftDown event have been generated |
1364 |
def OnLeftDown(self, event, dc, scaling): |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
1365 |
self.RealConnectors = {"Inputs": [], "Outputs": []} |
1258
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1366 |
for input in self.Inputs: |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1367 |
position = input.GetRelPosition() |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1368 |
self.RealConnectors["Inputs"].append(float(position.x)/float(self.Size[0])) |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1369 |
for output in self.Outputs: |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1370 |
position = output.GetRelPosition() |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1371 |
self.RealConnectors["Outputs"].append(float(position.x)/float(self.Size[0])) |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1372 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1373 |
|
1258
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1374 |
# Method called when a LeftUp event have been generated |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1375 |
def OnLeftUp(self, event, dc, scaling): |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1376 |
Graphic_Element.OnLeftUp(self, event, dc, scaling) |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1377 |
self.RealConnectors = None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1378 |
|
1258
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1379 |
# Method called when a RightDown event have been generated |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1380 |
def OnRightDown(self, event, dc, scaling): |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1381 |
pos = GetScaledEventPosition(event, dc, scaling) |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1382 |
# Test if a connector have been handled |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1383 |
connector = self.TestConnector(pos, exclude=False) |
814 | 1384 |
if connector: |
1385 |
self.Handle = (HANDLE_CONNECTOR, connector) |
|
1386 |
wx.CallAfter(self.Parent.SetCurrentCursor, 1) |
|
1387 |
self.Selected = False |
|
1388 |
# Initializes the last position |
|
1389 |
self.oldPos = GetScaledEventPosition(event, dc, scaling) |
|
1390 |
else: |
|
1258
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1391 |
Graphic_Element.OnRightDown(self, event, dc, scaling) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1392 |
|
1258
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1393 |
# Method called when a RightUp event have been generated |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1394 |
def OnRightUp(self, event, dc, scaling): |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1395 |
pos = GetScaledEventPosition(event, dc, scaling) |
814 | 1396 |
handle_type, handle = self.Handle |
1397 |
if handle_type == HANDLE_CONNECTOR and self.Dragging and self.oldPos: |
|
1398 |
wires = handle.GetWires() |
|
1399 |
if len(wires) == 1: |
|
1400 |
block = wires[0][0].GetOtherConnected(handle).GetParentBlock() |
|
1401 |
block.RefreshModel(False) |
|
1402 |
if not isinstance(block, SFC_Divergence): |
|
1403 |
if handle in self.Inputs: |
|
1404 |
block.RefreshInputModel() |
|
1405 |
else: |
|
1406 |
block.RefreshOutputModel() |
|
1258
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1407 |
Graphic_Element.OnRightUp(self, event, dc, scaling) |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1408 |
else: |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1409 |
# Popup the menu with special items for a block and a connector if one is handled |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1410 |
connector = self.TestConnector(pos, exclude=False) |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1411 |
if connector: |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1412 |
self.Handle = (HANDLE_CONNECTOR, connector) |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1413 |
self.Parent.PopupDivergenceMenu(True) |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1414 |
else: |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1415 |
# Popup the divergence menu without delete branch |
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1176
diff
changeset
|
1416 |
self.Parent.PopupDivergenceMenu(False) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1417 |
|
814 | 1418 |
# Refreshes the divergence state according to move defined and handle selected |
1419 |
def ProcessDragging(self, movex, movey, event, scaling): |
|
1420 |
handle_type, handle = self.Handle |
|
1421 |
# A connector has been handled |
|
1422 |
if handle_type == HANDLE_CONNECTOR: |
|
1423 |
movex = max(-self.BoundingBox.x, movex) |
|
1424 |
if scaling is not None: |
|
1425 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
1426 |
self.MoveConnector(handle, movex) |
|
1427 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
1428 |
self.RefreshConnectedPosition(handle) |
|
1429 |
return movex, 0 |
|
1430 |
elif self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
1431 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
|
1432 |
return 0, 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1433 |
|
814 | 1434 |
# Refresh output element model |
1435 |
def RefreshOutputModel(self, move=False): |
|
1436 |
if move and self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
1437 |
for output in self.Outputs: |
|
1438 |
wires = output.GetWires() |
|
1439 |
if len(wires) != 1: |
|
1440 |
return |
|
1441 |
output_block = wires[0][0].GetOtherConnected(output).GetParentBlock() |
|
1442 |
output_block.RefreshModel(False) |
|
1443 |
if not isinstance(output_block, SFC_Divergence) or move: |
|
1444 |
output_block.RefreshOutputModel(move) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1445 |
|
814 | 1446 |
# Refreshes the divergence model |
1447 |
def RefreshModel(self, move=True): |
|
1448 |
self.Parent.RefreshDivergenceModel(self) |
|
1449 |
# If divergence has moved, refresh the model of wires connected to outputs |
|
1450 |
if move: |
|
1451 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
1452 |
self.RefreshOutputModel() |
|
1453 |
else: |
|
1454 |
for output in self.Outputs: |
|
1455 |
output.RefreshWires() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1456 |
|
814 | 1457 |
# Draws the highlightment of this element if it is highlighted |
1458 |
def DrawHighlightment(self, dc): |
|
1459 |
scalex, scaley = dc.GetUserScale() |
|
1460 |
dc.SetUserScale(1, 1) |
|
1461 |
dc.SetPen(MiterPen(HIGHLIGHTCOLOR)) |
|
1462 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
1463 |
dc.SetLogicalFunction(wx.AND) |
|
1464 |
# Draw two rectangles for representing the contact |
|
1465 |
posx = self.Pos.x |
|
1466 |
width = self.Size[0] |
|
1467 |
if self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1468 |
posx -= SFC_SIMULTANEOUS_SEQUENCE_EXTRA |
|
1469 |
width += SFC_SIMULTANEOUS_SEQUENCE_EXTRA * 2 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1470 |
dc.DrawRectangle(int(round((posx - 1) * scalex)) - 2, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1471 |
int(round((self.Pos.y - 1) * scaley)) - 2, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1472 |
int(round((width + 3) * scalex)) + 5, |
814 | 1473 |
int(round((self.Size.height + 3) * scaley)) + 5) |
1474 |
dc.SetLogicalFunction(wx.COPY) |
|
1475 |
dc.SetUserScale(scalex, scaley) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1476 |
|
814 | 1477 |
# Draws divergence |
1478 |
def Draw(self, dc): |
|
1479 |
Graphic_Element.Draw(self, dc) |
|
1480 |
if self.Value: |
|
1481 |
dc.SetPen(MiterPen(wx.GREEN)) |
|
1482 |
dc.SetBrush(wx.GREEN_BRUSH) |
|
1483 |
else: |
|
1484 |
dc.SetPen(MiterPen(wx.BLACK)) |
|
1485 |
dc.SetBrush(wx.BLACK_BRUSH) |
|
1486 |
# Draw plain rectangle for representing the divergence |
|
1487 |
if self.Type in [SELECTION_DIVERGENCE, SELECTION_CONVERGENCE]: |
|
1488 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
1489 |
elif self.Type in [SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE]: |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1490 |
dc.DrawLine(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y, |
814 | 1491 |
self.Pos.x + self.Size[0] + SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Pos.y) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1492 |
dc.DrawLine(self.Pos.x - SFC_SIMULTANEOUS_SEQUENCE_EXTRA, self.Pos.y + self.Size[1], |
814 | 1493 |
self.Pos.x + self.Size[0] + SFC_SIMULTANEOUS_SEQUENCE_EXTRA + 1, self.Pos.y + self.Size[1]) |
1494 |
# Draw inputs and outputs connectors |
|
1495 |
for input in self.Inputs: |
|
1496 |
input.Draw(dc) |
|
1497 |
for output in self.Outputs: |
|
1498 |
output.Draw(dc) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1499 |
|
814 | 1500 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1501 |
# ------------------------------------------------------------------------------- |
814 | 1502 |
# Sequencial Function Chart Jump to Step |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1503 |
# ------------------------------------------------------------------------------- |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1504 |
|
814 | 1505 |
|
1506 |
class SFC_Jump(Graphic_Element): |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1507 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1508 |
Class that implements the graphic representation of a jump to step |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1509 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1510 |
|
814 | 1511 |
# Create a new jump |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1512 |
def __init__(self, parent, target, id=None): |
814 | 1513 |
Graphic_Element.__init__(self, parent) |
1514 |
self.SetTarget(target) |
|
1515 |
self.Id = id |
|
1516 |
self.Size = wx.Size(SFC_JUMP_SIZE[0], SFC_JUMP_SIZE[1]) |
|
1517 |
self.Highlights = [] |
|
1518 |
# Create an input and output connector |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1519 |
self.Input = Connector(self, "", None, wx.Point(self.Size[0] / 2, 0), NORTH, onlyone=True) |
814 | 1520 |
self.Value = None |
1521 |
self.PreviousValue = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1522 |
|
814 | 1523 |
def Flush(self): |
1524 |
if self.Input is not None: |
|
1525 |
self.Input.Flush() |
|
1526 |
self.Input = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1527 |
|
814 | 1528 |
def SpreadCurrent(self): |
1529 |
if self.Parent.Debug: |
|
1530 |
self.PreviousValue = self.Value |
|
1531 |
self.Value = self.Input.ReceivingCurrent() |
|
1532 |
if self.Value != self.PreviousValue and self.Visible: |
|
1533 |
self.Parent.ElementNeedRefresh(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1534 |
|
814 | 1535 |
# Make a clone of this SFC_Jump |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1536 |
def Clone(self, parent, id=None, pos=None): |
814 | 1537 |
jump = SFC_Jump(parent, self.Target, id) |
1538 |
jump.SetSize(self.Size[0], self.Size[1]) |
|
1539 |
if pos is not None: |
|
1540 |
jump.SetPosition(pos.x, pos.y) |
|
1541 |
else: |
|
1542 |
jump.SetPosition(self.Pos.x, self.Pos.y) |
|
1543 |
jump.Input = self.Input.Clone(jump) |
|
1544 |
return jump |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1545 |
|
814 | 1546 |
def GetConnectorTranslation(self, element): |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1547 |
return {self.Input: element.Input} |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1548 |
|
814 | 1549 |
# Returns the RedrawRect |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1550 |
def GetRedrawRect(self, movex=0, movey=0): |
814 | 1551 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
1652
be605b2e6e3a
fix redraw debug instance tab after transferring new build to PLC. closes #15
Surkov Sergey <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
1552 |
if self.Input: |
be605b2e6e3a
fix redraw debug instance tab after transferring new build to PLC. closes #15
Surkov Sergey <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
1553 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
814 | 1554 |
if movex != 0 or movey != 0: |
1555 |
if self.Input.IsConnected(): |
|
1556 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
1557 |
return rect |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1558 |
|
814 | 1559 |
# Forbids to change the jump size |
1560 |
def SetSize(self, width, height): |
|
1561 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
1562 |
Graphic_Element.SetSize(self, width, height) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1563 |
|
814 | 1564 |
# Forbids to resize jump |
1565 |
def Resize(self, x, y, width, height): |
|
1566 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
1567 |
Graphic_Element.Resize(self, x, y, width, height) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1568 |
|
814 | 1569 |
# Delete this jump by calling the appropriate method |
1570 |
def Delete(self): |
|
1571 |
self.Parent.DeleteJump(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1572 |
|
814 | 1573 |
# Unconnect input |
1574 |
def Clean(self): |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1575 |
self.Input.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1576 |
|
814 | 1577 |
# Refresh the size of text for target |
1578 |
def RefreshTargetSize(self): |
|
1579 |
self.TargetSize = self.Parent.GetTextExtent(self.Target) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1580 |
|
814 | 1581 |
# Returns if the point given is in the bounding box |
1582 |
def HitTest(self, pt, connectors=True): |
|
1583 |
# Calculate the bounding box of the condition outside the transition |
|
1584 |
text_width, text_height = self.TargetSize |
|
1585 |
text_bbx = wx.Rect(self.Pos.x + self.Size[0] + 2, |
|
1586 |
self.Pos.y + (self.Size[1] - text_height) / 2, |
|
1587 |
text_width, |
|
1588 |
text_height) |
|
1589 |
return text_bbx.InsideXY(pt.x, pt.y) or Graphic_Element.HitTest(self, pt, connectors) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1590 |
|
814 | 1591 |
# Refresh the jump bounding box |
1592 |
def RefreshBoundingBox(self): |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1593 |
text_width, _text_height = self.Parent.GetTextExtent(self.Target) |
814 | 1594 |
# Calculate the bounding box size |
1595 |
bbx_width = self.Size[0] + 2 + text_width |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1596 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y - CONNECTOR_SIZE, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1597 |
bbx_width + 1, self.Size[1] + CONNECTOR_SIZE + 1) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1598 |
|
814 | 1599 |
# Returns the connector connected to input |
1600 |
def GetPreviousConnector(self): |
|
1601 |
wires = self.Input.GetWires() |
|
1602 |
if len(wires) == 1: |
|
1603 |
return wires[0][0].GetOtherConnected(self.Input) |
|
1604 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1605 |
|
814 | 1606 |
# Refresh the element connectors position |
1607 |
def RefreshConnectors(self): |
|
1608 |
scaling = self.Parent.GetScaling() |
|
1609 |
horizontal_pos = self.Size[0] / 2 |
|
1610 |
if scaling is not None: |
|
1611 |
horizontal_pos = round(float(self.Pos.x + horizontal_pos) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
1612 |
self.Input.SetPosition(wx.Point(horizontal_pos, 0)) |
|
1613 |
self.RefreshConnected() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1614 |
|
814 | 1615 |
# Refresh the position of wires connected to jump |
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1849
diff
changeset
|
1616 |
def RefreshConnected(self, exclude=None): |
814 | 1617 |
if self.Input: |
1618 |
self.Input.MoveConnected(exclude) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1619 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1620 |
# Returns input jump connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1621 |
def GetConnector(self, position=None, name=None): |
814 | 1622 |
return self.Input |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1623 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1624 |
# Returns all the jump connectors |
814 | 1625 |
def GetConnectors(self): |
1626 |
return {"inputs": [self.Input], "outputs": []} |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1627 |
|
814 | 1628 |
# Test if point given is on jump input connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1629 |
def TestConnector(self, pt, direction=None, exclude=True): |
814 | 1630 |
# Test input connector |
1631 |
if self.Input and self.Input.TestPoint(pt, direction, exclude): |
|
1632 |
return self.Input |
|
1633 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1634 |
|
814 | 1635 |
# Changes the jump target |
1636 |
def SetTarget(self, target): |
|
1637 |
self.Target = target |
|
1638 |
self.RefreshTargetSize() |
|
1639 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1640 |
|
814 | 1641 |
# Returns the jump target |
1642 |
def GetTarget(self): |
|
1643 |
return self.Target |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1644 |
|
814 | 1645 |
# Returns the jump minimum size |
1646 |
def GetMinSize(self): |
|
1647 |
return SFC_JUMP_SIZE |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1648 |
|
814 | 1649 |
# Align input element with this jump |
1650 |
def RefreshInputPosition(self): |
|
1651 |
if self.Input: |
|
1652 |
current_pos = self.Input.GetPosition(False) |
|
1653 |
input = self.GetPreviousConnector() |
|
1654 |
if input: |
|
1655 |
input_pos = input.GetPosition(False) |
|
1656 |
diffx = current_pos.x - input_pos.x |
|
1657 |
input_block = input.GetParentBlock() |
|
1658 |
if isinstance(input_block, SFC_Divergence): |
|
1659 |
input_block.MoveConnector(input, diffx) |
|
1660 |
else: |
|
1661 |
if isinstance(input_block, SFC_Step): |
|
1662 |
input_block.MoveActionBlock((diffx, 0)) |
|
1663 |
input_block.Move(diffx, 0) |
|
1664 |
input_block.RefreshInputPosition() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1665 |
|
814 | 1666 |
# Can't align output element, because there is no output |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1667 |
def RefreshOutputPosition(self, move=None): |
814 | 1668 |
pass |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1669 |
|
814 | 1670 |
# Method called when a LeftDClick event have been generated |
1671 |
def OnLeftDClick(self, event, dc, scaling): |
|
1672 |
# Edit the jump properties |
|
1673 |
self.Parent.EditJumpContent(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1674 |
|
814 | 1675 |
# Method called when a RightUp event have been generated |
1676 |
def OnRightUp(self, event, dc, scaling): |
|
1677 |
# Popup the default menu |
|
1678 |
self.Parent.PopupDefaultMenu() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1679 |
|
814 | 1680 |
# Refreshes the jump state according to move defined and handle selected |
1681 |
def ProcessDragging(self, movex, movey, event, scaling): |
|
1682 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
1683 |
movex = max(-self.BoundingBox.x, movex) |
|
1684 |
if scaling is not None: |
|
1685 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
1686 |
self.Move(movex, 0) |
|
1687 |
self.RefreshInputPosition() |
|
1688 |
return movex, 0 |
|
1689 |
else: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1690 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling, width_fac=2) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1691 |
|
814 | 1692 |
# Refresh input element model |
1693 |
def RefreshInputModel(self): |
|
1694 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
1695 |
input = self.GetPreviousConnector() |
|
1696 |
if input: |
|
1697 |
input_block = input.GetParentBlock() |
|
1698 |
input_block.RefreshModel(False) |
|
1699 |
if not isinstance(input_block, SFC_Divergence): |
|
1700 |
input_block.RefreshInputModel() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1701 |
|
814 | 1702 |
# Refresh output element model |
1703 |
def RefreshOutputModel(self, move=False): |
|
1704 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1705 |
|
814 | 1706 |
# Refreshes the jump model |
1707 |
def RefreshModel(self, move=True): |
|
1708 |
self.Parent.RefreshJumpModel(self) |
|
1709 |
if move: |
|
1710 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
1711 |
self.RefreshInputModel() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1712 |
|
814 | 1713 |
# Adds an highlight to the variable |
1714 |
def AddHighlight(self, infos, start, end, highlight_type): |
|
1715 |
if infos[0] == "target" and start[0] == 0 and end[0] == 0: |
|
1716 |
AddHighlight(self.Highlights, (start, end, highlight_type)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1717 |
|
814 | 1718 |
# Removes an highlight from the variable |
1719 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
|
1720 |
if infos[0] == "target": |
|
1721 |
RemoveHighlight(self.Highlights, (start, end, highlight_type)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1722 |
|
814 | 1723 |
# Removes all the highlights of one particular type from the variable |
1724 |
def ClearHighlight(self, highlight_type=None): |
|
1725 |
ClearHighlights(self.Highlights, highlight_type) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1726 |
|
814 | 1727 |
# Draws the highlightment of this element if it is highlighted |
1728 |
def DrawHighlightment(self, dc): |
|
1729 |
scalex, scaley = dc.GetUserScale() |
|
1730 |
dc.SetUserScale(1, 1) |
|
1731 |
dc.SetPen(MiterPen(HIGHLIGHTCOLOR)) |
|
1732 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
1733 |
dc.SetLogicalFunction(wx.AND) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1734 |
points = [wx.Point(int(round((self.Pos.x - 2) * scalex)) - 3, |
814 | 1735 |
int(round((self.Pos.y - 2) * scaley)) - 2), |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1736 |
wx.Point(int(round((self.Pos.x + self.Size[0] + 2) * scalex)) + 4, |
814 | 1737 |
int(round((self.Pos.y - 2) * scaley)) - 2), |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1738 |
wx.Point(int(round((self.Pos.x + self.Size[0] / 2) * scalex)), |
814 | 1739 |
int(round((self.Pos.y + self.Size[1] + 3) * scaley)) + 4)] |
1740 |
dc.DrawPolygon(points) |
|
1741 |
dc.SetLogicalFunction(wx.COPY) |
|
1742 |
dc.SetUserScale(scalex, scaley) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1743 |
|
814 | 1744 |
# Draws divergence |
1745 |
def Draw(self, dc): |
|
1746 |
Graphic_Element.Draw(self, dc) |
|
1747 |
if self.Value: |
|
1748 |
dc.SetPen(MiterPen(wx.GREEN)) |
|
1749 |
dc.SetBrush(wx.GREEN_BRUSH) |
|
1750 |
else: |
|
1751 |
dc.SetPen(MiterPen(wx.BLACK)) |
|
1752 |
dc.SetBrush(wx.BLACK_BRUSH) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1753 |
|
814 | 1754 |
if getattr(dc, "printing", False): |
1755 |
target_size = dc.GetTextExtent(self.Target) |
|
1756 |
else: |
|
1757 |
target_size = self.TargetSize |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1758 |
|
814 | 1759 |
# Draw plain rectangle for representing the divergence |
1760 |
dc.DrawLine(self.Pos.x + self.Size[0] / 2, self.Pos.y, self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1]) |
|
1761 |
points = [wx.Point(self.Pos.x, self.Pos.y), |
|
1762 |
wx.Point(self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1] / 3), |
|
1763 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y), |
|
1764 |
wx.Point(self.Pos.x + self.Size[0] / 2, self.Pos.y + self.Size[1])] |
|
1765 |
dc.DrawPolygon(points) |
|
1766 |
target_pos = (self.Pos.x + self.Size[0] + 2, |
|
1767 |
self.Pos.y + (self.Size[1] - target_size[1]) / 2) |
|
1768 |
dc.DrawText(self.Target, target_pos[0], target_pos[1]) |
|
1769 |
# Draw input connector |
|
1770 |
if self.Input: |
|
1771 |
self.Input.Draw(dc) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1772 |
|
814 | 1773 |
if not getattr(dc, "printing", False): |
1774 |
DrawHighlightedText(dc, self.Target, self.Highlights, target_pos[0], target_pos[1]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1775 |
|
814 | 1776 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1777 |
# ------------------------------------------------------------------------------- |
814 | 1778 |
# Sequencial Function Chart Action Block |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1779 |
# ------------------------------------------------------------------------------- |
814 | 1780 |
|
1781 |
||
1782 |
class SFC_ActionBlock(Graphic_Element): |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1783 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1784 |
Class that implements the graphic representation of an action block |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1785 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1786 |
|
814 | 1787 |
# Create a new action block |
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1849
diff
changeset
|
1788 |
def __init__(self, parent, actions=None, id=None): |
814 | 1789 |
Graphic_Element.__init__(self, parent) |
1790 |
self.Id = id |
|
1791 |
self.Size = wx.Size(SFC_ACTION_MIN_SIZE[0], SFC_ACTION_MIN_SIZE[1]) |
|
1792 |
self.MinSize = wx.Size(SFC_ACTION_MIN_SIZE[0], SFC_ACTION_MIN_SIZE[1]) |
|
1793 |
self.Highlights = {} |
|
1794 |
# Create an input and output connector |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1795 |
self.Input = Connector(self, "", None, wx.Point(0, SFC_ACTION_MIN_SIZE[1] / 2), WEST, onlyone=True) |
814 | 1796 |
self.SetActions(actions) |
1797 |
self.Value = None |
|
1798 |
self.PreviousValue = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1799 |
|
814 | 1800 |
def Flush(self): |
1801 |
if self.Input is not None: |
|
1802 |
self.Input.Flush() |
|
1803 |
self.Input = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1804 |
|
814 | 1805 |
def SpreadCurrent(self): |
1806 |
if self.Parent.Debug: |
|
1807 |
self.PreviousValue = self.Value |
|
1808 |
self.Value = self.Input.ReceivingCurrent() |
|
1809 |
if self.Value != self.PreviousValue and self.Visible: |
|
1810 |
self.Parent.ElementNeedRefresh(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1811 |
|
814 | 1812 |
# Make a clone of this SFC_ActionBlock |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1813 |
def Clone(self, parent, id=None, pos=None): |
814 | 1814 |
actions = [action.copy() for action in self.Actions] |
1815 |
action_block = SFC_ActionBlock(parent, actions, id) |
|
1816 |
action_block.SetSize(self.Size[0], self.Size[1]) |
|
1817 |
if pos is not None: |
|
1818 |
action_block.SetPosition(pos.x, pos.y) |
|
1819 |
else: |
|
1820 |
action_block.SetPosition(self.Pos.x, self.Pos.y) |
|
1821 |
action_block.Input = self.Input.Clone(action_block) |
|
1822 |
return action_block |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1823 |
|
814 | 1824 |
def GetConnectorTranslation(self, element): |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
1825 |
return {self.Input: element.Input} |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1826 |
|
814 | 1827 |
# Returns the RedrawRect |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1828 |
def GetRedrawRect(self, movex=0, movey=0): |
814 | 1829 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
1652
be605b2e6e3a
fix redraw debug instance tab after transferring new build to PLC. closes #15
Surkov Sergey <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
1830 |
if self.Input: |
be605b2e6e3a
fix redraw debug instance tab after transferring new build to PLC. closes #15
Surkov Sergey <surkovsv93@gmail.com>
parents:
1571
diff
changeset
|
1831 |
rect = rect.Union(self.Input.GetRedrawRect(movex, movey)) |
814 | 1832 |
if movex != 0 or movey != 0: |
1833 |
if self.Input.IsConnected(): |
|
1834 |
rect = rect.Union(self.Input.GetConnectedRedrawRect(movex, movey)) |
|
1835 |
return rect |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1836 |
|
814 | 1837 |
# Returns the number of action lines |
1838 |
def GetLineNumber(self): |
|
1839 |
return len(self.Actions) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1840 |
|
814 | 1841 |
def GetLineSize(self): |
1842 |
if len(self.Actions) > 0: |
|
1843 |
return self.Size[1] / len(self.Actions) |
|
1844 |
else: |
|
1845 |
return SFC_ACTION_MIN_SIZE[1] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1846 |
|
814 | 1847 |
# Forbids to resize the action block |
1848 |
def Resize(self, x, y, width, height): |
|
1849 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
1850 |
if x == 0: |
|
1851 |
self.SetSize(width, self.Size[1]) |
|
1852 |
else: |
|
1853 |
Graphic_Element.Resize(self, x, y, width, height) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1854 |
|
814 | 1855 |
# Delete this action block by calling the appropriate method |
1856 |
def Delete(self): |
|
1857 |
self.Parent.DeleteActionBlock(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1858 |
|
814 | 1859 |
# Unconnect input and output |
1860 |
def Clean(self): |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1861 |
self.Input.UnConnect(delete=self.Parent.GetDrawingMode() == FREEDRAWING_MODE) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1862 |
|
814 | 1863 |
# Refresh the action block bounding box |
1864 |
def RefreshBoundingBox(self): |
|
1865 |
self.BoundingBox = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1866 |
|
814 | 1867 |
# Refresh the position of wires connected to action block |
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1849
diff
changeset
|
1868 |
def RefreshConnected(self, exclude=None): |
814 | 1869 |
self.Input.MoveConnected(exclude) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1870 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1871 |
# Returns input action block connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1872 |
def GetConnector(self, position=None, name=None): |
814 | 1873 |
return self.Input |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1874 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1875 |
# Returns all the action block connectors |
814 | 1876 |
def GetConnectors(self): |
1877 |
return {"inputs": [self.Input], "outputs": []} |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1878 |
|
814 | 1879 |
# Test if point given is on action block input connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1880 |
def TestConnector(self, pt, direction=None, exclude=True): |
814 | 1881 |
# Test input connector |
1882 |
if self.Input.TestPoint(pt, direction, exclude): |
|
1883 |
return self.Input |
|
1884 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1885 |
|
814 | 1886 |
# Refresh the element connectors position |
1887 |
def RefreshConnectors(self): |
|
1888 |
scaling = self.Parent.GetScaling() |
|
1889 |
vertical_pos = SFC_ACTION_MIN_SIZE[1] / 2 |
|
1890 |
if scaling is not None: |
|
1891 |
vertical_pos = round(float(self.Pos.y + vertical_pos) / float(scaling[1])) * scaling[1] - self.Pos.y |
|
1892 |
self.Input.SetPosition(wx.Point(0, vertical_pos)) |
|
1893 |
self.RefreshConnected() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1894 |
|
814 | 1895 |
# Changes the action block actions |
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1849
diff
changeset
|
1896 |
def SetActions(self, actions=None): |
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1849
diff
changeset
|
1897 |
actions = [] if actions is None else actions |
814 | 1898 |
self.Actions = actions |
1899 |
self.ColSize = [0, 0, 0] |
|
1900 |
min_height = 0 |
|
1901 |
for action in self.Actions: |
|
1339 | 1902 |
width, height = self.Parent.GetTextExtent( |
1903 |
action.qualifier if action.qualifier != "" else "N") |
|
814 | 1904 |
self.ColSize[0] = max(self.ColSize[0], width + 10) |
1905 |
row_height = height |
|
1339 | 1906 |
if action.duration != "": |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
1907 |
width, height = self.Parent.GetTextExtent(action.duration) |
814 | 1908 |
row_height = max(row_height, height) |
1909 |
self.ColSize[0] = max(self.ColSize[0], width + 10) |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
1910 |
width, height = self.Parent.GetTextExtent(action.value) |
814 | 1911 |
row_height = max(row_height, height) |
1912 |
self.ColSize[1] = max(self.ColSize[1], width + 10) |
|
1339 | 1913 |
if action.indicator != "": |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
1914 |
width, height = self.Parent.GetTextExtent(action.indicator) |
814 | 1915 |
row_height = max(row_height, height) |
1916 |
self.ColSize[2] = max(self.ColSize[2], width + 10) |
|
1917 |
min_height += row_height + 5 |
|
1918 |
if self.Parent.GetDrawingMode() == FREEDRAWING_MODE: |
|
1919 |
self.Size = wx.Size(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], max(min_height, SFC_ACTION_MIN_SIZE[1], self.Size[1])) |
|
1920 |
self.MinSize = max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1921 |
SFC_ACTION_MIN_SIZE[0]), max(SFC_ACTION_MIN_SIZE[1], min_height) |
814 | 1922 |
self.RefreshBoundingBox() |
1923 |
else: |
|
1924 |
self.Size = wx.Size(max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1925 |
SFC_ACTION_MIN_SIZE[0]), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1926 |
len(self.Actions) * SFC_ACTION_MIN_SIZE[1]) |
814 | 1927 |
self.MinSize = max(self.ColSize[0] + self.ColSize[1] + self.ColSize[2], |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
1928 |
SFC_ACTION_MIN_SIZE[0]), len(self.Actions) * SFC_ACTION_MIN_SIZE[1] |
814 | 1929 |
self.RefreshBoundingBox() |
1339 | 1930 |
if self.Input is not None: |
814 | 1931 |
wires = self.Input.GetWires() |
1932 |
if len(wires) == 1: |
|
1933 |
input_block = wires[0][0].GetOtherConnected(self.Input).GetParentBlock() |
|
1934 |
input_block.RefreshOutputPosition() |
|
1935 |
input_block.RefreshOutputModel(True) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1936 |
|
814 | 1937 |
# Returns the action block actions |
1938 |
def GetActions(self): |
|
1939 |
return self.Actions |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1940 |
|
814 | 1941 |
# Returns the action block minimum size |
1942 |
def GetMinSize(self): |
|
1943 |
return self.MinSize |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1944 |
|
814 | 1945 |
# Method called when a LeftDClick event have been generated |
1946 |
def OnLeftDClick(self, event, dc, scaling): |
|
1947 |
# Edit the action block properties |
|
1948 |
self.Parent.EditActionBlockContent(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1949 |
|
814 | 1950 |
# Method called when a RightUp event have been generated |
1951 |
def OnRightUp(self, event, dc, scaling): |
|
1952 |
# Popup the default menu |
|
1953 |
self.Parent.PopupDefaultMenu() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1954 |
|
814 | 1955 |
# Refreshes the action block state according to move defined and handle selected |
1956 |
def ProcessDragging(self, movex, movey, event, scaling): |
|
1957 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE: |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1958 |
handle_type, _handle = self.Handle |
814 | 1959 |
if handle_type == HANDLE_MOVE: |
1960 |
movex = max(-self.BoundingBox.x, movex) |
|
1961 |
if scaling is not None: |
|
1962 |
movex = round(float(self.Pos.x + movex) / float(scaling[0])) * scaling[0] - self.Pos.x |
|
1963 |
wires = self.Input.GetWires() |
|
1964 |
if len(wires) == 1: |
|
1965 |
input_pos = wires[0][0].GetOtherConnected(self.Input).GetPosition(False) |
|
1966 |
if self.Pos.x - input_pos.x + movex >= SFC_WIRE_MIN_SIZE: |
|
1967 |
self.Move(movex, 0) |
|
1968 |
return movex, 0 |
|
1969 |
return 0, 0 |
|
1970 |
else: |
|
1971 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
|
1972 |
else: |
|
1973 |
return Graphic_Element.ProcessDragging(self, movex, movey, event, scaling) |
|
1974 |
||
1975 |
# Refreshes the action block model |
|
1976 |
def RefreshModel(self, move=True): |
|
1977 |
self.Parent.RefreshActionBlockModel(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1978 |
|
814 | 1979 |
# Adds an highlight to the variable |
1980 |
def AddHighlight(self, infos, start, end, highlight_type): |
|
1981 |
if infos[0] == "action" and infos[1] < len(self.Actions): |
|
1982 |
action_highlights = self.Highlights.setdefault(infos[1], {}) |
|
1983 |
attribute_highlights = action_highlights.setdefault(infos[2], []) |
|
1984 |
AddHighlight(attribute_highlights, (start, end, highlight_type)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1985 |
|
814 | 1986 |
# Removes an highlight from the block |
1987 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
|
1988 |
if infos[0] == "action" and infos[1] < len(self.Actions): |
|
1989 |
action_highlights = self.Highlights.get(infos[1], {}) |
|
1990 |
attribute_highlights = action_highlights.setdefault(infos[2], []) |
|
1991 |
if RemoveHighlight(attribute_highlights, (start, end, highlight_type)) and len(attribute_highlights) == 0: |
|
1992 |
action_highlights.pop(infos[2]) |
|
1993 |
if len(action_highlights) == 0: |
|
1994 |
self.Highlights.pop(infos[1]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
1995 |
|
814 | 1996 |
# Removes all the highlights of one particular type from the block |
1997 |
def ClearHighlight(self, highlight_type=None): |
|
1998 |
if highlight_type is None: |
|
1999 |
self.Highlights = {} |
|
2000 |
else: |
|
2001 |
highlight_items = self.Highlights.items() |
|
2002 |
for number, action_highlights in highlight_items: |
|
2003 |
action_highlight_items = action_highlights.items() |
|
1849 | 2004 |
for name, attribute_highlights in action_highlight_items: |
814 | 2005 |
attribute_highlights = ClearHighlights(attribute_highlights, highlight_type) |
2006 |
if len(attribute_highlights) == 0: |
|
2007 |
action_highlights.pop(name) |
|
2008 |
if len(action_highlights) == 0: |
|
2009 |
self.Highlights.pop(number) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
2010 |
|
814 | 2011 |
# Draws divergence |
2012 |
def Draw(self, dc): |
|
2013 |
Graphic_Element.Draw(self, dc) |
|
2014 |
if self.Value: |
|
2015 |
dc.SetPen(MiterPen(wx.GREEN)) |
|
2016 |
else: |
|
2017 |
dc.SetPen(MiterPen(wx.BLACK)) |
|
2018 |
dc.SetBrush(wx.WHITE_BRUSH) |
|
2019 |
colsize = [self.ColSize[0], self.Size[0] - self.ColSize[0] - self.ColSize[2], self.ColSize[2]] |
|
2020 |
# Draw plain rectangle for representing the action block |
|
2021 |
dc.DrawRectangle(self.Pos.x, self.Pos.y, self.Size[0] + 1, self.Size[1] + 1) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
2022 |
dc.DrawLine(self.Pos.x + colsize[0], self.Pos.y, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
2023 |
self.Pos.x + colsize[0], self.Pos.y + self.Size[1]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
2024 |
dc.DrawLine(self.Pos.x + colsize[0] + colsize[1], self.Pos.y, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
2025 |
self.Pos.x + colsize[0] + colsize[1], self.Pos.y + self.Size[1]) |
814 | 2026 |
line_size = self.GetLineSize() |
2027 |
for i, action in enumerate(self.Actions): |
|
2028 |
if i != 0: |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
2029 |
dc.DrawLine(self.Pos.x, self.Pos.y + i * line_size, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
2030 |
self.Pos.x + self.Size[0], self.Pos.y + i * line_size) |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2031 |
qualifier_size = dc.GetTextExtent(action.qualifier) |
1339 | 2032 |
if action.duration != "": |
814 | 2033 |
qualifier_pos = (self.Pos.x + (colsize[0] - qualifier_size[0]) / 2, |
2034 |
self.Pos.y + i * line_size + line_size / 2 - qualifier_size[1]) |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2035 |
duration_size = dc.GetTextExtent(action.duration) |
814 | 2036 |
duration_pos = (self.Pos.x + (colsize[0] - duration_size[0]) / 2, |
2037 |
self.Pos.y + i * line_size + line_size / 2) |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2038 |
dc.DrawText(action.duration, duration_pos[0], duration_pos[1]) |
814 | 2039 |
else: |
2040 |
qualifier_pos = (self.Pos.x + (colsize[0] - qualifier_size[0]) / 2, |
|
2041 |
self.Pos.y + i * line_size + (line_size - qualifier_size[1]) / 2) |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2042 |
dc.DrawText(action.qualifier, qualifier_pos[0], qualifier_pos[1]) |
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2043 |
content_size = dc.GetTextExtent(action.value) |
814 | 2044 |
content_pos = (self.Pos.x + colsize[0] + (colsize[1] - content_size[0]) / 2, |
2045 |
self.Pos.y + i * line_size + (line_size - content_size[1]) / 2) |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2046 |
dc.DrawText(action.value, content_pos[0], content_pos[1]) |
1339 | 2047 |
if action.indicator != "": |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2048 |
indicator_size = dc.GetTextExtent(action.indicator) |
814 | 2049 |
indicator_pos = (self.Pos.x + colsize[0] + colsize[1] + (colsize[2] - indicator_size[0]) / 2, |
2050 |
self.Pos.y + i * line_size + (line_size - indicator_size[1]) / 2) |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2051 |
dc.DrawText(action.indicator, indicator_pos[0], indicator_pos[1]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
2052 |
|
814 | 2053 |
if not getattr(dc, "printing", False): |
2054 |
action_highlights = self.Highlights.get(i, {}) |
|
2055 |
for name, attribute_highlights in action_highlights.iteritems(): |
|
2056 |
if name == "qualifier": |
|
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2057 |
DrawHighlightedText(dc, action.qualifier, attribute_highlights, qualifier_pos[0], qualifier_pos[1]) |
814 | 2058 |
elif name == "duration": |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2059 |
DrawHighlightedText(dc, action.duration, attribute_highlights, duration_pos[0], duration_pos[1]) |
814 | 2060 |
elif name in ["reference", "inline"]: |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2061 |
DrawHighlightedText(dc, action.value, attribute_highlights, content_pos[0], content_pos[1]) |
814 | 2062 |
elif name == "indicator": |
1338
c1e6c712cc35
Replaced old graphic viewer blocks loading process by xslt stylesheet
Laurent Bessard
parents:
1258
diff
changeset
|
2063 |
DrawHighlightedText(dc, action.indicator, attribute_highlights, indicator_pos[0], indicator_pos[1]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1653
diff
changeset
|
2064 |
|
814 | 2065 |
# Draw input connector |
2066 |
self.Input.Draw(dc) |