2011-02-18 13:05:18 +00:00
|
|
|
/*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
2008-04-16 22:40:48 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*/
|
2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __BKE_KEY_H__
|
|
|
|
#define __BKE_KEY_H__
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2011-02-18 13:05:18 +00:00
|
|
|
/** \file BKE_key.h
|
|
|
|
* \ingroup bke
|
|
|
|
* \since March 2001
|
|
|
|
* \author nzc
|
|
|
|
*/
|
2002-10-12 11:37:38 +00:00
|
|
|
struct Key;
|
|
|
|
struct KeyBlock;
|
|
|
|
struct ID;
|
|
|
|
struct ListBase;
|
|
|
|
struct Curve;
|
|
|
|
struct Object;
|
|
|
|
struct Lattice;
|
|
|
|
struct Mesh;
|
2013-08-19 10:36:39 +00:00
|
|
|
struct WeightsArrayCache;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-06-18 06:46:49 +00:00
|
|
|
/* Kernel prototypes */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-09-19 10:12:07 +00:00
|
|
|
void BKE_key_free(struct Key *sc);
|
|
|
|
void BKE_key_free_nolib(struct Key *key);
|
|
|
|
struct Key *BKE_key_add(struct ID *id);
|
2012-05-05 14:03:12 +00:00
|
|
|
struct Key *BKE_key_copy(struct Key *key);
|
2012-09-19 10:12:07 +00:00
|
|
|
struct Key *BKE_key_copy_nolib(struct Key *key);
|
|
|
|
void BKE_key_make_local(struct Key *key);
|
|
|
|
void BKE_key_sort(struct Key *key);
|
2005-09-26 15:34:21 +00:00
|
|
|
|
2012-05-22 13:59:58 +00:00
|
|
|
void key_curve_position_weights(float t, float data[4], int type);
|
|
|
|
void key_curve_tangent_weights(float t, float data[4], int type);
|
|
|
|
void key_curve_normal_weights(float t, float data[4], int type);
|
2005-09-26 15:34:21 +00:00
|
|
|
|
2015-01-07 02:02:55 +11:00
|
|
|
float *BKE_key_evaluate_object_ex(
|
|
|
|
struct Object *ob, int *r_totelem,
|
|
|
|
float *arr, size_t arr_size);
|
|
|
|
float *BKE_key_evaluate_object(
|
|
|
|
struct Object *ob, int *r_totelem);
|
Result of 2 weeks of quiet coding work in Greece :)
Aim was to get a total refresh of the animation system. This
is needed because;
- we need to upgrade it with 21st century features
- current code is spaghetti/hack combo, and hides good design
- it should become lag-free with using dependency graphs
A full log, with complete code API/structure/design explanation
will follow, that's a load of work... so here below the list with
hot changes;
- The entire object update system (matrices, geometry) is now
centralized. Calls to where_is_object and makeDispList are
forbidden, instead we tag objects 'changed' and let the
depgraph code sort it out
- Removed all old "Ika" code
- Depgraph is aware of all relationships, including meta balls,
constraints, bevelcurve, and so on.
- Made depgraph aware of relation types and layers, to do smart
flushing of 'changed' events. Nothing gets calculated too often!
- Transform uses depgraph to detect changes
- On frame-advance, depgraph flushes animated changes
Armatures;
Almost all armature related code has been fully built from scratch.
It now reveils the original design much better, with a very clean
implementation, lag free without even calculating each Bone more than
once. Result is quite a speedup yes!
Important to note is;
1) Armature is data containing the 'rest position'
2) Pose is the changes of rest position, and always on object level.
That way more Objects can use same Pose. Also constraints are in Pose
3) Actions only contain the Ipos to change values in Poses.
- Bones draw unrotated now
- Drawing bones speedup enormously (10-20 times)
- Bone selecting in EditMode, selection state is saved for PoseMode,
and vice-versa
- Undo in editmode
- Bone renaming does vertexgroups, constraints, posechannels, actions,
for all users of Armature in entire file
- Added Bone renaming in NKey panel
- Nkey PoseMode shows eulers now
- EditMode and PoseMode now have 'active' bone too (last clicked)
- Parenting in EditMode' CTRL+P, ALT+P, with nice options!
- Pose is added in Outliner now, with showing that constraints are in
the Pose, not Armature
- Disconnected IK solving from constraints. It's a separate phase now,
on top of the full Pose calculations
- Pose itself has a dependency graph too, so evaluation order is lag free.
TODO NOW;
- Rotating in Posemode has incorrect inverse transform (Martin will fix)
- Python Bone/Armature/Pose API disabled... needs full recode too
(wait for my doc!)
- Game engine will need upgrade too
- Depgraph code needs revision, cleanup, can be much faster!
(But, compliments for Jean-Luc, it works like a charm!)
- IK changed, it now doesnt use previous position to advance to next
position anymore. That system looks nice (no flips) but is not well
suited for NLA and background render.
TODO LATER;
We now can do loadsa new nifty features as well; like:
- Kill PoseMode (can be option for armatures itself)
- Make B-Bones (Bezier, Bspline, like for spines)
- Move all silly button level edit to 3d window (like CTRL+I = add
IK)
- Much better & informative drawing
- Fix action/nla editors
- Put all ipos in Actions (object, mesh key, lamp color)
- Add hooks
- Null bones
- Much more advanced constraints...
Bugfixes;
- OGL render (view3d header) had wrong first frame on anim render
- Ipo 'recording' mode had wrong playback speed
- Vertex-key mode now sticks to show 'active key', until frame change
-Ton-
2005-07-03 17:35:38 +00:00
|
|
|
|
2015-10-08 18:19:28 +11:00
|
|
|
struct Key **BKE_key_from_id_p(struct ID *id);
|
|
|
|
struct Key *BKE_key_from_id(struct ID *id);
|
2015-06-08 19:49:01 +10:00
|
|
|
struct Key **BKE_key_from_object_p(struct Object *ob);
|
2012-09-19 10:12:07 +00:00
|
|
|
struct Key *BKE_key_from_object(struct Object *ob);
|
|
|
|
struct KeyBlock *BKE_keyblock_from_object(struct Object *ob);
|
|
|
|
struct KeyBlock *BKE_keyblock_from_object_reference(struct Object *ob);
|
|
|
|
|
|
|
|
struct KeyBlock *BKE_keyblock_add(struct Key *key, const char *name);
|
2014-02-03 18:55:59 +11:00
|
|
|
struct KeyBlock *BKE_keyblock_add_ctime(struct Key *key, const char *name, const bool do_force);
|
2012-09-19 10:12:07 +00:00
|
|
|
struct KeyBlock *BKE_keyblock_from_key(struct Key *key, int index);
|
|
|
|
struct KeyBlock *BKE_keyblock_find_name(struct Key *key, const char name[]);
|
2012-09-19 12:11:28 +00:00
|
|
|
void BKE_keyblock_copy_settings(struct KeyBlock *kb_dst, const struct KeyBlock *kb_src);
|
2012-09-19 10:12:07 +00:00
|
|
|
char *BKE_keyblock_curval_rnapath_get(struct Key *key, struct KeyBlock *kb);
|
2013-08-19 10:36:39 +00:00
|
|
|
|
2008-06-18 06:46:49 +00:00
|
|
|
// needed for the GE
|
2013-08-19 10:36:39 +00:00
|
|
|
typedef struct WeightsArrayCache {
|
|
|
|
int num_defgroup_weights;
|
|
|
|
float **defgroup_weights;
|
|
|
|
} WeightsArrayCache;
|
|
|
|
|
|
|
|
float **BKE_keyblock_get_per_block_weights(struct Object *ob, struct Key *key, struct WeightsArrayCache *cache);
|
|
|
|
void BKE_keyblock_free_per_block_weights(struct Key *key, float **per_keyblock_weights, struct WeightsArrayCache *cache);
|
|
|
|
void BKE_key_evaluate_relative(const int start, int end, const int tot, char *basispoin, struct Key *key, struct KeyBlock *actkb,
|
|
|
|
float **per_keyblock_weights, const int mode);
|
2008-06-18 06:46:49 +00:00
|
|
|
|
2009-12-28 15:26:36 +00:00
|
|
|
/* conversion functions */
|
2014-11-16 18:50:23 +01:00
|
|
|
/* Note: 'update_from' versions do not (re)allocate mem in kb, while 'convert_from' do. */
|
2014-11-16 19:15:23 +01:00
|
|
|
void BKE_keyblock_update_from_lattice(struct Lattice *lt, struct KeyBlock *kb);
|
|
|
|
void BKE_keyblock_convert_from_lattice(struct Lattice *lt, struct KeyBlock *kb);
|
|
|
|
void BKE_keyblock_convert_to_lattice(struct KeyBlock *kb, struct Lattice *lt);
|
2014-11-16 18:50:23 +01:00
|
|
|
|
2014-11-16 19:15:23 +01:00
|
|
|
void BKE_keyblock_update_from_curve(struct Curve *cu, struct KeyBlock *kb, struct ListBase *nurb);
|
|
|
|
void BKE_keyblock_convert_from_curve(struct Curve *cu, struct KeyBlock *kb, struct ListBase *nurb);
|
|
|
|
void BKE_keyblock_convert_to_curve(struct KeyBlock *kb, struct Curve *cu, struct ListBase *nurb);
|
2014-11-16 18:50:23 +01:00
|
|
|
|
2014-11-16 19:15:23 +01:00
|
|
|
void BKE_keyblock_update_from_mesh(struct Mesh *me, struct KeyBlock *kb);
|
|
|
|
void BKE_keyblock_convert_from_mesh(struct Mesh *me, struct KeyBlock *kb);
|
|
|
|
void BKE_keyblock_convert_to_mesh(struct KeyBlock *kb, struct Mesh *me);
|
2014-11-16 18:50:23 +01:00
|
|
|
|
2014-11-16 19:15:23 +01:00
|
|
|
void BKE_keyblock_update_from_vertcos(struct Object *ob, struct KeyBlock *kb, float (*vertCos)[3]);
|
|
|
|
void BKE_keyblock_convert_from_vertcos(struct Object *ob, struct KeyBlock *kb, float (*vertCos)[3]);
|
|
|
|
float (*BKE_keyblock_convert_to_vertcos(struct Object *ob, struct KeyBlock *kb))[3];
|
2014-11-16 18:50:23 +01:00
|
|
|
|
2014-11-16 19:15:23 +01:00
|
|
|
void BKE_keyblock_update_from_offset(struct Object *ob, struct KeyBlock *kb, float (*ofs)[3]);
|
2009-12-28 15:26:36 +00:00
|
|
|
|
2014-10-21 11:59:14 +02:00
|
|
|
/* other management */
|
|
|
|
bool BKE_keyblock_move(struct Object *ob, int org_index, int new_index);
|
|
|
|
|
2014-11-16 21:45:40 +01:00
|
|
|
bool BKE_keyblock_is_basis(struct Key *key, const int index);
|
|
|
|
|
2008-06-18 06:46:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|
2005-07-15 17:55:19 +00:00
|
|
|
|
2012-10-09 13:36:42 +00:00
|
|
|
#endif /* __BKE_KEY_H__ */
|