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