Revision: 21126
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=21126
Author:   aligorith
Date:     2009-06-24 14:50:20 +0200 (Wed, 24 Jun 2009)

Log Message:
-----------
NLA SoC: Scale Operators - Clear (Alt-S) and Apply (Ctrl-A)

These two operators work only on Action-Clip strips. 

* Clear (Alt-S) resets the scale of selected strips to 1.0
* Apply (Ctrl-A) applies the scale of the selected strips to their referenced 
Actions. If this referenced Action is also used by several other strips, a copy 
of the Action is made, and the scaling is applied to that Action instead.

Modified Paths:
--------------
    branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_edit.c
    branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_header.c
    branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_intern.h
    branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_ops.c

Modified: 
branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_edit.c
===================================================================
--- branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_edit.c     
2009-06-24 12:12:11 UTC (rev 21125)
+++ branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_edit.c     
2009-06-24 12:50:20 UTC (rev 21126)
@@ -46,6 +46,8 @@
 #include "BLI_rand.h"
 
 #include "BKE_animsys.h"
+#include "BKE_action.h"
+#include "BKE_fcurve.h"
 #include "BKE_nla.h"
 #include "BKE_context.h"
 #include "BKE_library.h"
@@ -55,6 +57,7 @@
 #include "BKE_utildefines.h"
 
 #include "ED_anim_api.h"
+#include "ED_keyframes_edit.h"
 #include "ED_markers.h"
 #include "ED_space_api.h"
 #include "ED_screen.h"
@@ -72,6 +75,7 @@
 #include "UI_view2d.h"
 
 #include "nla_intern.h"        // own include
+#include "nla_private.h" // FIXME... maybe this shouldn't be included?
 
 /* *********************************************** */
 /* 'Special' Editing */
@@ -217,7 +221,7 @@
 }
 
 /* *********************************************** */
-/* NLA Editing Operations */
+/* NLA Editing Operations (Constructive/Destructive) */
 
 /* ******************** Add Action-Clip Operator ***************************** 
*/
 /* Add a new Action-Clip strip to the active track (or the active block if no 
space in the track) */
@@ -700,3 +704,162 @@
 }
 
 /* *********************************************** */
+/* NLA Editing Operations (Modifying) */
+
+/* ******************** Apply Scale Operator ***************************** */
+/* Reset the scaling of the selected strips to 1.0f */
+
+/* apply scaling to keyframe */
+static short bezt_apply_nlamapping (BeztEditData *bed, BezTriple *bezt)
+{
+       /* NLA-strip which has this scaling is stored in bed->data */
+       NlaStrip *strip= (NlaStrip *)bed->data;
+       
+       /* adjust all the times */
+       bezt->vec[0][0]= nlastrip_get_frame(strip, bezt->vec[0][0], 1);
+       bezt->vec[1][0]= nlastrip_get_frame(strip, bezt->vec[1][0], 1);
+       bezt->vec[2][0]= nlastrip_get_frame(strip, bezt->vec[2][0], 1);
+       
+       /* nothing to return or else we exit */
+       return 0;
+}
+
+static int nlaedit_apply_scale_exec (bContext *C, wmOperator *op)
+{
+       bAnimContext ac;
+       
+       ListBase anim_data = {NULL, NULL};
+       bAnimListElem *ale;
+       int filter;
+       
+       BeztEditData bed;
+       
+       /* get editor data */
+       if (ANIM_animdata_get_context(C, &ac) == 0)
+               return OPERATOR_CANCELLED;
+               
+       /* get a list of the editable tracks being shown in the NLA */
+       filter= (ANIMFILTER_VISIBLE | ANIMFILTER_NLATRACKS | 
ANIMFILTER_FOREDIT);
+       ANIM_animdata_filter(&ac, &anim_data, filter, ac.data, ac.datatype);
+       
+       /* init the editing data */
+       memset(&bed, 0, sizeof(BeztEditData));
+       
+       /* for each NLA-Track, apply scale of all selected strips */
+       for (ale= anim_data.first; ale; ale= ale->next) {
+               NlaTrack *nlt= (NlaTrack *)ale->data;
+               NlaStrip *strip;
+               
+               for (strip= nlt->strips.first; strip; strip= strip->next) {
+                       /* strip must be selected, and must be action-clip only 
(transitions don't have scale) */
+                       if ((strip->flag & NLASTRIP_FLAG_SELECT) && 
(strip->type == NLASTRIP_TYPE_CLIP)) {
+                               /* if the referenced action is used by other 
strips, make this strip use its own copy */
+                               if (strip->act == NULL) 
+                                       continue;
+                               if (strip->act->id.us > 1) {
+                                       /* make a copy of the Action to work on 
*/
+                                       bAction *act= copy_action(strip->act);
+                                       
+                                       /* set this as the new referenced 
action, decrementing the users of the old one */
+                                       strip->act->id.us--;
+                                       strip->act= act;
+                               }
+                               
+                               /* setup iterator, and iterate over all the 
keyframes in the action, applying this scaling */
+                               bed.data= strip;
+                               ANIM_animchanneldata_keys_bezier_loop(&bed, 
strip->act, ALE_ACT, NULL, bezt_apply_nlamapping, calchandles_fcurve, 0);
+                               
+                               /* clear scale of strip now that it has been 
applied, but leave everything else alone */
+                               strip->scale= 1.0f;
+                       }
+               }
+       }
+       
+       /* free temp data */
+       BLI_freelistN(&anim_data);
+       
+       /* set notifier that things have changed */
+       ANIM_animdata_send_notifiers(C, &ac, ANIM_CHANGED_BOTH);
+       WM_event_add_notifier(C, NC_SCENE, NULL);
+       
+       /* done */
+       return OPERATOR_FINISHED;
+}
+
+void NLAEDIT_OT_apply_scale (wmOperatorType *ot)
+{
+       /* identifiers */
+       ot->name= "Apply Scale";
+       ot->idname= "NLAEDIT_OT_apply_scale";
+       ot->description= "Apply scaling of selected strips to their referenced 
Actions.";
+       
+       /* api callbacks */
+       ot->exec= nlaedit_apply_scale_exec;
+       ot->poll= nlaop_poll_tweakmode_off;
+       
+       /* flags */
+       ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
+}
+
+/* ******************** Clear Scale Operator ***************************** */
+/* Reset the scaling of the selected strips to 1.0f */
+
+static int nlaedit_clear_scale_exec (bContext *C, wmOperator *op)
+{
+       bAnimContext ac;
+       
+       ListBase anim_data = {NULL, NULL};
+       bAnimListElem *ale;
+       int filter;
+       
+       /* get editor data */
+       if (ANIM_animdata_get_context(C, &ac) == 0)
+               return OPERATOR_CANCELLED;
+               
+       /* get a list of the editable tracks being shown in the NLA */
+       filter= (ANIMFILTER_VISIBLE | ANIMFILTER_NLATRACKS | 
ANIMFILTER_FOREDIT);
+       ANIM_animdata_filter(&ac, &anim_data, filter, ac.data, ac.datatype);
+       
+       /* for each NLA-Track, reset scale of all selected strips */
+       for (ale= anim_data.first; ale; ale= ale->next) {
+               NlaTrack *nlt= (NlaTrack *)ale->data;
+               NlaStrip *strip;
+               
+               for (strip= nlt->strips.first; strip; strip= strip->next) {
+                       /* strip must be selected, and must be action-clip only 
(transitions don't have scale) */
+                       if ((strip->flag & NLASTRIP_FLAG_SELECT) && 
(strip->type == NLASTRIP_TYPE_CLIP)) {
+                               PointerRNA strip_ptr;
+                               
+                               RNA_pointer_create(NULL, &RNA_NlaStrip, strip, 
&strip_ptr);
+                               RNA_float_set(&strip_ptr, "scale", 1.0f);
+                       }
+               }
+       }
+       
+       /* free temp data */
+       BLI_freelistN(&anim_data);
+       
+       /* set notifier that things have changed */
+       ANIM_animdata_send_notifiers(C, &ac, ANIM_CHANGED_BOTH);
+       WM_event_add_notifier(C, NC_SCENE, NULL);
+       
+       /* done */
+       return OPERATOR_FINISHED;
+}
+
+void NLAEDIT_OT_clear_scale (wmOperatorType *ot)
+{
+       /* identifiers */
+       ot->name= "Clear Scale";
+       ot->idname= "NLAEDIT_OT_clear_scale";
+       ot->description= "Reset scaling of selected strips.";
+       
+       /* api callbacks */
+       ot->exec= nlaedit_clear_scale_exec;
+       ot->poll= nlaop_poll_tweakmode_off;
+       
+       /* flags */
+       ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
+}
+
+/* *********************************************** */

