From ffc4c126f5416b04a01653e7a03451797b98aba4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 7 Dec 2021 17:19:15 +1100 Subject: Cleanup: move public doc-strings into headers for 'blenkernel' - Added space below non doc-string comments to make it clear these aren't comments for the symbols directly below them. - Use doxy sections for some headers. - Minor improvements to doc-strings. Ref T92709 --- source/blender/blenkernel/BKE_nla.h | 198 +++++++++++++++++++++++++++++++++++- 1 file changed, 195 insertions(+), 3 deletions(-) (limited to 'source/blender/blenkernel/BKE_nla.h') diff --git a/source/blender/blenkernel/BKE_nla.h b/source/blender/blenkernel/BKE_nla.h index cf8848fe607..b53f8dbac68 100644 --- a/source/blender/blenkernel/BKE_nla.h +++ b/source/blender/blenkernel/BKE_nla.h @@ -46,106 +46,291 @@ struct PropertyRNA; /* ----------------------------- */ /* Data Management */ +/** + * Remove the given NLA strip from the NLA track it occupies, free the strip's data, + * and the strip itself. + */ void BKE_nlastrip_free(ListBase *strips, struct NlaStrip *strip, bool do_id_user); +/** + * Remove the given NLA track from the set of NLA tracks, free the track's data, + * and the track itself. + */ void BKE_nlatrack_free(ListBase *tracks, struct NlaTrack *nlt, bool do_id_user); +/** + * Free the elements of type NLA Tracks provided in the given list, but do not free + * the list itself since that is not free-standing + */ void BKE_nla_tracks_free(ListBase *tracks, bool do_id_user); +/** + * Copy NLA strip + * + * \param use_same_action: When true, the existing action is used (instead of being duplicated) + * \param flag: Control ID pointers management, see LIB_ID_CREATE_.../LIB_ID_COPY_... + * flags in BKE_lib_id.h + */ struct NlaStrip *BKE_nlastrip_copy(struct Main *bmain, struct NlaStrip *strip, const bool use_same_action, const int flag); +/** + * Copy a single NLA Track. + * \param flag: Control ID pointers management, see LIB_ID_CREATE_.../LIB_ID_COPY_... + * flags in BKE_lib_id.h + */ struct NlaTrack *BKE_nlatrack_copy(struct Main *bmain, struct NlaTrack *nlt, const bool use_same_actions, const int flag); +/** + * Copy all NLA data. + * \param flag: Control ID pointers management, see LIB_ID_CREATE_.../LIB_ID_COPY_... + * flags in BKE_lib_id.h + */ void BKE_nla_tracks_copy(struct Main *bmain, ListBase *dst, const ListBase *src, const int flag); -/* Copy NLA tracks from #adt_source to #adt_dest, and update the active track/strip pointers to - * point at those copies. */ +/** + * Copy NLA tracks from #adt_source to #adt_dest, and update the active track/strip pointers to + * point at those copies. + */ void BKE_nla_tracks_copy_from_adt(struct Main *bmain, struct AnimData *adt_dest, const struct AnimData *adt_source, int flag); +/** + * Add a NLA Track to the given AnimData. + * \param prev: NLA-Track to add the new one after. + */ struct NlaTrack *BKE_nlatrack_add(struct AnimData *adt, struct NlaTrack *prev, bool is_liboverride); +/** + * Create a NLA Strip referencing the given Action. + */ struct NlaStrip *BKE_nlastrip_new(struct bAction *act); +/** + * Add new NLA-strip to the top of the NLA stack - i.e. + * into the last track if space, or a new one otherwise. + */ struct NlaStrip *BKE_nlastack_add_strip(struct AnimData *adt, struct bAction *act, const bool is_liboverride); +/** + * Add a NLA Strip referencing the given speaker's sound. + */ struct NlaStrip *BKE_nla_add_soundstrip(struct Main *bmain, struct Scene *scene, struct Speaker *speaker); +/** + * Callback used by lib_query to walk over all ID usages + * (mimics `foreach_id` callback of #IDTypeInfo structure). + */ void BKE_nla_strip_foreach_id(struct NlaStrip *strip, struct LibraryForeachIDData *data); /* ----------------------------- */ /* API */ +/** + * Check if there is any space in the given list to add the given strip. + */ bool BKE_nlastrips_has_space(ListBase *strips, float start, float end); +/** + * Rearrange the strips in the track so that they are always in order + * (usually only needed after a strip has been moved) + */ void BKE_nlastrips_sort_strips(ListBase *strips); +/** + * Add the given NLA-Strip to the given list of strips, assuming that it + * isn't currently a member of another list + */ bool BKE_nlastrips_add_strip(ListBase *strips, struct NlaStrip *strip); +/** + * Convert 'islands' (i.e. continuous string of) selected strips to be + * contained within 'Meta-Strips' which act as strips which contain strips. + * + * \param temp: are the meta-strips to be created 'temporary' ones used for transforms? + */ void BKE_nlastrips_make_metas(ListBase *strips, bool is_temp); +/** + * Remove meta-strips (i.e. flatten the list of strips) from the top-level of the list of strips. + * + * \param sel: only consider selected meta-strips, otherwise all meta-strips are removed + * \param onlyTemp: only remove the 'temporary' meta-strips used for transforms + */ void BKE_nlastrips_clear_metas(ListBase *strips, bool only_sel, bool only_temp); +/** + * Split a meta-strip into a set of normal strips. + */ void BKE_nlastrips_clear_metastrip(ListBase *strips, struct NlaStrip *strip); +/** + * Add the given NLA-Strip to the given Meta-Strip, assuming that the + * strip isn't attached to any list of strips + */ bool BKE_nlameta_add_strip(struct NlaStrip *mstrip, struct NlaStrip *strip); +/** + * Adjust the settings of NLA-Strips contained within a Meta-Strip (recursively), + * until the Meta-Strips children all fit within the Meta-Strip's new dimensions + */ void BKE_nlameta_flush_transforms(struct NlaStrip *mstrip); /* ............ */ +/** + * Find the active NLA-track for the given stack. + */ struct NlaTrack *BKE_nlatrack_find_active(ListBase *tracks); +/** + * Make the given NLA-track the active one for the given stack. If no track is provided, + * this function can be used to simply deactivate all the NLA tracks in the given stack too. + */ void BKE_nlatrack_set_active(ListBase *tracks, struct NlaTrack *nlt); +/** + * Get the NLA Track that the active action/action strip comes from, + * since this info is not stored in AnimData. It also isn't as simple + * as just using the active track, since multiple tracks may have been + * entered at the same time. + */ struct NlaTrack *BKE_nlatrack_find_tweaked(struct AnimData *adt); +/** + * Toggle the 'solo' setting for the given NLA-track, making sure that it is the only one + * that has this status in its AnimData block. + */ void BKE_nlatrack_solo_toggle(struct AnimData *adt, struct NlaTrack *nlt); +/** + * Check if there is any space in the given track to add a strip of the given length. + */ bool BKE_nlatrack_has_space(struct NlaTrack *nlt, float start, float end); +/** + * Rearrange the strips in the track so that they are always in order + * (usually only needed after a strip has been moved). + */ void BKE_nlatrack_sort_strips(struct NlaTrack *nlt); +/** + * Add the given NLA-Strip to the given NLA-Track, assuming that it + * isn't currently attached to another one. + */ bool BKE_nlatrack_add_strip(struct NlaTrack *nlt, struct NlaStrip *strip, const bool is_liboverride); +/** + * Get the extents of the given NLA-Track including gaps between strips, + * returning whether this succeeded or not + */ bool BKE_nlatrack_get_bounds(struct NlaTrack *nlt, float bounds[2]); - +/** + * Check whether given NLA track is not local (i.e. from linked data) when the object is a library + * override. + * + * \param nlt: May be NULL, in which case we consider it as a non-local track case. + */ bool BKE_nlatrack_is_nonlocal_in_liboverride(const struct ID *id, const struct NlaTrack *nlt); /* ............ */ +/** + * Find the active NLA-strip within the given track. + */ struct NlaStrip *BKE_nlastrip_find_active(struct NlaTrack *nlt); +/** + * Make the given NLA-Strip the active one within the given block. + */ void BKE_nlastrip_set_active(struct AnimData *adt, struct NlaStrip *strip); +/** + * Does the given NLA-strip fall within the given bounds (times)?. + */ bool BKE_nlastrip_within_bounds(struct NlaStrip *strip, float min, float max); +/** + * Recalculate the start and end frames for the current strip, after changing + * the extents of the action or the mapping (repeats or scale factor) info. + */ void BKE_nlastrip_recalculate_bounds(struct NlaStrip *strip); +/** + * Recalculate the start and end frames for the strip to match the bounds of its action such that + * the overall NLA animation result is unchanged. + */ void BKE_nlastrip_recalculate_bounds_sync_action(struct NlaStrip *strip); +/** + * Find (and set) a unique name for a strip from the whole AnimData block + * Uses a similar method to the BLI method, but is implemented differently + * as we need to ensure that the name is unique over several lists of tracks, + * not just a single track. + */ void BKE_nlastrip_validate_name(struct AnimData *adt, struct NlaStrip *strip); /* ............ */ +/** + * Check if the given NLA-Track has any strips with own F-Curves. + */ bool BKE_nlatrack_has_animated_strips(struct NlaTrack *nlt); +/** + * Check if given NLA-Tracks have any strips with own F-Curves. + */ bool BKE_nlatracks_have_animated_strips(ListBase *tracks); +/** + * Validate the NLA-Strips 'control' F-Curves based on the flags set. + */ void BKE_nlastrip_validate_fcurves(struct NlaStrip *strip); +/** + * Check if the given RNA pointer + property combo should be handled by + * NLA strip curves or not. + */ bool BKE_nlastrip_has_curves_for_property(const struct PointerRNA *ptr, const struct PropertyRNA *prop); +/** + * Ensure that auto-blending and other settings are set correctly. + */ void BKE_nla_validate_state(struct AnimData *adt); /* ............ */ +/** + * Check if an action is "stashed" in the NLA already + * + * The criteria for this are: + * 1) The action in question lives in a "stash" track. + * 2) We only check first-level strips. That is, we will not check inside meta strips. + */ bool BKE_nla_action_is_stashed(struct AnimData *adt, struct bAction *act); +/** + * "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(struct AnimData *adt, const bool is_liboverride); /* ............ */ +/** + * For the given AnimData block, add the active action to the NLA + * stack (i.e. 'push-down' action). The UI should only allow this + * for normal editing only (i.e. not in edit-mode for some strip's action), + * so no checks for this are performed. + * + * TODO: maybe we should have checks for this too. + */ void BKE_nla_action_pushdown(struct AnimData *adt, const bool is_liboverride); +/** + * Find the active strip + track combination, and set them up as the tweaking track, + * and return if successful or not. + */ bool BKE_nla_tweakmode_enter(struct AnimData *adt); +/** + * Exit tweak-mode for this AnimData block. + */ void BKE_nla_tweakmode_exit(struct AnimData *adt); /* ----------------------------- */ @@ -163,6 +348,13 @@ enum eNlaTime_ConvertModes { NLATIME_CONVERT_MAP, }; +/** + * Non clipped mapping for strip-time <-> global time: + * `mode = eNlaTime_ConvertModes -> NLATIME_CONVERT_*` + * + * Public API method - perform this mapping using the given AnimData block + * and perform any necessary sanity checks on the value + */ float BKE_nla_tweakedit_remap(struct AnimData *adt, float cframe, short mode); /* ----------------------------- */ -- cgit v1.2.3