-
Notifications
You must be signed in to change notification settings - Fork 235
/
Copy pathprofile_mk2.py
997 lines (814 loc) · 35.1 KB
/
profile_mk2.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
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
# ##### 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 #####
''' by Dealga McArdle | 2014 + modifications by Nikita '''
import re
import json
from string import ascii_lowercase
from sverchok.utils.modules.parser_subset import parser
from ast import literal_eval
import bpy
from bpy.props import BoolProperty, StringProperty, EnumProperty, FloatVectorProperty, IntProperty
from bpy.utils import register_class, unregister_class
from mathutils import Vector
from mathutils.geometry import interpolate_bezier
from sverchok.utils.sv_curve_utils import Arc
from sverchok.node_tree import SverchCustomTreeNode
from sverchok.data_structure import fullList, updateNode, dataCorrect
# for sharing data with node from operator profilizer
# 2 classes
class SvSublistGroup(bpy.types.PropertyGroup):
SvX: bpy.props.FloatProperty()
SvY: bpy.props.FloatProperty()
SvZ: bpy.props.FloatProperty()
SvName: bpy.props.StringProperty()
class SvListGroup(bpy.types.PropertyGroup):
SvSubLists: bpy.props.CollectionProperty(type=SvSublistGroup)
idx_map = {i: j for i, j in enumerate(ascii_lowercase)}
'''
input like:
M|m <2v coordinate>
L|l <2v coordinate 1> <2v coordinate 2> <2v coordinate n> [z]
C|c <2v control1> <2v control2> <2v knot2> <int num_segments> <int even_spread> [z]
A|a <2v rx,ry> <float rot> <int flag1> <int flag2> <2v x,y> <int num_verts> [z]
X
#
-----
<> : mandatory field
[] : optional field
2v : two point vector `a,b`
- no space between ,
- no backticks
- a and b can be number literals or lowercase 1-character symbols for variables
<int .. >
: means the value will be cast as an int even if you input float
: flags generally are 0 or 1.
z : is optional for closing a line
X : as a final command to close the edges (cyclic) [-1, 0]
in addition, if the first and last vertex share coordinate space
the last vertex is dropped and the cycle is made anyway.
# : single line comment prefix
'''
class PathParser(object):
# not a full implementation, yet
supported_types = {
'M': 'move_to_absolute',
'm': 'move_to_relative',
'L': 'line_to_absolute',
'l': 'line_to_relative',
'C': 'bezier_curve_to_absolute',
'c': 'bezier_curve_to_relative',
'A': 'arc_to_absolute',
'a': 'arc_to_relative',
'X': 'close_now',
'#': 'comment',
'x': 'close_this_path'
}
def __init__(self, properties, segments, idx):
self.posxy = (0, 0)
self.previos_posxy = (0, 0)
self.filename = properties.filename
self.extended_parsing = properties.extended_parsing
self.state_idx = 0
self.path_start_index = 0
self.previous_command = "START"
self.section_type = None
self.close_section = ""
self.stripped_line = ""
''' segments is a dict of letters to variables mapping. '''
self.segments = segments
self.profile_idx = idx
self._get_lines()
def relative(self, a, b):
return [a[0]+b[0], a[1]+b[1]]
def _get_lines(self):
''' arrives here only if the file exists '''
internal_file = bpy.data.texts[self.filename]
self.lines = internal_file.as_string().split('\n')
def determine_section_type(self, line):
first_char = line.strip()[0]
self.section_type = self.supported_types.get(first_char)
def sanitize_edgekeys(self, final_verts, final_edges):
''' remove references to non existing vertices '''
if len(final_verts) in final_edges[-1]:
final_edges.pop()
def get_geometry(self):
'''
This section is partial preprocessor per line found:
lines like
L a,b c,d e,f z
become (after stripping/trimming)
a,b c,d e,f
- section_type is stored for the current line
- close_section flag is stored depending on if z is found.
'''
final_verts, final_edges = [], []
lines = [line for line in self.lines if line]
for line in lines:
self.determine_section_type(line)
if self.section_type in {'move_to_absolute', 'move_to_relative'}:
self.path_start_index = len(final_verts)
if self.section_type in (None, 'comment'):
continue
if self.section_type == 'close_now':
self.close_path(final_verts, final_edges)
break
if self.section_type == 'close_this_path':
terminator = [len(final_verts)-1, self.path_start_index]
final_edges.append(terminator)
continue
self.quickread_and_strip(line)
results = self.parse_path_line()
if results:
verts, edges = results
final_verts.extend(verts)
final_edges.extend(edges)
self.posxy = verts[-1]
self.previous_command = self.section_type
self.sanitize_edgekeys(final_verts, final_edges)
return final_verts, [final_edges]
def quickread_and_strip(self, line):
'''
closed segment detection. deal with closing with z or z as variable
if the user really needs z as last value and z is indeed a variable
and not intended to close a section, then you must add ;
'''
close_section = False
last_char = line.strip()[-1].lower()
if last_char in {'z', ';'}:
stripped_line = line.strip()[1:-1].strip()
close_section = (last_char == 'z')
else:
stripped_line = line.strip()[1:].strip()
self.stripped_line = stripped_line
self.close_section = close_section
def close_path(self, final_verts, final_edges):
'''
does the current last index refer to a non existing index?
this one can be removed then (immediately)
'''
if len(final_verts) in final_edges[-1]:
final_edges.pop()
''' but is the last vertex cooincident with the first vertex
thus allowing a closed loop. Let's check '''
last_edge_idx = final_edges[-1][1]
a = Vector(final_verts[0])
b = Vector(final_verts[last_edge_idx])
if (a-b).length < 0.0005:
final_edges[-1][1] = 0
final_verts.pop()
else:
print('here be dragons. last vertex is not close enough')
else:
'''
at this point there is probably distance between end
point and start..so this bridges the gap
'''
edges = [self.state_idx-1, 0]
final_edges.extend([edges])
def perform_MoveTo(self):
xy = self.get_2vec(self.stripped_line)
if self.section_type == 'move_to_absolute':
self.posxy = (xy[0], xy[1])
else:
self.posxy = self.relative(self.posxy, xy)
def perform_LineTo(self):
''' assumes you have posxy (current needle position) where you want it,
and draws a line from it to the first set of 2d coordinates, and
onwards till complete '''
intermediate_idx, line_data = self.push_forward()
tempstr = self.stripped_line.split(' ')
if self.section_type == 'line_to_absolute':
for t in tempstr:
sub_comp = self.get_2vec(t)
line_data.append(sub_comp)
self.state_idx += 1
else:
for t in tempstr:
sub_comp = self.get_2vec(t)
final = self.relative(self.posxy, sub_comp)
self.posxy = tuple(final)
line_data.append(final)
self.state_idx += 1
temp_edges = self.make_edges(intermediate_idx, line_data, -1)
return line_data, temp_edges
def perform_CurveTo(self):
'''
expects 5 params:
C x1,y1 x2,y2 x3,y3 num bool [z]
example:
C control1 control2 knot2 10 0 [z]
C control1 control2 knot2 20 1 [z]
'''
tempstr = self.stripped_line.split(' ')
if not len(tempstr) == 5:
print('error on line CurveTo: ', self.stripped_line)
return
''' fully defined '''
vec = lambda v: Vector((v[0], v[1], 0))
knot1 = [self.posxy[0], self.posxy[1]]
if self.section_type == 'bezier_curve_to_absolute':
handle1 = self.get_2vec(tempstr[0])
handle2 = self.get_2vec(tempstr[1])
knot2 = self.get_2vec(tempstr[2])
else:
points = []
for j in range(3):
point_pre = self.get_2vec(tempstr[j])
point = self.relative(self.posxy, point_pre)
points.append(point)
self.posxy = tuple(point)
handle1, handle2, knot2 = points
r = self.get_typed(tempstr[3], int)
s = self.get_typed(tempstr[4], int) # not used yet
bezier = vec(knot1), vec(handle1), vec(handle2), vec(knot2), r
points = interpolate_bezier(*bezier)
# parse down to 2d
points = [[v[0], v[1]] for v in points]
return self.find_right_index_and_make_edges(points)
def perform_ArcTo(self):
'''
expects 6 parameters:
A rx,ry rot flag1 flag2 x,y num_verts [z]
example:
A <2v xr,yr> <rot> <int-bool> <int-bool> <2v xend,yend> <int num_verts> [z]
'''
tempstr = self.stripped_line.split(' ')
if not len(tempstr) == 6:
print(tempstr)
print('error on ArcTo line: ', self.stripped_line)
return
points = []
start = complex(*self.posxy)
radius = complex(*self.get_2vec(tempstr[0]))
xaxis_rot = self.get_typed(tempstr[1], float)
flag1 = self.get_typed(tempstr[2], int)
flag2 = self.get_typed(tempstr[3], int)
# numverts, requires -1 else it means segments (21 verts is 20 segments).
num_verts = self.get_typed(tempstr[5], int) - 1
if self.section_type == 'arc_to_absolute':
end = complex(*self.get_2vec(tempstr[4]))
else:
xy_end_pre = self.get_2vec(tempstr[4])
xy_end_final = self.relative(self.posxy, xy_end_pre)
end = complex(*xy_end_final)
arc = Arc(start, radius, xaxis_rot, flag1, flag2, end)
theta = 1/num_verts
for i in range(num_verts+1):
point = arc.point(theta * i)
points.append(point)
return self.find_right_index_and_make_edges(points)
def find_right_index_and_make_edges(self, points):
'''
we drop the first point.
but maybe this should see if the previous commands was not a 'START'
because that would mean that the first point/vertex does need to be made
'''
c = continuation = 1
d = 1
if self.previous_command in {'START', 'move_to_absolute', 'move_to_relative'}:
c = 0
d = -1
points = points[c:]
self.state_idx -= c
intermediate_idx = self.state_idx
self.state_idx += (len(points) + c)
temp_edges = self.make_edges(intermediate_idx, points, d)
return points, temp_edges
def parse_path_line(self):
'''
This function gathers state for the current profile. It is run on every line of the
given file.
- will check lines for lowercase chars to remap, or will use the float/int values
- it expects to know the current line type
- it expects to have a valid value for the close_section variable
'''
t = self.section_type
if t in {'move_to_absolute', 'move_to_relative'}:
return self.perform_MoveTo()
elif t in {'line_to_absolute', 'line_to_relative'}:
return self.perform_LineTo()
elif t in {'bezier_curve_to_absolute', 'bezier_curve_to_relative'}:
return self.perform_CurveTo()
elif t in {'arc_to_absolute', 'arc_to_relative'}:
return self.perform_ArcTo()
def get_2vec(self, t):
components = t.split(',')
sub_comp = []
for component in components:
pushval = self.get_typed(component, float)
sub_comp.append(pushval)
return sub_comp
def get_typed(self, component, typed):
''' typed can be any castable type, int / float...etc ) '''
segments = self.segments
if component in segments:
pushval = segments[component]['data'][self.profile_idx]
elif self.is_component_wrapped(component):
pushval = self.parse_basic_statement(component)
elif self.is_component_simple_negation(component):
pushval = self.parse_negation(component)
else:
pushval = component
return typed(pushval)
def is_component_wrapped(self, component):
'''then we have a wrapped component, like (a+b)'''
return (len(component) > 2) and (component[0]+component[-1] == '()')
def is_component_simple_negation(self, comp):
return (len(comp) == 2) and (comp[0] == '-') and (comp[1] in self.segments)
def parse_negation(self, component):
return -(self.segments[component[1]]['data'][self.profile_idx])
def parse_basic_statement(self, component):
'''
turn: 'd-e-b+-a+1.223/2*4'
into: ['d','-','e','-','b','+','','-','a','+','1.223','/','2','*','4']
'''
# extract parens, but allow internal parens if needed.. internal parens
# are not supported in literal_eval.
side = component[1:-1]
pat = '([\(\)\-+*\/])'
chopped = re.split(pat, side)
# - replace known variable chars with intended variable
# - remove empty elements
for i, ch in enumerate(chopped):
if ch in self.segments:
chopped[i] = str(self.segments[ch]['data'][self.profile_idx])
chopped = [ch for ch in chopped if ch]
# - depending on the parsing mode, return found end value.
string_repr = ''.join(chopped).strip()
if self.extended_parsing:
code = parser.expr(string_repr).compile()
return eval(code)
else:
return literal_eval(string_repr)
def push_forward(self):
if self.previous_command in {'move_to_absolute', 'move_to_relative'}:
line_data = [[self.posxy[0], self.posxy[1]]]
intermediate_idx = self.state_idx
self.state_idx += 1
else:
line_data = []
intermediate_idx = self.state_idx
return intermediate_idx, line_data
def make_edges(self, intermediate_idx, line_data, offset):
start = intermediate_idx
end = intermediate_idx + len(line_data) + offset
temp_edges = [[i, i+1] for i in range(start, end)]
# move current needle to last position
if self.close_section:
closing_edge = [self.state_idx-1, intermediate_idx]
temp_edges.append(closing_edge)
self.posxy = tuple(line_data[0])
else:
self.posxy = tuple(line_data[-1])
return temp_edges
def index_viewer_adding(node):
""" adding new viewer index node if none """
if node.outputs[2].is_linked: return
loc = node.location
tree = bpy.context.space_data.edit_tree
links = tree.links
vi = tree.nodes.new('IndexViewerNode')
vi.location = loc+Vector((200,-100))
vi.draw_bg = True
links.new(node.outputs[2], vi.inputs[0]) #knots
links.new(node.outputs[3], vi.inputs[4]) #names
def float_add_if_selected(node):
""" adding new float node if selected knots """
if node.inputs[0].is_linked: return
loc = node.location
tree = bpy.context.space_data.edit_tree
links = tree.links
nu = tree.nodes.new('SvNumberNode')
nu.location = loc+Vector((-200,-150))
links.new(nu.outputs[0], node.inputs[0]) #number
def viewedraw_adding(node):
""" adding new viewer draw node node if none """
if node.outputs[0].is_linked: return
loc = node.location
tree = bpy.context.space_data.edit_tree
links = tree.links
vd = tree.nodes.new('ViewerNode2')
vd.location = loc+Vector((200,225))
links.new(node.outputs[0], vd.inputs[0]) #verts
links.new(node.outputs[1], vd.inputs[1]) #edges
class SvPrifilizer(bpy.types.Operator):
"""SvPrifilizer"""
bl_idname = "node.sverchok_profilizer"
bl_label = "SvPrifilizer"
bl_options = {'REGISTER', 'UNDO'}
nodename: StringProperty(name='nodename')
treename: StringProperty(name='treename')
knotselected: BoolProperty(description='if selected knots than use extended parsing in PN', default=False)
x: BoolProperty(default=True)
y: BoolProperty(default=True)
def stringadd(self, x,selected=False):
precision = bpy.data.node_groups[self.treename].nodes[self.nodename].precision
if selected:
if self.x: letterx = '+a'
else: letterx = ''
if self.y: lettery = '+a'
else: lettery = ''
a = '('+str(round(x[0], precision))+letterx+')' + ',' + '('+str(round(x[1], precision))+lettery+')' + ' '
self.knotselected = True
else:
a = str(round(x[0], precision)) + ',' + str(round(x[1], precision)) + ' '
return a
def curve_points_count(self):
count = bpy.data.node_groups[self.treename].nodes[self.nodename].curve_points_count
return str(count)
def execute(self, context):
node = bpy.data.node_groups[self.treename].nodes[self.nodename]
precision = node.precision
subdivisions = node.curve_points_count
if not bpy.context.selected_objects:
print('Pofiler: Select curve!')
self.report({'INFO'}, 'Select CURVE first')
return {'CANCELLED'}
if not bpy.context.selected_objects[0].type == 'CURVE':
print('Pofiler: NOT a curve selected')
self.report({'INFO'}, 'It is not a curve selected for profiler')
return {'CANCELLED'}
objs = bpy.context.selected_objects
names = str([o.name for o in objs])[1:-2]
# test for POLY or NURBS curve types, these are not yet supported
spline_type = objs[0].data.splines[0].type
if spline_type in {'POLY', 'NURBS'}:
msg = 'Pofiler: does not support {0} curve type yet'.format(spline_type)
print(msg)
self.report({'INFO'}, msg)
return {'CANCELLED'}
# collect paths
op = []
clos = []
for obj in objs:
for spl in obj.data.splines:
op.append(spl.bezier_points)
clos.append(spl.use_cyclic_u)
# define path to text
values = '# Here is autogenerated values, \n# Please, rename text to avoid data loose.\n'
values += '# Objects are: \n# %a' % (names)+'.\n'
values += '# Object origin should be at 0,0,0. \n'
values += '# Property panel has precision %a \n# and curve subdivision %s.\n\n' % (precision,subdivisions)
# also future output for viewer indices
out_points = []
out_names = []
ss = 0
for ob_points, clo in zip(op,clos):
values += '# Spline %a\n' % (ss)
ss += 1
# handles preperation
curves_left = [i.handle_left_type for i in ob_points]
curves_right = ['v']+[i.handle_right_type for i in ob_points][:-1]
# first collect C,L values to compile them later per point
types = ['FREE','ALIGNED','AUTO']
curves = ['C ' if x in types or c in types else 'L ' for x,c in zip(curves_left,curves_right)]
# line for if curve was before line or not
line = False
curve = False
for i,c in zip(range(len(ob_points)),curves):
co = ob_points[i].co
if not i:
# initial value
values += '\n'
values += 'M '
co = ob_points[0].co[:]
values += self.stringadd(co,ob_points[0].select_control_point)
values += '\n'
out_points.append(co)
out_names.append(['M.0'])
# pass if first 'M' that was used already upper
continue
elif c == 'C ':
values += '\n'
values += '#C.'+str(i)+'\n'
values += c
hr = ob_points[i-1].handle_right[:]
hl = ob_points[i].handle_left[:]
# hr[0]hr[1]hl[0]hl[1]co[0]co[1] 20 0
values += self.stringadd(hr,ob_points[i-1].select_right_handle)
values += self.stringadd(hl,ob_points[i].select_left_handle)
values += self.stringadd(co,ob_points[i].select_control_point)
values += self.curve_points_count()
values += ' 0 '
if curve:
values += '\n'
out_points.append(hr[:])
out_points.append(hl[:])
out_points.append(co[:])
#namecur = ['C.'+str(i)]
out_names.extend([['C.'+str(i)+'h1'],['C.'+str(i)+'h2'],['C.'+str(i)+'k']])
line = False
curve = True
elif c == 'L ' and not line:
if curve:
values += '\n'
values += '#L.'+str(i)+'...'+'\n'
values += c
values += self.stringadd(co,ob_points[i].select_control_point)
out_points.append(co[:])
out_names.append(['L.'+str(i)])
line = True
curve = False
elif c == 'L ' and line:
values += self.stringadd(co,ob_points[i].select_control_point)
out_points.append(co[:])
out_names.append(['L.'+str(i)])
if clo:
if ob_points[0].handle_left_type in types or ob_points[-1].handle_right_type in types:
line = False
values += '\n'
values += '#C.'+str(i+1)+'\n'
values += 'C '
hr = ob_points[-1].handle_right[:]
hl = ob_points[0].handle_left[:]
# hr[0]hr[1]hl[0]hl[1]co[0]co[1] 20 0
values += self.stringadd(hr,ob_points[-1].select_right_handle)
values += self.stringadd(hl,ob_points[0].select_left_handle)
values += self.stringadd(ob_points[0].co,ob_points[0].select_control_point)
values += self.curve_points_count()
values += ' 0 '
values += '\n'
out_points.append(hr[:])
out_points.append(hl[:])
out_names.extend([['C.'+str(i+1)+'h1'],['C.'+str(i+1)+'h2']])
# preserving overlapping
#out_points.append(ob_points[0].co[:])
#out_names.append(['C'])
if not line:
# hacky way till be fixed x for curves not only for lines
values += '# hacky way till be fixed x\n# for curves not only for lines'
values += '\nL ' + self.stringadd(ob_points[0].co,ob_points[0].select_control_point)
values += '\nx \n\n'
else:
values += '\nx \n\n'
if self.knotselected:
values += '# expression (#+a) added because \n# you selected knots in curve'
self.write_values(self.nodename, values)
#print(values)
node.filename = self.nodename
#print([out_points], [out_names])
# sharing data to node:
node.SvLists.clear()
node.SvSubLists.clear()
node.SvLists.add().name = 'knots'
for k in out_points:
item = node.SvLists['knots'].SvSubLists.add()
item.SvX, item.SvY, item.SvZ = k
#lll = node.SvLists['knots'].SvSubLists[0]
#print(lll.SvX,lll.SvY,lll.SvZ)
node.SvLists.add().name = 'knotsnames'
for k in out_names:
item = node.SvLists['knotsnames'].SvSubLists.add()
item.SvName = k[0]
#print(k[0])
index_viewer_adding(node)
node.extended_parsing = self.knotselected
viewedraw_adding(node)
if self.knotselected:
float_add_if_selected(node)
#print(node.SvLists['knotsnames'].SvSubLists[0].SvName)
return{'FINISHED'}
def write_values(self,text,values):
texts = bpy.data.texts.items()
exists = False
for t in texts:
if bpy.data.texts[t[0]].name == text:
exists = True
break
if not exists:
bpy.data.texts.new(text)
bpy.data.texts[text].clear()
bpy.data.texts[text].write(values)
class SvProfileNodeMK2(SverchCustomTreeNode, bpy.types.Node):
'''
Triggers: svg-like 2d profiles
Tooltip: Generate multiple parameteric 2d profiles using SVG like syntax
SvProfileNode generates one or more profiles / elevation segments using;
assignments, variables, and a string descriptor similar to SVG.
This node expects simple input, or vectorized input.
- sockets with no input are automatically 0, not None
- The longest input array will be used to extend the shorter ones, using last value repeat.
'''
bl_idname = 'SvProfileNodeMK2'
bl_label = 'Profile Parametric'
bl_icon = 'SYNTAX_ON'
replacement_nodes = [('SvProfileNodeMK3', None, None)]
SvLists: bpy.props.CollectionProperty(type=SvListGroup)
SvSubLists: bpy.props.CollectionProperty(type=SvSublistGroup)
def mode_change(self, context):
if not (self.selected_axis == self.current_axis):
self.label = self.selected_axis
self.current_axis = self.selected_axis
updateNode(self, context)
x: BoolProperty(default=True)
y: BoolProperty(default=True)
axis_options = [("X", "X", "", 0), ("Y", "Y", "", 1), ("Z", "Z", "", 2)]
current_axis: StringProperty(default='Z')
knotsnames: StringProperty(name='knotsnames', default='')
selected_axis: EnumProperty(
items=axis_options, update=mode_change, name="Type of axis",
description="offers basic axis output vectors X|Y|Z", default="Z")
profile_file: StringProperty(default="", update=updateNode)
filename: StringProperty(default="", update=updateNode)
posxy: FloatVectorProperty(default=(0.0, 0.0), size=2)
extended_parsing: BoolProperty(default=False)
precision: IntProperty(
name="Precision", min=0, max=10, default=8, update=updateNode,
description="decimal precision of coordinates when generating profile from selection")
curve_points_count: IntProperty(
name="Curve points count", min=1, max=100, default=20, update=updateNode,
description="Default number of points on curve segment")
def draw_buttons(self, context, layout):
col = layout.column(align=True)
row = col.row()
do_text = row.operator('node.sverchok_profilizer', text='from selection')
do_text.nodename = self.name
do_text.treename = self.id_data.name
do_text.x = self.x
do_text.y = self.y
row = col.row()
row.prop(self, 'selected_axis', expand=True)
row = col.row(align=True)
# row.prop(self, "profile_file", text="")
row.prop_search(self, 'filename', bpy.data, 'texts', text='', icon='TEXT')
def draw_buttons_ext(self, context, layout):
row = layout.row(align=True)
row.prop(self, "extended_parsing", text="extended parsing")
layout.label(text="Profile Generator settings")
layout.prop(self, "precision")
layout.prop(self, "curve_points_count")
row = layout.row(align=True)
row.prop(self, "x",text='x-affect', expand=True)
row.prop(self, "y",text='y-affect', expand=True)
def sv_init(self, context):
self.inputs.new('SvStringsSocket', "a")
self.inputs.new('SvStringsSocket', "b")
self.outputs.new('SvVerticesSocket', "Verts")
self.outputs.new('SvStringsSocket', "Edges")
self.outputs.new('SvVerticesSocket', "Knots")
self.outputs.new('SvStringsSocket', "KnotsNames")
def adjust_inputs(self):
'''
takes care of adding new inputs until reaching 26,
'''
inputs = self.inputs
if inputs[-1].is_linked:
new_index = len(inputs)
new_letter = idx_map.get(new_index, None)
if new_letter:
inputs.new('SvStringsSocket', new_letter, new_letter)
else:
print('this implementation goes up to 26 chars only, use SN or EK')
print('- or contact Dealga')
elif not inputs[-2].is_linked:
inputs.remove(inputs[-1])
def sv_update(self):
'''
update analyzes the state of the node and returns if the criteria to start processing
are not met.
'''
# keeping the file internal for now.
if not (self.filename in bpy.data.texts):
return
if not ('KnotsNames' in self.outputs):
return
elif len([1 for inputs in self.inputs if inputs.is_linked]) == 0:
''' must have at least one input... '''
return
self.adjust_inputs()
def homogenize_input(self, segments, longest):
'''
edit segments in place, extend all to match length of longest
'''
for letter, letter_dict in segments.items():
if letter_dict['length'] < longest:
fullList(letter_dict['data'], longest)
def meta_get(self, s_name, fallback, level):
'''
private function for the get_input function, accepts level 0..2
- if socket has no links, then return fallback value
- s_name can be an index instead of socket name
'''
inputs = self.inputs
if inputs[s_name].is_linked:
socket_in = inputs[s_name].sv_get()
if level == 1:
data = dataCorrect(socket_in)[0]
elif level == 2:
data = dataCorrect(socket_in)[0][0]
else:
data = dataCorrect(socket_in)
return data
else:
return fallback
def get_input(self):
'''
collect all input socket data, and track the longest sequence.
'''
segments = {}
longest = 0
for i, input_ in enumerate(self.inputs):
letter = idx_map[i]
''' get socket data, or use a fallback '''
data = self.meta_get(i, [0], 2)
num_datapoints = len(data)
segments[letter] = {'length': num_datapoints, 'data': data}
if num_datapoints > longest:
longest = num_datapoints
return segments, longest
def process(self):
if not self.outputs[0].is_linked:
return
segments, longest = self.get_input()
if longest < 1:
print('logic error, longest < 1')
return
self.homogenize_input(segments, longest)
full_result_verts = []
full_result_edges = []
for idx in range(longest):
path_object = PathParser(self, segments, idx)
vertices, edges = path_object.get_geometry()
axis_fill = {
'X': lambda coords: (0, coords[0], coords[1]),
'Y': lambda coords: (coords[0], 0, coords[1]),
'Z': lambda coords: (coords[0], coords[1], 0)
}.get(self.current_axis)
vertices = list(map(axis_fill, vertices))
full_result_verts.append(vertices)
full_result_edges.append(edges)
if full_result_verts:
outputs = self.outputs
outputs['Verts'].sv_set(full_result_verts)
if outputs['Edges'].is_linked:
outputs['Edges'].sv_set(full_result_edges)
try:
knots = []
for knot in self.SvLists['knots'].SvSubLists:
knots.append([knot.SvX,knot.SvY,knot.SvZ])
#print('test',knots)
outputs[2].sv_set([knots])
except:
outputs[2].sv_set([])
try:
names = []
for i,knot in enumerate(self.SvLists['knotsnames'].SvSubLists):
names.append([knot.SvName])
outputs[3].sv_set([names])
except:
outputs[3].sv_set([])
def load_from_json(self, node_data: dict, import_version: float):
if import_version < 1.0:
file_name = node_data['params']['filename']
else:
file_name = self.filename
texts = bpy.data.texts
new_text = texts.new(file_name)
new_text.from_string(node_data['path_file'])
self.update()
self.SvLists.clear()
strings_json = node_data['profile_sublist_storage']
out_points = json.loads(strings_json)['knots']
self.SvLists.add().name = 'knots'
for k in out_points:
item = self.SvLists['knots'].SvSubLists.add()
item.SvX, item.SvY, item.SvZ = k
out_names = json.loads(strings_json)['knotsnames']
self.SvLists.add().name = 'knotsnames'
for k in out_names:
item = self.SvLists['knotsnames'].SvSubLists.add()
item.SvName = k
def save_to_json(self, node_data: dict):
local_storage = {'knots': [], 'knotsnames': []}
if "knots" in self.SvLists:
# implies "knotsnames" will be found too.. because that's how it works..
for knot in self.SvLists['knots'].SvSubLists:
local_storage['knots'].append([knot.SvX, knot.SvY, knot.SvZ])
for outname in self.SvLists['knotsnames'].SvSubLists:
local_storage['knotsnames'].append(outname.SvName)
# store anyway
node_data['profile_sublist_storage'] = json.dumps(local_storage, sort_keys=True)
if self.filename:
node_data['path_file'] = bpy.data.texts[self.filename].as_string()
else:
node_data['path_file'] = ""
classes = SvSublistGroup, SvListGroup, SvProfileNodeMK2, SvPrifilizer
def register():
_ = [register_class(cls) for cls in classes]
def unregister():
_ = [unregister_class(cls) for cls in reversed(classes)]