2010-11-17 07:00:14 +00:00
|
|
|
import bpy
|
|
|
|
|
2011-01-26 07:54:27 +00:00
|
|
|
|
2010-11-17 07:00:14 +00:00
|
|
|
def write_some_data(context, filepath, use_some_setting):
|
|
|
|
print("running write_some_data...")
|
|
|
|
f = open(filepath, 'w')
|
|
|
|
f.write("Hello World %s" % use_some_setting)
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
|
|
|
|
|
|
|
# ExportHelper is a helper class, defines filename and
|
|
|
|
# invoke() function which calls the file selector.
|
2011-05-16 07:51:02 +00:00
|
|
|
from bpy_extras.io_utils import ExportHelper
|
2011-02-27 15:25:24 +00:00
|
|
|
from bpy.props import StringProperty, BoolProperty, EnumProperty
|
2010-11-17 07:00:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ExportSomeData(bpy.types.Operator, ExportHelper):
|
2011-04-29 04:43:36 +00:00
|
|
|
'''This appears in the tooltip of the operator and in the generated docs.'''
|
2011-01-26 07:54:27 +00:00
|
|
|
bl_idname = "export.some_data" # this is important since its how bpy.ops.export.some_data is constructed
|
2010-11-17 07:00:14 +00:00
|
|
|
bl_label = "Export Some Data"
|
2011-01-26 07:54:27 +00:00
|
|
|
|
2010-11-17 07:00:14 +00:00
|
|
|
# ExportHelper mixin class uses this
|
|
|
|
filename_ext = ".txt"
|
|
|
|
|
|
|
|
filter_glob = StringProperty(default="*.txt", options={'HIDDEN'})
|
|
|
|
|
|
|
|
# List of operator properties, the attributes will be assigned
|
|
|
|
# to the class instance from the operator settings before calling.
|
2011-01-26 07:54:27 +00:00
|
|
|
use_setting = BoolProperty(name="Example Boolean", description="Example Tooltip", default=True)
|
2010-11-17 07:00:14 +00:00
|
|
|
|
2011-02-27 15:25:24 +00:00
|
|
|
type = EnumProperty(items=(('OPT_A', "First Option", "Description one"),
|
|
|
|
('OPT_B', "Second Option", "Description two."),
|
|
|
|
),
|
2010-11-17 07:00:14 +00:00
|
|
|
name="Example Enum",
|
|
|
|
description="Choose between two items",
|
|
|
|
default='OPT_A')
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
return context.active_object != None
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
return write_some_data(context, self.filepath, self.use_setting)
|
|
|
|
|
|
|
|
|
|
|
|
# Only needed if you want to add into a dynamic menu
|
|
|
|
def menu_func_export(self, context):
|
|
|
|
self.layout.operator(ExportSomeData.bl_idname, text="Text Export Operator")
|
|
|
|
|
2011-02-12 08:04:32 +00:00
|
|
|
|
|
|
|
def register():
|
|
|
|
bpy.utils.register_class(ExportSomeData)
|
|
|
|
bpy.types.INFO_MT_file_export.append(menu_func_export)
|
|
|
|
|
|
|
|
|
|
|
|
def unregister():
|
|
|
|
bpy.utils.unregister_class(ExportSomeData)
|
|
|
|
bpy.types.INFO_MT_file_export.remove(menu_func_export)
|
|
|
|
|
2010-11-17 07:00:14 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2011-02-12 08:04:32 +00:00
|
|
|
register()
|
|
|
|
|
|
|
|
# test call
|
2010-11-17 07:00:14 +00:00
|
|
|
bpy.ops.export.some_data('INVOKE_DEFAULT')
|