Modified: 
branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_header.c
===================================================================
--- branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_header.c   
2009-06-24 12:12:11 UTC (rev 21125)
+++ branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_header.c   
2009-06-24 12:50:20 UTC (rev 21126)
@@ -154,6 +154,11 @@
        uiItemS(layout);
        
        uiItemO(layout, NULL, 0, "NLAEDIT_OT_delete");
+       
+       uiItemS(layout);
+       
+       uiItemO(layout, NULL, 0, "NLAEDIT_OT_apply_scale");
+       uiItemO(layout, NULL, 0, "NLAEDIT_OT_clear_scale");
 }
 
 static void nla_addmenu(bContext *C, uiLayout *layout, void *arg_unused)

Modified: 
branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_intern.h
===================================================================
--- branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_intern.h   
2009-06-24 12:12:11 UTC (rev 21125)
+++ branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_intern.h   
2009-06-24 12:50:20 UTC (rev 21126)
@@ -99,7 +99,10 @@
 void NLAEDIT_OT_delete(wmOperatorType *ot);
 void NLAEDIT_OT_split(wmOperatorType *ot);
 
+void NLAEDIT_OT_apply_scale(wmOperatorType *ot);
+void NLAEDIT_OT_clear_scale(wmOperatorType *ot);
 
+
 /* **************************************** */
 /* nla_channels.c */
 

Modified: branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_ops.c
===================================================================
--- branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_ops.c      
2009-06-24 12:12:11 UTC (rev 21125)
+++ branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_ops.c      
2009-06-24 12:50:20 UTC (rev 21126)
@@ -149,6 +149,9 @@
        WM_operatortype_append(NLAEDIT_OT_duplicate);
        WM_operatortype_append(NLAEDIT_OT_delete);
        WM_operatortype_append(NLAEDIT_OT_split);
+       
+       WM_operatortype_append(NLAEDIT_OT_apply_scale);
+       WM_operatortype_append(NLAEDIT_OT_clear_scale);
 }
 
 /* ************************** registration - keymaps 
**********************************/
@@ -239,6 +242,10 @@
                /* split */
        WM_keymap_add_item(keymap, "NLAEDIT_OT_split", YKEY, KM_PRESS, 0, 0);
        
+               /* apply scale */
+       WM_keymap_add_item(keymap, "NLAEDIT_OT_apply_scale", AKEY, KM_PRESS, 
KM_CTRL, 0);
+       WM_keymap_add_item(keymap, "NLAEDIT_OT_clear_scale", SKEY, KM_PRESS, 
KM_ALT, 0);
+       
        /* transform system */
        transform_keymap_for_space(wm, keymap, SPACE_NLA);
 }


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to