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