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

action_bones.cc « intern « blenkernel « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce63d1ca10eb90d88034c715f1fd4aa9ca76f348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2001-2002 NaN Holding BV. All rights reserved. */

/** \file
 * \ingroup bke
 */

#include "BKE_action.hh"

#include "BLI_listbase.h"
#include "BLI_string.h"

#include "DNA_action_types.h"
#include "DNA_anim_types.h"
#include "DNA_armature_types.h"

#include "MEM_guardedalloc.h"

namespace blender::bke {

void BKE_action_find_fcurves_with_bones(const bAction *action, FoundFCurveCallback callback)
{
  LISTBASE_FOREACH (FCurve *, fcu, &action->curves) {
    char bone_name[MAXBONENAME];
    if (!BLI_str_quoted_substr(fcu->rna_path, "pose.bones[", bone_name, sizeof(bone_name))) {
      continue;
    }
    callback(fcu, bone_name);
  }
}

}  // namespace blender::bke