2002-10-12 11:37:38 +00:00
|
|
|
/**
|
|
|
|
* $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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "KX_BlenderScalarInterpolator.h"
|
2009-06-16 20:38:18 +00:00
|
|
|
|
2009-06-15 10:11:08 +00:00
|
|
|
#include <cstring>
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-10-11 22:29:50 +00:00
|
|
|
extern "C" {
|
|
|
|
#include "DNA_ipo_types.h"
|
2009-06-15 10:11:08 +00:00
|
|
|
#include "DNA_action_types.h"
|
|
|
|
#include "DNA_anim_types.h"
|
|
|
|
#include "BKE_fcurve.h"
|
2008-10-11 22:29:50 +00:00
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
float BL_ScalarInterpolator::GetValue(float currentTime) const {
|
2009-06-15 10:11:08 +00:00
|
|
|
// XXX 2.4x IPO_GetFloatValue(m_blender_adt, m_channel, currentTime);
|
|
|
|
return evaluate_fcurve(m_fcu, currentTime);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2009-06-15 10:11:08 +00:00
|
|
|
BL_InterpolatorList::BL_InterpolatorList(struct AnimData *adt) {
|
2009-06-19 16:27:01 +00:00
|
|
|
if(adt->action==NULL)
|
|
|
|
return;
|
|
|
|
|
2009-06-15 10:11:08 +00:00
|
|
|
for(FCurve *fcu= (FCurve *)adt->action->curves.first; fcu; fcu= (FCurve *)fcu->next) {
|
|
|
|
if(fcu->rna_path) {
|
|
|
|
BL_ScalarInterpolator *new_ipo = new BL_ScalarInterpolator(fcu);
|
|
|
|
//assert(new_ipo);
|
|
|
|
push_back(new_ipo);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BL_InterpolatorList::~BL_InterpolatorList() {
|
|
|
|
BL_InterpolatorList::iterator i;
|
|
|
|
for (i = begin(); !(i == end()); ++i) {
|
|
|
|
delete *i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-19 10:26:43 +00:00
|
|
|
KX_IScalarInterpolator *BL_InterpolatorList::GetScalarInterpolator(const char *rna_path, int array_index) {
|
2009-06-15 10:11:08 +00:00
|
|
|
for(BL_InterpolatorList::iterator i = begin(); (i != end()) ; i++ )
|
|
|
|
{
|
|
|
|
FCurve *fcu= (static_cast<BL_ScalarInterpolator *>(*i))->GetFCurve();
|
|
|
|
if(array_index==fcu->array_index && strcmp(rna_path, fcu->rna_path)==0)
|
|
|
|
return *i;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2009-06-15 10:11:08 +00:00
|
|
|
return NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|