Welcome to mirror list, hosted at ThFree Co, Russian Federation.

space_view3d_3d_navigation.py - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59127471626743e6676fe1e667d15c91983b0a0f (plain)
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
# 3D NAVIGATION TOOLBAR v1.2 - 3Dview Addon - Blender 2.5x
#
# THIS SCRIPT IS LICENSED UNDER GPL,
# please read the license block.
#
# ##### 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 #####
# contributed to by: Demohero, uriel, jbelcik, meta-androcto

bl_info = {
    "name": "3D Navigation",
    "author": "Demohero, uriel",
    "version": (1, 2, 1),
    "blender": (2, 77, 0),
    "location": "View3D > Tool Shelf > Navigation Tab",
    "description": "Navigate the Camera & 3D View from the Toolshelf",
    "warning": "",
    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
                "Scripts/3D_interaction/3D_Navigation",
    "category": "3D View",
}

# import the basic library
import bpy

# main class of this toolbar

## re-ordered (reversed) Orbit Oprators
class OrbitUpView1(bpy.types.Operator):
    bl_idname = 'opr.orbit_up_view1'
    bl_label = 'Orbit Up View'
    bl_description = 'Orbit the view towards you'

    def execute(self, context):
        bpy.ops.view3d.view_orbit(type='ORBITUP')
        return {'FINISHED'}


class OrbitLeftView1(bpy.types.Operator):
    bl_idname = 'opr.orbit_left_view1'
    bl_label = 'Orbit Left View'
    bl_description = 'Orbit the view around to your Right'

    def execute(self, context):
        bpy.ops.view3d.view_orbit(type='ORBITLEFT')
        return {'FINISHED'}


class OrbitRightView1(bpy.types.Operator):
    bl_idname = 'opr.orbit_right_view1'
    bl_label = 'Orbit Right View'
    bl_description = 'Orbit the view around to your Left'

    def execute(self, context):
        bpy.ops.view3d.view_orbit(type='ORBITRIGHT')
        return {'FINISHED'}


class OrbitDownView1(bpy.types.Operator):
    bl_idname = 'opr.orbit_down_view1'
    bl_label = 'Orbit Down View'
    bl_description = 'Orbit the view away from you'

    def execute(self, context):
        bpy.ops.view3d.view_orbit(type='ORBITDOWN')
        return {'FINISHED'}

## re-ordered (reversed) Pan Oprators
class PanUpView1(bpy.types.Operator):
    bl_idname = 'opr.pan_up_view1'
    bl_label = 'Pan Up View'
    bl_description = 'Pan the view Down'

    def execute(self, context):
        bpy.ops.view3d.view_pan(type='PANUP')
        return {'FINISHED'}


class PanLeftView1(bpy.types.Operator):
    bl_idname = 'opr.pan_left_view1'
    bl_label = 'Pan Right View'
    bl_description = 'Pan the view to your Right'

    def execute(self, context):
        bpy.ops.view3d.view_pan(type='PANLEFT')
        return {'FINISHED'}


class PanRightView1(bpy.types.Operator):
    bl_idname = 'opr.pan_right_view1'
    bl_label = 'Pan Left View'
    bl_description = 'Pan the view to your Left'

    def execute(self, context):
        bpy.ops.view3d.view_pan(type='PANRIGHT')
        return {'FINISHED'}


class PanDownView1(bpy.types.Operator):
    bl_idname = 'opr.pan_down_view1'
    bl_label = 'Pan Down View'
    bl_description = 'Pan the view up'

    def execute(self, context):
        bpy.ops.view3d.view_pan(type='PANDOWN')
        return {'FINISHED'}

## Zoom Oprators
class ZoomInView1(bpy.types.Operator):
    bl_idname = 'opr.zoom_in_view1'
    bl_label = 'Zoom In View'
    bl_description = 'Zoom in in the view'

    def execute(self, context):
        bpy.ops.view3d.zoom(delta=1)
        return {'FINISHED'}


class ZoomOutView1(bpy.types.Operator):
    bl_idname = 'opr.zoom_out_view1'
    bl_label = 'Zoom Out View'
    bl_description = 'Zoom out in the view'

    def execute(self, context):
        bpy.ops.view3d.zoom(delta=-1)
        return {'FINISHED'}

## Roll Oprators
class RollLeftView1(bpy.types.Operator):
    bl_idname = 'opr.roll_left_view1'
    bl_label = 'Roll Left View'
    bl_description = 'Roll the view left'

    def execute(self, context):
        bpy.ops.view3d.view_roll(angle=-0.261799)
        return {'FINISHED'}


