summaryrefslogtreecommitdiff
path: root/lib/elements/clone.py
diff options
context:
space:
mode:
authorcapellancitizen <thecapellancitizen@gmail.com>2025-03-09 21:21:48 -0400
committerGitHub <noreply@github.com>2025-03-09 21:21:48 -0400
commit99509df8d8abf1e7b701a4a09cf170a362f6d878 (patch)
treea461549502fa9f37dc287789b6c7db81dfcd5368 /lib/elements/clone.py
parent0d2fc24f25f87562f0755b53dad6204efad1330d (diff)
Mypy type correctness (#3199)
Diffstat (limited to 'lib/elements/clone.py')
-rw-r--r--lib/elements/clone.py65
1 files changed, 35 insertions, 30 deletions
diff --git a/lib/elements/clone.py b/lib/elements/clone.py
index 943428b8..9c3e3e3a 100644
--- a/lib/elements/clone.py
+++ b/lib/elements/clone.py
@@ -5,11 +5,11 @@
from contextlib import contextmanager
from math import degrees
-from typing import Dict, Generator, List
+from typing import Dict, Generator, List, Optional, Tuple, Any, cast
-from inkex import BaseElement, Title, Transform
+from inkex import BaseElement, Title, Transform, Vector2d
from lxml.etree import _Comment
-from shapely import MultiLineString
+from shapely import Geometry, MultiLineString, Point as ShapelyPoint
from ..commands import (find_commands, is_command_symbol,
point_command_symbols_up)
@@ -40,12 +40,12 @@ class Clone(EmbroideryElement):
name = "Clone"
element_name = _("Clone")
- def __init__(self, *args, **kwargs):
- super(Clone, self).__init__(*args, **kwargs)
+ def __init__(self, node: BaseElement) -> None:
+ super(Clone, self).__init__(node)
@property
@param('clone', _("Clone"), type='toggle', inverse=False, default=True)
- def clone(self):
+ def clone(self) -> bool:
return self.get_boolean_param("clone", True)
@property
@@ -55,7 +55,7 @@ class Clone(EmbroideryElement):
unit='deg',
type='float')
@cache
- def clone_fill_angle(self):
+ def clone_fill_angle(self) -> float:
return self.get_float_param('angle')
@property
@@ -66,15 +66,15 @@ class Clone(EmbroideryElement):
type='boolean',
default=False)
@cache
- def flip_angle(self):
+ def flip_angle(self) -> bool:
return self.get_boolean_param('flip_angle', False)
- def get_cache_key_data(self, previous_stitch, next_element):
+ def get_cache_key_data(self, previous_stitch: Any, next_element: EmbroideryElement) -> List[str]:
source_node = self.node.href
source_elements = self.clone_to_elements(source_node)
return [element.get_cache_key(previous_stitch, next_element) for element in source_elements]
- def clone_to_elements(self, node) -> List[EmbroideryElement]:
+ def clone_to_elements(self, node: BaseElement) -> List[EmbroideryElement]:
# Only used in get_cache_key_data, actual embroidery uses nodes_to_elements+iterate_nodes
from .utils import node_to_elements
elements = []
@@ -85,7 +85,7 @@ class Clone(EmbroideryElement):
elements.extend(node_to_elements(child, True))
return elements
- def to_stitch_groups(self, last_stitch_group=None, next_element=None) -> List[StitchGroup]:
+ def to_stitch_groups(self, last_stitch_group: Optional[StitchGroup], next_element: Optional[EmbroideryElement] = None) -> List[StitchGroup]:
if not self.clone:
return []
@@ -96,7 +96,7 @@ class Clone(EmbroideryElement):
next_elements = [next_element]
if len(elements) > 1:
- next_elements = elements[1:] + next_elements
+ next_elements = cast(List[Optional[EmbroideryElement]], elements[1:]) + next_elements
for element, next_element in zip(elements, next_elements):
# Using `embroider` here to get trim/stop after commands, etc.
element_stitch_groups = element.embroider(last_stitch_group, next_element)
@@ -107,26 +107,26 @@ class Clone(EmbroideryElement):
return stitch_groups
@property
- def first_stitch(self):
+ def first_stitch(self) -> Optional[ShapelyPoint]:
first, last = self.first_and_last_element()
if first:
return first.first_stitch
return None
- def uses_previous_stitch(self):
+ def uses_previous_stitch(self) -> bool:
first, last = self.first_and_last_element()
if first:
return first.uses_previous_stitch()
- return None
+ return False
- def uses_next_element(self):
+ def uses_next_element(self) -> bool:
first, last = self.first_and_last_element()
if last:
return last.uses_next_element()
- return None
+ return False
@cache
- def first_and_last_element(self):
+ def first_and_last_element(self) -> Tuple[Optional[EmbroideryElement], Optional[EmbroideryElement]]:
with self.clone_elements() as elements:
if len(elements):
return elements[0], elements[-1]
@@ -153,7 +153,7 @@ class Clone(EmbroideryElement):
for cloned_node in cloned_nodes:
cloned_node.delete()
- def resolve_clone(self, recursive=True) -> List[BaseElement]:
+ def resolve_clone(self, recursive: bool = True) -> List[BaseElement]:
"""
"Resolve" this clone element by copying the node it hrefs as if unlinking the clone in Inkscape.
The node will be added as a sibling of this element's node, with its transform and style applied.
@@ -162,9 +162,12 @@ class Clone(EmbroideryElement):
:param recursive: Recursively "resolve" all child clones in the same manner
:returns: A list where the first element is the "resolved" node, and zero or more commands attached to that node
"""
- parent: BaseElement = self.node.getparent()
- source_node: BaseElement = self.node.href
- source_parent: BaseElement = source_node.getparent()
+ parent: Optional[BaseElement] = self.node.getparent()
+ assert parent is not None, f"Element {self.node.get_id()} should have a parent"
+ source_node: Optional[BaseElement] = self.node.href
+ assert source_node is not None, f"Target of {self.node.get_id()} was None!"
+ source_parent: Optional[BaseElement] = source_node.getparent()
+ assert source_parent is not None, f"Target {source_node.get_id()} of {self.node.get_id()} should have a parent"
cloned_node = clone_with_fixup(parent, source_node)
if recursive:
@@ -201,7 +204,7 @@ class Clone(EmbroideryElement):
if cloned_node.tag == SVG_SYMBOL_TAG:
source_transform: Transform = parent.composed_transform()
else:
- source_transform: Transform = source_parent.composed_transform()
+ source_transform = source_parent.composed_transform()
clone_transform: Transform = self.node.composed_transform()
angle_transform = clone_transform @ -source_transform
self.apply_angles(cloned_node, angle_transform)
@@ -242,7 +245,7 @@ class Clone(EmbroideryElement):
# We have to negate the angle because SVG/Inkscape's definition of rotation is clockwise, while Inkstitch uses counter-clockwise
fill_vector = (angle_transform @ Transform(f"rotate(${-element_angle})")).apply_to_point((1, 0))
# Same reason for negation here.
- element_angle = -degrees(fill_vector.angle)
+ element_angle = -degrees(fill_vector.angle or 0) # Fallback to 0 if an insane transform is used.
else: # If clone_fill_angle is specified, override the angle instead.
element_angle = self.clone_fill_angle
@@ -252,26 +255,28 @@ class Clone(EmbroideryElement):
node.set(INKSTITCH_ATTRIBS['angle'], round(element_angle, 6))
@property
- def shape(self):
+ def shape(self) -> Geometry:
path = self.node.get_path()
transform = Transform(self.node.composed_transform())
path = path.transform(transform)
path = path.to_superpath()
return MultiLineString(path[0])
- def center(self, source_node):
+ def center(self, source_node: BaseElement) -> Vector2d:
translate = Transform(f"translate({float(self.node.get('x', '0'))}, {float(self.node.get('y', '0'))})")
- transform = get_node_transform(self.node.getparent()) @ translate
+ parent = self.node.getparent()
+ assert parent is not None, "This should be part of a tree and therefore have a parent"
+ transform = get_node_transform(parent) @ translate
center = self.node.bounding_box(transform).center
return center
- def validation_warnings(self):
+ def validation_warnings(self) -> Generator[CloneWarning, Any, None]:
source_node = self.node.href
point = self.center(source_node)
yield CloneWarning(point)
-def is_clone(node):
+def is_clone(node: BaseElement) -> bool:
if node.tag == SVG_USE_TAG and node.href is not None and not is_command_symbol(node):
return True
return False
@@ -299,7 +304,7 @@ def clone_with_fixup(parent: BaseElement, node: BaseElement) -> BaseElement:
ret = clone_children(parent, node)
- def fixup_id_attr(node: BaseElement, attr: str):
+ def fixup_id_attr(node: BaseElement, attr: str) -> None:
# Replace the id value for this attrib with the corresponding one in the clone subtree, if applicable.
val = node.get(attr)
if val is not None: