ergonomics
This commit is contained in:
parent
d8e789f179
commit
abc721cf67
@ -32,9 +32,14 @@ from .error import MasqueError, PatternError, LibraryError, BuildError
|
|||||||
from .shapes import Shape, Polygon, Path, Circle, Arc, Ellipse
|
from .shapes import Shape, Polygon, Path, Circle, Arc, Ellipse
|
||||||
from .label import Label
|
from .label import Label
|
||||||
from .ref import Ref
|
from .ref import Ref
|
||||||
from .pattern import Pattern
|
from .pattern import Pattern, NamedPattern
|
||||||
|
|
||||||
from .library import Library, MutableLibrary, WrapROLibrary, WrapLibrary, LazyLibrary, AbstractView
|
from .library import (
|
||||||
|
Library, MutableLibrary,
|
||||||
|
WrapROLibrary, WrapLibrary, LazyLibrary,
|
||||||
|
AbstractView,
|
||||||
|
Tree,
|
||||||
|
)
|
||||||
from .ports import Port, PortList
|
from .ports import Port, PortList
|
||||||
from .abstract import Abstract
|
from .abstract import Abstract
|
||||||
from .builder import Builder, Tool, FlatBuilder
|
from .builder import Builder, Tool, FlatBuilder
|
||||||
|
@ -445,6 +445,7 @@ class MutableLibrary(Library, MutableMapping[str, 'Pattern'], metaclass=ABCMeta)
|
|||||||
Args:
|
Args:
|
||||||
old_name: Current name for the pattern
|
old_name: Current name for the pattern
|
||||||
new_name: New name for the pattern
|
new_name: New name for the pattern
|
||||||
|
#TODO move_Reference
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
self
|
self
|
||||||
@ -557,27 +558,34 @@ class MutableLibrary(Library, MutableMapping[str, 'Pattern'], metaclass=ABCMeta)
|
|||||||
return self
|
return self
|
||||||
|
|
||||||
def add_tree(
|
def add_tree(
|
||||||
self: ML,
|
self,
|
||||||
name: str,
|
|
||||||
tree: 'Tree',
|
tree: 'Tree',
|
||||||
|
name: Optional[str] = None,
|
||||||
rename_theirs: Callable[['Library', str], str] = _rename_patterns,
|
rename_theirs: Callable[['Library', str], str] = _rename_patterns,
|
||||||
) -> ML:
|
) -> str:
|
||||||
"""
|
"""
|
||||||
Add a `Tree` object into the current library.
|
Add a `Tree` object into the current library.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
name: New name for the top-level pattern.
|
|
||||||
tree: The `Tree` object (a `Library` with a specified `top` Pattern)
|
tree: The `Tree` object (a `Library` with a specified `top` Pattern)
|
||||||
which will be added into the current library.
|
which will be added into the current library.
|
||||||
|
name: New name for the top-level pattern. If not given, `tree.top` is used.
|
||||||
rename_theirs: Called as rename_theirs(self, name) for each duplicate name
|
rename_theirs: Called as rename_theirs(self, name) for each duplicate name
|
||||||
encountered in `other`. Should return the new name for the pattern in
|
encountered in `other`. Should return the new name for the pattern in
|
||||||
`other`.
|
`other`.
|
||||||
Default is effectively
|
Default is effectively
|
||||||
`name.split('$')[0] if name.startswith('_') else name`
|
`name.split('$')[0] if name.startswith('_') else name`
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
The new name for the top-level pattern (either `name` or `tree.top`).
|
||||||
"""
|
"""
|
||||||
|
if name is None:
|
||||||
|
name = tree.top
|
||||||
|
else:
|
||||||
tree.library.rename(tree.top, name, move_references=True)
|
tree.library.rename(tree.top, name, move_references=True)
|
||||||
|
|
||||||
self.add(tree.library, rename_theirs=rename_theirs)
|
self.add(tree.library, rename_theirs=rename_theirs)
|
||||||
return self
|
return name
|
||||||
|
|
||||||
def dedup(
|
def dedup(
|
||||||
self: ML,
|
self: ML,
|
||||||
@ -987,9 +995,20 @@ class Tree(MutableLibrary):
|
|||||||
def pattern(self) -> Pattern:
|
def pattern(self) -> Pattern:
|
||||||
return self.library[self.top]
|
return self.library[self.top]
|
||||||
|
|
||||||
def __init__(self, top: Union[str, NamedPattern], library: MutableLibrary) -> None:
|
def __init__(
|
||||||
|
self,
|
||||||
|
top: Union[str, NamedPattern],
|
||||||
|
library: Optional[MutableLibrary] = None
|
||||||
|
) -> None:
|
||||||
self.top = top if isinstance(top, str) else top.name
|
self.top = top if isinstance(top, str) else top.name
|
||||||
self.library = library
|
self.library = library if library is not None else WrapLibrary()
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def mk(cls, top: str) -> Tuple['Tree', 'Pattern']:
|
||||||
|
tree = cls(top=top)
|
||||||
|
pat = Pattern()
|
||||||
|
tree[top] = pat
|
||||||
|
return tree, pat
|
||||||
|
|
||||||
def __getitem__(self, key: str) -> 'Pattern':
|
def __getitem__(self, key: str) -> 'Pattern':
|
||||||
return self.library[key]
|
return self.library[key]
|
||||||
@ -1006,6 +1025,9 @@ class Tree(MutableLibrary):
|
|||||||
def __delitem__(self, key: str) -> None:
|
def __delitem__(self, key: str) -> None:
|
||||||
del self.library[key]
|
del self.library[key]
|
||||||
|
|
||||||
|
def __iadd__(self, other: 'Tree') -> None:
|
||||||
|
self.add_tree(other)
|
||||||
|
|
||||||
|
|
||||||
def _rename_patterns(lib: Library, name: str) -> str:
|
def _rename_patterns(lib: Library, name: str) -> str:
|
||||||
# TODO document rename function
|
# TODO document rename function
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"""
|
"""
|
||||||
#TODO more top-level documentation
|
#TODO more top-level documentation
|
||||||
|
|
||||||
from typing import Dict, Optional, Sequence, Mapping, TYPE_CHECKING, Any, TypeVar
|
from typing import Dict, Optional, Sequence, Mapping, Union, TYPE_CHECKING, Any, TypeVar, cast
|
||||||
import copy
|
import copy
|
||||||
|
|
||||||
import numpy
|
import numpy
|
||||||
@ -21,7 +21,7 @@ from .traits import (
|
|||||||
|
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from . import Pattern
|
from . import Pattern, NamedPattern
|
||||||
|
|
||||||
|
|
||||||
R = TypeVar('R', bound='Ref')
|
R = TypeVar('R', bound='Ref')
|
||||||
@ -49,7 +49,7 @@ class Ref(
|
|||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
target: Optional[str],
|
target: Union[None, str, NamedPattern],
|
||||||
*,
|
*,
|
||||||
offset: ArrayLike = (0.0, 0.0),
|
offset: ArrayLike = (0.0, 0.0),
|
||||||
rotation: float = 0.0,
|
rotation: float = 0.0,
|
||||||
@ -67,6 +67,8 @@ class Ref(
|
|||||||
scale: Scaling factor applied to the pattern's geometry.
|
scale: Scaling factor applied to the pattern's geometry.
|
||||||
repetition: `Repetition` object, default `None`
|
repetition: `Repetition` object, default `None`
|
||||||
"""
|
"""
|
||||||
|
if hasattr(target, 'name'):
|
||||||
|
target = cast('NamedPattern', target).name
|
||||||
self.target = target
|
self.target = target
|
||||||
self.offset = offset
|
self.offset = offset
|
||||||
self.rotation = rotation
|
self.rotation = rotation
|
||||||
|
Loading…
Reference in New Issue
Block a user