define operator properties in the class, similar to django fields
# Before
[
bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= ""),
bpy.props.BoolProperty(attr="use_modifiers", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True),
bpy.props.BoolProperty(attr="use_normals", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True),
bpy.props.BoolProperty(attr="use_uvs", name="Export UVs", description="Exort the active UV layer", default= True),
bpy.props.BoolProperty(attr="use_colors", name="Export Vertex Colors", description="Exort the active vertex color layer", default= True)
]
# After
path = StringProperty(attr="", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "")
use_modifiers = BoolProperty(attr="", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True)
use_normals = BoolProperty(attr="", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True)
use_uvs = BoolProperty(attr="", name="Export UVs", description="Exort the active UV layer", default= True)
use_colors = BoolProperty(attr="", name="Export Vertex Colors", description="Exort the active vertex color layer", default= True)
2009-10-31 16:40:14 +00:00
|
|
|
import bpy
|
|
|
|
|
2010-06-14 03:52:10 +00:00
|
|
|
def write_some_data(context, filepath, use_some_setting):
|
2009-11-04 20:21:08 +00:00
|
|
|
print("running write_some_data...")
|
2009-10-31 19:31:45 +00:00
|
|
|
pass
|
define operator properties in the class, similar to django fields
# Before
[
bpy.props.StringProperty(attr="path", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= ""),
bpy.props.BoolProperty(attr="use_modifiers", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True),
bpy.props.BoolProperty(attr="use_normals", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True),
bpy.props.BoolProperty(attr="use_uvs", name="Export UVs", description="Exort the active UV layer", default= True),
bpy.props.BoolProperty(attr="use_colors", name="Export Vertex Colors", description="Exort the active vertex color layer", default= True)
]
# After
path = StringProperty(attr="", name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "")
use_modifiers = BoolProperty(attr="", name="Apply Modifiers", description="Apply Modifiers to the exported mesh", default= True)
use_normals = BoolProperty(attr="", name="Export Normals", description="Export Normals for smooth and hard shaded faces", default= True)
use_uvs = BoolProperty(attr="", name="Export UVs", description="Exort the active UV layer", default= True)
use_colors = BoolProperty(attr="", name="Export Vertex Colors", description="Exort the active vertex color layer", default= True)
2009-10-31 16:40:14 +00:00
|
|
|
|
|
|
|
from bpy.props import *
|
|
|
|
|
2009-10-29 11:26:44 +00:00
|
|
|
class ExportSomeData(bpy.types.Operator):
|
2009-10-31 19:31:45 +00:00
|
|
|
'''This appiers in the tooltip of the operator and in the generated docs.'''
|
|
|
|
bl_idname = "export.some_data" # this is important since its how bpy.ops.export.some_data is constructed
|
|
|
|
bl_label = "Export Some Data"
|
|
|
|
|
|
|
|
# List of operator properties, the attributes will be assigned
|
|
|
|
# to the class instance from the operator settings before calling.
|
|
|
|
|
|
|
|
# TODO, add better example props
|
2010-06-14 03:52:10 +00:00
|
|
|
filepath = StringProperty(name="File Path", description="File path used for exporting the PLY file", maxlen= 1024, default= "")
|
2009-11-04 20:21:08 +00:00
|
|
|
use_setting = BoolProperty(name="Example Boolean", description="Example Tooltip", default= True)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-15 22:40:33 +00:00
|
|
|
type = bpy.props.EnumProperty(items=(('OPT_A', "First Option", "Description one"), ('OPT_B', "Second Option", "Description two.")),
|
|
|
|
name="Example Enum",
|
|
|
|
description="Choose between two items",
|
|
|
|
default='OPT_A')
|
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2009-10-31 19:31:45 +00:00
|
|
|
return context.active_object != None
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
|
2009-11-04 20:21:08 +00:00
|
|
|
# # Bug, currently isnt working
|
2010-06-14 03:52:10 +00:00
|
|
|
#if not self.is_property_set("filepath"):
|
2009-11-04 20:21:08 +00:00
|
|
|
# raise Exception("filename not set")
|
|
|
|
|
2010-09-09 18:03:57 +00:00
|
|
|
write_some_data(self.filepath, context, self.use_setting)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-12-24 19:50:43 +00:00
|
|
|
return {'FINISHED'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def invoke(self, context, event):
|
2010-09-02 04:53:05 +00:00
|
|
|
wm = context.window_manager
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
if True:
|
|
|
|
# File selector
|
2009-11-02 08:32:00 +00:00
|
|
|
wm.add_fileselect(self) # will run self.execute()
|
2009-12-24 21:17:14 +00:00
|
|
|
return {'RUNNING_MODAL'}
|
2010-01-15 22:40:33 +00:00
|
|
|
elif True:
|
|
|
|
# search the enum
|
|
|
|
wm.invoke_search_popup(self)
|
|
|
|
return {'RUNNING_MODAL'}
|
|
|
|
elif False:
|
2009-10-31 19:31:45 +00:00
|
|
|
# Redo popup
|
2009-12-07 00:16:57 +00:00
|
|
|
return wm.invoke_props_popup(self, event) #
|
2010-01-15 22:40:33 +00:00
|
|
|
elif False:
|
2009-10-31 19:31:45 +00:00
|
|
|
return self.execute(context)
|
2009-10-29 11:26:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Only needed if you want to add into a dynamic menu
|
2009-11-23 00:27:30 +00:00
|
|
|
menu_func = lambda self, context: self.layout.operator("export.some_data", text="Example Exporter...")
|
2009-12-25 22:16:19 +00:00
|
|
|
bpy.types.INFO_MT_file_export.append(menu_func)
|
2009-10-29 11:26:44 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2010-06-14 03:52:10 +00:00
|
|
|
bpy.ops.export.some_data('INVOKE_DEFAULT', filepath="/tmp/test.ply")
|