mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-27 02:31:09 +00:00
427 lines
19 KiB
Python
427 lines
19 KiB
Python
import os
|
|
import bpy
|
|
import math
|
|
import pystache
|
|
import xml.etree.ElementTree as ET
|
|
import svgwrite
|
|
from . import annotation
|
|
from mathutils import Vector
|
|
from mathutils import geometry
|
|
|
|
class External(svgwrite.container.Group):
|
|
def __init__(self, xml, **extra):
|
|
self.xml = xml
|
|
|
|
# Remove namespace
|
|
ns = u'{http://www.w3.org/2000/svg}'
|
|
nsl = len(ns)
|
|
for elem in self.xml.getiterator():
|
|
if elem.tag.startswith(ns):
|
|
elem.tag = elem.tag[nsl:]
|
|
|
|
super(External, self).__init__(**extra)
|
|
|
|
def get_xml(self):
|
|
return self.xml
|
|
|
|
|
|
class SvgWriter():
|
|
def __init__(self, ifc_cutter):
|
|
self.ifc_cutter = ifc_cutter
|
|
self.human_scale = 'NTS'
|
|
self.scale = 1 / 100 # 1:100
|
|
|
|
def write(self):
|
|
self.calculate_scale()
|
|
self.output = os.path.join(
|
|
self.ifc_cutter.data_dir,
|
|
'diagrams',
|
|
self.ifc_cutter.diagram_name + '.svg'
|
|
)
|
|
self.svg = svgwrite.Drawing(
|
|
self.output,
|
|
debug=False,
|
|
size=('{}mm'.format(self.width), '{}mm'.format(self.height)),
|
|
viewBox=('0 0 {} {}'.format(self.width, self.height)),
|
|
id='root',
|
|
data_scale=self.human_scale
|
|
)
|
|
|
|
self.add_stylesheet()
|
|
self.add_markers()
|
|
self.add_symbols()
|
|
self.add_patterns()
|
|
self.draw_background_image()
|
|
self.draw_background_elements()
|
|
self.draw_cut_polygons()
|
|
self.draw_annotations()
|
|
self.svg.save(pretty=True)
|
|
|
|
def calculate_scale(self):
|
|
self.scale *= 1000 # IFC is in meters, SVG is in mm
|
|
self.raw_width = self.ifc_cutter.section_box['x']
|
|
self.raw_height = self.ifc_cutter.section_box['y']
|
|
self.width = self.raw_width * self.scale
|
|
self.height = self.raw_height * self.scale
|
|
|
|
def add_stylesheet(self):
|
|
with open('{}styles/default.css'.format(self.ifc_cutter.data_dir), 'r') as stylesheet:
|
|
self.svg.defs.add(self.svg.style(stylesheet.read()))
|
|
|
|
def add_markers(self):
|
|
tree = ET.parse('{}templates/markers.svg'.format(self.ifc_cutter.data_dir))
|
|
root = tree.getroot()
|
|
for child in root.getchildren():
|
|
self.svg.defs.add(External(child))
|
|
|
|
def add_symbols(self):
|
|
tree = ET.parse('{}templates/symbols.svg'.format(self.ifc_cutter.data_dir))
|
|
root = tree.getroot()
|
|
for child in root.getchildren():
|
|
self.svg.defs.add(External(child))
|
|
|
|
def add_patterns(self):
|
|
tree = ET.parse('{}templates/patterns.svg'.format(self.ifc_cutter.data_dir))
|
|
root = tree.getroot()
|
|
for child in root.getchildren():
|
|
self.svg.defs.add(External(child))
|
|
|
|
def draw_background_image(self):
|
|
self.svg.add(self.svg.image(
|
|
os.path.join('..', 'diagrams', os.path.basename(self.ifc_cutter.background_image)), **{
|
|
'width': self.width,
|
|
'height': self.height
|
|
}
|
|
))
|
|
|
|
def draw_background_elements(self):
|
|
for element in self.ifc_cutter.background_elements:
|
|
if element['type'] == 'polygon':
|
|
self.draw_polygon(element, 'background')
|
|
elif element['type'] == 'polyline':
|
|
self.draw_polyline(element, 'background')
|
|
elif element['type'] == 'line':
|
|
self.draw_line(element, 'background')
|
|
|
|
def draw_annotations(self):
|
|
x_offset = self.raw_width / 2
|
|
y_offset = self.raw_height / 2
|
|
|
|
if self.ifc_cutter.equal_obj:
|
|
self.draw_dimension_annotations(self.ifc_cutter.equal_obj, text_override='EQ')
|
|
if self.ifc_cutter.dimension_obj:
|
|
self.draw_dimension_annotations(self.ifc_cutter.dimension_obj)
|
|
|
|
if self.ifc_cutter.break_obj:
|
|
self.draw_break_annotations(self.ifc_cutter.break_obj)
|
|
|
|
for grid_obj in self.ifc_cutter.grid_objs:
|
|
matrix_world = grid_obj.matrix_world
|
|
for edge in grid_obj.data.edges:
|
|
classes = ['annotation', 'grid']
|
|
v0_global = matrix_world @ grid_obj.data.vertices[edge.vertices[0]].co.xyz
|
|
v1_global = matrix_world @ grid_obj.data.vertices[edge.vertices[1]].co.xyz
|
|
v0 = self.project_point_onto_camera(v0_global)
|
|
v1 = self.project_point_onto_camera(v1_global)
|
|
start = Vector(((x_offset + v0.x), (y_offset - v0.y)))
|
|
end = Vector(((x_offset + v1.x), (y_offset - v1.y)))
|
|
vector = end - start
|
|
line = self.svg.add(self.svg.line(start=tuple(start * self.scale),
|
|
end=tuple(end * self.scale), class_=' '.join(classes)))
|
|
line['marker-start'] = 'url(#grid-marker)'
|
|
line['marker-end'] = 'url(#grid-marker)'
|
|
line['stroke-dasharray'] = '12.5, 3, 3, 3'
|
|
self.svg.add(self.svg.text(grid_obj.name.split('/')[1], insert=tuple(start * self.scale), **{
|
|
'font-size': annotation.Annotator.get_svg_text_size(5.0),
|
|
'font-family': 'OpenGost Type B TT',
|
|
'text-anchor': 'middle',
|
|
'alignment-baseline': 'middle',
|
|
'dominant-baseline': 'middle'
|
|
}))
|
|
self.svg.add(self.svg.text(grid_obj.name.split('/')[1], insert=tuple(end * self.scale), **{
|
|
'font-size': annotation.Annotator.get_svg_text_size(5.0),
|
|
'font-family': 'OpenGost Type B TT',
|
|
'text-anchor': 'middle',
|
|
'alignment-baseline': 'middle',
|
|
'dominant-baseline': 'middle'
|
|
}))
|
|
|
|
for obj_data in self.ifc_cutter.hidden_objs:
|
|
self.draw_line_annotation(obj_data, ['hidden'])
|
|
|
|
for obj_data in self.ifc_cutter.solid_objs:
|
|
self.draw_line_annotation(obj_data, ['solid'])
|
|
|
|
if self.ifc_cutter.leader_obj:
|
|
self.draw_line_annotation(self.ifc_cutter.leader_obj, ['leader'])
|
|
|
|
if self.ifc_cutter.plan_level_obj:
|
|
for spline in self.ifc_cutter.plan_level_obj.data.splines:
|
|
classes = ['annotation', 'plan-level']
|
|
points = self.get_spline_points(spline)
|
|
d = ' '.join(['L {} {}'.format((x_offset + p.co.x) * self.scale, (y_offset - p.co.y) * self.scale) for p in points])
|
|
d = 'M{}'.format(d[1:])
|
|
path = self.svg.add(self.svg.path(d=d, class_=' '.join(classes)))
|
|
path['marker-end'] = 'url(#plan-level-marker)'
|
|
text_position = Vector((
|
|
(x_offset + points[0].co.x) * self.scale,
|
|
((y_offset - points[0].co.y) * self.scale) - 2.5
|
|
))
|
|
# TODO: unhardcode m unit
|
|
rl = ((self.ifc_cutter.plan_level_obj.matrix_world @
|
|
points[0].co).xyz + self.ifc_cutter.plan_level_obj.location).z
|
|
if points[0].co.x > points[-1].co.x:
|
|
text_anchor = 'end'
|
|
else:
|
|
text_anchor = 'start'
|
|
self.svg.add(self.svg.text('RL +{:.3f}m'.format(rl), insert=tuple(text_position), **{
|
|
'font-size': annotation.Annotator.get_svg_text_size(2.5),
|
|
'font-family': 'OpenGost Type B TT',
|
|
'text-anchor': text_anchor,
|
|
'alignment-baseline': 'baseline',
|
|
'dominant-baseline': 'baseline'
|
|
}))
|
|
|
|
if self.ifc_cutter.section_level_obj:
|
|
matrix_world = self.ifc_cutter.section_level_obj.matrix_world
|
|
for spline in self.ifc_cutter.section_level_obj.data.splines:
|
|
classes = ['annotation', 'section-level']
|
|
points = self.get_spline_points(spline)
|
|
projected_points = [self.project_point_onto_camera(matrix_world @ p.co.xyz) for p in points]
|
|
d = ' '.join(['L {} {}'.format(
|
|
(x_offset + p.x) * self.scale, (y_offset - p.y) * self.scale)
|
|
for p in projected_points])
|
|
d = 'M{}'.format(d[1:])
|
|
path = self.svg.add(self.svg.path(d=d, class_=' '.join(classes)))
|
|
path['marker-start'] = 'url(#section-level-marker)'
|
|
path['stroke-dasharray'] = '12.5, 3, 3, 3'
|
|
text_position = Vector((
|
|
(x_offset + projected_points[0].x) * self.scale,
|
|
((y_offset - projected_points[0].y) * self.scale) - 3.5
|
|
))
|
|
# TODO: unhardcode m unit
|
|
rl = (matrix_world @ points[0].co.xyz).z
|
|
self.svg.add(self.svg.text('RL +{:.3f}m'.format(rl), insert=tuple(text_position), **{
|
|
'font-size': annotation.Annotator.get_svg_text_size(2.5),
|
|
'font-family': 'OpenGost Type B TT',
|
|
'text-anchor': 'start',
|
|
'alignment-baseline': 'baseline',
|
|
'dominant-baseline': 'baseline'
|
|
}))
|
|
|
|
if self.ifc_cutter.stair_obj:
|
|
matrix_world = self.ifc_cutter.stair_obj.matrix_world
|
|
for spline in self.ifc_cutter.stair_obj.data.splines:
|
|
classes = ['annotation', 'stair']
|
|
points = self.get_spline_points(spline)
|
|
projected_points = [self.project_point_onto_camera(matrix_world @ p.co.xyz) for p in points]
|
|
d = ' '.join(['L {} {}'.format(
|
|
(x_offset + p.x) * self.scale, (y_offset - p.y) * self.scale)
|
|
for p in projected_points])
|
|
d = 'M{}'.format(d[1:])
|
|
start = Vector(((x_offset + projected_points[0].x), (y_offset - projected_points[0].y)))
|
|
next_point = Vector(((x_offset + projected_points[1].x), (y_offset - projected_points[1].y)))
|
|
text_position = (start * self.scale) - ((next_point - start).normalized() * 5)
|
|
path = self.svg.add(self.svg.path(d=d, class_=' '.join(classes)))
|
|
self.svg.add(self.svg.text('UP', insert=tuple(text_position), **{
|
|
'font-size': annotation.Annotator.get_svg_text_size(2.5),
|
|
'font-family': 'OpenGost Type B TT',
|
|
'text-anchor': 'middle',
|
|
'alignment-baseline': 'middle',
|
|
'dominant-baseline': 'middle'
|
|
}))
|
|
|
|
self.draw_text_annotations()
|
|
|
|
def draw_line_annotation(self, obj_data, classes):
|
|
# TODO: properly scope these offsets
|
|
x_offset = self.raw_width / 2
|
|
y_offset = self.raw_height / 2
|
|
|
|
obj, data = obj_data
|
|
|
|
classes.extend(['annotation'])
|
|
matrix_world = obj.matrix_world
|
|
|
|
if isinstance(data, bpy.types.Curve):
|
|
for spline in data.splines:
|
|
points = self.get_spline_points(spline)
|
|
projected_points = [self.project_point_onto_camera(matrix_world @ p.co.xyz) for p in points]
|
|
d = ' '.join(['L {} {}'.format(
|
|
(x_offset + p.x) * self.scale, (y_offset - p.y) * self.scale)
|
|
for p in projected_points])
|
|
d = 'M{}'.format(d[1:])
|
|
path = self.svg.add(self.svg.path(d=d, class_=' '.join(classes)))
|
|
elif isinstance(data, bpy.types.Mesh):
|
|
for edge in data.edges:
|
|
v0_global = matrix_world @ data.vertices[edge.vertices[0]].co.xyz
|
|
v1_global = matrix_world @ data.vertices[edge.vertices[1]].co.xyz
|
|
v0 = self.project_point_onto_camera(v0_global)
|
|
v1 = self.project_point_onto_camera(v1_global)
|
|
start = Vector(((x_offset + v0.x), (y_offset - v0.y)))
|
|
end = Vector(((x_offset + v1.x), (y_offset - v1.y)))
|
|
vector = end - start
|
|
line = self.svg.add(self.svg.line(start=tuple(start * self.scale),
|
|
end=tuple(end * self.scale), class_=' '.join(classes)))
|
|
|
|
def draw_text_annotations(self):
|
|
x_offset = self.raw_width / 2
|
|
y_offset = self.raw_height / 2
|
|
|
|
for text_obj in self.ifc_cutter.text_objs:
|
|
loc, rot, scale = self.ifc_cutter.camera_obj.matrix_world.decompose()
|
|
pos = (text_obj.location - self.ifc_cutter.camera_obj.location) @ rot.to_matrix()
|
|
text_position = Vector(((x_offset + pos.x), (y_offset - pos.y)))
|
|
|
|
if text_obj.data.BIMTextProperties.symbol != 'None':
|
|
self.svg.add(self.svg.use(
|
|
'#{}'.format(text_obj.data.BIMTextProperties.symbol),
|
|
insert=tuple(text_position * self.scale)
|
|
))
|
|
|
|
if text_obj.data.align_x == 'CENTER':
|
|
text_anchor = 'middle'
|
|
elif text_obj.data.align_x == 'RIGHT':
|
|
text_anchor = 'end'
|
|
else:
|
|
text_anchor = 'start'
|
|
|
|
if text_obj.data.align_y == 'CENTER':
|
|
alignment_baseline = 'middle'
|
|
elif text_obj.data.align_y == 'TOP':
|
|
alignment_baseline = 'hanging'
|
|
else:
|
|
alignment_baseline = 'baseline'
|
|
|
|
text_body = text_obj.data.body
|
|
if text_obj.name in self.ifc_cutter.template_variables:
|
|
text_body = pystache.render(text_body, self.ifc_cutter.template_variables[text_obj.name])
|
|
|
|
for line_number, text_line in enumerate(text_body.split('\n')):
|
|
self.svg.add(self.svg.text(
|
|
text_line,
|
|
insert=tuple((text_position * self.scale) + Vector((0, 3.5*line_number))),
|
|
**{
|
|
'font-size': annotation.Annotator.get_svg_text_size(text_obj.data.BIMTextProperties.font_size),
|
|
'font-family': 'OpenGost Type B TT',
|
|
'text-anchor': text_anchor,
|
|
'alignment-baseline': alignment_baseline,
|
|
'dominant-baseline': alignment_baseline
|
|
}
|
|
))
|
|
|
|
def draw_break_annotations(self, break_obj):
|
|
x_offset = self.raw_width / 2
|
|
y_offset = self.raw_height / 2
|
|
|
|
matrix_world = break_obj.matrix_world
|
|
for polygon in break_obj.data.polygons:
|
|
points = [break_obj.data.vertices[v] for v in polygon.vertices]
|
|
projected_points = [self.project_point_onto_camera(matrix_world @ p.co.xyz) for p in points]
|
|
d = ' '.join(['L {} {}'.format(
|
|
(x_offset + p.x) * self.scale, (y_offset - p.y) * self.scale)
|
|
for p in projected_points])
|
|
d = 'M{}'.format(d[1:])
|
|
path = self.svg.add(self.svg.path(d=d, class_=' '.join(['break'])))
|
|
|
|
break_points = [
|
|
projected_points[0],
|
|
((projected_points[1]-projected_points[0])/2)+projected_points[0],
|
|
projected_points[1]]
|
|
d = ' '.join(['L {} {}'.format(
|
|
(x_offset + p.x) * self.scale, (y_offset - p.y) * self.scale)
|
|
for p in break_points])
|
|
d = 'M{}'.format(d[1:])
|
|
path = self.svg.add(self.svg.path(d=d, class_=' '.join(['breakline'])))
|
|
|
|
def draw_dimension_annotations(self, dimension_obj, text_override=None):
|
|
x_offset = self.raw_width / 2
|
|
y_offset = self.raw_height / 2
|
|
|
|
matrix_world = dimension_obj.matrix_world
|
|
for spline in dimension_obj.data.splines:
|
|
points = self.get_spline_points(spline)
|
|
for i, p in enumerate(points):
|
|
if i+1 >= len(points):
|
|
continue
|
|
classes = ['annotation', 'dimension', 'blahblah']
|
|
v0_global = matrix_world @ points[i].co.xyz
|
|
v1_global = matrix_world @ points[i+1].co.xyz
|
|
v0 = self.project_point_onto_camera(v0_global)
|
|
v1 = self.project_point_onto_camera(v1_global)
|
|
start = Vector(((x_offset + v0.x), (y_offset - v0.y)))
|
|
end = Vector(((x_offset + v1.x), (y_offset - v1.y)))
|
|
mid = ((end - start) / 2) + start
|
|
# TODO: hardcoded meters to mm conversion, until I properly do units
|
|
vector = end - start
|
|
perpendicular = Vector((vector.y, -vector.x)).normalized()
|
|
dimension = (v1_global - v0_global).length * 1000
|
|
sheet_dimension = ((end*self.scale) - (start*self.scale)).length
|
|
if sheet_dimension < 5: # annotation can't fit
|
|
# offset text to right of marker
|
|
text_position = (end * self.scale) + perpendicular + (3 * vector.normalized())
|
|
else:
|
|
text_position = (mid * self.scale) + perpendicular
|
|
rotation = math.degrees(vector.angle_signed(Vector((1, 0))))
|
|
line = self.svg.add(self.svg.line(start=tuple(start * self.scale),
|
|
end=tuple(end * self.scale), class_=' '.join(classes)))
|
|
line['marker-start'] = 'url(#dimension-marker-start)'
|
|
line['marker-end'] = 'url(#dimension-marker-end)'
|
|
if text_override is not None:
|
|
text = text_override
|
|
else:
|
|
text = str(round(dimension))
|
|
self.svg.add(self.svg.text(text, insert=tuple(text_position), **{
|
|
'transform': 'rotate({} {} {})'.format(
|
|
rotation,
|
|
text_position.x,
|
|
text_position.y
|
|
),
|
|
'font-size': annotation.Annotator.get_svg_text_size(2.5),
|
|
'font-family': 'OpenGost Type B TT',
|
|
'text-anchor': 'middle'
|
|
}))
|
|
|
|
def project_point_onto_camera(self, point):
|
|
return self.ifc_cutter.camera_obj.matrix_world.inverted() @ geometry.intersect_line_plane(
|
|
point.xyz,
|
|
point.xyz-Vector(self.ifc_cutter.section_box['projection']),
|
|
self.ifc_cutter.camera_obj.location,
|
|
Vector(self.ifc_cutter.section_box['projection'])
|
|
)
|
|
|
|
def get_spline_points(self, spline):
|
|
return spline.bezier_points if spline.bezier_points else spline.points
|
|
|
|
def draw_cut_polygons(self):
|
|
for polygon in self.ifc_cutter.cut_polygons:
|
|
self.draw_polygon(polygon, 'cut')
|
|
|
|
def draw_polyline(self, element, position):
|
|
classes = self.get_classes(element['raw'], position)
|
|
exp = OCC.BRepTools.BRepTools_WireExplorer(element['geometry'])
|
|
points = []
|
|
while exp.More():
|
|
point = OCC.BRep.BRep_Tool.Pnt(exp.CurrentVertex())
|
|
points.append((point.X() * self.scale, -point.Y() * self.scale))
|
|
exp.Next()
|
|
self.svg.add(self.svg.polyline(points=points, class_=' '.join(classes)))
|
|
|
|
def draw_line(self, element, position):
|
|
classes = self.get_classes(element['raw'], position)
|
|
exp = OCC.TopExp.TopExp_Explorer(element['geometry'], OCC.TopAbs.TopAbs_VERTEX)
|
|
points = []
|
|
while exp.More():
|
|
point = OCC.BRep.BRep_Tool.Pnt(topods.Vertex(exp.Current()))
|
|
points.append((point.X() * self.scale, -point.Y() * self.scale))
|
|
exp.Next()
|
|
self.svg.add(self.svg.line(start=points[0], end=points[1], class_=' '.join(classes)))
|
|
|
|
def draw_polygon(self, polygon, position):
|
|
points = [(p[0] * self.scale, p[1] * self.scale) for p in polygon['points']]
|
|
if 'classes' in polygon['metadata']:
|
|
classes = ' '.join(polygon['metadata']['classes'])
|
|
else:
|
|
classes = ''
|
|
self.svg.add(self.svg.polygon(points=points, class_=classes))
|