Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2015-02-28 02:49:07 +0300
committerJoshua Leung <aligorith@gmail.com>2015-02-28 16:34:49 +0300
commitb16fbabd616944007e4730640dd55db5fa021afa (patch)
tree9bcc47df19ce3c62d13fbee0ee678ab616aa33f7 /source/blender/blenkernel/intern/nla.c
parent7c611e22049bb92f6efbbc1e2337fbfe22f841c4 (diff)
Reshuffle code
Diffstat (limited to 'source/blender/blenkernel/intern/nla.c')
-rw-r--r--source/blender/blenkernel/intern/nla.c77
1 files changed, 39 insertions, 38 deletions
diff --git a/source/blender/blenkernel/intern/nla.c b/source/blender/blenkernel/intern/nla.c
index 060a9d4b9c7..9be413ddcde 100644
--- a/source/blender/blenkernel/intern/nla.c
+++ b/source/blender/blenkernel/intern/nla.c
@@ -1523,6 +1523,45 @@ void BKE_nla_validate_state(AnimData *adt)
}
}
+/* Action Stashing -------------------------------------- */
+
+/* "Stash" an action (i.e. store it as a track/layer in the NLA, but non-contributing)
+ * to retain it in the file for future uses
+ */
+bool BKE_nla_action_stash(AnimData *adt)
+{
+ const char *STASH_TRACK_NAME = DATA_("[Action Stash]");
+
+ NlaTrack *prev_track = NULL;
+ NlaTrack *nlt;
+ NlaStrip *strip;
+
+ /* create a new track, and add this immediately above the previous stashing track */
+ for (prev_track = adt->nla_tracks.last; prev_track; prev_track = prev_track->prev) {
+ if (strstr(prev_track->name, STASH_TRACK_NAME)) {
+ break;
+ }
+ }
+
+ nlt = add_nlatrack(adt, prev_track);
+ nlt->flag |= NLATRACK_MUTED; /* so that stash track doesn't disturb the stack animation */
+
+ BLI_strncpy(nlt->name, STASH_TRACK_NAME, sizeof(nlt->name));
+ BLI_uniquename(&adt->nla_tracks, nlt, STASH_TRACK_NAME, '.', offsetof(NlaTrack, name), sizeof(nlt->name));
+
+ /* add the action as a strip in this new track
+ * NOTE: a new user is created here
+ */
+ strip = add_nlastrip(adt->action);
+
+ BKE_nlatrack_add_strip(nlt, strip);
+ BKE_nlastrip_validate_name(adt, strip);
+ BKE_nlastrip_set_active(adt, strip);
+
+ /* succeeded */
+ return true;
+}
+
/* Core Tools ------------------------------------------- */
/* For the given AnimData block, add the active action to the NLA
@@ -1575,44 +1614,6 @@ void BKE_nla_action_pushdown(AnimData *adt)
}
}
-/* "Stash" an action (i.e. store it as a track/layer in the NLA, but non-contributing)
- * to retain it in the file for future uses
- */
-bool BKE_nla_action_stash(AnimData *adt)
-{
- const char *STASH_TRACK_NAME = DATA_("[Action Stash]");
-
- NlaTrack *prev_track = NULL;
- NlaTrack *nlt;
- NlaStrip *strip;
-
- /* create a new track, and add this immediately above the previous stashing track */
- for (prev_track = adt->nla_tracks.last; prev_track; prev_track = prev_track->prev) {
- if (strstr(prev_track->name, STASH_TRACK_NAME)) {
- break;
- }
- }
-
- nlt = add_nlatrack(adt, prev_track);
- nlt->flag |= NLATRACK_MUTED; /* so that stash track doesn't disturb the stack animation */
-
- BLI_strncpy(nlt->name, STASH_TRACK_NAME, sizeof(nlt->name));
- BLI_uniquename(&adt->nla_tracks, nlt, STASH_TRACK_NAME, '.', offsetof(NlaTrack, name), sizeof(nlt->name));
-
- /* add the action as a strip in this new track
- * NOTE: a new user is created here
- */
- strip = add_nlastrip(adt->action);
-
- BKE_nlatrack_add_strip(nlt, strip);
- BKE_nlastrip_validate_name(adt, strip);
- BKE_nlastrip_set_active(adt, strip);
-
- /* succeeded */
- return true;
-}
-
-
/* Find the active strip + track combo, and set them up as the tweaking track,
* and return if successful or not.
*/