2004-10-01 14:10:30 +00:00
|
|
|
/* softbody.c
|
|
|
|
*
|
2005-08-03 21:38:02 +00:00
|
|
|
* $Id$
|
2004-10-01 14:10:30 +00:00
|
|
|
*
|
|
|
|
* ***** BEGIN GPL/BL DUAL 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. The Blender
|
|
|
|
* Foundation also sells licenses for use in proprietary software under
|
|
|
|
* the Blender License. See http://www.blender.org/BL/ for information
|
|
|
|
* about this.
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) Blender Foundation
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
*
|
|
|
|
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
/*
|
|
|
|
******
|
|
|
|
variables on the UI for now
|
2005-04-02 13:57:23 +00:00
|
|
|
|
|
|
|
float mediafrict; friction to env
|
|
|
|
float nodemass; softbody mass of *vertex*
|
|
|
|
float grav; softbody amount of gravitaion to apply
|
|
|
|
|
|
|
|
float goalspring; softbody goal springs
|
|
|
|
float goalfrict; softbody goal springs friction
|
|
|
|
float mingoal; quick limits for goal
|
|
|
|
float maxgoal;
|
|
|
|
|
|
|
|
float inspring; softbody inner springs
|
|
|
|
float infrict; softbody inner springs friction
|
2005-01-12 22:28:13 +00:00
|
|
|
|
|
|
|
*****
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <stdlib.h>
|
2005-01-13 13:58:29 +00:00
|
|
|
#include <string.h>
|
2004-10-01 14:10:30 +00:00
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
/* types */
|
2005-04-02 19:52:32 +00:00
|
|
|
#include "DNA_curve_types.h"
|
2004-10-01 14:10:30 +00:00
|
|
|
#include "DNA_object_types.h"
|
2005-05-02 13:28:13 +00:00
|
|
|
#include "DNA_object_force.h" /* here is the softbody struct */
|
|
|
|
#include "DNA_key_types.h"
|
2004-10-01 14:10:30 +00:00
|
|
|
#include "DNA_mesh_types.h"
|
|
|
|
#include "DNA_meshdata_types.h"
|
2005-04-02 19:52:32 +00:00
|
|
|
#include "DNA_lattice_types.h"
|
2004-10-01 14:10:30 +00:00
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
|
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
#include "BLI_arithb.h"
|
2006-11-10 23:09:16 +00:00
|
|
|
#include "BLI_ghash.h"
|
2005-11-17 11:40:57 +00:00
|
|
|
#include "BKE_curve.h"
|
2005-04-04 18:09:47 +00:00
|
|
|
#include "BKE_effect.h"
|
2004-10-01 14:10:30 +00:00
|
|
|
#include "BKE_global.h"
|
2005-05-02 13:28:13 +00:00
|
|
|
#include "BKE_key.h"
|
2005-04-02 13:57:23 +00:00
|
|
|
#include "BKE_object.h"
|
2004-10-01 14:10:30 +00:00
|
|
|
#include "BKE_softbody.h"
|
2005-04-02 13:57:23 +00:00
|
|
|
#include "BKE_utildefines.h"
|
2005-08-19 22:55:05 +00:00
|
|
|
#include "BKE_DerivedMesh.h"
|
2004-10-01 14:10:30 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
#include "BIF_editdeform.h"
|
2006-11-10 23:09:16 +00:00
|
|
|
#include "BIF_graphics.h"
|
|
|
|
#include "PIL_time.h"
|
2006-11-20 22:27:05 +00:00
|
|
|
|
|
|
|
/* callbacks for errors and interrupts and some goo */
|
|
|
|
static int (*SB_localInterruptCallBack)(void) = NULL;
|
|
|
|
|
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
/* ********** soft body engine ******* */
|
2005-08-15 10:30:53 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
|
2005-08-15 10:30:53 +00:00
|
|
|
typedef struct BodyPoint {
|
|
|
|
float origS[3], origE[3], origT[3], pos[3], vec[3], force[3];
|
2006-11-10 23:09:16 +00:00
|
|
|
float goal;
|
2005-08-15 10:30:53 +00:00
|
|
|
float prevpos[3], prevvec[3], prevdx[3], prevdv[3]; /* used for Heun integration */
|
|
|
|
int nofsprings; int *springs;
|
2006-11-10 23:09:16 +00:00
|
|
|
float choke;
|
2006-09-28 20:27:46 +00:00
|
|
|
float colball;
|
2006-11-10 23:09:16 +00:00
|
|
|
short flag;
|
|
|
|
char octantflag;
|
2005-08-15 10:30:53 +00:00
|
|
|
} BodyPoint;
|
|
|
|
|
|
|
|
typedef struct BodySpring {
|
|
|
|
int v1, v2;
|
2006-11-10 23:09:16 +00:00
|
|
|
float len, strength, cf;
|
2006-10-14 19:03:06 +00:00
|
|
|
float ext_force[3]; /* edges colliding and sailing */
|
2006-10-04 21:36:55 +00:00
|
|
|
short order;
|
2006-10-10 21:49:02 +00:00
|
|
|
short flag;
|
2005-08-15 10:30:53 +00:00
|
|
|
} BodySpring;
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
typedef struct BodyFace {
|
|
|
|
int v1, v2, v3 ,v4;
|
|
|
|
float ext_force[3]; /* edges colliding and sailing */
|
|
|
|
short flag;
|
|
|
|
} BodyFace;
|
|
|
|
|
|
|
|
|
|
|
|
/*private scratch pad for caching and other data only needed when alive*/
|
|
|
|
typedef struct SBScratch {
|
|
|
|
GHash *colliderhash;
|
|
|
|
short needstobuildcollider;
|
|
|
|
short flag;
|
|
|
|
BodyFace *bodyface;
|
|
|
|
int totface;
|
|
|
|
float aabbmin[3],aabbmax[3];
|
|
|
|
}SBScratch;
|
2005-08-15 10:30:53 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
#define SOFTGOALSNAP 0.999f
|
2005-11-19 21:35:06 +00:00
|
|
|
/* if bp-> goal is above make it a *forced follow original* and skip all ODE stuff for this bp
|
|
|
|
removes *unnecessary* stiffnes from ODE system
|
|
|
|
*/
|
2006-11-10 23:09:16 +00:00
|
|
|
#define HEUNWARNLIMIT 1 /* 500 would be fine i think for detecting severe *stiff* stuff */
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2005-04-18 21:51:45 +00:00
|
|
|
|
2006-10-10 21:49:02 +00:00
|
|
|
#define BSF_INTERSECT 1 /* edge intersects collider face */
|
2006-11-10 23:09:16 +00:00
|
|
|
#define SBF_DOFUZZY 1 /* edge intersects collider face */
|
|
|
|
#define BFF_INTERSECT 1 /* edge intersects collider face */
|
2006-10-10 21:49:02 +00:00
|
|
|
|
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
float SoftHeunTol = 1.0f; /* humm .. this should be calculated from sb parameters and sizes */
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2005-03-09 19:45:59 +00:00
|
|
|
/* local prototypes */
|
2005-04-02 13:57:23 +00:00
|
|
|
static void free_softbody_intern(SoftBody *sb);
|
2005-10-24 22:13:32 +00:00
|
|
|
/* aye this belongs to arith.c */
|
|
|
|
static void Vec3PlusStVec(float *v, float s, float *v1);
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2005-04-12 21:36:21 +00:00
|
|
|
/*+++ frame based timing +++*/
|
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
/*physical unit of force is [kg * m / sec^2]*/
|
2005-04-12 21:36:21 +00:00
|
|
|
|
|
|
|
static float sb_grav_force_scale(Object *ob)
|
2005-11-19 21:35:06 +00:00
|
|
|
/* since unit of g is [m/sec^2] and F = mass * g we rescale unit mass of node to 1 gramm
|
|
|
|
put it to a function here, so we can add user options later without touching simulation code
|
|
|
|
*/
|
2005-04-12 21:36:21 +00:00
|
|
|
{
|
|
|
|
return (0.001f);
|
|
|
|
}
|
|
|
|
|
|
|
|
static float sb_fric_force_scale(Object *ob)
|
2005-11-19 21:35:06 +00:00
|
|
|
/* rescaling unit of drag [1 / sec] to somehow reasonable
|
|
|
|
put it to a function here, so we can add user options later without touching simulation code
|
|
|
|
*/
|
2005-01-12 22:28:13 +00:00
|
|
|
{
|
2005-04-12 21:36:21 +00:00
|
|
|
return (0.01f);
|
|
|
|
}
|
|
|
|
|
|
|
|
static float sb_time_scale(Object *ob)
|
2005-11-19 21:35:06 +00:00
|
|
|
/* defining the frames to *real* time relation */
|
2005-04-12 21:36:21 +00:00
|
|
|
{
|
2005-11-19 21:35:06 +00:00
|
|
|
SoftBody *sb= ob->soft; /* is supposed to be there */
|
2005-04-12 21:36:21 +00:00
|
|
|
if (sb){
|
2005-11-19 21:35:06 +00:00
|
|
|
return(sb->physics_speed);
|
|
|
|
/*hrms .. this could be IPO as well :)
|
|
|
|
estimated range [0.001 sluggish slug - 100.0 very fast (i hope ODE solver can handle that)]
|
|
|
|
1 approx = a unit 1 pendulum at g = 9.8 [earth conditions] has period 65 frames
|
|
|
|
theory would give a 50 frames period .. so there must be something inaccurate .. looking for that (BM)
|
|
|
|
*/
|
2005-04-12 21:36:21 +00:00
|
|
|
}
|
|
|
|
return (1.0f);
|
2005-04-20 16:55:04 +00:00
|
|
|
/*
|
|
|
|
this would be frames/sec independant timing assuming 25 fps is default
|
|
|
|
but does not work very well with NLA
|
|
|
|
return (25.0f/G.scene->r.frs_sec)
|
|
|
|
*/
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
2005-04-12 21:36:21 +00:00
|
|
|
/*--- frame based timing ---*/
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
/*+++ collider caching and dicing +++*/
|
|
|
|
|
2006-02-01 09:46:34 +00:00
|
|
|
/********************
|
2006-10-14 19:03:06 +00:00
|
|
|
for each target object/face the axis aligned bounding box (AABB) is stored
|
2006-01-31 22:48:41 +00:00
|
|
|
faces paralell to global axes
|
|
|
|
so only simple "value" in [min,max] ckecks are used
|
|
|
|
float operations still
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* just an ID here to reduce the prob for killing objects
|
|
|
|
** ob->sumohandle points to we should not kill :)
|
|
|
|
*/
|
|
|
|
const int CCD_SAVETY = 190561;
|
|
|
|
|
|
|
|
typedef struct ccdf_minmax{
|
|
|
|
float minx,miny,minz,maxx,maxy,maxz;
|
|
|
|
}ccdf_minmax;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct ccd_Mesh {
|
|
|
|
int totvert, totface;
|
|
|
|
MVert *mvert;
|
2006-11-10 23:09:16 +00:00
|
|
|
MVert *mprevvert;
|
2006-01-31 22:48:41 +00:00
|
|
|
MFace *mface;
|
|
|
|
int savety;
|
|
|
|
ccdf_minmax *mima;
|
2006-10-10 21:49:02 +00:00
|
|
|
/* Axis Aligned Bounding Box AABB */
|
2006-01-31 22:48:41 +00:00
|
|
|
float bbmin[3];
|
|
|
|
float bbmax[3];
|
|
|
|
}ccd_Mesh;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
ccd_Mesh *ccd_mesh_make(Object *ob, DerivedMesh *dm)
|
2006-11-10 23:09:16 +00:00
|
|
|
{
|
2006-01-31 22:48:41 +00:00
|
|
|
ccd_Mesh *pccd_M = NULL;
|
|
|
|
ccdf_minmax *mima =NULL;
|
|
|
|
MFace *mface=NULL;
|
|
|
|
float v[3],hull;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* first some paranoia checks */
|
2006-11-10 23:09:16 +00:00
|
|
|
if (!dm) return NULL;
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
if (!dm->getNumVerts(dm) || !dm->getNumFaces(dm)) return NULL;
|
2006-01-31 22:48:41 +00:00
|
|
|
|
|
|
|
pccd_M = MEM_mallocN(sizeof(ccd_Mesh),"ccd_Mesh");
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
pccd_M->totvert = dm->getNumVerts(dm);
|
2006-11-20 09:19:14 +00:00
|
|
|
pccd_M->totface = dm->getNumFaces(dm);
|
2006-01-31 22:48:41 +00:00
|
|
|
pccd_M->savety = CCD_SAVETY;
|
|
|
|
pccd_M->bbmin[0]=pccd_M->bbmin[1]=pccd_M->bbmin[2]=1e30f;
|
|
|
|
pccd_M->bbmax[0]=pccd_M->bbmax[1]=pccd_M->bbmax[2]=-1e30f;
|
2006-11-10 23:09:16 +00:00
|
|
|
pccd_M->mprevvert=NULL;
|
2006-01-31 22:48:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* blow it up with forcefield ranges */
|
|
|
|
hull = MAX2(ob->pd->pdef_sbift,ob->pd->pdef_sboft);
|
|
|
|
|
|
|
|
/* alloc and copy verts*/
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
pccd_M->mvert = dm->dupVertArray(dm);
|
2006-01-31 22:48:41 +00:00
|
|
|
/* ah yeah, put the verices to global coords once */
|
|
|
|
/* and determine the ortho BB on the fly */
|
2006-11-10 23:09:16 +00:00
|
|
|
for(i=0; i < pccd_M->totvert; i++){
|
|
|
|
Mat4MulVecfl(ob->obmat, pccd_M->mvert[i].co);
|
2006-01-31 22:48:41 +00:00
|
|
|
|
|
|
|
/* evaluate limits */
|
|
|
|
VECCOPY(v,pccd_M->mvert[i].co);
|
|
|
|
pccd_M->bbmin[0] = MIN2(pccd_M->bbmin[0],v[0]-hull);
|
|
|
|
pccd_M->bbmin[1] = MIN2(pccd_M->bbmin[1],v[1]-hull);
|
|
|
|
pccd_M->bbmin[2] = MIN2(pccd_M->bbmin[2],v[2]-hull);
|
|
|
|
|
|
|
|
pccd_M->bbmax[0] = MAX2(pccd_M->bbmax[0],v[0]+hull);
|
|
|
|
pccd_M->bbmax[1] = MAX2(pccd_M->bbmax[1],v[1]+hull);
|
|
|
|
pccd_M->bbmax[2] = MAX2(pccd_M->bbmax[2],v[2]+hull);
|
|
|
|
|
|
|
|
}
|
|
|
|
/* alloc and copy faces*/
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
pccd_M->mface = dm->dupFaceArray(dm);
|
2006-01-31 22:48:41 +00:00
|
|
|
|
|
|
|
/* OBBs for idea1 */
|
|
|
|
pccd_M->mima = MEM_mallocN(sizeof(ccdf_minmax)*pccd_M->totface,"ccd_Mesh_Faces_mima");
|
|
|
|
mima = pccd_M->mima;
|
|
|
|
mface = pccd_M->mface;
|
|
|
|
|
|
|
|
|
|
|
|
/* anyhoo we need to walk the list of faces and find OBB they live in */
|
|
|
|
for(i=0; i < pccd_M->totface; i++){
|
|
|
|
mima->minx=mima->miny=mima->minz=1e30f;
|
|
|
|
mima->maxx=mima->maxy=mima->maxz=-1e30f;
|
|
|
|
|
|
|
|
VECCOPY(v,pccd_M->mvert[mface->v1].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
|
|
|
|
VECCOPY(v,pccd_M->mvert[mface->v2].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
|
|
|
|
VECCOPY(v,pccd_M->mvert[mface->v3].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
|
|
|
|
if(mface->v4){
|
|
|
|
VECCOPY(v,pccd_M->mvert[mface->v4].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
mima++;
|
|
|
|
mface++;
|
|
|
|
|
|
|
|
}
|
|
|
|
return pccd_M;
|
|
|
|
}
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
void ccd_mesh_update(Object *ob,ccd_Mesh *pccd_M, DerivedMesh *dm)
|
2006-01-31 22:48:41 +00:00
|
|
|
{
|
2006-11-10 23:09:16 +00:00
|
|
|
ccdf_minmax *mima =NULL;
|
2006-01-31 22:48:41 +00:00
|
|
|
MFace *mface=NULL;
|
|
|
|
float v[3],hull;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* first some paranoia checks */
|
2006-11-10 23:09:16 +00:00
|
|
|
if (!dm) return ;
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
if (!dm->getNumVerts(dm) || !dm->getNumFaces(dm)) return ;
|
2006-11-10 23:09:16 +00:00
|
|
|
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
if ((pccd_M->totvert != dm->getNumVerts(dm)) ||
|
|
|
|
(pccd_M->totface != dm->getNumFaces(dm))) return;
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
pccd_M->bbmin[0]=pccd_M->bbmin[1]=pccd_M->bbmin[2]=1e30f;
|
|
|
|
pccd_M->bbmax[0]=pccd_M->bbmax[1]=pccd_M->bbmax[2]=-1e30f;
|
|
|
|
|
|
|
|
|
|
|
|
/* blow it up with forcefield ranges */
|
|
|
|
hull = MAX2(ob->pd->pdef_sbift,ob->pd->pdef_sboft);
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
/* rotate current to previous */
|
|
|
|
if(pccd_M->mprevvert) MEM_freeN(pccd_M->mprevvert);
|
|
|
|
pccd_M->mprevvert = pccd_M->mvert;
|
2006-01-31 22:48:41 +00:00
|
|
|
/* alloc and copy verts*/
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
pccd_M->mvert = dm->dupVertArray(dm);
|
2006-01-31 22:48:41 +00:00
|
|
|
/* ah yeah, put the verices to global coords once */
|
|
|
|
/* and determine the ortho BB on the fly */
|
|
|
|
for(i=0; i < pccd_M->totvert; i++){
|
|
|
|
Mat4MulVecfl(ob->obmat, pccd_M->mvert[i].co);
|
|
|
|
|
|
|
|
/* evaluate limits */
|
|
|
|
VECCOPY(v,pccd_M->mvert[i].co);
|
|
|
|
pccd_M->bbmin[0] = MIN2(pccd_M->bbmin[0],v[0]-hull);
|
|
|
|
pccd_M->bbmin[1] = MIN2(pccd_M->bbmin[1],v[1]-hull);
|
|
|
|
pccd_M->bbmin[2] = MIN2(pccd_M->bbmin[2],v[2]-hull);
|
|
|
|
|
|
|
|
pccd_M->bbmax[0] = MAX2(pccd_M->bbmax[0],v[0]+hull);
|
|
|
|
pccd_M->bbmax[1] = MAX2(pccd_M->bbmax[1],v[1]+hull);
|
|
|
|
pccd_M->bbmax[2] = MAX2(pccd_M->bbmax[2],v[2]+hull);
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
/* evaluate limits */
|
|
|
|
VECCOPY(v,pccd_M->mprevvert[i].co);
|
|
|
|
pccd_M->bbmin[0] = MIN2(pccd_M->bbmin[0],v[0]-hull);
|
|
|
|
pccd_M->bbmin[1] = MIN2(pccd_M->bbmin[1],v[1]-hull);
|
|
|
|
pccd_M->bbmin[2] = MIN2(pccd_M->bbmin[2],v[2]-hull);
|
|
|
|
|
|
|
|
pccd_M->bbmax[0] = MAX2(pccd_M->bbmax[0],v[0]+hull);
|
|
|
|
pccd_M->bbmax[1] = MAX2(pccd_M->bbmax[1],v[1]+hull);
|
|
|
|
pccd_M->bbmax[2] = MAX2(pccd_M->bbmax[2],v[2]+hull);
|
2006-01-31 22:48:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
mima = pccd_M->mima;
|
|
|
|
mface = pccd_M->mface;
|
|
|
|
|
|
|
|
|
|
|
|
/* anyhoo we need to walk the list of faces and find OBB they live in */
|
|
|
|
for(i=0; i < pccd_M->totface; i++){
|
|
|
|
mima->minx=mima->miny=mima->minz=1e30f;
|
|
|
|
mima->maxx=mima->maxy=mima->maxz=-1e30f;
|
|
|
|
|
|
|
|
VECCOPY(v,pccd_M->mvert[mface->v1].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
|
|
|
|
VECCOPY(v,pccd_M->mvert[mface->v2].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
|
|
|
|
VECCOPY(v,pccd_M->mvert[mface->v3].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
|
|
|
|
if(mface->v4){
|
|
|
|
VECCOPY(v,pccd_M->mvert[mface->v4].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
}
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
VECCOPY(v,pccd_M->mprevvert[mface->v1].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
|
|
|
|
VECCOPY(v,pccd_M->mprevvert[mface->v2].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
|
|
|
|
VECCOPY(v,pccd_M->mprevvert[mface->v3].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
|
|
|
|
if(mface->v4){
|
|
|
|
VECCOPY(v,pccd_M->mprevvert[mface->v4].co);
|
|
|
|
mima->minx = MIN2(mima->minx,v[0]-hull);
|
|
|
|
mima->miny = MIN2(mima->miny,v[1]-hull);
|
|
|
|
mima->minz = MIN2(mima->minz,v[2]-hull);
|
|
|
|
mima->maxx = MAX2(mima->maxx,v[0]+hull);
|
|
|
|
mima->maxy = MAX2(mima->maxy,v[1]+hull);
|
|
|
|
mima->maxz = MAX2(mima->maxz,v[2]+hull);
|
|
|
|
}
|
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
|
|
|
|
mima++;
|
|
|
|
mface++;
|
|
|
|
|
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
return ;
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ccd_mesh_free(ccd_Mesh *ccdm)
|
|
|
|
{
|
|
|
|
if(ccdm && (ccdm->savety == CCD_SAVETY )){ /*make sure we're not nuking objects we don't know*/
|
|
|
|
MEM_freeN(ccdm->mface);
|
|
|
|
MEM_freeN(ccdm->mvert);
|
2006-11-10 23:09:16 +00:00
|
|
|
if (ccdm->mprevvert) MEM_freeN(ccdm->mprevvert);
|
2006-01-31 22:48:41 +00:00
|
|
|
MEM_freeN(ccdm->mima);
|
|
|
|
MEM_freeN(ccdm);
|
|
|
|
ccdm = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
void ccd_build_deflector_hache(Object *vertexowner,GHash *hash)
|
2006-01-31 22:48:41 +00:00
|
|
|
{
|
|
|
|
Base *base;
|
2006-11-10 23:09:16 +00:00
|
|
|
Object *ob;
|
|
|
|
base= G.scene->base.first;
|
|
|
|
base= G.scene->base.first;
|
|
|
|
if (!hash) return;
|
|
|
|
while (base) {
|
|
|
|
/*Only proceed for mesh object in same layer */
|
|
|
|
if(base->object->type==OB_MESH && (base->lay & vertexowner->lay)) {
|
|
|
|
ob= base->object;
|
|
|
|
if((vertexowner) && (ob == vertexowner)){
|
|
|
|
/* if vertexowner is given we don't want to check collision with owner object */
|
|
|
|
base = base->next;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*+++ only with deflecting set */
|
|
|
|
if(ob->pd && ob->pd->deflect && BLI_ghash_lookup(hash, ob) == 0) {
|
|
|
|
DerivedMesh *dm= NULL;
|
|
|
|
|
|
|
|
if(ob->softflag & OB_SB_COLLFINAL) { /* so maybe someone wants overkill to collide with subsurfed */
|
2006-12-05 17:42:03 +00:00
|
|
|
dm = mesh_get_derived_final(ob, CD_MASK_BAREMESH);
|
2006-11-10 23:09:16 +00:00
|
|
|
} else {
|
2006-12-05 17:42:03 +00:00
|
|
|
dm = mesh_get_derived_deform(ob, CD_MASK_BAREMESH);
|
2006-11-10 23:09:16 +00:00
|
|
|
}
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if(dm){
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
ccd_Mesh *ccdmesh = ccd_mesh_make(ob, dm);
|
|
|
|
BLI_ghash_insert(hash, ob, ccdmesh);
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
/* we did copy & modify all we need so give 'em away again */
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
dm->release(dm);
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}/*--- only with deflecting set */
|
|
|
|
|
|
|
|
}/* mesh && layer*/
|
|
|
|
base = base->next;
|
|
|
|
} /* while (base) */
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
void ccd_update_deflector_hache(Object *vertexowner,GHash *hash)
|
2006-01-31 22:48:41 +00:00
|
|
|
{
|
|
|
|
Base *base;
|
|
|
|
Object *ob;
|
|
|
|
base= G.scene->base.first;
|
|
|
|
base= G.scene->base.first;
|
2006-12-02 18:42:20 +00:00
|
|
|
if ((!hash) || (!vertexowner)) return;
|
2006-01-31 22:48:41 +00:00
|
|
|
while (base) {
|
|
|
|
/*Only proceed for mesh object in same layer */
|
|
|
|
if(base->object->type==OB_MESH && (base->lay & vertexowner->lay)) {
|
|
|
|
ob= base->object;
|
2006-12-02 18:42:20 +00:00
|
|
|
if(ob == vertexowner){
|
2006-01-31 22:48:41 +00:00
|
|
|
/* if vertexowner is given we don't want to check collision with owner object */
|
|
|
|
base = base->next;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*+++ only with deflecting set */
|
|
|
|
if(ob->pd && ob->pd->deflect) {
|
|
|
|
DerivedMesh *dm= NULL;
|
|
|
|
|
2006-10-19 22:01:06 +00:00
|
|
|
if(ob->softflag & OB_SB_COLLFINAL) { /* so maybe someone wants overkill to collide with subsurfed */
|
2006-12-05 17:42:03 +00:00
|
|
|
dm = mesh_get_derived_final(ob, CD_MASK_BAREMESH);
|
2006-10-19 22:01:06 +00:00
|
|
|
} else {
|
2006-12-05 17:42:03 +00:00
|
|
|
dm = mesh_get_derived_deform(ob, CD_MASK_BAREMESH);
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
|
|
|
if(dm){
|
2006-11-10 23:09:16 +00:00
|
|
|
ccd_Mesh *ccdmesh = BLI_ghash_lookup(hash,ob);
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
if (ccdmesh)
|
|
|
|
ccd_mesh_update(ob,ccdmesh,dm);
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
/* we did copy & modify all we need so give 'em away again */
|
Added custom vertex/edge/face data for meshes:
All data layers, including MVert/MEdge/MFace, are now managed as custom
data layers. The pointers like Mesh.mvert, Mesh.dvert or Mesh.mcol are
still used of course, but allocating, copying or freeing these arrays
should be done through the CustomData API.
Work in progress documentation on this is here:
http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
Replaced TFace by MTFace:
This is the same struct, except that it does not contain color, that now
always stays separated in MCol. This was not a good design decision to
begin with, and it is needed for adding multiple color layers later. Note
that this does mean older Blender versions will not be able to read UV
coordinates from the next release, due to an SDNA limitation.
Removed DispListMesh:
This now fully replaced by DerivedMesh. To provide access to arrays of
vertices, edges and faces, like DispListMesh does. The semantics of the
DerivedMesh.getVertArray() and similar functions were changed to return
a pointer to an array if one exists, or otherwise allocate a temporary
one. On releasing the DerivedMesh, this temporary array will be removed
automatically.
Removed ssDM and meshDM DerivedMesh backends:
The ssDM backend was for DispListMesh, so that became obsolete automatically.
The meshDM backend was replaced by the custom data backend, that now figures
out which layers need to be modified, and only duplicates those.
This changes code in many places, and overall removes 2514 lines of code.
So, there's a good chance this might break some stuff, although I've been
testing it for a few days now. The good news is, adding multiple color and
uv layers should now become easy.
2006-11-20 04:28:02 +00:00
|
|
|
dm->release(dm);
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
|
|
|
}/*--- only with deflecting set */
|
|
|
|
|
|
|
|
}/* mesh && layer*/
|
|
|
|
base = base->next;
|
|
|
|
} /* while (base) */
|
|
|
|
}
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
/*--- collider caching and dicing ---*/
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
static int count_mesh_quads(Mesh *me)
|
2005-01-12 22:28:13 +00:00
|
|
|
{
|
|
|
|
int a,result = 0;
|
|
|
|
MFace *mface= me->mface;
|
2005-04-02 13:57:23 +00:00
|
|
|
|
|
|
|
if(mface) {
|
|
|
|
for(a=me->totface; a>0; a--, mface++) {
|
|
|
|
if(mface->v4) result++;
|
|
|
|
}
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
static void add_mesh_quad_diag_springs(Object *ob)
|
2005-01-12 22:28:13 +00:00
|
|
|
{
|
|
|
|
Mesh *me= ob->data;
|
|
|
|
MFace *mface= me->mface;
|
|
|
|
BodyPoint *bp;
|
|
|
|
BodySpring *bs, *bs_new;
|
|
|
|
int a ;
|
|
|
|
|
|
|
|
if (ob->soft){
|
2005-04-02 13:57:23 +00:00
|
|
|
int nofquads;
|
|
|
|
|
|
|
|
nofquads = count_mesh_quads(me);
|
2005-01-12 22:28:13 +00:00
|
|
|
if (nofquads) {
|
|
|
|
/* resize spring-array to hold additional quad springs */
|
|
|
|
bs_new= MEM_callocN( (ob->soft->totspring + nofquads *2 )*sizeof(BodySpring), "bodyspring");
|
|
|
|
memcpy(bs_new,ob->soft->bspring,(ob->soft->totspring )*sizeof(BodySpring));
|
2005-04-02 19:52:32 +00:00
|
|
|
|
|
|
|
if(ob->soft->bspring)
|
|
|
|
MEM_freeN(ob->soft->bspring); /* do this before reassigning the pointer or have a 1st class memory leak */
|
2005-04-02 13:57:23 +00:00
|
|
|
ob->soft->bspring = bs_new;
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
/* fill the tail */
|
|
|
|
a = 0;
|
|
|
|
bs = bs_new+ob->soft->totspring;
|
|
|
|
bp= ob->soft->bpoint;
|
|
|
|
if(mface ) {
|
|
|
|
for(a=me->totface; a>0; a--, mface++) {
|
2005-04-02 13:57:23 +00:00
|
|
|
if(mface->v4) {
|
2005-01-12 22:28:13 +00:00
|
|
|
bs->v1= mface->v1;
|
|
|
|
bs->v2= mface->v3;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order =2;
|
2005-01-12 22:28:13 +00:00
|
|
|
bs++;
|
|
|
|
bs->v1= mface->v2;
|
|
|
|
bs->v2= mface->v4;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order =2;
|
2005-01-12 22:28:13 +00:00
|
|
|
bs++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now we can announce new springs */
|
|
|
|
ob->soft->totspring += nofquads *2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-26 12:53:57 +00:00
|
|
|
static void add_2nd_order_roller(Object *ob,float stiffness,int *counter, int addsprings)
|
|
|
|
{
|
|
|
|
/*assume we have a softbody*/
|
|
|
|
SoftBody *sb= ob->soft; /* is supposed to be there */
|
|
|
|
BodyPoint *bp,*bpo;
|
2006-10-26 23:34:44 +00:00
|
|
|
BodySpring *bs,*bs2,*bs3= NULL;
|
|
|
|
int a,b,c,notthis= 0,v0;
|
2006-09-26 12:53:57 +00:00
|
|
|
if (!sb->bspring){return;} /* we are 2nd order here so 1rst should have been build :) */
|
|
|
|
/* first run counting second run adding */
|
|
|
|
*counter = 0;
|
|
|
|
if (addsprings) bs3 = ob->soft->bspring+ob->soft->totspring;
|
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
|
|
|
/*scan for neighborhood*/
|
|
|
|
bpo = NULL;
|
|
|
|
v0 = (sb->totpoint-a);
|
|
|
|
for(b=bp->nofsprings;b>0;b--){
|
|
|
|
bs = sb->bspring + bp->springs[b-1];
|
|
|
|
/*nasty thing here that springs have two ends
|
|
|
|
so here we have to make sure we examine the other */
|
|
|
|
if (( v0 == bs->v1) ){
|
|
|
|
bpo =sb->bpoint+bs->v2;
|
|
|
|
notthis = bs->v2;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (( v0 == bs->v2) ){
|
|
|
|
bpo =sb->bpoint+bs->v1;
|
|
|
|
notthis = bs->v1;
|
|
|
|
}
|
|
|
|
else {printf("oops we should not get here - add_2nd_order_springs");}
|
|
|
|
}
|
|
|
|
if (bpo){/* so now we have a 2nd order humpdidump */
|
|
|
|
for(c=bpo->nofsprings;c>0;c--){
|
|
|
|
bs2 = sb->bspring + bpo->springs[c-1];
|
|
|
|
if ((bs2->v1 != notthis) && (bs2->v1 > v0)){
|
|
|
|
(*counter)++;/*hit */
|
|
|
|
if (addsprings){
|
|
|
|
bs3->v1= v0;
|
|
|
|
bs3->v2= bs2->v1;
|
|
|
|
bs3->strength= stiffness;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs3->order=2;
|
2006-09-26 12:53:57 +00:00
|
|
|
bs3++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((bs2->v2 !=notthis)&&(bs2->v2 > v0)){
|
|
|
|
(*counter)++;/*hit */
|
|
|
|
if (addsprings){
|
|
|
|
bs3->v1= v0;
|
|
|
|
bs3->v2= bs2->v2;
|
|
|
|
bs3->strength= stiffness;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs3->order=2;
|
2006-09-26 12:53:57 +00:00
|
|
|
bs3++;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
/*scan for neighborhood done*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void add_2nd_order_springs(Object *ob,float stiffness)
|
|
|
|
{
|
|
|
|
int counter = 0;
|
|
|
|
BodySpring *bs_new;
|
|
|
|
|
2006-10-14 19:03:06 +00:00
|
|
|
add_2nd_order_roller(ob,stiffness,&counter,0); /* counting */
|
2006-09-26 12:53:57 +00:00
|
|
|
if (counter) {
|
|
|
|
/* resize spring-array to hold additional springs */
|
|
|
|
bs_new= MEM_callocN( (ob->soft->totspring + counter )*sizeof(BodySpring), "bodyspring");
|
|
|
|
memcpy(bs_new,ob->soft->bspring,(ob->soft->totspring )*sizeof(BodySpring));
|
|
|
|
|
|
|
|
if(ob->soft->bspring)
|
|
|
|
MEM_freeN(ob->soft->bspring);
|
|
|
|
ob->soft->bspring = bs_new;
|
|
|
|
|
2006-10-14 19:03:06 +00:00
|
|
|
add_2nd_order_roller(ob,stiffness,&counter,1); /* adding */
|
2006-09-26 12:53:57 +00:00
|
|
|
ob->soft->totspring +=counter ;
|
|
|
|
}
|
|
|
|
}
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
static void add_bp_springlist(BodyPoint *bp,int springID)
|
2005-01-12 22:28:13 +00:00
|
|
|
{
|
|
|
|
int *newlist;
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
if (bp->springs == NULL) {
|
|
|
|
bp->springs = MEM_callocN( sizeof(int), "bpsprings");
|
|
|
|
bp->springs[0] = springID;
|
|
|
|
bp->nofsprings = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bp->nofsprings++;
|
|
|
|
newlist = MEM_callocN(bp->nofsprings * sizeof(int), "bpsprings");
|
|
|
|
memcpy(newlist,bp->springs,(bp->nofsprings-1)* sizeof(int));
|
|
|
|
MEM_freeN(bp->springs);
|
|
|
|
bp->springs = newlist;
|
|
|
|
bp->springs[bp->nofsprings-1] = springID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* do this once when sb is build
|
|
|
|
it is O(N^2) so scanning for springs every iteration is too expensive
|
|
|
|
*/
|
2005-04-02 13:57:23 +00:00
|
|
|
static void build_bps_springlist(Object *ob)
|
2005-01-12 22:28:13 +00:00
|
|
|
{
|
2005-11-19 21:35:06 +00:00
|
|
|
SoftBody *sb= ob->soft; /* is supposed to be there */
|
2005-01-12 22:28:13 +00:00
|
|
|
BodyPoint *bp;
|
|
|
|
BodySpring *bs;
|
|
|
|
int a,b;
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
if (sb==NULL) return; /* paranoya check */
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
2006-09-27 06:59:27 +00:00
|
|
|
/* throw away old list */
|
|
|
|
if (bp->springs) {
|
|
|
|
MEM_freeN(bp->springs);
|
|
|
|
bp->springs=NULL;
|
|
|
|
}
|
2005-01-12 22:28:13 +00:00
|
|
|
/* scan for attached inner springs */
|
|
|
|
for(b=sb->totspring, bs= sb->bspring; b>0; b--, bs++) {
|
|
|
|
if (( (sb->totpoint-a) == bs->v1) ){
|
|
|
|
add_bp_springlist(bp,sb->totspring -b);
|
|
|
|
}
|
|
|
|
if (( (sb->totpoint-a) == bs->v2) ){
|
|
|
|
add_bp_springlist(bp,sb->totspring -b);
|
|
|
|
}
|
2005-11-19 21:35:06 +00:00
|
|
|
}/*for springs*/
|
|
|
|
}/*for bp*/
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
|
|
|
|
2006-09-28 20:27:46 +00:00
|
|
|
static void calculate_collision_balls(Object *ob)
|
|
|
|
{
|
|
|
|
SoftBody *sb= ob->soft; /* is supposed to be there */
|
|
|
|
BodyPoint *bp;
|
|
|
|
BodySpring *bs;
|
2006-10-04 21:36:55 +00:00
|
|
|
int a,b,akku_count;
|
|
|
|
float min,max,akku;
|
2006-10-01 21:49:10 +00:00
|
|
|
|
2006-09-28 20:27:46 +00:00
|
|
|
if (sb==NULL) return; /* paranoya check */
|
2006-10-01 21:49:10 +00:00
|
|
|
|
2006-09-28 20:27:46 +00:00
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
|
|
|
bp->colball=0;
|
2006-10-04 21:36:55 +00:00
|
|
|
akku =0.0f;
|
|
|
|
akku_count=0;
|
2006-10-01 21:49:10 +00:00
|
|
|
min = 1e22f;
|
|
|
|
max = -1e22f;
|
|
|
|
/* first estimation based on attached */
|
2006-09-28 20:27:46 +00:00
|
|
|
for(b=bp->nofsprings;b>0;b--){
|
|
|
|
bs = sb->bspring + bp->springs[b-1];
|
2006-10-04 21:36:55 +00:00
|
|
|
if (bs->order == 1){
|
|
|
|
akku += bs->len;
|
|
|
|
akku_count++,
|
2006-10-01 21:49:10 +00:00
|
|
|
min = MIN2(bs->len,min);
|
|
|
|
max = MAX2(bs->len,max);
|
2006-10-04 21:36:55 +00:00
|
|
|
}
|
2006-10-01 21:49:10 +00:00
|
|
|
}
|
|
|
|
|
2006-10-04 21:36:55 +00:00
|
|
|
if (akku_count > 0) {
|
2006-10-10 21:49:02 +00:00
|
|
|
if (sb->sbc_mode == 0){
|
2006-10-01 21:49:10 +00:00
|
|
|
bp->colball=sb->colball;
|
|
|
|
}
|
2006-10-10 21:49:02 +00:00
|
|
|
if (sb->sbc_mode == 1){
|
|
|
|
bp->colball = akku/(float)akku_count*sb->colball;
|
|
|
|
}
|
|
|
|
if (sb->colball == 2){
|
|
|
|
bp->colball=min*sb->colball;
|
2006-10-01 21:49:10 +00:00
|
|
|
}
|
2006-10-10 21:49:02 +00:00
|
|
|
if (sb->colball == 3){
|
|
|
|
bp->colball=max*sb->colball;
|
2006-10-04 21:36:55 +00:00
|
|
|
}
|
2006-10-10 21:49:02 +00:00
|
|
|
if (sb->colball == 4){
|
|
|
|
bp->colball = (min + max)/2.0f*sb->colball;
|
2006-10-04 21:36:55 +00:00
|
|
|
}
|
2006-09-28 20:27:46 +00:00
|
|
|
}
|
|
|
|
else bp->colball=0;
|
|
|
|
}/*for bp*/
|
|
|
|
}
|
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
char set_octant_flags(float *ce, float *pos, float ball)
|
|
|
|
{
|
|
|
|
float x,y,z;
|
|
|
|
char res = 0;
|
|
|
|
int a;
|
|
|
|
|
|
|
|
for (a=0;a<7;a++){
|
|
|
|
switch(a){
|
|
|
|
case 0: x=pos[0]; y=pos[1]; z=pos[2]; break;
|
|
|
|
case 1: x=pos[0]+ball; y=pos[1]; z=pos[2]; break;
|
|
|
|
case 2: x=pos[0]-ball; y=pos[1]; z=pos[2]; break;
|
|
|
|
case 3: x=pos[0]; y=pos[1]+ball; z=pos[2]; break;
|
|
|
|
case 4: x=pos[0]; y=pos[1]-ball; z=pos[2]; break;
|
|
|
|
case 5: x=pos[0]; y=pos[1]; z=pos[2]+ball; break;
|
|
|
|
case 6: x=pos[0]; y=pos[1]; z=pos[2]-ball; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
x=pos[0]; y=pos[1]; z=pos[2];
|
|
|
|
|
|
|
|
if (x > ce[0]){
|
|
|
|
if (y > ce[1]){
|
|
|
|
if (z > ce[2]) res|= 1;
|
|
|
|
else res|= 2;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if (z > ce[2]) res|= 4;
|
|
|
|
else res|= 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else{
|
|
|
|
if (y > ce[1]){
|
|
|
|
if (z > ce[2]) res|= 16;
|
|
|
|
else res|= 32;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if (z > ce[2]) res|= 64;
|
|
|
|
else res|= 128;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* creates new softbody if didn't exist yet, makes new points and springs arrays */
|
2005-11-19 18:19:41 +00:00
|
|
|
static void renew_softbody(Object *ob, int totpoint, int totspring)
|
2004-10-01 14:10:30 +00:00
|
|
|
{
|
2005-04-02 13:57:23 +00:00
|
|
|
SoftBody *sb;
|
2005-08-15 10:30:53 +00:00
|
|
|
int i;
|
2004-10-01 14:10:30 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
if(ob->soft==NULL) ob->soft= sbNew();
|
|
|
|
else free_softbody_intern(ob->soft);
|
|
|
|
sb= ob->soft;
|
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
if(totpoint) {
|
|
|
|
sb->totpoint= totpoint;
|
|
|
|
sb->totspring= totspring;
|
|
|
|
|
|
|
|
sb->bpoint= MEM_mallocN( totpoint*sizeof(BodyPoint), "bodypoint");
|
|
|
|
if(totspring)
|
|
|
|
sb->bspring= MEM_mallocN( totspring*sizeof(BodySpring), "bodyspring");
|
2005-08-15 10:30:53 +00:00
|
|
|
|
|
|
|
/* initialise BodyPoint array */
|
|
|
|
for (i=0; i<totpoint; i++) {
|
|
|
|
BodyPoint *bp = &sb->bpoint[i];
|
|
|
|
|
|
|
|
if(ob->softflag & OB_SB_GOAL) {
|
|
|
|
bp->goal= ob->soft->defgoal;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bp->goal= 0.0f;
|
|
|
|
/* so this will definily be below SOFTGOALSNAP */
|
|
|
|
}
|
|
|
|
|
|
|
|
bp->nofsprings= 0;
|
|
|
|
bp->springs= NULL;
|
2006-11-10 23:09:16 +00:00
|
|
|
bp->choke = 0.0f;
|
2006-10-14 19:03:06 +00:00
|
|
|
bp->colball = 0.0f;
|
2006-11-10 23:09:16 +00:00
|
|
|
bp->flag = 0;
|
2006-10-14 19:03:06 +00:00
|
|
|
|
2005-08-15 10:30:53 +00:00
|
|
|
}
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
static void free_softbody_baked(SoftBody *sb)
|
|
|
|
{
|
|
|
|
SBVertex *key;
|
|
|
|
int k;
|
2005-09-20 10:21:30 +00:00
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
for(k=0; k<sb->totkey; k++) {
|
|
|
|
key= *(sb->keys + k);
|
|
|
|
if(key) MEM_freeN(key);
|
|
|
|
}
|
|
|
|
if(sb->keys) MEM_freeN(sb->keys);
|
|
|
|
|
|
|
|
sb->keys= NULL;
|
|
|
|
sb->totkey= 0;
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
}
|
|
|
|
static void free_scratch(SoftBody *sb)
|
|
|
|
{
|
|
|
|
if(sb->scratch){
|
|
|
|
/* todo make sure everything is cleaned up nicly */
|
|
|
|
if (sb->scratch->colliderhash){
|
2007-03-16 05:03:38 +00:00
|
|
|
BLI_ghash_free(sb->scratch->colliderhash, NULL,
|
|
|
|
(GHashValFreeFP) ccd_mesh_free); /*this hoepfully will free all caches*/
|
2006-11-10 23:09:16 +00:00
|
|
|
sb->scratch->colliderhash = NULL;
|
|
|
|
}
|
|
|
|
if (sb->scratch->bodyface){
|
2007-03-16 05:03:38 +00:00
|
|
|
MEM_freeN(sb->scratch->bodyface);
|
2006-11-10 23:09:16 +00:00
|
|
|
}
|
|
|
|
MEM_freeN(sb->scratch);
|
|
|
|
sb->scratch = NULL;
|
|
|
|
}
|
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
}
|
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* only frees internal data */
|
|
|
|
static void free_softbody_intern(SoftBody *sb)
|
2004-10-01 14:10:30 +00:00
|
|
|
{
|
|
|
|
if(sb) {
|
2005-01-12 22:28:13 +00:00
|
|
|
int a;
|
|
|
|
BodyPoint *bp;
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
if(sb->bpoint){
|
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
|
|
|
/* free spring list */
|
|
|
|
if (bp->springs != NULL) {
|
|
|
|
MEM_freeN(bp->springs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MEM_freeN(sb->bpoint);
|
|
|
|
}
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
if(sb->bspring) MEM_freeN(sb->bspring);
|
2005-04-02 13:57:23 +00:00
|
|
|
|
|
|
|
sb->totpoint= sb->totspring= 0;
|
|
|
|
sb->bpoint= NULL;
|
|
|
|
sb->bspring= NULL;
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
free_scratch(sb);
|
2005-05-02 13:28:13 +00:00
|
|
|
free_softbody_baked(sb);
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-02 13:57:23 +00:00
|
|
|
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
/* ************ dynamics ********** */
|
2006-01-31 22:48:41 +00:00
|
|
|
|
|
|
|
/* the most general (micro physics correct) way to do collision
|
|
|
|
** (only needs the current particle position)
|
|
|
|
**
|
|
|
|
** it actually checks if the particle intrudes a short range force field generated
|
|
|
|
** by the faces of the target object and returns a force to drive the particel out
|
|
|
|
** the strenght of the field grows exponetially if the particle is on the 'wrong' side of the face
|
|
|
|
** 'wrong' side : projection to the face normal is negative (all referred to a vertex in the face)
|
|
|
|
**
|
|
|
|
** flaw of this: 'fast' particles as well as 'fast' colliding faces
|
|
|
|
** give a 'tunnel' effect such that the particle passes through the force field
|
|
|
|
** without ever 'seeing' it
|
|
|
|
** this is fully compliant to heisenberg: h >= fuzzy(location) * fuzzy(time)
|
|
|
|
** besides our h is way larger than in QM because forces propagate way slower here
|
|
|
|
** we have to deal with fuzzy(time) in the range of 1/25 seconds (typical frame rate)
|
|
|
|
** yup collision targets are not known here any better
|
|
|
|
** and 1/25 second is looong compared to real collision events
|
|
|
|
** Q: why not use 'simple' collision here like bouncing back a particle
|
|
|
|
** --> reverting is velocity on the face normal
|
|
|
|
** A: because our particles are not alone here
|
|
|
|
** and need to tell their neighbours exactly what happens via spring forces
|
|
|
|
** unless sbObjectStep( .. ) is called on sub frame timing level
|
|
|
|
** BTW that also questions the use of a 'implicit' solvers on softbodies
|
|
|
|
** since that would only valid for 'slow' moving collision targets and dito particles
|
|
|
|
*/
|
|
|
|
|
2006-10-13 21:27:43 +00:00
|
|
|
/* aye this belongs to arith.c */
|
|
|
|
static void Vec3PlusStVec(float *v, float s, float *v1)
|
|
|
|
{
|
|
|
|
v[0] += s*v1[0];
|
|
|
|
v[1] += s*v1[1];
|
|
|
|
v[2] += s*v1[2];
|
|
|
|
}
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
/* +++ dependancy information functions*/
|
|
|
|
static int are_there_deflectors(unsigned int layer)
|
2006-10-10 21:49:02 +00:00
|
|
|
{
|
|
|
|
Base *base;
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
for(base = G.scene->base.first; base; base= base->next) {
|
|
|
|
if( (base->lay & layer) && base->object->pd) {
|
|
|
|
if(base->object->pd->deflect)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int query_external_colliders(Object *me)
|
|
|
|
{
|
|
|
|
return(are_there_deflectors(me->lay));
|
|
|
|
}
|
|
|
|
|
2007-03-16 05:03:38 +00:00
|
|
|
#if 0
|
2006-11-10 23:09:16 +00:00
|
|
|
static int query_external_forces(Object *me)
|
|
|
|
{
|
|
|
|
/* silly but true: we need to create effector cache to see if anything is in it */
|
2007-03-16 05:03:38 +00:00
|
|
|
ListBase *ec = pdInitEffectors(me,NULL);
|
|
|
|
int result = 0;
|
|
|
|
if (ec){
|
|
|
|
result = 1;
|
|
|
|
pdEndEffectors(ec); /* sorry ec, yes i'm an idiot, but i needed to know if you were there */
|
|
|
|
}
|
|
|
|
return result;
|
2006-11-10 23:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
any of that external objects may have an IPO or something alike ..
|
|
|
|
so unless we can ask them if they are moving we have to assume they do
|
|
|
|
*/
|
|
|
|
static int query_external_time(Object *me)
|
|
|
|
{
|
|
|
|
if (query_external_colliders(me)) return 1;
|
|
|
|
if (query_external_forces(me)) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int query_internal_time(Object *me)
|
|
|
|
{
|
|
|
|
if (me->softflag & OB_SB_GOAL) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-03-16 05:03:38 +00:00
|
|
|
#endif
|
2006-11-10 23:09:16 +00:00
|
|
|
/* --- dependancy information functions*/
|
|
|
|
|
|
|
|
/* +++ the aabb "force" section*/
|
|
|
|
int sb_detect_aabb_collisionCached( float force[3], unsigned int par_layer,struct Object *vertexowner,float time)
|
|
|
|
{
|
2006-10-10 21:49:02 +00:00
|
|
|
Object *ob;
|
2006-11-10 23:09:16 +00:00
|
|
|
SoftBody *sb=vertexowner->soft;
|
|
|
|
GHash *hash;
|
|
|
|
GHashIterator *ihash;
|
|
|
|
float aabbmin[3],aabbmax[3];
|
2006-10-10 21:49:02 +00:00
|
|
|
int a, deflected=0;
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if ((sb == NULL) || (sb->scratch ==NULL)) return 0;
|
|
|
|
VECCOPY(aabbmin,sb->scratch->aabbmin);
|
|
|
|
VECCOPY(aabbmax,sb->scratch->aabbmax);
|
2006-10-10 21:49:02 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
hash = vertexowner->soft->scratch->colliderhash;
|
|
|
|
ihash = BLI_ghashIterator_new(hash);
|
|
|
|
while (!BLI_ghashIterator_isDone(ihash) ) {
|
2006-10-10 21:49:02 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
ccd_Mesh *ccdm = BLI_ghashIterator_getValue (ihash);
|
|
|
|
ob = BLI_ghashIterator_getKey (ihash);
|
2006-10-10 21:49:02 +00:00
|
|
|
/* only with deflecting set */
|
|
|
|
if(ob->pd && ob->pd->deflect) {
|
|
|
|
MFace *mface= NULL;
|
|
|
|
MVert *mvert= NULL;
|
2006-11-10 23:09:16 +00:00
|
|
|
MVert *mprevvert= NULL;
|
2006-10-10 21:49:02 +00:00
|
|
|
ccdf_minmax *mima= NULL;
|
2006-11-10 23:09:16 +00:00
|
|
|
if(ccdm){
|
2006-10-10 21:49:02 +00:00
|
|
|
mface= ccdm->mface;
|
|
|
|
mvert= ccdm->mvert;
|
2006-11-10 23:09:16 +00:00
|
|
|
mprevvert= ccdm->mprevvert;
|
2006-10-10 21:49:02 +00:00
|
|
|
mima= ccdm->mima;
|
|
|
|
a = ccdm->totface;
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
if ((aabbmax[0] < ccdm->bbmin[0]) ||
|
|
|
|
(aabbmax[1] < ccdm->bbmin[1]) ||
|
|
|
|
(aabbmax[2] < ccdm->bbmin[2]) ||
|
|
|
|
(aabbmin[0] > ccdm->bbmax[0]) ||
|
|
|
|
(aabbmin[1] > ccdm->bbmax[1]) ||
|
|
|
|
(aabbmin[2] > ccdm->bbmax[2]) ) {
|
|
|
|
/* boxes dont intersect */
|
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* so now we have the 2 boxes overlapping */
|
|
|
|
/* forces actually not used */
|
|
|
|
deflected = 2;
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
/*aye that should be cached*/
|
|
|
|
printf("missing cache error \n");
|
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} /* if(ob->pd && ob->pd->deflect) */
|
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
} /* while () */
|
|
|
|
BLI_ghashIterator_free(ihash);
|
|
|
|
return deflected;
|
|
|
|
}
|
|
|
|
/* --- the aabb section*/
|
|
|
|
|
|
|
|
|
|
|
|
/* +++ the face external section*/
|
|
|
|
|
|
|
|
int sb_detect_face_collisionCached(float face_v1[3],float face_v2[3],float face_v3[3],float *damp,
|
|
|
|
float force[3], unsigned int par_layer,struct Object *vertexowner,float time)
|
|
|
|
{
|
|
|
|
Object *ob;
|
|
|
|
GHash *hash;
|
|
|
|
GHashIterator *ihash;
|
|
|
|
float nv1[3], nv2[3], nv3[3], nv4[3], edge1[3], edge2[3], d_nvect[3], aabbmin[3],aabbmax[3];
|
|
|
|
float t;
|
|
|
|
int a, deflected=0;
|
|
|
|
|
|
|
|
aabbmin[0] = MIN3(face_v1[0],face_v2[0],face_v3[0]);
|
|
|
|
aabbmin[1] = MIN3(face_v1[1],face_v2[1],face_v3[1]);
|
|
|
|
aabbmin[2] = MIN3(face_v1[2],face_v2[2],face_v3[2]);
|
|
|
|
aabbmax[0] = MAX3(face_v1[0],face_v2[0],face_v3[0]);
|
|
|
|
aabbmax[1] = MAX3(face_v1[1],face_v2[1],face_v3[1]);
|
|
|
|
aabbmax[2] = MAX3(face_v1[2],face_v2[2],face_v3[2]);
|
2006-10-10 21:49:02 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
hash = vertexowner->soft->scratch->colliderhash;
|
|
|
|
ihash = BLI_ghashIterator_new(hash);
|
|
|
|
while (!BLI_ghashIterator_isDone(ihash) ) {
|
|
|
|
|
|
|
|
ccd_Mesh *ccdm = BLI_ghashIterator_getValue (ihash);
|
|
|
|
ob = BLI_ghashIterator_getKey (ihash);
|
|
|
|
/* only with deflecting set */
|
|
|
|
if(ob->pd && ob->pd->deflect) {
|
|
|
|
MFace *mface= NULL;
|
|
|
|
MVert *mvert= NULL;
|
|
|
|
MVert *mprevvert= NULL;
|
|
|
|
ccdf_minmax *mima= NULL;
|
|
|
|
if(ccdm){
|
|
|
|
mface= ccdm->mface;
|
|
|
|
mvert= ccdm->mvert;
|
|
|
|
mprevvert= ccdm->mprevvert;
|
|
|
|
mima= ccdm->mima;
|
|
|
|
a = ccdm->totface;
|
|
|
|
|
2006-10-10 21:49:02 +00:00
|
|
|
if ((aabbmax[0] < ccdm->bbmin[0]) ||
|
|
|
|
(aabbmax[1] < ccdm->bbmin[1]) ||
|
|
|
|
(aabbmax[2] < ccdm->bbmin[2]) ||
|
|
|
|
(aabbmin[0] > ccdm->bbmax[0]) ||
|
|
|
|
(aabbmin[1] > ccdm->bbmax[1]) ||
|
|
|
|
(aabbmin[2] > ccdm->bbmax[2]) ) {
|
|
|
|
/* boxes dont intersect */
|
2006-11-10 23:09:16 +00:00
|
|
|
BLI_ghashIterator_step(ihash);
|
2006-10-10 21:49:02 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
/*aye that should be cached*/
|
|
|
|
printf("missing cache error \n");
|
2006-11-10 23:09:16 +00:00
|
|
|
BLI_ghashIterator_step(ihash);
|
2006-10-10 21:49:02 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* use mesh*/
|
|
|
|
while (a--) {
|
|
|
|
if (
|
|
|
|
(aabbmax[0] < mima->minx) ||
|
|
|
|
(aabbmin[0] > mima->maxx) ||
|
|
|
|
(aabbmax[1] < mima->miny) ||
|
|
|
|
(aabbmin[1] > mima->maxy) ||
|
|
|
|
(aabbmax[2] < mima->minz) ||
|
|
|
|
(aabbmin[2] > mima->maxz)
|
|
|
|
) {
|
|
|
|
mface++;
|
|
|
|
mima++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (mvert){
|
|
|
|
|
|
|
|
VECCOPY(nv1,mvert[mface->v1].co);
|
|
|
|
VECCOPY(nv2,mvert[mface->v2].co);
|
|
|
|
VECCOPY(nv3,mvert[mface->v3].co);
|
|
|
|
if (mface->v4){
|
|
|
|
VECCOPY(nv4,mvert[mface->v4].co);
|
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
if (mprevvert){
|
|
|
|
VecMulf(nv1,time);
|
|
|
|
Vec3PlusStVec(nv1,(1.0f-time),mprevvert[mface->v1].co);
|
|
|
|
|
|
|
|
VecMulf(nv2,time);
|
|
|
|
Vec3PlusStVec(nv2,(1.0f-time),mprevvert[mface->v2].co);
|
|
|
|
|
|
|
|
VecMulf(nv3,time);
|
|
|
|
Vec3PlusStVec(nv3,(1.0f-time),mprevvert[mface->v3].co);
|
|
|
|
|
|
|
|
if (mface->v4){
|
|
|
|
VecMulf(nv4,time);
|
|
|
|
Vec3PlusStVec(nv4,(1.0f-time),mprevvert[mface->v4].co);
|
|
|
|
}
|
|
|
|
}
|
2006-10-10 21:49:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* switch origin to be nv2*/
|
|
|
|
VECSUB(edge1, nv1, nv2);
|
|
|
|
VECSUB(edge2, nv3, nv2);
|
|
|
|
Crossf(d_nvect, edge2, edge1);
|
2007-04-04 13:18:41 +00:00
|
|
|
Normalize(d_nvect);
|
2006-11-10 23:09:16 +00:00
|
|
|
if (
|
|
|
|
LineIntersectsTriangle(nv1, nv2, face_v1, face_v2, face_v3, &t) ||
|
|
|
|
LineIntersectsTriangle(nv2, nv3, face_v1, face_v2, face_v3, &t) ||
|
|
|
|
LineIntersectsTriangle(nv3, nv1, face_v1, face_v2, face_v3, &t) ){
|
|
|
|
Vec3PlusStVec(force,-1.0f,d_nvect);
|
|
|
|
*damp=ob->pd->pdef_sbdamp;
|
|
|
|
deflected = 2;
|
|
|
|
}
|
|
|
|
if (mface->v4){ /* quad */
|
|
|
|
/* switch origin to be nv4 */
|
|
|
|
VECSUB(edge1, nv3, nv4);
|
|
|
|
VECSUB(edge2, nv1, nv4);
|
|
|
|
Crossf(d_nvect, edge2, edge1);
|
2007-04-04 13:18:41 +00:00
|
|
|
Normalize(d_nvect);
|
2006-11-10 23:09:16 +00:00
|
|
|
if (
|
|
|
|
LineIntersectsTriangle(nv1, nv3, face_v1, face_v2, face_v3, &t) ||
|
|
|
|
LineIntersectsTriangle(nv3, nv4, face_v1, face_v2, face_v3, &t) ||
|
|
|
|
LineIntersectsTriangle(nv4, nv1, face_v1, face_v2, face_v3, &t) ){
|
|
|
|
Vec3PlusStVec(force,-1.0f,d_nvect);
|
|
|
|
*damp=ob->pd->pdef_sbdamp;
|
|
|
|
deflected = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mface++;
|
|
|
|
mima++;
|
|
|
|
}/* while a */
|
|
|
|
} /* if(ob->pd && ob->pd->deflect) */
|
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
} /* while () */
|
|
|
|
BLI_ghashIterator_free(ihash);
|
|
|
|
return deflected;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void scan_for_ext_face_forces(Object *ob,float timenow)
|
|
|
|
{
|
|
|
|
SoftBody *sb = ob->soft;
|
|
|
|
BodyFace *bf;
|
|
|
|
int a;
|
|
|
|
float damp;
|
|
|
|
float tune = -10.0f;
|
|
|
|
float feedback[3];
|
|
|
|
|
|
|
|
if (sb && sb->scratch->totface){
|
|
|
|
|
|
|
|
|
|
|
|
bf = sb->scratch->bodyface;
|
|
|
|
for(a=0; a<sb->scratch->totface; a++, bf++) {
|
|
|
|
bf->ext_force[0]=bf->ext_force[1]=bf->ext_force[2]=0.0f;
|
|
|
|
feedback[0]=feedback[1]=feedback[2]=0.0f;
|
|
|
|
bf->flag &= ~BFF_INTERSECT;
|
|
|
|
|
|
|
|
if (sb_detect_face_collisionCached(sb->bpoint[bf->v1].pos,sb->bpoint[bf->v2].pos, sb->bpoint[bf->v3].pos,
|
|
|
|
&damp, feedback, ob->lay ,ob , timenow)){
|
|
|
|
Vec3PlusStVec(bf->ext_force,tune,feedback);
|
|
|
|
bf->flag |= BFF_INTERSECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
feedback[0]=feedback[1]=feedback[2]=0.0f;
|
|
|
|
if ((bf->v4) && (sb_detect_face_collisionCached(sb->bpoint[bf->v1].pos,sb->bpoint[bf->v3].pos, sb->bpoint[bf->v4].pos,
|
|
|
|
&damp, feedback, ob->lay ,ob , timenow))){
|
|
|
|
Vec3PlusStVec(bf->ext_force,tune,feedback);
|
|
|
|
bf->flag |= BFF_INTERSECT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bf = sb->scratch->bodyface;
|
|
|
|
for(a=0; a<sb->scratch->totface; a++, bf++) {
|
|
|
|
if ( bf->flag & BFF_INTERSECT)
|
|
|
|
{
|
|
|
|
VECADD(sb->bpoint[bf->v1].force,sb->bpoint[bf->v1].force,bf->ext_force);
|
|
|
|
VECADD(sb->bpoint[bf->v2].force,sb->bpoint[bf->v2].force,bf->ext_force);
|
|
|
|
VECADD(sb->bpoint[bf->v3].force,sb->bpoint[bf->v3].force,bf->ext_force);
|
|
|
|
if (bf->v4){
|
|
|
|
VECADD(sb->bpoint[bf->v4].force,sb->bpoint[bf->v4].force,bf->ext_force);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --- the face external section*/
|
|
|
|
|
|
|
|
|
|
|
|
/* +++ the spring external section*/
|
|
|
|
|
|
|
|
int sb_detect_edge_collisionCached(float edge_v1[3],float edge_v2[3],float *damp,
|
|
|
|
float force[3], unsigned int par_layer,struct Object *vertexowner,float time)
|
|
|
|
{
|
|
|
|
Object *ob;
|
|
|
|
GHash *hash;
|
|
|
|
GHashIterator *ihash;
|
|
|
|
float nv1[3], nv2[3], nv3[3], nv4[3], edge1[3], edge2[3], d_nvect[3], aabbmin[3],aabbmax[3];
|
|
|
|
float t,el;
|
|
|
|
int a, deflected=0;
|
|
|
|
|
|
|
|
aabbmin[0] = MIN2(edge_v1[0],edge_v2[0]);
|
|
|
|
aabbmin[1] = MIN2(edge_v1[1],edge_v2[1]);
|
|
|
|
aabbmin[2] = MIN2(edge_v1[2],edge_v2[2]);
|
|
|
|
aabbmax[0] = MAX2(edge_v1[0],edge_v2[0]);
|
|
|
|
aabbmax[1] = MAX2(edge_v1[1],edge_v2[1]);
|
|
|
|
aabbmax[2] = MAX2(edge_v1[2],edge_v2[2]);
|
|
|
|
|
|
|
|
el = VecLenf(edge_v1,edge_v2);
|
|
|
|
|
|
|
|
hash = vertexowner->soft->scratch->colliderhash;
|
|
|
|
ihash = BLI_ghashIterator_new(hash);
|
|
|
|
while (!BLI_ghashIterator_isDone(ihash) ) {
|
|
|
|
|
|
|
|
ccd_Mesh *ccdm = BLI_ghashIterator_getValue (ihash);
|
|
|
|
ob = BLI_ghashIterator_getKey (ihash);
|
|
|
|
/* only with deflecting set */
|
|
|
|
if(ob->pd && ob->pd->deflect) {
|
|
|
|
MFace *mface= NULL;
|
|
|
|
MVert *mvert= NULL;
|
|
|
|
MVert *mprevvert= NULL;
|
|
|
|
ccdf_minmax *mima= NULL;
|
|
|
|
if(ccdm){
|
|
|
|
mface= ccdm->mface;
|
|
|
|
mvert= ccdm->mvert;
|
|
|
|
mprevvert= ccdm->mprevvert;
|
|
|
|
mima= ccdm->mima;
|
|
|
|
a = ccdm->totface;
|
|
|
|
|
|
|
|
if ((aabbmax[0] < ccdm->bbmin[0]) ||
|
|
|
|
(aabbmax[1] < ccdm->bbmin[1]) ||
|
|
|
|
(aabbmax[2] < ccdm->bbmin[2]) ||
|
|
|
|
(aabbmin[0] > ccdm->bbmax[0]) ||
|
|
|
|
(aabbmin[1] > ccdm->bbmax[1]) ||
|
|
|
|
(aabbmin[2] > ccdm->bbmax[2]) ) {
|
|
|
|
/* boxes dont intersect */
|
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
/*aye that should be cached*/
|
|
|
|
printf("missing cache error \n");
|
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* use mesh*/
|
|
|
|
while (a--) {
|
|
|
|
if (
|
|
|
|
(aabbmax[0] < mima->minx) ||
|
|
|
|
(aabbmin[0] > mima->maxx) ||
|
|
|
|
(aabbmax[1] < mima->miny) ||
|
|
|
|
(aabbmin[1] > mima->maxy) ||
|
|
|
|
(aabbmax[2] < mima->minz) ||
|
|
|
|
(aabbmin[2] > mima->maxz)
|
|
|
|
) {
|
|
|
|
mface++;
|
|
|
|
mima++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (mvert){
|
|
|
|
|
|
|
|
VECCOPY(nv1,mvert[mface->v1].co);
|
|
|
|
VECCOPY(nv2,mvert[mface->v2].co);
|
|
|
|
VECCOPY(nv3,mvert[mface->v3].co);
|
|
|
|
if (mface->v4){
|
|
|
|
VECCOPY(nv4,mvert[mface->v4].co);
|
|
|
|
}
|
|
|
|
if (mprevvert){
|
|
|
|
VecMulf(nv1,time);
|
|
|
|
Vec3PlusStVec(nv1,(1.0f-time),mprevvert[mface->v1].co);
|
|
|
|
|
|
|
|
VecMulf(nv2,time);
|
|
|
|
Vec3PlusStVec(nv2,(1.0f-time),mprevvert[mface->v2].co);
|
|
|
|
|
|
|
|
VecMulf(nv3,time);
|
|
|
|
Vec3PlusStVec(nv3,(1.0f-time),mprevvert[mface->v3].co);
|
|
|
|
|
|
|
|
if (mface->v4){
|
|
|
|
VecMulf(nv4,time);
|
|
|
|
Vec3PlusStVec(nv4,(1.0f-time),mprevvert[mface->v4].co);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* switch origin to be nv2*/
|
|
|
|
VECSUB(edge1, nv1, nv2);
|
|
|
|
VECSUB(edge2, nv3, nv2);
|
|
|
|
|
|
|
|
Crossf(d_nvect, edge2, edge1);
|
2007-04-04 13:18:41 +00:00
|
|
|
Normalize(d_nvect);
|
2006-11-10 23:09:16 +00:00
|
|
|
if ( LineIntersectsTriangle(edge_v1, edge_v2, nv1, nv2, nv3, &t)){
|
|
|
|
float v1[3],v2[3];
|
|
|
|
float intrusiondepth,i1,i2;
|
|
|
|
VECSUB(v1, edge_v1, nv2);
|
2006-10-10 21:49:02 +00:00
|
|
|
VECSUB(v2, edge_v2, nv2);
|
|
|
|
i1 = Inpf(v1,d_nvect);
|
|
|
|
i2 = Inpf(v2,d_nvect);
|
|
|
|
intrusiondepth = -MIN2(i1,i2)/el;
|
|
|
|
Vec3PlusStVec(force,intrusiondepth,d_nvect);
|
|
|
|
*damp=ob->pd->pdef_sbdamp;
|
|
|
|
deflected = 2;
|
|
|
|
}
|
|
|
|
if (mface->v4){ /* quad */
|
|
|
|
/* switch origin to be nv4 */
|
|
|
|
VECSUB(edge1, nv3, nv4);
|
|
|
|
VECSUB(edge2, nv1, nv4);
|
|
|
|
|
|
|
|
Crossf(d_nvect, edge2, edge1);
|
2007-04-04 13:18:41 +00:00
|
|
|
Normalize(d_nvect);
|
2006-11-10 23:09:16 +00:00
|
|
|
if (LineIntersectsTriangle( edge_v1, edge_v2,nv1, nv3, nv4, &t)){
|
|
|
|
float v1[3],v2[3];
|
|
|
|
float intrusiondepth,i1,i2;
|
|
|
|
VECSUB(v1, edge_v1, nv4);
|
|
|
|
VECSUB(v2, edge_v2, nv4);
|
|
|
|
i1 = Inpf(v1,d_nvect);
|
|
|
|
i2 = Inpf(v2,d_nvect);
|
|
|
|
intrusiondepth = -MIN2(i1,i2)/el;
|
|
|
|
|
|
|
|
|
|
|
|
Vec3PlusStVec(force,intrusiondepth,d_nvect);
|
|
|
|
*damp=ob->pd->pdef_sbdamp;
|
|
|
|
deflected = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mface++;
|
|
|
|
mima++;
|
|
|
|
}/* while a */
|
|
|
|
} /* if(ob->pd && ob->pd->deflect) */
|
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
} /* while () */
|
|
|
|
BLI_ghashIterator_free(ihash);
|
|
|
|
return deflected;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void scan_for_ext_spring_forces(Object *ob,float timenow)
|
|
|
|
{
|
|
|
|
SoftBody *sb = ob->soft;
|
|
|
|
ListBase *do_effector;
|
|
|
|
int a;
|
|
|
|
float damp;
|
|
|
|
float feedback[3];
|
|
|
|
do_effector= pdInitEffectors(ob,NULL);
|
|
|
|
|
|
|
|
if (sb && sb->totspring){
|
|
|
|
for(a=0; a<sb->totspring; a++) {
|
|
|
|
BodySpring *bs = &sb->bspring[a];
|
|
|
|
bs->ext_force[0]=bs->ext_force[1]=bs->ext_force[2]=0.0f;
|
|
|
|
feedback[0]=feedback[1]=feedback[2]=0.0f;
|
|
|
|
bs->flag &= ~BSF_INTERSECT;
|
|
|
|
|
|
|
|
if (bs->order ==1){
|
|
|
|
/* +++ springs colliding */
|
|
|
|
if (ob->softflag & OB_SB_EDGECOLL){
|
|
|
|
if ( sb_detect_edge_collisionCached (sb->bpoint[bs->v1].pos , sb->bpoint[bs->v2].pos,
|
|
|
|
&damp,feedback,ob->lay,ob,timenow)){
|
|
|
|
VecAddf(bs->ext_force,bs->ext_force,feedback);
|
|
|
|
bs->flag |= BSF_INTERSECT;
|
|
|
|
//bs->cf=damp;
|
|
|
|
bs->cf=sb->choke*0.01f;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* ---- springs colliding */
|
|
|
|
|
|
|
|
/* +++ springs seeing wind ... n stuff depending on their orientation*/
|
|
|
|
/* note we don't use sb->mediafrict but use sb->aeroedge for magnitude of effect*/
|
|
|
|
if(sb->aeroedge){
|
|
|
|
float vel[3],sp[3],pr[3],force[3];
|
|
|
|
float f,windfactor = 250.0f;
|
|
|
|
/*see if we have wind*/
|
|
|
|
if(do_effector) {
|
|
|
|
float speed[3]={0.0f,0.0f,0.0f};
|
|
|
|
float pos[3];
|
|
|
|
VecMidf(pos, sb->bpoint[bs->v1].pos , sb->bpoint[bs->v2].pos);
|
|
|
|
VecMidf(vel, sb->bpoint[bs->v1].vec , sb->bpoint[bs->v2].vec);
|
|
|
|
pdDoEffectors(do_effector, pos, force, speed, (float)G.scene->r.cfra, 0.0f, PE_WIND_AS_SPEED);
|
|
|
|
VecMulf(speed,windfactor);
|
|
|
|
VecAddf(vel,vel,speed);
|
|
|
|
}
|
|
|
|
/* media in rest */
|
|
|
|
else{
|
|
|
|
VECADD(vel, sb->bpoint[bs->v1].vec , sb->bpoint[bs->v2].vec);
|
|
|
|
}
|
2007-04-04 13:18:41 +00:00
|
|
|
f = Normalize(vel);
|
2006-11-10 23:09:16 +00:00
|
|
|
f = -0.0001f*f*f*sb->aeroedge;
|
|
|
|
/* todo add a nice angle dependant function */
|
|
|
|
/* look up one at bergman scheafer */
|
|
|
|
|
|
|
|
VECSUB(sp, sb->bpoint[bs->v1].pos , sb->bpoint[bs->v2].pos);
|
|
|
|
Projf(pr,vel,sp);
|
|
|
|
VECSUB(vel,vel,pr);
|
2007-04-04 13:18:41 +00:00
|
|
|
Normalize(vel);
|
2006-11-10 23:09:16 +00:00
|
|
|
Vec3PlusStVec(bs->ext_force,f,vel);
|
|
|
|
}
|
|
|
|
/* --- springs seeing wind */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(do_effector)
|
|
|
|
pdEndEffectors(do_effector);
|
|
|
|
}
|
|
|
|
/* --- the spring external section*/
|
|
|
|
|
|
|
|
int choose_winner(float*w, float* pos,float*a,float*b,float*c,float*ca,float*cb,float*cc)
|
|
|
|
{
|
|
|
|
float mindist,cp;
|
|
|
|
int winner =1;
|
|
|
|
mindist = ABS(Inpf(pos,a));
|
|
|
|
|
|
|
|
cp = ABS(Inpf(pos,b));
|
|
|
|
if ( mindist < cp ){
|
|
|
|
mindist = cp;
|
|
|
|
winner =2;
|
|
|
|
}
|
|
|
|
|
|
|
|
cp = ABS(Inpf(pos,c));
|
|
|
|
if (mindist < cp ){
|
|
|
|
mindist = cp;
|
|
|
|
winner =3;
|
|
|
|
}
|
|
|
|
switch (winner){
|
|
|
|
case 1: VECCOPY(w,ca); break;
|
|
|
|
case 2: VECCOPY(w,cb); break;
|
|
|
|
case 3: VECCOPY(w,cc);
|
|
|
|
}
|
|
|
|
return(winner);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int sb_detect_vertex_collisionCached(float opco[3], float facenormal[3], float *damp,
|
|
|
|
float force[3], unsigned int par_layer,struct Object *vertexowner,
|
|
|
|
float time,float vel[3], float *intrusion)
|
|
|
|
{
|
|
|
|
Object *ob;
|
|
|
|
GHash *hash;
|
|
|
|
GHashIterator *ihash;
|
|
|
|
float nv1[3], nv2[3], nv3[3], nv4[3], edge1[3], edge2[3],d_nvect[3], dv1[3],ve[3],avel[3],
|
|
|
|
vv1[3], vv2[3], vv3[3], vv4[3],
|
|
|
|
facedist,n_mag,force_mag_norm,minx,miny,minz,maxx,maxy,maxz,
|
|
|
|
innerfacethickness = -0.5f, outerfacethickness = 0.2f,
|
|
|
|
ee = 5.0f, ff = 0.1f, fa;
|
|
|
|
int a, deflected=0, cavel=0,ci=0;
|
|
|
|
/* init */
|
|
|
|
*intrusion = 0.0f;
|
|
|
|
hash = vertexowner->soft->scratch->colliderhash;
|
|
|
|
ihash = BLI_ghashIterator_new(hash);
|
|
|
|
/* go */
|
|
|
|
while (!BLI_ghashIterator_isDone(ihash) ) {
|
|
|
|
|
|
|
|
ccd_Mesh *ccdm = BLI_ghashIterator_getValue (ihash);
|
|
|
|
ob = BLI_ghashIterator_getKey (ihash);
|
|
|
|
/* only with deflecting set */
|
|
|
|
if(ob->pd && ob->pd->deflect) {
|
|
|
|
MFace *mface= NULL;
|
|
|
|
MVert *mvert= NULL;
|
|
|
|
MVert *mprevvert= NULL;
|
|
|
|
ccdf_minmax *mima= NULL;
|
|
|
|
|
|
|
|
if(ccdm){
|
|
|
|
mface= ccdm->mface;
|
|
|
|
mvert= ccdm->mvert;
|
|
|
|
mprevvert= ccdm->mprevvert;
|
|
|
|
mima= ccdm->mima;
|
|
|
|
a = ccdm->totface;
|
|
|
|
|
|
|
|
minx =ccdm->bbmin[0];
|
|
|
|
miny =ccdm->bbmin[1];
|
|
|
|
minz =ccdm->bbmin[2];
|
|
|
|
|
|
|
|
maxx =ccdm->bbmax[0];
|
|
|
|
maxy =ccdm->bbmax[1];
|
|
|
|
maxz =ccdm->bbmax[2];
|
|
|
|
|
|
|
|
if ((opco[0] < minx) ||
|
|
|
|
(opco[1] < miny) ||
|
|
|
|
(opco[2] < minz) ||
|
|
|
|
(opco[0] > maxx) ||
|
|
|
|
(opco[1] > maxy) ||
|
|
|
|
(opco[2] > maxz) ) {
|
|
|
|
/* outside the padded boundbox --> collision object is too far away */
|
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
/*aye that should be cached*/
|
|
|
|
printf("missing cache error \n");
|
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* do object level stuff */
|
|
|
|
/* need to have user control for that since it depends on model scale */
|
|
|
|
innerfacethickness =-ob->pd->pdef_sbift;
|
|
|
|
outerfacethickness =ob->pd->pdef_sboft;
|
|
|
|
fa = (ff*outerfacethickness-outerfacethickness);
|
|
|
|
fa *= fa;
|
|
|
|
fa = 1.0f/fa;
|
|
|
|
avel[0]=avel[1]=avel[2]=0.0f;
|
|
|
|
/* use mesh*/
|
|
|
|
while (a--) {
|
|
|
|
if (
|
|
|
|
(opco[0] < mima->minx) ||
|
|
|
|
(opco[0] > mima->maxx) ||
|
|
|
|
(opco[1] < mima->miny) ||
|
|
|
|
(opco[1] > mima->maxy) ||
|
|
|
|
(opco[2] < mima->minz) ||
|
|
|
|
(opco[2] > mima->maxz)
|
|
|
|
) {
|
|
|
|
mface++;
|
|
|
|
mima++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mvert){
|
|
|
|
|
|
|
|
VECCOPY(nv1,mvert[mface->v1].co);
|
|
|
|
VECCOPY(nv2,mvert[mface->v2].co);
|
|
|
|
VECCOPY(nv3,mvert[mface->v3].co);
|
|
|
|
if (mface->v4){
|
|
|
|
VECCOPY(nv4,mvert[mface->v4].co);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mprevvert){
|
|
|
|
/* grab the average speed of the collider vertices
|
|
|
|
before we spoil nvX
|
|
|
|
humm could be done once a SB steps but then we' need to store that too
|
|
|
|
since the AABB reduced propabitlty to get here drasticallly
|
|
|
|
it might be a nice tradeof CPU <--> memory
|
|
|
|
*/
|
|
|
|
VECSUB(vv1,nv1,mprevvert[mface->v1].co);
|
|
|
|
VECSUB(vv2,nv2,mprevvert[mface->v2].co);
|
|
|
|
VECSUB(vv3,nv3,mprevvert[mface->v3].co);
|
|
|
|
if (mface->v4){
|
|
|
|
VECSUB(vv4,nv4,mprevvert[mface->v4].co);
|
|
|
|
}
|
|
|
|
|
|
|
|
VecMulf(nv1,time);
|
|
|
|
Vec3PlusStVec(nv1,(1.0f-time),mprevvert[mface->v1].co);
|
|
|
|
|
|
|
|
VecMulf(nv2,time);
|
|
|
|
Vec3PlusStVec(nv2,(1.0f-time),mprevvert[mface->v2].co);
|
|
|
|
|
|
|
|
VecMulf(nv3,time);
|
|
|
|
Vec3PlusStVec(nv3,(1.0f-time),mprevvert[mface->v3].co);
|
|
|
|
|
|
|
|
if (mface->v4){
|
|
|
|
VecMulf(nv4,time);
|
|
|
|
Vec3PlusStVec(nv4,(1.0f-time),mprevvert[mface->v4].co);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* switch origin to be nv2*/
|
|
|
|
VECSUB(edge1, nv1, nv2);
|
|
|
|
VECSUB(edge2, nv3, nv2);
|
|
|
|
VECSUB(dv1,opco,nv2); /* abuse dv1 to have vertex in question at *origin* of triangle */
|
|
|
|
|
|
|
|
Crossf(d_nvect, edge2, edge1);
|
2007-04-04 13:18:41 +00:00
|
|
|
n_mag = Normalize(d_nvect);
|
2006-11-10 23:09:16 +00:00
|
|
|
facedist = Inpf(dv1,d_nvect);
|
|
|
|
|
|
|
|
if ((facedist > innerfacethickness) && (facedist < outerfacethickness)){
|
|
|
|
if (point_in_tri_prism(opco, nv1, nv2, nv3) ){
|
|
|
|
force_mag_norm =(float)exp(-ee*facedist);
|
|
|
|
if (facedist > outerfacethickness*ff)
|
|
|
|
force_mag_norm =(float)force_mag_norm*fa*(facedist - outerfacethickness)*(facedist - outerfacethickness);
|
|
|
|
Vec3PlusStVec(force,force_mag_norm,d_nvect);
|
|
|
|
*damp=ob->pd->pdef_sbdamp;
|
|
|
|
if (facedist > 0.0f){
|
|
|
|
*damp *= (1.0f - facedist/outerfacethickness);
|
|
|
|
}
|
|
|
|
if ((mprevvert) && (*damp > 0.0f)){
|
|
|
|
choose_winner(ve,opco,nv1,nv2,nv3,vv1,vv2,vv3);
|
|
|
|
VECADD(avel,avel,ve);
|
|
|
|
cavel ++;
|
|
|
|
}
|
|
|
|
*intrusion += facedist;
|
|
|
|
ci++;
|
|
|
|
deflected = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mface->v4){ /* quad */
|
|
|
|
/* switch origin to be nv4 */
|
|
|
|
VECSUB(edge1, nv3, nv4);
|
|
|
|
VECSUB(edge2, nv1, nv4);
|
|
|
|
VECSUB(dv1,opco,nv4); /* abuse dv1 to have vertex in question at *origin* of triangle */
|
|
|
|
|
|
|
|
Crossf(d_nvect, edge2, edge1);
|
2007-04-04 13:18:41 +00:00
|
|
|
n_mag = Normalize(d_nvect);
|
2006-11-10 23:09:16 +00:00
|
|
|
facedist = Inpf(dv1,d_nvect);
|
2006-10-10 21:49:02 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if ((facedist > innerfacethickness) && (facedist < outerfacethickness)){
|
|
|
|
if (point_in_tri_prism(opco, nv1, nv3, nv4) ){
|
|
|
|
force_mag_norm =(float)exp(-ee*facedist);
|
|
|
|
if (facedist > outerfacethickness*ff)
|
|
|
|
force_mag_norm =(float)force_mag_norm*fa*(facedist - outerfacethickness)*(facedist - outerfacethickness);
|
|
|
|
Vec3PlusStVec(force,force_mag_norm,d_nvect);
|
|
|
|
*damp=ob->pd->pdef_sbdamp;
|
|
|
|
if (facedist > 0.0f){
|
|
|
|
*damp *= (1.0f - facedist/outerfacethickness);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((mprevvert) && (*damp > 0.0f)){
|
|
|
|
choose_winner(ve,opco,nv1,nv3,nv4,vv1,vv3,vv4);
|
|
|
|
VECADD(avel,avel,ve);
|
|
|
|
cavel ++;
|
|
|
|
}
|
|
|
|
*intrusion += facedist;
|
|
|
|
ci++;
|
|
|
|
deflected = 2;
|
|
|
|
}
|
2006-10-10 21:49:02 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mface++;
|
|
|
|
mima++;
|
|
|
|
}/* while a */
|
|
|
|
} /* if(ob->pd && ob->pd->deflect) */
|
2006-11-10 23:09:16 +00:00
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
} /* while () */
|
|
|
|
BLI_ghashIterator_free(ihash);
|
|
|
|
if (cavel) VecMulf(avel,1.0f/(float)cavel);
|
|
|
|
VECCOPY(vel,avel);
|
|
|
|
if (ci) *intrusion /= ci;
|
|
|
|
if (deflected){
|
|
|
|
VECCOPY(facenormal,force);
|
2007-04-04 13:18:41 +00:00
|
|
|
Normalize(facenormal);
|
2006-10-10 21:49:02 +00:00
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
return deflected;
|
2006-10-10 21:49:02 +00:00
|
|
|
}
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
/* not complete yet ..
|
|
|
|
try to find a pos resolving all inside collisions
|
|
|
|
*/
|
|
|
|
#if 0 //mute it for now
|
|
|
|
int sb_detect_vertex_collisionCachedEx(float opco[3], float facenormal[3], float *damp,
|
|
|
|
float force[3], unsigned int par_layer,struct Object *vertexowner,
|
|
|
|
float time,float vel[3], float *intrusion)
|
2006-01-31 22:48:41 +00:00
|
|
|
{
|
|
|
|
Object *ob;
|
2006-11-10 23:09:16 +00:00
|
|
|
GHash *hash;
|
|
|
|
GHashIterator *ihash;
|
|
|
|
float nv1[3], nv2[3], nv3[3], nv4[3], edge1[3], edge2[3],d_nvect[3], dv1[3],ve[3],avel[3],
|
|
|
|
vv1[3], vv2[3], vv3[3], vv4[3],
|
2006-10-10 21:49:02 +00:00
|
|
|
facedist,n_mag,force_mag_norm,minx,miny,minz,maxx,maxy,maxz,
|
2006-11-10 23:09:16 +00:00
|
|
|
innerfacethickness,outerfacethickness,
|
|
|
|
closestinside,
|
2006-01-31 22:48:41 +00:00
|
|
|
ee = 5.0f, ff = 0.1f, fa;
|
2006-11-10 23:09:16 +00:00
|
|
|
int a, deflected=0, cavel=0;
|
|
|
|
/* init */
|
|
|
|
*intrusion = 0.0f;
|
|
|
|
hash = vertexowner->soft->scratch->colliderhash;
|
|
|
|
ihash = BLI_ghashIterator_new(hash);
|
|
|
|
/* go */
|
|
|
|
while (!BLI_ghashIterator_isDone(ihash) ) {
|
|
|
|
|
|
|
|
ccd_Mesh *ccdm = BLI_ghashIterator_getValue (ihash);
|
|
|
|
ob = BLI_ghashIterator_getKey (ihash);
|
2006-01-31 22:48:41 +00:00
|
|
|
/* only with deflecting set */
|
|
|
|
if(ob->pd && ob->pd->deflect) {
|
|
|
|
MFace *mface= NULL;
|
|
|
|
MVert *mvert= NULL;
|
2006-11-10 23:09:16 +00:00
|
|
|
MVert *mprevvert= NULL;
|
2006-01-31 22:48:41 +00:00
|
|
|
ccdf_minmax *mima= NULL;
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if(ccdm){
|
2006-01-31 22:48:41 +00:00
|
|
|
mface= ccdm->mface;
|
|
|
|
mvert= ccdm->mvert;
|
2006-11-10 23:09:16 +00:00
|
|
|
mprevvert= ccdm->mprevvert;
|
2006-01-31 22:48:41 +00:00
|
|
|
mima= ccdm->mima;
|
|
|
|
a = ccdm->totface;
|
|
|
|
|
|
|
|
minx =ccdm->bbmin[0];
|
|
|
|
miny =ccdm->bbmin[1];
|
|
|
|
minz =ccdm->bbmin[2];
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
maxx =ccdm->bbmax[0];
|
|
|
|
maxy =ccdm->bbmax[1];
|
|
|
|
maxz =ccdm->bbmax[2];
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
if ((opco[0] < minx) ||
|
|
|
|
(opco[1] < miny) ||
|
|
|
|
(opco[2] < minz) ||
|
|
|
|
(opco[0] > maxx) ||
|
|
|
|
(opco[1] > maxy) ||
|
|
|
|
(opco[2] > maxz) ) {
|
2006-10-11 22:53:22 +00:00
|
|
|
/* outside the padded boundbox --> collision object is too far away */
|
2006-11-10 23:09:16 +00:00
|
|
|
BLI_ghashIterator_step(ihash);
|
2006-10-11 22:53:22 +00:00
|
|
|
continue;
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
/*aye that should be cached*/
|
|
|
|
printf("missing cache error \n");
|
2006-11-10 23:09:16 +00:00
|
|
|
BLI_ghashIterator_step(ihash);
|
2006-01-31 22:48:41 +00:00
|
|
|
continue;
|
|
|
|
}
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
/* do object level stuff */
|
|
|
|
/* need to have user control for that since it depends on model scale */
|
|
|
|
innerfacethickness =-ob->pd->pdef_sbift;
|
|
|
|
outerfacethickness =ob->pd->pdef_sboft;
|
2006-11-10 23:09:16 +00:00
|
|
|
closestinside = innerfacethickness;
|
2006-01-31 22:48:41 +00:00
|
|
|
fa = (ff*outerfacethickness-outerfacethickness);
|
|
|
|
fa *= fa;
|
|
|
|
fa = 1.0f/fa;
|
2006-11-10 23:09:16 +00:00
|
|
|
avel[0]=avel[1]=avel[2]=0.0f;
|
2006-01-31 22:48:41 +00:00
|
|
|
/* use mesh*/
|
|
|
|
while (a--) {
|
|
|
|
if (
|
|
|
|
(opco[0] < mima->minx) ||
|
|
|
|
(opco[0] > mima->maxx) ||
|
|
|
|
(opco[1] < mima->miny) ||
|
|
|
|
(opco[1] > mima->maxy) ||
|
|
|
|
(opco[2] < mima->minz) ||
|
|
|
|
(opco[2] > mima->maxz)
|
|
|
|
) {
|
2006-10-11 22:53:22 +00:00
|
|
|
mface++;
|
|
|
|
mima++;
|
|
|
|
continue;
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
if (mvert){
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
VECCOPY(nv1,mvert[mface->v1].co);
|
|
|
|
VECCOPY(nv2,mvert[mface->v2].co);
|
|
|
|
VECCOPY(nv3,mvert[mface->v3].co);
|
|
|
|
if (mface->v4){
|
|
|
|
VECCOPY(nv4,mvert[mface->v4].co);
|
|
|
|
}
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if (mprevvert){
|
|
|
|
/* grab the average speed of the collider vertices
|
|
|
|
before we spoil nvX
|
|
|
|
humm could be done once a SB steps but then we' need to store that too
|
|
|
|
since the AABB reduced propabitlty to get here drasticallly
|
|
|
|
it might be a nice tradeof CPU <--> memory
|
|
|
|
*/
|
|
|
|
VECSUB(vv1,nv1,mprevvert[mface->v1].co);
|
|
|
|
VECSUB(vv2,nv2,mprevvert[mface->v2].co);
|
|
|
|
VECSUB(vv3,nv3,mprevvert[mface->v3].co);
|
|
|
|
if (mface->v4){
|
|
|
|
VECSUB(vv4,nv4,mprevvert[mface->v4].co);
|
|
|
|
}
|
|
|
|
|
|
|
|
VecMulf(nv1,time);
|
|
|
|
Vec3PlusStVec(nv1,(1.0f-time),mprevvert[mface->v1].co);
|
|
|
|
|
|
|
|
VecMulf(nv2,time);
|
|
|
|
Vec3PlusStVec(nv2,(1.0f-time),mprevvert[mface->v2].co);
|
|
|
|
|
|
|
|
VecMulf(nv3,time);
|
|
|
|
Vec3PlusStVec(nv3,(1.0f-time),mprevvert[mface->v3].co);
|
|
|
|
|
|
|
|
if (mface->v4){
|
|
|
|
VecMulf(nv4,time);
|
|
|
|
Vec3PlusStVec(nv4,(1.0f-time),mprevvert[mface->v4].co);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
/* switch origin to be nv2*/
|
|
|
|
VECSUB(edge1, nv1, nv2);
|
|
|
|
VECSUB(edge2, nv3, nv2);
|
|
|
|
VECSUB(dv1,opco,nv2); /* abuse dv1 to have vertex in question at *origin* of triangle */
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
Crossf(d_nvect, edge2, edge1);
|
2007-04-04 13:18:41 +00:00
|
|
|
n_mag = Normalize(d_nvect);
|
2006-01-31 22:48:41 +00:00
|
|
|
facedist = Inpf(dv1,d_nvect);
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if ((facedist > closestinside) && (facedist < outerfacethickness)){
|
|
|
|
// if ((facedist > innerfacethickness) && (facedist < outerfacethickness)){
|
2006-10-10 21:49:02 +00:00
|
|
|
if (point_in_tri_prism(opco, nv1, nv2, nv3) ){
|
2006-01-31 22:48:41 +00:00
|
|
|
force_mag_norm =(float)exp(-ee*facedist);
|
|
|
|
if (facedist > outerfacethickness*ff)
|
|
|
|
force_mag_norm =(float)force_mag_norm*fa*(facedist - outerfacethickness)*(facedist - outerfacethickness);
|
2006-11-10 23:09:16 +00:00
|
|
|
*damp=ob->pd->pdef_sbdamp;
|
|
|
|
|
|
|
|
if (facedist > 0.0f){
|
|
|
|
*damp *= (1.0f - facedist/outerfacethickness);
|
|
|
|
Vec3PlusStVec(force,force_mag_norm,d_nvect);
|
|
|
|
if (deflected < 2){
|
|
|
|
deflected = 1;
|
|
|
|
if ((mprevvert) && (*damp > 0.0f)){
|
|
|
|
choose_winner(ve,opco,nv1,nv2,nv3,vv1,vv2,vv3);
|
|
|
|
VECADD(avel,avel,ve);
|
|
|
|
cavel ++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
Vec3PlusStVec(force,force_mag_norm,d_nvect);
|
|
|
|
VECCOPY(facenormal,d_nvect);
|
|
|
|
if ((mprevvert) && (*damp > 0.0f)){
|
|
|
|
choose_winner(avel,opco,nv1,nv2,nv3,vv1,vv2,vv3);
|
|
|
|
cavel = 1;
|
|
|
|
deflected = 2;
|
|
|
|
closestinside = facedist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*intrusion = facedist;
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mface->v4){ /* quad */
|
|
|
|
/* switch origin to be nv4 */
|
|
|
|
VECSUB(edge1, nv3, nv4);
|
|
|
|
VECSUB(edge2, nv1, nv4);
|
|
|
|
VECSUB(dv1,opco,nv4); /* abuse dv1 to have vertex in question at *origin* of triangle */
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
Crossf(d_nvect, edge2, edge1);
|
2007-04-04 13:18:41 +00:00
|
|
|
n_mag = Normalize(d_nvect);
|
2006-01-31 22:48:41 +00:00
|
|
|
facedist = Inpf(dv1,d_nvect);
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
if ((facedist > innerfacethickness) && (facedist < outerfacethickness)){
|
2006-10-11 22:53:22 +00:00
|
|
|
if (point_in_tri_prism(opco, nv1, nv3, nv4) ){
|
2006-01-31 22:48:41 +00:00
|
|
|
force_mag_norm =(float)exp(-ee*facedist);
|
|
|
|
if (facedist > outerfacethickness*ff)
|
|
|
|
force_mag_norm =(float)force_mag_norm*fa*(facedist - outerfacethickness)*(facedist - outerfacethickness);
|
|
|
|
Vec3PlusStVec(force,force_mag_norm,d_nvect);
|
|
|
|
*damp=ob->pd->pdef_sbdamp;
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
if (facedist > 0.0f){
|
|
|
|
*damp *= (1.0f - facedist/outerfacethickness);
|
|
|
|
Vec3PlusStVec(force,force_mag_norm,d_nvect);
|
|
|
|
if (deflected < 2){
|
|
|
|
deflected = 1;
|
|
|
|
if ((mprevvert) && (*damp > 0.0f)){
|
|
|
|
choose_winner(ve,opco,nv1,nv3,nv4,vv1,vv3,vv4);
|
|
|
|
VECADD(avel,avel,ve);
|
|
|
|
cavel ++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
Vec3PlusStVec(force,force_mag_norm,d_nvect);
|
|
|
|
VECCOPY(facenormal,d_nvect);
|
|
|
|
if ((mprevvert) && (*damp > 0.0f)){
|
|
|
|
choose_winner(avel,opco,nv1,nv3,nv4,vv1,vv3,vv4);
|
|
|
|
cavel = 1;
|
|
|
|
deflected = 2;
|
|
|
|
closestinside = facedist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*intrusion = facedist;
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
mface++;
|
|
|
|
mima++;
|
2006-10-11 22:53:22 +00:00
|
|
|
}/* while a */
|
|
|
|
} /* if(ob->pd && ob->pd->deflect) */
|
2006-11-10 23:09:16 +00:00
|
|
|
BLI_ghashIterator_step(ihash);
|
|
|
|
} /* while () */
|
|
|
|
BLI_ghashIterator_free(ihash);
|
|
|
|
if (cavel) VecMulf(avel,1.0f/(float)cavel);
|
|
|
|
VECCOPY(vel,avel);
|
|
|
|
|
|
|
|
/* we did stay "outside" but have some close to contact forces
|
|
|
|
just to be complete fake a face normal
|
|
|
|
*/
|
|
|
|
if (deflected ==1){
|
|
|
|
VECCOPY(facenormal,force);
|
2007-04-04 13:18:41 +00:00
|
|
|
Normalize(facenormal);
|
2006-11-10 23:09:16 +00:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
facenormal[0] = facenormal[1] = facenormal[2] = 0.0f;
|
|
|
|
}
|
2006-02-01 09:46:34 +00:00
|
|
|
return deflected;
|
2006-01-31 22:48:41 +00:00
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
#endif
|
2006-01-31 22:48:41 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
/* sandbox to plug in various deflection algos */
|
|
|
|
static int sb_deflect_face(Object *ob,float *actpos,float *facenormal,float *force,float *cf,float time,float *vel,float *intrusion)
|
2005-04-12 21:36:21 +00:00
|
|
|
{
|
2006-10-10 21:49:02 +00:00
|
|
|
float s_actpos[3];
|
2006-11-10 23:09:16 +00:00
|
|
|
int deflected;
|
2005-04-12 21:36:21 +00:00
|
|
|
VECCOPY(s_actpos,actpos);
|
2006-11-10 23:09:16 +00:00
|
|
|
deflected= sb_detect_vertex_collisionCached(s_actpos, facenormal, cf, force , ob->lay, ob,time,vel,intrusion);
|
|
|
|
//deflected= sb_detect_vertex_collisionCachedEx(s_actpos, facenormal, cf, force , ob->lay, ob,time,vel,intrusion);
|
2005-04-12 21:36:21 +00:00
|
|
|
return(deflected);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
static void softbody_calc_forces(Object *ob, float forcetime, float timenow)
|
2004-10-01 14:10:30 +00:00
|
|
|
{
|
2005-04-21 18:58:15 +00:00
|
|
|
/* rule we never alter free variables :bp->vec bp->pos in here !
|
|
|
|
* this will ruin adaptive stepsize AKA heun! (BM)
|
|
|
|
*/
|
2005-11-19 21:35:06 +00:00
|
|
|
SoftBody *sb= ob->soft; /* is supposed to be there */
|
2005-01-12 22:28:13 +00:00
|
|
|
BodyPoint *bp;
|
|
|
|
BodyPoint *bproot;
|
|
|
|
BodySpring *bs;
|
The long awaited Particle patch from Janne Karhu
http://www.blender3d.org/cms/New_Particle_options_a.721.0.html
There's no doubt this patch had a lot of good ideas for features, and I
want to compliment Janne again for getting it all to work even!
A more careful review of the features and code did show however quite some
flaws and bugs... partially because the current particle code was very much
polluted already, but also because of the implementation lacked quality.
However, the patch was too good to reject, so I've fixed and recoded the
parts that needed it most. :)
Here's a list of of most evident changes in the patch;
- Guides support recoded. It was implemented as a true 'force field',
checking all Curve path points for each particle to find the closest. Was
just far too slow, and didn't support looping or bends well.
The new implementation is fast (real time) and treats the paths as actual
trajectory for the particle.
- Guides didn't integrate in the physics/speed system either, was added as
exception. Now it's integrated and can be combined with other velocities
or forces
- Use of Fields was slow code in general, made it use a Cache instead.
- The "even" distribution didn't work for Jittered sample patterns.
- The "even" or "vertexgroup" code in the main loops were badly constructed,
giving too much cpu for a simple task. Instead of going over all faces
many times, it now only does it once.
Same part of the code used a lot of temporal unneeded mallocs.
- Use of DerivedMesh or Mesh was confused, didn't work for Subsurfs in all
cases
- Support for vertex groups was slow, evaluating vertexgroups too often
- When a vertexgroup failed to read, it was wrongly handled (set to zero).
VertexGroup support now is with a name.
- Split up the too huge build_particle() call in some parts (moving new code)
- The "texture re-timing" option failed for moving Objects. The old code used
the convention that particles were added with increasing time steps.
Solved by creating a object Matrix Cache.
Also: the texture coordinates had to be corrected to become "OrCo".
- The "Disp" option only was used to draw less particles. Changed it to
actually calculate fewer particles for 3D viewing, but render all still.
So now it can be used to keep editing realtime.
Removed;
The "speed threshold" and "Tight" features were not copied over. This
resembled too much to feature overkill. Needs re-evaluation.
Also the "Deform" option was not added, I prefer to first check if the
current particle system really works for the Modifier system.
And:
- Added integration for particle force fields in the dependency graph
- Added TAB completion for vertexgroup names!
- Made the 'wait cursor' only appear when particles take more than 0.5 sec
- The particle jitter table order now is randomized too, giving much
nicer emitting of particles in large faces.
- Vortex field didn't correctly use speed/forces, so it didn't work for
collisions.
- Triangle distribution was wrong
- Removed ancient bug that applied in a *very* weird way speed and forces.
(location changes got the half force, speed the full...???)
So much... might have forgotten some notes! :)
2005-11-10 16:01:56 +00:00
|
|
|
ListBase *do_effector;
|
|
|
|
float iks, ks, kd, gravity, actspringlen, forcefactor, sd[3];
|
|
|
|
float fieldfactor = 1000.0f, windfactor = 250.0f;
|
2006-11-10 23:09:16 +00:00
|
|
|
float tune = sb->ballstiff;
|
2006-10-14 19:03:06 +00:00
|
|
|
int a, b, do_deflector,do_selfcollision,do_springcollision,do_aero;
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2005-04-12 21:36:21 +00:00
|
|
|
gravity = sb->grav * sb_grav_force_scale(ob);
|
The long awaited Particle patch from Janne Karhu
http://www.blender3d.org/cms/New_Particle_options_a.721.0.html
There's no doubt this patch had a lot of good ideas for features, and I
want to compliment Janne again for getting it all to work even!
A more careful review of the features and code did show however quite some
flaws and bugs... partially because the current particle code was very much
polluted already, but also because of the implementation lacked quality.
However, the patch was too good to reject, so I've fixed and recoded the
parts that needed it most. :)
Here's a list of of most evident changes in the patch;
- Guides support recoded. It was implemented as a true 'force field',
checking all Curve path points for each particle to find the closest. Was
just far too slow, and didn't support looping or bends well.
The new implementation is fast (real time) and treats the paths as actual
trajectory for the particle.
- Guides didn't integrate in the physics/speed system either, was added as
exception. Now it's integrated and can be combined with other velocities
or forces
- Use of Fields was slow code in general, made it use a Cache instead.
- The "even" distribution didn't work for Jittered sample patterns.
- The "even" or "vertexgroup" code in the main loops were badly constructed,
giving too much cpu for a simple task. Instead of going over all faces
many times, it now only does it once.
Same part of the code used a lot of temporal unneeded mallocs.
- Use of DerivedMesh or Mesh was confused, didn't work for Subsurfs in all
cases
- Support for vertex groups was slow, evaluating vertexgroups too often
- When a vertexgroup failed to read, it was wrongly handled (set to zero).
VertexGroup support now is with a name.
- Split up the too huge build_particle() call in some parts (moving new code)
- The "texture re-timing" option failed for moving Objects. The old code used
the convention that particles were added with increasing time steps.
Solved by creating a object Matrix Cache.
Also: the texture coordinates had to be corrected to become "OrCo".
- The "Disp" option only was used to draw less particles. Changed it to
actually calculate fewer particles for 3D viewing, but render all still.
So now it can be used to keep editing realtime.
Removed;
The "speed threshold" and "Tight" features were not copied over. This
resembled too much to feature overkill. Needs re-evaluation.
Also the "Deform" option was not added, I prefer to first check if the
current particle system really works for the Modifier system.
And:
- Added integration for particle force fields in the dependency graph
- Added TAB completion for vertexgroup names!
- Made the 'wait cursor' only appear when particles take more than 0.5 sec
- The particle jitter table order now is randomized too, giving much
nicer emitting of particles in large faces.
- Vortex field didn't correctly use speed/forces, so it didn't work for
collisions.
- Triangle distribution was wrong
- Removed ancient bug that applied in a *very* weird way speed and forces.
(location changes got the half force, speed the full...???)
So much... might have forgotten some notes! :)
2005-11-10 16:01:56 +00:00
|
|
|
|
2006-10-14 19:03:06 +00:00
|
|
|
/* check conditions for various options */
|
2006-11-10 23:09:16 +00:00
|
|
|
do_deflector= query_external_colliders(ob);
|
2006-01-31 22:48:41 +00:00
|
|
|
do_effector= pdInitEffectors(ob,NULL);
|
2006-10-03 12:12:24 +00:00
|
|
|
do_selfcollision=((ob->softflag & OB_SB_EDGES) && (sb->bspring)&& (ob->softflag & OB_SB_SELF));
|
2006-10-10 21:49:02 +00:00
|
|
|
do_springcollision=do_deflector && (ob->softflag & OB_SB_EDGES) &&(ob->softflag & OB_SB_EDGECOLL);
|
2006-10-14 19:03:06 +00:00
|
|
|
do_aero=((sb->aeroedge)&& (ob->softflag & OB_SB_EDGES));
|
The long awaited Particle patch from Janne Karhu
http://www.blender3d.org/cms/New_Particle_options_a.721.0.html
There's no doubt this patch had a lot of good ideas for features, and I
want to compliment Janne again for getting it all to work even!
A more careful review of the features and code did show however quite some
flaws and bugs... partially because the current particle code was very much
polluted already, but also because of the implementation lacked quality.
However, the patch was too good to reject, so I've fixed and recoded the
parts that needed it most. :)
Here's a list of of most evident changes in the patch;
- Guides support recoded. It was implemented as a true 'force field',
checking all Curve path points for each particle to find the closest. Was
just far too slow, and didn't support looping or bends well.
The new implementation is fast (real time) and treats the paths as actual
trajectory for the particle.
- Guides didn't integrate in the physics/speed system either, was added as
exception. Now it's integrated and can be combined with other velocities
or forces
- Use of Fields was slow code in general, made it use a Cache instead.
- The "even" distribution didn't work for Jittered sample patterns.
- The "even" or "vertexgroup" code in the main loops were badly constructed,
giving too much cpu for a simple task. Instead of going over all faces
many times, it now only does it once.
Same part of the code used a lot of temporal unneeded mallocs.
- Use of DerivedMesh or Mesh was confused, didn't work for Subsurfs in all
cases
- Support for vertex groups was slow, evaluating vertexgroups too often
- When a vertexgroup failed to read, it was wrongly handled (set to zero).
VertexGroup support now is with a name.
- Split up the too huge build_particle() call in some parts (moving new code)
- The "texture re-timing" option failed for moving Objects. The old code used
the convention that particles were added with increasing time steps.
Solved by creating a object Matrix Cache.
Also: the texture coordinates had to be corrected to become "OrCo".
- The "Disp" option only was used to draw less particles. Changed it to
actually calculate fewer particles for 3D viewing, but render all still.
So now it can be used to keep editing realtime.
Removed;
The "speed threshold" and "Tight" features were not copied over. This
resembled too much to feature overkill. Needs re-evaluation.
Also the "Deform" option was not added, I prefer to first check if the
current particle system really works for the Modifier system.
And:
- Added integration for particle force fields in the dependency graph
- Added TAB completion for vertexgroup names!
- Made the 'wait cursor' only appear when particles take more than 0.5 sec
- The particle jitter table order now is randomized too, giving much
nicer emitting of particles in large faces.
- Vortex field didn't correctly use speed/forces, so it didn't work for
collisions.
- Triangle distribution was wrong
- Removed ancient bug that applied in a *very* weird way speed and forces.
(location changes got the half force, speed the full...???)
So much... might have forgotten some notes! :)
2005-11-10 16:01:56 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
iks = 1.0f/(1.0f-sb->inspring)-1.0f ;/* inner spring constants function */
|
2005-01-12 22:28:13 +00:00
|
|
|
bproot= sb->bpoint; /* need this for proper spring addressing */
|
|
|
|
|
2006-10-10 21:49:02 +00:00
|
|
|
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if (do_springcollision || do_aero) scan_for_ext_spring_forces(ob,timenow);
|
|
|
|
if (do_deflector) {
|
|
|
|
float defforce[3];
|
|
|
|
do_deflector = sb_detect_aabb_collisionCached(defforce,ob->lay,ob,timenow);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_selfcollision ){
|
|
|
|
float ce[3];
|
|
|
|
VecMidf(ce,sb->scratch->aabbmax,sb->scratch->aabbmin);
|
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
|
|
|
bp->octantflag = set_octant_flags(ce,bp->pos,bp->colball);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
2006-11-10 23:09:16 +00:00
|
|
|
/* clear forces accumulator */
|
|
|
|
bp->force[0]= bp->force[1]= bp->force[2]= 0.0;
|
|
|
|
|
2006-10-03 12:12:24 +00:00
|
|
|
/* naive ball self collision */
|
|
|
|
/* needs to be done if goal snaps or not */
|
|
|
|
if(do_selfcollision){
|
|
|
|
int attached;
|
|
|
|
BodyPoint *obp;
|
|
|
|
int c,b;
|
2006-10-13 21:27:43 +00:00
|
|
|
float velcenter[3],dvel[3],def[3];
|
2006-10-03 12:12:24 +00:00
|
|
|
float distance;
|
|
|
|
float compare;
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
for(c=sb->totpoint, obp= sb->bpoint; c>=a; c--, obp++) {
|
|
|
|
|
|
|
|
if ((bp->octantflag & obp->octantflag) == 0) continue;
|
|
|
|
|
2006-10-04 21:36:55 +00:00
|
|
|
compare = (obp->colball + bp->colball);
|
2006-10-03 12:12:24 +00:00
|
|
|
VecSubf(def, bp->pos, obp->pos);
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
/* rather check the AABBoxes before ever calulating the real distance */
|
|
|
|
/* mathematically it is completly nuts, but performace is pretty much (3) times faster */
|
|
|
|
if ((ABS(def[0]) > compare) || (ABS(def[1]) > compare) || (ABS(def[2]) > compare)) continue;
|
|
|
|
|
2007-04-04 13:18:41 +00:00
|
|
|
distance = Normalize(def);
|
2006-10-03 12:12:24 +00:00
|
|
|
if (distance < compare ){
|
2006-10-14 19:03:06 +00:00
|
|
|
/* exclude body points attached with a spring */
|
2006-10-03 12:12:24 +00:00
|
|
|
attached = 0;
|
|
|
|
for(b=obp->nofsprings;b>0;b--){
|
|
|
|
bs = sb->bspring + obp->springs[b-1];
|
|
|
|
if (( sb->totpoint-a == bs->v2) || ( sb->totpoint-a == bs->v1)){
|
|
|
|
attached=1;
|
|
|
|
continue;}
|
|
|
|
}
|
|
|
|
if (!attached){
|
|
|
|
float f = tune/(distance) + tune/(compare*compare)*distance - 2.0f*tune/compare ;
|
2006-10-13 21:27:43 +00:00
|
|
|
|
2006-10-14 19:03:06 +00:00
|
|
|
VecMidf(velcenter, bp->vec, obp->vec);
|
|
|
|
VecSubf(dvel,velcenter,bp->vec);
|
|
|
|
VecMulf(dvel,sb->nodemass);
|
2006-10-13 21:27:43 +00:00
|
|
|
|
2006-10-14 19:03:06 +00:00
|
|
|
Vec3PlusStVec(bp->force,sb->balldamp,dvel);
|
|
|
|
Vec3PlusStVec(bp->force,f*(1.0f-sb->balldamp),def);
|
|
|
|
/* exploit force(a,b) == -force(b,a) part2/2 */
|
|
|
|
VecSubf(dvel,velcenter,obp->vec);
|
|
|
|
VecMulf(dvel,sb->nodemass);
|
2006-10-13 21:27:43 +00:00
|
|
|
|
2006-10-14 19:03:06 +00:00
|
|
|
Vec3PlusStVec(obp->force,sb->balldamp,dvel);
|
|
|
|
Vec3PlusStVec(obp->force,-f*(1.0f-sb->balldamp),def);
|
2006-10-13 21:27:43 +00:00
|
|
|
|
2006-10-03 12:12:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-10-14 19:03:06 +00:00
|
|
|
}
|
|
|
|
/* naive ball self collision done */
|
2006-10-03 12:12:24 +00:00
|
|
|
|
2006-09-28 20:27:46 +00:00
|
|
|
if(bp->goal < SOFTGOALSNAP){ /* ommit this bp when it snaps */
|
2005-11-19 21:35:06 +00:00
|
|
|
float auxvect[3];
|
2005-01-12 22:28:13 +00:00
|
|
|
float velgoal[3];
|
|
|
|
float absvel =0, projvel= 0;
|
|
|
|
|
|
|
|
/* do goal stuff */
|
2005-04-02 13:57:23 +00:00
|
|
|
if(ob->softflag & OB_SB_GOAL) {
|
|
|
|
/* true elastic goal */
|
|
|
|
VecSubf(auxvect,bp->origT,bp->pos);
|
|
|
|
ks = 1.0f/(1.0f- bp->goal*sb->goalspring)-1.0f ;
|
2006-10-04 21:36:55 +00:00
|
|
|
bp->force[0]+= ks*(auxvect[0]);
|
|
|
|
bp->force[1]+= ks*(auxvect[1]);
|
|
|
|
bp->force[2]+= ks*(auxvect[2]);
|
2005-04-02 13:57:23 +00:00
|
|
|
/* calulate damping forces generated by goals*/
|
|
|
|
VecSubf(velgoal,bp->origS, bp->origE);
|
2005-04-12 21:36:21 +00:00
|
|
|
kd = sb->goalfrict * sb_fric_force_scale(ob) ;
|
2005-04-18 21:51:45 +00:00
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
if (forcetime > 0.0 ) { /* make sure friction does not become rocket motor on time reversal */
|
2005-04-02 13:57:23 +00:00
|
|
|
bp->force[0]-= kd * (velgoal[0] + bp->vec[0]);
|
|
|
|
bp->force[1]-= kd * (velgoal[1] + bp->vec[1]);
|
|
|
|
bp->force[2]-= kd * (velgoal[2] + bp->vec[2]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bp->force[0]-= kd * (velgoal[0] - bp->vec[0]);
|
|
|
|
bp->force[1]-= kd * (velgoal[1] - bp->vec[1]);
|
|
|
|
bp->force[2]-= kd * (velgoal[2] - bp->vec[2]);
|
|
|
|
}
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
|
|
|
/* done goal stuff */
|
|
|
|
|
|
|
|
|
|
|
|
/* gravitation */
|
2005-04-02 13:57:23 +00:00
|
|
|
bp->force[2]-= gravity*sb->nodemass; /* individual mass of node here */
|
2006-11-16 20:57:02 +00:00
|
|
|
|
2005-04-18 21:51:45 +00:00
|
|
|
|
2005-04-05 20:28:32 +00:00
|
|
|
/* particle field & vortex */
|
The long awaited Particle patch from Janne Karhu
http://www.blender3d.org/cms/New_Particle_options_a.721.0.html
There's no doubt this patch had a lot of good ideas for features, and I
want to compliment Janne again for getting it all to work even!
A more careful review of the features and code did show however quite some
flaws and bugs... partially because the current particle code was very much
polluted already, but also because of the implementation lacked quality.
However, the patch was too good to reject, so I've fixed and recoded the
parts that needed it most. :)
Here's a list of of most evident changes in the patch;
- Guides support recoded. It was implemented as a true 'force field',
checking all Curve path points for each particle to find the closest. Was
just far too slow, and didn't support looping or bends well.
The new implementation is fast (real time) and treats the paths as actual
trajectory for the particle.
- Guides didn't integrate in the physics/speed system either, was added as
exception. Now it's integrated and can be combined with other velocities
or forces
- Use of Fields was slow code in general, made it use a Cache instead.
- The "even" distribution didn't work for Jittered sample patterns.
- The "even" or "vertexgroup" code in the main loops were badly constructed,
giving too much cpu for a simple task. Instead of going over all faces
many times, it now only does it once.
Same part of the code used a lot of temporal unneeded mallocs.
- Use of DerivedMesh or Mesh was confused, didn't work for Subsurfs in all
cases
- Support for vertex groups was slow, evaluating vertexgroups too often
- When a vertexgroup failed to read, it was wrongly handled (set to zero).
VertexGroup support now is with a name.
- Split up the too huge build_particle() call in some parts (moving new code)
- The "texture re-timing" option failed for moving Objects. The old code used
the convention that particles were added with increasing time steps.
Solved by creating a object Matrix Cache.
Also: the texture coordinates had to be corrected to become "OrCo".
- The "Disp" option only was used to draw less particles. Changed it to
actually calculate fewer particles for 3D viewing, but render all still.
So now it can be used to keep editing realtime.
Removed;
The "speed threshold" and "Tight" features were not copied over. This
resembled too much to feature overkill. Needs re-evaluation.
Also the "Deform" option was not added, I prefer to first check if the
current particle system really works for the Modifier system.
And:
- Added integration for particle force fields in the dependency graph
- Added TAB completion for vertexgroup names!
- Made the 'wait cursor' only appear when particles take more than 0.5 sec
- The particle jitter table order now is randomized too, giving much
nicer emitting of particles in large faces.
- Vortex field didn't correctly use speed/forces, so it didn't work for
collisions.
- Triangle distribution was wrong
- Removed ancient bug that applied in a *very* weird way speed and forces.
(location changes got the half force, speed the full...???)
So much... might have forgotten some notes! :)
2005-11-10 16:01:56 +00:00
|
|
|
if(do_effector) {
|
2005-04-04 18:09:47 +00:00
|
|
|
float force[3]= {0.0f, 0.0f, 0.0f};
|
|
|
|
float speed[3]= {0.0f, 0.0f, 0.0f};
|
2005-11-19 21:35:06 +00:00
|
|
|
float eval_sb_fric_force_scale = sb_fric_force_scale(ob); /* just for calling function once */
|
2005-04-04 18:09:47 +00:00
|
|
|
|
The long awaited Particle patch from Janne Karhu
http://www.blender3d.org/cms/New_Particle_options_a.721.0.html
There's no doubt this patch had a lot of good ideas for features, and I
want to compliment Janne again for getting it all to work even!
A more careful review of the features and code did show however quite some
flaws and bugs... partially because the current particle code was very much
polluted already, but also because of the implementation lacked quality.
However, the patch was too good to reject, so I've fixed and recoded the
parts that needed it most. :)
Here's a list of of most evident changes in the patch;
- Guides support recoded. It was implemented as a true 'force field',
checking all Curve path points for each particle to find the closest. Was
just far too slow, and didn't support looping or bends well.
The new implementation is fast (real time) and treats the paths as actual
trajectory for the particle.
- Guides didn't integrate in the physics/speed system either, was added as
exception. Now it's integrated and can be combined with other velocities
or forces
- Use of Fields was slow code in general, made it use a Cache instead.
- The "even" distribution didn't work for Jittered sample patterns.
- The "even" or "vertexgroup" code in the main loops were badly constructed,
giving too much cpu for a simple task. Instead of going over all faces
many times, it now only does it once.
Same part of the code used a lot of temporal unneeded mallocs.
- Use of DerivedMesh or Mesh was confused, didn't work for Subsurfs in all
cases
- Support for vertex groups was slow, evaluating vertexgroups too often
- When a vertexgroup failed to read, it was wrongly handled (set to zero).
VertexGroup support now is with a name.
- Split up the too huge build_particle() call in some parts (moving new code)
- The "texture re-timing" option failed for moving Objects. The old code used
the convention that particles were added with increasing time steps.
Solved by creating a object Matrix Cache.
Also: the texture coordinates had to be corrected to become "OrCo".
- The "Disp" option only was used to draw less particles. Changed it to
actually calculate fewer particles for 3D viewing, but render all still.
So now it can be used to keep editing realtime.
Removed;
The "speed threshold" and "Tight" features were not copied over. This
resembled too much to feature overkill. Needs re-evaluation.
Also the "Deform" option was not added, I prefer to first check if the
current particle system really works for the Modifier system.
And:
- Added integration for particle force fields in the dependency graph
- Added TAB completion for vertexgroup names!
- Made the 'wait cursor' only appear when particles take more than 0.5 sec
- The particle jitter table order now is randomized too, giving much
nicer emitting of particles in large faces.
- Vortex field didn't correctly use speed/forces, so it didn't work for
collisions.
- Triangle distribution was wrong
- Removed ancient bug that applied in a *very* weird way speed and forces.
(location changes got the half force, speed the full...???)
So much... might have forgotten some notes! :)
2005-11-10 16:01:56 +00:00
|
|
|
pdDoEffectors(do_effector, bp->pos, force, speed, (float)G.scene->r.cfra, 0.0f, PE_WIND_AS_SPEED);
|
|
|
|
|
2005-04-21 18:58:15 +00:00
|
|
|
/* apply forcefield*/
|
|
|
|
VecMulf(force,fieldfactor* eval_sb_fric_force_scale);
|
2005-04-04 18:09:47 +00:00
|
|
|
VECADD(bp->force, bp->force, force);
|
2005-04-21 11:24:44 +00:00
|
|
|
|
2006-10-14 19:03:06 +00:00
|
|
|
/* BP friction in moving media */
|
2005-04-18 21:51:45 +00:00
|
|
|
kd= sb->mediafrict* eval_sb_fric_force_scale;
|
2005-04-21 18:58:15 +00:00
|
|
|
bp->force[0] -= kd * (bp->vec[0] + windfactor*speed[0]/eval_sb_fric_force_scale);
|
|
|
|
bp->force[1] -= kd * (bp->vec[1] + windfactor*speed[1]/eval_sb_fric_force_scale);
|
|
|
|
bp->force[2] -= kd * (bp->vec[2] + windfactor*speed[2]/eval_sb_fric_force_scale);
|
2005-04-05 20:28:32 +00:00
|
|
|
/* now we'll have nice centrifugal effect for vortex */
|
2005-04-18 21:51:45 +00:00
|
|
|
|
2005-04-05 20:28:32 +00:00
|
|
|
}
|
|
|
|
else {
|
2006-10-14 19:03:06 +00:00
|
|
|
/* BP friction in media (not) moving*/
|
2005-04-12 21:36:21 +00:00
|
|
|
kd= sb->mediafrict* sb_fric_force_scale(ob);
|
2005-04-05 20:28:32 +00:00
|
|
|
/* assume it to be proportional to actual velocity */
|
|
|
|
bp->force[0]-= bp->vec[0]*kd;
|
|
|
|
bp->force[1]-= bp->vec[1]*kd;
|
|
|
|
bp->force[2]-= bp->vec[2]*kd;
|
|
|
|
/* friction in media done */
|
2005-04-04 18:09:47 +00:00
|
|
|
}
|
2006-10-14 19:03:06 +00:00
|
|
|
/* +++cached collision targets */
|
2006-11-10 23:09:16 +00:00
|
|
|
bp->choke = 0.0f;
|
|
|
|
bp->flag &= ~SBF_DOFUZZY;
|
The long awaited Particle patch from Janne Karhu
http://www.blender3d.org/cms/New_Particle_options_a.721.0.html
There's no doubt this patch had a lot of good ideas for features, and I
want to compliment Janne again for getting it all to work even!
A more careful review of the features and code did show however quite some
flaws and bugs... partially because the current particle code was very much
polluted already, but also because of the implementation lacked quality.
However, the patch was too good to reject, so I've fixed and recoded the
parts that needed it most. :)
Here's a list of of most evident changes in the patch;
- Guides support recoded. It was implemented as a true 'force field',
checking all Curve path points for each particle to find the closest. Was
just far too slow, and didn't support looping or bends well.
The new implementation is fast (real time) and treats the paths as actual
trajectory for the particle.
- Guides didn't integrate in the physics/speed system either, was added as
exception. Now it's integrated and can be combined with other velocities
or forces
- Use of Fields was slow code in general, made it use a Cache instead.
- The "even" distribution didn't work for Jittered sample patterns.
- The "even" or "vertexgroup" code in the main loops were badly constructed,
giving too much cpu for a simple task. Instead of going over all faces
many times, it now only does it once.
Same part of the code used a lot of temporal unneeded mallocs.
- Use of DerivedMesh or Mesh was confused, didn't work for Subsurfs in all
cases
- Support for vertex groups was slow, evaluating vertexgroups too often
- When a vertexgroup failed to read, it was wrongly handled (set to zero).
VertexGroup support now is with a name.
- Split up the too huge build_particle() call in some parts (moving new code)
- The "texture re-timing" option failed for moving Objects. The old code used
the convention that particles were added with increasing time steps.
Solved by creating a object Matrix Cache.
Also: the texture coordinates had to be corrected to become "OrCo".
- The "Disp" option only was used to draw less particles. Changed it to
actually calculate fewer particles for 3D viewing, but render all still.
So now it can be used to keep editing realtime.
Removed;
The "speed threshold" and "Tight" features were not copied over. This
resembled too much to feature overkill. Needs re-evaluation.
Also the "Deform" option was not added, I prefer to first check if the
current particle system really works for the Modifier system.
And:
- Added integration for particle force fields in the dependency graph
- Added TAB completion for vertexgroup names!
- Made the 'wait cursor' only appear when particles take more than 0.5 sec
- The particle jitter table order now is randomized too, giving much
nicer emitting of particles in large faces.
- Vortex field didn't correctly use speed/forces, so it didn't work for
collisions.
- Triangle distribution was wrong
- Removed ancient bug that applied in a *very* weird way speed and forces.
(location changes got the half force, speed the full...???)
So much... might have forgotten some notes! :)
2005-11-10 16:01:56 +00:00
|
|
|
if(do_deflector) {
|
2006-11-10 23:09:16 +00:00
|
|
|
float cfforce[3],defforce[3] ={0.0f,0.0f,0.0f}, vel[3] = {0.0f,0.0f,0.0f}, facenormal[3], cf = 1.0f,intrusion;
|
2005-04-18 21:51:45 +00:00
|
|
|
kd = 1.0f;
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
if (sb_deflect_face(ob,bp->pos,facenormal,defforce,&cf,timenow,vel,&intrusion)){
|
|
|
|
if (intrusion < 0.0f){
|
|
|
|
/*bjornmose: uugh.. what an evil hack
|
|
|
|
violation of the 'don't touch bp->pos in here' rule
|
|
|
|
but works nice, like this-->
|
|
|
|
we predict the solution beeing out of the collider
|
|
|
|
in heun step No1 and leave the heun step No2 adapt to it
|
|
|
|
so we kind of introduced a implicit solver for this case
|
|
|
|
*/
|
|
|
|
Vec3PlusStVec(bp->pos,-intrusion,facenormal);
|
|
|
|
|
|
|
|
sb->scratch->flag |= SBF_DOFUZZY;
|
|
|
|
bp->flag |= SBF_DOFUZZY;
|
|
|
|
bp->choke = sb->choke*0.01f;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
VECSUB(cfforce,bp->vec,vel);
|
|
|
|
Vec3PlusStVec(bp->force,-cf*50.0f,cfforce);
|
|
|
|
}
|
|
|
|
|
2005-10-24 22:13:32 +00:00
|
|
|
Vec3PlusStVec(bp->force,kd,defforce);
|
2005-04-04 18:09:47 +00:00
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2006-09-28 20:27:46 +00:00
|
|
|
}
|
2006-10-14 19:03:06 +00:00
|
|
|
/* ---cached collision targets */
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2006-10-14 19:03:06 +00:00
|
|
|
/* +++springs */
|
2005-04-02 13:57:23 +00:00
|
|
|
if(ob->softflag & OB_SB_EDGES) {
|
2005-11-19 21:35:06 +00:00
|
|
|
if (sb->bspring){ /* spring list exists at all ? */
|
2005-04-18 21:51:45 +00:00
|
|
|
for(b=bp->nofsprings;b>0;b--){
|
|
|
|
bs = sb->bspring + bp->springs[b-1];
|
2006-10-14 19:03:06 +00:00
|
|
|
if (do_springcollision || do_aero){
|
2006-10-10 21:49:02 +00:00
|
|
|
VecAddf(bp->force,bp->force,bs->ext_force);
|
|
|
|
if (bs->flag & BSF_INTERSECT)
|
2006-11-10 23:09:16 +00:00
|
|
|
bp->choke = bs->cf;
|
2006-10-10 21:49:02 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
if (( (sb->totpoint-a) == bs->v1) ){
|
|
|
|
actspringlen= VecLenf( (bproot+bs->v2)->pos, bp->pos);
|
|
|
|
VecSubf(sd,(bproot+bs->v2)->pos, bp->pos);
|
2007-04-04 13:18:41 +00:00
|
|
|
Normalize(sd);
|
2005-04-18 21:51:45 +00:00
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
/* friction stuff V1 */
|
2005-04-18 21:51:45 +00:00
|
|
|
VecSubf(velgoal,bp->vec,(bproot+bs->v2)->vec);
|
|
|
|
kd = sb->infrict * sb_fric_force_scale(ob);
|
2007-04-04 13:18:41 +00:00
|
|
|
absvel = Normalize(velgoal);
|
2005-04-18 21:51:45 +00:00
|
|
|
projvel = ABS(Inpf(sd,velgoal));
|
|
|
|
kd *= absvel * projvel;
|
|
|
|
Vec3PlusStVec(bp->force,-kd,velgoal);
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if(bs->len > 0.0f) /* check for degenerated springs */
|
2005-01-12 22:28:13 +00:00
|
|
|
forcefactor = (bs->len - actspringlen)/bs->len * iks;
|
|
|
|
else
|
|
|
|
forcefactor = actspringlen * iks;
|
2006-09-26 12:53:57 +00:00
|
|
|
forcefactor *= bs->strength;
|
2005-04-18 21:51:45 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
Vec3PlusStVec(bp->force,-forcefactor,sd);
|
2005-04-18 21:51:45 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (( (sb->totpoint-a) == bs->v2) ){
|
|
|
|
actspringlen= VecLenf( (bproot+bs->v1)->pos, bp->pos);
|
|
|
|
VecSubf(sd,bp->pos,(bproot+bs->v1)->pos);
|
2007-04-04 13:18:41 +00:00
|
|
|
Normalize(sd);
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
/* friction stuff V2 */
|
2005-04-18 21:51:45 +00:00
|
|
|
VecSubf(velgoal,bp->vec,(bproot+bs->v1)->vec);
|
|
|
|
kd = sb->infrict * sb_fric_force_scale(ob);
|
2007-04-04 13:18:41 +00:00
|
|
|
absvel = Normalize(velgoal);
|
2005-04-18 21:51:45 +00:00
|
|
|
projvel = ABS(Inpf(sd,velgoal));
|
|
|
|
kd *= absvel * projvel;
|
|
|
|
Vec3PlusStVec(bp->force,-kd,velgoal);
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
if(bs->len > 0.0)
|
|
|
|
forcefactor = (bs->len - actspringlen)/bs->len * iks;
|
|
|
|
else
|
|
|
|
forcefactor = actspringlen * iks;
|
2006-09-26 12:53:57 +00:00
|
|
|
forcefactor *= bs->strength;
|
2005-04-18 21:51:45 +00:00
|
|
|
Vec3PlusStVec(bp->force,+forcefactor,sd);
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
2005-04-18 21:51:45 +00:00
|
|
|
}/* loop springs */
|
|
|
|
}/* existing spring list */
|
|
|
|
}/*any edges*/
|
2006-10-14 19:03:06 +00:00
|
|
|
/* ---springs */
|
2005-04-18 21:51:45 +00:00
|
|
|
}/*omit on snap */
|
|
|
|
}/*loop all bp's*/
|
The long awaited Particle patch from Janne Karhu
http://www.blender3d.org/cms/New_Particle_options_a.721.0.html
There's no doubt this patch had a lot of good ideas for features, and I
want to compliment Janne again for getting it all to work even!
A more careful review of the features and code did show however quite some
flaws and bugs... partially because the current particle code was very much
polluted already, but also because of the implementation lacked quality.
However, the patch was too good to reject, so I've fixed and recoded the
parts that needed it most. :)
Here's a list of of most evident changes in the patch;
- Guides support recoded. It was implemented as a true 'force field',
checking all Curve path points for each particle to find the closest. Was
just far too slow, and didn't support looping or bends well.
The new implementation is fast (real time) and treats the paths as actual
trajectory for the particle.
- Guides didn't integrate in the physics/speed system either, was added as
exception. Now it's integrated and can be combined with other velocities
or forces
- Use of Fields was slow code in general, made it use a Cache instead.
- The "even" distribution didn't work for Jittered sample patterns.
- The "even" or "vertexgroup" code in the main loops were badly constructed,
giving too much cpu for a simple task. Instead of going over all faces
many times, it now only does it once.
Same part of the code used a lot of temporal unneeded mallocs.
- Use of DerivedMesh or Mesh was confused, didn't work for Subsurfs in all
cases
- Support for vertex groups was slow, evaluating vertexgroups too often
- When a vertexgroup failed to read, it was wrongly handled (set to zero).
VertexGroup support now is with a name.
- Split up the too huge build_particle() call in some parts (moving new code)
- The "texture re-timing" option failed for moving Objects. The old code used
the convention that particles were added with increasing time steps.
Solved by creating a object Matrix Cache.
Also: the texture coordinates had to be corrected to become "OrCo".
- The "Disp" option only was used to draw less particles. Changed it to
actually calculate fewer particles for 3D viewing, but render all still.
So now it can be used to keep editing realtime.
Removed;
The "speed threshold" and "Tight" features were not copied over. This
resembled too much to feature overkill. Needs re-evaluation.
Also the "Deform" option was not added, I prefer to first check if the
current particle system really works for the Modifier system.
And:
- Added integration for particle force fields in the dependency graph
- Added TAB completion for vertexgroup names!
- Made the 'wait cursor' only appear when particles take more than 0.5 sec
- The particle jitter table order now is randomized too, giving much
nicer emitting of particles in large faces.
- Vortex field didn't correctly use speed/forces, so it didn't work for
collisions.
- Triangle distribution was wrong
- Removed ancient bug that applied in a *very* weird way speed and forces.
(location changes got the half force, speed the full...???)
So much... might have forgotten some notes! :)
2005-11-10 16:01:56 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
/* finally add forces caused by face collision */
|
|
|
|
if (ob->softflag & OB_SB_FACECOLL) scan_for_ext_face_forces(ob,timenow);
|
2006-10-14 19:03:06 +00:00
|
|
|
/* cleanup */
|
|
|
|
if(do_effector) pdEndEffectors(do_effector);
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
|
|
|
|
|
2005-04-05 20:28:32 +00:00
|
|
|
static void softbody_apply_forces(Object *ob, float forcetime, int mode, float *err)
|
2004-10-01 14:10:30 +00:00
|
|
|
{
|
2005-01-12 22:28:13 +00:00
|
|
|
/* time evolution */
|
|
|
|
/* actually does an explicit euler step mode == 0 */
|
|
|
|
/* or heun ~ 2nd order runge-kutta steps, mode 1,2 */
|
2005-11-19 21:35:06 +00:00
|
|
|
SoftBody *sb= ob->soft; /* is supposed to be there */
|
2004-10-01 14:10:30 +00:00
|
|
|
BodyPoint *bp;
|
2006-11-10 23:09:16 +00:00
|
|
|
float dx[3],dv[3],aabbmin[3],aabbmax[3],cm[3]={0.0f,0.0f,0.0f};
|
2005-01-12 22:28:13 +00:00
|
|
|
float timeovermass;
|
2006-11-10 23:09:16 +00:00
|
|
|
float maxerrpos= 0.0f,maxerrvel = 0.0f;
|
|
|
|
int a,fuzzy=0;
|
2005-04-12 21:36:21 +00:00
|
|
|
|
|
|
|
forcetime *= sb_time_scale(ob);
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
aabbmin[0]=aabbmin[1]=aabbmin[2] = 1e20f;
|
|
|
|
aabbmax[0]=aabbmax[1]=aabbmax[2] = -1e20f;
|
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
/* claim a minimum mass for vertex */
|
2006-11-16 20:57:02 +00:00
|
|
|
if (sb->nodemass > 0.009999f) timeovermass = forcetime/sb->nodemass;
|
|
|
|
else timeovermass = forcetime/0.009999f;
|
2004-10-01 14:10:30 +00:00
|
|
|
|
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
2005-01-12 22:28:13 +00:00
|
|
|
if(bp->goal < SOFTGOALSNAP){
|
|
|
|
|
2005-04-05 20:28:32 +00:00
|
|
|
/* so here is (v)' = a(cceleration) = sum(F_springs)/m + gravitation + some friction forces + more forces*/
|
2005-04-16 14:01:49 +00:00
|
|
|
/* the ( ... )' operator denotes derivate respective time */
|
2005-01-12 22:28:13 +00:00
|
|
|
/* the euler step for velocity then becomes */
|
|
|
|
/* v(t + dt) = v(t) + a(t) * dt */
|
|
|
|
bp->force[0]*= timeovermass; /* individual mass of node here */
|
|
|
|
bp->force[1]*= timeovermass;
|
|
|
|
bp->force[2]*= timeovermass;
|
|
|
|
/* some nasty if's to have heun in here too */
|
|
|
|
VECCOPY(dv,bp->force);
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
if (mode == 1){
|
2005-04-02 13:57:23 +00:00
|
|
|
VECCOPY(bp->prevvec, bp->vec);
|
|
|
|
VECCOPY(bp->prevdv, dv);
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
|
|
|
if (mode ==2){
|
|
|
|
/* be optimistic and execute step */
|
|
|
|
bp->vec[0] = bp->prevvec[0] + 0.5f * (dv[0] + bp->prevdv[0]);
|
|
|
|
bp->vec[1] = bp->prevvec[1] + 0.5f * (dv[1] + bp->prevdv[1]);
|
|
|
|
bp->vec[2] = bp->prevvec[2] + 0.5f * (dv[2] + bp->prevdv[2]);
|
|
|
|
/* compare euler to heun to estimate error for step sizing */
|
2006-11-10 23:09:16 +00:00
|
|
|
maxerrvel = MAX2(maxerrvel,ABS(dv[0] - bp->prevdv[0]));
|
|
|
|
maxerrvel = MAX2(maxerrvel,ABS(dv[1] - bp->prevdv[1]));
|
|
|
|
maxerrvel = MAX2(maxerrvel,ABS(dv[2] - bp->prevdv[2]));
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
|
|
|
else {VECADD(bp->vec, bp->vec, bp->force);}
|
|
|
|
|
2005-04-05 20:28:32 +00:00
|
|
|
/* so here is (x)'= v(elocity) */
|
2005-01-12 22:28:13 +00:00
|
|
|
/* the euler step for location then becomes */
|
|
|
|
/* x(t + dt) = x(t) + v(t) * dt */
|
|
|
|
|
|
|
|
VECCOPY(dx,bp->vec);
|
2005-04-05 20:28:32 +00:00
|
|
|
dx[0]*=forcetime ;
|
|
|
|
dx[1]*=forcetime ;
|
|
|
|
dx[2]*=forcetime ;
|
2005-01-12 22:28:13 +00:00
|
|
|
|
|
|
|
/* again some nasty if's to have heun in here too */
|
|
|
|
if (mode ==1){
|
|
|
|
VECCOPY(bp->prevpos,bp->pos);
|
|
|
|
VECCOPY(bp->prevdx ,dx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode ==2){
|
|
|
|
bp->pos[0] = bp->prevpos[0] + 0.5f * ( dx[0] + bp->prevdx[0]);
|
|
|
|
bp->pos[1] = bp->prevpos[1] + 0.5f * ( dx[1] + bp->prevdx[1]);
|
|
|
|
bp->pos[2] = bp->prevpos[2] + 0.5f* ( dx[2] + bp->prevdx[2]);
|
2006-11-10 23:09:16 +00:00
|
|
|
maxerrpos = MAX2(maxerrpos,ABS(dx[0] - bp->prevdx[0]));
|
|
|
|
maxerrpos = MAX2(maxerrpos,ABS(dx[1] - bp->prevdx[1]));
|
|
|
|
maxerrpos = MAX2(maxerrpos,ABS(dx[2] - bp->prevdx[2]));
|
|
|
|
|
|
|
|
/* bp->choke is set when we need to pull a vertex or edge out of the collider.
|
|
|
|
the collider object signals to get out by pushing hard. on the other hand
|
|
|
|
we don't want to end up in deep space so we add some <viscosity>
|
|
|
|
to balance that out */
|
|
|
|
if (bp->choke > 0.0f){
|
|
|
|
bp->vec[0] = bp->vec[0]*(1.0f - bp->choke);
|
|
|
|
bp->vec[1] = bp->vec[1]*(1.0f - bp->choke);
|
|
|
|
bp->vec[2] = bp->vec[2]*(1.0f - bp->choke);
|
2005-04-12 21:36:21 +00:00
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2005-04-12 21:36:21 +00:00
|
|
|
}
|
2005-04-18 21:51:45 +00:00
|
|
|
else { VECADD(bp->pos, bp->pos, dx);}
|
2005-11-19 21:35:06 +00:00
|
|
|
}/*snap*/
|
2006-11-10 23:09:16 +00:00
|
|
|
/* so while we are looping BPs anyway do statistics on the fly */
|
|
|
|
aabbmin[0] = MIN2(aabbmin[0],bp->pos[0]);
|
|
|
|
aabbmin[1] = MIN2(aabbmin[1],bp->pos[1]);
|
|
|
|
aabbmin[2] = MIN2(aabbmin[2],bp->pos[2]);
|
|
|
|
aabbmax[0] = MAX2(aabbmax[0],bp->pos[0]);
|
|
|
|
aabbmax[1] = MAX2(aabbmax[1],bp->pos[1]);
|
|
|
|
aabbmax[2] = MAX2(aabbmax[2],bp->pos[2]);
|
|
|
|
if (bp->flag & SBF_DOFUZZY) fuzzy =1;
|
2005-11-19 21:35:06 +00:00
|
|
|
} /*for*/
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
if (sb->totpoint) VecMulf(cm,1.0f/sb->totpoint);
|
|
|
|
if (sb->scratch){
|
|
|
|
VECCOPY(sb->scratch->aabbmin,aabbmin);
|
|
|
|
VECCOPY(sb->scratch->aabbmax,aabbmax);
|
|
|
|
}
|
The long awaited Particle patch from Janne Karhu
http://www.blender3d.org/cms/New_Particle_options_a.721.0.html
There's no doubt this patch had a lot of good ideas for features, and I
want to compliment Janne again for getting it all to work even!
A more careful review of the features and code did show however quite some
flaws and bugs... partially because the current particle code was very much
polluted already, but also because of the implementation lacked quality.
However, the patch was too good to reject, so I've fixed and recoded the
parts that needed it most. :)
Here's a list of of most evident changes in the patch;
- Guides support recoded. It was implemented as a true 'force field',
checking all Curve path points for each particle to find the closest. Was
just far too slow, and didn't support looping or bends well.
The new implementation is fast (real time) and treats the paths as actual
trajectory for the particle.
- Guides didn't integrate in the physics/speed system either, was added as
exception. Now it's integrated and can be combined with other velocities
or forces
- Use of Fields was slow code in general, made it use a Cache instead.
- The "even" distribution didn't work for Jittered sample patterns.
- The "even" or "vertexgroup" code in the main loops were badly constructed,
giving too much cpu for a simple task. Instead of going over all faces
many times, it now only does it once.
Same part of the code used a lot of temporal unneeded mallocs.
- Use of DerivedMesh or Mesh was confused, didn't work for Subsurfs in all
cases
- Support for vertex groups was slow, evaluating vertexgroups too often
- When a vertexgroup failed to read, it was wrongly handled (set to zero).
VertexGroup support now is with a name.
- Split up the too huge build_particle() call in some parts (moving new code)
- The "texture re-timing" option failed for moving Objects. The old code used
the convention that particles were added with increasing time steps.
Solved by creating a object Matrix Cache.
Also: the texture coordinates had to be corrected to become "OrCo".
- The "Disp" option only was used to draw less particles. Changed it to
actually calculate fewer particles for 3D viewing, but render all still.
So now it can be used to keep editing realtime.
Removed;
The "speed threshold" and "Tight" features were not copied over. This
resembled too much to feature overkill. Needs re-evaluation.
Also the "Deform" option was not added, I prefer to first check if the
current particle system really works for the Modifier system.
And:
- Added integration for particle force fields in the dependency graph
- Added TAB completion for vertexgroup names!
- Made the 'wait cursor' only appear when particles take more than 0.5 sec
- The particle jitter table order now is randomized too, giving much
nicer emitting of particles in large faces.
- Vortex field didn't correctly use speed/forces, so it didn't work for
collisions.
- Triangle distribution was wrong
- Removed ancient bug that applied in a *very* weird way speed and forces.
(location changes got the half force, speed the full...???)
So much... might have forgotten some notes! :)
2005-11-10 16:01:56 +00:00
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
if (err){ /* so step size will be controlled by biggest difference in slope */
|
2006-11-16 20:57:02 +00:00
|
|
|
if (sb->solverflags & SBSO_OLDERR)
|
2006-11-10 23:09:16 +00:00
|
|
|
*err = MAX2(maxerrpos,maxerrvel);
|
2006-11-16 20:57:02 +00:00
|
|
|
else
|
|
|
|
*err = maxerrpos;
|
2006-11-10 23:09:16 +00:00
|
|
|
//printf("EP %f EV %f \n",maxerrpos,maxerrvel);
|
|
|
|
if (fuzzy){
|
|
|
|
*err /= sb->fuzzyness;
|
|
|
|
}
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
/* used by heun when it overshoots */
|
|
|
|
static void softbody_restore_prev_step(Object *ob)
|
|
|
|
{
|
2005-11-19 21:35:06 +00:00
|
|
|
SoftBody *sb= ob->soft; /* is supposed to be there*/
|
2005-01-12 22:28:13 +00:00
|
|
|
BodyPoint *bp;
|
2004-10-01 14:10:30 +00:00
|
|
|
int a;
|
|
|
|
|
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
2005-04-02 13:57:23 +00:00
|
|
|
VECCOPY(bp->vec, bp->prevvec);
|
|
|
|
VECCOPY(bp->pos, bp->prevpos);
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2006-01-31 22:48:41 +00:00
|
|
|
/* care for bodypoints taken out of the 'ordinary' solver step
|
|
|
|
** because they are screwed to goal by bolts
|
|
|
|
** they just need to move along with the goal in time
|
|
|
|
** we need to adjust them on sub frame timing in solver
|
|
|
|
** so now when frame is done .. put 'em to the position at the end of frame
|
|
|
|
*/
|
2005-01-12 22:28:13 +00:00
|
|
|
static void softbody_apply_goalsnap(Object *ob)
|
|
|
|
{
|
2005-11-19 21:35:06 +00:00
|
|
|
SoftBody *sb= ob->soft; /* is supposed to be there */
|
2005-01-12 22:28:13 +00:00
|
|
|
BodyPoint *bp;
|
|
|
|
int a;
|
|
|
|
|
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
|
|
|
if (bp->goal >= SOFTGOALSNAP){
|
|
|
|
VECCOPY(bp->prevpos,bp->pos);
|
|
|
|
VECCOPY(bp->pos,bp->origT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* expects full initialized softbody */
|
2005-01-12 22:28:13 +00:00
|
|
|
static void interpolate_exciter(Object *ob, int timescale, int time)
|
|
|
|
{
|
2005-04-02 13:57:23 +00:00
|
|
|
SoftBody *sb= ob->soft;
|
2005-01-12 22:28:13 +00:00
|
|
|
BodyPoint *bp;
|
|
|
|
float f;
|
2005-04-02 13:57:23 +00:00
|
|
|
int a;
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
f = (float)time/(float)timescale;
|
|
|
|
|
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++) {
|
|
|
|
bp->origT[0] = bp->origS[0] + f*(bp->origE[0] - bp->origS[0]);
|
|
|
|
bp->origT[1] = bp->origS[1] + f*(bp->origE[1] - bp->origS[1]);
|
|
|
|
bp->origT[2] = bp->origS[2] + f*(bp->origE[2] - bp->origS[2]);
|
|
|
|
if (bp->goal >= SOFTGOALSNAP){
|
|
|
|
bp->vec[0] = bp->origE[0] - bp->origS[0];
|
|
|
|
bp->vec[1] = bp->origE[1] - bp->origS[1];
|
|
|
|
bp->vec[2] = bp->origE[2] - bp->origS[2];
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
2005-04-02 13:57:23 +00:00
|
|
|
}
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
|
|
|
|
/* ************ convertors ********** */
|
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* for each object type we need;
|
2005-08-15 10:30:53 +00:00
|
|
|
- xxxx_to_softbody(Object *ob) : a full (new) copy, creates SB geometry
|
2005-04-02 13:57:23 +00:00
|
|
|
*/
|
|
|
|
|
2005-04-16 14:01:49 +00:00
|
|
|
static void get_scalar_from_vertexgroup(Object *ob, int vertID, short groupindex, float *target)
|
2005-01-12 22:28:13 +00:00
|
|
|
/* result 0 on success, else indicates error number
|
|
|
|
-- kind of *inverse* result defintion,
|
|
|
|
-- but this way we can signal error condition to caller
|
|
|
|
-- and yes this function must not be here but in a *vertex group module*
|
|
|
|
*/
|
|
|
|
{
|
2006-09-03 12:16:14 +00:00
|
|
|
MDeformVert *dv= NULL;
|
2005-04-16 14:01:49 +00:00
|
|
|
int i;
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2005-04-16 14:01:49 +00:00
|
|
|
/* spot the vert in deform vert list at mesh */
|
|
|
|
if(ob->type==OB_MESH) {
|
2006-09-03 12:16:14 +00:00
|
|
|
Mesh *me= ob->data;
|
|
|
|
if (me->dvert)
|
|
|
|
dv = me->dvert + vertID;
|
|
|
|
}
|
|
|
|
else if(ob->type==OB_LATTICE) { /* not yet supported in softbody btw */
|
|
|
|
Lattice *lt= ob->data;
|
|
|
|
if (lt->dvert)
|
|
|
|
dv = lt->dvert + vertID;
|
|
|
|
}
|
|
|
|
if(dv) {
|
|
|
|
/* Lets see if this vert is in the weight group */
|
|
|
|
for (i=0; i<dv->totweight; i++){
|
|
|
|
if (dv->dw[i].def_nr == groupindex){
|
|
|
|
*target= dv->dw[i].weight; /* got it ! */
|
|
|
|
break;
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
2005-01-13 13:58:29 +00:00
|
|
|
}
|
2005-04-16 14:01:49 +00:00
|
|
|
}
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
|
|
|
|
2005-10-24 22:13:32 +00:00
|
|
|
/* Resetting a Mesh SB object's springs */
|
|
|
|
/* Spring lenght are caculted from'raw' mesh vertices that are NOT altered by modifier stack. */
|
2005-10-21 22:58:12 +00:00
|
|
|
static void springs_from_mesh(Object *ob)
|
|
|
|
{
|
|
|
|
SoftBody *sb;
|
|
|
|
Mesh *me= ob->data;
|
|
|
|
BodyPoint *bp;
|
|
|
|
int a;
|
|
|
|
|
|
|
|
sb= ob->soft;
|
|
|
|
if (me && sb)
|
|
|
|
{
|
|
|
|
/* using bp->origS as a container for spring calcualtions here
|
|
|
|
** will be overwritten sbObjectStep() to receive
|
|
|
|
** actual modifier stack positions
|
|
|
|
*/
|
|
|
|
if(me->totvert) {
|
|
|
|
bp= ob->soft->bpoint;
|
|
|
|
for(a=0; a<me->totvert; a++, bp++) {
|
|
|
|
VECCOPY(bp->origS, me->mvert[a].co);
|
|
|
|
Mat4MulVecfl(ob->obmat, bp->origS);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
/* recalculate spring length for meshes here */
|
|
|
|
for(a=0; a<sb->totspring; a++) {
|
|
|
|
BodySpring *bs = &sb->bspring[a];
|
|
|
|
bs->len= VecLenf(sb->bpoint[bs->v1].origS, sb->bpoint[bs->v2].origS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
/* makes totally fresh start situation */
|
2005-11-19 18:19:41 +00:00
|
|
|
static void mesh_to_softbody(Object *ob)
|
2004-10-01 14:10:30 +00:00
|
|
|
{
|
2005-04-02 13:57:23 +00:00
|
|
|
SoftBody *sb;
|
2004-10-01 14:10:30 +00:00
|
|
|
Mesh *me= ob->data;
|
|
|
|
MEdge *medge= me->medge;
|
|
|
|
BodyPoint *bp;
|
|
|
|
BodySpring *bs;
|
2005-04-02 19:52:32 +00:00
|
|
|
float goalfac;
|
2005-04-03 20:13:10 +00:00
|
|
|
int a, totedge;
|
|
|
|
if (ob->softflag & OB_SB_EDGES) totedge= me->totedge;
|
|
|
|
else totedge= 0;
|
2004-10-01 14:10:30 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* renew ends with ob->soft with points and edges, also checks & makes ob->soft */
|
2005-11-19 18:19:41 +00:00
|
|
|
renew_softbody(ob, me->totvert, totedge);
|
2005-04-02 19:52:32 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* we always make body points */
|
|
|
|
sb= ob->soft;
|
|
|
|
bp= sb->bpoint;
|
2005-04-02 19:52:32 +00:00
|
|
|
goalfac= ABS(sb->maxgoal - sb->mingoal);
|
|
|
|
|
2005-07-19 04:27:43 +00:00
|
|
|
for(a=0; a<me->totvert; a++, bp++) {
|
2005-04-16 14:01:49 +00:00
|
|
|
/* get scalar values needed *per vertex* from vertex group functions,
|
|
|
|
so we can *paint* them nicly ..
|
|
|
|
they are normalized [0.0..1.0] so may be we need amplitude for scale
|
|
|
|
which can be done by caller but still .. i'd like it to go this way
|
|
|
|
*/
|
2005-05-20 12:15:50 +00:00
|
|
|
|
|
|
|
if((ob->softflag & OB_SB_GOAL) && sb->vertgroup) {
|
2005-10-24 22:13:32 +00:00
|
|
|
get_scalar_from_vertexgroup(ob, a,(short) (sb->vertgroup-1), &bp->goal);
|
2005-11-19 21:35:06 +00:00
|
|
|
/* do this always, regardless successfull read from vertex group */
|
2005-04-16 14:01:49 +00:00
|
|
|
bp->goal= sb->mingoal + bp->goal*goalfac;
|
|
|
|
}
|
|
|
|
/* a little ad hoc changing the goal control to be less *sharp* */
|
|
|
|
bp->goal = (float)pow(bp->goal, 4.0f);
|
2005-04-02 15:55:15 +00:00
|
|
|
|
2005-04-16 14:01:49 +00:00
|
|
|
/* to proove the concept
|
|
|
|
this would enable per vertex *mass painting*
|
|
|
|
strcpy(name,"SOFTMASS");
|
2005-07-19 20:29:22 +00:00
|
|
|
error = get_scalar_from_named_vertexgroup(ob,name, a,&temp);
|
2005-04-16 14:01:49 +00:00
|
|
|
if (!error) bp->mass = temp * ob->rangeofmass;
|
|
|
|
*/
|
2005-04-02 13:57:23 +00:00
|
|
|
}
|
2005-01-12 22:28:13 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* but we only optionally add body edge springs */
|
|
|
|
if (ob->softflag & OB_SB_EDGES) {
|
2004-10-01 14:10:30 +00:00
|
|
|
if(medge) {
|
2005-04-02 13:57:23 +00:00
|
|
|
bs= sb->bspring;
|
2004-10-01 14:10:30 +00:00
|
|
|
for(a=me->totedge; a>0; a--, medge++, bs++) {
|
|
|
|
bs->v1= medge->v1;
|
|
|
|
bs->v2= medge->v2;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=1;
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
|
2005-04-03 20:13:10 +00:00
|
|
|
/* insert *diagonal* springs in quads if desired */
|
|
|
|
if (ob->softflag & OB_SB_QUADS) {
|
|
|
|
add_mesh_quad_diag_springs(ob);
|
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2005-10-21 22:58:12 +00:00
|
|
|
build_bps_springlist(ob); /* scan for springs attached to bodypoints ONCE */
|
2006-09-26 12:53:57 +00:00
|
|
|
/* insert *other second order* springs if desired */
|
|
|
|
if (sb->secondspring > 0.0000001f) {
|
|
|
|
add_2nd_order_springs(ob,sb->secondspring); /* exploits the the first run of build_bps_springlist(ob);*/
|
|
|
|
build_bps_springlist(ob); /* yes we need to do it again*/
|
|
|
|
}
|
2005-10-21 22:58:12 +00:00
|
|
|
springs_from_mesh(ob); /* write the 'rest'-lenght of the springs */
|
2006-10-05 17:46:01 +00:00
|
|
|
if (ob->softflag & OB_SB_SELF) {calculate_collision_balls(ob);}
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2005-04-03 20:13:10 +00:00
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
}
|
2005-11-19 20:02:30 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
static void mesh_faces_to_scratch(Object *ob)
|
|
|
|
{
|
|
|
|
SoftBody *sb= ob->soft;
|
|
|
|
Mesh *me= ob->data;
|
|
|
|
MFace *mface;
|
|
|
|
BodyFace *bodyface;
|
|
|
|
int a;
|
|
|
|
/* alloc and copy faces*/
|
|
|
|
|
|
|
|
bodyface = sb->scratch->bodyface = MEM_mallocN(sizeof(BodyFace)*me->totface,"SB_body_Faces");
|
|
|
|
//memcpy(sb->scratch->mface,me->mface,sizeof(MFace)*me->totface);
|
|
|
|
mface = me->mface;
|
|
|
|
for(a=0; a<me->totface; a++, mface++, bodyface++) {
|
|
|
|
bodyface->v1 = mface->v1;
|
|
|
|
bodyface->v2 = mface->v2;
|
|
|
|
bodyface->v3 = mface->v3;
|
|
|
|
bodyface->v4 = mface->v4;
|
|
|
|
bodyface->ext_force[0] = bodyface->ext_force[1] = bodyface->ext_force[2] = 0.0f;
|
|
|
|
bodyface->flag =0;
|
|
|
|
}
|
|
|
|
sb->scratch->totface = me->totface;
|
|
|
|
}
|
2005-11-19 20:02:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
helper function to get proper spring length
|
|
|
|
when object is rescaled
|
|
|
|
*/
|
|
|
|
float globallen(float *v1,float *v2,Object *ob)
|
|
|
|
{
|
|
|
|
float p1[3],p2[3];
|
|
|
|
VECCOPY(p1,v1);
|
|
|
|
Mat4MulVecfl(ob->obmat, p1);
|
|
|
|
VECCOPY(p2,v2);
|
|
|
|
Mat4MulVecfl(ob->obmat, p2);
|
|
|
|
return VecLenf(p1,p2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void makelatticesprings(Lattice *lt, BodySpring *bs, int dostiff,Object *ob)
|
2005-08-03 21:38:02 +00:00
|
|
|
{
|
2005-11-19 18:19:41 +00:00
|
|
|
BPoint *bp=lt->def, *bpu;
|
2005-10-24 22:13:32 +00:00
|
|
|
int u, v, w, dv, dw, bpc=0, bpuc;
|
2005-08-03 21:38:02 +00:00
|
|
|
|
|
|
|
dv= lt->pntsu;
|
|
|
|
dw= dv*lt->pntsv;
|
|
|
|
|
|
|
|
for(w=0; w<lt->pntsw; w++) {
|
|
|
|
|
|
|
|
for(v=0; v<lt->pntsv; v++) {
|
|
|
|
|
2005-11-19 18:19:41 +00:00
|
|
|
for(u=0, bpuc=0, bpu=NULL; u<lt->pntsu; u++, bp++, bpc++) {
|
2005-08-03 21:38:02 +00:00
|
|
|
|
|
|
|
if(w) {
|
|
|
|
bs->v1 = bpc;
|
|
|
|
bs->v2 = bpc-dw;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=1;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen((bp-dw)->vec, bp->vec,ob);
|
2005-08-03 21:38:02 +00:00
|
|
|
bs++;
|
|
|
|
}
|
|
|
|
if(v) {
|
|
|
|
bs->v1 = bpc;
|
|
|
|
bs->v2 = bpc-dv;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=1;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen((bp-dv)->vec, bp->vec,ob);
|
2005-08-03 21:38:02 +00:00
|
|
|
bs++;
|
|
|
|
}
|
|
|
|
if(u) {
|
|
|
|
bs->v1 = bpuc;
|
|
|
|
bs->v2 = bpc;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=1;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen((bpu)->vec, bp->vec,ob);
|
2005-08-03 21:38:02 +00:00
|
|
|
bs++;
|
|
|
|
}
|
2005-08-04 10:41:47 +00:00
|
|
|
|
2005-08-03 21:38:02 +00:00
|
|
|
if (dostiff) {
|
2005-08-04 10:41:47 +00:00
|
|
|
|
|
|
|
if(w){
|
|
|
|
if( v && u ) {
|
|
|
|
bs->v1 = bpc;
|
2005-08-03 21:38:02 +00:00
|
|
|
bs->v2 = bpc-dw-dv-1;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=2;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen((bp-dw-dv-1)->vec, bp->vec,ob);
|
2005-08-04 10:41:47 +00:00
|
|
|
bs++;
|
|
|
|
}
|
|
|
|
if( (v < lt->pntsv-1) && (u) ) {
|
|
|
|
bs->v1 = bpc;
|
|
|
|
bs->v2 = bpc-dw+dv-1;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=2;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen((bp-dw+dv-1)->vec, bp->vec,ob);
|
2005-08-03 21:38:02 +00:00
|
|
|
bs++;
|
|
|
|
}
|
|
|
|
}
|
2005-08-04 10:41:47 +00:00
|
|
|
|
|
|
|
if(w < lt->pntsw -1){
|
|
|
|
if( v && u ) {
|
|
|
|
bs->v1 = bpc;
|
|
|
|
bs->v2 = bpc+dw-dv-1;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=2;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen((bp+dw-dv-1)->vec, bp->vec,ob);
|
2005-08-04 10:41:47 +00:00
|
|
|
bs++;
|
|
|
|
}
|
|
|
|
if( (v < lt->pntsv-1) && (u) ) {
|
|
|
|
bs->v1 = bpc;
|
|
|
|
bs->v2 = bpc+dw+dv-1;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=2;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen((bp+dw+dv-1)->vec, bp->vec,ob);
|
2005-08-04 10:41:47 +00:00
|
|
|
bs++;
|
|
|
|
}
|
|
|
|
}
|
2005-08-03 21:38:02 +00:00
|
|
|
}
|
2005-11-19 18:19:41 +00:00
|
|
|
bpu = bp;
|
2005-08-03 21:38:02 +00:00
|
|
|
bpuc = bpc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
/* makes totally fresh start situation */
|
2005-11-19 18:19:41 +00:00
|
|
|
static void lattice_to_softbody(Object *ob)
|
2004-10-01 14:10:30 +00:00
|
|
|
{
|
2005-04-02 19:52:32 +00:00
|
|
|
Lattice *lt= ob->data;
|
2005-11-17 11:40:57 +00:00
|
|
|
SoftBody *sb;
|
2005-08-15 10:30:53 +00:00
|
|
|
int totvert, totspring = 0;
|
2005-10-21 22:58:12 +00:00
|
|
|
|
2005-04-02 19:52:32 +00:00
|
|
|
totvert= lt->pntsu*lt->pntsv*lt->pntsw;
|
2005-08-04 10:41:47 +00:00
|
|
|
|
|
|
|
if (ob->softflag & OB_SB_EDGES){
|
|
|
|
totspring = ((lt->pntsu -1) * lt->pntsv
|
2005-08-03 21:38:02 +00:00
|
|
|
+ (lt->pntsv -1) * lt->pntsu) * lt->pntsw
|
2005-08-04 10:41:47 +00:00
|
|
|
+lt->pntsu*lt->pntsv*(lt->pntsw -1);
|
|
|
|
if (ob->softflag & OB_SB_QUADS){
|
2005-08-15 10:30:53 +00:00
|
|
|
totspring += 4*(lt->pntsu -1) * (lt->pntsv -1) * (lt->pntsw-1);
|
2005-08-04 10:41:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-02 19:52:32 +00:00
|
|
|
/* renew ends with ob->soft with points and edges, also checks & makes ob->soft */
|
2005-11-19 18:19:41 +00:00
|
|
|
renew_softbody(ob, totvert, totspring);
|
2005-11-17 11:40:57 +00:00
|
|
|
sb= ob->soft; /* can be created in renew_softbody() */
|
2005-04-02 19:52:32 +00:00
|
|
|
|
2005-11-16 21:58:49 +00:00
|
|
|
/* weights from bpoints, same code used as for mesh vertices */
|
|
|
|
if((ob->softflag & OB_SB_GOAL) && sb->vertgroup) {
|
|
|
|
BodyPoint *bp= sb->bpoint;
|
|
|
|
BPoint *bpnt= lt->def;
|
|
|
|
float goalfac= ABS(sb->maxgoal - sb->mingoal);
|
|
|
|
int a;
|
|
|
|
|
|
|
|
for(a=0; a<totvert; a++, bp++, bpnt++) {
|
2005-11-17 11:40:57 +00:00
|
|
|
bp->goal= sb->mingoal + bpnt->weight*goalfac;
|
2005-11-16 21:58:49 +00:00
|
|
|
/* a little ad hoc changing the goal control to be less *sharp* */
|
|
|
|
bp->goal = (float)pow(bp->goal, 4.0f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-04 10:41:47 +00:00
|
|
|
/* create some helper edges to enable SB lattice to be usefull at all */
|
2005-08-03 21:38:02 +00:00
|
|
|
if (ob->softflag & OB_SB_EDGES){
|
2005-11-19 20:02:30 +00:00
|
|
|
makelatticesprings(lt,ob->soft->bspring,ob->softflag & OB_SB_QUADS,ob);
|
2005-08-03 21:38:02 +00:00
|
|
|
build_bps_springlist(ob); /* link bps to springs */
|
2005-04-02 19:52:32 +00:00
|
|
|
}
|
|
|
|
}
|
2004-10-01 14:10:30 +00:00
|
|
|
|
2005-11-17 11:40:57 +00:00
|
|
|
/* makes totally fresh start situation */
|
2005-11-19 18:19:41 +00:00
|
|
|
static void curve_surf_to_softbody(Object *ob)
|
2005-11-17 11:40:57 +00:00
|
|
|
{
|
|
|
|
Curve *cu= ob->data;
|
|
|
|
SoftBody *sb;
|
2005-11-17 12:24:29 +00:00
|
|
|
BodyPoint *bp;
|
|
|
|
BodySpring *bs;
|
|
|
|
Nurb *nu;
|
|
|
|
BezTriple *bezt;
|
|
|
|
BPoint *bpnt;
|
|
|
|
float goalfac;
|
|
|
|
int a, curindex=0;
|
|
|
|
int totvert, totspring = 0, setgoal=0;
|
2005-11-17 11:40:57 +00:00
|
|
|
|
|
|
|
totvert= count_curveverts(&cu->nurb);
|
|
|
|
|
|
|
|
if (ob->softflag & OB_SB_EDGES){
|
|
|
|
if(ob->type==OB_CURVE) {
|
|
|
|
totspring= totvert - BLI_countlist(&cu->nurb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* renew ends with ob->soft with points and edges, also checks & makes ob->soft */
|
2005-11-19 18:19:41 +00:00
|
|
|
renew_softbody(ob, totvert, totspring);
|
2005-11-17 11:40:57 +00:00
|
|
|
sb= ob->soft; /* can be created in renew_softbody() */
|
2005-11-17 12:24:29 +00:00
|
|
|
|
|
|
|
/* set vars now */
|
|
|
|
goalfac= ABS(sb->maxgoal - sb->mingoal);
|
|
|
|
bp= sb->bpoint;
|
|
|
|
bs= sb->bspring;
|
2005-11-17 11:40:57 +00:00
|
|
|
|
|
|
|
/* weights from bpoints, same code used as for mesh vertices */
|
2005-11-17 12:24:29 +00:00
|
|
|
if((ob->softflag & OB_SB_GOAL) && sb->vertgroup)
|
|
|
|
setgoal= 1;
|
2005-11-17 11:40:57 +00:00
|
|
|
|
2005-11-17 12:24:29 +00:00
|
|
|
for(nu= cu->nurb.first; nu; nu= nu->next) {
|
|
|
|
if(nu->bezt) {
|
|
|
|
for(bezt=nu->bezt, a=0; a<nu->pntsu; a++, bezt++, bp+=3, curindex+=3) {
|
|
|
|
if(setgoal) {
|
2005-11-17 11:40:57 +00:00
|
|
|
bp->goal= sb->mingoal + bezt->weight*goalfac;
|
|
|
|
/* a little ad hoc changing the goal control to be less *sharp* */
|
|
|
|
bp->goal = (float)pow(bp->goal, 4.0f);
|
|
|
|
|
2005-11-17 12:24:29 +00:00
|
|
|
/* all three triples */
|
|
|
|
(bp+1)->goal= bp->goal;
|
|
|
|
(bp+2)->goal= bp->goal;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(totspring) {
|
|
|
|
if(a>0) {
|
|
|
|
bs->v1= curindex-1;
|
|
|
|
bs->v2= curindex;
|
2005-11-17 11:40:57 +00:00
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=1;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen( (bezt-1)->vec[2], bezt->vec[0], ob );
|
2005-11-17 11:40:57 +00:00
|
|
|
bs++;
|
|
|
|
}
|
2005-11-17 12:24:29 +00:00
|
|
|
bs->v1= curindex;
|
|
|
|
bs->v2= curindex+1;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=1;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen( bezt->vec[0], bezt->vec[1], ob );
|
2005-11-17 12:24:29 +00:00
|
|
|
bs++;
|
|
|
|
|
|
|
|
bs->v1= curindex+1;
|
|
|
|
bs->v2= curindex+2;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=1;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen( bezt->vec[1], bezt->vec[2], ob );
|
2005-11-17 12:24:29 +00:00
|
|
|
bs++;
|
2005-11-17 11:40:57 +00:00
|
|
|
}
|
|
|
|
}
|
2005-11-17 12:24:29 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
for(bpnt=nu->bp, a=0; a<nu->pntsu*nu->pntsv; a++, bpnt++, bp++, curindex++) {
|
|
|
|
if(setgoal) {
|
2005-11-17 11:40:57 +00:00
|
|
|
bp->goal= sb->mingoal + bpnt->weight*goalfac;
|
|
|
|
/* a little ad hoc changing the goal control to be less *sharp* */
|
|
|
|
bp->goal = (float)pow(bp->goal, 4.0f);
|
2005-11-17 12:24:29 +00:00
|
|
|
}
|
|
|
|
if(totspring && a>0) {
|
|
|
|
bs->v1= curindex-1;
|
|
|
|
bs->v2= curindex;
|
|
|
|
bs->strength= 1.0;
|
2006-10-04 21:36:55 +00:00
|
|
|
bs->order=1;
|
2005-11-19 20:02:30 +00:00
|
|
|
bs->len= globallen( (bpnt-1)->vec, bpnt->vec , ob );
|
2005-11-17 12:24:29 +00:00
|
|
|
bs++;
|
2005-11-17 11:40:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(totspring)
|
2006-10-05 17:46:01 +00:00
|
|
|
{
|
2005-11-17 11:40:57 +00:00
|
|
|
build_bps_springlist(ob); /* link bps to springs */
|
2006-10-11 22:53:22 +00:00
|
|
|
if (ob->softflag & OB_SB_SELF) {calculate_collision_balls(ob);}
|
2006-10-05 17:46:01 +00:00
|
|
|
}
|
2005-11-17 11:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-04-02 19:52:32 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* copies softbody result back in object */
|
2006-03-01 23:45:25 +00:00
|
|
|
static void softbody_to_object(Object *ob, float (*vertexCos)[3], int numVerts, int local)
|
2005-04-02 13:57:23 +00:00
|
|
|
{
|
2005-08-15 10:30:53 +00:00
|
|
|
BodyPoint *bp= ob->soft->bpoint;
|
|
|
|
int a;
|
|
|
|
|
2005-04-02 19:52:32 +00:00
|
|
|
/* inverse matrix is not uptodate... */
|
|
|
|
Mat4Invert(ob->imat, ob->obmat);
|
|
|
|
|
2005-08-15 10:30:53 +00:00
|
|
|
for(a=0; a<numVerts; a++, bp++) {
|
|
|
|
VECCOPY(vertexCos[a], bp->pos);
|
2006-03-01 23:45:25 +00:00
|
|
|
if(local==0)
|
|
|
|
Mat4MulVecfl(ob->imat, vertexCos[a]); /* softbody is in global coords, baked optionally not */
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
2005-04-02 13:57:23 +00:00
|
|
|
}
|
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
/* return 1 if succesfully baked and applied step */
|
2005-08-15 10:30:53 +00:00
|
|
|
static int softbody_baked_step(Object *ob, float framenr, float (*vertexCos)[3], int numVerts)
|
2005-05-02 13:28:13 +00:00
|
|
|
{
|
|
|
|
SoftBody *sb= ob->soft;
|
|
|
|
SBVertex *key0, *key1, *key2, *key3;
|
|
|
|
BodyPoint *bp;
|
2005-11-19 21:35:06 +00:00
|
|
|
float data[4], sfra, efra, cfra, dfra, fac; /* start, end, current, delta */
|
2005-05-02 13:28:13 +00:00
|
|
|
int ofs1, a;
|
|
|
|
|
|
|
|
/* precondition check */
|
|
|
|
if(sb==NULL || sb->keys==NULL || sb->totkey==0) return 0;
|
2005-09-20 10:21:30 +00:00
|
|
|
/* so we got keys, but no bodypoints... even without simul we need it for the bake */
|
|
|
|
if(sb->bpoint==NULL) sb->bpoint= MEM_callocN( sb->totpoint*sizeof(BodyPoint), "bodypoint");
|
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
/* convert cfra time to system time */
|
|
|
|
sfra= (float)sb->sfra;
|
2007-08-05 09:21:29 +00:00
|
|
|
cfra= bsystem_time(ob, framenr, 0.0);
|
2005-05-02 13:28:13 +00:00
|
|
|
efra= (float)sb->efra;
|
|
|
|
dfra= (float)sb->interval;
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
/* offset in keys array */
|
2005-10-24 22:13:32 +00:00
|
|
|
ofs1= (int)floor( (cfra-sfra)/dfra );
|
2005-05-02 13:28:13 +00:00
|
|
|
|
|
|
|
if(ofs1 < 0) {
|
|
|
|
key0=key1=key2=key3= *sb->keys;
|
|
|
|
}
|
|
|
|
else if(ofs1 >= sb->totkey-1) {
|
|
|
|
key0=key1=key2=key3= *(sb->keys+sb->totkey-1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
key1= *(sb->keys+ofs1);
|
|
|
|
key2= *(sb->keys+ofs1+1);
|
|
|
|
|
|
|
|
if(ofs1>0) key0= *(sb->keys+ofs1-1);
|
|
|
|
else key0= key1;
|
2005-05-25 21:54:13 +00:00
|
|
|
|
|
|
|
if(ofs1<sb->totkey-2) key3= *(sb->keys+ofs1+2);
|
2005-05-02 13:28:13 +00:00
|
|
|
else key3= key2;
|
|
|
|
}
|
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
sb->ctime= cfra; /* needed? */
|
2005-05-02 13:28:13 +00:00
|
|
|
|
|
|
|
/* timing */
|
|
|
|
fac= ((cfra-sfra)/dfra) - (float)ofs1;
|
|
|
|
CLAMP(fac, 0.0, 1.0);
|
|
|
|
set_four_ipo(fac, data, KEY_BSPLINE);
|
2006-11-23 20:31:46 +00:00
|
|
|
if (key0&&key1&&key2&&key3) // may be null because we SHIFT_ESCAPED
|
2005-05-02 13:28:13 +00:00
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++, key0++, key1++, key2++, key3++) {
|
|
|
|
bp->pos[0]= data[0]*key0->vec[0] + data[1]*key1->vec[0] + data[2]*key2->vec[0] + data[3]*key3->vec[0];
|
|
|
|
bp->pos[1]= data[0]*key0->vec[1] + data[1]*key1->vec[1] + data[2]*key2->vec[1] + data[3]*key3->vec[1];
|
|
|
|
bp->pos[2]= data[0]*key0->vec[2] + data[1]*key1->vec[2] + data[2]*key2->vec[2] + data[3]*key3->vec[2];
|
|
|
|
}
|
|
|
|
|
2006-03-01 23:45:25 +00:00
|
|
|
softbody_to_object(ob, vertexCos, numVerts, sb->local);
|
2005-05-02 13:28:13 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* only gets called after succesfully doing softbody_step */
|
|
|
|
/* already checked for OB_SB_BAKE flag */
|
|
|
|
static void softbody_baked_add(Object *ob, float framenr)
|
|
|
|
{
|
|
|
|
SoftBody *sb= ob->soft;
|
|
|
|
SBVertex *key;
|
|
|
|
BodyPoint *bp;
|
2005-11-19 21:35:06 +00:00
|
|
|
float sfra, efra, cfra, dfra, fac1; /* start, end, current, delta */
|
2005-05-02 13:28:13 +00:00
|
|
|
int ofs1, a;
|
|
|
|
|
|
|
|
/* convert cfra time to system time */
|
|
|
|
sfra= (float)sb->sfra;
|
2006-03-08 17:00:48 +00:00
|
|
|
fac1= ob->sf; ob->sf= 0.0f; /* disable startframe */
|
2007-08-05 09:21:29 +00:00
|
|
|
cfra= bsystem_time(ob, framenr, 0.0);
|
2006-03-08 17:00:48 +00:00
|
|
|
ob->sf= fac1;
|
2005-05-02 13:28:13 +00:00
|
|
|
efra= (float)sb->efra;
|
|
|
|
dfra= (float)sb->interval;
|
|
|
|
|
|
|
|
if(sb->totkey==0) {
|
2006-02-14 11:30:43 +00:00
|
|
|
if(sb->sfra >= sb->efra) return; /* safety, UI or py setting allows */
|
2005-11-19 21:35:06 +00:00
|
|
|
if(sb->interval<1) sb->interval= 1; /* just be sure */
|
2005-05-02 13:28:13 +00:00
|
|
|
|
|
|
|
sb->totkey= 1 + (int)(ceil( (efra-sfra)/dfra ) );
|
|
|
|
sb->keys= MEM_callocN( sizeof(void *)*sb->totkey, "sb keys");
|
|
|
|
}
|
|
|
|
|
2006-03-01 23:45:25 +00:00
|
|
|
/* inverse matrix might not be uptodate... */
|
|
|
|
Mat4Invert(ob->imat, ob->obmat);
|
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
/* now find out if we have to store a key */
|
|
|
|
|
|
|
|
/* offset in keys array */
|
2006-03-08 17:00:48 +00:00
|
|
|
if(cfra>=(efra)) {
|
2005-05-02 13:28:13 +00:00
|
|
|
ofs1= sb->totkey-1;
|
|
|
|
fac1= 0.0;
|
|
|
|
}
|
|
|
|
else {
|
2005-10-24 22:13:32 +00:00
|
|
|
ofs1= (int)floor( (cfra-sfra)/dfra );
|
2005-05-02 13:28:13 +00:00
|
|
|
fac1= ((cfra-sfra)/dfra) - (float)ofs1;
|
|
|
|
}
|
|
|
|
if( fac1 < 1.0/dfra ) {
|
|
|
|
|
|
|
|
key= *(sb->keys+ofs1);
|
|
|
|
if(key == NULL) {
|
|
|
|
*(sb->keys+ofs1)= key= MEM_mallocN(sb->totpoint*sizeof(SBVertex), "softbody key");
|
|
|
|
|
|
|
|
for(a=sb->totpoint, bp= sb->bpoint; a>0; a--, bp++, key++) {
|
|
|
|
VECCOPY(key->vec, bp->pos);
|
2006-03-01 23:45:25 +00:00
|
|
|
if(sb->local)
|
|
|
|
Mat4MulVecfl(ob->imat, key->vec);
|
2005-05-02 13:28:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
/* +++ ************ maintaining scratch *************** */
|
|
|
|
void sb_new_scratch(SoftBody *sb)
|
|
|
|
{
|
|
|
|
if (!sb) return;
|
|
|
|
sb->scratch = MEM_callocN(sizeof(SBScratch), "SBScratch");
|
|
|
|
sb->scratch->colliderhash = BLI_ghash_new(BLI_ghashutil_ptrhash,BLI_ghashutil_ptrcmp);
|
|
|
|
sb->scratch->bodyface = NULL;
|
|
|
|
sb->scratch->totface = 0;
|
|
|
|
sb->scratch->aabbmax[0]=sb->scratch->aabbmax[1]=sb->scratch->aabbmax[2] = 1.0e30f;
|
|
|
|
sb->scratch->aabbmin[0]=sb->scratch->aabbmin[1]=sb->scratch->aabbmin[2] = -1.0e30f;
|
|
|
|
|
|
|
|
}
|
|
|
|
/* --- ************ maintaining scratch *************** */
|
2005-04-02 13:57:23 +00:00
|
|
|
|
|
|
|
/* ************ Object level, exported functions *************** */
|
2004-10-01 14:10:30 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* allocates and initializes general main data */
|
|
|
|
SoftBody *sbNew(void)
|
|
|
|
{
|
|
|
|
SoftBody *sb;
|
|
|
|
|
|
|
|
sb= MEM_callocN(sizeof(SoftBody), "softbody");
|
|
|
|
|
2006-10-11 22:53:22 +00:00
|
|
|
sb->mediafrict= 0.5f;
|
|
|
|
sb->nodemass= 1.0f;
|
2006-11-16 20:57:02 +00:00
|
|
|
sb->grav= 9.8f;
|
2006-10-11 22:53:22 +00:00
|
|
|
sb->physics_speed= 1.0f;
|
2006-11-16 20:57:02 +00:00
|
|
|
sb->rklimit= 0.1f;
|
2005-04-22 17:58:39 +00:00
|
|
|
|
2006-10-11 22:53:22 +00:00
|
|
|
sb->goalspring= 0.5f;
|
|
|
|
sb->goalfrict= 0.0f;
|
|
|
|
sb->mingoal= 0.0f;
|
|
|
|
sb->maxgoal= 1.0f;
|
2005-10-24 22:13:32 +00:00
|
|
|
sb->defgoal= 0.7f;
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2006-10-11 22:53:22 +00:00
|
|
|
sb->inspring= 0.5f;
|
|
|
|
sb->infrict= 0.5f;
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
sb->interval= 10;
|
|
|
|
sb->sfra= G.scene->r.sfra;
|
|
|
|
sb->efra= G.scene->r.efra;
|
2006-10-11 22:53:22 +00:00
|
|
|
|
2006-11-16 20:57:02 +00:00
|
|
|
sb->colball = 0.49f;
|
|
|
|
sb->balldamp = 0.50f;
|
2006-10-11 22:53:22 +00:00
|
|
|
sb->ballstiff= 1.0f;
|
|
|
|
sb->sbc_mode = 1;
|
2006-11-10 23:09:16 +00:00
|
|
|
sb_new_scratch(sb);
|
2005-04-02 13:57:23 +00:00
|
|
|
return sb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* frees all */
|
|
|
|
void sbFree(SoftBody *sb)
|
|
|
|
{
|
|
|
|
free_softbody_intern(sb);
|
|
|
|
MEM_freeN(sb);
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2004-10-01 14:10:30 +00:00
|
|
|
/* makes totally fresh start situation */
|
2005-08-15 10:30:53 +00:00
|
|
|
void sbObjectToSoftbody(Object *ob)
|
2004-10-01 14:10:30 +00:00
|
|
|
{
|
2005-08-15 10:30:53 +00:00
|
|
|
ob->softflag |= OB_SB_REDO;
|
2005-04-16 15:06:02 +00:00
|
|
|
|
2005-08-16 22:58:31 +00:00
|
|
|
free_softbody_intern(ob->soft);
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
|
|
|
|
2005-08-15 10:30:53 +00:00
|
|
|
static int object_has_edges(Object *ob)
|
2004-10-01 14:10:30 +00:00
|
|
|
{
|
2005-08-15 10:30:53 +00:00
|
|
|
if(ob->type==OB_MESH) {
|
- added mesh_strip_loose_faces, works in conjunction with make_edges
to get rid of faces with MFace.v3==0
- change all Mesh's to have ->medge now. This is forced by make_edges
on readfile, and in the various exotic important routines, and on
conversion back in python.
- make python NMesh structure always have medges now (needs testing)
- with above two changes it is guarenteed that mf->v3 is never ==0
in main blender code (i.e., all MFace's are actually triangles
or quads) and so I went through and removed all the historic tests
to deal with MFace.v3==0. Equals lots of deleting, I am in heaven!
- removed MEdge edcode flag, no longer needed
- added experimental replacement for edge flag system
Still are some inconsistencies in FACESELECT mode edge drawing to
be ironed out.
NOTE: This commit adds an experimental edge flag calc system, based
on 10-seconds-of-thought algorithm by yours truly. Would appreciate
feedback on how this system works, esp compared to old one and esp
on complex or interesting models.
To Use: New system is enabled by setting G.rt to a value between
1 and 1000 (Value of 0 uses old system). Value 1000 is reserved for
"auto" edge, which is more or less identical to old system but also
makes sure that at least 10% of edges are drawn (solves errors for
super subdivided meshes). Values between 1 and 999 act as percent
(out of 1000) of edges that should be drawn, starting with "most
interesting" edges first. Please try it and comment!
2005-08-21 07:19:20 +00:00
|
|
|
return ((Mesh*) ob->data)->totedge;
|
2005-08-15 10:30:53 +00:00
|
|
|
}
|
|
|
|
else if(ob->type==OB_LATTICE) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return 0;
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-20 22:27:05 +00:00
|
|
|
/* SB global visible functions */
|
|
|
|
void sbSetInterruptCallBack(int (*f)(void))
|
|
|
|
{
|
|
|
|
SB_localInterruptCallBack = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* simulates one step. framenr is in frames */
|
2005-08-15 10:30:53 +00:00
|
|
|
void sbObjectStep(Object *ob, float framenr, float (*vertexCos)[3], int numVerts)
|
2004-10-01 14:10:30 +00:00
|
|
|
{
|
2005-04-02 13:57:23 +00:00
|
|
|
SoftBody *sb;
|
2005-08-15 10:30:53 +00:00
|
|
|
BodyPoint *bp;
|
2005-11-19 18:19:41 +00:00
|
|
|
int a;
|
2005-10-21 22:58:12 +00:00
|
|
|
float dtime,ctime,forcetime,err;
|
2006-01-31 22:48:41 +00:00
|
|
|
|
2005-09-20 10:21:30 +00:00
|
|
|
/* baking works with global time */
|
|
|
|
if(!(ob->softflag & OB_SB_BAKEDO) )
|
|
|
|
if(softbody_baked_step(ob, framenr, vertexCos, numVerts) ) return;
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2005-11-19 18:19:41 +00:00
|
|
|
/* This part only sets goals and springs, based on original mesh/curve/lattice data.
|
2006-11-10 23:09:16 +00:00
|
|
|
Copying coordinates happens in next chunk by setting softbody flag OB_SB_RESET */
|
2005-09-20 10:21:30 +00:00
|
|
|
/* remake softbody if: */
|
2005-11-19 21:35:06 +00:00
|
|
|
if( (ob->softflag & OB_SB_REDO) || /* signal after weightpainting */
|
2006-11-10 23:09:16 +00:00
|
|
|
(ob->soft==NULL) || /* just to be nice we allow full init */
|
|
|
|
(ob->soft->bpoint==NULL) || /* after reading new file, or acceptable as signal to refresh */
|
|
|
|
(numVerts!=ob->soft->totpoint) || /* should never happen, just to be safe */
|
|
|
|
((ob->softflag & OB_SB_EDGES) && !ob->soft->bspring && object_has_edges(ob))) /* happens when in UI edges was set */
|
2005-08-16 22:58:31 +00:00
|
|
|
{
|
|
|
|
switch(ob->type) {
|
|
|
|
case OB_MESH:
|
2005-11-19 18:19:41 +00:00
|
|
|
mesh_to_softbody(ob);
|
2005-08-16 22:58:31 +00:00
|
|
|
break;
|
|
|
|
case OB_LATTICE:
|
2005-11-19 18:19:41 +00:00
|
|
|
lattice_to_softbody(ob);
|
2005-11-17 11:40:57 +00:00
|
|
|
break;
|
|
|
|
case OB_CURVE:
|
|
|
|
case OB_SURF:
|
2005-11-19 18:19:41 +00:00
|
|
|
curve_surf_to_softbody(ob);
|
2005-08-16 22:58:31 +00:00
|
|
|
break;
|
|
|
|
default:
|
2005-11-19 18:19:41 +00:00
|
|
|
renew_softbody(ob, numVerts, 0);
|
2005-08-16 22:58:31 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
/* still need to update to correct vertex locations, happens on next step */
|
2005-08-16 22:58:31 +00:00
|
|
|
ob->softflag |= OB_SB_RESET;
|
|
|
|
ob->softflag &= ~OB_SB_REDO;
|
|
|
|
}
|
2005-08-15 10:30:53 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
sb= ob->soft;
|
2005-04-02 19:52:32 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* still no points? go away */
|
|
|
|
if(sb->totpoint==0) return;
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* checking time: */
|
2005-08-15 10:30:53 +00:00
|
|
|
|
2007-08-05 09:21:29 +00:00
|
|
|
ctime= bsystem_time(ob, framenr, 0.0);
|
2005-08-15 10:30:53 +00:00
|
|
|
|
|
|
|
if (ob->softflag&OB_SB_RESET) {
|
|
|
|
dtime = 0.0;
|
|
|
|
} else {
|
|
|
|
dtime= ctime - sb->ctime;
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
2005-08-15 10:30:53 +00:00
|
|
|
|
2005-04-02 13:57:23 +00:00
|
|
|
/* the simulator */
|
2005-08-15 10:30:53 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
/* update the vertex locations */
|
2005-08-15 10:30:53 +00:00
|
|
|
if (dtime!=0.0) {
|
|
|
|
for(a=0,bp=sb->bpoint; a<numVerts; a++, bp++) {
|
2005-11-19 21:35:06 +00:00
|
|
|
/* store where goals are now */
|
2006-11-10 23:09:16 +00:00
|
|
|
VECCOPY(bp->origS, bp->origE);
|
2005-11-19 21:35:06 +00:00
|
|
|
/* copy the position of the goals at desired end time */
|
2005-08-15 10:30:53 +00:00
|
|
|
VECCOPY(bp->origE, vertexCos[a]);
|
2005-11-19 21:35:06 +00:00
|
|
|
/* vertexCos came from local world, go global */
|
|
|
|
Mat4MulVecfl(ob->obmat, bp->origE);
|
2006-11-10 23:09:16 +00:00
|
|
|
/* just to be save give bp->origT a defined value
|
2005-11-19 21:35:06 +00:00
|
|
|
will be calulated in interpolate_exciter()*/
|
|
|
|
VECCOPY(bp->origT, bp->origE);
|
2005-08-15 10:30:53 +00:00
|
|
|
}
|
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
if((ob->softflag&OB_SB_RESET) || /* got a reset signal */
|
2006-11-10 23:09:16 +00:00
|
|
|
(dtime<0.0) || /* back in time */
|
|
|
|
(dtime>=9.9*G.scene->r.framelen) /* too far forward in time --> goals won't be accurate enough */
|
|
|
|
)
|
2005-11-19 21:35:06 +00:00
|
|
|
{
|
2005-08-15 10:30:53 +00:00
|
|
|
for(a=0,bp=sb->bpoint; a<numVerts; a++, bp++) {
|
|
|
|
VECCOPY(bp->pos, vertexCos[a]);
|
2005-11-19 21:35:06 +00:00
|
|
|
Mat4MulVecfl(ob->obmat, bp->pos); /* yep, sofbody is global coords*/
|
2005-08-15 10:30:53 +00:00
|
|
|
VECCOPY(bp->origS, bp->pos);
|
|
|
|
VECCOPY(bp->origE, bp->pos);
|
|
|
|
VECCOPY(bp->origT, bp->pos);
|
|
|
|
bp->vec[0]= bp->vec[1]= bp->vec[2]= 0.0f;
|
|
|
|
|
2005-11-19 21:35:06 +00:00
|
|
|
/* the bp->prev*'s are for rolling back from a canceled try to propagate in time
|
|
|
|
adaptive step size algo in a nutshell:
|
2006-11-10 23:09:16 +00:00
|
|
|
1. set sheduled time step to new dtime
|
2005-11-19 21:35:06 +00:00
|
|
|
2. try to advance the sheduled time step, beeing optimistic execute it
|
2006-11-10 23:09:16 +00:00
|
|
|
3. check for success
|
2005-11-19 21:35:06 +00:00
|
|
|
3.a we 're fine continue, may be we can increase sheduled time again ?? if so, do so!
|
|
|
|
3.b we did exceed error limit --> roll back, shorten the sheduled time and try again at 2.
|
|
|
|
4. check if we did reach dtime
|
|
|
|
4.a nope we need to do some more at 2.
|
|
|
|
4.b yup we're done
|
|
|
|
*/
|
|
|
|
|
2005-08-15 10:30:53 +00:00
|
|
|
VECCOPY(bp->prevpos, bp->pos);
|
|
|
|
VECCOPY(bp->prevvec, bp->vec);
|
|
|
|
VECCOPY(bp->prevdx, bp->vec);
|
|
|
|
VECCOPY(bp->prevdv, bp->vec);
|
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
/* make a nice clean scratch struc */
|
|
|
|
free_scratch(sb); /* clear if any */
|
|
|
|
sb_new_scratch(sb); /* make a new */
|
|
|
|
sb->scratch->needstobuildcollider=1;
|
|
|
|
|
|
|
|
|
|
|
|
/* copy some info to scratch */
|
|
|
|
switch(ob->type) {
|
|
|
|
case OB_MESH:
|
|
|
|
if (ob->softflag & OB_SB_FACECOLL) mesh_faces_to_scratch(ob);
|
|
|
|
break;
|
|
|
|
case OB_LATTICE:
|
|
|
|
break;
|
|
|
|
case OB_CURVE:
|
|
|
|
case OB_SURF:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-08-15 10:30:53 +00:00
|
|
|
ob->softflag &= ~OB_SB_RESET;
|
|
|
|
}
|
|
|
|
else if(dtime>0.0) {
|
2006-11-10 23:09:16 +00:00
|
|
|
double sct,sst=PIL_check_seconds_timer();
|
|
|
|
ccd_update_deflector_hache(ob,sb->scratch->colliderhash);
|
2006-01-31 22:48:41 +00:00
|
|
|
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if(sb->scratch->needstobuildcollider){
|
|
|
|
if (query_external_colliders(ob)){
|
|
|
|
ccd_build_deflector_hache(ob,sb->scratch->colliderhash);
|
|
|
|
}
|
|
|
|
sb->scratch->needstobuildcollider=0;
|
|
|
|
}
|
2006-10-17 22:03:32 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
|
|
|
|
if (TRUE) { /* */
|
|
|
|
/* special case of 2nd order Runge-Kutta type AKA Heun */
|
|
|
|
float forcetimemax = 1.0f;
|
|
|
|
float forcetimemin = 0.001f;
|
|
|
|
float timedone =0.0; /* how far did we get without violating error condition */
|
|
|
|
/* loops = counter for emergency brake
|
|
|
|
* we don't want to lock up the system if physics fail
|
|
|
|
*/
|
|
|
|
int loops =0 ;
|
|
|
|
SoftHeunTol = sb->rklimit; /* humm .. this should be calculated from sb parameters and sizes */
|
|
|
|
if (sb->minloops > 0) forcetimemax = 1.0f / sb->minloops;
|
2006-01-31 22:48:41 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
if (sb->maxloops > 0) forcetimemin = 1.0f / sb->maxloops;
|
|
|
|
|
|
|
|
|
|
|
|
//forcetime = dtime; /* hope for integrating in one step */
|
|
|
|
forcetime =forcetimemax; /* hope for integrating in one step */
|
|
|
|
while ( (ABS(timedone) < ABS(dtime)) && (loops < 2000) )
|
|
|
|
{
|
|
|
|
/* set goals in time */
|
|
|
|
interpolate_exciter(ob,200,(int)(200.0*(timedone/dtime)));
|
2005-04-02 13:57:23 +00:00
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
sb->scratch->flag &= ~SBF_DOFUZZY;
|
|
|
|
/* do predictive euler step */
|
|
|
|
softbody_calc_forces(ob, forcetime,timedone/dtime);
|
|
|
|
softbody_apply_forces(ob, forcetime, 1, NULL);
|
|
|
|
/* crop new slope values to do averaged slope step */
|
|
|
|
softbody_calc_forces(ob, forcetime,timedone/dtime);
|
|
|
|
softbody_apply_forces(ob, forcetime, 2, &err);
|
|
|
|
softbody_apply_goalsnap(ob);
|
|
|
|
|
|
|
|
if (err > SoftHeunTol) { /* error needs to be scaled to some quantity */
|
|
|
|
|
|
|
|
if (forcetime > forcetimemin){
|
|
|
|
forcetime = MAX2(forcetime / 2.0f,forcetimemin);
|
|
|
|
softbody_restore_prev_step(ob);
|
|
|
|
//printf("down,");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
timedone += forcetime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
float newtime = forcetime * 1.1f; /* hope for 1.1 times better conditions in next step */
|
|
|
|
|
|
|
|
if (sb->scratch->flag & SBF_DOFUZZY){
|
|
|
|
//if (err > SoftHeunTol/(2.0f*sb->fuzzyness)) { /* stay with this stepsize unless err really small */
|
|
|
|
newtime = forcetime;
|
|
|
|
//}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (err > SoftHeunTol/2.0f) { /* stay with this stepsize unless err really small */
|
|
|
|
newtime = forcetime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
timedone += forcetime;
|
|
|
|
newtime=MIN2(forcetimemax,MAX2(newtime,forcetimemin));
|
|
|
|
//if (newtime > forcetime) printf("up,");
|
|
|
|
if (forcetime > 0.0)
|
|
|
|
forcetime = MIN2(dtime - timedone,newtime);
|
|
|
|
else
|
|
|
|
forcetime = MAX2(dtime - timedone,newtime);
|
|
|
|
}
|
|
|
|
loops++;
|
|
|
|
if(sb->solverflags & SBSO_MONITOR ){
|
|
|
|
sct=PIL_check_seconds_timer();
|
|
|
|
if (sct-sst > 0.5f) printf("%3.0f%% \r",100.0f*timedone);
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
2006-11-20 22:27:05 +00:00
|
|
|
if (SB_localInterruptCallBack && SB_localInterruptCallBack()) break;
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
/* move snapped to final position */
|
|
|
|
interpolate_exciter(ob, 2, 2);
|
|
|
|
softbody_apply_goalsnap(ob);
|
|
|
|
|
|
|
|
// if(G.f & G_DEBUG){
|
|
|
|
if(sb->solverflags & SBSO_MONITOR ){
|
|
|
|
if (loops > HEUNWARNLIMIT) /* monitor high loop counts */
|
|
|
|
printf("\r needed %d steps/frame ",loops);
|
|
|
|
}
|
|
|
|
|
2005-01-12 22:28:13 +00:00
|
|
|
}
|
2006-11-10 23:09:16 +00:00
|
|
|
else{
|
|
|
|
/* do brute force explicit euler */
|
|
|
|
/* removed but left this branch for better integrators / solvers (BM) */
|
|
|
|
/* yah! Nicholas Guttenberg (NichG) here is the place to plug in */
|
|
|
|
}
|
|
|
|
if(sb->solverflags & SBSO_MONITOR ){
|
|
|
|
sct=PIL_check_seconds_timer();
|
2006-11-16 20:57:02 +00:00
|
|
|
if (sct-sst > 0.5f) printf(" solver time %f %s \r",sct-sst,ob->id.name);
|
2005-04-02 13:57:23 +00:00
|
|
|
}
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
2005-04-04 18:09:47 +00:00
|
|
|
|
2006-03-01 23:45:25 +00:00
|
|
|
softbody_to_object(ob, vertexCos, numVerts, 0);
|
2005-08-15 10:30:53 +00:00
|
|
|
sb->ctime= ctime;
|
|
|
|
|
2006-11-10 23:09:16 +00:00
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
if(ob->softflag & OB_SB_BAKEDO) softbody_baked_add(ob, framenr);
|
2004-10-01 14:10:30 +00:00
|
|
|
}
|
|
|
|
|