author | Edouard Tisserant |
Fri, 21 Aug 2020 14:29:03 +0200 | |
branch | svghmi |
changeset 3034 | 793ce2117258 |
parent 2625 | e5ce6c4a8672 |
child 3303 | 0ffb41625592 |
child 3333 | dd49e4055a10 |
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
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:
1544
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 24 |
|
1832
0f1081928d65
fix wrong-import-order. first standard modules are imported, then others
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1828
diff
changeset
|
25 |
|
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
|
26 |
from __future__ import absolute_import |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
27 |
from __future__ import division |
814 | 28 |
from math import * |
2457
9deec258ab1a
python3 support: pylint, W1633 # (round-builtin) round built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2450
diff
changeset
|
29 |
from future.builtins import round |
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
30 |
from six import string_types |
2432
dbc065a2f7a5
python3 support: pylint, W1613 # (xrange-builtin) xrange built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1881
diff
changeset
|
31 |
from six.moves import xrange |
814 | 32 |
|
1832
0f1081928d65
fix wrong-import-order. first standard modules are imported, then others
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1828
diff
changeset
|
33 |
import wx |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
34 |
from graphics.ToolTipProducer import ToolTipProducer |
1176
f4b434672204
Moved and rewrote DebugViewer and DebusDataConsumer classes
Laurent Bessard
parents:
1173
diff
changeset
|
35 |
from graphics.DebugDataConsumer import DebugDataConsumer |
1169
53e4a2b775a7
Move CustomToolTip from GraphicCommons to controls
Laurent Bessard
parents:
1166
diff
changeset
|
36 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
37 |
# ------------------------------------------------------------------------------- |
814 | 38 |
# Common constants |
1837
c507c363625e
fix pylint warning '(pointless-string-statement) String statement has no effect'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
39 |
# |
c507c363625e
fix pylint warning '(pointless-string-statement) String statement has no effect'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
40 |
# Definition of constants for dimensions of graphic elements |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
41 |
# ------------------------------------------------------------------------------- |
814 | 42 |
|
43 |
# FBD and SFC constants |
|
44 |
MIN_MOVE = 5 # Minimum move before starting a element dragging |
|
45 |
CONNECTOR_SIZE = 8 # Size of connectors |
|
46 |
BLOCK_LINE_SIZE = 20 # Minimum size of each line in a block |
|
47 |
HANDLE_SIZE = 6 # Size of the squares for handles |
|
48 |
ANCHOR_DISTANCE = 5 # Distance where wire is automativally attached to a connector |
|
49 |
POINT_RADIUS = 2 # Radius of the point of wire ends |
|
50 |
MIN_SEGMENT_SIZE = 2 # Minimum size of the endling segments of a wire |
|
51 |
||
52 |
# LD constants |
|
53 |
LD_LINE_SIZE = 40 # Distance between two lines in a ladder rung |
|
54 |
LD_ELEMENT_SIZE = (21, 15) # Size (width, height) of a ladder element (contact or coil) |
|
55 |
LD_WIRE_SIZE = 30 # Size of a wire between two contact |
|
56 |
LD_WIRECOIL_SIZE = 70 # Size of a wire between a coil and a contact |
|
57 |
LD_POWERRAIL_WIDTH = 3 # Width of a Powerrail |
|
58 |
LD_OFFSET = (10, 10) # Distance (x, y) between each comment and rung of the ladder |
|
59 |
LD_COMMENT_DEFAULTSIZE = (600, 40) # Size (width, height) of a comment box |
|
60 |
||
61 |
# SFC constants |
|
62 |
SFC_STEP_DEFAULT_SIZE = (40, 30) # Default size of a SFC step |
|
63 |
SFC_TRANSITION_SIZE = (20, 2) # Size of a SFC transition |
|
64 |
SFC_DEFAULT_SEQUENCE_INTERVAL = 40 # Default size of the interval between two divergence branches |
|
65 |
SFC_SIMULTANEOUS_SEQUENCE_EXTRA = 20 # Size of extra lines for simultaneous divergence and convergence |
|
66 |
SFC_JUMP_SIZE = (12, 13) # Size of a SFC jump to step |
|
67 |
SFC_WIRE_MIN_SIZE = 25 # Size of a wire between two elements |
|
68 |
SFC_ACTION_MIN_SIZE = (100, 30) # Minimum size of an action block line |
|
69 |
||
70 |
# Type definition constants for graphic elements |
|
71 |
[INPUT, OUTPUT, INOUT] = range(3) |
|
72 |
[CONNECTOR, CONTINUATION] = range(2) |
|
73 |
[LEFTRAIL, RIGHTRAIL] = range(2) |
|
74 |
[CONTACT_NORMAL, CONTACT_REVERSE, CONTACT_RISING, CONTACT_FALLING] = range(4) |
|
75 |
[COIL_NORMAL, COIL_REVERSE, COIL_SET, COIL_RESET, COIL_RISING, COIL_FALLING] = range(6) |
|
76 |
[SELECTION_DIVERGENCE, SELECTION_CONVERGENCE, SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE] = range(4) |
|
77 |
||
78 |
# Constants for defining the type of dragging that has been selected |
|
79 |
[HANDLE_MOVE, HANDLE_RESIZE, HANDLE_POINT, HANDLE_SEGMENT, HANDLE_CONNECTOR] = range(5) |
|
80 |
||
81 |
# List of value for resize handle that are valid |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
82 |
VALID_HANDLES = [(1, 1), (1, 2), (1, 3), (2, 3), (3, 3), (3, 2), (3, 1), (2, 1)] |
814 | 83 |
|
84 |
# Contants for defining the direction of a connector |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
85 |
[EAST, NORTH, WEST, SOUTH] = [(1, 0), (0, -1), (-1, 0), (0, 1)] |
814 | 86 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
87 |
# Contants for defining which mode is selected for each view |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
88 |
[MODE_SELECTION, MODE_BLOCK, MODE_VARIABLE, MODE_CONNECTION, MODE_COMMENT, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
89 |
MODE_COIL, MODE_CONTACT, MODE_POWERRAIL, MODE_INITIALSTEP, MODE_STEP, |
814 | 90 |
MODE_TRANSITION, MODE_DIVERGENCE, MODE_JUMP, MODE_ACTION, MODE_MOTION] = range(15) |
91 |
||
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
92 |
# Contants for defining alignment types for graphic group |
814 | 93 |
[ALIGN_LEFT, ALIGN_CENTER, ALIGN_RIGHT, ALIGN_TOP, ALIGN_MIDDLE, ALIGN_BOTTOM] = range(6) |
94 |
||
95 |
# Contants for defining which drawing mode is selected for app |
|
96 |
[FREEDRAWING_MODE, DRIVENDRAWING_MODE] = [1, 2] |
|
97 |
||
98 |
# Color for Highlighting |
|
99 |
HIGHLIGHTCOLOR = wx.CYAN |
|
100 |
||
101 |
# Define highlight types |
|
102 |
ERROR_HIGHLIGHT = (wx.Colour(255, 255, 0), wx.RED) |
|
103 |
SEARCH_RESULT_HIGHLIGHT = (wx.Colour(255, 165, 0), wx.WHITE) |
|
104 |
||
105 |
# Define highlight refresh inhibition period in second |
|
106 |
REFRESH_HIGHLIGHT_PERIOD = 0.1 |
|
107 |
||
108 |
HANDLE_CURSORS = { |
|
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
109 |
(1, 1): 2, |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
110 |
(3, 3): 2, |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
111 |
(1, 3): 3, |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
112 |
(3, 1): 3, |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
113 |
(1, 2): 4, |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
114 |
(3, 2): 4, |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
115 |
(2, 1): 5, |
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
116 |
(2, 3): 5 |
814 | 117 |
} |
118 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
119 |
|
814 | 120 |
def round_scaling(x, n, constraint=0): |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
121 |
fraction = x / n |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
122 |
if constraint == -1: |
814 | 123 |
xround = int(fraction) |
124 |
else: |
|
125 |
xround = round(fraction) |
|
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
126 |
if constraint == 1 and xround < fraction: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
127 |
xround += 1 |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
128 |
return int(xround * n) |
814 | 129 |
|
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
130 |
|
1837
c507c363625e
fix pylint warning '(pointless-string-statement) String statement has no effect'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
131 |
# ------------------------------------------------------------------------------- |
c507c363625e
fix pylint warning '(pointless-string-statement) String statement has no effect'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
132 |
# Basic vector operations for calculate wire points |
c507c363625e
fix pylint warning '(pointless-string-statement) String statement has no effect'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1832
diff
changeset
|
133 |
# ------------------------------------------------------------------------------- |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
134 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
135 |
def vector(p1, p2, normal=True): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
136 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
137 |
Create a vector from two points and define if vector must be normal |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
138 |
""" |
814 | 139 |
vector = (p2.x - p1.x, p2.y - p1.y) |
140 |
if normal: |
|
141 |
return normalize(vector) |
|
142 |
return vector |
|
143 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
144 |
|
814 | 145 |
def norm(v): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
146 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
147 |
Calculate the norm of a given vector |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
148 |
""" |
814 | 149 |
return sqrt(v[0] * v[0] + v[1] * v[1]) |
150 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
151 |
|
814 | 152 |
def normalize(v): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
153 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
154 |
Normalize a given vector |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
155 |
""" |
814 | 156 |
v_norm = norm(v) |
157 |
# Verifie if it is not a null vector |
|
158 |
if v_norm > 0: |
|
159 |
return (v[0] / v_norm, v[1] / v_norm) |
|
160 |
else: |
|
161 |
return v |
|
162 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
163 |
|
814 | 164 |
def is_null_vector(v): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
165 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
166 |
Calculate the scalar product of two vectors |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
167 |
""" |
814 | 168 |
return v == (0, 0) |
169 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
170 |
|
814 | 171 |
def add_vectors(v1, v2): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
172 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
173 |
Calculate the scalar product of two vectors |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
174 |
""" |
814 | 175 |
return (v1[0] + v2[0], v1[1] + v2[1]) |
176 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
177 |
|
814 | 178 |
def product(v1, v2): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
179 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
180 |
Calculate the scalar product of two vectors |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
181 |
""" |
814 | 182 |
return v1[0] * v2[0] + v1[1] * v2[1] |
183 |
||
184 |
||
185 |
def GetScaledEventPosition(event, dc, scaling): |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
186 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
187 |
Function that calculates the nearest point of the grid defined by scaling for the given point |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
188 |
""" |
814 | 189 |
pos = event.GetLogicalPosition(dc) |
190 |
if scaling: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
191 |
pos.x = round(pos.x / scaling[0]) * scaling[0] |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
192 |
pos.y = round(pos.y / scaling[1]) * scaling[1] |
814 | 193 |
return pos |
194 |
||
195 |
||
196 |
def DirectionChoice(v_base, v_target, dir_target): |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
197 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
198 |
Function that choose a direction during the wire points generation |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
199 |
""" |
814 | 200 |
dir_product = product(v_base, v_target) |
201 |
if dir_product < 0: |
|
202 |
return (-v_base[0], -v_base[1]) |
|
203 |
elif dir_product == 0 and product(v_base, dir_target) != 0: |
|
204 |
return dir_target |
|
205 |
return v_base |
|
206 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
207 |
|
814 | 208 |
def MiterPen(colour, width=1, style=wx.SOLID): |
209 |
pen = wx.Pen(colour, width, style) |
|
210 |
pen.SetJoin(wx.JOIN_MITER) |
|
211 |
pen.SetCap(wx.CAP_PROJECTING) |
|
212 |
return pen |
|
213 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
214 |
|
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
215 |
# ------------------------------------------------------------------------------- |
814 | 216 |
# Helpers for highlighting text |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
217 |
# ------------------------------------------------------------------------------- |
814 | 218 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
219 |
|
814 | 220 |
def AddHighlight(highlights, infos): |
221 |
RemoveHighlight(highlights, infos) |
|
222 |
highlights.append(infos) |
|
223 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
224 |
|
814 | 225 |
def RemoveHighlight(highlights, infos): |
226 |
if infos in highlights: |
|
227 |
highlights.remove(infos) |
|
228 |
return True |
|
229 |
return False |
|
230 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
231 |
|
1872
866fb3ab8778
fix pylint error "(undefined-variable) Undefined variable 'X'"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1870
diff
changeset
|
232 |
def ClearHighlights(highlights, highlight_type=None): |
814 | 233 |
if highlight_type is not None: |
234 |
return [highlight for highlight in highlights if highlight[2] != highlight_type] |
|
235 |
return [] |
|
236 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
237 |
|
814 | 238 |
def DrawHighlightedText(dc, text, highlights, x, y): |
239 |
current_pen = dc.GetPen() |
|
240 |
dc.SetPen(wx.TRANSPARENT_PEN) |
|
241 |
for start, end, highlight_type in highlights: |
|
242 |
dc.SetBrush(wx.Brush(highlight_type[0])) |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
243 |
offset_width, _offset_height = dc.GetTextExtent(text[:start[1]]) |
814 | 244 |
part = text[start[1]:end[1] + 1] |
245 |
part_width, part_height = dc.GetTextExtent(part) |
|
246 |
dc.DrawRectangle(x + offset_width, y, part_width, part_height) |
|
247 |
dc.SetTextForeground(highlight_type[1]) |
|
248 |
dc.DrawText(part, x + offset_width, y) |
|
249 |
dc.SetPen(current_pen) |
|
250 |
dc.SetTextForeground(wx.BLACK) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
251 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
252 |
|
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
253 |
# ------------------------------------------------------------------------------- |
814 | 254 |
# Graphic element base class |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
255 |
# ------------------------------------------------------------------------------- |
814 | 256 |
|
257 |
||
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
258 |
class Graphic_Element(ToolTipProducer): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
259 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
260 |
Class that implements a generic graphic element |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
261 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
262 |
|
814 | 263 |
# Create a new graphic element |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
264 |
def __init__(self, parent, id=None): |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
265 |
ToolTipProducer.__init__(self, parent) |
814 | 266 |
self.Parent = parent |
267 |
self.Id = id |
|
268 |
self.oldPos = None |
|
269 |
self.StartPos = None |
|
270 |
self.CurrentDrag = None |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
271 |
self.Handle = (None, None) |
814 | 272 |
self.Dragging = False |
273 |
self.Selected = False |
|
274 |
self.Highlighted = False |
|
275 |
self.Pos = wx.Point(0, 0) |
|
276 |
self.Size = wx.Size(0, 0) |
|
277 |
self.BoundingBox = wx.Rect(0, 0, 0, 0) |
|
278 |
self.Visible = False |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
279 |
|
814 | 280 |
def GetDefinition(self): |
281 |
return [self.Id], [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
282 |
|
814 | 283 |
def TestVisible(self, screen): |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
284 |
self.Visible = self.Selected or self.GetRedrawRect().Intersects(screen) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
285 |
|
814 | 286 |
def IsVisible(self): |
287 |
return self.Visible |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
288 |
|
814 | 289 |
def SpreadCurrent(self): |
290 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
291 |
|
814 | 292 |
def GetConnectorTranslation(self, element): |
293 |
return {} |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
294 |
|
814 | 295 |
def FindNearestConnector(self, position, connectors): |
296 |
distances = [] |
|
297 |
for connector in connectors: |
|
298 |
connector_pos = connector.GetRelPosition() |
|
299 |
distances.append((sqrt((self.Pos.x + connector_pos.x - position.x) ** 2 + |
|
300 |
(self.Pos.y + connector_pos.y - position.y) ** 2), |
|
301 |
connector)) |
|
302 |
distances.sort() |
|
303 |
if len(distances) > 0: |
|
304 |
return distances[0][1] |
|
305 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
306 |
|
814 | 307 |
def IsOfType(self, type, reference): |
308 |
return self.Parent.IsOfType(type, reference) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
309 |
|
814 | 310 |
def IsEndType(self, type): |
311 |
return self.Parent.IsEndType(type) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
312 |
|
814 | 313 |
def GetDragging(self): |
314 |
return self.Dragging |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
315 |
|
814 | 316 |
# Make a clone of this element |
317 |
def Clone(self, parent): |
|
318 |
return Graphic_Element(parent, self.Id) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
319 |
|
814 | 320 |
# Changes the block position |
321 |
def SetPosition(self, x, y): |
|
322 |
self.Pos.x = x |
|
323 |
self.Pos.y = y |
|
324 |
self.RefreshConnected() |
|
325 |
self.RefreshBoundingBox() |
|
326 |
||
327 |
# Returns the block position |
|
328 |
def GetPosition(self): |
|
329 |
return self.Pos.x, self.Pos.y |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
330 |
|
814 | 331 |
# Changes the element size |
332 |
def SetSize(self, width, height): |
|
333 |
self.Size.SetWidth(width) |
|
334 |
self.Size.SetHeight(height) |
|
335 |
self.RefreshConnectors() |
|
336 |
self.RefreshBoundingBox() |
|
337 |
||
338 |
# Returns the element size |
|
339 |
def GetSize(self): |
|
340 |
return self.Size.GetWidth(), self.Size.GetHeight() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
341 |
|
814 | 342 |
# Returns the minimum element size |
343 |
def GetMinSize(self): |
|
344 |
return 0, 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
345 |
|
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
346 |
# Set size of the element to the minimum size |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
347 |
def SetBestSize(self, scaling, x_factor=0.5, y_factor=0.5): |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
348 |
width, height = self.GetSize() |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
349 |
posx, posy = self.GetPosition() |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
350 |
min_width, min_height = self.GetMinSize() |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
351 |
if width < min_width: |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
352 |
self.Pos.x = max(0, self.Pos.x - (width - min_width) * x_factor) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
353 |
width = min_width |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
354 |
if height < min_height: |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
355 |
self.Pos.y = max(0, self.Pos.y - (height - min_height) * y_factor) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
356 |
height = min_height |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
357 |
if scaling is not None: |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
358 |
self.Pos.x = round_scaling(self.Pos.x, scaling[0]) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
359 |
self.Pos.y = round_scaling(self.Pos.y, scaling[1]) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
360 |
width = round_scaling(width, scaling[0], 1) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
361 |
height = round_scaling(height, scaling[1], 1) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
362 |
self.SetSize(width, height) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
363 |
return self.Pos.x - posx, self.Pos.y - posy |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
364 |
|
814 | 365 |
# Refresh the element connectors position |
366 |
def RefreshConnectors(self): |
|
367 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
368 |
|
814 | 369 |
# Refresh the position of wires connected to element inputs and outputs |
1870
4d070115b552
fix pylint error '(too-many-function-args) Too many positional arguments for function call'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1868
diff
changeset
|
370 |
def RefreshConnected(self, exclude=None): |
814 | 371 |
pass |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
372 |
|
814 | 373 |
# Change the parent |
374 |
def SetParent(self, parent): |
|
375 |
self.Parent = parent |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
376 |
|
814 | 377 |
# Override this method for defining the method to call for deleting this element |
378 |
def Delete(self): |
|
379 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
380 |
|
814 | 381 |
# Returns the Id |
382 |
def GetId(self): |
|
383 |
return self.Id |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
384 |
|
814 | 385 |
# Returns if the point given is in the bounding box |
386 |
def HitTest(self, pt, connectors=True): |
|
387 |
if connectors: |
|
388 |
rect = self.BoundingBox |
|
389 |
else: |
|
390 |
rect = wx.Rect(self.Pos.x, self.Pos.y, self.Size[0], self.Size[1]) |
|
391 |
return rect.InsideXY(pt.x, pt.y) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
392 |
|
814 | 393 |
# Returns if the point given is in the bounding box |
394 |
def IsInSelection(self, rect): |
|
395 |
return rect.InsideXY(self.BoundingBox.x, self.BoundingBox.y) and rect.InsideXY(self.BoundingBox.x + self.BoundingBox.width, self.BoundingBox.y + self.BoundingBox.height) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
396 |
|
814 | 397 |
# Override this method for refreshing the bounding box |
398 |
def RefreshBoundingBox(self): |
|
399 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
400 |
|
814 | 401 |
# Returns the bounding box |
402 |
def GetBoundingBox(self): |
|
403 |
return self.BoundingBox |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
404 |
|
814 | 405 |
# 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
|
406 |
def GetRedrawRect(self, movex=0, movey=0): |
814 | 407 |
scalex, scaley = self.Parent.GetViewScale() |
408 |
rect = wx.Rect() |
|
409 |
rect.x = self.BoundingBox.x - int(HANDLE_SIZE / scalex) - 3 - abs(movex) |
|
410 |
rect.y = self.BoundingBox.y - int(HANDLE_SIZE / scaley) - 3 - abs(movey) |
|
411 |
rect.width = self.BoundingBox.width + 2 * (int(HANDLE_SIZE / scalex) + abs(movex) + 1) + 4 |
|
412 |
rect.height = self.BoundingBox.height + 2 * (int(HANDLE_SIZE / scaley) + abs(movey) + 1) + 4 |
|
413 |
return rect |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
414 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
415 |
def Refresh(self, rect=None): |
814 | 416 |
if self.Visible: |
417 |
if rect is not None: |
|
418 |
self.Parent.RefreshRect(self.Parent.GetScrolledRect(rect), False) |
|
419 |
else: |
|
420 |
self.Parent.RefreshRect(self.Parent.GetScrolledRect(self.GetRedrawRect()), False) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
421 |
|
814 | 422 |
# Change the variable that indicates if this element is selected |
423 |
def SetSelected(self, selected): |
|
424 |
self.Selected = selected |
|
425 |
self.Refresh() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
426 |
|
814 | 427 |
# Change the variable that indicates if this element is highlighted |
428 |
def SetHighlighted(self, highlighted): |
|
429 |
self.Highlighted = highlighted |
|
430 |
self.Refresh() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
431 |
|
814 | 432 |
# Test if the point is on a handle of this element |
433 |
def TestHandle(self, event): |
|
434 |
dc = self.Parent.GetLogicalDC() |
|
435 |
scalex, scaley = dc.GetUserScale() |
|
436 |
pos = event.GetPosition() |
|
437 |
pt = wx.Point(*self.Parent.CalcUnscrolledPosition(pos.x, pos.y)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
438 |
|
814 | 439 |
left = (self.BoundingBox.x - 2) * scalex - HANDLE_SIZE |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
440 |
center = (self.BoundingBox.x + self.BoundingBox.width // 2) * scalex - HANDLE_SIZE // 2 |
814 | 441 |
right = (self.BoundingBox.x + self.BoundingBox.width + 2) * scalex |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
442 |
|
814 | 443 |
top = (self.BoundingBox.y - 2) * scaley - HANDLE_SIZE |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
444 |
middle = (self.BoundingBox.y + self.BoundingBox.height / 2) * scaley - HANDLE_SIZE // 2 |
814 | 445 |
bottom = (self.BoundingBox.y + self.BoundingBox.height + 2) * scaley |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
446 |
|
814 | 447 |
extern_rect = wx.Rect(left, top, right + HANDLE_SIZE - left, bottom + HANDLE_SIZE - top) |
448 |
intern_rect = wx.Rect(left + HANDLE_SIZE, top + HANDLE_SIZE, right - left - HANDLE_SIZE, bottom - top - HANDLE_SIZE) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
449 |
|
814 | 450 |
# Verify that this element is selected |
451 |
if self.Selected and extern_rect.InsideXY(pt.x, pt.y) and not intern_rect.InsideXY(pt.x, pt.y): |
|
452 |
# Find if point is on a handle horizontally |
|
453 |
if left <= pt.x < left + HANDLE_SIZE: |
|
454 |
handle_x = 1 |
|
455 |
elif center <= pt.x < center + HANDLE_SIZE: |
|
456 |
handle_x = 2 |
|
457 |
elif right <= pt.x < right + HANDLE_SIZE: |
|
458 |
handle_x = 3 |
|
459 |
else: |
|
460 |
handle_x = 0 |
|
461 |
# Find if point is on a handle vertically |
|
462 |
if top <= pt.y < top + HANDLE_SIZE: |
|
463 |
handle_y = 1 |
|
464 |
elif middle <= pt.y < middle + HANDLE_SIZE: |
|
465 |
handle_y = 2 |
|
466 |
elif bottom <= pt.y < bottom + HANDLE_SIZE: |
|
467 |
handle_y = 3 |
|
468 |
else: |
|
469 |
handle_y = 0 |
|
470 |
# Verify that the result is valid |
|
471 |
if (handle_x, handle_y) in VALID_HANDLES: |
|
472 |
return handle_x, handle_y |
|
473 |
return 0, 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
474 |
|
814 | 475 |
# Method called when a LeftDown event have been generated |
476 |
def OnLeftDown(self, event, dc, scaling): |
|
477 |
# Test if an handle have been clicked |
|
478 |
handle = self.TestHandle(event) |
|
479 |
# Find which type of handle have been clicked, |
|
480 |
# Save a resize event and change the cursor |
|
481 |
cursor = HANDLE_CURSORS.get(handle, 1) |
|
482 |
wx.CallAfter(self.Parent.SetCurrentCursor, cursor) |
|
483 |
if cursor > 1: |
|
484 |
self.Handle = (HANDLE_RESIZE, handle) |
|
485 |
else: |
|
486 |
self.Handle = (HANDLE_MOVE, None) |
|
487 |
self.SetSelected(False) |
|
488 |
# Initializes the last position |
|
489 |
self.oldPos = GetScaledEventPosition(event, dc, scaling) |
|
490 |
self.StartPos = wx.Point(self.Pos.x, self.Pos.y) |
|
491 |
self.CurrentDrag = wx.Point(0, 0) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
492 |
|
814 | 493 |
# Method called when a LeftUp event have been generated |
494 |
def OnLeftUp(self, event, dc, scaling): |
|
495 |
# If a dragging have been initiated |
|
496 |
if self.Dragging and self.oldPos: |
|
497 |
self.RefreshModel() |
|
498 |
self.Parent.RefreshBuffer() |
|
499 |
wx.CallAfter(self.Parent.SetCurrentCursor, 0) |
|
500 |
self.SetSelected(True) |
|
501 |
self.oldPos = None |
|
502 |
||
503 |
# Method called when a RightDown event have been generated |
|
504 |
def OnRightDown(self, event, dc, scaling): |
|
505 |
pass |
|
506 |
||
507 |
# Method called when a RightUp event have been generated |
|
508 |
def OnRightUp(self, event, dc, scaling): |
|
509 |
if self.Dragging and self.oldPos: |
|
510 |
self.RefreshModel() |
|
511 |
self.Parent.RefreshBuffer() |
|
512 |
wx.CallAfter(self.Parent.SetCurrentCursor, 0) |
|
513 |
self.SetSelected(True) |
|
514 |
self.oldPos = None |
|
515 |
if self.Parent.Debug: |
|
516 |
self.Parent.PopupForceMenu() |
|
517 |
||
518 |
# Method called when a LeftDClick event have been generated |
|
519 |
def OnLeftDClick(self, event, dc, scaling): |
|
520 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
521 |
|
814 | 522 |
# Method called when a Motion event have been generated |
523 |
def OnMotion(self, event, dc, scaling): |
|
524 |
# If the cursor is dragging and the element have been clicked |
|
525 |
if event.Dragging() and self.oldPos: |
|
526 |
# Calculate the movement of cursor |
|
1258
441f31474b50
Fixed move of LD_PowerRail and SFC_Divergence connectors using Right button
Laurent Bessard
parents:
1226
diff
changeset
|
527 |
pos = GetScaledEventPosition(event, dc, scaling) |
814 | 528 |
movex = pos.x - self.oldPos.x |
529 |
movey = pos.y - self.oldPos.y |
|
530 |
# If movement is greater than MIN_MOVE then a dragging is initiated |
|
531 |
if not self.Dragging and (abs(movex) > MIN_MOVE or abs(movey) > MIN_MOVE): |
|
532 |
self.Dragging = True |
|
533 |
# If a dragging have been initiated, refreshes the element state |
|
534 |
if self.Dragging: |
|
535 |
dragx, dragy = self.ProcessDragging(movex, movey, event, scaling) |
|
536 |
if event.ControlDown() and self.Handle[0] == HANDLE_MOVE: |
|
537 |
self.oldPos.x = self.StartPos.x + self.CurrentDrag.x |
|
538 |
self.oldPos.y = self.StartPos.y + self.CurrentDrag.y |
|
539 |
else: |
|
540 |
self.oldPos.x += dragx |
|
541 |
self.oldPos.y += dragy |
|
542 |
return dragx, dragy |
|
543 |
return movex, movey |
|
544 |
# If cursor just pass over the element, changes the cursor if it is on a handle |
|
545 |
else: |
|
546 |
pos = event.GetLogicalPosition(dc) |
|
547 |
handle = self.TestHandle(event) |
|
548 |
# Find which type of handle have been clicked, |
|
549 |
# Save a resize event and change the cursor |
|
550 |
cursor = HANDLE_CURSORS.get(handle, 0) |
|
551 |
wx.CallAfter(self.Parent.SetCurrentCursor, cursor) |
|
552 |
return 0, 0 |
|
553 |
||
554 |
# Moves the element |
|
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
555 |
def Move(self, dx, dy, exclude=None): |
814 | 556 |
self.Pos.x += max(-self.BoundingBox.x, dx) |
557 |
self.Pos.y += max(-self.BoundingBox.y, dy) |
|
558 |
self.RefreshConnected(exclude) |
|
559 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
560 |
|
814 | 561 |
# Resizes the element from position and size given |
562 |
def Resize(self, x, y, width, height): |
|
563 |
self.Move(x, y) |
|
564 |
self.SetSize(width, height) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
565 |
|
814 | 566 |
# Refreshes the element state according to move defined and handle selected |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
567 |
def ProcessDragging(self, movex, movey, event, scaling, width_fac=1, height_fac=1): |
814 | 568 |
handle_type, handle = self.Handle |
569 |
# If it is a resize handle, calculate the values from resizing |
|
570 |
if handle_type == HANDLE_RESIZE: |
|
571 |
if scaling is not None: |
|
572 |
scaling = (scaling[0] * width_fac, scaling[1] * height_fac) |
|
573 |
x = y = start_x = start_y = 0 |
|
574 |
width, height = start_width, start_height = self.GetSize() |
|
575 |
if handle[0] == 1: |
|
576 |
movex = max(-self.BoundingBox.x, movex) |
|
577 |
if scaling is not None: |
|
578 |
movex = -(round_scaling(width - movex, scaling[0]) - width) |
|
579 |
x = movex |
|
580 |
if event.ShiftDown(): |
|
581 |
width -= 2 * movex |
|
582 |
else: |
|
583 |
width -= movex |
|
584 |
elif handle[0] == 3: |
|
585 |
if scaling is not None: |
|
586 |
movex = round_scaling(width + movex, scaling[0]) - width |
|
587 |
if event.ShiftDown(): |
|
588 |
movex = min(self.BoundingBox.x, movex) |
|
589 |
x = -movex |
|
590 |
width += 2 * movex |
|
591 |
else: |
|
592 |
width += movex |
|
593 |
if handle[1] == 1: |
|
594 |
movey = max(-self.BoundingBox.y, movey) |
|
595 |
if scaling is not None: |
|
596 |
movey = -(round_scaling(height - movey, scaling[1]) - height) |
|
597 |
y = movey |
|
598 |
if event.ShiftDown(): |
|
599 |
height -= 2 * movey |
|
600 |
else: |
|
601 |
height -= movey |
|
602 |
elif handle[1] == 3: |
|
603 |
if scaling is not None: |
|
604 |
movey = round_scaling(height + movey, scaling[1]) - height |
|
605 |
if event.ShiftDown(): |
|
606 |
movey = min(self.BoundingBox.y, movey) |
|
607 |
y = -movey |
|
608 |
height += 2 * movey |
|
609 |
else: |
|
610 |
height += movey |
|
611 |
# Verify that new size is not lesser than minimum |
|
612 |
min_width, min_height = self.GetMinSize() |
|
613 |
if handle[0] != 2 and (width >= min_width or width > self.Size[0]): |
|
614 |
start_x = x |
|
615 |
start_width = width |
|
616 |
else: |
|
617 |
movex = 0 |
|
618 |
if handle[1] != 2 and (height >= min_height or height > self.Size[1]): |
|
619 |
start_y = y |
|
620 |
start_height = height |
|
621 |
else: |
|
622 |
movey = 0 |
|
623 |
if movex != 0 or movey != 0: |
|
624 |
self.Resize(start_x, start_y, start_width, start_height) |
|
625 |
return movex, movey |
|
626 |
# If it is a move handle, Move this element |
|
627 |
elif handle_type == HANDLE_MOVE: |
|
628 |
movex = max(-self.BoundingBox.x, movex) |
|
629 |
movey = max(-self.BoundingBox.y, movey) |
|
630 |
if scaling is not None: |
|
631 |
movex = round_scaling(self.Pos.x + movex, scaling[0]) - self.Pos.x |
|
632 |
movey = round_scaling(self.Pos.y + movey, scaling[1]) - self.Pos.y |
|
633 |
if event.ControlDown(): |
|
634 |
self.CurrentDrag.x = self.CurrentDrag.x + movex |
|
635 |
self.CurrentDrag.y = self.CurrentDrag.y + movey |
|
636 |
if abs(self.CurrentDrag.x) > abs(self.CurrentDrag.y): |
|
637 |
movex = self.StartPos.x + self.CurrentDrag.x - self.Pos.x |
|
638 |
movey = self.StartPos.y - self.Pos.y |
|
639 |
else: |
|
640 |
movex = self.StartPos.x - self.Pos.x |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
641 |
movey = self.StartPos.y + self.CurrentDrag.y - self.Pos.y |
814 | 642 |
self.Move(movex, movey) |
643 |
return movex, movey |
|
644 |
return 0, 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
645 |
|
814 | 646 |
# Override this method for defining the method to call for adding an highlight to this element |
647 |
def AddHighlight(self, infos, start, end, highlight_type): |
|
648 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
649 |
|
814 | 650 |
# Override this method for defining the method to call for removing an highlight from this element |
651 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
|
652 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
653 |
|
814 | 654 |
# Override this method for defining the method to call for removing all the highlights of one particular type from this element |
655 |
def ClearHighlight(self, highlight_type=None): |
|
656 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
657 |
|
814 | 658 |
# Override this method for defining the method to call for refreshing the model of this element |
659 |
def RefreshModel(self, move=True): |
|
660 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
661 |
|
814 | 662 |
# Draws the highlightment of this element if it is highlighted (can be overwritten) |
663 |
def DrawHighlightment(self, dc): |
|
664 |
scalex, scaley = dc.GetUserScale() |
|
665 |
dc.SetUserScale(1, 1) |
|
666 |
dc.SetPen(MiterPen(HIGHLIGHTCOLOR)) |
|
667 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
668 |
dc.SetLogicalFunction(wx.AND) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
669 |
dc.DrawRectangle(int(round((self.Pos.x - 1) * scalex)) - 2, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
670 |
int(round((self.Pos.y - 1) * scaley)) - 2, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
671 |
int(round((self.Size.width + 3) * scalex)) + 5, |
814 | 672 |
int(round((self.Size.height + 3) * scaley)) + 5) |
673 |
dc.SetLogicalFunction(wx.COPY) |
|
674 |
dc.SetUserScale(scalex, scaley) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
675 |
|
814 | 676 |
# Draws the handles of this element if it is selected |
677 |
def Draw(self, dc): |
|
678 |
if not getattr(dc, "printing", False): |
|
679 |
if self.Highlighted: |
|
680 |
self.DrawHighlightment(dc) |
|
681 |
if self.Selected: |
|
682 |
scalex, scaley = dc.GetUserScale() |
|
683 |
dc.SetUserScale(1, 1) |
|
684 |
dc.SetPen(MiterPen(wx.BLACK)) |
|
685 |
dc.SetBrush(wx.BLACK_BRUSH) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
686 |
|
814 | 687 |
left = (self.BoundingBox.x - 2) * scalex - HANDLE_SIZE |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
688 |
center = (self.BoundingBox.x + self.BoundingBox.width // 2) * scalex - HANDLE_SIZE // 2 |
814 | 689 |
right = (self.BoundingBox.x + self.BoundingBox.width + 2) * scalex |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
690 |
|
814 | 691 |
top = (self.BoundingBox.y - 2) * scaley - HANDLE_SIZE |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
692 |
middle = (self.BoundingBox.y + self.BoundingBox.height // 2) * scaley - HANDLE_SIZE // 2 |
814 | 693 |
bottom = (self.BoundingBox.y + self.BoundingBox.height + 2) * scaley |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
694 |
|
814 | 695 |
for x, y in [(left, top), (center, top), (right, top), |
696 |
(left, middle), (right, middle), |
|
697 |
(left, bottom), (center, bottom), (right, bottom)]: |
|
698 |
dc.DrawRectangle(x, y, HANDLE_SIZE, HANDLE_SIZE) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
699 |
|
814 | 700 |
dc.SetUserScale(scalex, scaley) |
701 |
||
702 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
703 |
# ------------------------------------------------------------------------------- |
814 | 704 |
# Group of graphic elements |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
705 |
# ------------------------------------------------------------------------------- |
814 | 706 |
|
707 |
||
708 |
class Graphic_Group(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
|
709 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
710 |
Class that implements a group of graphic elements |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
711 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
712 |
|
814 | 713 |
# Create a new group of graphic elements |
714 |
def __init__(self, parent): |
|
715 |
Graphic_Element.__init__(self, parent) |
|
716 |
self.Elements = [] |
|
717 |
self.RefreshWireExclusion() |
|
718 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
719 |
|
814 | 720 |
# Destructor |
721 |
def __del__(self): |
|
722 |
self.Elements = [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
723 |
|
814 | 724 |
def GetDefinition(self): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
725 |
blocks = [] |
814 | 726 |
wires = [] |
727 |
for element in self.Elements: |
|
728 |
block, wire = element.GetDefinition() |
|
729 |
blocks.extend(block) |
|
730 |
wires.extend(wire) |
|
731 |
return blocks, wires |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
732 |
|
814 | 733 |
# Make a clone of this element |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
734 |
def Clone(self, parent, pos=None): |
814 | 735 |
group = Graphic_Group(parent) |
736 |
connectors = {} |
|
737 |
exclude_names = {} |
|
738 |
wires = [] |
|
739 |
if pos is not None: |
|
740 |
dx, dy = pos.x - self.BoundingBox.x, pos.y - self.BoundingBox.y |
|
741 |
for element in self.Elements: |
|
742 |
if isinstance(element, Wire): |
|
743 |
wires.append(element) |
|
744 |
else: |
|
745 |
if pos is not None: |
|
746 |
x, y = element.GetPosition() |
|
747 |
new_pos = wx.Point(x + dx, y + dy) |
|
748 |
newid = parent.GetNewId() |
|
749 |
if parent.IsNamedElement(element): |
|
750 |
name = parent.GenerateNewName(element, exclude_names) |
|
751 |
exclude_names[name.upper()] = True |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
752 |
new_element = element.Clone(parent, newid, name, pos=new_pos) |
814 | 753 |
else: |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
754 |
new_element = element.Clone(parent, newid, pos=new_pos) |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
755 |
new_element.SetBestSize(parent.Scaling) |
814 | 756 |
else: |
757 |
new_element = element.Clone(parent) |
|
758 |
connectors.update(element.GetConnectorTranslation(new_element)) |
|
759 |
group.SelectElement(new_element) |
|
760 |
for element in wires: |
|
761 |
if pos is not None: |
|
762 |
new_wire = element.Clone(parent, connectors, dx, dy) |
|
763 |
else: |
|
764 |
new_wire = element.Clone(parent, connectors) |
|
765 |
if new_wire is not None: |
|
766 |
if pos is not None: |
|
767 |
parent.AddWire(new_wire) |
|
768 |
group.SelectElement(new_wire) |
|
769 |
if pos is not None: |
|
770 |
for element in group.Elements: |
|
771 |
if not isinstance(element, Wire): |
|
772 |
parent.AddBlockInModel(element) |
|
773 |
return group |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
774 |
|
814 | 775 |
def CanAddBlocks(self, parent): |
776 |
valid = True |
|
777 |
for element in self.Elements: |
|
778 |
if not isinstance(element, Wire): |
|
779 |
valid &= parent.CanAddElement(element) |
|
780 |
return valid |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
781 |
|
814 | 782 |
def IsVisible(self): |
783 |
for element in self.Elements: |
|
784 |
if element.IsVisible(): |
|
785 |
return True |
|
786 |
return False |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
787 |
|
814 | 788 |
# Refresh the list of wire excluded |
789 |
def RefreshWireExclusion(self): |
|
790 |
self.WireExcluded = [] |
|
791 |
for element in self.Elements: |
|
792 |
if isinstance(element, Wire): |
|
793 |
startblock = element.StartConnected.GetParentBlock() |
|
794 |
endblock = element.EndConnected.GetParentBlock() |
|
795 |
if startblock in self.Elements and endblock in self.Elements: |
|
796 |
self.WireExcluded.append(element) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
797 |
|
814 | 798 |
# 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
|
799 |
def GetRedrawRect(self, movex=0, movey=0): |
814 | 800 |
rect = None |
801 |
for element in self.Elements: |
|
802 |
if rect is None: |
|
803 |
rect = element.GetRedrawRect(movex, movey) |
|
804 |
else: |
|
805 |
rect = rect.Union(element.GetRedrawRect(movex, movey)) |
|
806 |
return rect |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
807 |
|
814 | 808 |
# Clean this group of elements |
809 |
def Clean(self): |
|
810 |
# Clean all the elements of the group |
|
811 |
for element in self.Elements: |
|
812 |
element.Clean() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
813 |
|
814 | 814 |
# Delete this group of elements |
815 |
def Delete(self): |
|
816 |
# Delete all the elements of the group |
|
817 |
for element in self.Elements: |
|
818 |
element.Delete() |
|
819 |
self.WireExcluded = [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
820 |
|
814 | 821 |
# Returns if the point given is in the bounding box of one of the elements of this group |
822 |
def HitTest(self, pt, connectors=True): |
|
823 |
result = False |
|
824 |
for element in self.Elements: |
|
825 |
result |= element.HitTest(pt, connectors) |
|
826 |
return result |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
827 |
|
814 | 828 |
# Returns if the element given is in this group |
829 |
def IsElementIn(self, element): |
|
830 |
return element in self.Elements |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
831 |
|
814 | 832 |
# Change the elements of the group |
833 |
def SetElements(self, elements): |
|
834 |
self.Elements = elements |
|
835 |
self.RefreshWireExclusion() |
|
836 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
837 |
|
814 | 838 |
# Returns the elements of the group |
839 |
def GetElements(self): |
|
840 |
return self.Elements |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
841 |
|
814 | 842 |
# Align the group elements |
843 |
def AlignElements(self, horizontally, vertically): |
|
844 |
minx = self.BoundingBox.x + self.BoundingBox.width |
|
845 |
miny = self.BoundingBox.y + self.BoundingBox.height |
|
846 |
maxx = self.BoundingBox.x |
|
847 |
maxy = self.BoundingBox.y |
|
848 |
for element in self.Elements: |
|
849 |
if not isinstance(element, Wire): |
|
850 |
posx, posy = element.GetPosition() |
|
851 |
width, height = element.GetSize() |
|
852 |
minx = min(minx, posx) |
|
853 |
miny = min(miny, posy) |
|
854 |
maxx = max(maxx, posx + width) |
|
855 |
maxy = max(maxy, posy + height) |
|
856 |
for element in self.Elements: |
|
857 |
if not isinstance(element, Wire): |
|
858 |
posx, posy = element.GetPosition() |
|
859 |
width, height = element.GetSize() |
|
860 |
movex = movey = 0 |
|
861 |
if horizontally == ALIGN_LEFT: |
|
862 |
movex = minx - posx |
|
863 |
elif horizontally == ALIGN_CENTER: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
864 |
movex = (maxx + minx - width) // 2 - posx |
814 | 865 |
elif horizontally == ALIGN_RIGHT: |
866 |
movex = maxx - width - posx |
|
867 |
if vertically == ALIGN_TOP: |
|
868 |
movey = miny - posy |
|
869 |
elif vertically == ALIGN_MIDDLE: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
870 |
movey = (maxy + miny - height) // 2 - posy |
814 | 871 |
elif vertically == ALIGN_BOTTOM: |
872 |
movey = maxy - height - posy |
|
873 |
if movex != 0 or movey != 0: |
|
874 |
element.Move(movex, movey) |
|
875 |
element.RefreshModel() |
|
876 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
877 |
|
1226
93e7a8abce5e
Fixed lag when selecting all elements using CTRL+A or after paste a lot of blocks
Laurent Bessard
parents:
1176
diff
changeset
|
878 |
# Add the given element to the group of elements |
93e7a8abce5e
Fixed lag when selecting all elements using CTRL+A or after paste a lot of blocks
Laurent Bessard
parents:
1176
diff
changeset
|
879 |
def AddElement(self, element): |
93e7a8abce5e
Fixed lag when selecting all elements using CTRL+A or after paste a lot of blocks
Laurent Bessard
parents:
1176
diff
changeset
|
880 |
self.Elements.append(element) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
881 |
|
814 | 882 |
# Remove or select the given element if it is or not in the group |
883 |
def SelectElement(self, element): |
|
884 |
if element in self.Elements: |
|
885 |
self.Elements.remove(element) |
|
886 |
else: |
|
887 |
self.Elements.append(element) |
|
888 |
self.RefreshWireExclusion() |
|
889 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
890 |
|
814 | 891 |
# Move this group of elements |
892 |
def Move(self, movex, movey): |
|
893 |
movex = max(-self.BoundingBox.x, movex) |
|
894 |
movey = max(-self.BoundingBox.y, movey) |
|
895 |
# Move all the elements of the group |
|
896 |
for element in self.Elements: |
|
897 |
if not isinstance(element, Wire): |
|
898 |
element.Move(movex, movey, self.WireExcluded) |
|
899 |
elif element in self.WireExcluded: |
|
900 |
element.Move(movex, movey, True) |
|
901 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
902 |
|
814 | 903 |
# Refreshes the bounding box of this group of elements |
904 |
def RefreshBoundingBox(self): |
|
905 |
if len(self.Elements) > 0: |
|
906 |
bbox = self.Elements[0].GetBoundingBox() |
|
907 |
minx, miny = bbox.x, bbox.y |
|
908 |
maxx = bbox.x + bbox.width |
|
909 |
maxy = bbox.y + bbox.height |
|
910 |
for element in self.Elements[1:]: |
|
911 |
bbox = element.GetBoundingBox() |
|
912 |
minx = min(minx, bbox.x) |
|
913 |
miny = min(miny, bbox.y) |
|
914 |
maxx = max(maxx, bbox.x + bbox.width) |
|
915 |
maxy = max(maxy, bbox.y + bbox.height) |
|
916 |
self.BoundingBox = wx.Rect(minx, miny, maxx - minx, maxy - miny) |
|
917 |
else: |
|
918 |
self.BoundingBox = wx.Rect(0, 0, 0, 0) |
|
919 |
self.Pos = wx.Point(self.BoundingBox.x, self.BoundingBox.y) |
|
920 |
self.Size = wx.Size(self.BoundingBox.width, self.BoundingBox.height) |
|
921 |
||
922 |
# Forbids to change the group position |
|
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1857
diff
changeset
|
923 |
def SetPosition(self, x, y): |
814 | 924 |
pass |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
925 |
|
814 | 926 |
# Returns the position of this group |
825
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
927 |
def GetPosition(self, exclude_wires=False): |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
928 |
if exclude_wires: |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
929 |
posx = posy = None |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
930 |
for element in self.Elements: |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
931 |
if not isinstance(element, Wire) or element in self.WireExcluded: |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
932 |
bbox = element.GetBoundingBox() |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
933 |
if posx is None and posy is None: |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
934 |
posx, posy = bbox.x, bbox.y |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
935 |
else: |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
936 |
posx = min(posx, bbox.x) |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
937 |
posy = min(posy, bbox.y) |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
938 |
if posx is None and posy is None: |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
939 |
return 0, 0 |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
940 |
return posx, posy |
814 | 941 |
return self.BoundingBox.x, self.BoundingBox.y |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
942 |
|
814 | 943 |
# Forbids to change the group size |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1857
diff
changeset
|
944 |
def SetSize(self, width, height): |
814 | 945 |
pass |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
946 |
|
814 | 947 |
# Returns the size of this group |
948 |
def GetSize(self): |
|
949 |
return self.BoundingBox.width, self.BoundingBox.height |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
950 |
|
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
951 |
# Set size of the group elements to their minimum size |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
952 |
def SetBestSize(self, scaling): |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
953 |
max_movex = max_movey = 0 |
814 | 954 |
for element in self.Elements: |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
955 |
movex, movey = element.SetBestSize(scaling) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
956 |
max_movex = max(max_movex, movex) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
957 |
max_movey = max(max_movey, movey) |
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
958 |
return max_movex, max_movey |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
959 |
|
814 | 960 |
# Refreshes the group elements to move defined and handle selected |
961 |
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
|
962 |
handle_type, _handle = self.Handle |
814 | 963 |
# If it is a move handle, Move this group elements |
964 |
if handle_type == HANDLE_MOVE: |
|
965 |
movex = max(-self.BoundingBox.x, movex) |
|
966 |
movey = max(-self.BoundingBox.y, movey) |
|
967 |
if scaling is not None: |
|
968 |
movex = round_scaling(movex, scaling[0]) |
|
969 |
movey = round_scaling(movey, scaling[1]) |
|
970 |
if event.ControlDown(): |
|
971 |
self.CurrentDrag.x = self.CurrentDrag.x + movex |
|
972 |
self.CurrentDrag.y = self.CurrentDrag.y + movey |
|
825
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
973 |
posx, posy = self.GetPosition(True) |
814 | 974 |
if abs(self.CurrentDrag.x) > abs(self.CurrentDrag.y): |
825
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
975 |
movex = self.StartPos.x + self.CurrentDrag.x - posx |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
976 |
movey = self.StartPos.y - posy |
814 | 977 |
else: |
825
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
978 |
movex = self.StartPos.x - posx |
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
979 |
movey = self.StartPos.y + self.CurrentDrag.y - posy |
814 | 980 |
self.Move(movex, movey) |
981 |
return movex, movey |
|
982 |
return 0, 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
983 |
|
814 | 984 |
# Change the variable that indicates if this element is highlighted |
985 |
def SetHighlighted(self, highlighted): |
|
986 |
for element in self.Elements: |
|
987 |
element.SetHighlighted(highlighted) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
988 |
|
814 | 989 |
def HighlightPoint(self, pos): |
990 |
for element in self.Elements: |
|
991 |
if isinstance(element, Wire): |
|
992 |
element.HighlightPoint(pos) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
993 |
|
814 | 994 |
# Method called when a LeftDown event have been generated |
995 |
def OnLeftDown(self, event, dc, scaling): |
|
996 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
|
825
0623820aa14a
Fix bug in Viewer when dragging element group with control down and group contains wires connected to blocks not in group
laurent
parents:
814
diff
changeset
|
997 |
self.StartPos = wx.Point(*self.GetPosition(True)) |
814 | 998 |
for element in self.Elements: |
999 |
element.Handle = self.Handle |
|
1000 |
||
1001 |
# Change the variable that indicates if the elemente is selected |
|
1002 |
def SetSelected(self, selected): |
|
1003 |
for element in self.Elements: |
|
1004 |
element.SetSelected(selected) |
|
1005 |
||
1006 |
# Method called when a RightUp event has been generated |
|
1007 |
def OnRightUp(self, event, dc, scaling): |
|
1008 |
# Popup the menu with special items for a group |
|
1009 |
self.Parent.PopupGroupMenu() |
|
1010 |
||
1011 |
# Refreshes the model of all the elements of this group |
|
1047
efcc2283dd77
Fixed bug when using 'Adjust Block Size' contextual menu item on a group of selected elements
Laurent Bessard
parents:
993
diff
changeset
|
1012 |
def RefreshModel(self, move=True): |
814 | 1013 |
for element in self.Elements: |
1047
efcc2283dd77
Fixed bug when using 'Adjust Block Size' contextual menu item on a group of selected elements
Laurent Bessard
parents:
993
diff
changeset
|
1014 |
element.RefreshModel(move) |
814 | 1015 |
|
1069
880ec628d490
Fixed refresh bugs when drag'n dropping of group of elements
Laurent Bessard
parents:
1054
diff
changeset
|
1016 |
# Draws the handles of this element if it is selected |
880ec628d490
Fixed refresh bugs when drag'n dropping of group of elements
Laurent Bessard
parents:
1054
diff
changeset
|
1017 |
def Draw(self, dc): |
880ec628d490
Fixed refresh bugs when drag'n dropping of group of elements
Laurent Bessard
parents:
1054
diff
changeset
|
1018 |
for element in self.Elements: |
880ec628d490
Fixed refresh bugs when drag'n dropping of group of elements
Laurent Bessard
parents:
1054
diff
changeset
|
1019 |
element.Draw(dc) |
814 | 1020 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
1021 |
|
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
1022 |
# ------------------------------------------------------------------------------- |
814 | 1023 |
# Connector for all types of blocks |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
1024 |
# ------------------------------------------------------------------------------- |
814 | 1025 |
|
1026 |
||
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1027 |
class Connector(DebugDataConsumer, ToolTipProducer): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1028 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1029 |
Class that implements a connector for any type of block |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1030 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1031 |
|
814 | 1032 |
# Create a new connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1033 |
def __init__(self, parent, name, type, position, direction, negated=False, edge="none", onlyone=False): |
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1034 |
DebugDataConsumer.__init__(self) |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1035 |
ToolTipProducer.__init__(self, parent.Parent) |
814 | 1036 |
self.ParentBlock = parent |
1037 |
self.Name = name |
|
1038 |
self.Type = type |
|
1039 |
self.Pos = position |
|
1040 |
self.Direction = direction |
|
1041 |
self.Wires = [] |
|
1042 |
if self.ParentBlock.IsOfType("BOOL", type): |
|
1043 |
self.Negated = negated |
|
1044 |
self.Edge = edge |
|
1045 |
else: |
|
1046 |
self.Negated = False |
|
1047 |
self.Edge = "none" |
|
1048 |
self.OneConnected = onlyone |
|
1049 |
self.Valid = True |
|
1050 |
self.Value = None |
|
1051 |
self.Forced = False |
|
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1052 |
self.ValueSize = None |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1053 |
self.ComputedValue = None |
814 | 1054 |
self.Selected = False |
1055 |
self.Highlights = [] |
|
1056 |
self.RefreshNameSize() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1057 |
|
814 | 1058 |
def Flush(self): |
1059 |
self.ParentBlock = None |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1060 |
for wire, _handle in self.Wires: |
814 | 1061 |
wire.Flush() |
1062 |
self.Wires = [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1063 |
|
814 | 1064 |
# 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
|
1065 |
def GetRedrawRect(self, movex=0, movey=0): |
814 | 1066 |
parent_pos = self.ParentBlock.GetPosition() |
1067 |
x = min(parent_pos[0] + self.Pos.x, parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE) |
|
1068 |
y = min(parent_pos[1] + self.Pos.y, parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE) |
|
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1069 |
has_modifier = self.Negated or self.Edge != "none" |
814 | 1070 |
if self.Direction[0] == 0: |
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1071 |
width = 10 if has_modifier else 5 |
814 | 1072 |
else: |
1073 |
width = CONNECTOR_SIZE |
|
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1074 |
if self.Edge == "rising" and self.Direction[0] == 1: |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1075 |
x -= 5 |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1076 |
width += 5 |
814 | 1077 |
if self.Direction[1] == 0: |
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1078 |
height = 10 if has_modifier else 5 |
814 | 1079 |
else: |
1080 |
height = CONNECTOR_SIZE |
|
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1081 |
if self.Edge == "rising" and self.Direction[1] == 1: |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1082 |
y -= 5 |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1083 |
height += 5 |
1758
845ca626db09
clean-up: fix PEP8 E222 multiple spaces after operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1754
diff
changeset
|
1084 |
rect = wx.Rect(x - abs(movex), y - abs(movey), width + 2 * abs(movex), height + 2 * abs(movey)) |
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1085 |
if self.ValueSize is None and isinstance(self.ComputedValue, string_types): |
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1086 |
self.ValueSize = self.ParentBlock.Parent.GetMiniTextExtent(self.ComputedValue) |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1087 |
if self.ValueSize is not None: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1088 |
width, height = self.ValueSize |
1777
c46ec818bdd7
clean-up: fix PEP8 E131 continuation line unaligned for hanging indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1089 |
rect = rect.Union( |
c46ec818bdd7
clean-up: fix PEP8 E131 continuation line unaligned for hanging indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1090 |
wx.Rect( |
1764
d5df428640ff
clean-up: fix PEP8 E502 the backslash is redundant between brackets
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1759
diff
changeset
|
1091 |
parent_pos[0] + self.Pos.x + CONNECTOR_SIZE * self.Direction[0] + |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1092 |
width * (self.Direction[0] - 1) // 2, |
1764
d5df428640ff
clean-up: fix PEP8 E502 the backslash is redundant between brackets
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1759
diff
changeset
|
1093 |
parent_pos[1] + self.Pos.y + CONNECTOR_SIZE * self.Direction[1] + |
1777
c46ec818bdd7
clean-up: fix PEP8 E131 continuation line unaligned for hanging indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
1094 |
height * (self.Direction[1] - 1), |
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1095 |
width, height)) |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1096 |
return rect |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1097 |
|
814 | 1098 |
# Change the connector selection |
1099 |
def SetSelected(self, selected): |
|
1100 |
self.Selected = selected |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1101 |
|
814 | 1102 |
# Make a clone of the connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1103 |
def Clone(self, parent=None): |
814 | 1104 |
if parent is None: |
1105 |
parent = self.ParentBlock |
|
1106 |
return Connector(parent, self.Name, self.Type, wx.Point(self.Pos[0], self.Pos[1]), |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1107 |
self.Direction, self.Negated) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1108 |
|
814 | 1109 |
# Returns the connector parent block |
1110 |
def GetParentBlock(self): |
|
1111 |
return self.ParentBlock |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1112 |
|
814 | 1113 |
# Returns the connector type |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1114 |
def GetType(self, raw=False): |
814 | 1115 |
if self.ParentBlock.IsEndType(self.Type) or raw: |
1116 |
return self.Type |
|
1117 |
elif (self.Negated or self.Edge != "none") and self.ParentBlock.IsOfType("BOOL", self.Type): |
|
1118 |
return "BOOL" |
|
1119 |
else: |
|
1120 |
return self.ParentBlock.GetConnectionResultType(self, self.Type) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1121 |
|
814 | 1122 |
# Returns the connector type |
1123 |
def GetConnectedType(self): |
|
1124 |
if self.ParentBlock.IsEndType(self.Type): |
|
1125 |
return self.Type |
|
1126 |
elif len(self.Wires) == 1: |
|
1127 |
return self.Wires[0][0].GetOtherConnectedType(self.Wires[0][1]) |
|
1128 |
return self.Type |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1129 |
|
814 | 1130 |
# Returns the connector type |
1131 |
def GetConnectedRedrawRect(self, movex, movey): |
|
1132 |
rect = None |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1133 |
for wire, _handle in self.Wires: |
814 | 1134 |
if rect is None: |
1135 |
rect = wire.GetRedrawRect() |
|
1136 |
else: |
|
1137 |
rect = rect.Union(wire.GetRedrawRect()) |
|
1138 |
return rect |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1139 |
|
814 | 1140 |
# Returns if connector type is compatible with type given |
1141 |
def IsCompatible(self, type): |
|
1142 |
reference = self.GetType() |
|
1143 |
return self.ParentBlock.IsOfType(type, reference) or self.ParentBlock.IsOfType(reference, type) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1144 |
|
814 | 1145 |
# Changes the connector name |
1146 |
def SetType(self, type): |
|
1147 |
self.Type = type |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1148 |
for wire, _handle in self.Wires: |
814 | 1149 |
wire.SetValid(wire.IsConnectedCompatible()) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1150 |
|
814 | 1151 |
# Returns the connector name |
1152 |
def GetName(self): |
|
1153 |
return self.Name |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1154 |
|
814 | 1155 |
# Changes the connector name |
1156 |
def SetName(self, name): |
|
1157 |
self.Name = name |
|
1158 |
self.RefreshNameSize() |
|
1159 |
||
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1160 |
def SetForced(self, forced): |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1161 |
if self.Forced != forced: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1162 |
self.Forced = forced |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1163 |
if self.Visible: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1164 |
self.Parent.ElementNeedRefresh(self) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1165 |
|
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1166 |
def GetComputedValue(self): |
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1167 |
if self.Value is not None and self.Value != "undefined" and not isinstance(self.Value, bool): |
1176
f4b434672204
Moved and rewrote DebugViewer and DebusDataConsumer classes
Laurent Bessard
parents:
1173
diff
changeset
|
1168 |
return self.Value |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1169 |
return None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1170 |
|
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1171 |
def GetToolTipValue(self): |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1172 |
return self.GetComputedValue() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1173 |
|
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1174 |
def SetValue(self, value): |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1175 |
if self.Value != value: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1176 |
self.Value = value |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1177 |
computed_value = self.GetComputedValue() |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1178 |
if computed_value is not None: |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1179 |
self.ComputedValue = computed_value |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1180 |
self.SetToolTipText(self.ComputedValue) |
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1181 |
if len(self.ComputedValue) > 4: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1182 |
self.ComputedValue = self.ComputedValue[:4] + "..." |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1183 |
self.ValueSize = None |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1184 |
if self.ParentBlock.Visible: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1185 |
self.ParentBlock.Parent.ElementNeedRefresh(self) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1186 |
|
814 | 1187 |
def RefreshForced(self): |
1188 |
self.Forced = False |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1189 |
for wire, _handle in self.Wires: |
814 | 1190 |
self.Forced |= wire.IsForced() |
1191 |
||
1192 |
def RefreshValue(self): |
|
1193 |
self.Value = self.ReceivingCurrent() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1194 |
|
814 | 1195 |
def RefreshValid(self): |
1196 |
self.Valid = True |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1197 |
for wire, _handle in self.Wires: |
814 | 1198 |
self.Valid &= wire.GetValid() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1199 |
|
814 | 1200 |
def ReceivingCurrent(self): |
1201 |
current = False |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1202 |
for wire, _handle in self.Wires: |
814 | 1203 |
value = wire.GetValue() |
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1204 |
if current != "undefined" and isinstance(value, bool): |
814 | 1205 |
current |= wire.GetValue() |
1206 |
elif value == "undefined": |
|
1207 |
current = "undefined" |
|
1208 |
return current |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1209 |
|
814 | 1210 |
def SpreadCurrent(self, spreading): |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1211 |
for wire, _handle in self.Wires: |
814 | 1212 |
wire.SetValue(spreading) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1213 |
|
814 | 1214 |
# Changes the connector name size |
1215 |
def RefreshNameSize(self): |
|
1216 |
if self.Name != "": |
|
1217 |
self.NameSize = self.ParentBlock.Parent.GetTextExtent(self.Name) |
|
1218 |
else: |
|
1219 |
self.NameSize = 0, 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1220 |
|
814 | 1221 |
# Returns the connector name size |
1222 |
def GetNameSize(self): |
|
1223 |
return self.NameSize |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1224 |
|
814 | 1225 |
# Returns the wires connected to the connector |
1226 |
def GetWires(self): |
|
1227 |
return self.Wires |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1228 |
|
814 | 1229 |
# Returns the parent block Id |
1230 |
def GetBlockId(self): |
|
1231 |
return self.ParentBlock.GetId() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1232 |
|
814 | 1233 |
# Returns the connector relative position |
1234 |
def GetRelPosition(self): |
|
1235 |
return self.Pos |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1236 |
|
814 | 1237 |
# Returns the connector absolute position |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1238 |
def GetPosition(self, size=True): |
814 | 1239 |
parent_pos = self.ParentBlock.GetPosition() |
1240 |
# If the position of the end of the connector is asked |
|
1241 |
if size: |
|
1242 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE |
|
1243 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE |
|
1244 |
else: |
|
1245 |
x = parent_pos[0] + self.Pos.x |
|
1246 |
y = parent_pos[1] + self.Pos.y |
|
1247 |
return wx.Point(x, y) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1248 |
|
814 | 1249 |
# Change the connector relative position |
1250 |
def SetPosition(self, pos): |
|
1251 |
self.Pos = pos |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1252 |
|
814 | 1253 |
# Returns the connector direction |
1254 |
def GetDirection(self): |
|
1255 |
return self.Direction |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1256 |
|
814 | 1257 |
# Change the connector direction |
1258 |
def SetDirection(self, direction): |
|
1259 |
self.Direction = direction |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1260 |
|
814 | 1261 |
# Connect a wire to this connector at the last place |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1262 |
def Connect(self, wire, refresh=True): |
814 | 1263 |
self.InsertConnect(len(self.Wires), wire, refresh) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1264 |
|
814 | 1265 |
# Connect a wire to this connector at the place given |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1266 |
def InsertConnect(self, idx, wire, refresh=True): |
814 | 1267 |
if wire not in self.Wires: |
1268 |
self.Wires.insert(idx, wire) |
|
1054
ef514eaacd8c
Fixed connections of block when changing block type
Laurent Bessard
parents:
1047
diff
changeset
|
1269 |
if wire[1] == 0: |
ef514eaacd8c
Fixed connections of block when changing block type
Laurent Bessard
parents:
1047
diff
changeset
|
1270 |
wire[0].ConnectStartPoint(None, self) |
ef514eaacd8c
Fixed connections of block when changing block type
Laurent Bessard
parents:
1047
diff
changeset
|
1271 |
else: |
ef514eaacd8c
Fixed connections of block when changing block type
Laurent Bessard
parents:
1047
diff
changeset
|
1272 |
wire[0].ConnectEndPoint(None, self) |
814 | 1273 |
if refresh: |
1274 |
self.ParentBlock.RefreshModel(False) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1275 |
|
814 | 1276 |
# Returns the index of the wire given in the list of connected |
1277 |
def GetWireIndex(self, wire): |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1278 |
for i, (tmp_wire, _handle) in enumerate(self.Wires): |
814 | 1279 |
if tmp_wire == wire: |
1280 |
return i |
|
1281 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1282 |
|
814 | 1283 |
# Unconnect a wire or all wires connected to the connector |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1284 |
def UnConnect(self, wire=None, unconnect=True, delete=False): |
814 | 1285 |
i = 0 |
1286 |
found = False |
|
1287 |
while i < len(self.Wires) and not found: |
|
1288 |
if not wire or self.Wires[i][0] == wire: |
|
1289 |
# If Unconnect haven't been called from a wire, disconnect the connector in the wire |
|
1290 |
if unconnect: |
|
1291 |
if self.Wires[i][1] == 0: |
|
1292 |
self.Wires[i][0].UnConnectStartPoint(delete) |
|
1293 |
else: |
|
1294 |
self.Wires[i][0].UnConnectEndPoint(delete) |
|
1295 |
# Remove wire from connected |
|
1296 |
if wire: |
|
1297 |
self.Wires.pop(i) |
|
1298 |
found = True |
|
1299 |
i += 1 |
|
1300 |
# If no wire defined, unconnect all wires |
|
1301 |
if not wire: |
|
1302 |
self.Wires = [] |
|
857
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
852
diff
changeset
|
1303 |
if not delete: |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
852
diff
changeset
|
1304 |
self.RefreshValid() |
9695969796d0
Adding support for quickly changing variable and connection type
Laurent Bessard
parents:
852
diff
changeset
|
1305 |
self.ParentBlock.RefreshModel(False) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1306 |
|
814 | 1307 |
# Returns if connector has one or more wire connected |
1308 |
def IsConnected(self): |
|
1309 |
return len(self.Wires) > 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1310 |
|
814 | 1311 |
# Move the wires connected |
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
1312 |
def MoveConnected(self, exclude=None): |
814 | 1313 |
if len(self.Wires) > 0: |
1314 |
# Calculate the new position of the end point |
|
1315 |
parent_pos = self.ParentBlock.GetPosition() |
|
1316 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE |
|
1317 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE |
|
1318 |
# Move the corresponding point on all the wires connected |
|
1319 |
for wire, index in self.Wires: |
|
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
1320 |
if (exclude is None) or (wire not in exclude): |
814 | 1321 |
if index == 0: |
1322 |
wire.MoveStartPoint(wx.Point(x, y)) |
|
1323 |
else: |
|
1324 |
wire.MoveEndPoint(wx.Point(x, y)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1325 |
|
814 | 1326 |
# Refreshes the model of all the wires connected |
1327 |
def RefreshWires(self): |
|
1328 |
for wire in self.Wires: |
|
1329 |
wire[0].RefreshModel() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1330 |
|
814 | 1331 |
# Refreshes the parent block model |
1332 |
def RefreshParentBlock(self): |
|
1333 |
self.ParentBlock.RefreshModel(False) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1334 |
|
814 | 1335 |
# Highlight the parent block |
1336 |
def HighlightParentBlock(self, highlight): |
|
1337 |
self.ParentBlock.SetHighlighted(highlight) |
|
1338 |
self.ParentBlock.Refresh() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1339 |
|
814 | 1340 |
# Returns all the blocks connected to this connector |
1341 |
def GetConnectedBlocks(self): |
|
1342 |
blocks = [] |
|
1343 |
for wire, handle in self.Wires: |
|
1344 |
# Get other connector connected to each wire |
|
1345 |
if handle == 0: |
|
1346 |
connector = wire.GetEndConnected() |
|
1347 |
else: |
|
1348 |
connector = wire.GetStartConnected() |
|
1349 |
# Get parent block for this connector |
|
1350 |
if connector: |
|
1351 |
block = connector.GetParentBlock() |
|
1352 |
if block not in blocks: |
|
1353 |
blocks.append(block) |
|
1354 |
return blocks |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1355 |
|
814 | 1356 |
# Returns the connector negated property |
1357 |
def IsNegated(self): |
|
1358 |
return self.Negated |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1359 |
|
814 | 1360 |
# Changes the connector negated property |
1361 |
def SetNegated(self, negated): |
|
1362 |
if self.ParentBlock.IsOfType("BOOL", self.Type): |
|
1363 |
self.Negated = negated |
|
1364 |
self.Edge = "none" |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1365 |
|
814 | 1366 |
# Returns the connector edge property |
1367 |
def GetEdge(self): |
|
1368 |
return self.Edge |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1369 |
|
814 | 1370 |
# Changes the connector edge property |
1371 |
def SetEdge(self, edge): |
|
1372 |
if self.ParentBlock.IsOfType("BOOL", self.Type): |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1373 |
self.Edge = edge |
814 | 1374 |
self.Negated = False |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1375 |
|
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1376 |
# assume that pointer is already inside of this connector |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1377 |
def ConnectionAvailable(self, direction=None, exclude=True): |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1378 |
wire_nums = len(self.Wires) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1379 |
|
1742
92932cd370a4
clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
1380 |
connector_free = (wire_nums <= 0) |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1381 |
connector_max_used = ((wire_nums > 0) and self.OneConnected) |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1382 |
if (self.Parent.CurrentLanguage in ["SFC", "LD"]) and (self.Type == "BOOL"): |
1752
d14ff9d7eb76
clean-up: fix PEP8 E703 statement ends with a semicolon
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
1383 |
connector_max_used = False |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1384 |
|
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1385 |
# connector is available for new connection |
1754
63f4af6bf6d9
clean-up: fix most PEP8 E221 multiple spaces before operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1752
diff
changeset
|
1386 |
connect = connector_free or not connector_max_used |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1387 |
return connect, connector_max_used |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1388 |
|
814 | 1389 |
# Tests if the point given is near from the end point of this connector |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1390 |
def TestPoint(self, pt, direction=None, exclude=True): |
1752
d14ff9d7eb76
clean-up: fix PEP8 E703 statement ends with a semicolon
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
1391 |
inside = False |
d14ff9d7eb76
clean-up: fix PEP8 E703 statement ends with a semicolon
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
1392 |
check_point = (not exclude) and (direction is None or self.Direction == direction) |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1393 |
|
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1394 |
if check_point: |
814 | 1395 |
# Calculate a square around the end point of this connector |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1396 |
parent_pos = self.ParentBlock.GetPosition() |
814 | 1397 |
x = parent_pos[0] + self.Pos.x + self.Direction[0] * CONNECTOR_SIZE - ANCHOR_DISTANCE |
1398 |
y = parent_pos[1] + self.Pos.y + self.Direction[1] * CONNECTOR_SIZE - ANCHOR_DISTANCE |
|
1399 |
width = ANCHOR_DISTANCE * 2 + abs(self.Direction[0]) * CONNECTOR_SIZE |
|
1400 |
height = ANCHOR_DISTANCE * 2 + abs(self.Direction[1]) * CONNECTOR_SIZE |
|
1401 |
rect = wx.Rect(x, y, width, height) |
|
1752
d14ff9d7eb76
clean-up: fix PEP8 E703 statement ends with a semicolon
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
1402 |
inside = rect.InsideXY(pt.x, pt.y) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1403 |
|
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1404 |
return inside |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1405 |
|
814 | 1406 |
# Draws the highlightment of this element if it is highlighted |
1407 |
def DrawHighlightment(self, dc): |
|
1408 |
scalex, scaley = dc.GetUserScale() |
|
1409 |
dc.SetUserScale(1, 1) |
|
1410 |
pen = MiterPen(HIGHLIGHTCOLOR, 2 * scalex + 5) |
|
1411 |
pen.SetCap(wx.CAP_BUTT) |
|
1412 |
dc.SetPen(pen) |
|
1413 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
1414 |
dc.SetLogicalFunction(wx.AND) |
|
1415 |
parent_pos = self.ParentBlock.GetPosition() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1416 |
xstart = parent_pos[0] + self.Pos.x |
814 | 1417 |
ystart = parent_pos[1] + self.Pos.y |
1418 |
if self.Direction[0] < 0: |
|
1419 |
xstart += 1 |
|
1420 |
if self.Direction[1] < 0: |
|
1421 |
ystart += 1 |
|
1422 |
xend = xstart + CONNECTOR_SIZE * self.Direction[0] |
|
1423 |
yend = ystart + CONNECTOR_SIZE * self.Direction[1] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1424 |
dc.DrawLine(round((xstart + self.Direction[0]) * scalex), round((ystart + self.Direction[1]) * scaley), |
814 | 1425 |
round(xend * scalex), round(yend * scaley)) |
1426 |
dc.SetLogicalFunction(wx.COPY) |
|
1427 |
dc.SetUserScale(scalex, scaley) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1428 |
|
814 | 1429 |
# Adds an highlight to the connector |
1430 |
def AddHighlight(self, infos, start, end, highlight_type): |
|
1431 |
if highlight_type == ERROR_HIGHLIGHT: |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1432 |
for wire, _handle in self.Wires: |
814 | 1433 |
wire.SetValid(False) |
1434 |
AddHighlight(self.Highlights, (start, end, highlight_type)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1435 |
|
814 | 1436 |
# Removes an highlight from the connector |
1437 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
|
1438 |
error = False |
|
1439 |
highlights = [] |
|
1440 |
for highlight in self.Highlights: |
|
1441 |
if highlight != (start, end, highlight_type): |
|
1442 |
highlights.append(highlight) |
|
1443 |
error |= highlight == ERROR_HIGHLIGHT |
|
1444 |
self.Highlights = highlights |
|
1445 |
if not error: |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1446 |
for wire, _handle in self.Wires: |
814 | 1447 |
wire.SetValid(wire.IsConnectedCompatible()) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1448 |
|
814 | 1449 |
# Removes all the highlights of one particular type from the connector |
1450 |
def ClearHighlight(self, highlight_type=None): |
|
1451 |
error = False |
|
1452 |
if highlight_type is None: |
|
1453 |
self.Highlights = [] |
|
1454 |
else: |
|
1455 |
highlights = [] |
|
1456 |
for highlight in self.Highlights: |
|
1457 |
if highlight[2] != highlight_type: |
|
1458 |
highlights.append(highlight) |
|
1459 |
error |= highlight == ERROR_HIGHLIGHT |
|
1460 |
self.Highlights = highlights |
|
1461 |
if not error: |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
1462 |
for wire, _handle in self.Wires: |
814 | 1463 |
wire.SetValid(wire.IsConnectedCompatible()) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1464 |
|
814 | 1465 |
# Draws the connector |
1466 |
def Draw(self, dc): |
|
1467 |
if self.Selected: |
|
1468 |
dc.SetPen(MiterPen(wx.BLUE, 3)) |
|
1469 |
dc.SetBrush(wx.WHITE_BRUSH) |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
1470 |
# elif len(self.Highlights) > 0: |
814 | 1471 |
# dc.SetPen(MiterPen(self.Highlights[-1][1])) |
1472 |
# dc.SetBrush(wx.Brush(self.Highlights[-1][0])) |
|
1473 |
else: |
|
1474 |
if not self.Valid: |
|
1475 |
dc.SetPen(MiterPen(wx.RED)) |
|
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1476 |
elif isinstance(self.Value, bool) and self.Value: |
814 | 1477 |
if self.Forced: |
1478 |
dc.SetPen(MiterPen(wx.CYAN)) |
|
1479 |
else: |
|
1480 |
dc.SetPen(MiterPen(wx.GREEN)) |
|
1481 |
elif self.Value == "undefined": |
|
1482 |
dc.SetPen(MiterPen(wx.NamedColour("orange"))) |
|
1483 |
elif self.Forced: |
|
1484 |
dc.SetPen(MiterPen(wx.BLUE)) |
|
1485 |
else: |
|
1486 |
dc.SetPen(MiterPen(wx.BLACK)) |
|
1487 |
dc.SetBrush(wx.WHITE_BRUSH) |
|
1488 |
parent_pos = self.ParentBlock.GetPosition() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1489 |
|
814 | 1490 |
if getattr(dc, "printing", False): |
1491 |
name_size = dc.GetTextExtent(self.Name) |
|
1492 |
else: |
|
1493 |
name_size = self.NameSize |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1494 |
|
814 | 1495 |
if self.Negated: |
1496 |
# If connector is negated, draw a circle |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1497 |
xcenter = parent_pos[0] + self.Pos.x + (CONNECTOR_SIZE * self.Direction[0]) // 2 |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1498 |
ycenter = parent_pos[1] + self.Pos.y + (CONNECTOR_SIZE * self.Direction[1]) // 2 |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1499 |
dc.DrawCircle(xcenter, ycenter, CONNECTOR_SIZE // 2) |
814 | 1500 |
else: |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1501 |
xstart = parent_pos[0] + self.Pos.x |
814 | 1502 |
ystart = parent_pos[1] + self.Pos.y |
1503 |
if self.Edge == "rising": |
|
1504 |
# If connector has a rising edge, draw a right arrow |
|
1505 |
dc.DrawLine(xstart, ystart, xstart - 4, ystart - 4) |
|
1506 |
dc.DrawLine(xstart, ystart, xstart - 4, ystart + 4) |
|
1507 |
elif self.Edge == "falling": |
|
1508 |
# If connector has a falling edge, draw a left arrow |
|
1509 |
dc.DrawLine(xstart, ystart, xstart + 4, ystart - 4) |
|
1510 |
dc.DrawLine(xstart, ystart, xstart + 4, ystart + 4) |
|
1511 |
if self.Direction[0] < 0: |
|
1512 |
xstart += 1 |
|
1513 |
if self.Direction[1] < 0: |
|
1514 |
ystart += 1 |
|
1515 |
if self.Selected: |
|
1516 |
xend = xstart + (CONNECTOR_SIZE - 2) * self.Direction[0] |
|
1517 |
yend = ystart + (CONNECTOR_SIZE - 2) * self.Direction[1] |
|
1518 |
dc.DrawLine(xstart + 2 * self.Direction[0], ystart + 2 * self.Direction[1], xend, yend) |
|
1519 |
else: |
|
1520 |
xend = xstart + CONNECTOR_SIZE * self.Direction[0] |
|
1521 |
yend = ystart + CONNECTOR_SIZE * self.Direction[1] |
|
1522 |
dc.DrawLine(xstart + self.Direction[0], ystart + self.Direction[1], xend, yend) |
|
1523 |
if self.Direction[0] != 0: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1524 |
ytext = parent_pos[1] + self.Pos.y - name_size[1] // 2 |
814 | 1525 |
if self.Direction[0] < 0: |
1526 |
xtext = parent_pos[0] + self.Pos.x + 5 |
|
1527 |
else: |
|
1528 |
xtext = parent_pos[0] + self.Pos.x - (name_size[0] + 5) |
|
1529 |
if self.Direction[1] != 0: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1530 |
xtext = parent_pos[0] + self.Pos.x - name_size[0] // 2 |
814 | 1531 |
if self.Direction[1] < 0: |
1532 |
ytext = parent_pos[1] + self.Pos.y + 5 |
|
1533 |
else: |
|
1534 |
ytext = parent_pos[1] + self.Pos.y - (name_size[1] + 5) |
|
1535 |
# Draw the text |
|
1536 |
dc.DrawText(self.Name, xtext, ytext) |
|
1537 |
if not getattr(dc, "printing", False): |
|
1538 |
DrawHighlightedText(dc, self.Name, self.Highlights, xtext, ytext) |
|
1539 |
||
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1540 |
if self.Value is not None and not isinstance(self.Value, bool) and self.Value != "undefined": |
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1541 |
dc.SetFont(self.ParentBlock.Parent.GetMiniFont()) |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1542 |
dc.SetTextForeground(wx.NamedColour("purple")) |
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1543 |
if self.ValueSize is None and isinstance(self.ComputedValue, string_types): |
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1544 |
self.ValueSize = self.ParentBlock.Parent.GetMiniTextExtent(self.ComputedValue) |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1545 |
if self.ValueSize is not None: |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1546 |
width, height = self.ValueSize |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1547 |
dc.DrawText(self.ComputedValue, |
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1548 |
parent_pos[0] + self.Pos.x + CONNECTOR_SIZE * self.Direction[0] + |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1549 |
width * (self.Direction[0] - 1) // 2, |
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1550 |
parent_pos[1] + self.Pos.y + CONNECTOR_SIZE * self.Direction[1] + |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
1551 |
height * (self.Direction[1] - 1)) |
1166
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1552 |
dc.SetFont(self.ParentBlock.Parent.GetFont()) |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1553 |
dc.SetTextForeground(wx.BLACK) |
2ed9675be08d
Added support for displaying value of unconnected block connectors in debug
Laurent Bessard
parents:
1120
diff
changeset
|
1554 |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
1555 |
|
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
1556 |
# ------------------------------------------------------------------------------- |
814 | 1557 |
# Common Wire Element |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
1558 |
# ------------------------------------------------------------------------------- |
814 | 1559 |
|
1560 |
||
1561 |
class Wire(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
|
1562 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1563 |
Class that implements a wire for connecting two blocks |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
1564 |
""" |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1565 |
|
814 | 1566 |
# Create a new wire |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
1567 |
def __init__(self, parent, start=None, end=None): |
814 | 1568 |
Graphic_Element.__init__(self, parent) |
1569 |
DebugDataConsumer.__init__(self) |
|
1570 |
self.StartPoint = start |
|
1571 |
self.EndPoint = end |
|
1572 |
self.StartConnected = None |
|
1573 |
self.EndConnected = None |
|
1574 |
# If the start and end points are defined, calculate the wire |
|
1575 |
if start and end: |
|
1576 |
self.ResetPoints() |
|
1577 |
self.GeneratePoints() |
|
1578 |
else: |
|
1579 |
self.Points = [] |
|
1580 |
self.Segments = [] |
|
1581 |
self.SelectedSegment = None |
|
1582 |
self.Valid = True |
|
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1583 |
self.Modifier = "none" |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1584 |
self.PreviousValue = None |
814 | 1585 |
self.ValueSize = None |
1586 |
self.ComputedValue = None |
|
1587 |
self.OverStart = False |
|
1588 |
self.OverEnd = False |
|
1589 |
self.ComputingType = False |
|
1590 |
self.Font = parent.GetMiniFont() |
|
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
1591 |
self.ErrHighlight = False |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1592 |
|
814 | 1593 |
def GetDefinition(self): |
1594 |
if self.StartConnected is not None and self.EndConnected is not None: |
|
1595 |
startblock = self.StartConnected.GetParentBlock() |
|
1596 |
endblock = self.EndConnected.GetParentBlock() |
|
1597 |
return [], [(startblock.GetId(), endblock.GetId())] |
|
1598 |
return [], [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1599 |
|
814 | 1600 |
def Flush(self): |
1601 |
self.StartConnected = None |
|
1602 |
self.EndConnected = None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1603 |
|
814 | 1604 |
# 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
|
1605 |
def GetRedrawRect(self, movex=0, movey=0): |
814 | 1606 |
rect = Graphic_Element.GetRedrawRect(self, movex, movey) |
1607 |
if self.StartConnected: |
|
1608 |
rect = rect.Union(self.StartConnected.GetRedrawRect(movex, movey)) |
|
1609 |
if self.EndConnected: |
|
1610 |
rect = rect.Union(self.EndConnected.GetRedrawRect(movex, movey)) |
|
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1611 |
if self.ValueSize is None and isinstance(self.ComputedValue, string_types): |
814 | 1612 |
self.ValueSize = self.Parent.GetMiniTextExtent(self.ComputedValue) |
1613 |
if self.ValueSize is not None: |
|
1614 |
width, height = self.ValueSize |
|
1615 |
if self.BoundingBox[2] > width * 4 or self.BoundingBox[3] > height * 4: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1616 |
x = self.Points[0].x + width * self.StartPoint[1][0] // 2 |
814 | 1617 |
y = self.Points[0].y + height * (self.StartPoint[1][1] - 1) |
1618 |
rect = rect.Union(wx.Rect(x, y, width, height)) |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1619 |
x = self.Points[-1].x + width * self.EndPoint[1][0] // 2 |
814 | 1620 |
y = self.Points[-1].y + height * (self.EndPoint[1][1] - 1) |
1621 |
rect = rect.Union(wx.Rect(x, y, width, height)) |
|
1622 |
else: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1623 |
middle = len(self.Segments) // 2 + len(self.Segments) % 2 - 1 |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1624 |
x = (self.Points[middle].x + self.Points[middle + 1].x - width) // 2 |
814 | 1625 |
if self.BoundingBox[3] > height and self.Segments[middle] in [NORTH, SOUTH]: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
1626 |
y = (self.Points[middle].y + self.Points[middle + 1].y - height) // 2 |
814 | 1627 |
else: |
1628 |
y = self.Points[middle].y - height |
|
1629 |
rect = rect.Union(wx.Rect(x, y, width, height)) |
|
1630 |
return rect |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1631 |
|
1852
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
1632 |
def Clone(self, parent, connectors=None, dx=0, dy=0): |
70c1cc354a8f
fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
1633 |
connectors = {} if connectors is None else connectors |
814 | 1634 |
start_connector = connectors.get(self.StartConnected, None) |
1635 |
end_connector = connectors.get(self.EndConnected, None) |
|
1636 |
if start_connector is not None and end_connector is not None: |
|
1637 |
wire = Wire(parent) |
|
1638 |
wire.SetPoints([(point.x + dx, point.y + dy) for point in self.Points]) |
|
1639 |
start_connector.Connect((wire, 0), False) |
|
1640 |
end_connector.Connect((wire, -1), False) |
|
1641 |
wire.ConnectStartPoint(start_connector.GetPosition(), start_connector) |
|
1642 |
wire.ConnectEndPoint(end_connector.GetPosition(), end_connector) |
|
1643 |
return wire |
|
1644 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1645 |
|
814 | 1646 |
# Forbids to change the wire position |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1857
diff
changeset
|
1647 |
def SetPosition(self, x, y): |
814 | 1648 |
pass |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1649 |
|
814 | 1650 |
# Forbids to change the wire size |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1857
diff
changeset
|
1651 |
def SetSize(self, width, height): |
814 | 1652 |
pass |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1653 |
|
814 | 1654 |
# Moves and Resizes the element for fitting scaling |
852
1009f956d2ee
Fix support for adjusting block size to block minimum size and to Viewer scaling
Laurent Bessard
parents:
825
diff
changeset
|
1655 |
def SetBestSize(self, scaling): |
814 | 1656 |
if scaling is not None: |
1657 |
movex_max = movey_max = 0 |
|
1658 |
for idx, point in enumerate(self.Points): |
|
1659 |
if 0 < idx < len(self.Points) - 1: |
|
1660 |
movex = round_scaling(point.x, scaling[0]) - point.x |
|
1661 |
movey = round_scaling(point.y, scaling[1]) - point.y |
|
1662 |
if idx == 1: |
|
1663 |
if self.Segments[0][0] == 0: |
|
1664 |
movex = 0 |
|
1665 |
elif (point.x + movex - self.Points[0].x) * self.Segments[0][0] < MIN_SEGMENT_SIZE: |
|
1666 |
movex = round_scaling(self.Points[0].x + MIN_SEGMENT_SIZE * self.Segments[0][0], scaling[0], self.Segments[0][0]) - point.x |
|
1667 |
if self.Segments[0][1] == 0: |
|
1668 |
movey = 0 |
|
1669 |
elif (point.y + movey - self.Points[0].y) * self.Segments[0][1] < MIN_SEGMENT_SIZE: |
|
1670 |
movey = round_scaling(self.Points[0].y + MIN_SEGMENT_SIZE * self.Segments[0][1], scaling[0], self.Segments[0][1]) - point.y |
|
1671 |
elif idx == len(self.Points) - 2: |
|
1672 |
if self.Segments[-1][0] == 0: |
|
1673 |
movex = 0 |
|
1674 |
elif (self.Points[-1].x - (point.x + movex)) * self.Segments[-1][0] < MIN_SEGMENT_SIZE: |
|
1675 |
movex = round_scaling(self.Points[-1].x + MIN_SEGMENT_SIZE * self.Segments[0][0], scaling[0], self.Segments[0][0]) - point.x |
|
1676 |
if self.Segments[-1][1] == 0: |
|
1677 |
movey = 0 |
|
1678 |
elif (self.Points[-1].y - (point.y + movey)) * self.Segments[-1][1] < MIN_SEGMENT_SIZE: |
|
1679 |
movey = round_scaling(self.Points[-1].y - MIN_SEGMENT_SIZE * self.Segments[-1][1], scaling[1], -self.Segments[-1][1]) - point.y |
|
1680 |
movex_max = max(movex_max, movex) |
|
1681 |
movey_max = max(movey_max, movey) |
|
1682 |
point.x += movex |
|
1683 |
point.y += movey |
|
1684 |
return movex_max, movey_max |
|
1685 |
return 0, 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1686 |
|
814 | 1687 |
# Returns connector to which start point is connected |
1688 |
def GetStartConnected(self): |
|
1689 |
return self.StartConnected |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1690 |
|
814 | 1691 |
# Returns connector to which start point is connected |
1692 |
def GetStartConnectedType(self): |
|
1693 |
if self.StartConnected and not self.ComputingType: |
|
1694 |
self.ComputingType = True |
|
1695 |
computed_type = self.StartConnected.GetType() |
|
1696 |
self.ComputingType = False |
|
1697 |
return computed_type |
|
1698 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1699 |
|
814 | 1700 |
# Returns connector to which end point is connected |
1701 |
def GetEndConnected(self): |
|
1702 |
return self.EndConnected |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1703 |
|
814 | 1704 |
# Returns connector to which end point is connected |
1705 |
def GetEndConnectedType(self): |
|
1706 |
if self.EndConnected and not self.ComputingType: |
|
1707 |
self.ComputingType = True |
|
1708 |
computed_type = self.EndConnected.GetType() |
|
1709 |
self.ComputingType = False |
|
1710 |
return computed_type |
|
1711 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1712 |
|
814 | 1713 |
def GetConnectionDirection(self): |
1714 |
if self.StartConnected is None and self.EndConnected is None: |
|
1715 |
return None |
|
1716 |
elif self.StartConnected is not None and self.EndConnected is None: |
|
1717 |
return (-self.StartPoint[1][0], -self.StartPoint[1][1]) |
|
1718 |
elif self.StartConnected is None and self.EndConnected is not None: |
|
1719 |
return self.EndPoint |
|
1720 |
elif self.Handle is not None: |
|
1721 |
handle_type, handle = self.Handle |
|
1722 |
# A point has been handled |
|
1723 |
if handle_type == HANDLE_POINT: |
|
1724 |
if handle == 0: |
|
1725 |
return self.EndPoint |
|
1726 |
else: |
|
1727 |
return (-self.StartPoint[1][0], -self.StartPoint[1][1]) |
|
1728 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1729 |
|
814 | 1730 |
def GetOtherConnected(self, connector): |
1731 |
if self.StartConnected == connector: |
|
1732 |
return self.EndConnected |
|
1733 |
else: |
|
1734 |
return self.StartConnected |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1735 |
|
814 | 1736 |
def GetOtherConnectedType(self, handle): |
1737 |
if handle == 0: |
|
1738 |
return self.GetEndConnectedType() |
|
1739 |
else: |
|
1740 |
return self.GetStartConnectedType() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1741 |
|
814 | 1742 |
def IsConnectedCompatible(self): |
1743 |
if self.StartConnected: |
|
1744 |
return self.StartConnected.IsCompatible(self.GetEndConnectedType()) |
|
1745 |
elif self.EndConnected: |
|
1746 |
return True |
|
1747 |
return False |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1748 |
|
814 | 1749 |
def SetForced(self, forced): |
1750 |
if self.Forced != forced: |
|
1751 |
self.Forced = forced |
|
1752 |
if self.StartConnected: |
|
1753 |
self.StartConnected.RefreshForced() |
|
1754 |
if self.EndConnected: |
|
1755 |
self.EndConnected.RefreshForced() |
|
1756 |
if self.Visible: |
|
1757 |
self.Parent.ElementNeedRefresh(self) |
|
1758 |
||
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1759 |
def GetComputedValue(self): |
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1760 |
if self.Value is not None and self.Value != "undefined" and not isinstance(self.Value, bool): |
1176
f4b434672204
Moved and rewrote DebugViewer and DebusDataConsumer classes
Laurent Bessard
parents:
1173
diff
changeset
|
1761 |
return self.Value |
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1762 |
return None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1763 |
|
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1764 |
def GetToolTipValue(self): |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1765 |
return self.GetComputedValue() |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1766 |
|
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1767 |
def SetModifier(self, modifier): |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1768 |
self.Modifier = modifier |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1769 |
|
814 | 1770 |
def SetValue(self, value): |
1377
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1771 |
if self.Modifier == "rising": |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1772 |
value, self.PreviousValue = value and not self.PreviousValue, value |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1773 |
elif self.Modifier == "falling": |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1774 |
value, self.PreviousValue = not value and self.PreviousValue, value |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1775 |
elif self.Modifier == "negated": |
cc8f9177d41c
Fixed bug when debugging wire connected to output connector with modifiers even if connector/continuation is used to replace long wires
Laurent Bessard
parents:
1258
diff
changeset
|
1776 |
value = not value |
814 | 1777 |
if self.Value != value: |
1778 |
self.Value = value |
|
1170
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1779 |
computed_value = self.GetComputedValue() |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1780 |
if computed_value is not None: |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1781 |
self.ComputedValue = computed_value |
074e46cdedbc
Added support for displaying ToolTip, starting drag'n drop and Double click on Block connectors when debugging
Laurent Bessard
parents:
1169
diff
changeset
|
1782 |
self.SetToolTipText(self.ComputedValue) |
814 | 1783 |
if len(self.ComputedValue) > 4: |
1784 |
self.ComputedValue = self.ComputedValue[:4] + "..." |
|
1785 |
self.ValueSize = None |
|
1786 |
if self.StartConnected: |
|
1787 |
self.StartConnected.RefreshValue() |
|
1788 |
if self.EndConnected: |
|
1789 |
self.EndConnected.RefreshValue() |
|
1790 |
if self.Visible: |
|
1791 |
self.Parent.ElementNeedRefresh(self) |
|
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
1792 |
if isinstance(value, bool) and self.StartConnected is not None: |
814 | 1793 |
block = self.StartConnected.GetParentBlock() |
1794 |
block.SpreadCurrent() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1795 |
|
814 | 1796 |
# Unconnect the start and end points |
1797 |
def Clean(self): |
|
1798 |
if self.StartConnected: |
|
1799 |
self.UnConnectStartPoint() |
|
1800 |
if self.EndConnected: |
|
1801 |
self.UnConnectEndPoint() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1802 |
|
814 | 1803 |
# Delete this wire by calling the corresponding method |
1804 |
def Delete(self): |
|
1805 |
self.Parent.DeleteWire(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1806 |
|
814 | 1807 |
# Select a segment and not the whole wire. It's useful for Ladder Diagram |
1808 |
def SetSelectedSegment(self, segment): |
|
1809 |
# The last segment is indicated |
|
1810 |
if segment == -1: |
|
1811 |
segment = len(self.Segments) - 1 |
|
1812 |
# The selected segment is reinitialised |
|
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
1813 |
if segment is None: |
814 | 1814 |
if self.StartConnected: |
1815 |
self.StartConnected.SetSelected(False) |
|
1816 |
if self.EndConnected: |
|
1817 |
self.EndConnected.SetSelected(False) |
|
1818 |
# The segment selected is the first |
|
1819 |
elif segment == 0: |
|
1820 |
if self.StartConnected: |
|
1821 |
self.StartConnected.SetSelected(True) |
|
1822 |
if self.EndConnected: |
|
1823 |
# There is only one segment |
|
1824 |
if len(self.Segments) == 1: |
|
1825 |
self.EndConnected.SetSelected(True) |
|
1826 |
else: |
|
1827 |
self.EndConnected.SetSelected(False) |
|
1828 |
# The segment selected is the last |
|
1829 |
elif segment == len(self.Segments) - 1: |
|
1830 |
if self.StartConnected: |
|
1831 |
self.StartConnected.SetSelected(False) |
|
1832 |
if self.EndConnected: |
|
1833 |
self.EndConnected.SetSelected(True) |
|
1834 |
self.SelectedSegment = segment |
|
1835 |
self.Refresh() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1836 |
|
814 | 1837 |
def SetValid(self, valid): |
1838 |
self.Valid = valid |
|
1839 |
if self.StartConnected: |
|
1840 |
self.StartConnected.RefreshValid() |
|
1841 |
if self.EndConnected: |
|
1842 |
self.EndConnected.RefreshValid() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1843 |
|
814 | 1844 |
def GetValid(self): |
1845 |
return self.Valid |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1846 |
|
814 | 1847 |
# Reinitialize the wire points |
1848 |
def ResetPoints(self): |
|
1849 |
if self.StartPoint and self.EndPoint: |
|
1850 |
self.Points = [self.StartPoint[0], self.EndPoint[0]] |
|
1851 |
self.Segments = [self.StartPoint[1]] |
|
1852 |
else: |
|
1853 |
self.Points = [] |
|
1854 |
self.Segments = [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1855 |
|
814 | 1856 |
# Refresh the wire bounding box |
1857 |
def RefreshBoundingBox(self): |
|
1858 |
if len(self.Points) > 0: |
|
1859 |
# If startpoint or endpoint is connected, save the point radius |
|
1860 |
start_radius = end_radius = 0 |
|
1861 |
if not self.StartConnected: |
|
1862 |
start_radius = POINT_RADIUS |
|
1863 |
if not self.EndConnected: |
|
1864 |
end_radius = POINT_RADIUS |
|
1865 |
# Initialize minimum and maximum from the first point |
|
1866 |
minx, minbbxx = self.Points[0].x, self.Points[0].x - start_radius |
|
1867 |
maxx, maxbbxx = self.Points[0].x, self.Points[0].x + start_radius |
|
1868 |
miny, minbbxy = self.Points[0].y, self.Points[0].y - start_radius |
|
1869 |
maxy, maxbbxy = self.Points[0].y, self.Points[0].y + start_radius |
|
1870 |
# Actualize minimum and maximum with the other points |
|
1871 |
for point in self.Points[1:-1]: |
|
1872 |
minx, minbbxx = min(minx, point.x), min(minbbxx, point.x) |
|
1873 |
maxx, maxbbxx = max(maxx, point.x), max(maxbbxx, point.x) |
|
1874 |
miny, minbbxy = min(miny, point.y), min(minbbxy, point.y) |
|
1875 |
maxy, maxbbxy = max(maxy, point.y), max(maxbbxy, point.y) |
|
1876 |
if len(self.Points) > 1: |
|
1877 |
minx, minbbxx = min(minx, self.Points[-1].x), min(minbbxx, self.Points[-1].x - end_radius) |
|
1878 |
maxx, maxbbxx = max(maxx, self.Points[-1].x), max(maxbbxx, self.Points[-1].x + end_radius) |
|
1879 |
miny, minbbxy = min(miny, self.Points[-1].y), min(minbbxy, self.Points[-1].y - end_radius) |
|
1880 |
maxy, maxbbxy = max(maxy, self.Points[-1].y), max(maxbbxy, self.Points[-1].y + end_radius) |
|
1881 |
self.Pos.x, self.Pos.y = minx, miny |
|
1882 |
self.Size = wx.Size(maxx - minx, maxy - miny) |
|
1883 |
self.BoundingBox = wx.Rect(minbbxx, minbbxy, maxbbxx - minbbxx + 1, maxbbxy - minbbxy + 1) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1884 |
|
814 | 1885 |
# Refresh the realpoints that permits to keep the proportionality in wire during resizing |
1886 |
def RefreshRealPoints(self): |
|
1887 |
if len(self.Points) > 0: |
|
1888 |
self.RealPoints = [] |
|
1889 |
# Calculate float relative position of each point with the minimum point |
|
1890 |
for point in self.Points: |
|
1891 |
self.RealPoints.append([float(point.x - self.Pos.x), float(point.y - self.Pos.y)]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1892 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1893 |
# Returns the wire minimum size |
814 | 1894 |
def GetMinSize(self): |
1895 |
width = 1 |
|
1896 |
height = 1 |
|
1897 |
dir_product = product(self.StartPoint[1], self.EndPoint[1]) |
|
1898 |
# The directions are opposed |
|
1899 |
if dir_product < 0: |
|
1900 |
if self.StartPoint[0] != 0: |
|
1901 |
width = MIN_SEGMENT_SIZE * 2 |
|
1902 |
if self.StartPoint[1] != 0: |
|
1903 |
height = MIN_SEGMENT_SIZE * 2 |
|
1904 |
# The directions are the same |
|
1905 |
elif dir_product > 0: |
|
1906 |
if self.StartPoint[0] != 0: |
|
1907 |
width = MIN_SEGMENT_SIZE |
|
1908 |
if self.StartPoint[1] != 0: |
|
1909 |
height = MIN_SEGMENT_SIZE |
|
1910 |
# The directions are perpendiculars |
|
1911 |
else: |
|
1912 |
width = MIN_SEGMENT_SIZE |
|
1913 |
height = MIN_SEGMENT_SIZE |
|
1914 |
return width + 1, height + 1 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1915 |
|
814 | 1916 |
# Returns if the point given is on one of the wire segments |
1917 |
def HitTest(self, pt, connectors=True): |
|
1918 |
test = False |
|
1919 |
for i in xrange(len(self.Points) - 1): |
|
1920 |
rect = wx.Rect(0, 0, 0, 0) |
|
1921 |
if i == 0 and self.StartConnected is not None: |
|
1922 |
x1 = self.Points[i].x - self.Segments[0][0] * CONNECTOR_SIZE |
|
1923 |
y1 = self.Points[i].y - self.Segments[0][1] * CONNECTOR_SIZE |
|
1924 |
else: |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1925 |
x1, y1 = self.Points[i].x, self.Points[i].y |
814 | 1926 |
if i == len(self.Points) - 2 and self.EndConnected is not None: |
1927 |
x2 = self.Points[i + 1].x + self.Segments[-1][0] * CONNECTOR_SIZE |
|
1928 |
y2 = self.Points[i + 1].y + self.Segments[-1][1] * CONNECTOR_SIZE |
|
1929 |
else: |
|
1930 |
x2, y2 = self.Points[i + 1].x, self.Points[i + 1].y |
|
1931 |
# Calculate a rectangle around the segment |
|
1932 |
rect = wx.Rect(min(x1, x2) - ANCHOR_DISTANCE, min(y1, y2) - ANCHOR_DISTANCE, |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1933 |
abs(x1 - x2) + 2 * ANCHOR_DISTANCE, abs(y1 - y2) + 2 * ANCHOR_DISTANCE) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1934 |
test |= rect.InsideXY(pt.x, pt.y) |
814 | 1935 |
return test |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1936 |
|
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1937 |
# Returns the wire start or end point if the point given is on one of them |
814 | 1938 |
def TestPoint(self, pt): |
1939 |
# Test the wire start point |
|
1940 |
rect = wx.Rect(self.Points[0].x - ANCHOR_DISTANCE, self.Points[0].y - ANCHOR_DISTANCE, |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1941 |
2 * ANCHOR_DISTANCE, 2 * ANCHOR_DISTANCE) |
814 | 1942 |
if rect.InsideXY(pt.x, pt.y): |
1943 |
return 0 |
|
1944 |
# Test the wire end point |
|
1945 |
if len(self.Points) > 1: |
|
1946 |
rect = wx.Rect(self.Points[-1].x - ANCHOR_DISTANCE, self.Points[-1].y - ANCHOR_DISTANCE, |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1947 |
2 * ANCHOR_DISTANCE, 2 * ANCHOR_DISTANCE) |
814 | 1948 |
if rect.InsideXY(pt.x, pt.y): |
1949 |
return -1 |
|
1950 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1951 |
|
814 | 1952 |
# Returns the wire segment if the point given is on it |
1953 |
def TestSegment(self, pt, all=False): |
|
1954 |
for i in xrange(len(self.Segments)): |
|
1955 |
# If wire is not in a Ladder Diagram, first and last segments are excluded |
|
1956 |
if all or 0 < i < len(self.Segments) - 1: |
|
1957 |
x1, y1 = self.Points[i].x, self.Points[i].y |
|
1958 |
x2, y2 = self.Points[i + 1].x, self.Points[i + 1].y |
|
1959 |
# Calculate a rectangle around the segment |
|
1960 |
rect = wx.Rect(min(x1, x2) - ANCHOR_DISTANCE, min(y1, y2) - ANCHOR_DISTANCE, |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1961 |
abs(x1 - x2) + 2 * ANCHOR_DISTANCE, abs(y1 - y2) + 2 * ANCHOR_DISTANCE) |
814 | 1962 |
if rect.InsideXY(pt.x, pt.y): |
1963 |
return i, self.Segments[i] |
|
1964 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1965 |
|
814 | 1966 |
# Define the wire points |
2615
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
1967 |
def SetPoints(self, points, merge_segments=True): |
814 | 1968 |
if len(points) > 1: |
2616
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1969 |
|
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1970 |
# filter duplicates, add corner to diagonals |
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1971 |
self.Points = [] |
2625
e5ce6c4a8672
Fixed code quality according to pep8 and pylint.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2617
diff
changeset
|
1972 |
lx, ly = None, None |
2616
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1973 |
for x, y in points: |
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1974 |
ex, ey = lx == x, ly == y |
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1975 |
if ex and ey: |
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1976 |
# duplicate |
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1977 |
continue |
2625
e5ce6c4a8672
Fixed code quality according to pep8 and pylint.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2617
diff
changeset
|
1978 |
if (lx, ly) != (None, None) and not ex and not ey: |
2616
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1979 |
# diagonal |
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1980 |
self.Points.append(wx.Point(lx, y)) |
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1981 |
self.Points.append(wx.Point(x, y)) |
2625
e5ce6c4a8672
Fixed code quality according to pep8 and pylint.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2617
diff
changeset
|
1982 |
lx, ly = x, y |
2616
7a434c8d3f3c
GraphicCommons.py : Wire.SetPoints() move filtering before computation of Start and End points to avoid setting them with arbitrary directions.
Edouard Tisserant
parents:
2615
diff
changeset
|
1983 |
|
814 | 1984 |
# Calculate the start and end directions |
1985 |
self.StartPoint = [None, vector(self.Points[0], self.Points[1])] |
|
1986 |
self.EndPoint = [None, vector(self.Points[-1], self.Points[-2])] |
|
1987 |
# Calculate the start and end points |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1988 |
self.StartPoint[0] = wx.Point(self.Points[0].x + CONNECTOR_SIZE * self.StartPoint[1][0], |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1989 |
self.Points[0].y + CONNECTOR_SIZE * self.StartPoint[1][1]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
1990 |
self.EndPoint[0] = wx.Point(self.Points[-1].x + CONNECTOR_SIZE * self.EndPoint[1][0], |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
1991 |
self.Points[-1].y + CONNECTOR_SIZE * self.EndPoint[1][1]) |
814 | 1992 |
self.Points[0] = self.StartPoint[0] |
1993 |
self.Points[-1] = self.EndPoint[0] |
|
1994 |
# Calculate the segments directions |
|
1995 |
self.Segments = [] |
|
1996 |
i = 0 |
|
2615
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
1997 |
while True: |
2625
e5ce6c4a8672
Fixed code quality according to pep8 and pylint.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2617
diff
changeset
|
1998 |
lp = len(self.Points) |
e5ce6c4a8672
Fixed code quality according to pep8 and pylint.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2617
diff
changeset
|
1999 |
if i > lp - 2: |
2615
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2000 |
break |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2001 |
|
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2002 |
segment = vector(self.Points[i], self.Points[i + 1]) |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2003 |
|
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2004 |
# merge segment if requested |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2005 |
if merge_segments and 0 < i and \ |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2006 |
self.Segments[-1] == segment: |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2007 |
self.Points.pop(i) |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2008 |
# Rollback |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2009 |
self.Segments.pop() |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2010 |
i -= 1 |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2011 |
continue |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2012 |
|
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2013 |
# remove corner when two segments are in opposite direction |
2625
e5ce6c4a8672
Fixed code quality according to pep8 and pylint.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2617
diff
changeset
|
2014 |
if i < lp - 2: |
2615
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2015 |
next = vector(self.Points[i + 1], self.Points[i + 2]) |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2016 |
if is_null_vector(add_vectors(segment, next)): |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2017 |
self.Points.pop(i+1) |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2018 |
continue |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2019 |
|
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2020 |
self.Segments.append(segment) |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2021 |
|
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2022 |
i += 1 |
2eb66f155c2c
GraphicCommons.py : rewrote Wire.Setpoints.
Edouard Tisserant
parents:
2457
diff
changeset
|
2023 |
|
814 | 2024 |
self.RefreshBoundingBox() |
2025 |
self.RefreshRealPoints() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2026 |
|
814 | 2027 |
# Returns the position of the point indicated |
2028 |
def GetPoint(self, index): |
|
2029 |
if index < len(self.Points): |
|
2030 |
return self.Points[index].x, self.Points[index].y |
|
2031 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2032 |
|
814 | 2033 |
# Returns a list of the position of all wire points |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2034 |
def GetPoints(self, invert=False): |
814 | 2035 |
points = self.VerifyPoints() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2036 |
points[0] = wx.Point(points[0].x - CONNECTOR_SIZE * self.StartPoint[1][0], |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2037 |
points[0].y - CONNECTOR_SIZE * self.StartPoint[1][1]) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2038 |
points[-1] = wx.Point(points[-1].x - CONNECTOR_SIZE * self.EndPoint[1][0], |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2039 |
points[-1].y - CONNECTOR_SIZE * self.EndPoint[1][1]) |
814 | 2040 |
# An inversion of the list is asked |
2041 |
if invert: |
|
2042 |
points.reverse() |
|
2043 |
return points |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2044 |
|
814 | 2045 |
# Returns the position of the two selected segment points |
2046 |
def GetSelectedSegmentPoints(self): |
|
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
2047 |
if self.SelectedSegment is not None and len(self.Points) > 1: |
814 | 2048 |
return self.Points[self.SelectedSegment:self.SelectedSegment + 2] |
2049 |
return [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2050 |
|
814 | 2051 |
# Returns if the selected segment is the first and/or the last of the wire |
2052 |
def GetSelectedSegmentConnections(self): |
|
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
2053 |
if self.SelectedSegment is not None and len(self.Points) > 1: |
814 | 2054 |
return self.SelectedSegment == 0, self.SelectedSegment == len(self.Segments) - 1 |
2055 |
return (True, True) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2056 |
|
814 | 2057 |
# Returns the connectors on which the wire is connected |
2058 |
def GetConnected(self): |
|
2059 |
connected = [] |
|
2060 |
if self.StartConnected and self.StartPoint[1] == WEST: |
|
2061 |
connected.append(self.StartConnected) |
|
2062 |
if self.EndConnected and self.EndPoint[1] == WEST: |
|
2063 |
connected.append(self.EndConnected) |
|
2064 |
return connected |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2065 |
|
814 | 2066 |
# Returns the id of the block connected to the first or the last wire point |
2067 |
def GetConnectedInfos(self, index): |
|
2068 |
if index == 0 and self.StartConnected: |
|
2069 |
return self.StartConnected.GetBlockId(), self.StartConnected.GetName() |
|
2070 |
elif index == -1 and self.EndConnected: |
|
2071 |
return self.EndConnected.GetBlockId(), self.EndConnected.GetName() |
|
2072 |
return None |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2073 |
|
814 | 2074 |
# Update the wire points position by keeping at most possible the current positions |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2075 |
def GeneratePoints(self, realpoints=True): |
814 | 2076 |
i = 0 |
2077 |
# Calculate the start enad end points with the minimum segment size in the right direction |
|
2078 |
end = wx.Point(self.EndPoint[0].x + self.EndPoint[1][0] * MIN_SEGMENT_SIZE, |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2079 |
self.EndPoint[0].y + self.EndPoint[1][1] * MIN_SEGMENT_SIZE) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2080 |
start = wx.Point(self.StartPoint[0].x + self.StartPoint[1][0] * MIN_SEGMENT_SIZE, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2081 |
self.StartPoint[0].y + self.StartPoint[1][1] * MIN_SEGMENT_SIZE) |
814 | 2082 |
# Evaluate the point till it's the last |
2083 |
while i < len(self.Points) - 1: |
|
2084 |
# The next point is the last |
|
2085 |
if i + 1 == len(self.Points) - 1: |
|
2086 |
# Calculate the direction from current point to end point |
|
2087 |
v_end = vector(self.Points[i], end) |
|
2088 |
# The current point is the first |
|
2089 |
if i == 0: |
|
2090 |
# If the end point is not in the start direction, a point is added |
|
2091 |
if v_end != self.Segments[0] or v_end == self.EndPoint[1]: |
|
2092 |
self.Points.insert(1, wx.Point(start.x, start.y)) |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2093 |
self.Segments.insert(1, DirectionChoice( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2094 |
(self.Segments[0][1], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2095 |
self.Segments[0][0]), v_end, self.EndPoint[1])) |
814 | 2096 |
# The current point is the second |
2097 |
elif i == 1: |
|
2098 |
# The previous direction and the target direction are mainly opposed, a point is added |
|
2099 |
if product(v_end, self.Segments[0]) < 0: |
|
2100 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2101 |
self.Segments.insert(2, DirectionChoice( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2102 |
(self.Segments[1][1], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2103 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
814 | 2104 |
# The previous direction and the end direction are the same or they are |
2105 |
# perpendiculars and the end direction points towards current segment |
|
2106 |
elif product(self.Segments[0], self.EndPoint[1]) >= 0 and product(self.Segments[1], self.EndPoint[1]) <= 0: |
|
2107 |
# Current point and end point are aligned |
|
2108 |
if self.Segments[0][0] != 0: |
|
2109 |
self.Points[1].x = end.x |
|
2110 |
if self.Segments[0][1] != 0: |
|
2111 |
self.Points[1].y = end.y |
|
2112 |
# If the previous direction and the end direction are the same, a point is added |
|
2113 |
if product(self.Segments[0], self.EndPoint[1]) > 0: |
|
2114 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2115 |
self.Segments.insert(2, DirectionChoice( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2116 |
(self.Segments[1][1], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2117 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
814 | 2118 |
else: |
2119 |
# Current point is positioned in the middle of start point |
|
2120 |
# and end point on the current direction and a point is added |
|
2121 |
if self.Segments[0][0] != 0: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2122 |
self.Points[1].x = (end.x + start.x) // 2 |
814 | 2123 |
if self.Segments[0][1] != 0: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2124 |
self.Points[1].y = (end.y + start.y) // 2 |
814 | 2125 |
self.Points.insert(2, wx.Point(self.Points[1].x, self.Points[1].y)) |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2126 |
self.Segments.insert(2, DirectionChoice( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2127 |
(self.Segments[1][1], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2128 |
self.Segments[1][0]), v_end, self.EndPoint[1])) |
814 | 2129 |
else: |
2130 |
# The previous direction and the end direction are perpendiculars |
|
2131 |
if product(self.Segments[i - 1], self.EndPoint[1]) == 0: |
|
2132 |
# The target direction and the end direction aren't mainly the same |
|
2133 |
if product(v_end, self.EndPoint[1]) <= 0: |
|
2134 |
# Current point and end point are aligned |
|
2135 |
if self.Segments[i - 1][0] != 0: |
|
2136 |
self.Points[i].x = end.x |
|
2137 |
if self.Segments[i - 1][1] != 0: |
|
2138 |
self.Points[i].y = end.y |
|
2139 |
# Previous direction is updated from the new point |
|
2140 |
if product(vector(self.Points[i - 1], self.Points[i]), self.Segments[i - 1]) < 0: |
|
2141 |
self.Segments[i - 1] = (-self.Segments[i - 1][0], -self.Segments[i - 1][1]) |
|
2142 |
else: |
|
2143 |
test = True |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2144 |
# If the current point is the third, test if the second |
814 | 2145 |
# point can be aligned with the end point |
2146 |
if i == 2: |
|
2147 |
test_point = wx.Point(self.Points[1].x, self.Points[1].y) |
|
2148 |
if self.Segments[1][0] != 0: |
|
2149 |
test_point.y = end.y |
|
2150 |
if self.Segments[1][1] != 0: |
|
2151 |
test_point.x = end.x |
|
2152 |
vector_test = vector(self.Points[0], test_point, False) |
|
2153 |
test = norm(vector_test) > MIN_SEGMENT_SIZE and product(self.Segments[0], vector_test) > 0 |
|
2154 |
# The previous point can be aligned |
|
2155 |
if test: |
|
2156 |
self.Points[i].x, self.Points[i].y = end.x, end.y |
|
2157 |
if self.Segments[i - 1][0] != 0: |
|
2158 |
self.Points[i - 1].y = end.y |
|
2159 |
if self.Segments[i - 1][1] != 0: |
|
2160 |
self.Points[i - 1].x = end.x |
|
2161 |
self.Segments[i] = (-self.EndPoint[1][0], -self.EndPoint[1][1]) |
|
2162 |
else: |
|
2163 |
# Current point is positioned in the middle of previous point |
|
2164 |
# and end point on the current direction and a point is added |
|
2165 |
if self.Segments[1][0] != 0: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2166 |
self.Points[2].x = (self.Points[1].x + end.x) // 2 |
814 | 2167 |
if self.Segments[1][1] != 0: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2168 |
self.Points[2].y = (self.Points[1].y + end.y) // 2 |
814 | 2169 |
self.Points.insert(3, wx.Point(self.Points[2].x, self.Points[2].y)) |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2170 |
self.Segments.insert( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2171 |
3, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2172 |
DirectionChoice((self.Segments[2][1], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2173 |
self.Segments[2][0]), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2174 |
v_end, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2175 |
self.EndPoint[1])) |
814 | 2176 |
else: |
2177 |
# Current point is aligned with end point |
|
2178 |
if self.Segments[i - 1][0] != 0: |
|
2179 |
self.Points[i].x = end.x |
|
2180 |
if self.Segments[i - 1][1] != 0: |
|
2181 |
self.Points[i].y = end.y |
|
2182 |
# Previous direction is updated from the new point |
|
2183 |
if product(vector(self.Points[i - 1], self.Points[i]), self.Segments[i - 1]) < 0: |
|
2184 |
self.Segments[i - 1] = (-self.Segments[i - 1][0], -self.Segments[i - 1][1]) |
|
2185 |
# If previous direction and end direction are opposed |
|
2186 |
if product(self.Segments[i - 1], self.EndPoint[1]) < 0: |
|
2187 |
# Current point is positioned in the middle of previous point |
|
2188 |
# and end point on the current direction |
|
2189 |
if self.Segments[i - 1][0] != 0: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2190 |
self.Points[i].x = (end.x + self.Points[i - 1].x) // 2 |
814 | 2191 |
if self.Segments[i - 1][1] != 0: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2192 |
self.Points[i].y = (end.y + self.Points[i - 1].y) // 2 |
814 | 2193 |
# A point is added |
2194 |
self.Points.insert(i + 1, wx.Point(self.Points[i].x, self.Points[i].y)) |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2195 |
self.Segments.insert( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2196 |
i + 1, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2197 |
DirectionChoice((self.Segments[i][1], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2198 |
self.Segments[i][0]), v_end, self.EndPoint[1])) |
814 | 2199 |
else: |
2200 |
# Current point is the first, and second is not mainly in the first direction |
|
2201 |
if i == 0 and product(vector(start, self.Points[1]), self.Segments[0]) < 0: |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2202 |
# If first and second directions aren't perpendiculars, a point is added |
814 | 2203 |
if product(self.Segments[0], self.Segments[1]) != 0: |
2204 |
self.Points.insert(1, wx.Point(start.x, start.y)) |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2205 |
self.Segments.insert( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2206 |
1, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2207 |
DirectionChoice((self.Segments[0][1], |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2208 |
self.Segments[0][0]), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2209 |
vector(start, self.Points[1]), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2210 |
self.Segments[1])) |
814 | 2211 |
else: |
2212 |
self.Points[1].x, self.Points[1].y = start.x, start.y |
|
2213 |
else: |
|
2214 |
# Next point is aligned with current point |
|
2215 |
if self.Segments[i][0] != 0: |
|
2216 |
self.Points[i + 1].y = self.Points[i].y |
|
2217 |
if self.Segments[i][1] != 0: |
|
2218 |
self.Points[i + 1].x = self.Points[i].x |
|
2219 |
# Current direction is updated from the new point |
|
2220 |
if product(vector(self.Points[i], self.Points[i + 1]), self.Segments[i]) < 0: |
|
2221 |
self.Segments[i] = (-self.Segments[i][0], -self.Segments[i][1]) |
|
2222 |
i += 1 |
|
2223 |
self.RefreshBoundingBox() |
|
2224 |
if realpoints: |
|
2225 |
self.RefreshRealPoints() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2226 |
|
814 | 2227 |
# Verify that two consecutive points haven't the same position |
2228 |
def VerifyPoints(self): |
|
2229 |
points = [point for point in self.Points] |
|
2230 |
segments = [segment for segment in self.Segments] |
|
2231 |
i = 1 |
|
2232 |
while i < len(points) - 1: |
|
2233 |
if points[i] == points[i + 1] and segments[i - 1] == segments[i + 1]: |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
2234 |
for dummy in xrange(2): |
814 | 2235 |
points.pop(i) |
2236 |
segments.pop(i) |
|
2237 |
else: |
|
2238 |
i += 1 |
|
2239 |
# If the wire isn't in a Ladder Diagram, save the new point list |
|
2240 |
if self.Parent.__class__.__name__ != "LD_Viewer": |
|
2241 |
self.Points = [point for point in points] |
|
2242 |
self.Segments = [segment for segment in segments] |
|
2243 |
self.RefreshBoundingBox() |
|
2244 |
self.RefreshRealPoints() |
|
2245 |
return points |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2246 |
|
814 | 2247 |
# Moves all the wire points except the first and the last if they are connected |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2248 |
def Move(self, dx, dy, endpoints=False): |
814 | 2249 |
for i, point in enumerate(self.Points): |
2250 |
if endpoints or not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
2251 |
point.x += dx |
|
2252 |
point.y += dy |
|
2253 |
self.StartPoint[0] = self.Points[0] |
|
2254 |
self.EndPoint[0] = self.Points[-1] |
|
2255 |
self.GeneratePoints() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2256 |
|
814 | 2257 |
# Resize the wire from position and size given |
2258 |
def Resize(self, x, y, width, height): |
|
2259 |
if len(self.Points) > 1: |
|
2260 |
# Calculate the new position of each point for testing the new size |
|
2261 |
minx, miny = self.Pos.x, self.Pos.y |
|
2262 |
lastwidth, lastheight = self.Size.width, self.Size.height |
|
2263 |
for i, point in enumerate(self.RealPoints): |
|
2264 |
# If start or end point is connected, it's not calculate |
|
2265 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
2266 |
if i == 0: |
|
2267 |
dir = self.StartPoint[1] |
|
2268 |
elif i == len(self.Points) - 1: |
|
2269 |
dir = self.EndPoint[1] |
|
2270 |
else: |
|
2271 |
dir = (0, 0) |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2272 |
pointx = max(-dir[0] * MIN_SEGMENT_SIZE, min(int(round(point[0] * width / max(lastwidth, 1))), |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2273 |
width - dir[0] * MIN_SEGMENT_SIZE)) |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2274 |
pointy = max(-dir[1] * MIN_SEGMENT_SIZE, min(int(round(point[1] * height / max(lastheight, 1))), |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2275 |
height - dir[1] * MIN_SEGMENT_SIZE)) |
814 | 2276 |
self.Points[i] = wx.Point(minx + x + pointx, miny + y + pointy) |
2277 |
self.StartPoint[0] = self.Points[0] |
|
2278 |
self.EndPoint[0] = self.Points[-1] |
|
2279 |
self.GeneratePoints(False) |
|
2280 |
# Test if the wire position or size have changed |
|
2281 |
if x != 0 and minx == self.Pos.x: |
|
2282 |
x = 0 |
|
2283 |
width = lastwidth |
|
2284 |
if y != 0 and miny == self.Pos.y: |
|
2285 |
y = 0 |
|
2286 |
height = lastwidth |
|
2287 |
if width != lastwidth and lastwidth == self.Size.width: |
|
2288 |
width = lastwidth |
|
2289 |
if height != lastheight and lastheight == self.Size.height: |
|
2290 |
height = lastheight |
|
2291 |
# Calculate the real points from the new size, it's important for |
|
2292 |
# keeping a proportionality in the points position with the size |
|
2293 |
# during a resize dragging |
|
2294 |
for i, point in enumerate(self.RealPoints): |
|
2295 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2296 |
point[0] = point[0] * width / max(lastwidth, 1) |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2297 |
point[1] = point[1] * height / max(lastheight, 1) |
814 | 2298 |
# Calculate the correct position of the points from real points |
2299 |
for i, point in enumerate(self.RealPoints): |
|
2300 |
if not (i == 0 and self.StartConnected) and not (i == len(self.Points) - 1 and self.EndConnected): |
|
2301 |
if i == 0: |
|
2302 |
dir = self.StartPoint[1] |
|
2303 |
elif i == len(self.Points) - 1: |
|
2304 |
dir = self.EndPoint[1] |
|
2305 |
else: |
|
2306 |
dir = (0, 0) |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2307 |
realpointx = max(-dir[0] * MIN_SEGMENT_SIZE, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2308 |
min(int(round(point[0])), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2309 |
width - dir[0] * MIN_SEGMENT_SIZE)) |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2310 |
realpointy = max(-dir[1] * MIN_SEGMENT_SIZE, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2311 |
min(int(round(point[1])), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
2312 |
height - dir[1] * MIN_SEGMENT_SIZE)) |
814 | 2313 |
self.Points[i] = wx.Point(minx + x + realpointx, miny + y + realpointy) |
2314 |
self.StartPoint[0] = self.Points[0] |
|
2315 |
self.EndPoint[0] = self.Points[-1] |
|
2316 |
self.GeneratePoints(False) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2317 |
|
814 | 2318 |
# Moves the wire start point and update the wire points |
2319 |
def MoveStartPoint(self, point): |
|
2320 |
if len(self.Points) > 1: |
|
2321 |
self.StartPoint[0] = point |
|
2322 |
self.Points[0] = point |
|
2323 |
self.GeneratePoints() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2324 |
|
814 | 2325 |
# Changes the wire start direction and update the wire points |
2326 |
def SetStartPointDirection(self, dir): |
|
2327 |
if len(self.Points) > 1: |
|
2328 |
self.StartPoint[1] = dir |
|
2329 |
self.Segments[0] = dir |
|
2330 |
self.GeneratePoints() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2331 |
|
814 | 2332 |
# Rotates the wire start direction by an angle of 90 degrees anticlockwise |
2333 |
def RotateStartPoint(self): |
|
2334 |
self.SetStartPointDirection((self.StartPoint[1][1], -self.StartPoint[1][0])) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2335 |
|
814 | 2336 |
# Connects wire start point to the connector given and moves wire start point |
2337 |
# to given point |
|
2338 |
def ConnectStartPoint(self, point, connector): |
|
2339 |
if point: |
|
2340 |
self.MoveStartPoint(point) |
|
2341 |
self.StartConnected = connector |
|
2342 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2343 |
|
814 | 2344 |
# Unconnects wire start point |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2345 |
def UnConnectStartPoint(self, delete=False): |
814 | 2346 |
if delete: |
2347 |
self.StartConnected = None |
|
2348 |
self.Delete() |
|
2349 |
elif self.StartConnected: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2350 |
self.StartConnected.UnConnect(self, unconnect=False) |
814 | 2351 |
self.StartConnected = None |
2352 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2353 |
|
814 | 2354 |
# Moves the wire end point and update the wire points |
2355 |
def MoveEndPoint(self, point): |
|
2356 |
if len(self.Points) > 1: |
|
2357 |
self.EndPoint[0] = point |
|
2358 |
self.Points[-1] = point |
|
2359 |
self.GeneratePoints() |
|
2360 |
||
2361 |
# Changes the wire end direction and update the wire points |
|
2362 |
def SetEndPointDirection(self, dir): |
|
2363 |
if len(self.Points) > 1: |
|
2364 |
self.EndPoint[1] = dir |
|
2365 |
self.GeneratePoints() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2366 |
|
814 | 2367 |
# Rotates the wire end direction by an angle of 90 degrees anticlockwise |
2368 |
def RotateEndPoint(self): |
|
2369 |
self.SetEndPointDirection((self.EndPoint[1][1], -self.EndPoint[1][0])) |
|
2370 |
||
2371 |
# Connects wire end point to the connector given and moves wire end point |
|
2372 |
# to given point |
|
2373 |
def ConnectEndPoint(self, point, connector): |
|
2374 |
if point: |
|
2375 |
self.MoveEndPoint(point) |
|
2376 |
self.EndConnected = connector |
|
2377 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2378 |
|
814 | 2379 |
# Unconnects wire end point |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2380 |
def UnConnectEndPoint(self, delete=False): |
814 | 2381 |
if delete: |
2382 |
self.EndConnected = None |
|
2383 |
self.Delete() |
|
2384 |
elif self.EndConnected: |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2385 |
self.EndConnected.UnConnect(self, unconnect=False) |
814 | 2386 |
self.EndConnected = None |
2387 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2388 |
|
814 | 2389 |
# Moves the wire segment given by its index |
2390 |
def MoveSegment(self, idx, movex, movey, scaling): |
|
2391 |
if 0 < idx < len(self.Segments) - 1: |
|
2392 |
if self.Segments[idx] in (NORTH, SOUTH): |
|
2393 |
start_x = self.Points[idx].x |
|
2394 |
if scaling is not None: |
|
2395 |
movex = round_scaling(self.Points[idx].x + movex, scaling[0]) - self.Points[idx].x |
|
2396 |
if idx == 1 and (self.Points[1].x + movex - self.Points[0].x) * self.Segments[0][0] < MIN_SEGMENT_SIZE: |
|
2397 |
movex = round_scaling(self.Points[0].x + MIN_SEGMENT_SIZE * self.Segments[0][0], scaling[0], self.Segments[0][0]) - self.Points[idx].x |
|
2398 |
elif idx == len(self.Segments) - 2 and (self.Points[-1].x - (self.Points[-2].x + movex)) * self.Segments[-1][0] < MIN_SEGMENT_SIZE: |
|
2399 |
movex = round_scaling(self.Points[-1].x - MIN_SEGMENT_SIZE * self.Segments[-1][0], scaling[0], -self.Segments[-1][0]) - self.Points[idx].x |
|
2400 |
self.Points[idx].x += movex |
|
2401 |
self.Points[idx + 1].x += movex |
|
2402 |
self.GeneratePoints() |
|
2403 |
if start_x != self.Points[idx].x: |
|
2404 |
return self.Points[idx].x - start_x, 0 |
|
2405 |
elif self.Segments[idx] in (EAST, WEST): |
|
2406 |
start_y = self.Points[idx].y |
|
2407 |
if scaling is not None: |
|
2408 |
movey = round_scaling(self.Points[idx].y + movey, scaling[1]) - self.Points[idx].y |
|
2409 |
if idx == 1 and (self.Points[1].y + movey - self.Points[0].y) * self.Segments[0][1] < MIN_SEGMENT_SIZE: |
|
2410 |
movex = round_scaling(self.Points[0].y + MIN_SEGMENT_SIZE * self.Segments[0][1], scaling[0], self.Segments[0][1]) - self.Points[idx].y |
|
2411 |
elif idx == len(self.Segments) - 2 and (self.Points[-1].y - (self.Points[-2].y + movey)) * self.Segments[-1][1] < MIN_SEGMENT_SIZE: |
|
2412 |
movey = round_scaling(self.Points[idx].y - MIN_SEGMENT_SIZE * self.Segments[-1][1], scaling[1], -self.Segments[-1][1]) - self.Points[idx].y |
|
2413 |
self.Points[idx].y += movey |
|
2414 |
self.Points[idx + 1].y += movey |
|
2415 |
self.GeneratePoints() |
|
2416 |
if start_y != self.Points[idx].y: |
|
2417 |
return 0, self.Points[idx].y - start_y |
|
2418 |
return 0, 0 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2419 |
|
814 | 2420 |
# Adds two points in the middle of the handled segment |
2421 |
def AddSegment(self): |
|
2422 |
handle_type, handle = self.Handle |
|
2423 |
if handle_type == HANDLE_SEGMENT: |
|
2424 |
segment, dir = handle |
|
2425 |
if len(self.Segments) > 1: |
|
2426 |
pointx = self.Points[segment].x |
|
2427 |
pointy = self.Points[segment].y |
|
2428 |
if dir[0] != 0: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2429 |
pointx = (self.Points[segment].x + self.Points[segment + 1].x) // 2 |
814 | 2430 |
if dir[1] != 0: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2431 |
pointy = (self.Points[segment].y + self.Points[segment + 1].y) // 2 |
814 | 2432 |
self.Points.insert(segment + 1, wx.Point(pointx, pointy)) |
2433 |
self.Segments.insert(segment + 1, (dir[1], dir[0])) |
|
2434 |
self.Points.insert(segment + 2, wx.Point(pointx, pointy)) |
|
2435 |
self.Segments.insert(segment + 2, dir) |
|
2436 |
else: |
|
2437 |
p1x = p2x = self.Points[segment].x |
|
2438 |
p1y = p2y = self.Points[segment].y |
|
2439 |
if dir[0] != 0: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2440 |
p1x = (2 * self.Points[segment].x + self.Points[segment + 1].x) // 3 |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2441 |
p2x = (self.Points[segment].x + 2 * self.Points[segment + 1].x) // 3 |
814 | 2442 |
if dir[1] != 0: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2443 |
p1y = (2 * self.Points[segment].y + self.Points[segment + 1].y) // 3 |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2444 |
p2y = (self.Points[segment].y + 2 * self.Points[segment + 1].y) // 3 |
814 | 2445 |
self.Points.insert(segment + 1, wx.Point(p1x, p1y)) |
2446 |
self.Segments.insert(segment + 1, (dir[1], dir[0])) |
|
2447 |
self.Points.insert(segment + 2, wx.Point(p1x, p1y)) |
|
2448 |
self.Segments.insert(segment + 2, dir) |
|
2449 |
self.Points.insert(segment + 3, wx.Point(p2x, p2y)) |
|
2450 |
self.Segments.insert(segment + 3, (dir[1], dir[0])) |
|
2451 |
self.Points.insert(segment + 4, wx.Point(p2x, p2y)) |
|
2452 |
self.Segments.insert(segment + 4, dir) |
|
2453 |
self.GeneratePoints() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2454 |
|
814 | 2455 |
# Delete the handled segment by removing the two segment points |
2456 |
def DeleteSegment(self): |
|
2457 |
handle_type, handle = self.Handle |
|
2458 |
if handle_type == HANDLE_SEGMENT: |
|
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
2459 |
segment, _dir = handle |
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
2460 |
for dummy in xrange(2): |
814 | 2461 |
self.Points.pop(segment) |
2462 |
self.Segments.pop(segment) |
|
2463 |
self.GeneratePoints() |
|
2464 |
self.RefreshModel() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2465 |
|
814 | 2466 |
# Method called when a LeftDown event have been generated |
2467 |
def OnLeftDown(self, event, dc, scaling): |
|
2468 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
2469 |
# Test if a point have been handled |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
2470 |
# result = self.TestPoint(pos) |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
2471 |
# if result != None: |
814 | 2472 |
# self.Handle = (HANDLE_POINT, result) |
2473 |
# wx.CallAfter(self.Parent.SetCurrentCursor, 1) |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
2474 |
# else: |
814 | 2475 |
# Test if a segment have been handled |
2476 |
result = self.TestSegment(pos) |
|
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
2477 |
if result is not None: |
814 | 2478 |
if result[1] in (NORTH, SOUTH): |
2479 |
wx.CallAfter(self.Parent.SetCurrentCursor, 4) |
|
2480 |
elif result[1] in (EAST, WEST): |
|
2481 |
wx.CallAfter(self.Parent.SetCurrentCursor, 5) |
|
2482 |
self.Handle = (HANDLE_SEGMENT, result) |
|
2483 |
# Execute the default method for a graphic element |
|
2484 |
else: |
|
2485 |
Graphic_Element.OnLeftDown(self, event, dc, scaling) |
|
2486 |
self.oldPos = pos |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2487 |
|
814 | 2488 |
# Method called when a RightUp event has been generated |
2489 |
def OnRightUp(self, event, dc, scaling): |
|
2490 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
2491 |
# Test if a segment has been handled |
|
2492 |
result = self.TestSegment(pos, 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:
1742
diff
changeset
|
2493 |
if result is not None: |
814 | 2494 |
self.Handle = (HANDLE_SEGMENT, result) |
2495 |
# Popup the menu with special items for a wire |
|
2496 |
self.Parent.PopupWireMenu(0 < result[0] < len(self.Segments) - 1) |
|
2497 |
else: |
|
2498 |
# Execute the default method for a graphic element |
|
2499 |
Graphic_Element.OnRightUp(self, event, dc, scaling) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2500 |
|
814 | 2501 |
# Method called when a LeftDClick event has been generated |
2502 |
def OnLeftDClick(self, event, dc, scaling): |
|
2503 |
rect = self.GetRedrawRect() |
|
2504 |
if event.ControlDown(): |
|
2505 |
direction = (self.StartPoint[1], self.EndPoint[1]) |
|
2506 |
if direction in [(EAST, WEST), (WEST, EAST)]: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2507 |
avgy = (self.StartPoint[0].y + self.EndPoint[0].y) // 2 |
814 | 2508 |
if scaling is not None: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2509 |
avgy = round(avgy / scaling[1]) * scaling[1] |
814 | 2510 |
if self.StartConnected is not None: |
2511 |
movey = avgy - self.StartPoint[0].y |
|
2512 |
startblock = self.StartConnected.GetParentBlock() |
|
2513 |
startblock.Move(0, movey) |
|
2514 |
startblock.RefreshModel() |
|
2515 |
rect.Union(startblock.GetRedrawRect(0, movey)) |
|
2516 |
else: |
|
2517 |
self.MoveStartPoint(wx.Point(self.StartPoint[0].x, avgy)) |
|
2518 |
if self.EndConnected is not None: |
|
2519 |
movey = avgy - self.EndPoint[0].y |
|
2520 |
endblock = self.EndConnected.GetParentBlock() |
|
2521 |
endblock.Move(0, movey) |
|
2522 |
endblock.RefreshModel() |
|
2523 |
rect.Union(endblock.GetRedrawRect(0, movey)) |
|
2524 |
else: |
|
2525 |
self.MoveEndPoint(wx.Point(self.EndPoint[0].x, avgy)) |
|
2526 |
self.Parent.RefreshBuffer() |
|
2527 |
elif direction in [(NORTH, SOUTH), (SOUTH, NORTH)]: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2528 |
avgx = (self.StartPoint[0].x + self.EndPoint[0].x) // 2 |
814 | 2529 |
if scaling is not None: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2530 |
avgx = round(avgx / scaling[0]) * scaling[0] |
814 | 2531 |
if self.StartConnected is not None: |
2532 |
movex = avgx - self.StartPoint[0].x |
|
2533 |
startblock = self.StartConnected.GetParentBlock() |
|
2534 |
startblock.Move(movex, 0) |
|
2535 |
startblock.RefreshModel() |
|
2536 |
rect.Union(startblock.GetRedrawRect(movex, 0)) |
|
2537 |
else: |
|
2538 |
self.MoveStartPoint(wx.Point(avgx, self.StartPoint[0].y)) |
|
2539 |
if self.EndConnected is not None: |
|
2540 |
movex = avgx - self.EndPoint[0].x |
|
2541 |
endblock = self.EndConnected.GetParentBlock() |
|
2542 |
endblock.Move(movex, 0) |
|
2543 |
endblock.RefreshModel() |
|
2544 |
rect.Union(endblock.GetRedrawRect(movex, 0)) |
|
2545 |
else: |
|
2546 |
self.MoveEndPoint(wx.Point(avgx, self.EndPoint[0].y)) |
|
2547 |
self.Parent.RefreshBuffer() |
|
2548 |
else: |
|
2549 |
self.ResetPoints() |
|
2550 |
self.GeneratePoints() |
|
2551 |
self.RefreshModel() |
|
2552 |
self.Parent.RefreshBuffer() |
|
2553 |
rect.Union(self.GetRedrawRect()) |
|
2554 |
self.Parent.RefreshRect(self.Parent.GetScrolledRect(rect), False) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2555 |
|
814 | 2556 |
# Method called when a Motion event has been generated |
2557 |
def OnMotion(self, event, dc, scaling): |
|
2558 |
pos = GetScaledEventPosition(event, dc, scaling) |
|
2559 |
if not event.Dragging(): |
|
2560 |
# Test if a segment has been handled |
|
2561 |
result = self.TestSegment(pos) |
|
2562 |
if result: |
|
2563 |
if result[1] in (NORTH, SOUTH): |
|
2564 |
wx.CallAfter(self.Parent.SetCurrentCursor, 4) |
|
2565 |
elif result[1] in (EAST, WEST): |
|
2566 |
wx.CallAfter(self.Parent.SetCurrentCursor, 5) |
|
2567 |
return 0, 0 |
|
2568 |
else: |
|
2569 |
# Execute the default method for a graphic element |
|
2570 |
return Graphic_Element.OnMotion(self, event, dc, scaling) |
|
2571 |
else: |
|
2572 |
# Execute the default method for a graphic element |
|
2573 |
return Graphic_Element.OnMotion(self, event, dc, scaling) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2574 |
|
814 | 2575 |
# Refreshes the wire state according to move defined and handle selected |
2576 |
def ProcessDragging(self, movex, movey, event, scaling): |
|
2577 |
handle_type, handle = self.Handle |
|
2578 |
# A point has been handled |
|
2579 |
if handle_type == HANDLE_POINT: |
|
2580 |
movex = max(-self.Points[handle].x + POINT_RADIUS, movex) |
|
2581 |
movey = max(-self.Points[handle].y + POINT_RADIUS, movey) |
|
2582 |
if scaling is not None: |
|
2583 |
movex = round_scaling(self.Points[handle].x + movex, scaling[0]) - self.Points[handle].x |
|
2584 |
movey = round_scaling(self.Points[handle].y + movey, scaling[1]) - self.Points[handle].y |
|
2585 |
# Try to connect point to a connector |
|
2586 |
new_pos = wx.Point(self.Points[handle].x + movex, self.Points[handle].y + movey) |
|
2587 |
connector = self.Parent.FindBlockConnector(new_pos, self.GetConnectionDirection()) |
|
2588 |
if connector: |
|
2589 |
if handle == 0 and self.EndConnected != connector: |
|
2590 |
connector.HighlightParentBlock(True) |
|
2591 |
connector.Connect((self, handle)) |
|
2592 |
self.SetStartPointDirection(connector.GetDirection()) |
|
2593 |
self.ConnectStartPoint(connector.GetPosition(), connector) |
|
2594 |
pos = connector.GetPosition() |
|
2595 |
movex = pos.x - self.oldPos.x |
|
2596 |
movey = pos.y - self.oldPos.y |
|
2597 |
if not connector.IsCompatible(self.GetEndConnectedType()): |
|
2598 |
self.SetValid(False) |
|
2599 |
self.Dragging = False |
|
2600 |
elif handle != 0 and self.StartConnected != connector: |
|
2601 |
connector.HighlightParentBlock(True) |
|
2602 |
connector.Connect((self, handle)) |
|
2603 |
self.SetEndPointDirection(connector.GetDirection()) |
|
2604 |
self.ConnectEndPoint(connector.GetPosition(), connector) |
|
2605 |
pos = connector.GetPosition() |
|
2606 |
movex = pos.x - self.oldPos.x |
|
2607 |
movey = pos.y - self.oldPos.y |
|
2608 |
if not connector.IsCompatible(self.GetStartConnectedType()): |
|
2609 |
self.SetValid(False) |
|
2610 |
self.Dragging = False |
|
2611 |
elif handle == 0: |
|
2612 |
self.MoveStartPoint(new_pos) |
|
2613 |
else: |
|
2614 |
self.MoveEndPoint(new_pos) |
|
2615 |
# If there is no connector, move the point |
|
2616 |
elif handle == 0: |
|
2617 |
self.SetValid(True) |
|
2618 |
if self.StartConnected: |
|
2619 |
self.StartConnected.HighlightParentBlock(False) |
|
2620 |
self.UnConnectStartPoint() |
|
2621 |
self.MoveStartPoint(new_pos) |
|
2622 |
else: |
|
2623 |
self.SetValid(True) |
|
2624 |
if self.EndConnected: |
|
2625 |
self.EndConnected.HighlightParentBlock(False) |
|
2626 |
self.UnConnectEndPoint() |
|
2627 |
self.MoveEndPoint(new_pos) |
|
2628 |
return movex, movey |
|
2629 |
# A segment has been handled, move a segment |
|
2630 |
elif handle_type == HANDLE_SEGMENT: |
|
2631 |
return self.MoveSegment(handle[0], movex, movey, scaling) |
|
2632 |
# Execute the default method for a graphic element |
|
2633 |
else: |
|
2634 |
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:
1631
diff
changeset
|
2635 |
|
814 | 2636 |
# Refreshes the wire model |
2637 |
def RefreshModel(self, move=True): |
|
2638 |
if self.StartConnected and self.StartPoint[1] in [WEST, NORTH]: |
|
2639 |
self.StartConnected.RefreshParentBlock() |
|
2640 |
if self.EndConnected and self.EndPoint[1] in [WEST, NORTH]: |
|
2641 |
self.EndConnected.RefreshParentBlock() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2642 |
|
814 | 2643 |
# Change the variable that indicates if this element is highlighted |
2644 |
def SetHighlighted(self, highlighted): |
|
2645 |
self.Highlighted = highlighted |
|
2646 |
if not highlighted: |
|
2647 |
self.OverStart = False |
|
2648 |
self.OverEnd = False |
|
2649 |
self.Refresh() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2650 |
|
814 | 2651 |
def HighlightPoint(self, pos): |
2652 |
start, end = self.OverStart, self.OverEnd |
|
2653 |
self.OverStart = False |
|
2654 |
self.OverEnd = False |
|
2655 |
# Test if a point has been handled |
|
2656 |
result = self.TestPoint(pos) |
|
1743
c3c3d1318130
clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
2657 |
if result is not None: |
814 | 2658 |
if result == 0 and self.StartConnected is not None: |
2659 |
self.OverStart = True |
|
2660 |
elif result != 0 and self.EndConnected is not None: |
|
2661 |
self.OverEnd = True |
|
2662 |
if start != self.OverStart or end != self.OverEnd: |
|
2663 |
self.Refresh() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2664 |
|
814 | 2665 |
# Draws the highlightment of this element if it is highlighted |
2666 |
def DrawHighlightment(self, dc): |
|
2667 |
scalex, scaley = dc.GetUserScale() |
|
2668 |
dc.SetUserScale(1, 1) |
|
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
2669 |
# If user trying to connect wire with wrong input, highlight will become red. |
1828
396da88d7b5c
fix unnecessary parens after keyword
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
2670 |
if self.ErrHighlight and not self.EndConnected: |
1544
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
2671 |
highlightcolor = wx.RED |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
2672 |
else: |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
2673 |
highlightcolor = HIGHLIGHTCOLOR |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
2674 |
dc.SetPen(MiterPen(highlightcolor, (2 * scalex + 5))) |
2969c2123105
Fix bug with two or more wires connected to one input. Now only one wire can be connected to one input, except BOOLean signals in LD and SFC. If user trying to connect wire with already connected input, wire highlight will become red.
Sergey Surkov <surkovsv93@gmail.com>
parents:
1377
diff
changeset
|
2675 |
dc.SetBrush(wx.Brush(highlightcolor)) |
814 | 2676 |
dc.SetLogicalFunction(wx.AND) |
2677 |
# Draw the start and end points if they are not connected or the mouse is over them |
|
2678 |
if len(self.Points) > 0 and (not self.StartConnected or self.OverStart): |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2679 |
dc.DrawCircle(round(self.Points[0].x * scalex), |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2680 |
round(self.Points[0].y * scaley), |
814 | 2681 |
(POINT_RADIUS + 1) * scalex + 2) |
2682 |
if len(self.Points) > 1 and (not self.EndConnected or self.OverEnd): |
|
2683 |
dc.DrawCircle(self.Points[-1].x * scalex, self.Points[-1].y * scaley, (POINT_RADIUS + 1) * scalex + 2) |
|
2684 |
# Draw the wire lines and the last point (it seems that DrawLines stop before the last point) |
|
2685 |
if len(self.Points) > 1: |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2686 |
points = [wx.Point(round((self.Points[0].x - self.Segments[0][0]) * scalex), |
814 | 2687 |
round((self.Points[0].y - self.Segments[0][1]) * scaley))] |
2688 |
points.extend([wx.Point(round(point.x * scalex), round(point.y * scaley)) for point in self.Points[1:-1]]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2689 |
points.append(wx.Point(round((self.Points[-1].x + self.Segments[-1][0]) * scalex), |
814 | 2690 |
round((self.Points[-1].y + self.Segments[-1][1]) * scaley))) |
2691 |
else: |
|
2692 |
points = [] |
|
2693 |
dc.DrawLines(points) |
|
2694 |
dc.SetLogicalFunction(wx.COPY) |
|
2695 |
dc.SetUserScale(scalex, scaley) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2696 |
|
814 | 2697 |
if self.StartConnected is not None: |
2698 |
self.StartConnected.DrawHighlightment(dc) |
|
2699 |
self.StartConnected.Draw(dc) |
|
2700 |
if self.EndConnected is not None: |
|
2701 |
self.EndConnected.DrawHighlightment(dc) |
|
2702 |
self.EndConnected.Draw(dc) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2703 |
|
814 | 2704 |
# Draws the wire lines and points |
2705 |
def Draw(self, dc): |
|
2706 |
Graphic_Element.Draw(self, dc) |
|
2707 |
if not self.Valid: |
|
2708 |
dc.SetPen(MiterPen(wx.RED)) |
|
2709 |
dc.SetBrush(wx.RED_BRUSH) |
|
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
2710 |
elif isinstance(self.Value, bool) and self.Value: |
814 | 2711 |
if self.Forced: |
2712 |
dc.SetPen(MiterPen(wx.CYAN)) |
|
2713 |
dc.SetBrush(wx.CYAN_BRUSH) |
|
2714 |
else: |
|
2715 |
dc.SetPen(MiterPen(wx.GREEN)) |
|
2716 |
dc.SetBrush(wx.GREEN_BRUSH) |
|
2717 |
elif self.Value == "undefined": |
|
2718 |
dc.SetPen(MiterPen(wx.NamedColour("orange"))) |
|
2719 |
dc.SetBrush(wx.Brush(wx.NamedColour("orange"))) |
|
2720 |
elif self.Forced: |
|
2721 |
dc.SetPen(MiterPen(wx.BLUE)) |
|
2722 |
dc.SetBrush(wx.BLUE_BRUSH) |
|
2723 |
else: |
|
2724 |
dc.SetPen(MiterPen(wx.BLACK)) |
|
2725 |
dc.SetBrush(wx.BLACK_BRUSH) |
|
2726 |
# Draw the start and end points if they are not connected or the mouse is over them |
|
2727 |
if len(self.Points) > 0 and (not self.StartConnected or self.OverStart): |
|
2728 |
dc.DrawCircle(self.Points[0].x, self.Points[0].y, POINT_RADIUS) |
|
2729 |
if len(self.Points) > 1 and (not self.EndConnected or self.OverEnd): |
|
2730 |
dc.DrawCircle(self.Points[-1].x, self.Points[-1].y, POINT_RADIUS) |
|
2731 |
# Draw the wire lines and the last point (it seems that DrawLines stop before the last point) |
|
2732 |
if len(self.Points) > 1: |
|
2733 |
points = [wx.Point(self.Points[0].x - self.Segments[0][0], self.Points[0].y - self.Segments[0][1])] |
|
2734 |
points.extend([point for point in self.Points[1:-1]]) |
|
2735 |
points.append(wx.Point(self.Points[-1].x + self.Segments[-1][0], self.Points[-1].y + self.Segments[-1][1])) |
|
2736 |
else: |
|
2737 |
points = [] |
|
2738 |
dc.DrawLines(points) |
|
2739 |
# Draw the segment selected in red |
|
2740 |
if not getattr(dc, "printing", False) and self.SelectedSegment is not None: |
|
2741 |
dc.SetPen(MiterPen(wx.BLUE, 3)) |
|
2742 |
if self.SelectedSegment == len(self.Segments) - 1: |
|
2743 |
end = 0 |
|
2744 |
else: |
|
2745 |
end = 1 |
|
2746 |
dc.DrawLine(self.Points[self.SelectedSegment].x - 1, self.Points[self.SelectedSegment].y, |
|
2747 |
self.Points[self.SelectedSegment + 1].x + end, self.Points[self.SelectedSegment + 1].y) |
|
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
2748 |
if self.Value is not None and not isinstance(self.Value, bool) and self.Value != "undefined": |
814 | 2749 |
dc.SetFont(self.Parent.GetMiniFont()) |
2750 |
dc.SetTextForeground(wx.NamedColour("purple")) |
|
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2437
diff
changeset
|
2751 |
if self.ValueSize is None and isinstance(self.ComputedValue, string_types): |
814 | 2752 |
self.ValueSize = self.Parent.GetMiniTextExtent(self.ComputedValue) |
2753 |
if self.ValueSize is not None: |
|
2754 |
width, height = self.ValueSize |
|
2755 |
if self.BoundingBox[2] > width * 4 or self.BoundingBox[3] > height * 4: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2756 |
x = self.Points[0].x + width * (self.StartPoint[1][0] - 1) // 2 |
814 | 2757 |
y = self.Points[0].y + height * (self.StartPoint[1][1] - 1) |
2758 |
dc.DrawText(self.ComputedValue, x, y) |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2759 |
x = self.Points[-1].x + width * (self.EndPoint[1][0] - 1) // 2 |
814 | 2760 |
y = self.Points[-1].y + height * (self.EndPoint[1][1] - 1) |
2761 |
dc.DrawText(self.ComputedValue, x, y) |
|
2762 |
else: |
|
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2763 |
middle = len(self.Segments) // 2 + len(self.Segments) % 2 - 1 |
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2764 |
x = (self.Points[middle].x + self.Points[middle + 1].x - width) // 2 |
814 | 2765 |
if self.BoundingBox[3] > height and self.Segments[middle] in [NORTH, SOUTH]: |
2437
105c20fdeb19
python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2432
diff
changeset
|
2766 |
y = (self.Points[middle].y + self.Points[middle + 1].y - height) // 2 |
814 | 2767 |
else: |
2768 |
y = self.Points[middle].y - height |
|
2769 |
dc.DrawText(self.ComputedValue, x, y) |
|
2770 |
dc.SetFont(self.Parent.GetFont()) |
|
2771 |
dc.SetTextForeground(wx.BLACK) |
|
2772 |
||
2773 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
2774 |
# ------------------------------------------------------------------------------- |
814 | 2775 |
# Graphic comment element |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1777
diff
changeset
|
2776 |
# ------------------------------------------------------------------------------- |
814 | 2777 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
2778 |
|
814 | 2779 |
def FilterHighlightsByRow(highlights, row, length): |
2780 |
_highlights = [] |
|
2781 |
for start, end, highlight_type in highlights: |
|
2782 |
if start[0] <= row and end[0] >= row: |
|
2783 |
if start[0] < row: |
|
2784 |
start = (row, 0) |
|
2785 |
if end[0] > row: |
|
2786 |
end = (row, length) |
|
2787 |
_highlights.append((start, end, highlight_type)) |
|
2788 |
return _highlights |
|
2789 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
2790 |
|
814 | 2791 |
def FilterHighlightsByColumn(highlights, start_col, end_col): |
2792 |
_highlights = [] |
|
2793 |
for start, end, highlight_type in highlights: |
|
2794 |
if end[1] > start_col and start[1] < end_col: |
|
2795 |
start = (start[0], max(start[1], start_col) - start_col) |
|
2796 |
end = (end[0], min(end[1], end_col) - start_col) |
|
2797 |
_highlights.append((start, end, highlight_type)) |
|
2798 |
return _highlights |
|
2799 |
||
2800 |
||
2801 |
class Comment(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
|
2802 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
2803 |
Class that implements a comment |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
2804 |
""" |
814 | 2805 |
|
2806 |
# Create a new comment |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2807 |
def __init__(self, parent, content, id=None): |
814 | 2808 |
Graphic_Element.__init__(self, parent) |
2809 |
self.Id = id |
|
2810 |
self.Content = content |
|
2811 |
self.Pos = wx.Point(0, 0) |
|
2812 |
self.Size = wx.Size(0, 0) |
|
2813 |
self.Highlights = [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2814 |
|
814 | 2815 |
# Make a clone of this comment |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2816 |
def Clone(self, parent, id=None, pos=None): |
814 | 2817 |
comment = Comment(parent, self.Content, id) |
2818 |
if pos is not None: |
|
2819 |
comment.SetPosition(pos.x, pos.y) |
|
2820 |
comment.SetSize(self.Size[0], self.Size[1]) |
|
2821 |
return comment |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2822 |
|
814 | 2823 |
# Method for keeping compatibility with others |
2824 |
def Clean(self): |
|
2825 |
pass |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2826 |
|
814 | 2827 |
# Delete this comment by calling the corresponding method |
2828 |
def Delete(self): |
|
2829 |
self.Parent.DeleteComment(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2830 |
|
814 | 2831 |
# Refresh the comment bounding box |
2832 |
def RefreshBoundingBox(self): |
|
2833 |
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:
1631
diff
changeset
|
2834 |
|
814 | 2835 |
# Changes the comment size |
2836 |
def SetSize(self, width, height): |
|
2837 |
self.Size.SetWidth(width) |
|
2838 |
self.Size.SetHeight(height) |
|
2839 |
self.RefreshBoundingBox() |
|
2840 |
||
2841 |
# Returns the comment size |
|
2842 |
def GetSize(self): |
|
2843 |
return self.Size.GetWidth(), self.Size.GetHeight() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2844 |
|
814 | 2845 |
# Returns the comment minimum size |
2846 |
def GetMinSize(self): |
|
2847 |
dc = wx.ClientDC(self.Parent) |
|
2848 |
min_width = 0 |
|
2849 |
min_height = 0 |
|
2850 |
# The comment minimum size is the maximum size of words in the content |
|
2851 |
for line in self.Content.splitlines(): |
|
2852 |
for word in line.split(" "): |
|
2853 |
wordwidth, wordheight = dc.GetTextExtent(word) |
|
2854 |
min_width = max(min_width, wordwidth) |
|
2855 |
min_height = max(min_height, wordheight) |
|
2856 |
return min_width + 20, min_height + 20 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2857 |
|
814 | 2858 |
# Changes the comment position |
2859 |
def SetPosition(self, x, y): |
|
2860 |
self.Pos.x = x |
|
2861 |
self.Pos.y = y |
|
2862 |
self.RefreshBoundingBox() |
|
2863 |
||
2864 |
# Changes the comment content |
|
2865 |
def SetContent(self, content): |
|
2866 |
self.Content = content |
|
2867 |
min_width, min_height = self.GetMinSize() |
|
2868 |
self.Size[0] = max(self.Size[0], min_width) |
|
2869 |
self.Size[1] = max(self.Size[1], min_height) |
|
2870 |
self.RefreshBoundingBox() |
|
2871 |
||
2872 |
# Returns the comment content |
|
2873 |
def GetContent(self): |
|
2874 |
return self.Content |
|
2875 |
||
2876 |
# Returns the comment position |
|
2877 |
def GetPosition(self): |
|
2878 |
return self.Pos.x, self.Pos.y |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2879 |
|
814 | 2880 |
# Moves the comment |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1743
diff
changeset
|
2881 |
def Move(self, dx, dy, connected=True): |
814 | 2882 |
self.Pos.x += dx |
2883 |
self.Pos.y += dy |
|
2884 |
self.RefreshBoundingBox() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2885 |
|
814 | 2886 |
# Resizes the comment with the position and the size given |
2887 |
def Resize(self, x, y, width, height): |
|
2888 |
self.Move(x, y) |
|
2889 |
self.SetSize(width, height) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2890 |
|
814 | 2891 |
# Method called when a RightUp event have been generated |
2892 |
def OnRightUp(self, event, dc, scaling): |
|
2893 |
# Popup the default menu |
|
2894 |
self.Parent.PopupDefaultMenu() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2895 |
|
814 | 2896 |
# Refreshes the wire state according to move defined and handle selected |
2897 |
def ProcessDragging(self, movex, movey, event, scaling): |
|
2898 |
if self.Parent.GetDrawingMode() != FREEDRAWING_MODE and self.Parent.CurrentLanguage == "LD": |
|
2899 |
movex = movey = 0 |
|
2900 |
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:
1631
diff
changeset
|
2901 |
|
814 | 2902 |
# Refreshes the comment model |
2903 |
def RefreshModel(self, move=True): |
|
2904 |
self.Parent.RefreshCommentModel(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2905 |
|
814 | 2906 |
# Method called when a LeftDClick event have been generated |
2907 |
def OnLeftDClick(self, event, dc, scaling): |
|
2908 |
# Edit the comment content |
|
2909 |
self.Parent.EditCommentContent(self) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2910 |
|
814 | 2911 |
# Adds an highlight to the comment |
2912 |
def AddHighlight(self, infos, start, end, highlight_type): |
|
2913 |
if infos[0] == "content": |
|
2914 |
AddHighlight(self.Highlights, (start, end, highlight_type)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2915 |
|
814 | 2916 |
# Removes an highlight from the comment |
2917 |
def RemoveHighlight(self, infos, start, end, highlight_type): |
|
2918 |
RemoveHighlight(self.Highlights, (start, end, highlight_type)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2919 |
|
814 | 2920 |
# Removes all the highlights of one particular type from the comment |
2921 |
def ClearHighlight(self, highlight_type=None): |
|
2922 |
self.Highlights = ClearHighlights(self.Highlights, highlight_type) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2923 |
|
814 | 2924 |
# Draws the highlightment of this element if it is highlighted |
2925 |
def DrawHighlightment(self, dc): |
|
2926 |
scalex, scaley = dc.GetUserScale() |
|
2927 |
dc.SetUserScale(1, 1) |
|
2928 |
dc.SetPen(MiterPen(HIGHLIGHTCOLOR)) |
|
2929 |
dc.SetBrush(wx.Brush(HIGHLIGHTCOLOR)) |
|
2930 |
dc.SetLogicalFunction(wx.AND) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2931 |
|
814 | 2932 |
left = (self.Pos.x - 1) * scalex - 2 |
2933 |
right = (self.Pos.x + self.Size[0] + 1) * scalex + 2 |
|
2934 |
top = (self.Pos.y - 1) * scaley - 2 |
|
2935 |
bottom = (self.Pos.y + self.Size[1] + 1) * scaley + 2 |
|
2936 |
angle_top = (self.Pos.x + self.Size[0] - 9) * scalex + 2 |
|
2937 |
angle_right = (self.Pos.y + 9) * scaley - 2 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2938 |
|
814 | 2939 |
polygon = [wx.Point(left, top), wx.Point(angle_top, top), |
2940 |
wx.Point(right, angle_right), wx.Point(right, bottom), |
|
2941 |
wx.Point(left, bottom)] |
|
2942 |
dc.DrawPolygon(polygon) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2943 |
|
814 | 2944 |
dc.SetLogicalFunction(wx.COPY) |
2945 |
dc.SetUserScale(scalex, scaley) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2946 |
|
814 | 2947 |
# Draws the comment and its content |
2948 |
def Draw(self, dc): |
|
2949 |
Graphic_Element.Draw(self, dc) |
|
2950 |
dc.SetPen(MiterPen(wx.BLACK)) |
|
2951 |
dc.SetBrush(wx.WHITE_BRUSH) |
|
2952 |
# Draws the comment shape |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1631
diff
changeset
|
2953 |
polygon = [wx.Point(self.Pos.x, self.Pos.y), |
814 | 2954 |
wx.Point(self.Pos.x + self.Size[0] - 10, self.Pos.y), |
2955 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + 10), |
|
2956 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + self.Size[1]), |
|
2957 |
wx.Point(self.Pos.x, self.Pos.y + self.Size[1])] |
|
2958 |
dc.DrawPolygon(polygon) |
|
1631
940e20a8865b
fix issue with printing scheme (FBD, LD or SFC) with comment element on GNU/Linux
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
2959 |
|
940e20a8865b
fix issue with printing scheme (FBD, LD or SFC) with comment element on GNU/Linux
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
2960 |
# dc.SetBrush call is workaround for the issue with wx.PrinterDC |
940e20a8865b
fix issue with printing scheme (FBD, LD or SFC) with comment element on GNU/Linux
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
2961 |
# with wxPython 3.0 on GNU/Linux (don't remove it) |
940e20a8865b
fix issue with printing scheme (FBD, LD or SFC) with comment element on GNU/Linux
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
2962 |
dc.SetBrush(wx.WHITE_BRUSH) |
814 | 2963 |
lines = [wx.Point(self.Pos.x + self.Size[0] - 10, self.Pos.y), |
2964 |
wx.Point(self.Pos.x + self.Size[0] - 10, self.Pos.y + 10), |
|
2965 |
wx.Point(self.Pos.x + self.Size[0], self.Pos.y + 10)] |
|
2966 |
dc.DrawLines(lines) |
|
1631
940e20a8865b
fix issue with printing scheme (FBD, LD or SFC) with comment element on GNU/Linux
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
2967 |
|
814 | 2968 |
# Draws the comment content |
2969 |
y = self.Pos.y + 10 |
|
2970 |
for idx, line in enumerate(self.Content.splitlines()): |
|
2971 |
first = True |
|
2972 |
linetext = "" |
|
2973 |
words = line.split(" ") |
|
2974 |
if not getattr(dc, "printing", False): |
|
2975 |
highlights = FilterHighlightsByRow(self.Highlights, idx, len(line)) |
|
2976 |
highlights_offset = 0 |
|
2977 |
for i, word in enumerate(words): |
|
2978 |
if first: |
|
2979 |
text = word |
|
2980 |
else: |
|
2981 |
text = linetext + " " + word |
|
2982 |
wordwidth, wordheight = dc.GetTextExtent(text) |
|
2983 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
2984 |
break |
|
2985 |
if wordwidth < self.Size[0] - 20: |
|
2986 |
if i < len(words) - 1: |
|
2987 |
linetext = text |
|
2988 |
first = False |
|
2989 |
else: |
|
2990 |
dc.DrawText(text, self.Pos.x + 10, y) |
|
2991 |
if not getattr(dc, "printing", False): |
|
2992 |
DrawHighlightedText(dc, text, FilterHighlightsByColumn(highlights, highlights_offset, highlights_offset + len(text)), self.Pos.x + 10, y) |
|
2993 |
highlights_offset += len(text) + 1 |
|
2994 |
y += wordheight + 5 |
|
2995 |
else: |
|
2996 |
if not first: |
|
2997 |
dc.DrawText(linetext, self.Pos.x + 10, y) |
|
2998 |
if not getattr(dc, "printing", False): |
|
2999 |
DrawHighlightedText(dc, linetext, FilterHighlightsByColumn(highlights, highlights_offset, highlights_offset + len(linetext)), self.Pos.x + 10, y) |
|
3000 |
highlights_offset += len(linetext) + 1 |
|
3001 |
if first or i == len(words) - 1: |
|
3002 |
if not first: |
|
3003 |
y += wordheight + 5 |
|
3004 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
3005 |
break |
|
3006 |
dc.DrawText(word, self.Pos.x + 10, y) |
|
3007 |
if not getattr(dc, "printing", False): |
|
3008 |
DrawHighlightedText(dc, word, FilterHighlightsByColumn(highlights, highlights_offset, highlights_offset + len(word)), self.Pos.x + 10, y) |
|
3009 |
highlights_offset += len(word) + 1 |
|
3010 |
else: |
|
3011 |
linetext = word |
|
3012 |
y += wordheight + 5 |
|
3013 |
if y + wordheight > self.Pos.y + self.Size[1] - 10: |
|
3014 |
break |