From 64f552356a27366664014aa8d0b31e4a2cb91bf8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 26 Nov 2009 15:36:23 +0000 Subject: [PATCH] ctrl 1-5 for changing subsurf levels --- release/scripts/op/object.py | 52 ++++++++++++++++++++++ source/blender/editors/object/object_ops.c | 11 +++++ 2 files changed, 63 insertions(+) create mode 100644 release/scripts/op/object.py diff --git a/release/scripts/op/object.py b/release/scripts/op/object.py new file mode 100644 index 00000000000..2f9672e7447 --- /dev/null +++ b/release/scripts/op/object.py @@ -0,0 +1,52 @@ +# ##### 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# ##### END GPL LICENSE BLOCK ##### + +import bpy + +class SubsurfSet(bpy.types.Operator): + '''TODO, doc.''' + + bl_idname = "object.subsurf_set" + bl_label = "Subsurf Set" + bl_register = True + bl_undo = True + + level = bpy.props.IntProperty(name="Level", + default=1, min=0, max=6) + + def poll(self, context): + ob = context.active_object + return (ob and ob.type == 'MESH') + + def execute(self, context): + ob = context.active_object + for mod in ob.modifiers: + if mod.type == 'SUBSURF': + if mod.levels != level: + mod.levels = level + return + + # adda new modifier + bpy.ops.object.modifier_add(type='SUBSURF') # TODO, support adding directly + mod = ob.modifiers[-1] + mod.levels = level + return ('FINISHED',) + + +# Register the operator +bpy.ops.add(SubsurfSet) diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index fd66b564d53..522ca45dc3d 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -313,6 +313,17 @@ void ED_keymap_object(wmKeyConfig *keyconf) WM_keymap_verify_item(keymap, "GROUP_OT_objects_add_active", GKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0); WM_keymap_verify_item(keymap, "GROUP_OT_objects_remove_active", GKEY, KM_PRESS, KM_SHIFT|KM_ALT, 0); + kmi = WM_keymap_add_item(keymap, "OBJECT_OT_subsurf_set", ONEKEY, KM_PRESS, KM_CTRL, 0); + RNA_int_set(kmi->ptr, "level", 1); + kmi = WM_keymap_add_item(keymap, "OBJECT_OT_subsurf_set", TWOKEY, KM_PRESS, KM_CTRL, 0); + RNA_int_set(kmi->ptr, "level", 2); + kmi = WM_keymap_add_item(keymap, "OBJECT_OT_subsurf_set", THREEKEY, KM_PRESS, KM_CTRL, 0); + RNA_int_set(kmi->ptr, "level", 3); + kmi = WM_keymap_add_item(keymap, "OBJECT_OT_subsurf_set", FOURKEY, KM_PRESS, KM_CTRL, 0); + RNA_int_set(kmi->ptr, "level", 4); + kmi = WM_keymap_add_item(keymap, "OBJECT_OT_subsurf_set", FIVEKEY, KM_PRESS, KM_CTRL, 0); + RNA_int_set(kmi->ptr, "level", 5); + /* Lattice -------------------------------------------------------------------- */ keymap= WM_keymap_find(keyconf, "Lattice", 0, 0); keymap->poll= ED_operator_editlattice;