class RollRightView1(bpy.types.Operator):
    bl_idname = 'opr.roll_right_view1'
    bl_label = 'Roll Right View'
    bl_description = 'Roll the view right'

    def execute(self, context):
        bpy.ops.view3d.view_roll(angle=0.261799)
        return {'FINISHED'}


class LeftViewpoint1(bpy.types.Operator):
    bl_idname = 'opr.left_viewpoint1'
    bl_label = 'Left Viewpoint'
    bl_description = 'View from the Left'

    def execute(self, context):
        bpy.ops.view3d.viewnumpad(type='LEFT')
        return {'FINISHED'}


class RightViewpoint1(bpy.types.Operator):
    bl_idname = 'opr.right_viewpoint1'
    bl_label = 'Right Viewpoint'
    bl_description = 'View from the Right'

    def execute(self, context):
        bpy.ops.view3d.viewnumpad(type='RIGHT')
        return {'FINISHED'}


class FrontViewpoint1(bpy.types.Operator):
    bl_idname = 'opr.front_viewpoint1'
    bl_label = 'Front Viewpoint'
    bl_description = 'View from the Front'

    def execute(self, context):
        bpy.ops.view3d.viewnumpad(type='FRONT')
        return {'FINISHED'}


class BackViewpoint1(bpy.types.Operator):
    bl_idname = 'opr.back_viewpoint1'
    bl_label = 'Back Viewpoint'
    bl_description = 'View from the Back'

    def execute(self, context):
        bpy.ops.view3d.viewnumpad(type='BACK')
        return {'FINISHED'}


class TopViewpoint1(bpy.types.Operator):
    bl_idname = 'opr.top_viewpoint1'
    bl_label = 'Top Viewpoint'
    bl_description = 'View from the Top'

    def execute(self, context):
        bpy.ops.view3d.viewnumpad(type='TOP')
        return {'FINISHED'}


class BottomViewpoint1(bpy.types.Operator):
    bl_idname = 'opr.bottom_viewpoint1'
    bl_label = 'Bottom Viewpoint'
    bl_description = 'View from the Bottom'

    def execute(self, context):
        bpy.ops.view3d.viewnumpad(type='BOTTOM')
        return {'FINISHED'}


class ShowHideObject1(bpy.types.Operator):
    bl_idname = 'opr.show_hide_object1'
    bl_label = 'Show/Hide Object'
    bl_description = 'Show/hide selected objects'
    bl_options = {'REGISTER', 'UNDO'}

    def execute(self, context):
        if context.object == None:
            self.report({'ERROR'}, 'Cannot perform this operation on NoneType objects')
            return {'CANCELLED'}

        if context.object.mode != 'OBJECT':
            self.report({'ERROR'}, 'This operation can be performed only in object mode')
            return {'CANCELLED'}

        for i in bpy.data.objects:
            if i.select:
                if i.hide:
                    i.hide = False
                    i.hide_select = False
                    i.hide_render = False
                else:
                    i.hide = True
                    i.select = False

                    if i.type not in ['CAMERA', 'LAMP']:
                        i.hide_render = True
        return {'FINISHED'}

# main class of this toolbar


class VIEW3D_PT_3dnavigationPanel(bpy.types.Panel):
    bl_category = "Navigation"
    bl_space_type = "VIEW_3D"
    bl_region_type = "TOOLS"
    bl_label = "3D Nav"

    def draw(self, context):
        layout = self.layout
        view = context.space_data

# Triple boutons
        col = layout.column(align=True)
        col.operator("view3d.localview", text="View Global/Local")
        col.operator("view3d.view_persportho", text="View Persp/Ortho")
        col.operator("view3d.viewnumpad", text="View Camera", icon='CAMERA_DATA').type = 'CAMERA'

# group of 6 buttons
        col = layout.column(align=True)
        col.label(text="Align view from:")
        row = col.row()
        row.operator("view3d.viewnumpad", text="Front").type = 'FRONT'
        row.operator("view3d.viewnumpad", text="Back").type = 'BACK'
        row = col.row()
        row.operator("view3d.viewnumpad", text="Left").type = 'LEFT'
        row.operator("view3d.viewnumpad", text="Right").type = 'RIGHT'
        row = col.row()
        row.operator("view3d.viewnumpad", text="Top").type = 'TOP'
        row.operator("view3d.viewnumpad", text="Bottom").type = 'BOTTOM'

