Newer
Older
# ##### 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 #####
Campbell Barton
committed
# <pep8-80 compliant>
op_call = ops_module.call
op_as_string = ops_module.as_string
op_get_rna = ops_module.get_rna
Campbell Barton
committed
op_get_instance = ops_module.get_instance
Campbell Barton
committed
Campbell Barton
committed
class BPyOps(object):
if module.startswith('__'):
raise AttributeError(module)
Campbell Barton
committed
return BPyOpsSubMod(module)
def __dir__(self):
submodules = set()
# add this classes functions
for id_name in dir(self.__class__):
if not id_name.startswith('__'):
submodules.add(id_name)
for id_name in op_dir():
id_split = id_name.split('_OT_', 1)
if len(id_split) == 2:
submodules.add(id_split[0].lower())
else:
submodules.add(id_split[0])
return list(submodules)
def __repr__(self):
return "<module like class 'bpy.ops'>"
Campbell Barton
committed
Campbell Barton
committed
class BPyOpsSubMod(object):
Utility class to fake submodules.
eg. bpy.ops.object
__slots__ = ("_module",)
self._module = module
Campbell Barton
committed
if func.startswith('__'):
raise AttributeError(func)
return BPyOpsSubModOp(self._module, func)
def __dir__(self):
functions = set()
module_upper = self._module.upper()
for id_name in op_dir():
id_split = id_name.split('_OT_', 1)
if len(id_split) == 2 and module_upper == id_split[0]:
functions.add(id_split[1])
return list(functions)
def __repr__(self):
return "<module like class 'bpy.ops.%s'>" % self._module
Campbell Barton
committed
Campbell Barton
committed
class BPyOpsSubModOp(object):
Utility class to fake submodule operators.
eg. bpy.ops.object.somefunc
__slots__ = ("_module", "_func")
def _get_doc(self):
return op_as_string(self.idname())
@staticmethod
def _parse_args(args):
C_dict = None
C_exec = 'EXEC_DEFAULT'
C_undo = False
is_dict = is_exec = is_undo = False
for i, arg in enumerate(args):
if is_dict is False and isinstance(arg, dict):
if is_exec is True or is_undo is True:
raise ValueError("dict arg must come first")
C_dict = arg
is_dict = True
elif is_exec is False and isinstance(arg, str):
if is_undo is True:
raise ValueError("string arg must come before the boolean")
C_exec = arg
is_exec = True
elif is_undo is False and isinstance(arg, int):
C_undo = arg
is_undo = True
raise ValueError("1-3 args execution context is supported")
return C_dict, C_exec, C_undo
@staticmethod
def _scene_update(context):
scene = context.scene
if scene: # None in background mode
scene.update()
else:
for scene in bpy.data.scenes:
scene.update()
self._module = module
self._func = func
C_dict, C_exec, C_undo = BPyOpsSubModOp._parse_args(args)
return op_poll(self.idname_py(), C_dict, C_exec)
def idname(self):
# submod.foo -> SUBMOD_OT_foo
return self._module.upper() + "_OT_" + self._func
Campbell Barton
committed
def idname_py(self):
# submod.foo -> SUBMOD_OT_foo
return self._module + "." + self._func
Campbell Barton
committed
import bpy
context = bpy.context
Campbell Barton
committed
wm = context.window_manager
# run to account for any rna values the user changes.
Campbell Barton
committed
BPyOpsSubModOp._scene_update(context)
C_dict, C_exec, C_undo = BPyOpsSubModOp._parse_args(args)
ret = op_call(self.idname_py(), C_dict, kw, C_exec, C_undo)
ret = op_call(self.idname_py(), None, kw)
Campbell Barton
committed
Campbell Barton
committed
if 'FINISHED' in ret and context.window_manager == wm:
Campbell Barton
committed
BPyOpsSubModOp._scene_update(context)
Campbell Barton
committed
return ret
Campbell Barton
committed
"""Internal function for introspection"""
Campbell Barton
committed
def get_instance(self):
"""Internal function for introspection"""
return op_get_instance(self.idname())
def __repr__(self): # useful display, repr(op)
import bpy
idname = self.idname()
as_string = op_as_string(idname)
# XXX You never quite know what you get from bpy.types, with operators... Operator and OperatorProperties
# are shadowing each other, and not in the same way for native ops and py ones! See T39158.
# op_class = getattr(bpy.types, idname)
op_class = op_get_rna(idname)
descr = op_class.bl_rna.description
# XXX, workaround for not registering
# every __doc__ to save time on load.
if not descr:
descr = op_class.__doc__
if not descr:
descr = ""
return "# %s\n%s" % (descr, as_string)
return ("<function bpy.ops.%s.%s at 0x%x'>" %
(self._module, self._func, id(self)))
Campbell Barton
committed
Campbell Barton
committed
ops_fake_module = BPyOps()