Try to follow FT coding style

This commit is contained in:
Rod Sheeter 2019-02-12 11:53:27 -08:00
parent 199aa9e24b
commit 416da67fdd
3 changed files with 96 additions and 96 deletions

View File

@ -54,7 +54,7 @@ class SVGPath(object):
pb = PathBuilder()
# xpath | doesn't seem to reliable work so just walk it
for el in self.root.iter():
pb.AddPathFromElement(el)
pb.add_path_from_element(el)
for path in pb.pathes:
parse_path(path, pen)

View File

@ -1,120 +1,120 @@
def _PreferNonZero(*args):
for arg in args:
if arg != 0:
return arg
return 0.
def _prefer_non_zero(*args):
for arg in args:
if arg != 0:
return arg
return 0.
def _ntos(n):
# %f likes to add unnecessary 0's, %g isn't consistent about # decimals
return ('%.3f' % n).rstrip('0').rstrip('.')
return ('%.3f' % n).rstrip('0').rstrip('.')
class PathBuilder(object):
def __init__(self):
self.pathes = []
def __init__(self):
self.pathes = []
def StartPath(self, initial_path=''):
self.pathes.append(initial_path)
def _start_path(self, initial_path=''):
self.pathes.append(initial_path)
def EndPath(self):
self._Add('z')
def _end_path(self):
self._add('z')
def _Add(self, path_snippet):
path = self.pathes[-1]
if path:
path += ' ' + path_snippet
else:
path = path_snippet
self.pathes[-1] = path
def _add(self, path_snippet):
path = self.pathes[-1]
if path:
path += ' ' + path_snippet
else:
path = path_snippet
self.pathes[-1] = path
def _move(self, c, x, y):
self._Add('%s%s,%s' % (c, _ntos(x), _ntos(y)))
def _move(self, c, x, y):
self._add('%s%s,%s' % (c, _ntos(x), _ntos(y)))
def M(self, x, y):
self._move('M', x, y)
def M(self, x, y):
self._move('M', x, y)
def m(self, x, y):
self._move('m', x, y)
def m(self, x, y):
self._move('m', x, y)
def _arc(self, c, rx, ry, x, y, large_arc):
self._Add('%s%s,%s 0 %d 1 %s,%s' % (c, _ntos(rx), _ntos(ry), large_arc,
_ntos(x), _ntos(y)))
def _arc(self, c, rx, ry, x, y, large_arc):
self._add('%s%s,%s 0 %d 1 %s,%s' % (c, _ntos(rx), _ntos(ry), large_arc,
_ntos(x), _ntos(y)))
def A(self, rx, ry, x, y, large_arc = 0):
self._arc('A', rx, ry, x, y, large_arc)
def A(self, rx, ry, x, y, large_arc = 0):
self._arc('A', rx, ry, x, y, large_arc)
def a(self, rx, ry, x, y, large_arc = 0):
self._arc('a', rx, ry, x, y, large_arc)
def a(self, rx, ry, x, y, large_arc = 0):
self._arc('a', rx, ry, x, y, large_arc)
def _vhline(self, c, x):
self._Add('%s%s' % (c, _ntos(x)))
def _vhline(self, c, x):
self._add('%s%s' % (c, _ntos(x)))
def H(self, x):
self._vhline('H', x)
def H(self, x):
self._vhline('H', x)
def h(self, x):
self._vhline('h', x)
def h(self, x):
self._vhline('h', x)
def V(self, y):
self._vhline('V', y)
def V(self, y):
self._vhline('V', y)
def v(self, x):
self._vhline('v', y)
def v(self, x):
self._vhline('v', y)
def _ParseRect(self, rect):
x = float(rect.attrib.get('x', 0))
y = float(rect.attrib.get('y', 0))
w = float(rect.attrib.get('width'))
h = float(rect.attrib.get('height'))
rx = float(rect.attrib.get('rx', 0))
ry = float(rect.attrib.get('ry', 0))
def _parse_rect(self, rect):
x = float(rect.attrib.get('x', 0))
y = float(rect.attrib.get('y', 0))
w = float(rect.attrib.get('width'))
h = float(rect.attrib.get('height'))
rx = float(rect.attrib.get('rx', 0))
ry = float(rect.attrib.get('ry', 0))
rx = _PreferNonZero(rx, ry)
ry = _PreferNonZero(ry, rx)
# TODO there are more rules for adjusting rx, ry
rx = _prefer_non_zero(rx, ry)
ry = _prefer_non_zero(ry, rx)
# TODO there are more rules for adjusting rx, ry
self.StartPath()
self.M(x + rx, y)
self.H(x + w -rx)
if rx > 0:
self.A(rx, ry, x + w, y + ry)
self.V(y + h -ry)
if rx > 0:
self.A(rx, ry, x + w - rx, y + h)
self.H(x + rx)
if rx > 0:
self.A(rx, ry, x, y + h - ry)
self.V(y + ry)
if rx > 0:
self.A(rx, ry, x + rx, y)
self.EndPath()
self._start_path()
self.M(x + rx, y)
self.H(x + w -rx)
if rx > 0:
self.A(rx, ry, x + w, y + ry)
self.V(y + h -ry)
if rx > 0:
self.A(rx, ry, x + w - rx, y + h)
self.H(x + rx)
if rx > 0:
self.A(rx, ry, x, y + h - ry)
self.V(y + ry)
if rx > 0:
self.A(rx, ry, x + rx, y)
self._end_path()
def _ParsePath(self, path):
if 'd' in path.attrib:
self.StartPath(initial_path=path.attrib['d'])
def _parse_path(self, path):
if 'd' in path.attrib:
self._start_path(initial_path=path.attrib['d'])
def _ParsePolygon(self, poly):
if 'points' in poly.attrib:
self.StartPath('M' + poly.attrib['points'])
self.EndPath()
def _parse_polygon(self, poly):
if 'points' in poly.attrib:
self._start_path('M' + poly.attrib['points'])
self._end_path()
def _ParseCircle(self, circle):
cx = float(circle.attrib.get('cx', 0))
cy = float(circle.attrib.get('cy', 0))
r = float(circle.attrib.get('r'))
def _parse_circle(self, circle):
cx = float(circle.attrib.get('cx', 0))
cy = float(circle.attrib.get('cy', 0))
r = float(circle.attrib.get('r'))
# arc doesn't seem to like being a complete shape, draw two halves
self.StartPath()
self.M(cx - r, cy)
self.A(r, r, cx + r, cy, large_arc=1)
self.A(r, r, cx - r, cy, large_arc=1)
# arc doesn't seem to like being a complete shape, draw two halves
self._start_path()
self.M(cx - r, cy)
self.A(r, r, cx + r, cy, large_arc=1)
self.A(r, r, cx - r, cy, large_arc=1)
def AddPathFromElement(self, el):
tag = el.tag
if '}' in el.tag:
tag = el.tag.split('}', 1)[1] # from https://bugs.python.org/issue18304
parse_fn = getattr(self, '_Parse%s' % tag.lower().capitalize(), None)
if not callable(parse_fn):
return False
parse_fn(el)
return True
def add_path_from_element(self, el):
tag = el.tag
if '}' in el.tag:
tag = el.tag.split('}', 1)[1] # from https://bugs.python.org/issue18304
parse_fn = getattr(self, '_parse_%s' % tag.lower(), None)
if not callable(parse_fn):
return False
parse_fn(el)
return True

View File

@ -60,9 +60,9 @@ import pytest
)
def test_el_to_path(svg_xml, expected_path):
pb = shapes.PathBuilder()
pb.AddPathFromElement(etree.fromstring(svg_xml))
pb.add_path_from_element(etree.fromstring(svg_xml))
if expected_path:
expected = [expected_path]
expected = [expected_path]
else:
expected = []
expected = []
assert pb.pathes == expected