# group of 2 buttons
        col = layout.column(align=True)
        col.label(text="View to Object:")
        col.prop(view, "lock_object", text="")
        col.operator("view3d.view_selected", text="View to Selected")

        col = layout.column(align=True)
        col.label(text="Cursor:")

        row = col.row()
        row.operator("view3d.snap_cursor_to_center", text="Center")
        row.operator("view3d.view_center_cursor", text="View")

        col.operator("view3d.snap_cursor_to_selected", text="Cursor to Selected")


class VIEW3D_PT_pan_navigation1(bpy.types.Panel):
    bl_idname = 'pan.navigation1'
    bl_label = 'Pan Orbit Zoom Roll'
    bl_space_type = 'VIEW_3D'
    bl_region_type = 'TOOLS'
    bl_category = 'Navigation'

    def draw(self, context):
        layout = self.layout
        layout.label(text='Screen View Perspective')
        row = layout.row()
        box = row.box()
        box.label(text='Pan:')
        rowr = box.row()
        rowr.operator('opr.pan_up_view1', text='', icon='TRIA_DOWN')
        rowr.operator('opr.pan_down_view1', text='', icon='TRIA_UP')

        rowr = box.row()
        rowr.operator('opr.pan_right_view1', text='', icon='BACK')
        rowr.operator('opr.pan_left_view1', text='', icon='FORWARD')

        rowr = box.row()

        box = row.box()
        box.label(text='Orbit:')
        rowr = box.row()
        rowr.operator('opr.orbit_up_view1', text='', icon='TRIA_DOWN')
        rowr.operator('opr.orbit_down_view1', text='', icon='TRIA_UP')
        rowr = box.row()
        rowr.operator('opr.orbit_right_view1', text='', icon='BACK')
        rowr.operator('opr.orbit_left_view1', text='', icon='FORWARD')

        rowr = box.row()
        row = layout.row()

        box = row.box()
        box.label(text='Zoom:')
        rowr = box.row()
        rowrowr = rowr.row(align=True)
        rowrowr.operator('opr.zoom_in_view1', text='', icon='ZOOMIN')
        rowrowr.operator('opr.zoom_out_view1', text='', icon='ZOOMOUT')

        box = row.box()
        box.label(text='Roll:')
        rowr = box.row()
        rowrowr = rowr.row(align=True)
        rowrowr.operator('opr.roll_left_view1', text='', icon='LOOP_BACK')
        rowrowr.operator('opr.roll_right_view1', text='', icon='LOOP_FORWARDS')

## Addons Preferences Update Panel
def update_panel(self, context):
    try:
        bpy.utils.unregister_class(VIEW3D_PT_3dnavigationPanel)
        bpy.utils.unregister_class(VIEW3D_PT_pan_navigation1)
    except:
        pass
    VIEW3D_PT_3dnavigationPanel.bl_category = context.user_preferences.addons[__name__].preferences.category
    bpy.utils.register_class(VIEW3D_PT_3dnavigationPanel)
    VIEW3D_PT_pan_navigation1.bl_category = context.user_preferences.addons[__name__].preferences.category
    bpy.utils.register_class(VIEW3D_PT_pan_navigation1)

class NavAddonPreferences(bpy.types.AddonPreferences):
    # this must match the addon name, use '__package__'
    # when defining this in a submodule of a python package.
    bl_idname = __name__

    category = bpy.props.StringProperty(
            name="Tab Category",
            description="Choose a name for the category of the panel",
            default="Navigation",
            update=update_panel)

    def draw(self, context):

        layout = self.layout
        row = layout.row()
        col = row.column()
        col.label(text="Tab Category:")
        col.prop(self, "category", text="")

classes = [
    VIEW3D_PT_3dnavigationPanel,
    VIEW3D_PT_pan_navigation1,
    OrbitUpView1,
    OrbitLeftView1,
    OrbitRightView1,
    OrbitDownView1,
    PanUpView1,
    PanLeftView1,
    PanRightView1,
    PanDownView1,
    ZoomInView1,
    ZoomOutView1,
    RollLeftView1,
    RollRightView1,
    LeftViewpoint1,
    RightViewpoint1,
    FrontViewpoint1,
    BackViewpoint1,
    TopViewpoint1,
    BottomViewpoint1,
    ShowHideObject1,
    NavAddonPreferences,
]

# register the class

def register():
    for cls in classes:
        bpy.utils.register_class(cls)

def unregister():
    for cls in classes:
        bpy.utils.unregister_class(cls)

if __name__ == "__main__":
    register()