2002-10-12 11:37:38 +00:00
|
|
|
/**
|
|
|
|
* blenlib/BKE_key.h (mar-2001 nzc)
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*
|
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
|
|
|
*/
|
|
|
|
#ifndef BKE_KEY_H
|
|
|
|
#define BKE_KEY_H
|
|
|
|
|
|
|
|
struct Key;
|
|
|
|
struct KeyBlock;
|
|
|
|
struct ID;
|
|
|
|
struct ListBase;
|
|
|
|
struct Curve;
|
|
|
|
struct Object;
|
2009-01-04 14:14:06 +00:00
|
|
|
struct Scene;
|
2002-10-12 11:37:38 +00:00
|
|
|
struct Lattice;
|
|
|
|
struct Mesh;
|
|
|
|
|
2008-06-18 06:46:49 +00:00
|
|
|
/* Kernel prototypes */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
void free_key(struct Key *sc);
|
|
|
|
struct Key *add_key(struct ID *id);
|
|
|
|
struct Key *copy_key(struct Key *key);
|
|
|
|
void make_local_key(struct Key *key);
|
|
|
|
void sort_keys(struct Key *key);
|
2005-09-26 15:34:21 +00:00
|
|
|
|
2009-09-09 18:09:03 +00:00
|
|
|
void key_curve_position_weights(float t, float *data, int type);
|
|
|
|
void key_curve_tangent_weights(float t, float *data, int type);
|
|
|
|
void key_curve_normal_weights(float t, float *data, int type);
|
2005-09-26 15:34:21 +00:00
|
|
|
|
2009-10-22 09:31:07 +00:00
|
|
|
float *do_ob_key(struct Scene *scene, struct Object *ob);
|
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
|
|
|
|
2005-09-26 15:34:21 +00:00
|
|
|
struct Key *ob_get_key(struct Object *ob);
|
2010-11-17 09:45:45 +00:00
|
|
|
struct KeyBlock *add_keyblock(struct Key *key, const char *name);
|
2005-09-26 15:34:21 +00:00
|
|
|
struct KeyBlock *ob_get_keyblock(struct Object *ob);
|
2009-11-11 18:31:19 +00:00
|
|
|
struct KeyBlock *ob_get_reference_keyblock(struct Object *ob);
|
2007-08-22 10:07:42 +00:00
|
|
|
struct KeyBlock *key_get_keyblock(struct Key *key, int index);
|
2008-12-19 11:45:46 +00:00
|
|
|
struct KeyBlock *key_get_named_keyblock(struct Key *key, const char name[]);
|
2009-10-16 12:08:47 +00:00
|
|
|
char *key_get_curValue_rnaPath(struct Key *key, struct KeyBlock *kb);
|
2008-06-18 06:46:49 +00:00
|
|
|
// needed for the GE
|
2011-01-03 14:30:59 +00:00
|
|
|
void do_rel_key(const int start, int end, const int tot, char *basispoin, struct Key *key, struct KeyBlock *actkb, const int mode);
|
2008-06-18 06:46:49 +00:00
|
|
|
|
2009-12-28 15:26:36 +00:00
|
|
|
/* conversion functions */
|
|
|
|
void key_to_mesh(struct KeyBlock *kb, struct Mesh *me);
|
|
|
|
void mesh_to_key(struct Mesh *me, struct KeyBlock *kb);
|
|
|
|
void key_to_latt(struct KeyBlock *kb, struct Lattice *lt);
|
|
|
|
void latt_to_key(struct Lattice *lt, struct KeyBlock *kb);
|
|
|
|
void key_to_curve(struct KeyBlock *kb, struct Curve *cu, struct ListBase *nurb);
|
|
|
|
void curve_to_key(struct Curve *cu, struct KeyBlock *kb, struct ListBase *nurb);
|
2010-06-21 20:10:59 +00:00
|
|
|
float (*key_to_vertcos(struct Object *ob, struct KeyBlock *kb))[3];
|
|
|
|
void vertcos_to_key(struct Object *ob, struct KeyBlock *kb, float (*vertCos)[3]);
|
2010-06-23 12:27:13 +00:00
|
|
|
void offset_to_key(struct Object *ob, struct KeyBlock *kb, float (*ofs)[3]);
|
2009-12-28 15:26:36 +00:00
|
|
|
|
2011-02-13 10:52:18 +00:00
|
|
|
/* key.c */
|
|
|
|
extern int slurph_opt;
|
|
|
|
|
2008-06-18 06:46:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|
2005-07-15 17:55:19 +00:00
|
|
|
|
2011-02-13 10:52:18 +00:00
|
|
|
#endif // BKE_KEY_H
|