2010-04-11 22:12:30 +00:00
|
|
|
/*
|
2010-04-11 23:20:03 +00:00
|
|
|
* $Id$
|
2010-04-11 22:12:30 +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,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2005 by the Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): Daniel Dunbar
|
|
|
|
* Ton Roosendaal,
|
|
|
|
* Ben Batt,
|
|
|
|
* Brecht Van Lommel,
|
|
|
|
* Campbell Barton
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-02-25 13:57:17 +00:00
|
|
|
/** \file blender/modifiers/intern/MOD_smoke.c
|
|
|
|
* \ingroup modifiers
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-04-11 22:12:30 +00:00
|
|
|
#include "stddef.h"
|
|
|
|
|
2010-05-14 07:09:15 +00:00
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
2010-12-15 17:05:34 +00:00
|
|
|
#include "DNA_group_types.h"
|
2010-08-04 04:01:27 +00:00
|
|
|
#include "DNA_object_types.h"
|
2010-12-15 17:05:34 +00:00
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
#include "DNA_smoke_types.h"
|
2010-08-04 04:01:27 +00:00
|
|
|
|
2011-01-07 18:36:47 +00:00
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
2011-01-07 19:18:31 +00:00
|
|
|
|
2010-04-11 22:12:30 +00:00
|
|
|
#include "BKE_cdderivedmesh.h"
|
|
|
|
#include "BKE_modifier.h"
|
|
|
|
#include "BKE_smoke.h"
|
|
|
|
|
|
|
|
#include "depsgraph_private.h"
|
|
|
|
|
|
|
|
#include "MOD_util.h"
|
|
|
|
|
|
|
|
|
|
|
|
static void initData(ModifierData *md)
|
|
|
|
{
|
|
|
|
SmokeModifierData *smd = (SmokeModifierData*) md;
|
|
|
|
|
|
|
|
smd->domain = NULL;
|
|
|
|
smd->flow = NULL;
|
|
|
|
smd->coll = NULL;
|
|
|
|
smd->type = 0;
|
|
|
|
smd->time = -1;
|
|
|
|
}
|
|
|
|
|
2010-05-14 07:09:15 +00:00
|
|
|
static void copyData(ModifierData *md, ModifierData *target)
|
|
|
|
{
|
|
|
|
SmokeModifierData *smd = (SmokeModifierData*)md;
|
|
|
|
SmokeModifierData *tsmd = (SmokeModifierData*)target;
|
|
|
|
|
|
|
|
smokeModifier_copy(smd, tsmd);
|
|
|
|
}
|
|
|
|
|
2010-04-11 22:12:30 +00:00
|
|
|
static void freeData(ModifierData *md)
|
|
|
|
{
|
|
|
|
SmokeModifierData *smd = (SmokeModifierData*) md;
|
|
|
|
|
|
|
|
smokeModifier_free (smd);
|
|
|
|
}
|
|
|
|
|
2010-10-14 06:29:17 +00:00
|
|
|
static void deformVerts(ModifierData *md, Object *ob,
|
|
|
|
DerivedMesh *derivedData,
|
|
|
|
float (*vertexCos)[3],
|
|
|
|
int UNUSED(numVerts),
|
2010-10-21 01:10:22 +00:00
|
|
|
int UNUSED(useRenderParams),
|
|
|
|
int UNUSED(isFinalCalc))
|
2010-04-11 22:12:30 +00:00
|
|
|
{
|
|
|
|
SmokeModifierData *smd = (SmokeModifierData*) md;
|
2011-01-12 03:41:12 +00:00
|
|
|
DerivedMesh *dm = get_cddm(ob, NULL, derivedData, vertexCos);
|
2010-04-11 22:12:30 +00:00
|
|
|
|
2010-10-21 01:10:22 +00:00
|
|
|
smokeModifier_do(smd, md->scene, ob, dm);
|
2010-04-11 22:12:30 +00:00
|
|
|
|
|
|
|
if(dm != derivedData)
|
|
|
|
dm->release(dm);
|
|
|
|
}
|
|
|
|
|
2010-10-14 06:29:17 +00:00
|
|
|
static int dependsOnTime(ModifierData *UNUSED(md))
|
2010-04-11 22:12:30 +00:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-12-15 17:05:34 +00:00
|
|
|
static void updateDepgraph(ModifierData *md, DagForest *forest,
|
|
|
|
struct Scene *scene,
|
2010-12-15 17:36:08 +00:00
|
|
|
Object *UNUSED(ob),
|
2010-12-15 17:05:34 +00:00
|
|
|
DagNode *obNode)
|
2010-04-11 22:12:30 +00:00
|
|
|
{
|
2010-12-15 17:05:34 +00:00
|
|
|
SmokeModifierData *smd = (SmokeModifierData *) md;
|
|
|
|
|
2010-04-11 22:12:30 +00:00
|
|
|
if(smd && (smd->type & MOD_SMOKE_TYPE_DOMAIN) && smd->domain)
|
|
|
|
{
|
|
|
|
if(smd->domain->fluid_group)
|
|
|
|
{
|
|
|
|
GroupObject *go = NULL;
|
|
|
|
|
|
|
|
for(go = smd->domain->fluid_group->gobject.first; go; go = go->next)
|
|
|
|
{
|
|
|
|
if(go->ob)
|
|
|
|
{
|
|
|
|
SmokeModifierData *smd2 = (SmokeModifierData *)modifiers_findByType(go->ob, eModifierType_Smoke);
|
|
|
|
|
|
|
|
// check for initialized smoke object
|
2010-12-15 17:05:34 +00:00
|
|
|
if(smd2 && (((smd2->type & MOD_SMOKE_TYPE_FLOW) && smd2->flow) || ((smd->type & MOD_SMOKE_TYPE_COLL) && smd2->coll)))
|
2010-04-11 22:12:30 +00:00
|
|
|
{
|
|
|
|
DagNode *curNode = dag_get_node(forest, go->ob);
|
|
|
|
dag_add_relation(forest, curNode, obNode, DAG_RL_DATA_DATA|DAG_RL_OB_DATA, "Smoke Flow");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-12-15 17:05:34 +00:00
|
|
|
else {
|
|
|
|
Base *base = scene->base.first;
|
|
|
|
|
|
|
|
for(; base; base = base->next) {
|
|
|
|
SmokeModifierData *smd2 = (SmokeModifierData *)modifiers_findByType(base->object, eModifierType_Smoke);
|
|
|
|
|
|
|
|
if(smd2 && (((smd2->type & MOD_SMOKE_TYPE_FLOW) && smd2->flow) || ((smd->type & MOD_SMOKE_TYPE_COLL) && smd2->coll)))
|
|
|
|
{
|
|
|
|
DagNode *curNode = dag_get_node(forest, base->object);
|
|
|
|
dag_add_relation(forest, curNode, obNode, DAG_RL_DATA_DATA|DAG_RL_OB_DATA, "Smoke Flow");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-11 22:12:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ModifierTypeInfo modifierType_Smoke = {
|
|
|
|
/* name */ "Smoke",
|
|
|
|
/* structName */ "SmokeModifierData",
|
|
|
|
/* structSize */ sizeof(SmokeModifierData),
|
|
|
|
/* type */ eModifierTypeType_OnlyDeform,
|
|
|
|
/* flags */ eModifierTypeFlag_AcceptsMesh
|
|
|
|
| eModifierTypeFlag_UsesPointCache
|
|
|
|
| eModifierTypeFlag_Single,
|
|
|
|
|
2010-05-14 07:09:15 +00:00
|
|
|
/* copyData */ copyData,
|
2010-04-11 22:12:30 +00:00
|
|
|
/* deformVerts */ deformVerts,
|
2011-01-31 20:02:51 +00:00
|
|
|
/* deformMatrices */ 0,
|
2010-04-11 22:12:30 +00:00
|
|
|
/* deformVertsEM */ 0,
|
|
|
|
/* deformMatricesEM */ 0,
|
|
|
|
/* applyModifier */ 0,
|
|
|
|
/* applyModifierEM */ 0,
|
|
|
|
/* initData */ initData,
|
|
|
|
/* requiredDataMask */ 0,
|
|
|
|
/* freeData */ freeData,
|
|
|
|
/* isDisabled */ 0,
|
|
|
|
/* updateDepgraph */ updateDepgraph,
|
|
|
|
/* dependsOnTime */ dependsOnTime,
|
2010-09-30 10:51:36 +00:00
|
|
|
/* dependsOnNormals */ 0,
|
2010-04-11 22:12:30 +00:00
|
|
|
/* foreachObjectLink */ 0,
|
|
|
|
/* foreachIDLink */ 0,
|
|
|
|
};
|