-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathio_export_pose.py
136 lines (109 loc) · 4.85 KB
/
io_export_pose.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# ==================================================================
# This file is part of https://github.com/martinruenz/dataset-tools
#
# 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 3 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, see <http://www.gnu.org/licenses/>
# ==================================================================
bl_info = {
"name": "Export Poses",
"author": "Martin Rünz", # inspired by 'export cameras & markers' (Campbell Barton) and 'export Clarises' (Ruchir Shah)
# see: https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Import-Export/ClarisseCameraExport
"version": (0, 4),
"blender": (2, 80, 0),
"location": "File > Export > Export Poses",
"description": "Export poses of selected object / camera",
"warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:",
"tracker_url": "http://projects.blender.org/tracker/index.php?func=detail&aid=",
'category': 'Import-Export'}
import bpy
import bpy_extras
import mathutils
import math
# from mathutils import *
# from math import *
from bpy.props import *
from bpy_extras.io_utils import ExportHelper
from pose_helpers import *
def export_poses(context, filepath, frame_start, frame_end, scaling_factor, useQuaternions, appendFrameNumber, cam_positive_z, header_row):
scene = bpy.context.scene
obj = bpy.context.active_object
if obj == None:
print("No active object.")
return
print("Exporting: '{}', scaling factor: {}".format(obj.name, scaling_factor))
# Export world coordinates of currently selected object / camera
frame_range = range(frame_start, frame_end + 1)
myFile=open(filepath,'w')
if header_row:
header = "translation_x translation_y translation_z quaternion_x quaternion_y quaternion_z quaternion_w\n"
if appendFrameNumber:
header = "frame " + header
header = "# " + header
myFile.write(header)
for f in frame_range:
scene.frame_set(f)
line = transformation_to_string(obj.matrix_world, scaling_factor, useQuaternions, obj.type == 'CAMERA' and cam_positive_z)
if appendFrameNumber:
line = ('%i ' % f) + line
myFile.write(line)
myFile.close()
return
class PoseExporter(bpy.types.Operator, ExportHelper):
bl_idname = "export_animation.cameras"
bl_label = "Export Settings"
filename_ext = ".txt"
filter_glob = StringProperty(default="*.txt", options={'HIDDEN'})
scaling_factor = FloatProperty(name="Scaling factor",
description="Multiply position vector by this factor",
default=1, min=0.0001, max=100000)
frame_start = IntProperty(name="Start Frame",
description="Start frame for export",
default=0, min=0, max=300000)
frame_end = IntProperty(name="End Frame",
description="End frame for export",
default=250, min=1, max=300000)
quaternion_representation = BoolProperty(name="Use quaternions", default=True)
append_frame_number = BoolProperty(name="Append frame", default=True)
cam_positive_z = BoolProperty(name="Positive Z (cam)", default=True)
header_row = BoolProperty(name="Add column titles / header", default=True)
def execute(self, context):
export_poses(context,
self.filepath,
self.frame_start,
self.frame_end,
self.scaling_factor,
self.quaternion_representation,
self.append_frame_number,
self.cam_positive_z,
self.header_row)
#, self.alsoRelativeToCamera
return {'FINISHED'}
def invoke(self, context, event):
self.frame_start = context.scene.frame_start
self.frame_end = context.scene.frame_end
wm = context.window_manager
wm.fileselect_add(self)
return {'RUNNING_MODAL'}
def menu_export(self, context):
import os
default_path = os.path.splitext(bpy.data.filepath)[0] + ".txt"
self.layout.operator(PoseExporter.bl_idname, text="Poses Export (.txt)").filepath = default_path
def register():
bpy.types.TOPBAR_MT_file_export.append(menu_export)
bpy.utils.register_class(PoseExporter)
def unregister():
bpy.types.TOPBAR_MT_file_export.remove(menu_export)
bpy.utils.unregister_class(PoseExporter)
if __name__ == "__main__":
register()