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