Skip to content

Commit 6a74b8d

Browse files
committed
get_controller_data more intelligently for anim import
1 parent 58f618b commit 6a74b8d

File tree

5 files changed

+25
-16
lines changed

5 files changed

+25
-16
lines changed

io_scene_niftools/modules/nif_import/animation/__init__.py

+12
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,18 @@ def __init__(self):
5555
# and still be able to access existing actions from this run
5656
self.actions = {}
5757

58+
@staticmethod
59+
def get_controller_data(ctrl):
60+
"""Return data for ctrl, look in interpolator (for newer games) or directly on ctrl"""
61+
if ctrl.interpolator:
62+
data = ctrl.interpolator.data
63+
else:
64+
data = ctrl.data
65+
# these have their data set as a KeyGroup on data
66+
if isinstance(data, (NifFormat.NiBoolData, NifFormat.NiFloatData, NifFormat.NiPosData)):
67+
return data.data
68+
return data
69+
5870
@staticmethod
5971
def get_keys_values(items):
6072
"""Returns list of times and keys for an array 'items' with key elements having 'time' and 'value' attributes"""

io_scene_niftools/modules/nif_import/animation/material.py

+8-5
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,9 @@ def import_material_alpha_controller(self, b_material, n_material):
6969
NifLog.info("Importing alpha controller")
7070

7171
b_mat_action = self.create_action(b_material, "MaterialAction")
72-
interp = self.get_b_interp_from_n_interp(n_ctrl.data.data.interpolation)
73-
times, keys = self.get_keys_values(n_ctrl.data.data.keys)
72+
n_ctrl_data = self.get_controller_data(n_ctrl)
73+
interp = self.get_b_interp_from_n_interp(n_ctrl_data.interpolation)
74+
times, keys = self.get_keys_values(n_ctrl_data.keys)
7475
# key needs to be RGB due to current representation in blender
7576
keys = [(v, v, v) for v in keys]
7677
self.add_keys(b_mat_action, "niftools.emissive_alpha", range(3), n_ctrl.flags, times, keys, interp)
@@ -85,8 +86,9 @@ def import_material_color_controller(self, b_material, n_material, b_channel, n_
8586
return
8687
NifLog.info(f"Importing material color controller for target color {n_target_color} into blender channel {b_channel}")
8788
b_mat_action = self.create_action(b_material, "MaterialAction")
88-
interp = self.get_b_interp_from_n_interp(n_ctrl.data.data.interpolation)
89-
times, keys = self.get_keys_values(n_ctrl.data.data.keys)
89+
n_ctrl_data = self.get_controller_data(n_ctrl)
90+
interp = self.get_b_interp_from_n_interp(n_ctrl_data.interpolation)
91+
times, keys = self.get_keys_values(n_ctrl_data.keys)
9092
self.add_keys(b_mat_action, b_channel, range(3), n_ctrl.flags, times, keys, interp)
9193

9294
def import_material_uv_controller(self, b_material, n_geom):
@@ -97,7 +99,8 @@ def import_material_uv_controller(self, b_material, n_geom):
9799
return
98100
NifLog.info("Importing UV controller")
99101

100-
if not any(n_uvgroup.keys for n_uvgroup in n_ctrl.data.uv_groups):
102+
n_ctrl_data = self.get_controller_data(n_ctrl)
103+
if not any(n_uvgroup.keys for n_uvgroup in n_ctrl_data.uv_groups):
101104
return
102105

103106
b_mat_action = self.create_action(b_material.node_tree, "MaterialAction")

io_scene_niftools/modules/nif_import/animation/morph.py

-2
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ def import_egm_morphs(self, b_obj):
117117
sk_basis = b_obj.shape_key_add(name="Basis")
118118
b_mesh.shape_keys.use_relative = False
119119

120-
# TODO: I'm not entirely sure that changing the morphs to f-strings won't
121-
# TODO: break anything. They _shouldn't_.
122120
morphs = ([(morph, f"EGM SYM {i}") for i, morph in enumerate(sym_morphs)] +
123121
[(morph, f"EGM ASYM {i}") for i, morph in enumerate(asym_morphs)])
124122

io_scene_niftools/modules/nif_import/animation/object.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,7 @@ def import_visibility(self, n_node, b_obj):
5454
return
5555
NifLog.info("Importing vis controller")
5656
b_obj_action = self.create_action(b_obj, f"{b_obj.name}-Anim")
57-
times, keys = self.get_keys_values(n_vis_ctrl.data.keys)
57+
58+
n_ctrl_data = self.get_controller_data(n_vis_ctrl)
59+
times, keys = self.get_keys_values(n_ctrl_data.keys)
5860
self.add_keys(b_obj_action, "hide_viewport", (0,), n_vis_ctrl.flags, times, keys, "CONSTANT")

io_scene_niftools/modules/nif_import/animation/transform.py

+2-8
Original file line numberDiff line numberDiff line change
@@ -246,12 +246,8 @@ def import_keyframe_controller(self, n_kfc, b_armature, b_target, b_action_name)
246246
b_action = self.create_action(b_target, f"{b_action_name}_{b_target.name}")
247247
bone_name = None
248248

249-
# transform controllers (dartgun.nif)
250-
if isinstance(n_kfc, NifFormat.NiTransformController):
251-
if n_kfc.interpolator:
252-
n_kfd = n_kfc.interpolator.data
253249
# B-spline curve import
254-
elif isinstance(n_kfc, NifFormat.NiBSplineInterpolator):
250+
if isinstance(n_kfc, NifFormat.NiBSplineInterpolator):
255251
# Bsplines are Bezier curves
256252
interp = "BEZIER"
257253
if isinstance(n_kfc, NifFormat.NiBSplineCompFloatInterpolator):
@@ -271,9 +267,7 @@ def import_keyframe_controller(self, n_kfc, b_armature, b_target, b_action_name)
271267
elif isinstance(n_kfc, NifFormat.NiMultiTargetTransformController):
272268
# not sure what this is used for
273269
return
274-
else:
275-
# ZT2 & Fallout
276-
n_kfd = n_kfc.data
270+
n_kfd = self.get_controller_data(n_kfc)
277271
# ZT2 - get extrapolation for every kfc
278272
if isinstance(n_kfc, NifFormat.NiKeyframeController):
279273
flags = n_kfc.flags

0 commit comments

Comments
 (0)