2011-02-23 10:52:22 +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
|
|
|
*/
|
|
|
|
|
2011-02-25 13:30:41 +00:00
|
|
|
/** \file gameengine/Converter/KX_BlenderScalarInterpolator.cpp
|
|
|
|
* \ingroup bgeconv
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2012-02-25 16:49:59 +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
|
|
|
}
|
|
|
|
|
2012-02-25 16:49:59 +00:00
|
|
|
BL_InterpolatorList::BL_InterpolatorList(bAction *action)
|
|
|
|
{
|
2012-03-24 07:52:14 +00:00
|
|
|
if (action==NULL)
|
2009-06-19 16:27:01 +00:00
|
|
|
return;
|
|
|
|
|
2012-10-14 08:49:01 +00:00
|
|
|
for (FCurve *fcu = (FCurve *)action->curves.first; fcu; fcu = fcu->next) {
|
2012-03-24 07:52:14 +00:00
|
|
|
if (fcu->rna_path) {
|
2009-06-15 10:11:08 +00:00
|
|
|
BL_ScalarInterpolator *new_ipo = new BL_ScalarInterpolator(fcu);
|
|
|
|
//assert(new_ipo);
|
|
|
|
push_back(new_ipo);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-25 16:49:59 +00:00
|
|
|
BL_InterpolatorList::~BL_InterpolatorList()
|
|
|
|
{
|
2002-10-12 11:37:38 +00:00
|
|
|
BL_InterpolatorList::iterator i;
|
|
|
|
for (i = begin(); !(i == end()); ++i) {
|
|
|
|
delete *i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-30 07:55:15 +00:00
|
|
|
KX_IScalarInterpolator *BL_InterpolatorList::GetScalarInterpolator(const char *rna_path, int array_index)
|
|
|
|
{
|
2012-03-24 07:52:14 +00:00
|
|
|
for (BL_InterpolatorList::iterator i = begin(); (i != end()) ; i++ )
|
2009-06-15 10:11:08 +00:00
|
|
|
{
|
|
|
|
FCurve *fcu= (static_cast<BL_ScalarInterpolator *>(*i))->GetFCurve();
|
2012-03-24 07:52:14 +00:00
|
|
|
if (array_index==fcu->array_index && strcmp(rna_path, fcu->rna_path)==0)
|
2009-06-15 10:11:08 +00:00
|
|
|
return *i;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2009-06-15 10:11:08 +00:00
|
|
|
return NULL;
|
2012-09-16 04:58:18 +00:00
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|