2010-11-17 07:00:14 +00:00
|
|
|
import bpy
|
|
|
|
|
2011-01-26 07:54:27 +00:00
|
|
|
|
2012-04-17 05:47:32 +00:00
|
|
|
def read_some_data(context, filepath, use_some_setting):
|
|
|
|
print("running read_some_data...")
|
|
|
|
f = open(filepath, 'r', encoding='utf-8')
|
|
|
|
data = f.read()
|
2010-11-17 07:00:14 +00:00
|
|
|
f.close()
|
|
|
|
|
2012-04-17 10:25:23 +00:00
|
|
|
# would normally load the data here
|
2012-04-17 05:47:32 +00:00
|
|
|
print(data)
|
|
|
|
|
2010-11-17 07:00:14 +00:00
|
|
|
return {'FINISHED'}
|
|
|
|
|
|
|
|
|
2012-04-17 05:47:32 +00:00
|
|
|
# ImportHelper is a helper class, defines filename and
|
2010-11-17 07:00:14 +00:00
|
|
|
# invoke() function which calls the file selector.
|
2012-04-17 05:47:32 +00:00
|
|
|
from bpy_extras.io_utils import ImportHelper
|
2011-02-27 15:25:24 +00:00
|
|
|
from bpy.props import StringProperty, BoolProperty, EnumProperty
|
2012-04-17 05:47:32 +00:00
|
|
|
from bpy.types import Operator
|
2010-11-17 07:00:14 +00:00
|
|
|
|
|
|
|
|
2012-04-17 05:47:32 +00:00
|
|
|
class ImportSomeData(Operator, ImportHelper):
|
2012-07-01 07:55:44 +00:00
|
|
|
"""This appears in the tooltip of the operator and in the generated docs"""
|
2012-04-17 05:47:32 +00:00
|
|
|
bl_idname = "import_test.some_data" # important since its how bpy.ops.import_test.some_data is constructed
|
|
|
|
bl_label = "Import Some Data"
|
2011-01-26 07:54:27 +00:00
|
|
|
|
2012-04-17 05:47:32 +00:00
|
|
|
# ImportHelper mixin class uses this
|
2010-11-17 07:00:14 +00:00
|
|
|
filename_ext = ".txt"
|
|
|
|
|
2011-08-19 19:25:20 +00:00
|
|
|
filter_glob = StringProperty(
|
|
|
|
default="*.txt",
|
|
|
|
options={'HIDDEN'},
|
|
|
|
)
|
2010-11-17 07:00:14 +00:00
|
|
|
|
|
|
|
# List of operator properties, the attributes will be assigned
|
|
|
|
# to the class instance from the operator settings before calling.
|
2011-08-19 19:25:20 +00:00
|
|
|
use_setting = BoolProperty(
|
|
|
|
name="Example Boolean",
|
|
|
|
description="Example Tooltip",
|
|
|
|
default=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
type = EnumProperty(
|
|
|
|
name="Example Enum",
|
|
|
|
description="Choose between two items",
|
|
|
|
items=(('OPT_A', "First Option", "Description one"),
|
2011-09-19 14:00:42 +00:00
|
|
|
('OPT_B', "Second Option", "Description two")),
|
2011-08-19 19:25:20 +00:00
|
|
|
default='OPT_A',
|
|
|
|
)
|
2010-11-17 07:00:14 +00:00
|
|
|
|
|
|
|
def execute(self, context):
|
2012-04-17 05:47:32 +00:00
|
|
|
return read_some_data(context, self.filepath, self.use_setting)
|
2010-11-17 07:00:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Only needed if you want to add into a dynamic menu
|
2012-04-17 05:47:32 +00:00
|
|
|
def menu_func_import(self, context):
|
|
|
|
self.layout.operator(ImportSomeData.bl_idname, text="Text Import Operator")
|
2010-11-17 07:00:14 +00:00
|
|
|
|
2011-02-12 08:04:32 +00:00
|
|
|
|
|
|
|
def register():
|
2012-04-17 05:47:32 +00:00
|
|
|
bpy.utils.register_class(ImportSomeData)
|
|
|
|
bpy.types.INFO_MT_file_import.append(menu_func_import)
|
2011-02-12 08:04:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def unregister():
|
2012-04-17 05:47:32 +00:00
|
|
|
bpy.utils.unregister_class(ImportSomeData)
|
|
|
|
bpy.types.INFO_MT_file_import.remove(menu_func_import)
|
2011-02-12 08:04:32 +00:00
|
|
|
|
2010-11-17 07:00:14 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2011-02-12 08:04:32 +00:00
|
|
|
register()
|
|
|
|
|
|
|
|
# test call
|
2012-04-17 05:47:32 +00:00
|
|
|
bpy.ops.import_test.some_data('INVOKE_DEFAULT')
|