blender/source/gameengine/Ketsji/KX_IpoConvert.cpp

442 lines
14 KiB
C++
Raw Normal View History

/*
* ***** 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
* 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.
*
* ***** END GPL LICENSE BLOCK *****
2002-10-12 11:37:38 +00:00
*/
/** \file gameengine/Ketsji/KX_IpoConvert.cpp
2011-02-25 13:30:41 +00:00
* \ingroup bgeconv
*/
#ifdef _MSC_VER
/* don't show stl-warnings */
# pragma warning (disable:4786)
2002-10-12 11:37:38 +00:00
#endif
#include "BKE_material.h" /* give_current_material */
2002-10-12 11:37:38 +00:00
#include "KX_GameObject.h"
#include "KX_IpoConvert.h"
#include "KX_IInterpolator.h"
#include "KX_ScalarInterpolator.h"
#include "KX_BlenderScalarInterpolator.h"
#include "KX_BlenderSceneConverter.h"
/* This little block needed for linking to Blender... */
#ifdef WIN32
#include "BLI_winstuff.h"
#endif
#include "DNA_object_types.h"
#include "DNA_action_types.h"
#include "DNA_anim_types.h"
2002-10-12 11:37:38 +00:00
#include "DNA_ipo_types.h"
#include "DNA_lamp_types.h"
#include "DNA_world_types.h"
#include "DNA_camera_types.h"
#include "DNA_material_types.h"
2002-10-12 11:37:38 +00:00
/* end of blender include block */
#include "KX_IPO_SGController.h"
#include "KX_LightIpoSGController.h"
#include "KX_CameraIpoSGController.h"
#include "KX_WorldIpoController.h"
#include "KX_ObColorIpoSGController.h"
#include "KX_MaterialIpoController.h"
2002-10-12 11:37:38 +00:00
#include "SG_Node.h"
#include "STR_HashedString.h"
2011-12-30 07:55:15 +00:00
static BL_InterpolatorList *GetAdtList(struct bAction *for_act, KX_BlenderSceneConverter *converter)
{
BL_InterpolatorList *adtList= converter->FindInterpolatorList(for_act);
2002-10-12 11:37:38 +00:00
2012-09-16 04:58:18 +00:00
if (!adtList) {
adtList = new BL_InterpolatorList(for_act);
converter->RegisterInterpolatorList(adtList, for_act);
2002-10-12 11:37:38 +00:00
}
2012-09-16 04:58:18 +00:00
return adtList;
2002-10-12 11:37:38 +00:00
}
SG_Controller *BL_CreateIPO(struct bAction *action, KX_GameObject* gameobj, KX_BlenderSceneConverter *converter)
2002-10-12 11:37:38 +00:00
{
KX_IpoSGController* ipocontr = new KX_IpoSGController();
ipocontr->SetGameObject(gameobj);
Object* blenderobject = gameobj->GetBlenderObject();
ipocontr->GetIPOTransform().SetPosition(MT_Point3(blenderobject->loc));
ipocontr->GetIPOTransform().SetEulerAngles(MT_Vector3(blenderobject->rot));
ipocontr->GetIPOTransform().SetScaling(MT_Vector3(blenderobject->size));
const char *rotmode, *drotmode;
switch (blenderobject->rotmode) {
case ROT_MODE_AXISANGLE:
rotmode = "rotation_axis_angle";
drotmode = "delta_rotation_axis_angle";
break;
2012-03-18 07:38:51 +00:00
case ROT_MODE_QUAT: /* XXX, this isn't working, currently only eulers are supported [#28853] */
rotmode = "rotation_quaternion";
drotmode = "delta_rotation_quaternion";
break;
default:
rotmode = "rotation_euler";
drotmode = "delta_rotation_euler";
break;
}
BL_InterpolatorList *adtList= GetAdtList(action, converter);
2002-10-12 11:37:38 +00:00
// For each active channel in the adtList add an
// interpolator to the game object.
2002-10-12 11:37:38 +00:00
KX_IInterpolator *interpolator;
KX_IScalarInterpolator *interp;
2002-10-12 11:37:38 +00:00
for (int i=0; i<3; i++) {
if ((interp = adtList->GetScalarInterpolator("location", i))) {
interpolator= new KX_ScalarInterpolator(&(ipocontr->GetIPOTransform().GetPosition()[i]), interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetIPOChannelActive(OB_LOC_X+i, true);
2002-10-12 11:37:38 +00:00
}
}
for (int i=0; i<3; i++) {
if ((interp = adtList->GetScalarInterpolator("delta_location", i))) {
interpolator= new KX_ScalarInterpolator(&(ipocontr->GetIPOTransform().GetDeltaPosition()[i]), interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetIPOChannelActive(OB_DLOC_X+i, true);
2002-10-12 11:37:38 +00:00
}
}
for (int i=0; i<3; i++) {
if ((interp = adtList->GetScalarInterpolator(rotmode, i))) {
interpolator= new KX_ScalarInterpolator(&(ipocontr->GetIPOTransform().GetEulerAngles()[i]), interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetIPOChannelActive(OB_ROT_X+i, true);
2002-10-12 11:37:38 +00:00
}
}
for (int i=0; i<3; i++) {
if ((interp = adtList->GetScalarInterpolator(drotmode, i))) {
interpolator= new KX_ScalarInterpolator(&(ipocontr->GetIPOTransform().GetDeltaEulerAngles()[i]), interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetIPOChannelActive(OB_DROT_X+i, true);
2002-10-12 11:37:38 +00:00
}
}
for (int i=0; i<3; i++) {
if ((interp = adtList->GetScalarInterpolator("scale", i))) {
interpolator= new KX_ScalarInterpolator(&(ipocontr->GetIPOTransform().GetScaling()[i]), interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetIPOChannelActive(OB_SIZE_X+i, true);
2002-10-12 11:37:38 +00:00
}
}
for (int i=0; i<3; i++) {
if ((interp = adtList->GetScalarInterpolator("delta_scale", i))) {
interpolator= new KX_ScalarInterpolator(&(ipocontr->GetIPOTransform().GetDeltaScaling()[i]), interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetIPOChannelActive(OB_DSIZE_X+i, true);
2002-10-12 11:37:38 +00:00
}
}
2002-10-12 11:37:38 +00:00
return ipocontr;
}
SG_Controller *BL_CreateObColorIPO(struct bAction *action, KX_GameObject* gameobj, KX_BlenderSceneConverter *converter)
{
KX_ObColorIpoSGController* ipocontr_obcol=NULL;
KX_IInterpolator *interpolator;
KX_IScalarInterpolator *interp;
BL_InterpolatorList *adtList= GetAdtList(action, converter);
for (int i=0; i<4; i++) {
if ((interp = adtList->GetScalarInterpolator("color", i))) {
if (!ipocontr_obcol) {
ipocontr_obcol = new KX_ObColorIpoSGController();
2002-10-12 11:37:38 +00:00
}
interpolator= new KX_ScalarInterpolator(&ipocontr_obcol->m_rgba[i], interp);
ipocontr_obcol->AddInterpolator(interpolator);
2002-10-12 11:37:38 +00:00
}
}
return ipocontr_obcol;
}
SG_Controller *BL_CreateLampIPO(struct bAction *action, KX_GameObject* lightobj, KX_BlenderSceneConverter *converter)
2002-10-12 11:37:38 +00:00
{
KX_LightIpoSGController* ipocontr = new KX_LightIpoSGController();
2002-10-12 11:37:38 +00:00
Lamp *blenderlamp = (Lamp*)lightobj->GetBlenderObject()->data;
2002-10-12 11:37:38 +00:00
ipocontr->m_energy = blenderlamp->energy;
ipocontr->m_col_rgb[0] = blenderlamp->r;
ipocontr->m_col_rgb[1] = blenderlamp->g;
ipocontr->m_col_rgb[2] = blenderlamp->b;
ipocontr->m_dist = blenderlamp->dist;
2002-10-12 11:37:38 +00:00
BL_InterpolatorList *adtList= GetAdtList(action, converter);
2002-10-12 11:37:38 +00:00
// For each active channel in the adtList add an
// interpolator to the game object.
2002-10-12 11:37:38 +00:00
KX_IInterpolator *interpolator;
KX_IScalarInterpolator *interp;
2002-10-12 11:37:38 +00:00
if ((interp= adtList->GetScalarInterpolator("energy", 0))) {
interpolator= new KX_ScalarInterpolator(&ipocontr->m_energy, interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyEnergy(true);
}
2002-10-12 11:37:38 +00:00
if ((interp = adtList->GetScalarInterpolator("distance", 0))) {
interpolator= new KX_ScalarInterpolator(&ipocontr->m_dist, interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyDist(true);
}
for (int i=0; i<3; i++) {
if ((interp = adtList->GetScalarInterpolator("color", i))) {
interpolator= new KX_ScalarInterpolator(&ipocontr->m_col_rgb[i], interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyColor(true);
2002-10-12 11:37:38 +00:00
}
}
return ipocontr;
2002-10-12 11:37:38 +00:00
}
SG_Controller *BL_CreateCameraIPO(struct bAction *action, KX_GameObject* cameraobj, KX_BlenderSceneConverter *converter)
2002-10-12 11:37:38 +00:00
{
KX_CameraIpoSGController* ipocontr = new KX_CameraIpoSGController();
2002-10-12 11:37:38 +00:00
Camera *blendercamera = (Camera*)cameraobj->GetBlenderObject()->data;
2002-10-12 11:37:38 +00:00
ipocontr->m_lens = blendercamera->lens;
ipocontr->m_clipstart = blendercamera->clipsta;
ipocontr->m_clipend = blendercamera->clipend;
2002-10-12 11:37:38 +00:00
BL_InterpolatorList *adtList= GetAdtList(action, converter);
2002-10-12 11:37:38 +00:00
// For each active channel in the adtList add an
// interpolator to the game object.
2002-10-12 11:37:38 +00:00
KX_IInterpolator *interpolator;
KX_IScalarInterpolator *interp;
2002-10-12 11:37:38 +00:00
if ((interp = adtList->GetScalarInterpolator("lens", 0))) {
interpolator= new KX_ScalarInterpolator(&ipocontr->m_lens, interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyLens(true);
}
2002-10-12 11:37:38 +00:00
if ((interp = adtList->GetScalarInterpolator("clip_start", 0))) {
interpolator= new KX_ScalarInterpolator(&ipocontr->m_clipstart, interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyClipStart(true);
}
2002-10-12 11:37:38 +00:00
if ((interp = adtList->GetScalarInterpolator("clip_end", 0))) {
interpolator= new KX_ScalarInterpolator(&ipocontr->m_clipend, interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyClipEnd(true);
}
return ipocontr;
}
2002-10-12 11:37:38 +00:00
SG_Controller * BL_CreateWorldIPO( bAction *action, struct World *blenderworld, KX_BlenderSceneConverter *converter )
{
KX_WorldIpoController *ipocontr = NULL;
2002-10-12 11:37:38 +00:00
if (blenderworld) {
BL_InterpolatorList *adtList = GetAdtList(action, converter);
2002-10-12 11:37:38 +00:00
// For each active channel in the adtList add an interpolator to the game object.
2009-06-15 11:47:16 +00:00
KX_IInterpolator *interpolator;
KX_IScalarInterpolator *interp;
for (int i=0; i<3; i++) {
if ((interp = adtList->GetScalarInterpolator("ambient_color", i))) {
if (!ipocontr) {
ipocontr = new KX_WorldIpoController();
}
interpolator = new KX_ScalarInterpolator(&ipocontr->m_ambi_rgb[i], interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyAmbientColor(true);
}
}
for (int i=0; i<3; i++) {
if ((interp = adtList->GetScalarInterpolator("horizon_color", i))) {
if (!ipocontr) {
ipocontr = new KX_WorldIpoController();
}
interpolator = new KX_ScalarInterpolator(&ipocontr->m_hori_rgb[i], interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyHorizonColor(true);
}
2002-10-12 11:37:38 +00:00
}
if ((interp = adtList->GetScalarInterpolator("mist_settings.start", 0))) {
if (!ipocontr) {
ipocontr = new KX_WorldIpoController();
}
interpolator = new KX_ScalarInterpolator(&ipocontr->m_mist_start, interp);
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyMistStart(true);
}
if ((interp = adtList->GetScalarInterpolator("mist_settings.depth", 0))) {
if (!ipocontr) {
ipocontr = new KX_WorldIpoController();
}
interpolator = new KX_ScalarInterpolator(&ipocontr->m_mist_dist, interp);
2002-10-12 11:37:38 +00:00
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyMistDist(true);
}
if ((interp = adtList->GetScalarInterpolator("mist_settings.intensity", 0))) {
if (!ipocontr) {
ipocontr = new KX_WorldIpoController();
}
interpolator = new KX_ScalarInterpolator(&ipocontr->m_mist_intensity, interp);
2002-10-12 11:37:38 +00:00
ipocontr->AddInterpolator(interpolator);
ipocontr->SetModifyMistIntensity(true);
}
if (ipocontr) {
ipocontr->m_mist_start = blenderworld->miststa;
ipocontr->m_mist_dist = blenderworld->mistdist;
ipocontr->m_mist_intensity = blenderworld->misi;
ipocontr->m_hori_rgb[0] = blenderworld->horr;
ipocontr->m_hori_rgb[1] = blenderworld->horg;
ipocontr->m_hori_rgb[2] = blenderworld->horb;
ipocontr->m_ambi_rgb[0] = blenderworld->ambr;
ipocontr->m_ambi_rgb[1] = blenderworld->ambg;
ipocontr->m_ambi_rgb[2] = blenderworld->ambb;
2002-10-12 11:37:38 +00:00
}
}
return ipocontr;
2002-10-12 11:37:38 +00:00
}
SG_Controller *BL_CreateMaterialIpo(
struct bAction *action,
Material* blendermaterial,
dword matname_hash,
KX_GameObject* gameobj,
KX_BlenderSceneConverter *converter
)
{
KX_MaterialIpoController* ipocontr = NULL;
BL_InterpolatorList *adtList= GetAdtList(action, converter);
KX_IInterpolator *interpolator;
KX_IScalarInterpolator *sinterp;
// --
for (int i=0; i<3; i++) {
if ((sinterp = adtList->GetScalarInterpolator("diffuse_color", i))) {
if (!ipocontr) {
ipocontr = new KX_MaterialIpoController(matname_hash);
}
interpolator= new KX_ScalarInterpolator(&ipocontr->m_rgba[i], sinterp);
ipocontr->AddInterpolator(interpolator);
}
}
if ((sinterp = adtList->GetScalarInterpolator("alpha", 0))) {
if (!ipocontr) {
ipocontr = new KX_MaterialIpoController(matname_hash);
}
interpolator= new KX_ScalarInterpolator(&ipocontr->m_rgba[3], sinterp);
ipocontr->AddInterpolator(interpolator);
}
for (int i=0; i<3; i++) {
if ((sinterp = adtList->GetScalarInterpolator("specular_color", i))) {
if (!ipocontr) {
ipocontr = new KX_MaterialIpoController(matname_hash);
}
interpolator= new KX_ScalarInterpolator(&ipocontr->m_specrgb[i], sinterp);
ipocontr->AddInterpolator(interpolator);
}
}
if ((sinterp = adtList->GetScalarInterpolator("specular_hardness", 0))) {
if (!ipocontr) {
ipocontr = new KX_MaterialIpoController(matname_hash);
2012-09-16 04:58:18 +00:00
}
interpolator= new KX_ScalarInterpolator(&ipocontr->m_hard, sinterp);
ipocontr->AddInterpolator(interpolator);
}
if ((sinterp = adtList->GetScalarInterpolator("specular_intensity", 0))) {
if (!ipocontr) {
ipocontr = new KX_MaterialIpoController(matname_hash);
}
interpolator= new KX_ScalarInterpolator(&ipocontr->m_spec, sinterp);
ipocontr->AddInterpolator(interpolator);
2012-09-16 04:58:18 +00:00
}
if ((sinterp = adtList->GetScalarInterpolator("diffuse_intensity", 0))) {
if (!ipocontr) {
ipocontr = new KX_MaterialIpoController(matname_hash);
}
interpolator= new KX_ScalarInterpolator(&ipocontr->m_ref, sinterp);
ipocontr->AddInterpolator(interpolator);
}
if ((sinterp = adtList->GetScalarInterpolator("emit", 0))) {
if (!ipocontr) {
ipocontr = new KX_MaterialIpoController(matname_hash);
}
interpolator= new KX_ScalarInterpolator(&ipocontr->m_emit, sinterp);
ipocontr->AddInterpolator(interpolator);
}
if (ipocontr) {
ipocontr->m_rgba[0] = blendermaterial->r;
ipocontr->m_rgba[1] = blendermaterial->g;
ipocontr->m_rgba[2] = blendermaterial->b;
ipocontr->m_rgba[3] = blendermaterial->alpha;
ipocontr->m_specrgb[0] = blendermaterial->specr;
ipocontr->m_specrgb[1] = blendermaterial->specg;
ipocontr->m_specrgb[2] = blendermaterial->specb;
ipocontr->m_hard = blendermaterial->har;
ipocontr->m_spec = blendermaterial->spec;
ipocontr->m_ref = blendermaterial->ref;
ipocontr->m_emit = blendermaterial->emit;
ipocontr->m_alpha = blendermaterial->alpha;
}
return ipocontr;
}