2011-02-22 10:33:14 +00:00
|
|
|
/*
|
2008-06-18 07:03:47 +00:00
|
|
|
* $Id$
|
2008-06-18 06:46:49 +00:00
|
|
|
*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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.
|
2008-06-18 06:46:49 +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.
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/** \file BL_ShapeDeformer.h
|
|
|
|
* \ingroup bgeconv
|
|
|
|
*/
|
|
|
|
|
2008-06-18 06:46:49 +00:00
|
|
|
#ifndef BL_SHAPEDEFORMER
|
|
|
|
#define BL_SHAPEDEFORMER
|
|
|
|
|
2010-09-15 16:13:32 +00:00
|
|
|
#if defined(WIN32) && !defined(FREE_WINDOWS)
|
2008-06-18 06:46:49 +00:00
|
|
|
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
|
|
|
|
#endif //WIN32
|
|
|
|
|
|
|
|
#include "BL_SkinDeformer.h"
|
|
|
|
#include "BL_DeformableGameObject.h"
|
|
|
|
#include <vector>
|
|
|
|
|
2008-06-24 22:19:00 +00:00
|
|
|
struct IpoCurve;
|
2008-06-18 06:46:49 +00:00
|
|
|
|
|
|
|
class BL_ShapeDeformer : public BL_SkinDeformer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BL_ShapeDeformer(BL_DeformableGameObject *gameobj,
|
|
|
|
Object *bmeshobj,
|
2009-11-24 22:44:29 +00:00
|
|
|
RAS_MeshObject *mesh)
|
2008-06-18 06:46:49 +00:00
|
|
|
:
|
2008-07-10 12:47:20 +00:00
|
|
|
BL_SkinDeformer(gameobj,bmeshobj, mesh),
|
|
|
|
m_lastShapeUpdate(-1)
|
2008-06-18 06:46:49 +00:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
/* this second constructor is needed for making a mesh deformable on the fly. */
|
|
|
|
BL_ShapeDeformer(BL_DeformableGameObject *gameobj,
|
|
|
|
struct Object *bmeshobj_old,
|
|
|
|
struct Object *bmeshobj_new,
|
2009-11-24 22:44:29 +00:00
|
|
|
class RAS_MeshObject *mesh,
|
2008-06-18 06:46:49 +00:00
|
|
|
bool release_object,
|
2009-06-08 20:08:19 +00:00
|
|
|
bool recalc_normal,
|
2008-06-18 06:46:49 +00:00
|
|
|
BL_ArmatureObject* arma = NULL)
|
|
|
|
:
|
2009-06-08 20:08:19 +00:00
|
|
|
BL_SkinDeformer(gameobj, bmeshobj_old, bmeshobj_new, mesh, release_object, recalc_normal, arma),
|
2008-07-10 12:47:20 +00:00
|
|
|
m_lastShapeUpdate(-1)
|
2008-06-18 06:46:49 +00:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2009-06-08 20:08:19 +00:00
|
|
|
virtual RAS_Deformer *GetReplica();
|
2008-06-18 06:46:49 +00:00
|
|
|
virtual void ProcessReplica();
|
|
|
|
virtual ~BL_ShapeDeformer();
|
|
|
|
|
|
|
|
bool Update (void);
|
2008-06-24 22:19:00 +00:00
|
|
|
bool LoadShapeDrivers(Object* arma);
|
|
|
|
bool ExecuteShapeDrivers(void);
|
|
|
|
|
|
|
|
void ForceUpdate()
|
|
|
|
{
|
|
|
|
m_lastShapeUpdate = -1.0;
|
|
|
|
};
|
2008-06-18 06:46:49 +00:00
|
|
|
|
|
|
|
protected:
|
2008-06-24 22:19:00 +00:00
|
|
|
vector<IpoCurve*> m_shapeDrivers;
|
2008-06-18 06:46:49 +00:00
|
|
|
double m_lastShapeUpdate;
|
|
|
|
|
2009-08-18 15:37:31 +00:00
|
|
|
|
|
|
|
#ifdef WITH_CXX_GUARDEDALLOC
|
|
|
|
public:
|
2010-06-06 01:15:44 +00:00
|
|
|
void *operator new(size_t num_bytes) { return MEM_mallocN(num_bytes, "GE:BL_ShapeDeformer"); }
|
2009-08-18 15:37:31 +00:00
|
|
|
void operator delete( void *mem ) { MEM_freeN(mem); }
|
|
|
|
#endif
|
2008-06-18 06:46:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|