-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmeasureit_arch_render.py
846 lines (657 loc) · 29.7 KB
/
measureit_arch_render.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
# ----------------------------------------------------------
# support routines for render measures in final image
# Author: Antonio Vazquez (antonioya), Kevan Cress
#
# ----------------------------------------------------------
from random import randint
import bpy
import gpu
import os
from .measureit_arch_baseclass import recalc_index
import svgwrite
import xml.etree.ElementTree as ET
import time
import ezdxf
from addon_utils import check, paths
from bpy.types import Panel, Operator
from sys import exc_info
from datetime import datetime
from . import svg_shaders
from . import vector_utils
from .measureit_arch_geometry import draw3d_loop, batch_for_shader
from .measureit_arch_main import draw_main, draw_titleblock, text_update_loop,draw_viewport
from .measureit_arch_utils import get_resolution, get_view, local_attrs, get_loaded_addons, OpenGL_Settings, Set_Render, load_shader_str, get_projection_matrix, get_view_outpath, Inst_Sort
from .measureit_arch_units import BU_TO_INCHES
# Tri Shader info
basevert = load_shader_str("base_vert.glsl")
depthfrag = load_shader_str("depth_only_frag.glsl")
depth_shader_info = gpu.types.GPUShaderCreateInfo()
depth_shader_info.push_constant('MAT4', "viewProjectionMatrix")
depth_shader_info.push_constant('FLOAT', "offset")
depth_shader_info.vertex_in(0, 'VEC3', "pos")
depth_shader_info.fragment_out(0, 'VEC4', "fragColor")
depth_shader_info.vertex_source(basevert)
depth_shader_info.fragment_source(depthfrag)
depthOnlyshader = gpu.shader.create_from_info(depth_shader_info)
del depth_shader_info
class RENDER_PT_MeasureitArch_Panel(Panel):
""" Panel class for render functions """
bl_space_type = 'PROPERTIES'
bl_region_type = 'WINDOW'
bl_context = "output"
bl_options = {'HIDE_HEADER'}
bl_label = "MeasureIt_ARCH Render"
def draw(self, context):
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False
scene = context.scene
sceneProps = scene.MeasureItArchProps
# Render settings
col = layout.column()
col.label(text="MeasureIt_ARCH Render")
col = layout.column(align=True)
col.scale_y = 1.5
col.operator("measureit_arch.renderimagebutton",
icon='RENDER_STILL', text="MeasureIt_ARCH Image")
col.operator("measureit_arch.renderanimbutton",
icon='RENDER_ANIMATION', text="MeasureIt_ARCH Animation")
col.operator("measureit_arch.rendervectorbutton",
icon='DOCUMENTS', text="MeasureIt_ARCH Vector")
col.operator("measureit_arch.rendervectoranimbutton",
icon='RENDER_ANIMATION', text="MeasureIt_ARCH Vector Animation")
if sceneProps.show_dxf_props:
col.operator("measureit_arch.renderdxfbutton",
icon='DOCUMENTS', text="MeasureIt_ARCH to DXF")
if sceneProps.enable_experimental:
pass
class RenderImageButton(Operator):
""" Button for render option """
bl_idname = "measureit_arch.renderimagebutton"
bl_label = "Render image"
bl_description = "Render an image with measures. Use UV/Image editor to view image generated."
bl_category = 'MeasureitArch'
def execute(self, context):
# Check camera
if not context.scene.camera:
self.report({'ERROR'}, "Unable to render: no camera found!")
return {'FINISHED'}
outpath = render_main(self, context)
if outpath:
self.report({'INFO'}, "Image exported to: {}".format(outpath))
return {'FINISHED'}
class RenderAnimationButton(Operator):
""" Operator which runs itself from a timer """
bl_idname = "measureit_arch.renderanimbutton"
bl_label = "Render animation"
bl_description = "Render an animation, saved to render output path."
bl_category = 'MeasureitArch'
_timer = None
_updating = False
view3d = None
def modal(self, context, event):
scene = context.scene
if event.type in {'RIGHTMOUSE', 'ESC'}:
self.cancel(context)
return {'CANCELLED'}
if event.type == 'TIMER' and not self._updating:
self._updating = True
if scene.frame_current <= scene.frame_end:
scene.frame_set(scene.frame_current)
self.view3d.tag_redraw()
print("MeasureIt_ARCH: Rendering frame: " + str(scene.frame_current))
render_main(self, context)
self._updating = False
scene.frame_current += 1
else:
self.cancel(context)
return {'CANCELLED'}
self.view3d.tag_redraw()
return {'PASS_THROUGH'}
def execute(self, context):
# Check camera
if not context.scene.camera:
self.report({'ERROR'}, "Unable to render: no camera found!")
return {'FINISHED'}
for area in context.screen.areas:
if area.type == 'VIEW_3D':
self.view3d = area
if self.view3d is None:
self.report(
{'ERROR'}, 'A 3D Viewport must be open to render MeasureIt_ARCH Animations')
self.cancel(context)
return {'CANCELLED'}
wm = context.window_manager
self._timer = wm.event_timer_add(0.1, window=context.window)
context.scene.frame_current = context.scene.frame_start
wm.modal_handler_add(self)
return {'RUNNING_MODAL'}
def cancel(self, context):
wm = context.window_manager
wm.event_timer_remove(self._timer)
return {'CANCELLED'}
class RenderVectorAnimationButton(Operator):
""" Operator which runs itself from a timer """
bl_idname = "measureit_arch.rendervectoranimbutton"
bl_label = "Render Vector animation"
bl_description = "Render a vector animation, saved to render output path."
bl_category = 'MeasureitArch'
_timer = None
_updating = False
view3d = None
def modal(self, context, event):
scene = context.scene
if event.type in {'RIGHTMOUSE', 'ESC'}:
self.cancel(context)
return {'CANCELLED'}
if event.type == 'TIMER' and not self._updating:
self._updating = True
if scene.frame_current <= scene.frame_end:
scene.frame_set(scene.frame_current)
self.view3d.tag_redraw()
print("MeasureIt_ARCH: Rendering frame: " + str(scene.frame_current))
render_main_svg(self, context)
self._updating = False
scene.frame_current += 1
else:
self.cancel(context)
return {'CANCELLED'}
self.view3d.tag_redraw()
return {'PASS_THROUGH'}
def execute(self, context):
# Check camera
if not context.scene.camera:
self.report({'ERROR'}, "Unable to render: no camera found!")
return {'FINISHED'}
for area in context.screen.areas:
if area.type == 'VIEW_3D':
self.view3d = area
if self.view3d is None:
self.report(
{'ERROR'}, 'A 3D Viewport must be open to render MeasureIt_ARCH Animations')
self.cancel(context)
return {'CANCELLED'}
wm = context.window_manager
self._timer = wm.event_timer_add(0.1, window=context.window)
context.scene.frame_current = context.scene.frame_start
wm.modal_handler_add(self)
return {'RUNNING_MODAL'}
def cancel(self, context):
wm = context.window_manager
wm.event_timer_remove(self._timer)
return {'CANCELLED'}
class RenderVectorButton(Operator):
bl_idname = "measureit_arch.rendervectorbutton"
bl_label = "Render vector"
bl_description = "Create a SVG drawing, saved to render output path."
bl_category = 'MeasureitArch'
def execute(self, context):
# Check camera
if not context.scene.camera:
self.report({'ERROR'}, "Unable to render: no camera found!")
return {'FINISHED'}
outpath = render_main_svg(self, context)
self.report({'INFO'}, "SVG exported to: {}".format(outpath))
return {'FINISHED'}
class RenderDXFButton(Operator):
bl_idname = "measureit_arch.renderdxfbutton"
bl_label = "Render to DFX"
bl_description = "Create a DXF drawing, saved to render output path."
bl_category = 'MeasureitArch'
def execute(self, context):
# Check camera
if not context.scene.camera:
self.report({'ERROR'}, "Unable to render: no camera found!")
return {'FINISHED'}
outpath = render_main_dxf(self, context)
self.report({'INFO'}, "DXF exported to: {}".format(outpath))
return {'FINISHED'}
def render_main(self, context):
""" Render image main entry point """
scene = context.scene
sceneProps = scene.MeasureItArchProps
RenderStartTime = time.time()
with Set_Render(sceneProps):
clipdepth = context.scene.camera.data.clip_end
objlist = context.view_layer.objects
# Get resolution
render_scale = scene.render.resolution_percentage / 100
width = int(scene.render.resolution_x * render_scale)
height = int(scene.render.resolution_y * render_scale)
# Draw all lines offscreen
renderoffscreen = gpu.types.GPUOffScreen(width, height)
view_matrix_3d = scene.camera.matrix_world.inverted()
projection_matrix = scene.camera.calc_matrix_camera(
context.view_layer.depsgraph, x=width, y=height)
text_update_loop(context, objlist)
with OpenGL_Settings(None):
with renderoffscreen.bind():
# Clear Depth Buffer, set Clear Depth to Cameras Clip Distance
fb = gpu.state.active_framebuffer_get()
fb.clear(color=(0.0, 0.0, 0.0, 0.0), depth = clipdepth)
gpu.matrix.reset()
gpu.matrix.load_matrix(view_matrix_3d)
gpu.matrix.load_projection_matrix(projection_matrix)
# Draw Scene for the depth buffer
print('Drawing Scene:')
startTime = time.time()
draw_scene(self, context, projection_matrix)
if sceneProps.debug_depth_pass:
print("Reading Buffer to Image")
scene = context.scene
depth_buffer = fb.read_depth(0, 0, width, height)
image_name = "measureit_arch_depth"
if image_name not in bpy.data.images:
bpy.data.images.new(image_name, width, height)
image = bpy.data.images[image_name]
image.scale(width, height)
pixel_array = []
depth_buffer.dimensions = width * height
for v in depth_buffer:
pixel_array.append(v)
pixel_array.append(v)
pixel_array.append(v)
pixel_array.append(1)
image.pixels = pixel_array
del pixel_array
del depth_buffer
endTime = time.time()
print("Draw Scene Time: " + str(endTime - startTime))
# Clear Color Buffer, we only need the depth info
fb.clear(color=(0.0, 0.0, 0.0, 0.0))
# -----------------------------
# Loop to draw all objects
# -----------------------------
draw3d_loop(context, objlist)
draw_titleblock(context)
# Read Buffer
buffer = fb.read_color(0, 0, width, height, 4, 0, 'UBYTE')
# Create image
image_name = "measureit_arch_output"
if image_name not in bpy.data.images:
image = bpy.data.images.new(image_name, width, height)
image = bpy.data.images[image_name]
image.scale(width, height)
buffer.dimensions = width * height * 4
image.pixels = [v / 255 for v in buffer]
renderoffscreen.free()
# Save image
outpath = None
if image is not None:
view = get_view()
outpath = get_view_outpath(
scene, view, "{:04d}.png".format(scene.frame_current))
save_image(self, outpath, image)
# Restore default value
sceneProps.is_render_draw = False
RenderEndTime = time.time()
print("Full Render Time: " + str(RenderEndTime - RenderStartTime))
return outpath
def save_image(self, filepath, image):
""" Save image to file """
try:
settings = bpy.context.scene.render.image_settings
with local_attrs(settings, [
'file_format',
'color_mode',
'color_depth']):
settings.file_format = 'PNG'
settings.color_mode = 'RGBA'
settings.color_depth = '16'
image.save_render(filepath)
self.report({'INFO'}, "Image exported to: {}".format(filepath))
except:
print("Unexpected error:" + str(exc_info()))
self.report({'ERROR'}, "MeasureIt_ARCH: Unable to save render image")
def draw_scene(self, context, projection_matrix):
""" Draw Scene Geometry for Depth Buffer """
with OpenGL_Settings(None):
# Get List of Mesh Objects
deps = bpy.context.view_layer.depsgraph
idx = 0
obj_ints = [Inst_Sort(obj) for obj in deps.object_instances]
if get_view().depth_buffer_skip_instances:
obj_ints = [Inst_Sort(obj) for obj in deps.object_instances if not obj.is_instance]
num_instances = len(obj_ints)
print("Drawing Depth Buffer")
for obj_int in obj_ints:
idx += 1
vertices = []
indices = []
obj = bpy.data.objects[obj_int.object]
try:
parent = bpy.data.objects[obj_int.parent]
except KeyError:
parent = None
print("Rendering Object: " + str(idx) + " of: " + str(num_instances) + " Name: " + obj.name + " To Depth Buffer")
ignore = obj.MeasureItArchProps.ignore_in_depth_test
if parent != None:
ignore = obj.MeasureItArchProps.ignore_in_depth_test or parent.MeasureItArchProps.ignore_in_depth_test
if (obj.type == 'MESH' or obj.type == 'CURVE') and not(obj.hide_render or obj.display_type == "WIRE" or ignore):
mat = obj_int.matrix_world
obj_eval = obj.evaluated_get(deps)
mesh = obj_eval.to_mesh(preserve_all_data_layers=False, depsgraph=bpy.context.view_layer.depsgraph)
if mesh == None:
obj.to_mesh_clear()
continue
mesh.calc_loop_triangles()
tris = mesh.loop_triangles
vertices = [mat @ vert.co for vert in mesh.vertices]
indices = [[tri.vertices[0],tri.vertices[1],tri.vertices[2]] for tri in tris]
obj_eval.to_mesh_clear()
depthOnlyshader.bind()
depthOnlyshader.uniform_float("viewProjectionMatrix", get_projection_matrix())
batch = batch_for_shader(depthOnlyshader, 'TRIS', {
"pos": vertices}, indices=indices)
batch.program_set(depthOnlyshader)
batch.draw()
gpu.shader.unbind()
del vertices
del indices
def render_main_svg(self, context):
startTime = time.time()
scene = context.scene
sceneProps = scene.MeasureItArchProps
view = get_view()
with Set_Render(sceneProps, is_vector = True):
vector_utils.clear_db()
clipdepth = context.scene.camera.data.clip_end
objlist = context.view_layer.objects
# Get resolution
render_scale = scene.render.resolution_percentage / 100
width = int(scene.render.resolution_x * render_scale)
height = int(scene.render.resolution_y * render_scale)
view_matrix_3d = scene.camera.matrix_world.inverted()
# Render Depth Buffer
if view.vector_depthtest:
render_start_time = time.time()
offscreen = gpu.types.GPUOffScreen(width, height)
with offscreen.bind():
# Clear Depth Buffer, set Clear Depth to Cameras Clip Distance
deps = context.evaluated_depsgraph_get()
projection_matrix = scene.camera.calc_matrix_camera(deps, x=width, y=height)
with OpenGL_Settings(None):
# Clear Frame Buffer
fb = gpu.state.active_framebuffer_get()
fb.clear(color=(0.0, 0.0, 0.0, 0.0), depth = clipdepth)
gpu.matrix.reset()
gpu.matrix.load_matrix(view_matrix_3d)
gpu.matrix.load_projection_matrix(projection_matrix)
draw_scene(self, context, projection_matrix)
# Read Depth Buffer
depth_buffer = fb.read_depth(0, 0, width, height)
depth_buffer.dimensions = width * height
buffer_start_time = time.time()
if 'depthbuffer' in sceneProps:
del sceneProps['depthbuffer']
sceneProps['depthbuffer'] = depth_buffer
render_end_time = time.time()
del depth_buffer
print("Reading Depth Buffer to SceneProps took: " + str(render_end_time - buffer_start_time))
print("Rendering Scene To Depth Buffer took: " + str(render_end_time - render_start_time))
print("")
if sceneProps.debug_depth_pass:
print("Reading Buffer to Image")
scene = context.scene
depth_buffer = fb.read_depth(0, 0, width, height)
image_name = "measureit_arch_depth"
if image_name not in bpy.data.images:
bpy.data.images.new(image_name, width, height)
image = bpy.data.images[image_name]
image.scale(width, height)
pixel_array = []
depth_buffer.dimensions = width * height
for v in depth_buffer:
pixel_array.append(v)
pixel_array.append(v)
pixel_array.append(v)
pixel_array.append(1)
image.pixels = pixel_array
del pixel_array
del depth_buffer
offscreen.free()
vector_utils.set_globals()
# Setup Output Path
view = get_view()
outpath = get_view_outpath(
scene, view, "{:04d}.svg".format(scene.frame_current))
res = get_resolution()
if view and view.res_type == 'PAPER':
paperWidth = round(view.width * BU_TO_INCHES, 3)
paperHeight = round(view.height * BU_TO_INCHES, 3)
else:
print('No View Present, using default resolution')
paperWidth = width / res
paperHeight = height / res
# Setup basic svg
svg = svgwrite.Drawing(
outpath,
debug=False,
size=('{}in'.format(paperWidth), '{}in'.format(paperHeight)),
viewBox=('0 0 {} {}'.format(width, height)),
id='root'
)
svg['image-rendering'] = 'pixelated'
view = get_view()
if view.embed_scene_render:
with local_attrs(scene, [
'render.image_settings.file_format',
'render.use_file_extension',
'render.filepath']):
image_path = get_view_outpath(
scene, view, "{:04d}".format(scene.frame_current))
scene.render.filepath = image_path
scene.render.image_settings.file_format = 'PNG'
scene.render.use_file_extension = True
bpy.ops.render.render(write_still=True)
png_image_path = get_view_outpath(scene, view, "{:04d}.png".format(scene.frame_current), sceneProps.relative_svg_paths)
svg.add(svg.image(
png_image_path, **{
'width': width,
'height': height
}
))
## Freestyle Embed
freestyle_svg_export = 'render_freestyle_svg' in get_loaded_addons()
if view.embed_freestyle_svg and freestyle_svg_export:
# If "FreeStyle SVG export" addon is loaded, we render the scene to SVG
# and embed the output in the final SVG.
svg_image_path = get_view_outpath(
scene, view, "{}".format("_freestyle"))
with local_attrs(scene, [
'render.filepath',
'render.image_settings.file_format',
'render.use_freestyle',
'svg_export.use_svg_export',
'svg_export.mode']):
scene.render.use_freestyle = True
scene.svg_export.use_svg_export = True
scene.svg_export.mode = 'FRAME'
scene.render.filepath = svg_image_path
scene.render.image_settings.file_format = 'PNG'
scene.render.use_file_extension = True
bpy.ops.render.render(write_still=False)
frame = scene.frame_current
svg_image_path += "{:04d}.svg".format(frame)
svg_root = ET.parse(svg_image_path).getroot()
for elem in svg_root:
svg.add(SVGWriteElement(elem))
if (os.path.exists(svg_image_path) and
not sceneProps.keep_freestyle_svg):
os.remove(svg_image_path)
## Greasepencil Embed
if view.embed_greasepencil_svg:
image_path = get_view_outpath(
scene, view, "{:04d}.svg".format(scene.frame_current))
frame = scene.frame_current
gp_image_path = image_path + "_Grease_Pencil"
bpy.ops.wm.gpencil_export_svg(filepath= gp_image_path,
check_existing=True,
filemode=8,
display_type='DEFAULT',
sort_method='FILE_SORT_ALPHA',
use_fill=True,
selected_object_type='VISIBLE',
stroke_sample=0,
use_normalized_thickness=False,
use_clip_camera=True)
svg_root = ET.parse(gp_image_path).getroot()
for elem in svg_root:
svg.add(SVGWriteElement(elem))
if os.path.exists(gp_image_path):
os.remove(gp_image_path)
# -----------------------------
# Loop to draw all objects
# -----------------------------
with OpenGL_Settings(None):
text_update_loop(context, objlist)
drawing_group = svg.g(id="Drawing")
draw3d_loop(context, objlist, svg=svg)
svg.add(drawing_group)
tb_group = svg.g(id="Titleblock")
print("Drawing Titleblock")
draw_titleblock(context, svg=svg)
svg.add(tb_group)
for viewport in get_view().viewports:
draw_viewport(context,viewport=viewport,svg=svg)
#DEBUG CHECK EDGEMAP
if False:
svgColor = svg_shaders.get_svg_color((1,0,0))
lines = svg.g(id='edgemap', stroke=svgColor,fill = 'none',
stroke_width="1", stroke_linecap='butt')
for edge in vector_utils.edgemap:
svg_shaders.draw_single_line(edge.start_coord, edge.end_coord,svg=svg,lines=lines,depth_test=False)
svg.add(lines)
print("Saving Svg")
svg.save(pretty=True)
# restore default value
sceneProps.is_render_draw = False
sceneProps.is_vector_draw = False
sceneProps.text_updated = True
endTime = time.time()
print("Full Render SVG Time: " + str(endTime - startTime))
del svg
vector_utils.clear_db()
return outpath
def render_main_dxf(self, context):
print('rendering dxf')
startTime = time.time()
scene = context.scene
sceneProps = scene.MeasureItArchProps
view = get_view()
with Set_Render(sceneProps, is_dxf = True):
vector_utils.clear_db()
clipdepth = context.scene.camera.data.clip_end
objlist = context.view_layer.objects
# Get resolution
render_scale = scene.render.resolution_percentage / 100
width = int(scene.render.resolution_x * render_scale)
height = int(scene.render.resolution_y * render_scale)
view_matrix_3d = scene.camera.matrix_world.inverted()
# Render Depth Buffer
if view.vector_depthtest:
print("Rendering Depth Buffer")
offscreen = gpu.types.GPUOffScreen(width, height)
with offscreen.bind():
# Clear Depth Buffer, set Clear Depth to Cameras Clip Distance
deps = context.evaluated_depsgraph_get()
projection_matrix = scene.camera.calc_matrix_camera(deps, x=width, y=height)
with OpenGL_Settings(None):
# Clear Frame Buffer
fb = gpu.state.active_framebuffer_get()
fb.clear(color=(0.0, 0.0, 0.0, 0.0), depth = clipdepth)
gpu.matrix.reset()
gpu.matrix.load_matrix(view_matrix_3d)
gpu.matrix.load_projection_matrix(projection_matrix)
print("Drawing Scene")
draw_scene(self, context, projection_matrix)
print("Reading to Buffer")
depth_buffer = fb.read_depth(0, 0, width, height)
depth_buffer.dimensions = width * height
if 'depthbuffer' in sceneProps:
del sceneProps['depthbuffer']
sceneProps['depthbuffer'] = depth_buffer
vector_utils.set_globals()
# Setup Output Path
view = get_view()
outpath = get_view_outpath(
scene, view, "{:04d}.dxf".format(scene.frame_current))
res = get_resolution()
if view and view.res_type == 'PAPER':
paperWidth = round(view.width * BU_TO_INCHES, 3)
paperHeight = round(view.height * BU_TO_INCHES, 3)
else:
print('No View Present, using default resolution')
paperWidth = width / res
paperHeight = height / res
# Setup basic dxf
doc = ezdxf.new(dxfversion="AC1032", setup=True, units = 6)
doc.modelspace()
doc.units = ezdxf.units.M
doc.header['$LUNITS'] = 2 # For Decimal
doc.header['$INSUNITS'] = ezdxf.units.M
doc.header['$MEASUREMENT'] = 1 #for Metric
# Create the MeasureIt_ARCH dim style
m_arch_style = doc.dimstyles.new(name='MeasureIt_ARCH')
m_arch_style.dimscale = 1
m_arch_style.dimtxt = 100
# Setup Layers based on styles
recalc_index(self, context)
styles = scene.StyleGenerator.wrapper
for style_wrapper in styles:
name = style_wrapper.name
type_str = style_wrapper.itemType
idx = style_wrapper.itemIndex
source_scene = sceneProps.source_scene
style = eval("source_scene.StyleGenerator.{}[{}]".format(type_str,idx))
cad_col_id = style.cad_col_idx
if cad_col_id == 256:
cad_col_id = randint(0,255)
if "lineDrawDashed" in style and style.lineDrawDashed:
doc.layers.add(name, color=cad_col_id, linetype="DASHED2")
else:
doc.layers.add(name, color=cad_col_id)
view = get_view()
# -----------------------------
# Loop to draw all objects
# -----------------------------
with OpenGL_Settings(None):
draw3d_loop(context, objlist,dxf=doc)
#draw_titleblock(context, dxf = doc)
doc.saveas(outpath)
# restore default value
sceneProps.is_render_draw = False
sceneProps.is_vector_draw = False
endTime = time.time()
print("Full Render DXF Time: " + str(endTime - startTime))
return outpath
class SVGWriteElement(object):
""" Minimal implementation of `svgwrite`'s BaseElement, which we use to
inject simple ET.Element objects into its SVG Drawing. """
def __init__(self, elem):
SVG_NS = '{http://www.w3.org/2000/svg}'
# Remove the SVG namespace
for e in elem.iter():
if e.tag.startswith(SVG_NS):
e.tag = e.tag.replace(SVG_NS, '', 1)
self.elem = elem
self.elementname = elem.tag
def get_xml(self):
return self.elem