Browse Source

Merge pull request #219 from DoobesURU/ObjectSDLAnimation

Add plAgeGlobalAnim support
pull/235/head
Adam Johnson 3 years ago committed by GitHub
parent
commit
d48b83d2f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      korman/exporter/animation.py
  2. 14
      korman/properties/modifiers/anim.py
  3. 4
      korman/ui/modifiers/anim.py

9
korman/exporter/animation.py

@ -72,7 +72,8 @@ class AnimationConverter:
# There is a race condition in the client with animation loading. It expects for modifiers
# to be listed on the SceneObject in a specific order. D'OH! So, always use these funcs.
agmod, agmaster = self.get_anigraph_objects(bo, so)
atcanim = self._mgr.find_create_object(plATCAnim, so=so)
anim_mod = bo.plasma_modifiers.animation
atcanim = self._mgr.find_create_object(anim_mod.anim_type, so=so)
# Add the animation data to the ATC
for i in applicators:
@ -89,14 +90,16 @@ class AnimationConverter:
if i is not None:
yield i.frame_range[index]
atcanim.name = "(Entire Animation)"
sdl_name = anim_mod.obj_sdl_anim
atcanim.start = self._convert_frame_time(min(get_ranges(obj_action, data_action, index=0)))
atcanim.end = self._convert_frame_time(max(get_ranges(obj_action, data_action, index=1)))
if isinstance(atcanim, plAgeGlobalAnim):
atcanim.globalVarName = anim_mod.obj_sdl_anim
if isinstance(atcanim, plATCAnim):
# Marker points
if obj_action is not None:
for marker in obj_action.pose_markers:
atcanim.setMarker(marker.name, self._convert_frame_time(marker.frame))
# Fixme? Not sure if we really need to expose this...
atcanim.easeInMin = 1.0
atcanim.easeInMax = 1.0

14
korman/properties/modifiers/anim.py

@ -60,15 +60,23 @@ class PlasmaAnimationModifier(ActionModifier, PlasmaModifierProperties):
description="Marker indicating where the default loop begins")
loop_end = StringProperty(name="Loop End",
description="Marker indicating where the default loop ends")
obj_sdl_anim = StringProperty(name="SDL Animation",
description="Name of the SDL variable to use for this animation",
options=set())
@property
def anim_type(self):
return plAgeGlobalAnim if self.obj_sdl_anim else plATCAnim
def export(self, exporter, bo, so):
action = self.blender_action
atcanim = exporter.mgr.find_create_object(plATCAnim, so=so)
anim_mod = bo.plasma_modifiers.animation
atcanim = exporter.mgr.find_create_object(anim_mod.anim_type, so=so)
if not isinstance(atcanim, plAgeGlobalAnim):
atcanim.autoStart = self.auto_start
atcanim.loop = self.loop
# Simple start and loop info
# Simple start and loop info for ATC
if action is not None:
markers = action.pose_markers
initial_marker = markers.get(self.initial_marker)

4
korman/ui/modifiers/anim.py

@ -40,9 +40,11 @@ def animation(modifier, layout, context):
if action:
layout.prop_search(modifier, "initial_marker", action, "pose_markers", icon="PMARKER")
col = layout.column()
col.enabled = modifier.loop
col.enabled = modifier.loop and not modifier.obj_sdl_anim
col.prop_search(modifier, "loop_start", action, "pose_markers", icon="PMARKER")
col.prop_search(modifier, "loop_end", action, "pose_markers", icon="PMARKER")
layout.separator()
layout.prop(modifier, "obj_sdl_anim")
def animation_filter(modifier, layout, context):
split = layout.split()

Loading…
Cancel
Save