Newer
Older
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
# ##### 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 #####
'''
DESCRIPTION
Translates objects using anchor and target points.
Emulates the functionality of the standard 'rectangle' command in CAD applications, with start and end points. This way, it does pretty much what the basic 'grab' function does, only it locks the snap ability to one designated point in selected group, giving more control and precision to the user.
INSTALATION
Two ways:
A. Paste the the .py file to text editor and run (ALT+P)
B. Unzip and place .py file to addons_contrib. In User Preferences / Addons tab search under Testing / NP Anchor Translate and check the box.
Now you have the operator in your system. If you press Save User Preferences, you will have it at your disposal every time you run Bl.
SHORTCUTS
After succesful instalation of the addon, or it's activation from the text editor, the NP Float Rectangle operator should be registered in your system. Enter User Preferences / Input, and under that, 3DView / Object Mode. Search for definition assigned to simple M key (provided that you don't use it for placing objects into layers, instead of now almost-standard 'Layer manager' addon) and instead object.move_to_layer, type object.np_xxx_float_rectangle (xxx being the number of the version). I suggest asigning hotkey only for the Object Mode because the addon doesn't work in other modes. Also, this way the basic G command should still be available and at your disposal.
USAGE
Select one or more objects.
Run operator (spacebar search - NP Anchor Translate, or keystroke if you assigned it)
Select a point anywhere in the scene (holding CTRL enables snapping). This will be your anchor point.
Place objects anywhere in the scene, in relation to the anchor point (again CTRL - snap).
Middle mouse button (MMB) enables axis constraint, numpad keys enable numerical input of distance, and RMB and ESC key interrupt the operation.
IMPORTANT PERFORMANCE NOTES
Should be key-mapped only for Object Mode. Other modes are not supported and key definitions should not be replaced.
WISH LIST
Bgl overlay for snapping modes and eventualy the translate path
Blf instructions on screen, preferably interactive
Smarter code and faster performance
WARNINGS
None so far
'''
bl_info = {
'name': 'NP 020 Float Rectangle',
'author': 'Okavango & the Blenderartists community',
'version': (0, 2, 0),
'blender': (2, 75, 0),
'location': 'View3D',
'warning': '',
'description': 'Draws a mesh rectangle using snap points',
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
'category': '3D View'}
import bpy
import copy
import bgl
import blf
import mathutils
from mathutils import *
from math import *
#from math import sin, cos, tan, atan, degrees, radians, asin, acos
from bpy_extras import view3d_utils
from bpy.app.handlers import persistent
from .utils_geometry import *
from .utils_graphics import *
from .utils_function import *
# Defining the main class - the macro:
class NP020FloatRectangle(bpy.types.Macro):
bl_idname = 'object.np_020_float_rectangle'
bl_label = 'NP 020 Float Rectangle'
bl_options = {'UNDO'}
# Defining the storage class that will serve as a variable bank for exchange among the classes. Later, this bank will receive more variables with their values for safe keeping, as the program goes on:
class NP020FR:
flag = 'RUNTRANS0'
recob = None
# Defining the scene update algorithm that will track the state of the objects during modal transforms, which is otherwise impossible:
'''
@persistent
def NPFR_scene_update(context):
if bpy.data.objects.is_updated:
rv3d = bpy.context.region_data
helper = NP020FR.helper
co = helper.location
'''
# Defining the first of the classes from the macro, that will gather the current system settings set by the user. Some of the system settings will be changed during the process, and will be restored when macro has completed.
class NPFRGetContext(bpy.types.Operator):
bl_idname = 'object.np_fr_get_context'
bl_label = 'NP FR Get Context'
bl_options = {'INTERNAL'}
def execute(self, context):
NP020FR.use_snap = copy.deepcopy(bpy.context.tool_settings.use_snap)
NP020FR.snap_element = copy.deepcopy(bpy.context.tool_settings.snap_element)
NP020FR.snap_target = copy.deepcopy(bpy.context.tool_settings.snap_target)
NP020FR.pivot_point = copy.deepcopy(bpy.context.space_data.pivot_point)
NP020FR.trans_orient = copy.deepcopy(bpy.context.space_data.transform_orientation)
NP020FR.curloc = copy.deepcopy(bpy.context.scene.cursor.location)
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
NP020FR.acob = bpy.context.active_object
if bpy.context.mode == 'OBJECT':
NP020FR.edit_mode = 'OBJECT'
elif bpy.context.mode in ('EDIT_MESH', 'EDIT_CURVE', 'EDIT_SURFACE', 'EDIT_TEXT', 'EDIT_ARMATURE', 'EDIT_METABALL', 'EDIT_LATTICE'):
NP020FR.edit_mode = 'EDIT'
elif bpy.context.mode == 'POSE':
NP020FR.edit_mode = 'POSE'
elif bpy.context.mode == 'SCULPT':
NP020FR.edit_mode = 'SCULPT'
elif bpy.context.mode == 'PAINT_WEIGHT':
NP020FR.edit_mode = 'WEIGHT_PAINT'
elif bpy.context.mode == 'PAINT_TEXTURE':
NP020FR.edit_mode = 'TEXTURE_PAINT'
elif bpy.context.mode == 'PAINT_VERTEX':
NP020FR.edit_mode = 'VERTEX_PAINT'
elif bpy.context.mode == 'PARTICLE':
NP020FR.edit_mode = 'PARTICLE_EDIT'
return {'FINISHED'}
# Defining the operator for aquiring the list of selected objects and storing them for later re-calls:
class NPFRGetSelection(bpy.types.Operator):
bl_idname = 'object.np_fr_get_selection'
bl_label = 'NP FR Get Selection'
bl_options = {'INTERNAL'}
def execute(self, context):
# Reading and storing the selection:
NP020FR.selob = bpy.context.selected_objects
return {'FINISHED'}
# Defining the operator that will read the mouse position in 3D when the command is activated and store it as a location for placing the helper object under the mouse:
class NPFRGetMouseloc(bpy.types.Operator):
bl_idname = 'object.np_fr_get_mouseloc'
bl_label = 'NP FR Get Mouseloc'
bl_options = {'INTERNAL'}
def modal(self, context, event):
region = context.region
rv3d = context.region_data
co2d = ((event.mouse_region_x, event.mouse_region_y))
view_vector = view3d_utils.region_2d_to_vector_3d(region, rv3d, co2d)
enterloc = view3d_utils.region_2d_to_origin_3d(region, rv3d, co2d) + view_vector*100
NP020FR.enterloc = copy.deepcopy(enterloc)
np_print('02_GetMouseloc_FINISHED', ';', 'NP020FR.flag = ', NP020FR.flag)
return{'FINISHED'}
def invoke(self,context,event):
args = (self, context)
context.window_manager.modal_handler_add(self)
np_print('02_GetMouseloc_INVOKED_FINISHED', ';', 'NP020FR.flag = ', NP020FR.flag)
return {'RUNNING_MODAL'}
# Defining the operator that will generate the helper object at the spot marked by mouse, preparing for translation:
class NPFRAddHelper(bpy.types.Operator):
bl_idname = 'object.np_fr_add_helper'
bl_label = 'NP FR Add Helper'
bl_options = {'INTERNAL'}
def execute(self, context):
np_print('03_AddHelper_START', ';', 'NP020FR.flag = ', NP020FR.flag)
enterloc = NP020FR.enterloc
bpy.ops.object.add(type = 'MESH',location = enterloc)
helper = bpy.context.active_object
helper.name = 'NP_FR_helper'
NP020FR.helper = helper
np_print('03_AddHelper_FINISHED', ';', 'NP020FR.flag = ', NP020FR.flag)
return{'FINISHED'}
# Defining the operator that will change some of the system settings and prepare objects for the operation:
class NPFRPrepareContext(bpy.types.Operator):
bl_idname = 'object.np_fr_prepare_context'
bl_label = 'NP FR Prepare Context'
bl_options = {'INTERNAL'}
def execute(self, context):
flag = NP020FR.flag
np_print('prepare, NP020FR.flag = ', flag)
if flag == 'RUNTRANS0':
helper = NP020FR.helper
bpy.ops.object.select_all(action = 'DESELECT')
bpy.context.view_layer.objects.active = helper
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
bpy.context.tool_settings.use_snap = False
bpy.context.tool_settings.snap_element = 'VERTEX'
bpy.context.tool_settings.snap_target = 'ACTIVE'
bpy.context.space_data.pivot_point = 'ACTIVE_ELEMENT'
bpy.context.space_data.transform_orientation = 'GLOBAL'
NP020FR.corner_brush = False
NP020FR.constrain = False
NP020FR.trans_custom = False
NP020FR.qdef = None
NP020FR.ndef = Vector((0.0, 0.0, 1.0))
NP020FR.ro_hor_def = 0
elif flag == 'RUNTRANS1_break':
NP020FR.flag = 'RUNTRANS1'
corner_brush = NP020FR.corner_brush
helper = NP020FR.helper
pointloc = NP020FR.pointloc
loc = copy.deepcopy(helper.location)
ndef = NP020FR.ndef
'''
matrix = NP020FR.matrix
np_print('matrix =' , matrix)
matrix_world = helper.matrix_world.to_3x3()
np_print('matrix_world =' , matrix_world)
matrix_world.rotate(matrix)
matrix_world.resize_4x4()
helper.matrix_world = matrix_world
helper.location = pointloc
bpy.ops.object.select_all(action = 'DESELECT')
helper.select = True
'''
ro_hor_def = NP020FR.ro_hor_def
ang_hor = ro_hor_def.to_euler()
ang_hor = ang_hor[2]
v1 = helper.location
v2 = helper.location + Vector ((0.0, 0.0, 1.0))
v3 = helper.location + ndef
rot_axis = Vector((1.0, 0.0, 0.0))
rot_axis.rotate(ro_hor_def)
rot_ang = Vector((0.0, 0.0, 1.0)).angle(ndef)
np_print('rot_axis, rot_ang =', rot_axis, rot_ang)
bpy.ops.object.select_all(action = 'DESELECT')
if corner_brush == False: helper.location = pointloc
bpy.ops.transform.rotate(value = ang_hor ,axis = Vector((0.0, 0.0, 1.0)))
bpy.ops.transform.rotate(value = rot_ang ,axis = rot_axis)
NP020FR.trans_custom = True
bpy.ops.transform.create_orientation(use = True)
bpy.context.view_layer.objects.active = helper
bpy.context.tool_settings.use_snap = False
bpy.context.tool_settings.snap_element = 'VERTEX'
bpy.context.tool_settings.snap_target = 'ACTIVE'
bpy.context.space_data.pivot_point = 'ACTIVE_ELEMENT'
elif flag == 'RUNTRANS2':
helper = NP020FR.helper
ndef = NP020FR.ndef
bpy.context.view_layer.objects.active = helper
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
bpy.context.tool_settings.use_snap = False
bpy.context.tool_settings.snap_element = 'VERTEX'
bpy.context.tool_settings.snap_target = 'ACTIVE'
bpy.context.space_data.pivot_point = 'ACTIVE_ELEMENT'
return{'FINISHED'}
# Defining the operator that will let the user translate the helper to the desired point. It also uses some listening operators that clean up the leftovers should the user interrupt the command. Many thanks to CoDEmanX and lukas_t:
class NPFRRunTranslate(bpy.types.Operator):
bl_idname = 'object.np_fr_run_translate'
bl_label = 'NP FR Run Translate'
bl_options = {'INTERNAL'}
if NP020FR.flag == 'RUNTRANS0': np_print('04_RunTrans_START',';','NP020FR.flag = ', NP020FR.flag)
elif NP020FR.flag == 'RUNTRANS1': np_print('05_RunTrans_START',';','NP020FR.flag = ', NP020FR.flag)
elif NP020FR.flag == 'RUNTRANS2': np_print('06_RunTrans_START',';','NP020FR.flag = ', NP020FR.flag)
def modal(self, context, event):
context.area.tag_redraw()
flag = NP020FR.flag
helper = NP020FR.helper
if event.ctrl and event.type in ('LEFTMOUSE', 'NUMPAD_ENTER', 'SPACE'):
bpy.types.SpaceView3D.draw_handler_remove(self._handle, 'WINDOW')
self.co2d = ((event.mouse_region_x, event.mouse_region_y))
if flag == 'RUNTRANS0':
NP020FR.p0 = copy.deepcopy(helper.location)
NP020FR.ndef = copy.deepcopy(NP020FR.n)
NP020FR.qdef = copy.deepcopy(NP020FR.q)
NP020FR.ro_hor_def = copy.deepcopy(NP020FR.ro_hor)
NP020FR.corner_brush = True
NP020FR.flag = 'RUNTRANS1_break'
elif flag == 'RUNTRANS1':
NP020FR.p1 = copy.deepcopy(helper.location)
NP020FR.flag = 'RUNTRANS2'
elif flag == 'RUNTRANS2':
NP020FR.p2 = copy.deepcopy(helper.location)
NP020FR.rectangle[2] = NP020FR.p2
NP020FR.rectangle[3] = NP020FR.p0 + (NP020FR.p2 - NP020FR.p1)
NP020FR.flag = 'GENERATE'
np_print('04_RunTrans_left_enter_FINISHED',';','NP020FR.flag = ', NP020FR.flag)
return{'FINISHED'}
elif event.type in ('LEFTMOUSE', 'NUMPAD_ENTER', 'SPACE') and event.value == 'RELEASE':
bpy.types.SpaceView3D.draw_handler_remove(self._handle, 'WINDOW')
self.co2d = ((event.mouse_region_x, event.mouse_region_y))
if flag == 'RUNTRANS0':
NP020FR.p0 = copy.deepcopy(NP020FR.pointloc)
NP020FR.ndef = copy.deepcopy(NP020FR.n)
NP020FR.qdef = copy.deepcopy(NP020FR.q)
NP020FR.ro_hor_def = copy.deepcopy(NP020FR.ro_hor)
NP020FR.flag = 'RUNTRANS1_break'
elif flag == 'RUNTRANS1':
NP020FR.p1 = copy.deepcopy(helper.location)
NP020FR.flag = 'RUNTRANS2'
elif flag == 'RUNTRANS2':
NP020FR.p2 = copy.deepcopy(helper.location)
NP020FR.rectangle[2] = NP020FR.p2
NP020FR.rectangle[3] = NP020FR.p0 + (NP020FR.p2 - NP020FR.p1)
NP020FR.flag = 'GENERATE'
np_print('04_RunTrans_left_enter_FINISHED',';','NP020FR.flag = ', NP020FR.flag)
return{'FINISHED'}
elif event.type == 'RET':
bpy.types.SpaceView3D.draw_handler_remove(self._handle, 'WINDOW')
if flag == 'RUNTRANS0':
NP020FR.ndef = copy.deepcopy(NP020FR.n)
NP020FR.qdef = copy.deepcopy(NP020FR.q)
NP020FR.ro_hor_def = copy.deepcopy(NP020FR.ro_hor)
NP020FR.constrain = True
elif flag == 'RUNTRANS1':
NP020FR.p1 = copy.deepcopy(helper.location)
NP020FR.flag = 'RUNTRANS2'
elif flag == 'RUNTRANS2':
NP020FR.p2 = copy.deepcopy(helper.location)
NP020FR.flag = 'GENERATE'
np_print('04_RunTrans_right_FINISHED',';','NP020FR.flag = ', NP020FR.flag)
return{'FINISHED'}
elif event.type in ('ESC', 'RIGHTMOUSE'):
bpy.types.SpaceView3D.draw_handler_remove(self._handle, 'WINDOW')
NP020FR.flag = 'EXIT'
np_print('04_RunTrans_esc_right_FINISHED',';','NP020FR.flag = ', NP020FR.flag)
return{'FINISHED'}
np_print('04_RunTrans_count_PASS_THROUGH',';','NP020FR.flag = ', NP020FR.flag)
return{'PASS_THROUGH'}
def invoke(self, context, event):
np_print('04_RunTrans_INVOKE_START')
helper = NP020FR.helper
flag = NP020FR.flag
selob = NP020FR.selob
if context.area.type == 'VIEW_3D':
if flag in ('RUNTRANS0', 'RUNTRANS1', 'RUNTRANS2'):
self.co2d = ((event.mouse_region_x, event.mouse_region_y))
args = (self, context)
self._handle = bpy.types.SpaceView3D.draw_handler_add(DRAW_Overlay, args, 'WINDOW', 'POST_PIXEL')
context.window_manager.modal_handler_add(self)
if flag == 'RUNTRANS0':
bpy.ops.transform.translate('INVOKE_DEFAULT')
np_print('04_RunTrans1_INVOKED_RUNNING_MODAL',';','NP020FR.flag = ', NP020FR.flag)
if flag == 'RUNTRANS1':
bpy.ops.transform.translate('INVOKE_DEFAULT', constraint_axis=(True, False, False))
np_print('04_RunTrans1_INVOKED_RUNNING_MODAL',';','NP020FR.flag = ', NP020FR.flag)
if flag == 'RUNTRANS2':
bpy.ops.transform.translate('INVOKE_DEFAULT', constraint_axis=(False, True, False))
np_print('04_RunTrans1_INVOKED_RUNNING_MODAL',';','NP020FR.flag = ', NP020FR.flag)
return {'RUNNING_MODAL'}
else:
np_print('04_RunTrans_INVOKE_DECLINED_wrong_flag_FINISHED',';','NP020FR.flag = ', NP020FR.flag)
return {'FINISHED'}
else:
self.report({'WARNING'}, "View3D not found, cannot run operator")
NP020FR.flag = 'EXIT'
np_print('04_RunTrans_INVOKE_DECLINED_no_VIEW_3D_FINISHED',';','NP020FR.flag = ', NP020FR.flag)
return {'FINISHED'}
# Defining the set of instructions that will draw the OpenGL elements on the screen during the execution of RunTranslate operator:
def DRAW_Overlay(self, context):
np_print('DRAW_Overlay_START',';','NP020FR.flag = ', NP020FR.flag)
'''
addon_prefs = context.preferences.addons[__package__].preferences
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
badge = addon_prefs.npfr_badge
badge_size = addon_prefs.npfr_badge_size
dist_scale = addon_prefs.npfr_dist_scale
'''
flag = NP020FR.flag
helper = NP020FR.helper
matrix = helper.matrix_world.to_3x3()
region = bpy.context.region
rv3d = bpy.context.region_data
rw = region.width
rh = region.height
qdef = NP020FR.qdef
ndef = NP020FR.ndef
ro_hor_def = NP020FR.ro_hor_def
constrain = NP020FR.constrain
np_print('rw, rh', rw, rh)
rmin = int(min(rw, rh) / 50)
if rmin == 0: rmin = 1
co2d = view3d_utils.location_3d_to_region_2d(region, rv3d, helper.location)
if qdef != None and constrain == False:
q = qdef
n = ndef
pointloc = helper.location
ro_hor = ro_hor_def
elif qdef != None and constrain == True:
q = qdef
n = ndef
pointloc = get_ro_normal_from_vertical(region, rv3d, co2d)[2]
ro_hor = ro_hor_def
else:
q = get_ro_normal_from_vertical(region, rv3d, co2d)[1]
n = get_ro_normal_from_vertical(region, rv3d, co2d)[0]
pointloc = get_ro_normal_from_vertical(region, rv3d, co2d)[2]
ro_hor, isohipse = get_ro_x_from_iso(region, rv3d, co2d, helper.location)
if pointloc == Vector((0.0, 0.0, 0.0)): pointloc = helper.location
np_print('n / q', n, q)
NP020FR.q = q
NP020FR.n = n
NP020FR.pointloc = pointloc
NP020FR.ro_hor = ro_hor
np_print('co2d, n, q', co2d, n, q)
# Acquiring factor for graphics scaling in order to be space - independent
fac = get_fac_from_view_loc_plane(region, rv3d, rmin, helper.location, q)
NP020FR.fac = fac
symbol = [[18, 37], [21, 37], [23, 33], [26, 33]]
badge_mode = 'RUN'
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
matrix.rotate(ro_hor)
matrix.rotate(qdef)
NP020FR.matrix = matrix
if flag == 'RUNTRANS0':
instruct = 'choose plane / place corner point'
keys_aff = 'LMB - select, CTRL - snap, ENT - lock plane'
keys_nav = ''
keys_neg = 'ESC, RMB - quit'
rectangle = [helper.location, helper.location, helper.location, helper.location]
message_main = 'CTRL+SNAP'
message_aux = None
aux_num = None
aux_str = None
elif flag == 'RUNTRANS1':
instruct = 'define the width of the rectangle'
keys_aff = 'LMB - select, CTRL - snap, NUMPAD - value'
keys_nav = ''
keys_neg = 'ESC, RMB - quit'
p0 = NP020FR.p0
rectangle = [p0, helper.location, helper.location, helper.location]
message_main = 'CTRL+SNAP'
message_aux = None
aux_num = None
aux_str = None
elif flag == 'RUNTRANS2':
instruct = 'define the length of the rectangle'
keys_aff = 'LMB - select, CTRL - snap, NUMPAD - value'
keys_nav = ''
keys_neg = 'ESC, RMB - quit'
p0 = NP020FR.p0
p1 = NP020FR.p1
rectangle = [p0, p1, helper.location, p0 + (helper.location-p1)]
message_main = 'CTRL+SNAP'
message_aux = None
aux_num = None
aux_str = None
# ON-SCREEN INSTRUCTIONS:
display_instructions(region, rv3d, instruct, keys_aff, keys_nav, keys_neg)
NP020FR.rectangle = rectangle
# drawing of rectangle:
rectangle_2d = []
bgl.glEnable(bgl.GL_BLEND)
bgl.glColor4f(1.0, 1.0, 1.0, 1.0)
bgl.glLineWidth(1)
bgl.glBegin(bgl.GL_LINE_STRIP)
for i, co in enumerate(rectangle):
co = view3d_utils.location_3d_to_region_2d(region, rv3d, co)
bgl.glVertex2f(*co)
rectangle_2d.append(co)
bgl.glVertex2f(*rectangle_2d[0])
bgl.glEnd()
bgl.glColor4f(1.0, 1.0, 1.0, 0.25)
bgl.glBegin(bgl.GL_TRIANGLE_FAN)
for i, co in enumerate(rectangle_2d):
bgl.glVertex2f(*co)
bgl.glEnd()
# Drawing the small badge near the cursor with the basic instructions:
display_cursor_badge(co2d, symbol, badge_mode, message_main, message_aux, aux_num, aux_str)
# writing the dots for recwidget widget at center of scene:
geowidget_base = [(0.0 ,0.0 ,0.0), (5.0 ,0.0 ,0.0), (5.0 ,-3.0 ,0.0), (0.0, -3.0 ,0.0)]
geowidget_top = None
geowidget_rest = None
# ON-SCREEN DISPLAY OF GEOWIDGET:
display_geowidget(region, rv3d, fac, ro_hor, q, helper.location, n, qdef, geowidget_base, geowidget_top, geowidget_rest)
# ON-SCREEN DISTANCES AND OTHERS:
'''
if addon_prefs.npfr_suffix == 'None':
suffix = None
elif addon_prefs.npfr_suffix == 'km':
suffix = ' km'
elif addon_prefs.npfr_suffix == 'm':
suffix = ' m'
elif addon_prefs.npfr_suffix == 'cm':
suffix = ' cm'
elif addon_prefs.npfr_suffix == 'mm':
suffix = ' mm'
elif addon_prefs.npfr_suffix == 'nm':
suffix = ' nm'
elif addon_prefs.npfr_suffix == "'":
suffix = "'"
elif addon_prefs.npfr_suffix == '"':
suffix = '"'
elif addon_prefs.npfr_suffix == 'thou':
suffix = ' thou'
'''
# ON-SCREEN DISTANCES:
display_distance_between_two_points(region, rv3d, rectangle[0], rectangle[1])
display_distance_between_two_points(region, rv3d, rectangle[1], rectangle[2])
#ENDING:
bgl.glLineWidth(1)
bgl.glDisable(bgl.GL_BLEND)
bgl.glColor4f(0.0, 0.0, 0.0, 1.0)
# Defining the operator that will generate the rectangle mesh from the collected points:
class NPFRGenerateGeometry(bpy.types.Operator):
bl_idname = 'object.np_fr_generate_geometry'
bl_label = 'NP FR Generate Geometry'
bl_options = {'INTERNAL'}
def execute(self, context):
flag = NP020FR.flag
wire = True
material = True
if flag == 'GENERATE':
recverts = NP020FR.rectangle
recedges = []
i = 0
for ve in recverts:
if i == len(recverts) - 1:
recedges.append((i, 0))
else:
recedges.append((i, i+1))
i = i+1
recfaces = []
recme = bpy.data.meshes.new('float_rectangle')
np_print(recverts,recedges,recfaces)
recme.from_pydata(recverts,recedges,recfaces)
recob = bpy.data.objects.new('float_rectangle',recme)
recob.location = mathutils.Vector((0,0,0))
scn = bpy.context.scene
scn.objects.link(recob)
scn.objects.active = recob
scn.update()
bpy.ops.object.select_all(action = 'DESELECT')
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
bpy.ops.object.origin_set(type = 'ORIGIN_GEOMETRY')
bpy.ops.object.mode_set(mode = 'EDIT')
bpy.ops.mesh.select_all(action = 'SELECT')
bpy.ops.mesh.edge_face_add()
bpy.ops.object.mode_set(mode = 'OBJECT')
if wire:
recob.show_wire = True
if material:
mtl = bpy.data.materials.new('float_rectangle_material')
mtl.diffuse_color = (1.0, 1.0, 1.0)
recme.materials.append(mtl)
activelayer = bpy.context.scene.active_layer
np_print('activelayer:', activelayer)
layers = [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False]
layers[activelayer] = True
layers = tuple(layers)
np_print(layers)
bpy.ops.object.move_to_layer(layers = layers)
NP020FR.recob = recob
return{'FINISHED'}
# Restoring the object selection and system settings from before the operator activation:
class NPFRRestoreContext(bpy.types.Operator):
bl_idname = "object.np_fr_restore_context"
bl_label = "NP FR Restore Context"
bl_options = {'INTERNAL'}
def execute(self, context):
selob = NP020FR.selob
helper = NP020FR.helper
recob = NP020FR.recob
helper.hide = False
bpy.ops.object.select_all(action = 'DESELECT')
bpy.context.view_layer.objects.active = NP020FR.acob
bpy.ops.object.mode_set(mode = NP020FR.edit_mode)
else:
bpy.context.view_layer.objects.active = recob
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
bpy.ops.object.mode_set(mode = NP020FR.edit_mode)
if NP020FR.trans_custom: bpy.ops.transform.delete_orientation()
bpy.context.tool_settings.use_snap = NP020FR.use_snap
bpy.context.tool_settings.snap_element = NP020FR.snap_element
bpy.context.tool_settings.snap_target = NP020FR.snap_target
bpy.context.space_data.pivot_point = NP020FR.pivot_point
bpy.context.space_data.transform_orientation = NP020FR.trans_orient
NP020FR.flag = 'RUNTRANS0'
NP020FR.recob = None
return {'FINISHED'}
# This is the actual addon process, the algorithm that defines the order of operator activation inside the main macro:
def register():
#bpy.app.handlers.scene_update_post.append(NPFR_scene_update)
NP020FloatRectangle.define('OBJECT_OT_np_fr_get_context')
NP020FloatRectangle.define('OBJECT_OT_np_fr_get_selection')
NP020FloatRectangle.define('OBJECT_OT_np_fr_get_mouseloc')
NP020FloatRectangle.define('OBJECT_OT_np_fr_add_helper')
NP020FloatRectangle.define('OBJECT_OT_np_fr_prepare_context')
for i in range(1, 15):
NP020FloatRectangle.define('OBJECT_OT_np_fr_run_translate')
NP020FloatRectangle.define('OBJECT_OT_np_fr_prepare_context')
NP020FloatRectangle.define('OBJECT_OT_np_fr_run_translate')
NP020FloatRectangle.define('OBJECT_OT_np_fr_prepare_context')
NP020FloatRectangle.define('OBJECT_OT_np_fr_run_translate')
NP020FloatRectangle.define('OBJECT_OT_np_fr_generate_geometry')
NP020FloatRectangle.define('OBJECT_OT_np_fr_restore_context')
def unregister():
#bpy.app.handlers.scene_update_post.remove(NPFR_scene_update)