2021-12-24 13:06:55 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
|
|
from os import X_OK, PathLike
|
|
|
|
import os
|
|
|
|
from typing import Optional, Union
|
|
|
|
import shelve
|
|
|
|
from pydub import AudioSegment
|
|
|
|
import svgwrite
|
2022-01-19 09:28:51 +00:00
|
|
|
import tempfile
|
|
|
|
import io
|
2022-02-03 16:39:59 +00:00
|
|
|
import logging
|
2021-12-24 13:06:55 +00:00
|
|
|
|
2022-02-03 16:39:59 +00:00
|
|
|
logger = logging.getLogger('svganim.strokes')
|
2021-12-24 13:06:55 +00:00
|
|
|
|
2022-03-15 12:41:12 +00:00
|
|
|
|
2021-12-24 13:06:55 +00:00
|
|
|
class Annotation:
|
|
|
|
def __init__(self, tag: str, drawing: Drawing, t_in: float, t_out: float) -> None:
|
|
|
|
self.tag = tag
|
|
|
|
self.t_in = t_in
|
|
|
|
self.t_out = t_out
|
|
|
|
self.drawing = drawing
|
2022-03-15 12:41:12 +00:00
|
|
|
|
2022-01-19 09:28:51 +00:00
|
|
|
@property
|
|
|
|
def id(self) -> str:
|
|
|
|
return f'{self.drawing.id}:{self.tag}:{self.t_in}:{self.t_out}'
|
|
|
|
|
2021-12-24 13:06:55 +00:00
|
|
|
def getAnimationSlice(self) -> AnimationSlice:
|
|
|
|
return self.drawing.get_animation().getSlice(self.t_in, self.t_out)
|
2022-03-15 12:41:12 +00:00
|
|
|
|
2022-01-19 09:28:51 +00:00
|
|
|
def get_as_svg(self) -> str:
|
|
|
|
return self.getAnimationSlice().get_as_svg()
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
Filename = Union[str, bytes, PathLike[str], PathLike[bytes]]
|
|
|
|
|
|
|
|
|
|
|
|
class Drawing:
|
2022-01-19 09:28:51 +00:00
|
|
|
def __init__(self, filename: Filename, metadata_dir: Filename, basedir: Filename) -> None:
|
2021-12-24 13:06:55 +00:00
|
|
|
self.eventfile = filename
|
|
|
|
self.id = os.path.splitext(os.path.basename(self.eventfile))[0]
|
|
|
|
self.metadata_fn = os.path.join(metadata_dir, f"{self.id}.json")
|
2022-01-19 09:28:51 +00:00
|
|
|
self.basedir = basedir
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
def get_url(self) -> str:
|
|
|
|
return f"/files/{self.id}"
|
|
|
|
|
|
|
|
def get_annotations_url(self) -> str:
|
|
|
|
return f"/annotations/{self.id}"
|
|
|
|
|
|
|
|
def get_canvas_metadata(self) -> list:
|
2022-02-03 16:39:59 +00:00
|
|
|
logger.info(f'metadata for {self.id}')
|
2021-12-24 13:06:55 +00:00
|
|
|
with open(self.eventfile, "r") as fp:
|
|
|
|
first_line = fp.readline().strip()
|
|
|
|
|
|
|
|
if first_line.endswith(","):
|
|
|
|
first_line = first_line[:-1]
|
|
|
|
data = json.loads(first_line)
|
|
|
|
return {
|
|
|
|
"date": data[0],
|
|
|
|
"dimensions": {
|
|
|
|
"width": data[1],
|
|
|
|
"height": data[2],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-01-19 09:28:51 +00:00
|
|
|
def get_audio(self) -> Optional[AudioSlice]:
|
|
|
|
md = self.get_metadata()
|
|
|
|
if 'audio' not in md:
|
|
|
|
return None
|
|
|
|
if 'file' not in md['audio']:
|
|
|
|
return None
|
2022-03-15 12:41:12 +00:00
|
|
|
|
|
|
|
return AudioSlice(filename=os.path.join(self.basedir, md['audio']['file'][1:]), offset=md['audio']['offset']*1000)
|
2022-01-19 09:28:51 +00:00
|
|
|
|
2021-12-24 13:06:55 +00:00
|
|
|
def get_animation(self) -> AnimationSlice:
|
|
|
|
# with open(self.eventfile, "r") as fp:
|
|
|
|
strokes = []
|
|
|
|
with open(self.eventfile, "r") as fp:
|
|
|
|
events = json.loads("[" + fp.read() + "]")
|
|
|
|
for i, event in enumerate(events):
|
|
|
|
if i == 0:
|
|
|
|
# metadata on first line
|
|
|
|
pass
|
|
|
|
else:
|
2022-02-03 16:39:59 +00:00
|
|
|
if type(event) is list:
|
|
|
|
# ignore double metadatas, which appear when continuaing an existing drawing
|
|
|
|
continue
|
|
|
|
|
2021-12-24 13:06:55 +00:00
|
|
|
if event["event"] == "viewbox":
|
|
|
|
pass
|
|
|
|
if event["event"] == "stroke":
|
|
|
|
# points = []
|
|
|
|
# for i in range(int(len(stroke) / 4)):
|
|
|
|
# p = stroke[i*4:i*4+4]
|
|
|
|
# points.append([float(p[0]), float(p[1]), int(p[2]), float(p[3])])
|
|
|
|
strokes.append(
|
|
|
|
Stroke(
|
|
|
|
event["color"],
|
2022-03-15 12:41:12 +00:00
|
|
|
[Point.fromTuple(tuple(p))
|
|
|
|
for p in event["points"]],
|
2021-12-24 13:06:55 +00:00
|
|
|
)
|
|
|
|
)
|
2022-03-15 12:41:12 +00:00
|
|
|
return AnimationSlice(strokes, audioslice=self.get_audio())
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
def get_metadata(self):
|
|
|
|
canvas = self.get_canvas_metadata()
|
|
|
|
if os.path.exists(self.metadata_fn):
|
|
|
|
with open(self.metadata_fn, "r") as fp:
|
|
|
|
metadata = json.load(fp)
|
|
|
|
else:
|
|
|
|
metadata = {}
|
|
|
|
metadata["canvas"] = canvas
|
|
|
|
return metadata
|
|
|
|
|
|
|
|
def get_absolute_viewbox(self) -> Viewbox:
|
|
|
|
return self.get_animation().get_bounding_box()
|
|
|
|
|
|
|
|
|
|
|
|
class Viewbox:
|
|
|
|
def __init__(self, x: float, y: float, width: float, height: float):
|
|
|
|
self.x = x
|
|
|
|
self.y = y
|
|
|
|
self.width = width
|
|
|
|
self.height = height
|
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
return f"{self.x} {self.y} {self.width} {self.height}"
|
|
|
|
|
|
|
|
|
|
|
|
FrameIndex = tuple[int, int]
|
|
|
|
|
|
|
|
|
|
|
|
class AnimationSlice:
|
|
|
|
# either a whole drawing or the result of applying an annotation to a drawing (an excerpt)
|
|
|
|
# TODO rename to AnimationSlice to include audio as well
|
|
|
|
def __init__(
|
2022-01-19 09:28:51 +00:00
|
|
|
self, strokes: list[Stroke], t_in: float = 0, t_out: float = None, audioslice: AudioSlice = None
|
2021-12-24 13:06:55 +00:00
|
|
|
) -> None:
|
|
|
|
self.strokes = strokes
|
|
|
|
self.t_in = t_in
|
|
|
|
self.t_out = t_out
|
2022-01-19 09:28:51 +00:00
|
|
|
self.audio = audioslice
|
2021-12-24 13:06:55 +00:00
|
|
|
# TODO: Audio
|
|
|
|
|
|
|
|
def get_bounding_box(self) -> Viewbox:
|
|
|
|
min_x, max_x = float("inf"), float("-inf")
|
|
|
|
min_y, max_y = float("inf"), float("-inf")
|
|
|
|
|
|
|
|
for s in self.strokes:
|
|
|
|
for p in s.points:
|
|
|
|
if p.x < min_x:
|
|
|
|
min_x = p.x
|
|
|
|
if p.x > max_x:
|
|
|
|
max_x = p.x
|
|
|
|
if p.y < min_y:
|
|
|
|
min_y = p.y
|
|
|
|
if p.y > max_y:
|
|
|
|
max_y = p.y
|
|
|
|
return Viewbox(min_x, min_y, max_x - min_x, max_y - min_y)
|
|
|
|
|
|
|
|
def getSlice(self, t_in: float, t_out: float) -> AnimationSlice:
|
2022-03-15 12:41:12 +00:00
|
|
|
frame_in = self.getIndexForInPoint(t_in)
|
|
|
|
frame_out = self.getIndexForOutPoint(t_out)
|
2021-12-24 13:06:55 +00:00
|
|
|
strokes = self.getStrokeSlices(frame_in, frame_out)
|
2022-01-19 09:28:51 +00:00
|
|
|
audio = self.audio.getSlice(t_in, t_out) if self.audio else None
|
|
|
|
return AnimationSlice(strokes, t_in, t_out, audio)
|
|
|
|
|
|
|
|
def get_as_svg_dwg(self) -> svgwrite.Drawing:
|
|
|
|
box = self.get_bounding_box()
|
|
|
|
(_, fn) = tempfile.mkstemp(suffix='.svg', text=True)
|
|
|
|
dwg = svgwrite.Drawing(fn, size=(box.width, box.height))
|
|
|
|
dwg.viewbox(box.x, box.y, box.width, box.height)
|
|
|
|
self.add_to_dwg(dwg)
|
2022-03-29 13:07:18 +00:00
|
|
|
dwg.defs.add(dwg.style("path{stroke-width:1mm;stroke-linecap: round;}"))
|
2022-01-19 09:28:51 +00:00
|
|
|
return dwg
|
|
|
|
|
|
|
|
def get_as_svg(self) -> str:
|
|
|
|
dwg = self.get_as_svg_dwg()
|
|
|
|
fp = io.StringIO()
|
|
|
|
dwg.write(fp, pretty=True)
|
|
|
|
return fp.getvalue()
|
2022-03-15 12:41:12 +00:00
|
|
|
|
2021-12-24 13:06:55 +00:00
|
|
|
def add_to_dwg(self, dwg: SvgDrawing):
|
|
|
|
group = svgwrite.container.Group()
|
|
|
|
for stroke in self.strokes:
|
|
|
|
stroke.add_to_dwg(group)
|
2022-01-19 09:28:51 +00:00
|
|
|
dwg.add(group)
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
def getStrokeSlices(
|
|
|
|
self, index_in: FrameIndex, index_out: FrameIndex
|
|
|
|
) -> list[Stroke]:
|
|
|
|
"""Get list of Stroke/StrokeSlice based in in and out indexes
|
|
|
|
Based on annotation.js getStrokesSliceForPathRange(in_point, out_point)
|
|
|
|
"""
|
|
|
|
slices = []
|
|
|
|
for i in range(index_in[0], index_out[0] + 1):
|
|
|
|
try:
|
|
|
|
stroke = self.strokes[i]
|
|
|
|
except IndexError:
|
|
|
|
# out point can be Infinity. So interrupt whenever the end is reached
|
|
|
|
break
|
|
|
|
|
|
|
|
in_i = index_in[1] if index_in[0] == i else 0
|
2022-03-15 12:41:12 +00:00
|
|
|
out_i = index_out[1] if index_out[0] == i else len(
|
|
|
|
stroke.points) - 1
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
slices.append(StrokeSlice(stroke, in_i, out_i))
|
|
|
|
return slices
|
|
|
|
|
2022-03-15 12:41:12 +00:00
|
|
|
def getIndexForInPoint(self, ms) -> FrameIndex:
|
|
|
|
"""Get the frame index (path, point) based on the given time
|
|
|
|
The In point version (so the first index after ms)
|
|
|
|
Equal to annotations.js findPositionForTime(ms)
|
|
|
|
"""
|
|
|
|
path_i = 0
|
|
|
|
point_i = 0
|
|
|
|
for i, stroke in enumerate(self.strokes):
|
|
|
|
start_at = stroke.points[0].t
|
|
|
|
end_at = stroke.points[-1].t
|
|
|
|
if end_at < ms:
|
|
|
|
# certainly not the right point yet
|
|
|
|
continue
|
|
|
|
if start_at > ms:
|
|
|
|
path_i = i
|
|
|
|
point_i = 0
|
|
|
|
break # too far, so this is the first point after in point
|
|
|
|
else:
|
|
|
|
# our in-point is inbetween first and last of the stroke
|
|
|
|
# we are getting close, find the right point_i
|
|
|
|
path_i = i
|
|
|
|
for pi, point in enumerate(stroke.points):
|
|
|
|
point_i = pi
|
|
|
|
if point.t > ms:
|
|
|
|
break # stop when finding the next point after in point
|
|
|
|
break # done :-)
|
|
|
|
return (path_i, point_i)
|
|
|
|
|
|
|
|
def getIndexForOutPoint(self, ms) -> FrameIndex:
|
|
|
|
"""Get the frame index (path, point) based on the given time
|
|
|
|
The Out point version (so the last index before ms)
|
|
|
|
Equal to annotations.js findPositionForTime(ms)
|
|
|
|
"""
|
|
|
|
return self.getIndexForTime( ms)
|
|
|
|
|
2021-12-24 13:06:55 +00:00
|
|
|
def getIndexForTime(self, ms) -> FrameIndex:
|
|
|
|
"""Get the frame index (path, point) based on the given time
|
|
|
|
Equal to annotations.js findPositionForTime(ms)
|
|
|
|
"""
|
|
|
|
path_i = 0
|
|
|
|
point_i = 0
|
|
|
|
for i, stroke in enumerate(self.strokes):
|
|
|
|
start_at = stroke.points[0].t
|
|
|
|
end_at = stroke.points[-1].t
|
|
|
|
|
|
|
|
if start_at > ms:
|
|
|
|
break # too far
|
|
|
|
if end_at > ms:
|
|
|
|
# we are getting close, find the right point_i
|
|
|
|
path_i = i
|
|
|
|
for pi, point in enumerate(stroke.points):
|
2022-03-15 12:41:12 +00:00
|
|
|
if point.t > ms:
|
2021-12-24 13:06:55 +00:00
|
|
|
break # too far
|
|
|
|
point_i = pi
|
|
|
|
break # done :-)
|
|
|
|
else:
|
|
|
|
# in case this is our last path, stroe this as
|
|
|
|
# best option thus far
|
|
|
|
path_i = i
|
|
|
|
point_i = len(stroke.points) - 1
|
|
|
|
return (path_i, point_i)
|
|
|
|
|
|
|
|
|
|
|
|
class AudioSlice:
|
2022-03-15 12:41:12 +00:00
|
|
|
def __init__(self, filename: Filename, t_in: float = None, t_out: float = None, offset: float = None):
|
2021-12-24 13:06:55 +00:00
|
|
|
self.filename = filename
|
|
|
|
self.t_in = t_in # in ms
|
|
|
|
self.t_out = t_out # in ms
|
2022-03-15 12:41:12 +00:00
|
|
|
self.offset = offset # in ms
|
|
|
|
|
2022-01-19 09:28:51 +00:00
|
|
|
def getSlice(self, t_in: float, t_out: float) -> AnimationSlice:
|
|
|
|
return AudioSlice(self.filename, t_in, t_out, self.offset)
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
def export(self, format="mp3"):
|
|
|
|
"""Returns file descriptor of tempfile"""
|
|
|
|
# Opening file and extracting segment
|
|
|
|
song = AudioSegment.from_file(self.filename)
|
2022-01-19 09:28:51 +00:00
|
|
|
start = self.t_in - self.offset
|
|
|
|
end = self.t_out - self.offset
|
|
|
|
|
|
|
|
if start < 0 and end < 0:
|
2022-03-15 12:41:12 +00:00
|
|
|
extract = AudioSegment.silent(
|
|
|
|
duration=end-start, frame_rate=song.frame_rate)
|
2022-01-19 09:28:51 +00:00
|
|
|
else:
|
|
|
|
if start < 0:
|
2022-03-15 12:41:12 +00:00
|
|
|
preroll = AudioSegment.silent(
|
|
|
|
duration=start * -1, frame_rate=song.frame_rate)
|
2022-01-19 09:28:51 +00:00
|
|
|
start = 0
|
|
|
|
else:
|
|
|
|
preroll = None
|
|
|
|
if end > len(song):
|
2022-03-15 12:41:12 +00:00
|
|
|
postroll = AudioSegment.silent(
|
|
|
|
duration=end - len(song), frame_rate=song.frame_rate)
|
2022-01-19 09:28:51 +00:00
|
|
|
end = len(song) - 1
|
|
|
|
else:
|
|
|
|
postroll = None
|
2022-03-15 12:41:12 +00:00
|
|
|
|
2022-01-19 09:28:51 +00:00
|
|
|
extract = song[start: end]
|
|
|
|
if preroll:
|
|
|
|
extract = preroll + extract
|
|
|
|
if postroll:
|
|
|
|
extract += postroll
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
# Saving
|
|
|
|
return extract.export(None, format=format)
|
|
|
|
|
|
|
|
|
|
|
|
class AnnotationIndex:
|
|
|
|
def __init__(
|
|
|
|
self, filename: Filename, drawing_dir: Filename, metadata_dir: Filename
|
|
|
|
) -> None:
|
|
|
|
self.filename = filename
|
|
|
|
self.drawing_dir = drawing_dir
|
|
|
|
self.metadata_dir = metadata_dir
|
|
|
|
|
2022-03-15 12:41:12 +00:00
|
|
|
# disable disk cache because of glitches shelve.open(filename, writeback=True)
|
|
|
|
self.shelve = {}
|
2021-12-24 13:06:55 +00:00
|
|
|
|
2022-01-19 09:28:51 +00:00
|
|
|
def refresh(self):
|
2022-03-29 13:07:18 +00:00
|
|
|
logger.info("refreshing")
|
2021-12-24 13:06:55 +00:00
|
|
|
# reset the index
|
2022-02-03 16:39:59 +00:00
|
|
|
for key in list(self.shelve.keys()):
|
|
|
|
print(key)
|
2022-01-19 09:28:51 +00:00
|
|
|
del self.shelve[key]
|
2021-12-24 13:06:55 +00:00
|
|
|
|
2022-01-19 09:28:51 +00:00
|
|
|
self.shelve["_drawings"] = {
|
2021-12-24 13:06:55 +00:00
|
|
|
d.id: d
|
|
|
|
for d in [
|
2022-01-19 09:28:51 +00:00
|
|
|
Drawing(fn, self.metadata_dir, self.drawing_dir) for fn in self.get_drawing_filenames()
|
2021-12-24 13:06:55 +00:00
|
|
|
]
|
|
|
|
}
|
2022-01-19 09:28:51 +00:00
|
|
|
self.shelve['_tags'] = {}
|
|
|
|
self.shelve['_annotations'] = {}
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
drawing: Drawing
|
2022-01-19 09:28:51 +00:00
|
|
|
for drawing in self.shelve['_drawings'].values():
|
2021-12-24 13:06:55 +00:00
|
|
|
meta = drawing.get_metadata()
|
|
|
|
if 'annotations' not in meta:
|
|
|
|
continue
|
|
|
|
for ann in meta['annotations']:
|
2022-03-15 12:41:12 +00:00
|
|
|
annotation = Annotation(
|
|
|
|
ann['tag'], drawing, ann['t_in'], ann['t_out'])
|
2022-01-19 09:28:51 +00:00
|
|
|
self.shelve['_annotations'][annotation.id] = annotation
|
|
|
|
if annotation.tag not in self.shelve['_tags']:
|
|
|
|
self.shelve['_tags'][annotation.tag] = [annotation]
|
2021-12-24 13:06:55 +00:00
|
|
|
else:
|
2022-01-19 09:28:51 +00:00
|
|
|
self.shelve['_tags'][annotation.tag].append(
|
2021-12-24 13:06:55 +00:00
|
|
|
annotation
|
|
|
|
)
|
2022-03-15 12:41:12 +00:00
|
|
|
|
2021-12-24 13:06:55 +00:00
|
|
|
@property
|
|
|
|
def drawings(self) -> dict[str, Drawing]:
|
2022-03-15 12:41:12 +00:00
|
|
|
return self.shelve["_drawings"]
|
2022-01-19 09:28:51 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def tags(self) -> dict[str, list[Annotation]]:
|
|
|
|
return self.shelve["_tags"]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def annotations(self) -> dict[str, Annotation]:
|
|
|
|
return self.shelve["_annotations"]
|
2021-12-24 13:06:55 +00:00
|
|
|
|
2022-01-19 09:28:51 +00:00
|
|
|
def get_annotations(self, tag) -> list[Annotation]:
|
|
|
|
if tag not in self.tags:
|
2021-12-24 13:06:55 +00:00
|
|
|
return []
|
2022-01-19 09:28:51 +00:00
|
|
|
return self.tags[tag]
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
def get_drawing_names(self) -> list[str]:
|
|
|
|
return [
|
|
|
|
name[:-16]
|
|
|
|
for name in os.listdir(self.drawing_dir)
|
2022-02-03 16:39:59 +00:00
|
|
|
if name.endswith("json_appendable") and os.stat(os.path.join(self.drawing_dir, name)).st_size > 0
|
2021-12-24 13:06:55 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
def get_drawing_filenames(self) -> list[Filename]:
|
|
|
|
return [
|
|
|
|
os.path.join(self.drawing_dir, f"{name}.json_appendable")
|
|
|
|
for name in self.get_drawing_names()
|
|
|
|
]
|
|
|
|
|
|
|
|
def __del__(self):
|
2022-01-19 09:28:51 +00:00
|
|
|
self.shelve.close()
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Point = tuple[float, float, float]
|
|
|
|
|
|
|
|
|
|
|
|
class Point:
|
|
|
|
def __init__(self, x: float, y: float, last: bool, t: float):
|
2022-02-03 16:39:59 +00:00
|
|
|
self.x = float(x)
|
2022-03-15 12:41:12 +00:00
|
|
|
self.y = float(y) # if y == 0 it can still be integer.... odd python
|
2021-12-24 13:06:55 +00:00
|
|
|
self.last = last
|
|
|
|
self.t = t
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def fromTuple(cls, p: tuple[float, float, int, float]):
|
|
|
|
return cls(p[0], p[1], bool(p[2]), p[3])
|
2022-03-15 12:41:12 +00:00
|
|
|
|
2022-02-09 07:18:28 +00:00
|
|
|
def scaledToFit(self, dimensions: dict[str, float]) -> Point:
|
|
|
|
# TODO: change so that it actually scales to FIT dimensions
|
|
|
|
return Point(self.x, self.y, self.last, self.t)
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
Points = list[Point]
|
|
|
|
SvgDrawing = Union[svgwrite.container.SVG, svgwrite.container.Group]
|
|
|
|
|
2022-03-15 12:41:12 +00:00
|
|
|
|
2021-12-24 13:06:55 +00:00
|
|
|
class Stroke:
|
|
|
|
def __init__(self, color: str, points: Points) -> None:
|
|
|
|
self.color = color
|
|
|
|
self.points = points
|
2022-03-15 12:41:12 +00:00
|
|
|
|
2021-12-24 13:06:55 +00:00
|
|
|
def add_to_dwg(self, dwg: SvgDrawing):
|
2022-03-15 12:41:12 +00:00
|
|
|
path = svgwrite.path.Path(d=self.get_as_d()).stroke(
|
|
|
|
self.color, 1).fill("none")
|
2021-12-24 13:06:55 +00:00
|
|
|
dwg.add(path)
|
|
|
|
|
|
|
|
def get_bounding_box(self) -> Viewbox:
|
|
|
|
min_x, max_x = float("inf"), float("-inf")
|
|
|
|
min_y, max_y = float("inf"), float("-inf")
|
|
|
|
|
|
|
|
for p in self.points:
|
|
|
|
if p.x < min_x:
|
|
|
|
min_x = p.x
|
|
|
|
if p.x > max_x:
|
|
|
|
max_x = p.x
|
|
|
|
if p.y < min_y:
|
|
|
|
min_y = p.y
|
|
|
|
if p.y > max_y:
|
|
|
|
max_y = p.y
|
|
|
|
return Viewbox(min_x, min_y, max_x - min_x, max_y - min_y)
|
|
|
|
|
|
|
|
def get_as_d(self):
|
|
|
|
d = ""
|
|
|
|
prev_point = None
|
|
|
|
cmd = ""
|
|
|
|
for point in self.points:
|
|
|
|
if not prev_point:
|
|
|
|
# TODO multiply points by scalars for dimensions (height widht of drawing)
|
|
|
|
d += f'M{point.x:.6},{point.y:.6} '
|
|
|
|
cmd = 'M'
|
|
|
|
else:
|
|
|
|
if prev_point.last:
|
|
|
|
d += " m"
|
|
|
|
cmd = "m"
|
|
|
|
elif cmd != 'l':
|
|
|
|
d += ' l '
|
|
|
|
cmd = 'l'
|
|
|
|
diff_point = {
|
|
|
|
"x": point.x - prev_point.x,
|
|
|
|
"y": point.y - prev_point.y,
|
|
|
|
}
|
|
|
|
# TODO multiply points by scalars for dimensions (height widht of drawing)
|
2022-01-19 09:28:51 +00:00
|
|
|
d += f'{diff_point["x"]:.6},{diff_point["y"]:.6} '
|
2021-12-24 13:06:55 +00:00
|
|
|
prev_point = point
|
|
|
|
return d
|
|
|
|
|
|
|
|
|
|
|
|
class StrokeSlice(Stroke):
|
|
|
|
def __init__(self, stroke: Stroke, i_in: int = None, i_out: int = None) -> None:
|
|
|
|
self.stroke = stroke
|
|
|
|
self.i_in = 0 if i_in is None else i_in
|
|
|
|
self.i_out = len(self.stroke.points) - 1 if i_out is None else i_out
|
|
|
|
|
|
|
|
def slice_id(self):
|
|
|
|
return f"{self.i_in}-{self.i_out}"
|
|
|
|
|
|
|
|
@property
|
|
|
|
def points(self) -> Points:
|
2022-03-15 12:41:12 +00:00
|
|
|
return self.stroke.points[self.i_in: self.i_out + 1]
|
2021-12-24 13:06:55 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def color(self) -> str:
|
|
|
|
return self.stroke.color
|
2022-01-19 09:28:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
def strokes2D(strokes):
|
|
|
|
# strokes to a d attribute for a path
|
2022-03-15 12:41:12 +00:00
|
|
|
d = ""
|
|
|
|
last_stroke = None
|
|
|
|
cmd = ""
|
2022-01-19 09:28:51 +00:00
|
|
|
for stroke in strokes:
|
|
|
|
if not last_stroke:
|
|
|
|
d += f"M{stroke[0]},{stroke[1]} "
|
|
|
|
cmd = 'M'
|
|
|
|
else:
|
2022-03-15 12:41:12 +00:00
|
|
|
if last_stroke[2] == 1:
|
2022-01-19 09:28:51 +00:00
|
|
|
d += " m"
|
|
|
|
cmd = 'm'
|
|
|
|
elif cmd != 'l':
|
2022-03-15 12:41:12 +00:00
|
|
|
d += ' l '
|
2022-01-19 09:28:51 +00:00
|
|
|
cmd = 'l'
|
|
|
|
|
2022-03-15 12:41:12 +00:00
|
|
|
rel_stroke = [stroke[0] - last_stroke[0],
|
|
|
|
stroke[1] - last_stroke[1]]
|
2022-01-19 09:28:51 +00:00
|
|
|
d += f"{rel_stroke[0]},{rel_stroke[1]} "
|
|
|
|
last_stroke = stroke
|
2022-03-15 12:41:12 +00:00
|
|
|
return d
|