2011-02-23 18:03:40 +00:00
|
|
|
/*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) Blender Foundation
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2011-02-27 20:40:57 +00:00
|
|
|
/** \file blender/blenkernel/intern/collision.c
|
|
|
|
* \ingroup bke
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
#include "MEM_guardedalloc.h"
|
2008-03-13 22:45:36 +00:00
|
|
|
|
|
|
|
#include "BKE_cloth.h"
|
|
|
|
|
2008-04-08 12:55:35 +00:00
|
|
|
#include "DNA_cloth_types.h"
|
2008-08-18 14:41:24 +00:00
|
|
|
#include "DNA_group_types.h"
|
2008-01-29 21:01:12 +00:00
|
|
|
#include "DNA_mesh_types.h"
|
2008-08-18 14:41:24 +00:00
|
|
|
#include "DNA_object_types.h"
|
|
|
|
#include "DNA_object_force.h"
|
2008-01-29 21:01:12 +00:00
|
|
|
#include "DNA_scene_types.h"
|
2010-08-10 05:41:51 +00:00
|
|
|
#include "DNA_meshdata_types.h"
|
|
|
|
|
2011-05-09 04:06:48 +00:00
|
|
|
#include "BLI_utildefines.h"
|
2010-08-10 05:41:51 +00:00
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
#include "BLI_math.h"
|
|
|
|
#include "BLI_edgehash.h"
|
2011-01-07 18:36:47 +00:00
|
|
|
#include "BLI_utildefines.h"
|
2011-05-01 21:39:13 +00:00
|
|
|
#include "BLI_ghash.h"
|
|
|
|
#include "BLI_memarena.h"
|
|
|
|
#include "BLI_rand.h"
|
2008-03-13 22:45:36 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
#include "BKE_DerivedMesh.h"
|
|
|
|
#include "BKE_global.h"
|
2010-06-18 14:14:13 +00:00
|
|
|
#include "BKE_scene.h"
|
2008-01-29 21:01:12 +00:00
|
|
|
#include "BKE_mesh.h"
|
|
|
|
#include "BKE_object.h"
|
|
|
|
#include "BKE_modifier.h"
|
2011-01-07 19:18:31 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
#include "BKE_DerivedMesh.h"
|
2009-09-30 21:31:08 +00:00
|
|
|
#ifdef USE_BULLET
|
2008-01-29 21:01:12 +00:00
|
|
|
#include "Bullet-C-Api.h"
|
2009-09-30 21:31:08 +00:00
|
|
|
#endif
|
2008-05-07 20:42:16 +00:00
|
|
|
#include "BLI_kdopbvh.h"
|
|
|
|
#include "BKE_collision.h"
|
|
|
|
|
2011-05-02 03:44:02 +00:00
|
|
|
#ifdef WITH_ELTOPO
|
2011-05-01 21:39:13 +00:00
|
|
|
#include "eltopo-capi.h"
|
|
|
|
#endif
|
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
/***********************************
|
|
|
|
Collision modifier code start
|
|
|
|
***********************************/
|
|
|
|
|
|
|
|
/* step is limited from 0 (frame start position) to 1 (frame end position) */
|
2012-03-11 19:09:01 +00:00
|
|
|
void collision_move_object(CollisionModifierData *collmd, float step, float prevstep)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2010-05-25 13:33:59 +00:00
|
|
|
float tv[3] = {0, 0, 0};
|
2008-01-29 21:01:12 +00:00
|
|
|
unsigned int i = 0;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
for ( i = 0; i < collmd->numverts; i++ )
|
|
|
|
{
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( tv, collmd->xnew[i].co, collmd->x[i].co );
|
2008-04-08 12:55:35 +00:00
|
|
|
VECADDS ( collmd->current_x[i].co, collmd->x[i].co, tv, prevstep );
|
|
|
|
VECADDS ( collmd->current_xnew[i].co, collmd->x[i].co, tv, step );
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( collmd->current_v[i].co, collmd->current_xnew[i].co, collmd->current_x[i].co );
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2010-05-25 13:33:59 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
bvhtree_update_from_mvert ( collmd->bvhtree, collmd->mfaces, collmd->numfaces, collmd->current_x, collmd->current_xnew, collmd->numverts, 1 );
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
|
2010-10-16 14:32:17 +00:00
|
|
|
BVHTree *bvhtree_build_from_mvert ( MFace *mfaces, unsigned int numfaces, MVert *x, unsigned int UNUSED(numverts), float epsilon )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
BVHTree *tree;
|
|
|
|
float co[12];
|
2010-10-21 08:32:53 +00:00
|
|
|
unsigned int i;
|
2008-05-07 20:42:16 +00:00
|
|
|
MFace *tface = mfaces;
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
tree = BLI_bvhtree_new ( numfaces*2, epsilon, 4, 26 );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
// fill tree
|
|
|
|
for ( i = 0; i < numfaces; i++, tface++ )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2011-09-12 04:14:12 +00:00
|
|
|
copy_v3_v3 ( &co[0*3], x[tface->v1].co );
|
|
|
|
copy_v3_v3 ( &co[1*3], x[tface->v2].co );
|
|
|
|
copy_v3_v3 ( &co[2*3], x[tface->v3].co );
|
2008-05-07 20:42:16 +00:00
|
|
|
if ( tface->v4 )
|
2011-09-12 04:14:12 +00:00
|
|
|
copy_v3_v3 ( &co[3*3], x[tface->v4].co );
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
BLI_bvhtree_insert ( tree, i, co, ( mfaces->v4 ? 4 : 3 ) );
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
// balance tree
|
|
|
|
BLI_bvhtree_balance ( tree );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
return tree;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
|
2010-10-16 14:32:17 +00:00
|
|
|
void bvhtree_update_from_mvert ( BVHTree * bvhtree, MFace *faces, int numfaces, MVert *x, MVert *xnew, int UNUSED(numverts), int moving )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
int i;
|
|
|
|
MFace *mfaces = faces;
|
|
|
|
float co[12], co_moving[12];
|
|
|
|
int ret = 0;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
if ( !bvhtree )
|
2008-01-29 21:01:12 +00:00
|
|
|
return;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
|
|
|
if ( x )
|
2008-05-07 20:42:16 +00:00
|
|
|
{
|
|
|
|
for ( i = 0; i < numfaces; i++, mfaces++ )
|
|
|
|
{
|
2011-09-12 04:14:12 +00:00
|
|
|
copy_v3_v3 ( &co[0*3], x[mfaces->v1].co );
|
|
|
|
copy_v3_v3 ( &co[1*3], x[mfaces->v2].co );
|
|
|
|
copy_v3_v3 ( &co[2*3], x[mfaces->v3].co );
|
2008-05-07 20:42:16 +00:00
|
|
|
if ( mfaces->v4 )
|
2011-09-12 04:14:12 +00:00
|
|
|
copy_v3_v3 ( &co[3*3], x[mfaces->v4].co );
|
2008-05-07 20:42:16 +00:00
|
|
|
|
|
|
|
// copy new locations into array
|
|
|
|
if ( moving && xnew )
|
|
|
|
{
|
|
|
|
// update moving positions
|
2011-09-12 04:14:12 +00:00
|
|
|
copy_v3_v3 ( &co_moving[0*3], xnew[mfaces->v1].co );
|
|
|
|
copy_v3_v3 ( &co_moving[1*3], xnew[mfaces->v2].co );
|
|
|
|
copy_v3_v3 ( &co_moving[2*3], xnew[mfaces->v3].co );
|
2008-05-07 20:42:16 +00:00
|
|
|
if ( mfaces->v4 )
|
2011-09-12 04:14:12 +00:00
|
|
|
copy_v3_v3 ( &co_moving[3*3], xnew[mfaces->v4].co );
|
2008-05-07 20:42:16 +00:00
|
|
|
|
|
|
|
ret = BLI_bvhtree_update_node ( bvhtree, i, co, co_moving, ( mfaces->v4 ? 4 : 3 ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = BLI_bvhtree_update_node ( bvhtree, i, co, NULL, ( mfaces->v4 ? 4 : 3 ) );
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
// check if tree is already full
|
|
|
|
if ( !ret )
|
|
|
|
break;
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
BLI_bvhtree_update_tree ( bvhtree );
|
|
|
|
}
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************
|
|
|
|
Collision modifier code end
|
|
|
|
***********************************/
|
|
|
|
|
|
|
|
/**
|
2008-05-26 09:39:32 +00:00
|
|
|
* gsl_poly_solve_cubic -
|
|
|
|
*
|
|
|
|
* copied from SOLVE_CUBIC.C --> GSL
|
|
|
|
*/
|
2008-01-31 12:29:57 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
#define mySWAP(a,b) do { double tmp = b ; b = a ; a = tmp ; } while(0)
|
2011-02-13 10:52:18 +00:00
|
|
|
#if 0 /* UNUSED */
|
|
|
|
static int
|
2008-05-26 09:39:32 +00:00
|
|
|
gsl_poly_solve_cubic (double a, double b, double c,
|
|
|
|
double *x0, double *x1, double *x2)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-12 12:24:52 +00:00
|
|
|
double q = (a * a - 3 * b);
|
|
|
|
double r = (2 * a * a * a - 9 * a * b + 27 * c);
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
double Q = q / 9;
|
|
|
|
double R = r / 54;
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
double Q3 = Q * Q * Q;
|
|
|
|
double R2 = R * R;
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
double CR2 = 729 * r * r;
|
|
|
|
double CQ3 = 2916 * q * q * q;
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
if (R == 0 && Q == 0)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2012-02-27 10:35:39 +00:00
|
|
|
*x0 = - a / 3;
|
|
|
|
*x1 = - a / 3;
|
|
|
|
*x2 = - a / 3;
|
|
|
|
return 3;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-12 12:24:52 +00:00
|
|
|
else if (CR2 == CQ3)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-26 09:39:32 +00:00
|
|
|
/* this test is actually R2 == Q3, written in a form suitable
|
2008-05-07 20:42:16 +00:00
|
|
|
for exact computation with integers */
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-26 09:39:32 +00:00
|
|
|
/* Due to finite precision some double roots may be missed, and
|
2008-05-07 20:42:16 +00:00
|
|
|
considered to be a pair of complex roots z = x +/- epsilon i
|
|
|
|
close to the real axis. */
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
double sqrtQ = sqrt (Q);
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
if (R > 0)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
*x0 = -2 * sqrtQ - a / 3;
|
|
|
|
*x1 = sqrtQ - a / 3;
|
|
|
|
*x2 = sqrtQ - a / 3;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*x0 = - sqrtQ - a / 3;
|
|
|
|
*x1 = - sqrtQ - a / 3;
|
|
|
|
*x2 = 2 * sqrtQ - a / 3;
|
|
|
|
}
|
2012-02-27 10:35:39 +00:00
|
|
|
return 3;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-12 12:24:52 +00:00
|
|
|
else if (CR2 < CQ3) /* equivalent to R2 < Q3 */
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-12 12:24:52 +00:00
|
|
|
double sqrtQ = sqrt (Q);
|
|
|
|
double sqrtQ3 = sqrtQ * sqrtQ * sqrtQ;
|
|
|
|
double theta = acos (R / sqrtQ3);
|
|
|
|
double norm = -2 * sqrtQ;
|
|
|
|
*x0 = norm * cos (theta / 3) - a / 3;
|
|
|
|
*x1 = norm * cos ((theta + 2.0 * M_PI) / 3) - a / 3;
|
|
|
|
*x2 = norm * cos ((theta - 2.0 * M_PI) / 3) - a / 3;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
/* Sort *x0, *x1, *x2 into increasing order */
|
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
if (*x0 > *x1)
|
2012-02-27 10:35:39 +00:00
|
|
|
mySWAP(*x0, *x1);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
if (*x1 > *x2)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2012-02-27 10:35:39 +00:00
|
|
|
mySWAP(*x1, *x2);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
if (*x0 > *x1)
|
2012-02-27 10:35:39 +00:00
|
|
|
mySWAP(*x0, *x1);
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-05-12 12:24:52 +00:00
|
|
|
double sgnR = (R >= 0 ? 1 : -1);
|
|
|
|
double A = -sgnR * pow (fabs (R) + sqrt (R2 - Q3), 1.0/3.0);
|
2012-02-27 10:35:39 +00:00
|
|
|
double B = Q / A;
|
2008-01-29 21:01:12 +00:00
|
|
|
*x0 = A + B - a / 3;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
/**
|
2008-05-26 09:39:32 +00:00
|
|
|
* gsl_poly_solve_quadratic
|
|
|
|
*
|
|
|
|
* copied from GSL
|
|
|
|
*/
|
2011-02-13 10:52:18 +00:00
|
|
|
static int
|
2008-05-26 09:39:32 +00:00
|
|
|
gsl_poly_solve_quadratic (double a, double b, double c,
|
|
|
|
double *x0, double *x1)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-12 12:24:52 +00:00
|
|
|
double disc = b * b - 4 * a * c;
|
|
|
|
|
|
|
|
if (a == 0) /* Handle linear case */
|
|
|
|
{
|
|
|
|
if (b == 0)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*x0 = -c / b;
|
|
|
|
return 1;
|
|
|
|
};
|
|
|
|
}
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
if (disc > 0)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-12 12:24:52 +00:00
|
|
|
if (b == 0)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-12 12:24:52 +00:00
|
|
|
double r = fabs (0.5 * sqrt (disc) / a);
|
2008-01-29 21:01:12 +00:00
|
|
|
*x0 = -r;
|
|
|
|
*x1 = r;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-05-12 12:24:52 +00:00
|
|
|
double sgnb = (b > 0 ? 1 : -1);
|
|
|
|
double temp = -0.5 * (b + sgnb * sqrt (disc));
|
2012-02-27 10:35:39 +00:00
|
|
|
double r1 = temp / a;
|
|
|
|
double r2 = c / temp;
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
if (r1 < r2)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2012-02-27 10:35:39 +00:00
|
|
|
*x0 = r1;
|
|
|
|
*x1 = r2;
|
2008-05-12 12:24:52 +00:00
|
|
|
}
|
|
|
|
else
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2012-02-27 10:35:39 +00:00
|
|
|
*x0 = r2;
|
|
|
|
*x1 = r1;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 2;
|
|
|
|
}
|
2008-05-12 12:24:52 +00:00
|
|
|
else if (disc == 0)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2012-02-27 10:35:39 +00:00
|
|
|
*x0 = -0.5 * b / a;
|
|
|
|
*x1 = -0.5 * b / a;
|
|
|
|
return 2;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2011-02-13 10:52:18 +00:00
|
|
|
#endif /* UNUSED */
|
2008-01-29 21:01:12 +00:00
|
|
|
|
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
/*
|
2008-05-26 09:39:32 +00:00
|
|
|
* See Bridson et al. "Robust Treatment of Collision, Contact and Friction for Cloth Animation"
|
|
|
|
* page 4, left column
|
|
|
|
*/
|
2010-02-08 13:55:31 +00:00
|
|
|
#if 0
|
2009-09-14 16:52:06 +00:00
|
|
|
static int cloth_get_collision_time ( double a[3], double b[3], double c[3], double d[3], double e[3], double f[3], double solution[3] )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
int num_sols = 0;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
// x^0 - checked
|
|
|
|
double g = a[0] * c[1] * e[2] - a[0] * c[2] * e[1] +
|
2008-05-26 09:39:32 +00:00
|
|
|
a[1] * c[2] * e[0] - a[1] * c[0] * e[2] +
|
|
|
|
a[2] * c[0] * e[1] - a[2] * c[1] * e[0];
|
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
// x^1
|
|
|
|
double h = -b[2] * c[1] * e[0] + b[1] * c[2] * e[0] - a[2] * d[1] * e[0] +
|
2008-05-26 09:39:32 +00:00
|
|
|
a[1] * d[2] * e[0] + b[2] * c[0] * e[1] - b[0] * c[2] * e[1] +
|
|
|
|
a[2] * d[0] * e[1] - a[0] * d[2] * e[1] - b[1] * c[0] * e[2] +
|
|
|
|
b[0] * c[1] * e[2] - a[1] * d[0] * e[2] + a[0] * d[1] * e[2] -
|
|
|
|
a[2] * c[1] * f[0] + a[1] * c[2] * f[0] + a[2] * c[0] * f[1] -
|
|
|
|
a[0] * c[2] * f[1] - a[1] * c[0] * f[2] + a[0] * c[1] * f[2];
|
2008-05-12 12:24:52 +00:00
|
|
|
|
|
|
|
// x^2
|
|
|
|
double i = -b[2] * d[1] * e[0] + b[1] * d[2] * e[0] +
|
2008-05-26 09:39:32 +00:00
|
|
|
b[2] * d[0] * e[1] - b[0] * d[2] * e[1] -
|
|
|
|
b[1] * d[0] * e[2] + b[0] * d[1] * e[2] -
|
|
|
|
b[2] * c[1] * f[0] + b[1] * c[2] * f[0] -
|
|
|
|
a[2] * d[1] * f[0] + a[1] * d[2] * f[0] +
|
|
|
|
b[2] * c[0] * f[1] - b[0] * c[2] * f[1] +
|
|
|
|
a[2] * d[0] * f[1] - a[0] * d[2] * f[1] -
|
|
|
|
b[1] * c[0] * f[2] + b[0] * c[1] * f[2] -
|
|
|
|
a[1] * d[0] * f[2] + a[0] * d[1] * f[2];
|
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
// x^3 - checked
|
|
|
|
double j = -b[2] * d[1] * f[0] + b[1] * d[2] * f[0] +
|
2008-05-26 09:39:32 +00:00
|
|
|
b[2] * d[0] * f[1] - b[0] * d[2] * f[1] -
|
|
|
|
b[1] * d[0] * f[2] + b[0] * d[1] * f[2];
|
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
/*
|
|
|
|
printf("r1: %lf\n", a[0] * c[1] * e[2] - a[0] * c[2] * e[1]);
|
|
|
|
printf("r2: %lf\n", a[1] * c[2] * e[0] - a[1] * c[0] * e[2]);
|
|
|
|
printf("r3: %lf\n", a[2] * c[0] * e[1] - a[2] * c[1] * e[0]);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
printf("x1 x: %f, y: %f, z: %f\n", a[0], a[1], a[2]);
|
|
|
|
printf("x2 x: %f, y: %f, z: %f\n", c[0], c[1], c[2]);
|
|
|
|
printf("x3 x: %f, y: %f, z: %f\n", e[0], e[1], e[2]);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
printf("v1 x: %f, y: %f, z: %f\n", b[0], b[1], b[2]);
|
|
|
|
printf("v2 x: %f, y: %f, z: %f\n", d[0], d[1], d[2]);
|
|
|
|
printf("v3 x: %f, y: %f, z: %f\n", f[0], f[1], f[2]);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
printf("t^3: %lf, t^2: %lf, t^1: %lf, t^0: %lf\n", j, i, h, g);
|
2008-05-29 14:23:08 +00:00
|
|
|
|
|
|
|
*/
|
2008-01-29 21:01:12 +00:00
|
|
|
// Solve cubic equation to determine times t1, t2, t3, when the collision will occur.
|
2008-05-12 12:24:52 +00:00
|
|
|
if ( ABS ( j ) > DBL_EPSILON )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
i /= j;
|
|
|
|
h /= j;
|
|
|
|
g /= j;
|
2008-04-08 12:55:35 +00:00
|
|
|
num_sols = gsl_poly_solve_cubic ( i, h, g, &solution[0], &solution[1], &solution[2] );
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-12 12:24:52 +00:00
|
|
|
else
|
2008-04-08 12:55:35 +00:00
|
|
|
{
|
|
|
|
num_sols = gsl_poly_solve_quadratic ( i, h, g, &solution[0], &solution[1] );
|
2008-01-29 21:01:12 +00:00
|
|
|
solution[2] = -1.0;
|
|
|
|
}
|
2008-05-12 12:24:52 +00:00
|
|
|
|
|
|
|
// printf("num_sols: %d, sol1: %lf, sol2: %lf, sol3: %lf\n", num_sols, solution[0], solution[1], solution[2]);
|
2008-01-29 21:01:12 +00:00
|
|
|
|
|
|
|
// Discard negative solutions
|
2008-05-12 12:24:52 +00:00
|
|
|
if ( ( num_sols >= 1 ) && ( solution[0] < DBL_EPSILON ) )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
--num_sols;
|
|
|
|
solution[0] = solution[num_sols];
|
|
|
|
}
|
2008-05-12 12:24:52 +00:00
|
|
|
if ( ( num_sols >= 2 ) && ( solution[1] < DBL_EPSILON ) )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
--num_sols;
|
|
|
|
solution[1] = solution[num_sols];
|
|
|
|
}
|
2008-05-12 12:24:52 +00:00
|
|
|
if ( ( num_sols == 3 ) && ( solution[2] < DBL_EPSILON ) )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
--num_sols;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( num_sols == 2 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( solution[0] > solution[1] )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
double tmp = solution[0];
|
|
|
|
solution[0] = solution[1];
|
|
|
|
solution[1] = tmp;
|
|
|
|
}
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
else if ( num_sols == 3 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
// Bubblesort
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( solution[0] > solution[1] )
|
|
|
|
{
|
2008-01-29 21:01:12 +00:00
|
|
|
double tmp = solution[0]; solution[0] = solution[1]; solution[1] = tmp;
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( solution[1] > solution[2] )
|
|
|
|
{
|
2008-01-29 21:01:12 +00:00
|
|
|
double tmp = solution[1]; solution[1] = solution[2]; solution[2] = tmp;
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( solution[0] > solution[1] )
|
|
|
|
{
|
2008-01-29 21:01:12 +00:00
|
|
|
double tmp = solution[0]; solution[0] = solution[1]; solution[1] = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return num_sols;
|
|
|
|
}
|
2010-02-08 13:55:31 +00:00
|
|
|
#endif
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-29 14:23:08 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// w3 is not perfect
|
2009-09-14 16:52:06 +00:00
|
|
|
static void collision_compute_barycentric ( float pv[3], float p1[3], float p2[3], float p3[3], float *w1, float *w2, float *w3 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
double tempV1[3], tempV2[3], tempV4[3];
|
|
|
|
double a,b,c,d,e,f;
|
|
|
|
|
2008-04-08 12:55:35 +00:00
|
|
|
VECSUB ( tempV1, p1, p3 );
|
|
|
|
VECSUB ( tempV2, p2, p3 );
|
|
|
|
VECSUB ( tempV4, pv, p3 );
|
|
|
|
|
|
|
|
a = INPR ( tempV1, tempV1 );
|
|
|
|
b = INPR ( tempV1, tempV2 );
|
|
|
|
c = INPR ( tempV2, tempV2 );
|
|
|
|
e = INPR ( tempV1, tempV4 );
|
|
|
|
f = INPR ( tempV2, tempV4 );
|
|
|
|
|
|
|
|
d = ( a * c - b * b );
|
|
|
|
|
2011-11-11 12:00:08 +00:00
|
|
|
if ( ABS ( d ) < (double)ALMOST_ZERO )
|
2008-04-08 12:55:35 +00:00
|
|
|
{
|
2008-01-29 21:01:12 +00:00
|
|
|
*w1 = *w2 = *w3 = 1.0 / 3.0;
|
|
|
|
return;
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
|
|
|
|
w1[0] = ( float ) ( ( e * c - b * f ) / d );
|
|
|
|
|
|
|
|
if ( w1[0] < 0 )
|
2008-01-29 21:01:12 +00:00
|
|
|
w1[0] = 0;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
|
|
|
w2[0] = ( float ) ( ( f - b * ( double ) w1[0] ) / c );
|
|
|
|
|
|
|
|
if ( w2[0] < 0 )
|
2008-01-29 21:01:12 +00:00
|
|
|
w2[0] = 0;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
w3[0] = 1.0f - w1[0] - w2[0];
|
|
|
|
}
|
|
|
|
|
2008-04-08 12:55:35 +00:00
|
|
|
DO_INLINE void collision_interpolateOnTriangle ( float to[3], float v1[3], float v2[3], float v3[3], double w1, double w2, double w3 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2012-03-23 20:18:09 +00:00
|
|
|
zero_v3(to);
|
|
|
|
VECADDMUL(to, v1, w1);
|
|
|
|
VECADDMUL(to, v2, w2);
|
|
|
|
VECADDMUL(to, v3, w3);
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
|
2011-05-02 03:44:02 +00:00
|
|
|
#ifndef WITH_ELTOPO
|
2011-02-14 17:55:27 +00:00
|
|
|
static int cloth_collision_response_static ( ClothModifierData *clmd, CollisionModifierData *collmd, CollPair *collpair, CollPair *collision_end )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
Cloth *cloth1;
|
|
|
|
float w1, w2, w3, u1, u2, u3;
|
|
|
|
float v1[3], v2[3], relativeVelocity[3];
|
|
|
|
float magrelVel;
|
2008-05-07 20:42:16 +00:00
|
|
|
float epsilon2 = BLI_bvhtree_getepsilon ( collmd->bvhtree );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
cloth1 = clmd->clothObject;
|
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
for ( ; collpair != collision_end; collpair++ )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
// only handle static collisions here
|
|
|
|
if ( collpair->flag & COLLISION_IN_FUTURE )
|
|
|
|
continue;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// compute barycentric coordinates for both collision points
|
2008-04-08 12:55:35 +00:00
|
|
|
collision_compute_barycentric ( collpair->pa,
|
2008-05-26 09:39:32 +00:00
|
|
|
cloth1->verts[collpair->ap1].txold,
|
|
|
|
cloth1->verts[collpair->ap2].txold,
|
|
|
|
cloth1->verts[collpair->ap3].txold,
|
|
|
|
&w1, &w2, &w3 );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// was: txold
|
2008-04-08 12:55:35 +00:00
|
|
|
collision_compute_barycentric ( collpair->pb,
|
2008-05-26 09:39:32 +00:00
|
|
|
collmd->current_x[collpair->bp1].co,
|
|
|
|
collmd->current_x[collpair->bp2].co,
|
|
|
|
collmd->current_x[collpair->bp3].co,
|
|
|
|
&u1, &u2, &u3 );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// Calculate relative "velocity".
|
2008-04-08 12:55:35 +00:00
|
|
|
collision_interpolateOnTriangle ( v1, cloth1->verts[collpair->ap1].tv, cloth1->verts[collpair->ap2].tv, cloth1->verts[collpair->ap3].tv, w1, w2, w3 );
|
|
|
|
|
|
|
|
collision_interpolateOnTriangle ( v2, collmd->current_v[collpair->bp1].co, collmd->current_v[collpair->bp2].co, collmd->current_v[collpair->bp3].co, u1, u2, u3 );
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( relativeVelocity, v2, v1 );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// Calculate the normal component of the relative velocity (actually only the magnitude - the direction is stored in 'normal').
|
2012-03-09 06:04:17 +00:00
|
|
|
magrelVel = dot_v3v3( relativeVelocity, collpair->normal );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// printf("magrelVel: %f\n", magrelVel);
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// Calculate masses of points.
|
2008-02-03 22:37:43 +00:00
|
|
|
// TODO
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// If v_n_mag < 0 the edges are approaching each other.
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( magrelVel > ALMOST_ZERO )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
// Calculate Impulse magnitude to stop all motion in normal direction.
|
2008-02-28 00:01:19 +00:00
|
|
|
float magtangent = 0, repulse = 0, d = 0;
|
2008-02-03 22:37:43 +00:00
|
|
|
double impulse = 0.0;
|
|
|
|
float vrel_t_pre[3];
|
2010-05-25 13:33:59 +00:00
|
|
|
float temp[3], spf;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-02-05 14:11:48 +00:00
|
|
|
// calculate tangential velocity
|
2011-09-12 04:14:12 +00:00
|
|
|
copy_v3_v3 ( temp, collpair->normal );
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl( temp, magrelVel );
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( vrel_t_pre, relativeVelocity, temp );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-02-28 00:01:19 +00:00
|
|
|
// Decrease in magnitude of relative tangential velocity due to coulomb friction
|
2008-04-08 12:55:35 +00:00
|
|
|
// in original formula "magrelVel" should be the "change of relative velocity in normal direction"
|
2012-03-09 06:04:17 +00:00
|
|
|
magtangent = MIN2 ( clmd->coll_parms->friction * 0.01f * magrelVel, sqrtf( dot_v3v3( vrel_t_pre,vrel_t_pre ) ) );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// Apply friction impulse.
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( magtangent > ALMOST_ZERO )
|
|
|
|
{
|
2009-11-10 20:43:45 +00:00
|
|
|
normalize_v3( vrel_t_pre );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2011-11-11 12:00:08 +00:00
|
|
|
impulse = magtangent / ( 1.0f + w1*w1 + w2*w2 + w3*w3 ); // 2.0 *
|
2008-04-08 12:55:35 +00:00
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap1].impulse, vrel_t_pre, w1 * impulse );
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap2].impulse, vrel_t_pre, w2 * impulse );
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap3].impulse, vrel_t_pre, w3 * impulse );
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-02-28 00:01:19 +00:00
|
|
|
// Apply velocity stopping impulse
|
|
|
|
// I_c = m * v_N / 2.0
|
|
|
|
// no 2.0 * magrelVel normally, but looks nicer DG
|
2008-04-08 12:55:35 +00:00
|
|
|
impulse = magrelVel / ( 1.0 + w1*w1 + w2*w2 + w3*w3 );
|
|
|
|
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap1].impulse, collpair->normal, w1 * impulse );
|
2008-01-29 21:01:12 +00:00
|
|
|
cloth1->verts[collpair->ap1].impulse_count++;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap2].impulse, collpair->normal, w2 * impulse );
|
2008-01-29 21:01:12 +00:00
|
|
|
cloth1->verts[collpair->ap2].impulse_count++;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap3].impulse, collpair->normal, w3 * impulse );
|
2008-01-29 21:01:12 +00:00
|
|
|
cloth1->verts[collpair->ap3].impulse_count++;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-02-28 00:01:19 +00:00
|
|
|
// Apply repulse impulse if distance too short
|
|
|
|
// I_r = -min(dt*kd, m(0,1d/dt - v_n))
|
2010-05-25 13:33:59 +00:00
|
|
|
spf = (float)clmd->sim_parms->stepsPerFrame / clmd->sim_parms->timescale;
|
|
|
|
|
2011-11-11 12:00:08 +00:00
|
|
|
d = clmd->coll_parms->epsilon*8.0f/9.0f + epsilon2*8.0f/9.0f - collpair->distance;
|
|
|
|
if ( ( magrelVel < 0.1f*d*spf ) && ( d > ALMOST_ZERO ) )
|
2008-02-28 00:01:19 +00:00
|
|
|
{
|
2011-11-11 12:00:08 +00:00
|
|
|
repulse = MIN2 ( d*1.0f/spf, 0.1f*d*spf - magrelVel );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-02-28 23:12:50 +00:00
|
|
|
// stay on the safe side and clamp repulse
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( impulse > ALMOST_ZERO )
|
|
|
|
repulse = MIN2 ( repulse, 5.0*impulse );
|
|
|
|
repulse = MAX2 ( impulse, repulse );
|
|
|
|
|
2011-11-11 12:00:08 +00:00
|
|
|
impulse = repulse / ( 1.0f + w1*w1 + w2*w2 + w3*w3 ); // original 2.0 / 0.25
|
2008-04-08 12:55:35 +00:00
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap1].impulse, collpair->normal, impulse );
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap2].impulse, collpair->normal, impulse );
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap3].impulse, collpair->normal, impulse );
|
2008-02-28 00:01:19 +00:00
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2011-05-02 03:44:02 +00:00
|
|
|
#endif /* !WITH_ELTOPO */
|
2011-05-01 21:39:13 +00:00
|
|
|
|
2011-05-02 03:44:02 +00:00
|
|
|
#ifdef WITH_ELTOPO
|
2011-05-01 21:39:13 +00:00
|
|
|
typedef struct edgepairkey {
|
|
|
|
int a1, a2, b1, b2;
|
|
|
|
} edgepairkey;
|
|
|
|
|
|
|
|
unsigned int edgepair_hash(void *vkey)
|
|
|
|
{
|
|
|
|
edgepairkey *key = vkey;
|
|
|
|
int keys[4] = {key->a1, key->a2, key->b1, key->b2};
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i=0; i<4; i++) {
|
|
|
|
for (j=0; j<3; j++) {
|
|
|
|
if (keys[j] >= keys[j+1]) {
|
|
|
|
SWAP(int, keys[j], keys[j+1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return keys[0]*101 + keys[1]*72 + keys[2]*53 + keys[3]*34;
|
|
|
|
}
|
|
|
|
|
|
|
|
int edgepair_cmp(const void *va, const void *vb)
|
|
|
|
{
|
|
|
|
edgepairkey *a = va, *b = vb;
|
|
|
|
int keysa[4] = {a->a1, a->a2, a->b1, a->b2};
|
|
|
|
int keysb[4] = {b->a1, b->a2, b->b1, b->b2};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<4; i++) {
|
|
|
|
int j, ok=0;
|
|
|
|
for (j=0; j<4; j++) {
|
|
|
|
if (keysa[i] == keysa[j]) {
|
|
|
|
ok = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ok)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void get_edgepairkey(edgepairkey *key, int a1, int a2, int b1, int b2)
|
|
|
|
{
|
|
|
|
key->a1 = a1;
|
|
|
|
key->a2 = a2;
|
|
|
|
key->b1 = b1;
|
|
|
|
key->b2 = b2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*an immense amount of duplication goes on here. . .a major performance hit, I'm sure*/
|
|
|
|
static CollPair* cloth_edge_collision ( ModifierData *md1, ModifierData *md2,
|
|
|
|
BVHTreeOverlap *overlap, CollPair *collpair,
|
|
|
|
GHash *visithash, MemArena *arena)
|
|
|
|
{
|
|
|
|
ClothModifierData *clmd = ( ClothModifierData * ) md1;
|
|
|
|
CollisionModifierData *collmd = ( CollisionModifierData * ) md2;
|
|
|
|
MFace *face1=NULL, *face2 = NULL;
|
|
|
|
ClothVertex *verts1 = clmd->clothObject->verts;
|
|
|
|
double distance = 0;
|
|
|
|
edgepairkey *key, tstkey;
|
|
|
|
float epsilon1 = clmd->coll_parms->epsilon;
|
|
|
|
float epsilon2 = BLI_bvhtree_getepsilon ( collmd->bvhtree );
|
|
|
|
float no[3], uv[3], t, relnor;
|
|
|
|
int i, i1, i2, i3, i4, i5, i6;
|
|
|
|
Cloth *cloth = clmd->clothObject;
|
|
|
|
float n1[3], n2[3], off[3], v1[2][3], v2[2][3], v3[2][3], v4[2][3], v5[2][3], v6[2][3];
|
|
|
|
void **verts[] = {v1, v2, v3, v4, v5, v6};
|
|
|
|
int j, ret, bp1, bp2, bp3, ap1, ap2, ap3, table[6];
|
|
|
|
|
|
|
|
face1 = & ( clmd->clothObject->mfaces[overlap->indexA] );
|
|
|
|
face2 = & ( collmd->mfaces[overlap->indexB] );
|
|
|
|
|
|
|
|
// check all 4 possible collisions
|
|
|
|
for ( i = 0; i < 4; i++ )
|
|
|
|
{
|
|
|
|
if ( i == 0 )
|
|
|
|
{
|
|
|
|
// fill faceA
|
|
|
|
ap1 = face1->v1;
|
|
|
|
ap2 = face1->v2;
|
|
|
|
ap3 = face1->v3;
|
|
|
|
|
|
|
|
// fill faceB
|
|
|
|
bp1 = face2->v1;
|
|
|
|
bp2 = face2->v2;
|
|
|
|
bp3 = face2->v3;
|
|
|
|
}
|
|
|
|
else if ( i == 1 )
|
|
|
|
{
|
|
|
|
if ( face1->v4 )
|
|
|
|
{
|
|
|
|
// fill faceA
|
|
|
|
ap1 = face1->v1;
|
|
|
|
ap2 = face1->v3;
|
|
|
|
ap3 = face1->v4;
|
|
|
|
|
|
|
|
// fill faceB
|
|
|
|
bp1 = face2->v1;
|
|
|
|
bp2 = face2->v2;
|
|
|
|
bp3 = face2->v3;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( i == 2 )
|
|
|
|
{
|
|
|
|
if ( face2->v4 )
|
|
|
|
{
|
|
|
|
// fill faceA
|
|
|
|
ap1 = face1->v1;
|
|
|
|
ap2 = face1->v2;
|
|
|
|
ap3 = face1->v3;
|
|
|
|
|
|
|
|
// fill faceB
|
|
|
|
bp1 = face2->v1;
|
|
|
|
bp2 = face2->v3;
|
|
|
|
bp3 = face2->v4;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( i == 3 )
|
|
|
|
{
|
|
|
|
if ( face1->v4 && face2->v4 )
|
|
|
|
{
|
|
|
|
// fill faceA
|
|
|
|
ap1 = face1->v1;
|
|
|
|
ap2 = face1->v3;
|
|
|
|
ap3 = face1->v4;
|
|
|
|
|
|
|
|
// fill faceB
|
|
|
|
bp1 = face2->v1;
|
|
|
|
bp2 = face2->v3;
|
|
|
|
bp3 = face2->v4;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
copy_v3_v3(v1[0], cloth->verts[ap1].txold);
|
|
|
|
copy_v3_v3(v1[1], cloth->verts[ap1].tx);
|
|
|
|
copy_v3_v3(v2[0], cloth->verts[ap2].txold);
|
|
|
|
copy_v3_v3(v2[1], cloth->verts[ap2].tx);
|
|
|
|
copy_v3_v3(v3[0], cloth->verts[ap3].txold);
|
|
|
|
copy_v3_v3(v3[1], cloth->verts[ap3].tx);
|
|
|
|
|
|
|
|
copy_v3_v3(v4[0], collmd->current_x[bp1].co);
|
|
|
|
copy_v3_v3(v4[1], collmd->current_xnew[bp1].co);
|
|
|
|
copy_v3_v3(v5[0], collmd->current_x[bp2].co);
|
|
|
|
copy_v3_v3(v5[1], collmd->current_xnew[bp2].co);
|
|
|
|
copy_v3_v3(v6[0], collmd->current_x[bp3].co);
|
|
|
|
copy_v3_v3(v6[1], collmd->current_xnew[bp3].co);
|
|
|
|
|
|
|
|
normal_tri_v3(n2, v4[1], v5[1], v6[1]);
|
|
|
|
|
|
|
|
/*offset new positions a bit, to account for margins*/
|
|
|
|
i1 = ap1; i2 = ap2; i3 = ap3;
|
|
|
|
i4 = bp1; i5 = bp2; i6 = bp3;
|
|
|
|
|
|
|
|
for (j=0; j<3; j++) {
|
|
|
|
int collp1, collp2, k, j2 = (j+1)%3;
|
|
|
|
|
|
|
|
table[0] = ap1; table[1] = ap2; table[2] = ap3;
|
|
|
|
table[3] = bp1; table[4] = bp2; table[5] = bp3;
|
|
|
|
for (k=0; k<3; k++) {
|
|
|
|
float p1[3], p2[3];
|
|
|
|
int k2 = (k+1)%3;
|
|
|
|
|
|
|
|
get_edgepairkey(&tstkey, table[j], table[j2], table[k+3], table[k2+3]);
|
|
|
|
//if (BLI_ghash_haskey(visithash, &tstkey))
|
|
|
|
// continue;
|
|
|
|
|
|
|
|
key = BLI_memarena_alloc(arena, sizeof(edgepairkey));
|
|
|
|
*key = tstkey;
|
|
|
|
BLI_ghash_insert(visithash, key, NULL);
|
|
|
|
|
|
|
|
sub_v3_v3v3(p1, verts[j], verts[j2]);
|
|
|
|
sub_v3_v3v3(p2, verts[k+3], verts[k2+3]);
|
|
|
|
|
|
|
|
cross_v3_v3v3(off, p1, p2);
|
|
|
|
normalize_v3(off);
|
|
|
|
|
|
|
|
if (dot_v3v3(n2, off) < 0.0)
|
|
|
|
negate_v3(off);
|
|
|
|
|
|
|
|
mul_v3_fl(off, epsilon1 + epsilon2 + ALMOST_ZERO);
|
|
|
|
copy_v3_v3(p1, verts[k+3]);
|
|
|
|
copy_v3_v3(p2, verts[k2+3]);
|
|
|
|
add_v3_v3(p1, off);
|
|
|
|
add_v3_v3(p2, off);
|
|
|
|
|
|
|
|
ret = eltopo_line_line_moving_isect_v3v3_f(verts[j], table[j], verts[j2], table[j2],
|
|
|
|
p1, table[k+3], p2, table[k2+3],
|
|
|
|
no, uv, &t, &relnor);
|
|
|
|
/*cloth vert versus coll face*/
|
|
|
|
if (ret) {
|
|
|
|
collpair->ap1 = table[j]; collpair->ap2 = table[j2];
|
|
|
|
collpair->bp1 = table[k+3]; collpair->bp2 = table[k2+3];
|
|
|
|
|
|
|
|
/*I'm not sure if this is correct, but hopefully it's
|
|
|
|
better then simply ignoring back edges*/
|
|
|
|
if (dot_v3v3(n2, no) < 0.0) {
|
|
|
|
negate_v3(no);
|
|
|
|
}
|
|
|
|
|
|
|
|
copy_v3_v3(collpair->normal, no);
|
|
|
|
mul_v3_v3fl(collpair->vector, collpair->normal, relnor);
|
|
|
|
collpair->distance = relnor;
|
|
|
|
collpair->time = t;
|
|
|
|
|
|
|
|
copy_v2_v2(collpair->bary, uv);
|
|
|
|
|
|
|
|
collpair->flag = COLLISION_IS_EDGES;
|
|
|
|
collpair++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return collpair;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cloth_edge_collision_response_moving ( ClothModifierData *clmd, CollisionModifierData *collmd, CollPair *collpair, CollPair *collision_end )
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
Cloth *cloth1;
|
|
|
|
float w1, w2;
|
|
|
|
float v1[3], v2[3], relativeVelocity[3];
|
|
|
|
float magrelVel, pimpulse[3];
|
|
|
|
|
|
|
|
cloth1 = clmd->clothObject;
|
|
|
|
|
|
|
|
for ( ; collpair != collision_end; collpair++ )
|
|
|
|
{
|
|
|
|
if (!(collpair->flag & COLLISION_IS_EDGES))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// was: txold
|
|
|
|
w1 = collpair->bary[0]; w2 = collpair->bary[1];
|
|
|
|
|
|
|
|
// Calculate relative "velocity".
|
|
|
|
VECADDFAC(v1, cloth1->verts[collpair->ap1].tv, cloth1->verts[collpair->ap2].tv, w1);
|
|
|
|
VECADDFAC(v2, collmd->current_v[collpair->bp1].co, collmd->current_v[collpair->bp2].co, w2);
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( relativeVelocity, v2, v1);
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// Calculate the normal component of the relative velocity (actually only the magnitude - the direction is stored in 'normal').
|
2012-03-09 06:04:17 +00:00
|
|
|
magrelVel = dot_v3v3 ( relativeVelocity, collpair->normal );
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// If v_n_mag < 0 the edges are approaching each other.
|
|
|
|
if ( magrelVel > ALMOST_ZERO )
|
|
|
|
{
|
|
|
|
// Calculate Impulse magnitude to stop all motion in normal direction.
|
|
|
|
float magtangent = 0, repulse = 0, d = 0;
|
|
|
|
double impulse = 0.0;
|
|
|
|
float vrel_t_pre[3];
|
|
|
|
float temp[3], spf;
|
|
|
|
|
|
|
|
zero_v3(pimpulse);
|
|
|
|
|
|
|
|
// calculate tangential velocity
|
2012-03-09 06:04:17 +00:00
|
|
|
copy_v3_v3 ( temp, collpair->normal );
|
2011-05-01 21:39:13 +00:00
|
|
|
mul_v3_fl( temp, magrelVel );
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( vrel_t_pre, relativeVelocity, temp );
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// Decrease in magnitude of relative tangential velocity due to coulomb friction
|
|
|
|
// in original formula "magrelVel" should be the "change of relative velocity in normal direction"
|
2012-03-09 06:04:17 +00:00
|
|
|
magtangent = MIN2 ( clmd->coll_parms->friction * 0.01 * magrelVel,sqrt ( dot_v3v3 ( vrel_t_pre,vrel_t_pre ) ) );
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// Apply friction impulse.
|
|
|
|
if ( magtangent > ALMOST_ZERO )
|
|
|
|
{
|
|
|
|
normalize_v3( vrel_t_pre );
|
|
|
|
|
|
|
|
impulse = magtangent;
|
|
|
|
VECADDMUL ( pimpulse, vrel_t_pre, impulse);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply velocity stopping impulse
|
|
|
|
// I_c = m * v_N / 2.0
|
|
|
|
// no 2.0 * magrelVel normally, but looks nicer DG
|
|
|
|
impulse = magrelVel;
|
|
|
|
|
|
|
|
mul_v3_fl(collpair->normal, 0.5);
|
|
|
|
VECADDMUL ( pimpulse, collpair->normal, impulse);
|
|
|
|
|
|
|
|
// Apply repulse impulse if distance too short
|
|
|
|
// I_r = -min(dt*kd, m(0,1d/dt - v_n))
|
|
|
|
spf = (float)clmd->sim_parms->stepsPerFrame / clmd->sim_parms->timescale;
|
|
|
|
|
|
|
|
d = collpair->distance;
|
|
|
|
if ( ( magrelVel < 0.1*d*spf && ( d > ALMOST_ZERO ) ) )
|
|
|
|
{
|
|
|
|
repulse = MIN2 ( d*1.0/spf, 0.1*d*spf - magrelVel );
|
|
|
|
|
|
|
|
// stay on the safe side and clamp repulse
|
|
|
|
if ( impulse > ALMOST_ZERO )
|
|
|
|
repulse = MIN2 ( repulse, 5.0*impulse );
|
|
|
|
repulse = MAX2 ( impulse, repulse );
|
|
|
|
|
|
|
|
impulse = repulse / ( 5.0 ); // original 2.0 / 0.25
|
|
|
|
VECADDMUL ( pimpulse, collpair->normal, impulse);
|
|
|
|
}
|
|
|
|
|
|
|
|
w2 = 1.0f-w1;
|
|
|
|
if (w1 < 0.5)
|
|
|
|
w1 *= 2.0;
|
|
|
|
else
|
|
|
|
w2 *= 2.0;
|
|
|
|
|
|
|
|
VECADDFAC(cloth1->verts[collpair->ap1].impulse, cloth1->verts[collpair->ap1].impulse, pimpulse, w1*2.0);
|
|
|
|
VECADDFAC(cloth1->verts[collpair->ap2].impulse, cloth1->verts[collpair->ap2].impulse, pimpulse, w2*2.0);
|
|
|
|
|
|
|
|
cloth1->verts[collpair->ap1].impulse_count++;
|
|
|
|
cloth1->verts[collpair->ap2].impulse_count++;
|
|
|
|
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cloth_collision_response_moving ( ClothModifierData *clmd, CollisionModifierData *collmd, CollPair *collpair, CollPair *collision_end )
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
Cloth *cloth1;
|
|
|
|
float w1, w2, w3, u1, u2, u3;
|
|
|
|
float v1[3], v2[3], relativeVelocity[3];
|
|
|
|
float magrelVel;
|
|
|
|
float epsilon2 = BLI_bvhtree_getepsilon ( collmd->bvhtree );
|
|
|
|
|
|
|
|
cloth1 = clmd->clothObject;
|
|
|
|
|
|
|
|
for ( ; collpair != collision_end; collpair++ )
|
|
|
|
{
|
|
|
|
if (collpair->flag & COLLISION_IS_EDGES)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( collpair->flag & COLLISION_USE_COLLFACE ) {
|
|
|
|
// was: txold
|
|
|
|
w1 = collpair->bary[0]; w2 = collpair->bary[1]; w3 = collpair->bary[2];
|
|
|
|
|
|
|
|
// Calculate relative "velocity".
|
|
|
|
collision_interpolateOnTriangle ( v1, collmd->current_v[collpair->bp1].co, collmd->current_v[collpair->bp2].co, collmd->current_v[collpair->bp3].co, w1, w2, w3);
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( relativeVelocity, v1, cloth1->verts[collpair->collp].tv);
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// Calculate the normal component of the relative velocity (actually only the magnitude - the direction is stored in 'normal').
|
2012-03-09 06:04:17 +00:00
|
|
|
magrelVel = dot_v3v3 ( relativeVelocity, collpair->normal );
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// If v_n_mag < 0 the edges are approaching each other.
|
|
|
|
if ( magrelVel > ALMOST_ZERO )
|
|
|
|
{
|
|
|
|
// Calculate Impulse magnitude to stop all motion in normal direction.
|
|
|
|
float magtangent = 0, repulse = 0, d = 0;
|
|
|
|
double impulse = 0.0;
|
|
|
|
float vrel_t_pre[3];
|
|
|
|
float temp[3], spf;
|
|
|
|
|
|
|
|
// calculate tangential velocity
|
2012-03-09 06:04:17 +00:00
|
|
|
copy_v3_v3 ( temp, collpair->normal );
|
2011-05-01 21:39:13 +00:00
|
|
|
mul_v3_fl( temp, magrelVel );
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( vrel_t_pre, relativeVelocity, temp );
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// Decrease in magnitude of relative tangential velocity due to coulomb friction
|
|
|
|
// in original formula "magrelVel" should be the "change of relative velocity in normal direction"
|
2012-03-09 06:04:17 +00:00
|
|
|
magtangent = MIN2 ( clmd->coll_parms->friction * 0.01 * magrelVel,sqrt ( dot_v3v3 ( vrel_t_pre,vrel_t_pre ) ) );
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// Apply friction impulse.
|
|
|
|
if ( magtangent > ALMOST_ZERO )
|
|
|
|
{
|
|
|
|
normalize_v3( vrel_t_pre );
|
|
|
|
|
|
|
|
impulse = magtangent; // 2.0 *
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->collp].impulse, vrel_t_pre, impulse);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply velocity stopping impulse
|
|
|
|
// I_c = m * v_N / 2.0
|
|
|
|
// no 2.0 * magrelVel normally, but looks nicer DG
|
|
|
|
impulse = magrelVel/2.0;
|
|
|
|
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->collp].impulse, collpair->normal, impulse);
|
|
|
|
cloth1->verts[collpair->collp].impulse_count++;
|
|
|
|
|
|
|
|
// Apply repulse impulse if distance too short
|
|
|
|
// I_r = -min(dt*kd, m(0,1d/dt - v_n))
|
|
|
|
spf = (float)clmd->sim_parms->stepsPerFrame / clmd->sim_parms->timescale;
|
|
|
|
|
|
|
|
d = -collpair->distance;
|
|
|
|
if ( ( magrelVel < 0.1*d*spf ) && ( d > ALMOST_ZERO ) )
|
|
|
|
{
|
|
|
|
repulse = MIN2 ( d*1.0/spf, 0.1*d*spf - magrelVel );
|
|
|
|
|
|
|
|
// stay on the safe side and clamp repulse
|
|
|
|
if ( impulse > ALMOST_ZERO )
|
|
|
|
repulse = MIN2 ( repulse, 5.0*impulse );
|
|
|
|
repulse = MAX2 ( impulse, repulse );
|
|
|
|
|
|
|
|
impulse = repulse / ( 5.0 ); // original 2.0 / 0.25
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->collp].impulse, collpair->normal, impulse);
|
|
|
|
}
|
|
|
|
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
w1 = collpair->bary[0]; w2 = collpair->bary[1]; w3 = collpair->bary[2];
|
|
|
|
|
|
|
|
// Calculate relative "velocity".
|
|
|
|
collision_interpolateOnTriangle ( v1, cloth1->verts[collpair->ap1].tv, cloth1->verts[collpair->ap2].tv, cloth1->verts[collpair->ap3].tv, w1, w2, w3 );
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( relativeVelocity, collmd->current_v[collpair->collp].co, v1);
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// Calculate the normal component of the relative velocity (actually only the magnitude - the direction is stored in 'normal').
|
2012-03-09 06:04:17 +00:00
|
|
|
magrelVel = dot_v3v3 ( relativeVelocity, collpair->normal );
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// If v_n_mag < 0 the edges are approaching each other.
|
|
|
|
if ( magrelVel > ALMOST_ZERO )
|
|
|
|
{
|
|
|
|
// Calculate Impulse magnitude to stop all motion in normal direction.
|
|
|
|
float magtangent = 0, repulse = 0, d = 0;
|
|
|
|
double impulse = 0.0;
|
|
|
|
float vrel_t_pre[3], pimpulse[3] = {0.0f, 0.0f, 0.0f};
|
|
|
|
float temp[3], spf;
|
|
|
|
|
|
|
|
// calculate tangential velocity
|
2012-03-09 06:04:17 +00:00
|
|
|
copy_v3_v3 ( temp, collpair->normal );
|
2011-05-01 21:39:13 +00:00
|
|
|
mul_v3_fl( temp, magrelVel );
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( vrel_t_pre, relativeVelocity, temp );
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// Decrease in magnitude of relative tangential velocity due to coulomb friction
|
|
|
|
// in original formula "magrelVel" should be the "change of relative velocity in normal direction"
|
2012-03-09 06:04:17 +00:00
|
|
|
magtangent = MIN2 ( clmd->coll_parms->friction * 0.01 * magrelVel,sqrt ( dot_v3v3 ( vrel_t_pre,vrel_t_pre ) ) );
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
// Apply friction impulse.
|
|
|
|
if ( magtangent > ALMOST_ZERO )
|
|
|
|
{
|
|
|
|
normalize_v3( vrel_t_pre );
|
|
|
|
|
|
|
|
impulse = magtangent; // 2.0 *
|
|
|
|
VECADDMUL ( pimpulse, vrel_t_pre, impulse);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply velocity stopping impulse
|
|
|
|
// I_c = m * v_N / 2.0
|
|
|
|
// no 2.0 * magrelVel normally, but looks nicer DG
|
|
|
|
impulse = magrelVel/2.0;
|
|
|
|
|
|
|
|
VECADDMUL ( pimpulse, collpair->normal, impulse);
|
|
|
|
|
|
|
|
// Apply repulse impulse if distance too short
|
|
|
|
// I_r = -min(dt*kd, m(0,1d/dt - v_n))
|
|
|
|
spf = (float)clmd->sim_parms->stepsPerFrame / clmd->sim_parms->timescale;
|
|
|
|
|
|
|
|
d = -collpair->distance;
|
|
|
|
if ( ( magrelVel < 0.1*d*spf ) && ( d > ALMOST_ZERO ) )
|
|
|
|
{
|
|
|
|
repulse = MIN2 ( d*1.0/spf, 0.1*d*spf - magrelVel );
|
|
|
|
|
|
|
|
// stay on the safe side and clamp repulse
|
|
|
|
if ( impulse > ALMOST_ZERO )
|
|
|
|
repulse = MIN2 ( repulse, 5.0*impulse );
|
|
|
|
repulse = MAX2 ( impulse, repulse );
|
|
|
|
|
|
|
|
impulse = repulse / ( 2.0 ); // original 2.0 / 0.25
|
|
|
|
VECADDMUL ( pimpulse, collpair->normal, impulse);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (w1 < 0.5) w1 *= 2.0;
|
|
|
|
if (w2 < 0.5) w2 *= 2.0;
|
|
|
|
if (w3 < 0.5) w3 *= 2.0;
|
|
|
|
|
|
|
|
VECADDMUL(cloth1->verts[collpair->ap1].impulse, pimpulse, w1*2.0);
|
|
|
|
VECADDMUL(cloth1->verts[collpair->ap2].impulse, pimpulse, w2*2.0);
|
2011-08-31 01:07:55 +00:00
|
|
|
VECADDMUL(cloth1->verts[collpair->ap3].impulse, pimpulse, w3*2.0);
|
2011-05-01 21:39:13 +00:00
|
|
|
cloth1->verts[collpair->ap1].impulse_count++;
|
|
|
|
cloth1->verts[collpair->ap2].impulse_count++;
|
|
|
|
cloth1->verts[collpair->ap3].impulse_count++;
|
|
|
|
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct tripairkey {
|
|
|
|
int p, a1, a2, a3;
|
|
|
|
} tripairkey;
|
|
|
|
|
|
|
|
unsigned int tripair_hash(void *vkey)
|
|
|
|
{
|
|
|
|
tripairkey *key = vkey;
|
|
|
|
int keys[4] = {key->p, key->a1, key->a2, key->a3};
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i=0; i<4; i++) {
|
|
|
|
for (j=0; j<3; j++) {
|
|
|
|
if (keys[j] >= keys[j+1]) {
|
|
|
|
SWAP(int, keys[j], keys[j+1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return keys[0]*101 + keys[1]*72 + keys[2]*53 + keys[3]*34;
|
|
|
|
}
|
|
|
|
|
|
|
|
int tripair_cmp(const void *va, const void *vb)
|
|
|
|
{
|
|
|
|
tripairkey *a = va, *b = vb;
|
|
|
|
int keysa[4] = {a->p, a->a1, a->a2, a->a3};
|
|
|
|
int keysb[4] = {b->p, b->a1, b->a2, b->a3};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<4; i++) {
|
|
|
|
int j, ok=0;
|
|
|
|
for (j=0; j<4; j++) {
|
|
|
|
if (keysa[i] == keysa[j]) {
|
|
|
|
ok = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ok)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void get_tripairkey(tripairkey *key, int p, int a1, int a2, int a3)
|
|
|
|
{
|
|
|
|
key->a1 = a1;
|
|
|
|
key->a2 = a2;
|
|
|
|
key->a3 = a3;
|
|
|
|
key->p = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int checkvisit(MemArena *arena, GHash *gh, int p, int a1, int a2, int a3)
|
|
|
|
{
|
|
|
|
tripairkey key, *key2;
|
|
|
|
|
|
|
|
get_tripairkey(&key, p, a1, a2, a3);
|
|
|
|
if (BLI_ghash_haskey(gh, &key))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
key2 = BLI_memarena_alloc(arena, sizeof(*key2));
|
|
|
|
*key2 = key;
|
|
|
|
BLI_ghash_insert(gh, key2, NULL);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cloth_point_tri_moving_v3v3_f(float v1[2][3], int i1, float v2[2][3], int i2,
|
|
|
|
float v3[2][3], int i3, float v4[2][3], int i4,
|
|
|
|
float normal[3], float bary[3], float *t,
|
|
|
|
float *relnor, GHash *gh, MemArena *arena)
|
|
|
|
{
|
|
|
|
if (checkvisit(arena, gh, i1, i2, i3, i4))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return eltopo_point_tri_moving_v3v3_f(v1, i1, v2, i2, v3, i3, v4, i4, normal, bary, t, relnor);
|
|
|
|
}
|
|
|
|
|
|
|
|
static CollPair* cloth_collision ( ModifierData *md1, ModifierData *md2, BVHTreeOverlap *overlap,
|
|
|
|
CollPair *collpair, double dt, GHash *gh, MemArena *arena)
|
|
|
|
{
|
|
|
|
ClothModifierData *clmd = ( ClothModifierData * ) md1;
|
|
|
|
CollisionModifierData *collmd = ( CollisionModifierData * ) md2;
|
|
|
|
MFace *face1=NULL, *face2 = NULL;
|
|
|
|
ClothVertex *verts1 = clmd->clothObject->verts;
|
|
|
|
double distance = 0;
|
|
|
|
float epsilon1 = clmd->coll_parms->epsilon;
|
|
|
|
float epsilon2 = BLI_bvhtree_getepsilon ( collmd->bvhtree );
|
|
|
|
float no[3], uv[3], t, relnor;
|
|
|
|
int i, i1, i2, i3, i4, i5, i6;
|
|
|
|
Cloth *cloth = clmd->clothObject;
|
|
|
|
float n1[3], sdis, p[3], l, n2[3], off[3], v1[2][3], v2[2][3], v3[2][3], v4[2][3], v5[2][3], v6[2][3];
|
|
|
|
int j, ret, bp1, bp2, bp3, ap1, ap2, ap3;
|
|
|
|
|
|
|
|
face1 = & ( clmd->clothObject->mfaces[overlap->indexA] );
|
|
|
|
face2 = & ( collmd->mfaces[overlap->indexB] );
|
|
|
|
|
|
|
|
// check all 4 possible collisions
|
|
|
|
for ( i = 0; i < 4; i++ )
|
|
|
|
{
|
|
|
|
if ( i == 0 )
|
|
|
|
{
|
|
|
|
// fill faceA
|
|
|
|
ap1 = face1->v1;
|
|
|
|
ap2 = face1->v2;
|
|
|
|
ap3 = face1->v3;
|
|
|
|
|
|
|
|
// fill faceB
|
|
|
|
bp1 = face2->v1;
|
|
|
|
bp2 = face2->v2;
|
|
|
|
bp3 = face2->v3;
|
|
|
|
}
|
|
|
|
else if ( i == 1 )
|
|
|
|
{
|
|
|
|
if ( face1->v4 )
|
|
|
|
{
|
|
|
|
// fill faceA
|
|
|
|
ap1 = face1->v1;
|
|
|
|
ap2 = face1->v3;
|
|
|
|
ap3 = face1->v4;
|
|
|
|
|
|
|
|
// fill faceB
|
|
|
|
bp1 = face2->v1;
|
|
|
|
bp2 = face2->v2;
|
|
|
|
bp3 = face2->v3;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( i == 2 )
|
|
|
|
{
|
|
|
|
if ( face2->v4 )
|
|
|
|
{
|
|
|
|
// fill faceA
|
|
|
|
ap1 = face1->v1;
|
|
|
|
ap2 = face1->v2;
|
|
|
|
ap3 = face1->v3;
|
|
|
|
|
|
|
|
// fill faceB
|
|
|
|
bp1 = face2->v1;
|
|
|
|
bp2 = face2->v3;
|
|
|
|
bp3 = face2->v4;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( i == 3 )
|
|
|
|
{
|
|
|
|
if ( face1->v4 && face2->v4 )
|
|
|
|
{
|
|
|
|
// fill faceA
|
|
|
|
ap1 = face1->v1;
|
|
|
|
ap2 = face1->v3;
|
|
|
|
ap3 = face1->v4;
|
|
|
|
|
|
|
|
// fill faceB
|
|
|
|
bp1 = face2->v1;
|
|
|
|
bp2 = face2->v3;
|
|
|
|
bp3 = face2->v4;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
copy_v3_v3(v1[0], cloth->verts[ap1].txold);
|
|
|
|
copy_v3_v3(v1[1], cloth->verts[ap1].tx);
|
|
|
|
copy_v3_v3(v2[0], cloth->verts[ap2].txold);
|
|
|
|
copy_v3_v3(v2[1], cloth->verts[ap2].tx);
|
|
|
|
copy_v3_v3(v3[0], cloth->verts[ap3].txold);
|
|
|
|
copy_v3_v3(v3[1], cloth->verts[ap3].tx);
|
|
|
|
|
|
|
|
copy_v3_v3(v4[0], collmd->current_x[bp1].co);
|
|
|
|
copy_v3_v3(v4[1], collmd->current_xnew[bp1].co);
|
|
|
|
copy_v3_v3(v5[0], collmd->current_x[bp2].co);
|
|
|
|
copy_v3_v3(v5[1], collmd->current_xnew[bp2].co);
|
|
|
|
copy_v3_v3(v6[0], collmd->current_x[bp3].co);
|
|
|
|
copy_v3_v3(v6[1], collmd->current_xnew[bp3].co);
|
|
|
|
|
|
|
|
normal_tri_v3(n2, v4[1], v5[1], v6[1]);
|
|
|
|
|
|
|
|
sdis = clmd->coll_parms->distance_repel + epsilon2 + FLT_EPSILON;
|
|
|
|
|
|
|
|
/*apply a repulsion force, to help the solver along*/
|
|
|
|
copy_v3_v3(off, n2);
|
|
|
|
negate_v3(off);
|
|
|
|
if (isect_ray_plane_v3(v1[1], off, v4[1], v5[1], v6[1], &l, 0)) {
|
|
|
|
if (l >= 0.0 && l < sdis) {
|
|
|
|
mul_v3_fl(off, (l-sdis)*cloth->verts[ap1].mass*dt*clmd->coll_parms->repel_force*0.1);
|
|
|
|
|
|
|
|
add_v3_v3(cloth->verts[ap1].tv, off);
|
|
|
|
add_v3_v3(cloth->verts[ap2].tv, off);
|
|
|
|
add_v3_v3(cloth->verts[ap3].tv, off);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*offset new positions a bit, to account for margins*/
|
|
|
|
copy_v3_v3(off, n2);
|
|
|
|
mul_v3_fl(off, epsilon1 + epsilon2 + ALMOST_ZERO);
|
|
|
|
add_v3_v3(v4[1], off); add_v3_v3(v5[1], off); add_v3_v3(v6[1], off);
|
|
|
|
|
|
|
|
i1 = ap1; i2 = ap2; i3 = ap3;
|
|
|
|
i4 = bp1+cloth->numverts; i5 = bp2+cloth->numverts; i6 = bp3+cloth->numverts;
|
|
|
|
|
|
|
|
for (j=0; j<6; j++) {
|
|
|
|
int collp;
|
|
|
|
|
|
|
|
switch (j) {
|
|
|
|
case 0:
|
|
|
|
ret = cloth_point_tri_moving_v3v3_f(v1, i1, v4, i4, v5, i5, v6, i6, no, uv, &t, &relnor, gh, arena);
|
|
|
|
collp = ap1;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
collp = ap2;
|
|
|
|
ret = cloth_point_tri_moving_v3v3_f(v2, i2, v4, i4, v5, i5, v6, i6, no, uv, &t, &relnor, gh, arena);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
collp = ap3;
|
|
|
|
ret = cloth_point_tri_moving_v3v3_f(v3, i3, v4, i4, v5, i5, v6, i6, no, uv, &t, &relnor, gh, arena);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
collp = bp1;
|
|
|
|
ret = cloth_point_tri_moving_v3v3_f(v4, i4, v1, i1, v2, i2, v3, i3, no, uv, &t, &relnor, gh, arena);
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
collp = bp2;
|
|
|
|
ret = cloth_point_tri_moving_v3v3_f(v5, i5, v1, i1, v2, i2, v3, i3, no, uv, &t, &relnor, gh, arena);
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
collp = bp3;
|
|
|
|
ret = cloth_point_tri_moving_v3v3_f(v6, i6, v1, i1, v2, i2, v3, i3, no, uv, &t, &relnor, gh, arena);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*cloth vert versus coll face*/
|
|
|
|
if (ret && j < 3) {
|
|
|
|
collpair->bp1 = bp1; collpair->bp2 = bp2; collpair->bp3 = bp3;
|
|
|
|
collpair->collp = collp;
|
|
|
|
|
|
|
|
copy_v3_v3(collpair->normal, no);
|
|
|
|
mul_v3_v3fl(collpair->vector, collpair->normal, relnor);
|
|
|
|
collpair->distance = relnor;
|
|
|
|
collpair->time = t;
|
|
|
|
|
|
|
|
copy_v3_v3(collpair->bary, uv);
|
|
|
|
|
|
|
|
collpair->flag = COLLISION_USE_COLLFACE;
|
|
|
|
collpair++;
|
|
|
|
} else if (ret && j >= 3) { /*coll vert versus cloth face*/
|
|
|
|
collpair->ap1 = ap1; collpair->ap2 = ap2; collpair->ap3 = ap3;
|
|
|
|
collpair->collp = collp;
|
|
|
|
|
|
|
|
copy_v3_v3(collpair->normal, no);
|
|
|
|
mul_v3_v3fl(collpair->vector, collpair->normal, relnor);
|
|
|
|
collpair->distance = relnor;
|
|
|
|
collpair->time = t;
|
|
|
|
|
|
|
|
copy_v3_v3(collpair->bary, uv);
|
|
|
|
|
|
|
|
collpair->flag = 0;
|
|
|
|
collpair++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return collpair;
|
|
|
|
}
|
|
|
|
|
2011-09-28 05:53:40 +00:00
|
|
|
static void machine_epsilon_offset(Cloth *cloth)
|
|
|
|
{
|
2011-05-01 21:39:13 +00:00
|
|
|
ClothVertex *cv;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
cv = cloth->verts;
|
|
|
|
for (i=0; i<cloth->numverts; i++, cv++) {
|
2012-03-01 12:20:18 +00:00
|
|
|
/*aggrevatingly enough, it's necessary to offset the coordinates
|
2011-05-01 21:39:13 +00:00
|
|
|
by a multiple of the 32-bit floating point epsilon when switching
|
|
|
|
into doubles*/
|
|
|
|
#define RNDSIGN (float)(-1*(BLI_rand()%2==0)|1)
|
|
|
|
for (j=0; j<3; j++) {
|
|
|
|
cv->tx[j] += FLT_EPSILON*30.0f*RNDSIGN;
|
|
|
|
cv->txold[j] += FLT_EPSILON*30.0f*RNDSIGN;
|
|
|
|
cv->tv[j] += FLT_EPSILON*30.0f*RNDSIGN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-02 03:44:02 +00:00
|
|
|
#else /* !WITH_ELTOPO */
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2010-07-20 10:41:08 +00:00
|
|
|
//Determines collisions on overlap, collisions are written to collpair[i] and collision+number_collision_found is returned
|
2011-05-01 21:39:13 +00:00
|
|
|
static CollPair* cloth_collision ( ModifierData *md1, ModifierData *md2,
|
|
|
|
BVHTreeOverlap *overlap, CollPair *collpair, float dt )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-04-08 12:55:35 +00:00
|
|
|
ClothModifierData *clmd = ( ClothModifierData * ) md1;
|
|
|
|
CollisionModifierData *collmd = ( CollisionModifierData * ) md2;
|
2011-05-01 21:39:13 +00:00
|
|
|
Cloth *cloth = clmd->clothObject;
|
2008-05-07 20:42:16 +00:00
|
|
|
MFace *face1=NULL, *face2 = NULL;
|
2009-08-18 03:24:46 +00:00
|
|
|
#ifdef USE_BULLET
|
2008-05-07 20:42:16 +00:00
|
|
|
ClothVertex *verts1 = clmd->clothObject->verts;
|
2008-12-26 14:19:25 +00:00
|
|
|
#endif
|
2008-01-29 21:01:12 +00:00
|
|
|
double distance = 0;
|
2008-05-07 20:42:16 +00:00
|
|
|
float epsilon1 = clmd->coll_parms->epsilon;
|
|
|
|
float epsilon2 = BLI_bvhtree_getepsilon ( collmd->bvhtree );
|
2011-05-01 21:39:13 +00:00
|
|
|
float n2[3], sdis, l;
|
2008-05-07 20:42:16 +00:00
|
|
|
int i;
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
face1 = & ( clmd->clothObject->mfaces[overlap->indexA] );
|
|
|
|
face2 = & ( collmd->mfaces[overlap->indexB] );
|
|
|
|
|
|
|
|
// check all 4 possible collisions
|
2008-04-08 12:55:35 +00:00
|
|
|
for ( i = 0; i < 4; i++ )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( i == 0 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
// fill faceA
|
2008-01-29 21:01:12 +00:00
|
|
|
collpair->ap1 = face1->v1;
|
|
|
|
collpair->ap2 = face1->v2;
|
|
|
|
collpair->ap3 = face1->v3;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
// fill faceB
|
2008-01-29 21:01:12 +00:00
|
|
|
collpair->bp1 = face2->v1;
|
|
|
|
collpair->bp2 = face2->v2;
|
|
|
|
collpair->bp3 = face2->v3;
|
|
|
|
}
|
2008-05-07 20:42:16 +00:00
|
|
|
else if ( i == 1 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( face1->v4 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
// fill faceA
|
|
|
|
collpair->ap1 = face1->v1;
|
2008-01-29 21:01:12 +00:00
|
|
|
collpair->ap2 = face1->v4;
|
2008-05-07 20:42:16 +00:00
|
|
|
collpair->ap3 = face1->v3;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
// fill faceB
|
2008-01-29 21:01:12 +00:00
|
|
|
collpair->bp1 = face2->v1;
|
|
|
|
collpair->bp2 = face2->v2;
|
|
|
|
collpair->bp3 = face2->v3;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
i++;
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( i == 2 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( face2->v4 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
// fill faceA
|
2008-01-29 21:01:12 +00:00
|
|
|
collpair->ap1 = face1->v1;
|
|
|
|
collpair->ap2 = face1->v2;
|
|
|
|
collpair->ap3 = face1->v3;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
// fill faceB
|
|
|
|
collpair->bp1 = face2->v1;
|
2008-01-29 21:01:12 +00:00
|
|
|
collpair->bp2 = face2->v4;
|
2008-05-07 20:42:16 +00:00
|
|
|
collpair->bp3 = face2->v3;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
else
|
2008-05-07 20:42:16 +00:00
|
|
|
break;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-07 20:42:16 +00:00
|
|
|
else if ( i == 3 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
if ( face1->v4 && face2->v4 )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
// fill faceA
|
|
|
|
collpair->ap1 = face1->v1;
|
2008-01-29 21:01:12 +00:00
|
|
|
collpair->ap2 = face1->v4;
|
2008-05-07 20:42:16 +00:00
|
|
|
collpair->ap3 = face1->v3;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
// fill faceB
|
|
|
|
collpair->bp1 = face2->v1;
|
2008-01-29 21:01:12 +00:00
|
|
|
collpair->bp2 = face2->v4;
|
2008-05-07 20:42:16 +00:00
|
|
|
collpair->bp3 = face2->v3;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
else
|
2008-05-07 20:42:16 +00:00
|
|
|
break;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
normal_tri_v3(n2, collmd->current_xnew[collpair->bp1].co,
|
|
|
|
collmd->current_xnew[collpair->bp2].co,
|
|
|
|
collmd->current_xnew[collpair->bp3].co);
|
|
|
|
|
|
|
|
sdis = clmd->coll_parms->distance_repel + epsilon2 + FLT_EPSILON;
|
|
|
|
|
2011-09-01 01:48:50 +00:00
|
|
|
/* apply a repulsion force, to help the solver along.
|
|
|
|
* this is kindof crude, it only tests one vert of the triangle */
|
2011-05-01 21:39:13 +00:00
|
|
|
if (isect_ray_plane_v3(cloth->verts[collpair->ap1].tx, n2, collmd->current_xnew[collpair->bp1].co,
|
|
|
|
collmd->current_xnew[collpair->bp2].co,
|
|
|
|
collmd->current_xnew[collpair->bp3].co, &l, 0))
|
|
|
|
{
|
2011-11-11 12:00:08 +00:00
|
|
|
if (l >= 0.0f && l < sdis) {
|
|
|
|
mul_v3_fl(n2, (l-sdis)*cloth->verts[collpair->ap1].mass*dt*clmd->coll_parms->repel_force*0.1f);
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2011-05-01 21:39:13 +00:00
|
|
|
add_v3_v3(cloth->verts[collpair->ap1].tv, n2);
|
|
|
|
add_v3_v3(cloth->verts[collpair->ap2].tv, n2);
|
|
|
|
add_v3_v3(cloth->verts[collpair->ap3].tv, n2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-18 03:24:46 +00:00
|
|
|
#ifdef USE_BULLET
|
2008-05-07 20:42:16 +00:00
|
|
|
// calc distance + normal
|
|
|
|
distance = plNearestPoints (
|
2008-05-26 09:39:32 +00:00
|
|
|
verts1[collpair->ap1].txold, verts1[collpair->ap2].txold, verts1[collpair->ap3].txold, collmd->current_x[collpair->bp1].co, collmd->current_x[collpair->bp2].co, collmd->current_x[collpair->bp3].co, collpair->pa,collpair->pb,collpair->vector );
|
2008-01-29 23:13:31 +00:00
|
|
|
#else
|
2008-05-07 20:42:16 +00:00
|
|
|
// just be sure that we don't add anything
|
2011-11-11 12:00:08 +00:00
|
|
|
distance = 2.0 * (double)( epsilon1 + epsilon2 + ALMOST_ZERO );
|
2008-04-08 12:55:35 +00:00
|
|
|
#endif
|
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
if ( distance <= ( epsilon1 + epsilon2 + ALMOST_ZERO ) )
|
|
|
|
{
|
2010-08-15 15:14:08 +00:00
|
|
|
normalize_v3_v3( collpair->normal, collpair->vector );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
collpair->distance = distance;
|
|
|
|
collpair->flag = 0;
|
2008-06-05 10:52:52 +00:00
|
|
|
collpair++;
|
|
|
|
}/*
|
2008-01-29 21:01:12 +00:00
|
|
|
else
|
|
|
|
{
|
2008-05-29 14:23:08 +00:00
|
|
|
float w1, w2, w3, u1, u2, u3;
|
|
|
|
float v1[3], v2[3], relativeVelocity[3];
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-29 14:23:08 +00:00
|
|
|
// calc relative velocity
|
|
|
|
|
|
|
|
// compute barycentric coordinates for both collision points
|
|
|
|
collision_compute_barycentric ( collpair->pa,
|
|
|
|
verts1[collpair->ap1].txold,
|
|
|
|
verts1[collpair->ap2].txold,
|
|
|
|
verts1[collpair->ap3].txold,
|
|
|
|
&w1, &w2, &w3 );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-29 14:23:08 +00:00
|
|
|
// was: txold
|
|
|
|
collision_compute_barycentric ( collpair->pb,
|
|
|
|
collmd->current_x[collpair->bp1].co,
|
|
|
|
collmd->current_x[collpair->bp2].co,
|
|
|
|
collmd->current_x[collpair->bp3].co,
|
|
|
|
&u1, &u2, &u3 );
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-29 14:23:08 +00:00
|
|
|
// Calculate relative "velocity".
|
|
|
|
collision_interpolateOnTriangle ( v1, verts1[collpair->ap1].tv, verts1[collpair->ap2].tv, verts1[collpair->ap3].tv, w1, w2, w3 );
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-29 14:23:08 +00:00
|
|
|
collision_interpolateOnTriangle ( v2, collmd->current_v[collpair->bp1].co, collmd->current_v[collpair->bp2].co, collmd->current_v[collpair->bp3].co, u1, u2, u3 );
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( relativeVelocity, v2, v1 );
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
if(sqrt(dot_v3v3(relativeVelocity, relativeVelocity)) >= distance)
|
2008-05-29 14:23:08 +00:00
|
|
|
{
|
|
|
|
// check for collision in the future
|
|
|
|
collpair->flag |= COLLISION_IN_FUTURE;
|
2008-06-05 10:52:52 +00:00
|
|
|
collpair++;
|
2008-05-29 14:23:08 +00:00
|
|
|
}
|
2008-06-05 10:52:52 +00:00
|
|
|
}*/
|
2008-05-29 14:23:08 +00:00
|
|
|
}
|
|
|
|
return collpair;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2011-05-02 03:44:02 +00:00
|
|
|
#endif /* WITH_ELTOPO */
|
2011-05-01 21:39:13 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2009-11-11 09:59:51 +00:00
|
|
|
#if 0
|
2009-09-14 16:52:06 +00:00
|
|
|
static int cloth_collision_response_moving( ClothModifierData *clmd, CollisionModifierData *collmd, CollPair *collpair, CollPair *collision_end )
|
2008-05-14 16:09:56 +00:00
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
Cloth *cloth1;
|
|
|
|
float w1, w2, w3, u1, u2, u3;
|
|
|
|
float v1[3], v2[3], relativeVelocity[3];
|
|
|
|
float magrelVel;
|
|
|
|
|
|
|
|
cloth1 = clmd->clothObject;
|
|
|
|
|
|
|
|
for ( ; collpair != collision_end; collpair++ )
|
|
|
|
{
|
|
|
|
// compute barycentric coordinates for both collision points
|
|
|
|
collision_compute_barycentric ( collpair->pa,
|
2008-05-26 09:39:32 +00:00
|
|
|
cloth1->verts[collpair->ap1].txold,
|
|
|
|
cloth1->verts[collpair->ap2].txold,
|
|
|
|
cloth1->verts[collpair->ap3].txold,
|
|
|
|
&w1, &w2, &w3 );
|
2008-05-14 16:09:56 +00:00
|
|
|
|
|
|
|
// was: txold
|
|
|
|
collision_compute_barycentric ( collpair->pb,
|
2008-05-26 09:39:32 +00:00
|
|
|
collmd->current_x[collpair->bp1].co,
|
|
|
|
collmd->current_x[collpair->bp2].co,
|
|
|
|
collmd->current_x[collpair->bp3].co,
|
|
|
|
&u1, &u2, &u3 );
|
2008-05-14 16:09:56 +00:00
|
|
|
|
|
|
|
// Calculate relative "velocity".
|
|
|
|
collision_interpolateOnTriangle ( v1, cloth1->verts[collpair->ap1].tv, cloth1->verts[collpair->ap2].tv, cloth1->verts[collpair->ap3].tv, w1, w2, w3 );
|
|
|
|
|
|
|
|
collision_interpolateOnTriangle ( v2, collmd->current_v[collpair->bp1].co, collmd->current_v[collpair->bp2].co, collmd->current_v[collpair->bp3].co, u1, u2, u3 );
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( relativeVelocity, v2, v1 );
|
2008-05-14 16:09:56 +00:00
|
|
|
|
|
|
|
// Calculate the normal component of the relative velocity (actually only the magnitude - the direction is stored in 'normal').
|
2012-03-09 06:04:17 +00:00
|
|
|
magrelVel = dot_v3v3 ( relativeVelocity, collpair->normal );
|
2008-05-14 16:09:56 +00:00
|
|
|
|
|
|
|
// printf("magrelVel: %f\n", magrelVel);
|
|
|
|
|
|
|
|
// Calculate masses of points.
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
// If v_n_mag < 0 the edges are approaching each other.
|
|
|
|
if ( magrelVel > ALMOST_ZERO )
|
|
|
|
{
|
|
|
|
// Calculate Impulse magnitude to stop all motion in normal direction.
|
2008-06-03 19:06:54 +00:00
|
|
|
float magtangent = 0;
|
2008-05-14 16:09:56 +00:00
|
|
|
double impulse = 0.0;
|
|
|
|
float vrel_t_pre[3];
|
|
|
|
float temp[3];
|
|
|
|
|
|
|
|
// calculate tangential velocity
|
2012-03-09 06:04:17 +00:00
|
|
|
copy_v3_v3 ( temp, collpair->normal );
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl( temp, magrelVel );
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( vrel_t_pre, relativeVelocity, temp );
|
2008-05-14 16:09:56 +00:00
|
|
|
|
|
|
|
// Decrease in magnitude of relative tangential velocity due to coulomb friction
|
|
|
|
// in original formula "magrelVel" should be the "change of relative velocity in normal direction"
|
2012-03-09 06:04:17 +00:00
|
|
|
magtangent = MIN2 ( clmd->coll_parms->friction * 0.01 * magrelVel,sqrt ( dot_v3v3 ( vrel_t_pre,vrel_t_pre ) ) );
|
2008-05-14 16:09:56 +00:00
|
|
|
|
|
|
|
// Apply friction impulse.
|
|
|
|
if ( magtangent > ALMOST_ZERO )
|
|
|
|
{
|
2009-11-10 20:43:45 +00:00
|
|
|
normalize_v3( vrel_t_pre );
|
2008-05-14 16:09:56 +00:00
|
|
|
|
|
|
|
impulse = 2.0 * magtangent / ( 1.0 + w1*w1 + w2*w2 + w3*w3 );
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap1].impulse, vrel_t_pre, w1 * impulse );
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap2].impulse, vrel_t_pre, w2 * impulse );
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap3].impulse, vrel_t_pre, w3 * impulse );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply velocity stopping impulse
|
|
|
|
// I_c = m * v_N / 2.0
|
|
|
|
// no 2.0 * magrelVel normally, but looks nicer DG
|
|
|
|
impulse = magrelVel / ( 1.0 + w1*w1 + w2*w2 + w3*w3 );
|
|
|
|
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap1].impulse, collpair->normal, w1 * impulse );
|
|
|
|
cloth1->verts[collpair->ap1].impulse_count++;
|
|
|
|
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap2].impulse, collpair->normal, w2 * impulse );
|
|
|
|
cloth1->verts[collpair->ap2].impulse_count++;
|
|
|
|
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap3].impulse, collpair->normal, w3 * impulse );
|
|
|
|
cloth1->verts[collpair->ap3].impulse_count++;
|
|
|
|
|
|
|
|
// Apply repulse impulse if distance too short
|
|
|
|
// I_r = -min(dt*kd, m(0,1d/dt - v_n))
|
|
|
|
/*
|
|
|
|
d = clmd->coll_parms->epsilon*8.0/9.0 + epsilon2*8.0/9.0 - collpair->distance;
|
|
|
|
if ( ( magrelVel < 0.1*d*clmd->sim_parms->stepsPerFrame ) && ( d > ALMOST_ZERO ) )
|
|
|
|
{
|
2008-05-26 09:39:32 +00:00
|
|
|
repulse = MIN2 ( d*1.0/clmd->sim_parms->stepsPerFrame, 0.1*d*clmd->sim_parms->stepsPerFrame - magrelVel );
|
2008-05-14 16:09:56 +00:00
|
|
|
|
2008-05-26 09:39:32 +00:00
|
|
|
// stay on the safe side and clamp repulse
|
|
|
|
if ( impulse > ALMOST_ZERO )
|
|
|
|
repulse = MIN2 ( repulse, 5.0*impulse );
|
|
|
|
repulse = MAX2 ( impulse, repulse );
|
2008-05-14 16:09:56 +00:00
|
|
|
|
2008-05-26 09:39:32 +00:00
|
|
|
impulse = repulse / ( 1.0 + w1*w1 + w2*w2 + w3*w3 ); // original 2.0 / 0.25
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap1].impulse, collpair->normal, impulse );
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap2].impulse, collpair->normal, impulse );
|
|
|
|
VECADDMUL ( cloth1->verts[collpair->ap3].impulse, collpair->normal, impulse );
|
2008-05-14 16:09:56 +00:00
|
|
|
}
|
2008-05-26 09:39:32 +00:00
|
|
|
*/
|
2008-05-14 16:09:56 +00:00
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2009-11-11 09:59:51 +00:00
|
|
|
#endif
|
2008-05-14 16:09:56 +00:00
|
|
|
|
2010-02-08 13:55:31 +00:00
|
|
|
#if 0
|
2008-05-26 09:39:32 +00:00
|
|
|
static float projectPointOntoLine(float *p, float *a, float *b)
|
|
|
|
{
|
2011-04-21 15:53:30 +00:00
|
|
|
float ba[3], pa[3];
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(ba, b, a);
|
|
|
|
sub_v3_v3v3(pa, p, a);
|
|
|
|
return dot_v3v3(pa, ba) / dot_v3v3(ba, ba);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void calculateEENormal(float *np1, float *np2, float *np3, float *np4,float *out_normal)
|
|
|
|
{
|
2008-05-29 14:23:08 +00:00
|
|
|
float line1[3], line2[3];
|
2008-05-26 09:39:32 +00:00
|
|
|
float length;
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(line1, np2, np1);
|
|
|
|
sub_v3_v3v3(line2, np3, np1);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-29 14:23:08 +00:00
|
|
|
// printf("l1: %f, l1: %f, l2: %f, l2: %f\n", line1[0], line1[1], line2[0], line2[1]);
|
|
|
|
|
2009-11-10 20:43:45 +00:00
|
|
|
cross_v3_v3v3(out_normal, line1, line2);
|
2008-05-29 14:23:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-11-10 20:43:45 +00:00
|
|
|
length = normalize_v3(out_normal);
|
2008-05-26 09:39:32 +00:00
|
|
|
if (length <= FLT_EPSILON)
|
|
|
|
{ // lines are collinear
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(out_normal, np2, np1);
|
2009-11-10 20:43:45 +00:00
|
|
|
normalize_v3(out_normal);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void findClosestPointsEE(float *x1, float *x2, float *x3, float *x4, float *w1, float *w2)
|
|
|
|
{
|
|
|
|
float temp[3], temp2[3];
|
|
|
|
|
|
|
|
double a, b, c, e, f;
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, x2, x1);
|
|
|
|
a = dot_v3v3(temp, temp);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp2, x4, x3);
|
|
|
|
b = -dot_v3v3(temp, temp2);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
c = dot_v3v3(temp2, temp2);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp2, x3, x1);
|
|
|
|
e = dot_v3v3(temp, temp2);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, x4, x3);
|
|
|
|
f = -dot_v3v3(temp, temp2);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
|
|
|
*w1 = (e * c - b * f) / (a * c - b * b);
|
|
|
|
*w2 = (f - b * *w1) / c;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculates the distance of 2 edges
|
2009-09-14 16:52:06 +00:00
|
|
|
static float edgedge_distance(float np11[3], float np12[3], float np21[3], float np22[3], float *out_a1, float *out_a2, float *out_normal)
|
2008-05-26 09:39:32 +00:00
|
|
|
{
|
|
|
|
float line1[3], line2[3], cross[3];
|
|
|
|
float length;
|
|
|
|
float temp[3], temp2[3];
|
|
|
|
float dist_a1, dist_a2;
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(line1, np12, np11);
|
|
|
|
sub_v3_v3v3(line2, np22, np21);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2009-11-10 20:43:45 +00:00
|
|
|
cross_v3_v3v3(cross, line1, line2);
|
2012-03-09 06:04:17 +00:00
|
|
|
length = dot_v3v3(cross, cross);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
|
|
|
if (length < FLT_EPSILON)
|
|
|
|
{
|
|
|
|
*out_a2 = projectPointOntoLine(np11, np21, np22);
|
|
|
|
if ((*out_a2 >= -FLT_EPSILON) && (*out_a2 <= 1.0 + FLT_EPSILON))
|
|
|
|
{
|
|
|
|
*out_a1 = 0;
|
|
|
|
calculateEENormal(np11, np12, np21, np22, out_normal);
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np22, np21);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, *out_a2);
|
2008-05-26 09:39:32 +00:00
|
|
|
VECADD(temp2, temp, np21);
|
|
|
|
VECADD(temp2, temp2, np11);
|
2012-03-09 06:04:17 +00:00
|
|
|
return dot_v3v3(temp2, temp2);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CLAMP(*out_a2, 0.0, 1.0);
|
|
|
|
if (*out_a2 > .5)
|
|
|
|
{ // == 1.0
|
|
|
|
*out_a1 = projectPointOntoLine(np22, np11, np12);
|
|
|
|
if ((*out_a1 >= -FLT_EPSILON) && (*out_a1 <= 1.0 + FLT_EPSILON))
|
|
|
|
{
|
|
|
|
calculateEENormal(np11, np12, np21, np22, out_normal);
|
|
|
|
|
|
|
|
// return (np22 - (np11 + (np12 - np11) * out_a1)).lengthSquared();
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np12, np11);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, *out_a1);
|
2008-05-26 09:39:32 +00:00
|
|
|
VECADD(temp2, temp, np11);
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp2, np22, temp2);
|
|
|
|
return dot_v3v3(temp2, temp2);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // == 0.0
|
|
|
|
*out_a1 = projectPointOntoLine(np21, np11, np12);
|
|
|
|
if ((*out_a1 >= -FLT_EPSILON) && (*out_a1 <= 1.0 + FLT_EPSILON))
|
|
|
|
{
|
|
|
|
calculateEENormal(np11, np11, np21, np22, out_normal);
|
|
|
|
|
|
|
|
// return (np21 - (np11 + (np12 - np11) * out_a1)).lengthSquared();
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np12, np11);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, *out_a1);
|
2008-05-26 09:39:32 +00:00
|
|
|
VECADD(temp2, temp, np11);
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp2, np21, temp2);
|
|
|
|
return dot_v3v3(temp2, temp2);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CLAMP(*out_a1, 0.0, 1.0);
|
|
|
|
calculateEENormal(np11, np12, np21, np22, out_normal);
|
|
|
|
if(*out_a1 > .5)
|
|
|
|
{
|
|
|
|
if(*out_a2 > .5)
|
|
|
|
{
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np12, np22);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np12, np21);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(*out_a2 > .5)
|
|
|
|
{
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np11, np22);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np11, np21);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
return dot_v3v3(temp, temp);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
// If the lines aren't parallel (but coplanar) they have to intersect
|
|
|
|
|
|
|
|
findClosestPointsEE(np11, np12, np21, np22, out_a1, out_a2);
|
|
|
|
|
|
|
|
// If both points are on the finite edges, we're done.
|
|
|
|
if (*out_a1 >= 0.0 && *out_a1 <= 1.0 && *out_a2 >= 0.0 && *out_a2 <= 1.0)
|
|
|
|
{
|
|
|
|
float p1[3], p2[3];
|
|
|
|
|
|
|
|
// p1= np11 + (np12 - np11) * out_a1;
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np12, np11);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, *out_a1);
|
2008-05-26 09:39:32 +00:00
|
|
|
VECADD(p1, np11, temp);
|
|
|
|
|
|
|
|
// p2 = np21 + (np22 - np21) * out_a2;
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np22, np21);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, *out_a2);
|
2008-05-26 09:39:32 +00:00
|
|
|
VECADD(p2, np21, temp);
|
|
|
|
|
|
|
|
calculateEENormal(np11, np12, np21, np22, out_normal);
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, p1, p2);
|
|
|
|
return dot_v3v3(temp, temp);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clamp both points to the finite edges.
|
|
|
|
* The one that moves most during clamping is one part of the solution.
|
|
|
|
*/
|
|
|
|
dist_a1 = *out_a1;
|
|
|
|
CLAMP(dist_a1, 0.0, 1.0);
|
|
|
|
dist_a2 = *out_a2;
|
|
|
|
CLAMP(dist_a2, 0.0, 1.0);
|
|
|
|
|
|
|
|
// Now project the "most clamped" point on the other line.
|
|
|
|
if (dist_a1 > dist_a2)
|
|
|
|
{
|
|
|
|
/* keep out_a1 */
|
|
|
|
float p1[3];
|
|
|
|
|
|
|
|
// p1 = np11 + (np12 - np11) * out_a1;
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np12, np11);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, *out_a1);
|
2008-05-26 09:39:32 +00:00
|
|
|
VECADD(p1, np11, temp);
|
|
|
|
|
|
|
|
*out_a2 = projectPointOntoLine(p1, np21, np22);
|
|
|
|
CLAMP(*out_a2, 0.0, 1.0);
|
|
|
|
|
|
|
|
calculateEENormal(np11, np12, np21, np22, out_normal);
|
|
|
|
|
|
|
|
// return (p1 - (np21 + (np22 - np21) * out_a2)).lengthSquared();
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np22, np21);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, *out_a2);
|
2008-05-26 09:39:32 +00:00
|
|
|
VECADD(temp, temp, np21);
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, p1, temp);
|
|
|
|
return dot_v3v3(temp, temp);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* keep out_a2 */
|
|
|
|
float p2[3];
|
|
|
|
|
|
|
|
// p2 = np21 + (np22 - np21) * out_a2;
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np22, np21);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, *out_a2);
|
2008-05-26 09:39:32 +00:00
|
|
|
VECADD(p2, np21, temp);
|
|
|
|
|
|
|
|
*out_a1 = projectPointOntoLine(p2, np11, np12);
|
|
|
|
CLAMP(*out_a1, 0.0, 1.0);
|
|
|
|
|
|
|
|
calculateEENormal(np11, np12, np21, np22, out_normal);
|
|
|
|
|
|
|
|
// return ((np11 + (np12 - np11) * out_a1) - p2).lengthSquared();
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, np12, np11);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, *out_a1);
|
2008-05-26 09:39:32 +00:00
|
|
|
VECADD(temp, temp, np11);
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(temp, temp, p2);
|
|
|
|
return dot_v3v3(temp, temp);
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Error in edgedge_distance: end of function\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-14 16:52:06 +00:00
|
|
|
static int cloth_collision_moving_edges ( ClothModifierData *clmd, CollisionModifierData *collmd, CollPair *collpair )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
|
|
|
EdgeCollPair edgecollpair;
|
2008-05-07 20:42:16 +00:00
|
|
|
Cloth *cloth1=NULL;
|
|
|
|
ClothVertex *verts1=NULL;
|
2008-06-03 19:06:54 +00:00
|
|
|
unsigned int i = 0, k = 0;
|
2008-01-29 21:01:12 +00:00
|
|
|
int numsolutions = 0;
|
2008-05-12 12:24:52 +00:00
|
|
|
double x1[3], v1[3], x2[3], v2[3], x3[3], v3[3];
|
2008-05-29 14:23:08 +00:00
|
|
|
double solution[3], solution2[3];
|
2008-05-07 20:42:16 +00:00
|
|
|
MVert *verts2 = collmd->current_x; // old x
|
|
|
|
MVert *velocity2 = collmd->current_v; // velocity
|
2008-06-03 19:06:54 +00:00
|
|
|
float distance = 0;
|
2008-05-12 12:24:52 +00:00
|
|
|
float triA[3][3], triB[3][3];
|
|
|
|
int result = 0;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
cloth1 = clmd->clothObject;
|
|
|
|
verts1 = cloth1->verts;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
for(i = 0; i < 9; i++)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
// 9 edge - edge possibilities
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
if(i == 0) // cloth edge: 1-2; coll edge: 1-2
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p11 = collpair->ap1;
|
|
|
|
edgecollpair.p12 = collpair->ap2;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p21 = collpair->bp1;
|
|
|
|
edgecollpair.p22 = collpair->bp2;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-07 20:42:16 +00:00
|
|
|
else if(i == 1) // cloth edge: 1-2; coll edge: 2-3
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p11 = collpair->ap1;
|
|
|
|
edgecollpair.p12 = collpair->ap2;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p21 = collpair->bp2;
|
|
|
|
edgecollpair.p22 = collpair->bp3;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-07 20:42:16 +00:00
|
|
|
else if(i == 2) // cloth edge: 1-2; coll edge: 1-3
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p11 = collpair->ap1;
|
|
|
|
edgecollpair.p12 = collpair->ap2;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p21 = collpair->bp1;
|
|
|
|
edgecollpair.p22 = collpair->bp3;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-07 20:42:16 +00:00
|
|
|
else if(i == 3) // cloth edge: 2-3; coll edge: 1-2
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p11 = collpair->ap2;
|
|
|
|
edgecollpair.p12 = collpair->ap3;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p21 = collpair->bp1;
|
|
|
|
edgecollpair.p22 = collpair->bp2;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-07 20:42:16 +00:00
|
|
|
else if(i == 4) // cloth edge: 2-3; coll edge: 2-3
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p11 = collpair->ap2;
|
|
|
|
edgecollpair.p12 = collpair->ap3;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p21 = collpair->bp2;
|
|
|
|
edgecollpair.p22 = collpair->bp3;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-05-07 20:42:16 +00:00
|
|
|
else if(i == 5) // cloth edge: 2-3; coll edge: 1-3
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p11 = collpair->ap2;
|
|
|
|
edgecollpair.p12 = collpair->ap3;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p21 = collpair->bp1;
|
|
|
|
edgecollpair.p22 = collpair->bp3;
|
|
|
|
}
|
|
|
|
else if(i ==6) // cloth edge: 1-3; coll edge: 1-2
|
|
|
|
{
|
|
|
|
edgecollpair.p11 = collpair->ap1;
|
|
|
|
edgecollpair.p12 = collpair->ap3;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p21 = collpair->bp1;
|
|
|
|
edgecollpair.p22 = collpair->bp2;
|
|
|
|
}
|
|
|
|
else if(i ==7) // cloth edge: 1-3; coll edge: 2-3
|
|
|
|
{
|
|
|
|
edgecollpair.p11 = collpair->ap1;
|
|
|
|
edgecollpair.p12 = collpair->ap3;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p21 = collpair->bp2;
|
|
|
|
edgecollpair.p22 = collpair->bp3;
|
|
|
|
}
|
|
|
|
else if(i == 8) // cloth edge: 1-3; coll edge: 1-3
|
|
|
|
{
|
|
|
|
edgecollpair.p11 = collpair->ap1;
|
|
|
|
edgecollpair.p12 = collpair->ap3;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
edgecollpair.p21 = collpair->bp1;
|
|
|
|
edgecollpair.p22 = collpair->bp3;
|
|
|
|
}
|
2008-05-29 14:23:08 +00:00
|
|
|
/*
|
|
|
|
if((edgecollpair.p11 == 3) && (edgecollpair.p12 == 16))
|
2008-05-27 22:46:57 +00:00
|
|
|
printf("Ahier!\n");
|
2008-05-29 14:23:08 +00:00
|
|
|
if((edgecollpair.p11 == 16) && (edgecollpair.p12 == 3))
|
2008-05-27 22:46:57 +00:00
|
|
|
printf("Ahier!\n");
|
2008-05-29 14:23:08 +00:00
|
|
|
*/
|
2008-05-27 22:46:57 +00:00
|
|
|
|
2008-05-29 14:23:08 +00:00
|
|
|
// if ( !cloth_are_edges_adjacent ( clmd, collmd, &edgecollpair ) )
|
2008-05-07 20:42:16 +00:00
|
|
|
{
|
|
|
|
// always put coll points in p21/p22
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( x1, verts1[edgecollpair.p12].txold, verts1[edgecollpair.p11].txold );
|
|
|
|
sub_v3_v3v3 ( v1, verts1[edgecollpair.p12].tv, verts1[edgecollpair.p11].tv );
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( x2, verts2[edgecollpair.p21].co, verts1[edgecollpair.p11].txold );
|
|
|
|
sub_v3_v3v3 ( v2, velocity2[edgecollpair.p21].co, verts1[edgecollpair.p11].tv );
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( x3, verts2[edgecollpair.p22].co, verts1[edgecollpair.p11].txold );
|
|
|
|
sub_v3_v3v3 ( v3, velocity2[edgecollpair.p22].co, verts1[edgecollpair.p11].tv );
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
numsolutions = cloth_get_collision_time ( x1, v1, x2, v2, x3, v3, solution );
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-29 14:23:08 +00:00
|
|
|
if((edgecollpair.p11 == 3 && edgecollpair.p12==16)|| (edgecollpair.p11==16 && edgecollpair.p12==3))
|
|
|
|
{
|
|
|
|
if(edgecollpair.p21==6 || edgecollpair.p22 == 6)
|
|
|
|
{
|
2011-09-16 10:03:08 +00:00
|
|
|
printf("dist: %f, sol[k]: %f, sol2[k]: %f\n", distance, solution[k], solution2[k]);
|
2008-05-29 14:23:08 +00:00
|
|
|
printf("a1: %f, a2: %f, b1: %f, b2: %f\n", x1[0], x2[0], x3[0], v1[0]);
|
|
|
|
printf("b21: %d, b22: %d\n", edgecollpair.p21, edgecollpair.p22);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
for ( k = 0; k < numsolutions; k++ )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2008-05-14 16:09:56 +00:00
|
|
|
// printf("sol %d: %lf\n", k, solution[k]);
|
2008-05-27 22:46:57 +00:00
|
|
|
if ( ( solution[k] >= ALMOST_ZERO ) && ( solution[k] <= 1.0 ) && ( solution[k] > ALMOST_ZERO))
|
2008-04-08 12:55:35 +00:00
|
|
|
{
|
2008-05-26 09:39:32 +00:00
|
|
|
float a,b;
|
|
|
|
float out_normal[3];
|
|
|
|
float distance;
|
2008-05-27 22:46:57 +00:00
|
|
|
float impulse = 0;
|
|
|
|
float I_mag;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
|
|
|
// move verts
|
2008-05-29 14:23:08 +00:00
|
|
|
VECADDS(triA[0], verts1[edgecollpair.p11].txold, verts1[edgecollpair.p11].tv, solution[k]);
|
|
|
|
VECADDS(triA[1], verts1[edgecollpair.p12].txold, verts1[edgecollpair.p12].tv, solution[k]);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-29 14:23:08 +00:00
|
|
|
VECADDS(triB[0], collmd->current_x[edgecollpair.p21].co, collmd->current_v[edgecollpair.p21].co, solution[k]);
|
|
|
|
VECADDS(triB[1], collmd->current_x[edgecollpair.p22].co, collmd->current_v[edgecollpair.p22].co, solution[k]);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
// TODO: check for collisions
|
2008-05-26 09:39:32 +00:00
|
|
|
distance = edgedge_distance(triA[0], triA[1], triB[0], triB[1], &a, &b, out_normal);
|
2008-05-07 20:42:16 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
if ((distance <= clmd->coll_parms->epsilon + BLI_bvhtree_getepsilon ( collmd->bvhtree ) + ALMOST_ZERO) && (dot_v3v3(out_normal, out_normal) > 0))
|
2008-05-26 09:39:32 +00:00
|
|
|
{
|
2008-05-27 22:46:57 +00:00
|
|
|
float vrel_1_to_2[3], temp[3], temp2[3], out_normalVelocity;
|
|
|
|
float desiredVn;
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
copy_v3_v3(vrel_1_to_2, verts1[edgecollpair.p11].tv);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(vrel_1_to_2, 1.0 - a);
|
2012-03-09 06:04:17 +00:00
|
|
|
copy_v3_v3(temp, verts1[edgecollpair.p12].tv);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, a);
|
2008-05-27 22:46:57 +00:00
|
|
|
|
|
|
|
VECADD(vrel_1_to_2, vrel_1_to_2, temp);
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
copy_v3_v3(temp, verts1[edgecollpair.p21].tv);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp, 1.0 - b);
|
2012-03-09 06:04:17 +00:00
|
|
|
copy_v3_v3(temp2, verts1[edgecollpair.p22].tv);
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl(temp2, b);
|
2008-05-27 22:46:57 +00:00
|
|
|
VECADD(temp, temp, temp2);
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3(vrel_1_to_2, vrel_1_to_2, temp);
|
2008-05-27 22:46:57 +00:00
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
out_normalVelocity = dot_v3v3(vrel_1_to_2, out_normal);
|
2008-05-29 14:23:08 +00:00
|
|
|
/*
|
|
|
|
// this correction results in wrong normals sometimes?
|
2008-05-27 22:46:57 +00:00
|
|
|
if(out_normalVelocity < 0.0)
|
|
|
|
{
|
|
|
|
out_normalVelocity*= -1.0;
|
2009-11-10 20:43:45 +00:00
|
|
|
negate_v3(out_normal);
|
2008-05-27 22:46:57 +00:00
|
|
|
}
|
2008-05-29 14:23:08 +00:00
|
|
|
*/
|
2008-05-26 09:39:32 +00:00
|
|
|
/* Inelastic repulsion impulse. */
|
2008-05-27 22:46:57 +00:00
|
|
|
|
2008-05-26 09:39:32 +00:00
|
|
|
// Calculate which normal velocity we need.
|
2008-05-27 22:46:57 +00:00
|
|
|
desiredVn = (out_normalVelocity * (float)solution[k] - (.1 * (clmd->coll_parms->epsilon + BLI_bvhtree_getepsilon ( collmd->bvhtree )) - sqrt(distance)) - ALMOST_ZERO);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
|
|
|
// Now calculate what impulse we need to reach that velocity.
|
2008-05-27 22:46:57 +00:00
|
|
|
I_mag = (out_normalVelocity - desiredVn) / 2.0; // / (1/m1 + 1/m2);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
|
|
|
// Finally apply that impulse.
|
2008-05-27 22:46:57 +00:00
|
|
|
impulse = (2.0 * -I_mag) / (a*a + (1.0-a)*(1.0-a) + b*b + (1.0-b)*(1.0-b));
|
|
|
|
|
|
|
|
VECADDMUL ( verts1[edgecollpair.p11].impulse, out_normal, (1.0-a) * impulse );
|
|
|
|
verts1[edgecollpair.p11].impulse_count++;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-27 22:46:57 +00:00
|
|
|
VECADDMUL ( verts1[edgecollpair.p12].impulse, out_normal, a * impulse );
|
|
|
|
verts1[edgecollpair.p12].impulse_count++;
|
|
|
|
|
|
|
|
// return true;
|
2008-05-26 09:39:32 +00:00
|
|
|
result = 1;
|
2008-05-27 22:46:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// missing from collision.hpp
|
2008-05-26 09:39:32 +00:00
|
|
|
}
|
2008-05-29 14:23:08 +00:00
|
|
|
// mintime = MIN2(mintime, (float)solution[k]);
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
break;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
}
|
2008-05-12 12:24:52 +00:00
|
|
|
return result;
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
|
2009-09-14 16:52:06 +00:00
|
|
|
static int cloth_collision_moving ( ClothModifierData *clmd, CollisionModifierData *collmd, CollPair *collpair, CollPair *collision_end )
|
2008-02-12 11:04:58 +00:00
|
|
|
{
|
2008-05-07 20:42:16 +00:00
|
|
|
Cloth *cloth1;
|
|
|
|
cloth1 = clmd->clothObject;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
for ( ; collpair != collision_end; collpair++ )
|
|
|
|
{
|
|
|
|
// only handle moving collisions here
|
|
|
|
if (!( collpair->flag & COLLISION_IN_FUTURE ))
|
|
|
|
continue;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
cloth_collision_moving_edges ( clmd, collmd, collpair);
|
2008-05-26 09:39:32 +00:00
|
|
|
// cloth_collision_moving_tris ( clmd, collmd, collpair);
|
2008-03-03 19:02:01 +00:00
|
|
|
}
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-12 12:24:52 +00:00
|
|
|
return 1;
|
2008-03-03 19:02:01 +00:00
|
|
|
}
|
2009-11-11 09:59:51 +00:00
|
|
|
#endif
|
2008-03-03 19:02:01 +00:00
|
|
|
|
2012-03-20 04:15:41 +00:00
|
|
|
static void add_collision_object(Object ***objs, unsigned int *numobj, unsigned int *maxobj, Object *ob, Object *self, int level, unsigned int modifier_type)
|
2008-07-02 20:28:49 +00:00
|
|
|
{
|
2010-03-26 10:52:55 +00:00
|
|
|
CollisionModifierData *cmd= NULL;
|
|
|
|
|
|
|
|
if(ob == self)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* only get objects with collision modifier */
|
2012-03-20 04:15:41 +00:00
|
|
|
if(((modifier_type == eModifierType_Collision) && ob->pd && ob->pd->deflect) || (modifier_type != eModifierType_Collision))
|
|
|
|
cmd= (CollisionModifierData *)modifiers_findByType(ob, modifier_type);
|
2008-07-02 20:28:49 +00:00
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
if(cmd) {
|
|
|
|
/* extend array */
|
|
|
|
if(*numobj >= *maxobj) {
|
|
|
|
*maxobj *= 2;
|
|
|
|
*objs= MEM_reallocN(*objs, sizeof(Object*)*(*maxobj));
|
2008-08-18 14:41:24 +00:00
|
|
|
}
|
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
(*objs)[*numobj] = ob;
|
|
|
|
(*numobj)++;
|
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
/* objects in dupli groups, one level only for now */
|
|
|
|
if(ob->dup_group && level == 0) {
|
|
|
|
GroupObject *go;
|
|
|
|
Group *group= ob->dup_group;
|
2008-05-07 20:42:16 +00:00
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
/* add objects */
|
|
|
|
for(go= group->gobject.first; go; go= go->next)
|
2012-03-20 04:15:41 +00:00
|
|
|
add_collision_object(objs, numobj, maxobj, go->ob, self, level+1, modifier_type);
|
2010-03-26 10:52:55 +00:00
|
|
|
}
|
|
|
|
}
|
2008-05-07 20:42:16 +00:00
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
// return all collision objects in scene
|
|
|
|
// collision object will exclude self
|
2012-03-20 04:15:41 +00:00
|
|
|
Object **get_collisionobjects(Scene *scene, Object *self, Group *group, unsigned int *numcollobj, unsigned int modifier_type)
|
2010-03-26 10:52:55 +00:00
|
|
|
{
|
|
|
|
Base *base;
|
|
|
|
Object **objs;
|
|
|
|
GroupObject *go;
|
2010-10-21 08:32:53 +00:00
|
|
|
unsigned int numobj= 0, maxobj= 100;
|
2010-03-26 10:52:55 +00:00
|
|
|
|
|
|
|
objs= MEM_callocN(sizeof(Object *)*maxobj, "CollisionObjectsArray");
|
|
|
|
|
|
|
|
/* gather all collision objects */
|
|
|
|
if(group) {
|
|
|
|
/* use specified group */
|
|
|
|
for(go= group->gobject.first; go; go= go->next)
|
2012-03-20 04:15:41 +00:00
|
|
|
add_collision_object(&objs, &numobj, &maxobj, go->ob, self, 0, modifier_type);
|
2010-03-26 10:52:55 +00:00
|
|
|
}
|
|
|
|
else {
|
2010-12-17 15:37:59 +00:00
|
|
|
Scene *sce_iter;
|
2010-03-26 10:52:55 +00:00
|
|
|
/* add objects in same layer in scene */
|
2010-12-17 15:37:59 +00:00
|
|
|
for(SETLOOPER(scene, sce_iter, base)) {
|
2010-06-18 14:14:13 +00:00
|
|
|
if(base->lay & self->lay)
|
2012-03-20 04:15:41 +00:00
|
|
|
add_collision_object(&objs, &numobj, &maxobj, base->object, self, 0, modifier_type);
|
2010-06-18 14:14:13 +00:00
|
|
|
|
|
|
|
}
|
2008-03-03 19:02:01 +00:00
|
|
|
}
|
2010-03-26 10:52:55 +00:00
|
|
|
|
|
|
|
*numcollobj= numobj;
|
|
|
|
|
2008-07-02 20:28:49 +00:00
|
|
|
return objs;
|
|
|
|
}
|
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
static void add_collider_cache_object(ListBase **objs, Object *ob, Object *self, int level)
|
Unified effector functionality for particles, cloth and softbody
* Unified scene wide gravity (currently in scene buttons)
instead of each simulation having it's own gravity.
* Weight parameters for all effectors and an effector group
setting.
* Every effector can use noise.
* Most effectors have "shapes" point, plane, surface, every point.
- "Point" is most like the old effectors and uses the
effector location as the effector point.
- "Plane" uses the closest point on effectors local xy-plane
as the effector point.
- "Surface" uses the closest point on an effector object's
surface as the effector point.
- "Every Point" uses every point in a mesh effector object
as an effector point.
- The falloff is calculated from this point, so for example
with "surface" shape and "use only negative z axis" it's
possible to apply force only "inside" the effector object.
* Spherical effector is now renamed as "force" as it's no longer
just spherical.
* New effector parameter "flow", which makes the effector act as
surrounding air velocity, so the resulting force is
proportional to the velocity difference of the point and "air
velocity". For example a wind field with flow=1.0 results in
proper non-accelerating wind.
* New effector fields "turbulence", which creates nice random
flow paths, and "drag", which slows the points down.
* Much improved vortex field.
* Effectors can now effect particle rotation as well as location.
* Use full, or only positive/negative z-axis to apply force
(note. the z-axis is the surface normal in the case of
effector shape "surface")
* New "force field" submenu in add menu, which adds an empty
with the chosen effector (curve object for corve guides).
* Other dynamics should be quite easy to add to the effector
system too if wanted.
* "Unified" doesn't mean that force fields give the exact same results for
particles, softbody & cloth, since their final effect depends on many external
factors, like for example the surface area of the effected faces.
Code changes
* Subversion bump for correct handling of global gravity.
* Separate ui py file for common dynamics stuff.
* Particle settings updating is flushed with it's id through
DAG_id_flush_update(..).
Known issues
* Curve guides don't yet have all ui buttons in place, but they
should work none the less.
* Hair dynamics don't yet respect force fields.
Other changes
* Particle emission defaults now to frames 1-200 with life of 50
frames to fill the whole default timeline.
* Many particles drawing related crashes fixed.
* Sometimes particles didn't update on first frame properly.
* Hair with object/group visualization didn't work properly.
* Memory leaks with PointCacheID lists (Genscher, remember to
free pidlists after use :).
2009-09-30 22:10:14 +00:00
|
|
|
{
|
2010-03-26 10:52:55 +00:00
|
|
|
CollisionModifierData *cmd= NULL;
|
Unified effector functionality for particles, cloth and softbody
* Unified scene wide gravity (currently in scene buttons)
instead of each simulation having it's own gravity.
* Weight parameters for all effectors and an effector group
setting.
* Every effector can use noise.
* Most effectors have "shapes" point, plane, surface, every point.
- "Point" is most like the old effectors and uses the
effector location as the effector point.
- "Plane" uses the closest point on effectors local xy-plane
as the effector point.
- "Surface" uses the closest point on an effector object's
surface as the effector point.
- "Every Point" uses every point in a mesh effector object
as an effector point.
- The falloff is calculated from this point, so for example
with "surface" shape and "use only negative z axis" it's
possible to apply force only "inside" the effector object.
* Spherical effector is now renamed as "force" as it's no longer
just spherical.
* New effector parameter "flow", which makes the effector act as
surrounding air velocity, so the resulting force is
proportional to the velocity difference of the point and "air
velocity". For example a wind field with flow=1.0 results in
proper non-accelerating wind.
* New effector fields "turbulence", which creates nice random
flow paths, and "drag", which slows the points down.
* Much improved vortex field.
* Effectors can now effect particle rotation as well as location.
* Use full, or only positive/negative z-axis to apply force
(note. the z-axis is the surface normal in the case of
effector shape "surface")
* New "force field" submenu in add menu, which adds an empty
with the chosen effector (curve object for corve guides).
* Other dynamics should be quite easy to add to the effector
system too if wanted.
* "Unified" doesn't mean that force fields give the exact same results for
particles, softbody & cloth, since their final effect depends on many external
factors, like for example the surface area of the effected faces.
Code changes
* Subversion bump for correct handling of global gravity.
* Separate ui py file for common dynamics stuff.
* Particle settings updating is flushed with it's id through
DAG_id_flush_update(..).
Known issues
* Curve guides don't yet have all ui buttons in place, but they
should work none the less.
* Hair dynamics don't yet respect force fields.
Other changes
* Particle emission defaults now to frames 1-200 with life of 50
frames to fill the whole default timeline.
* Many particles drawing related crashes fixed.
* Sometimes particles didn't update on first frame properly.
* Hair with object/group visualization didn't work properly.
* Memory leaks with PointCacheID lists (Genscher, remember to
free pidlists after use :).
2009-09-30 22:10:14 +00:00
|
|
|
ColliderCache *col;
|
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
if(ob == self)
|
|
|
|
return;
|
Unified effector functionality for particles, cloth and softbody
* Unified scene wide gravity (currently in scene buttons)
instead of each simulation having it's own gravity.
* Weight parameters for all effectors and an effector group
setting.
* Every effector can use noise.
* Most effectors have "shapes" point, plane, surface, every point.
- "Point" is most like the old effectors and uses the
effector location as the effector point.
- "Plane" uses the closest point on effectors local xy-plane
as the effector point.
- "Surface" uses the closest point on an effector object's
surface as the effector point.
- "Every Point" uses every point in a mesh effector object
as an effector point.
- The falloff is calculated from this point, so for example
with "surface" shape and "use only negative z axis" it's
possible to apply force only "inside" the effector object.
* Spherical effector is now renamed as "force" as it's no longer
just spherical.
* New effector parameter "flow", which makes the effector act as
surrounding air velocity, so the resulting force is
proportional to the velocity difference of the point and "air
velocity". For example a wind field with flow=1.0 results in
proper non-accelerating wind.
* New effector fields "turbulence", which creates nice random
flow paths, and "drag", which slows the points down.
* Much improved vortex field.
* Effectors can now effect particle rotation as well as location.
* Use full, or only positive/negative z-axis to apply force
(note. the z-axis is the surface normal in the case of
effector shape "surface")
* New "force field" submenu in add menu, which adds an empty
with the chosen effector (curve object for corve guides).
* Other dynamics should be quite easy to add to the effector
system too if wanted.
* "Unified" doesn't mean that force fields give the exact same results for
particles, softbody & cloth, since their final effect depends on many external
factors, like for example the surface area of the effected faces.
Code changes
* Subversion bump for correct handling of global gravity.
* Separate ui py file for common dynamics stuff.
* Particle settings updating is flushed with it's id through
DAG_id_flush_update(..).
Known issues
* Curve guides don't yet have all ui buttons in place, but they
should work none the less.
* Hair dynamics don't yet respect force fields.
Other changes
* Particle emission defaults now to frames 1-200 with life of 50
frames to fill the whole default timeline.
* Many particles drawing related crashes fixed.
* Sometimes particles didn't update on first frame properly.
* Hair with object/group visualization didn't work properly.
* Memory leaks with PointCacheID lists (Genscher, remember to
free pidlists after use :).
2009-09-30 22:10:14 +00:00
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
if(ob->pd && ob->pd->deflect)
|
|
|
|
cmd =(CollisionModifierData *)modifiers_findByType(ob, eModifierType_Collision);
|
|
|
|
|
|
|
|
if(cmd && cmd->bvhtree) {
|
|
|
|
if(*objs == NULL)
|
|
|
|
*objs = MEM_callocN(sizeof(ListBase), "ColliderCache array");
|
|
|
|
|
|
|
|
col = MEM_callocN(sizeof(ColliderCache), "ColliderCache");
|
|
|
|
col->ob = ob;
|
|
|
|
col->collmd = cmd;
|
|
|
|
/* make sure collider is properly set up */
|
|
|
|
collision_move_object(cmd, 1.0, 0.0);
|
|
|
|
BLI_addtail(*objs, col);
|
|
|
|
}
|
Unified effector functionality for particles, cloth and softbody
* Unified scene wide gravity (currently in scene buttons)
instead of each simulation having it's own gravity.
* Weight parameters for all effectors and an effector group
setting.
* Every effector can use noise.
* Most effectors have "shapes" point, plane, surface, every point.
- "Point" is most like the old effectors and uses the
effector location as the effector point.
- "Plane" uses the closest point on effectors local xy-plane
as the effector point.
- "Surface" uses the closest point on an effector object's
surface as the effector point.
- "Every Point" uses every point in a mesh effector object
as an effector point.
- The falloff is calculated from this point, so for example
with "surface" shape and "use only negative z axis" it's
possible to apply force only "inside" the effector object.
* Spherical effector is now renamed as "force" as it's no longer
just spherical.
* New effector parameter "flow", which makes the effector act as
surrounding air velocity, so the resulting force is
proportional to the velocity difference of the point and "air
velocity". For example a wind field with flow=1.0 results in
proper non-accelerating wind.
* New effector fields "turbulence", which creates nice random
flow paths, and "drag", which slows the points down.
* Much improved vortex field.
* Effectors can now effect particle rotation as well as location.
* Use full, or only positive/negative z-axis to apply force
(note. the z-axis is the surface normal in the case of
effector shape "surface")
* New "force field" submenu in add menu, which adds an empty
with the chosen effector (curve object for corve guides).
* Other dynamics should be quite easy to add to the effector
system too if wanted.
* "Unified" doesn't mean that force fields give the exact same results for
particles, softbody & cloth, since their final effect depends on many external
factors, like for example the surface area of the effected faces.
Code changes
* Subversion bump for correct handling of global gravity.
* Separate ui py file for common dynamics stuff.
* Particle settings updating is flushed with it's id through
DAG_id_flush_update(..).
Known issues
* Curve guides don't yet have all ui buttons in place, but they
should work none the less.
* Hair dynamics don't yet respect force fields.
Other changes
* Particle emission defaults now to frames 1-200 with life of 50
frames to fill the whole default timeline.
* Many particles drawing related crashes fixed.
* Sometimes particles didn't update on first frame properly.
* Hair with object/group visualization didn't work properly.
* Memory leaks with PointCacheID lists (Genscher, remember to
free pidlists after use :).
2009-09-30 22:10:14 +00:00
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
/* objects in dupli groups, one level only for now */
|
|
|
|
if(ob->dup_group && level == 0) {
|
|
|
|
GroupObject *go;
|
|
|
|
Group *group= ob->dup_group;
|
Unified effector functionality for particles, cloth and softbody
* Unified scene wide gravity (currently in scene buttons)
instead of each simulation having it's own gravity.
* Weight parameters for all effectors and an effector group
setting.
* Every effector can use noise.
* Most effectors have "shapes" point, plane, surface, every point.
- "Point" is most like the old effectors and uses the
effector location as the effector point.
- "Plane" uses the closest point on effectors local xy-plane
as the effector point.
- "Surface" uses the closest point on an effector object's
surface as the effector point.
- "Every Point" uses every point in a mesh effector object
as an effector point.
- The falloff is calculated from this point, so for example
with "surface" shape and "use only negative z axis" it's
possible to apply force only "inside" the effector object.
* Spherical effector is now renamed as "force" as it's no longer
just spherical.
* New effector parameter "flow", which makes the effector act as
surrounding air velocity, so the resulting force is
proportional to the velocity difference of the point and "air
velocity". For example a wind field with flow=1.0 results in
proper non-accelerating wind.
* New effector fields "turbulence", which creates nice random
flow paths, and "drag", which slows the points down.
* Much improved vortex field.
* Effectors can now effect particle rotation as well as location.
* Use full, or only positive/negative z-axis to apply force
(note. the z-axis is the surface normal in the case of
effector shape "surface")
* New "force field" submenu in add menu, which adds an empty
with the chosen effector (curve object for corve guides).
* Other dynamics should be quite easy to add to the effector
system too if wanted.
* "Unified" doesn't mean that force fields give the exact same results for
particles, softbody & cloth, since their final effect depends on many external
factors, like for example the surface area of the effected faces.
Code changes
* Subversion bump for correct handling of global gravity.
* Separate ui py file for common dynamics stuff.
* Particle settings updating is flushed with it's id through
DAG_id_flush_update(..).
Known issues
* Curve guides don't yet have all ui buttons in place, but they
should work none the less.
* Hair dynamics don't yet respect force fields.
Other changes
* Particle emission defaults now to frames 1-200 with life of 50
frames to fill the whole default timeline.
* Many particles drawing related crashes fixed.
* Sometimes particles didn't update on first frame properly.
* Hair with object/group visualization didn't work properly.
* Memory leaks with PointCacheID lists (Genscher, remember to
free pidlists after use :).
2009-09-30 22:10:14 +00:00
|
|
|
|
2010-03-26 10:52:55 +00:00
|
|
|
/* add objects */
|
|
|
|
for(go= group->gobject.first; go; go= go->next)
|
|
|
|
add_collider_cache_object(objs, go->ob, self, level+1);
|
Unified effector functionality for particles, cloth and softbody
* Unified scene wide gravity (currently in scene buttons)
instead of each simulation having it's own gravity.
* Weight parameters for all effectors and an effector group
setting.
* Every effector can use noise.
* Most effectors have "shapes" point, plane, surface, every point.
- "Point" is most like the old effectors and uses the
effector location as the effector point.
- "Plane" uses the closest point on effectors local xy-plane
as the effector point.
- "Surface" uses the closest point on an effector object's
surface as the effector point.
- "Every Point" uses every point in a mesh effector object
as an effector point.
- The falloff is calculated from this point, so for example
with "surface" shape and "use only negative z axis" it's
possible to apply force only "inside" the effector object.
* Spherical effector is now renamed as "force" as it's no longer
just spherical.
* New effector parameter "flow", which makes the effector act as
surrounding air velocity, so the resulting force is
proportional to the velocity difference of the point and "air
velocity". For example a wind field with flow=1.0 results in
proper non-accelerating wind.
* New effector fields "turbulence", which creates nice random
flow paths, and "drag", which slows the points down.
* Much improved vortex field.
* Effectors can now effect particle rotation as well as location.
* Use full, or only positive/negative z-axis to apply force
(note. the z-axis is the surface normal in the case of
effector shape "surface")
* New "force field" submenu in add menu, which adds an empty
with the chosen effector (curve object for corve guides).
* Other dynamics should be quite easy to add to the effector
system too if wanted.
* "Unified" doesn't mean that force fields give the exact same results for
particles, softbody & cloth, since their final effect depends on many external
factors, like for example the surface area of the effected faces.
Code changes
* Subversion bump for correct handling of global gravity.
* Separate ui py file for common dynamics stuff.
* Particle settings updating is flushed with it's id through
DAG_id_flush_update(..).
Known issues
* Curve guides don't yet have all ui buttons in place, but they
should work none the less.
* Hair dynamics don't yet respect force fields.
Other changes
* Particle emission defaults now to frames 1-200 with life of 50
frames to fill the whole default timeline.
* Many particles drawing related crashes fixed.
* Sometimes particles didn't update on first frame properly.
* Hair with object/group visualization didn't work properly.
* Memory leaks with PointCacheID lists (Genscher, remember to
free pidlists after use :).
2009-09-30 22:10:14 +00:00
|
|
|
}
|
2010-03-26 10:52:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ListBase *get_collider_cache(Scene *scene, Object *self, Group *group)
|
|
|
|
{
|
|
|
|
GroupObject *go;
|
|
|
|
ListBase *objs= NULL;
|
|
|
|
|
|
|
|
/* add object in same layer in scene */
|
|
|
|
if(group) {
|
|
|
|
for(go= group->gobject.first; go; go= go->next)
|
|
|
|
add_collider_cache_object(&objs, go->ob, self, 0);
|
|
|
|
}
|
|
|
|
else {
|
2010-12-17 15:37:59 +00:00
|
|
|
Scene *sce_iter;
|
2010-06-18 14:14:13 +00:00
|
|
|
Base *base;
|
|
|
|
|
|
|
|
/* add objects in same layer in scene */
|
2010-12-17 15:37:59 +00:00
|
|
|
for(SETLOOPER(scene, sce_iter, base)) {
|
2010-06-18 14:14:13 +00:00
|
|
|
if(!self || (base->lay & self->lay))
|
2010-03-26 10:52:55 +00:00
|
|
|
add_collider_cache_object(&objs, base->object, self, 0);
|
2010-06-18 14:14:13 +00:00
|
|
|
|
|
|
|
}
|
2010-03-26 10:52:55 +00:00
|
|
|
}
|
|
|
|
|
Unified effector functionality for particles, cloth and softbody
* Unified scene wide gravity (currently in scene buttons)
instead of each simulation having it's own gravity.
* Weight parameters for all effectors and an effector group
setting.
* Every effector can use noise.
* Most effectors have "shapes" point, plane, surface, every point.
- "Point" is most like the old effectors and uses the
effector location as the effector point.
- "Plane" uses the closest point on effectors local xy-plane
as the effector point.
- "Surface" uses the closest point on an effector object's
surface as the effector point.
- "Every Point" uses every point in a mesh effector object
as an effector point.
- The falloff is calculated from this point, so for example
with "surface" shape and "use only negative z axis" it's
possible to apply force only "inside" the effector object.
* Spherical effector is now renamed as "force" as it's no longer
just spherical.
* New effector parameter "flow", which makes the effector act as
surrounding air velocity, so the resulting force is
proportional to the velocity difference of the point and "air
velocity". For example a wind field with flow=1.0 results in
proper non-accelerating wind.
* New effector fields "turbulence", which creates nice random
flow paths, and "drag", which slows the points down.
* Much improved vortex field.
* Effectors can now effect particle rotation as well as location.
* Use full, or only positive/negative z-axis to apply force
(note. the z-axis is the surface normal in the case of
effector shape "surface")
* New "force field" submenu in add menu, which adds an empty
with the chosen effector (curve object for corve guides).
* Other dynamics should be quite easy to add to the effector
system too if wanted.
* "Unified" doesn't mean that force fields give the exact same results for
particles, softbody & cloth, since their final effect depends on many external
factors, like for example the surface area of the effected faces.
Code changes
* Subversion bump for correct handling of global gravity.
* Separate ui py file for common dynamics stuff.
* Particle settings updating is flushed with it's id through
DAG_id_flush_update(..).
Known issues
* Curve guides don't yet have all ui buttons in place, but they
should work none the less.
* Hair dynamics don't yet respect force fields.
Other changes
* Particle emission defaults now to frames 1-200 with life of 50
frames to fill the whole default timeline.
* Many particles drawing related crashes fixed.
* Sometimes particles didn't update on first frame properly.
* Hair with object/group visualization didn't work properly.
* Memory leaks with PointCacheID lists (Genscher, remember to
free pidlists after use :).
2009-09-30 22:10:14 +00:00
|
|
|
return objs;
|
|
|
|
}
|
2010-03-26 10:52:55 +00:00
|
|
|
|
Unified effector functionality for particles, cloth and softbody
* Unified scene wide gravity (currently in scene buttons)
instead of each simulation having it's own gravity.
* Weight parameters for all effectors and an effector group
setting.
* Every effector can use noise.
* Most effectors have "shapes" point, plane, surface, every point.
- "Point" is most like the old effectors and uses the
effector location as the effector point.
- "Plane" uses the closest point on effectors local xy-plane
as the effector point.
- "Surface" uses the closest point on an effector object's
surface as the effector point.
- "Every Point" uses every point in a mesh effector object
as an effector point.
- The falloff is calculated from this point, so for example
with "surface" shape and "use only negative z axis" it's
possible to apply force only "inside" the effector object.
* Spherical effector is now renamed as "force" as it's no longer
just spherical.
* New effector parameter "flow", which makes the effector act as
surrounding air velocity, so the resulting force is
proportional to the velocity difference of the point and "air
velocity". For example a wind field with flow=1.0 results in
proper non-accelerating wind.
* New effector fields "turbulence", which creates nice random
flow paths, and "drag", which slows the points down.
* Much improved vortex field.
* Effectors can now effect particle rotation as well as location.
* Use full, or only positive/negative z-axis to apply force
(note. the z-axis is the surface normal in the case of
effector shape "surface")
* New "force field" submenu in add menu, which adds an empty
with the chosen effector (curve object for corve guides).
* Other dynamics should be quite easy to add to the effector
system too if wanted.
* "Unified" doesn't mean that force fields give the exact same results for
particles, softbody & cloth, since their final effect depends on many external
factors, like for example the surface area of the effected faces.
Code changes
* Subversion bump for correct handling of global gravity.
* Separate ui py file for common dynamics stuff.
* Particle settings updating is flushed with it's id through
DAG_id_flush_update(..).
Known issues
* Curve guides don't yet have all ui buttons in place, but they
should work none the less.
* Hair dynamics don't yet respect force fields.
Other changes
* Particle emission defaults now to frames 1-200 with life of 50
frames to fill the whole default timeline.
* Many particles drawing related crashes fixed.
* Sometimes particles didn't update on first frame properly.
* Hair with object/group visualization didn't work properly.
* Memory leaks with PointCacheID lists (Genscher, remember to
free pidlists after use :).
2009-09-30 22:10:14 +00:00
|
|
|
void free_collider_cache(ListBase **colliders)
|
|
|
|
{
|
|
|
|
if(*colliders) {
|
|
|
|
BLI_freelistN(*colliders);
|
|
|
|
MEM_freeN(*colliders);
|
|
|
|
*colliders = NULL;
|
|
|
|
}
|
|
|
|
}
|
2010-03-26 10:52:55 +00:00
|
|
|
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
static void cloth_bvh_objcollisions_nearcheck ( ClothModifierData * clmd, CollisionModifierData *collmd,
|
|
|
|
CollPair **collisions, CollPair **collisions_index, int numresult, BVHTreeOverlap *overlap, double dt)
|
2008-07-02 20:28:49 +00:00
|
|
|
{
|
|
|
|
int i;
|
2011-05-02 03:44:02 +00:00
|
|
|
#ifdef WITH_ELTOPO
|
2011-05-01 21:39:13 +00:00
|
|
|
GHash *visithash = BLI_ghash_new(edgepair_hash, edgepair_cmp, "visthash, collision.c");
|
|
|
|
GHash *tri_visithash = BLI_ghash_new(tripair_hash, tripair_cmp, "tri_visthash, collision.c");
|
|
|
|
MemArena *arena = BLI_memarena_new(1<<16, "edge hash arena, collision.c");
|
|
|
|
#endif
|
2008-07-02 20:28:49 +00:00
|
|
|
|
2011-05-01 21:39:13 +00:00
|
|
|
*collisions = ( CollPair* ) MEM_mallocN ( sizeof ( CollPair ) * numresult * 64, "collision array" ); //*4 since cloth_collision_static can return more than 1 collision
|
2008-07-02 20:28:49 +00:00
|
|
|
*collisions_index = *collisions;
|
2011-05-01 21:39:13 +00:00
|
|
|
|
2011-05-02 03:44:02 +00:00
|
|
|
#ifdef WITH_ELTOPO
|
2011-05-01 21:39:13 +00:00
|
|
|
machine_epsilon_offset(clmd->clothObject);
|
2008-07-02 20:28:49 +00:00
|
|
|
|
|
|
|
for ( i = 0; i < numresult; i++ )
|
2008-03-03 19:02:01 +00:00
|
|
|
{
|
2011-05-01 21:39:13 +00:00
|
|
|
*collisions_index = cloth_collision ( ( ModifierData * ) clmd, ( ModifierData * ) collmd,
|
|
|
|
overlap+i, *collisions_index, dt, tri_visithash, arena );
|
2008-03-03 19:02:01 +00:00
|
|
|
}
|
2011-05-01 21:39:13 +00:00
|
|
|
|
|
|
|
for ( i = 0; i < numresult; i++ )
|
|
|
|
{
|
|
|
|
*collisions_index = cloth_edge_collision ( ( ModifierData * ) clmd, ( ModifierData * ) collmd,
|
|
|
|
overlap+i, *collisions_index, visithash, arena );
|
|
|
|
}
|
|
|
|
BLI_ghash_free(visithash, NULL, NULL);
|
|
|
|
BLI_ghash_free(tri_visithash, NULL, NULL);
|
|
|
|
BLI_memarena_free(arena);
|
2011-05-02 03:44:02 +00:00
|
|
|
#else /* WITH_ELTOPO */
|
2011-05-01 21:39:13 +00:00
|
|
|
for ( i = 0; i < numresult; i++ )
|
|
|
|
{
|
|
|
|
*collisions_index = cloth_collision ( ( ModifierData * ) clmd, ( ModifierData * ) collmd,
|
|
|
|
overlap+i, *collisions_index, dt );
|
|
|
|
}
|
2011-05-02 03:44:02 +00:00
|
|
|
#endif /* WITH_ELTOPO */
|
2011-05-01 21:39:13 +00:00
|
|
|
|
2008-07-02 20:28:49 +00:00
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2009-09-14 16:52:06 +00:00
|
|
|
static int cloth_bvh_objcollisions_resolve ( ClothModifierData * clmd, CollisionModifierData *collmd, CollPair *collisions, CollPair *collisions_index)
|
2008-07-02 20:28:49 +00:00
|
|
|
{
|
|
|
|
Cloth *cloth = clmd->clothObject;
|
2011-01-13 04:53:55 +00:00
|
|
|
int i=0, j = 0, /*numfaces = 0,*/ numverts = 0;
|
2008-07-02 20:28:49 +00:00
|
|
|
ClothVertex *verts = NULL;
|
|
|
|
int ret = 0;
|
|
|
|
int result = 0;
|
|
|
|
float tnull[3] = {0,0,0};
|
|
|
|
|
2011-01-13 04:53:55 +00:00
|
|
|
/*numfaces = clmd->clothObject->numfaces;*/ /*UNUSED*/
|
2008-07-02 20:28:49 +00:00
|
|
|
numverts = clmd->clothObject->numverts;
|
|
|
|
|
|
|
|
verts = cloth->verts;
|
|
|
|
|
2008-03-03 19:02:01 +00:00
|
|
|
// process all collisions (calculate impulses, TODO: also repulses if distance too short)
|
|
|
|
result = 1;
|
2008-04-08 12:55:35 +00:00
|
|
|
for ( j = 0; j < 5; j++ ) // 5 is just a value that ensures convergence
|
2008-03-03 19:02:01 +00:00
|
|
|
{
|
|
|
|
result = 0;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-05-07 20:42:16 +00:00
|
|
|
if ( collmd->bvhtree )
|
|
|
|
{
|
2011-05-02 03:44:02 +00:00
|
|
|
#ifdef WITH_ELTOPO
|
2011-05-01 21:39:13 +00:00
|
|
|
result += cloth_collision_response_moving(clmd, collmd, collisions, collisions_index);
|
|
|
|
result += cloth_edge_collision_response_moving(clmd, collmd, collisions, collisions_index);
|
|
|
|
#else
|
2008-05-07 20:42:16 +00:00
|
|
|
result += cloth_collision_response_static ( clmd, collmd, collisions, collisions_index );
|
2011-05-01 21:39:13 +00:00
|
|
|
#endif
|
2011-05-02 03:44:02 +00:00
|
|
|
#ifdef WITH_ELTOPO
|
2011-05-01 21:39:13 +00:00
|
|
|
{
|
|
|
|
#else
|
2008-05-14 16:09:56 +00:00
|
|
|
// apply impulses in parallel
|
|
|
|
if ( result )
|
2008-03-03 19:02:01 +00:00
|
|
|
{
|
2011-05-01 21:39:13 +00:00
|
|
|
#endif
|
2008-05-14 16:09:56 +00:00
|
|
|
for ( i = 0; i < numverts; i++ )
|
2008-04-08 12:55:35 +00:00
|
|
|
{
|
2008-05-14 16:09:56 +00:00
|
|
|
// calculate "velocities" (just xnew = xold + v; no dt in v)
|
|
|
|
if ( verts[i].impulse_count )
|
|
|
|
{
|
|
|
|
VECADDMUL ( verts[i].tv, verts[i].impulse, 1.0f / verts[i].impulse_count );
|
2011-09-12 04:14:12 +00:00
|
|
|
copy_v3_v3 ( verts[i].impulse, tnull );
|
2008-05-14 16:09:56 +00:00
|
|
|
verts[i].impulse_count = 0;
|
2008-05-26 09:39:32 +00:00
|
|
|
|
2008-05-14 16:09:56 +00:00
|
|
|
ret++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-05-07 20:42:16 +00:00
|
|
|
}
|
2008-03-03 19:02:01 +00:00
|
|
|
}
|
|
|
|
return ret;
|
2008-02-12 11:04:58 +00:00
|
|
|
}
|
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// cloth - object collisions
|
2009-01-04 14:14:06 +00:00
|
|
|
int cloth_bvh_objcollision (Object *ob, ClothModifierData * clmd, float step, float dt )
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2010-02-24 18:06:51 +00:00
|
|
|
Cloth *cloth= clmd->clothObject;
|
|
|
|
BVHTree *cloth_bvh= cloth->bvhtree;
|
2011-09-28 15:22:13 +00:00
|
|
|
unsigned int i=0, /* numfaces = 0, */ /* UNUSED */ numverts = 0, k, l, j;
|
2008-07-02 20:28:49 +00:00
|
|
|
int rounds = 0; // result counts applied collisions; ic is for debug output;
|
2008-01-29 21:01:12 +00:00
|
|
|
ClothVertex *verts = NULL;
|
2008-05-26 10:36:14 +00:00
|
|
|
int ret = 0, ret2 = 0;
|
2009-09-21 21:19:58 +00:00
|
|
|
Object **collobjs = NULL;
|
2010-10-21 08:32:53 +00:00
|
|
|
unsigned int numcollobj = 0;
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2010-02-24 18:06:51 +00:00
|
|
|
if ((clmd->sim_parms->flags & CLOTH_SIMSETTINGS_FLAG_COLLOBJ) || cloth_bvh==NULL)
|
2008-01-29 21:01:12 +00:00
|
|
|
return 0;
|
2011-05-01 21:39:13 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
verts = cloth->verts;
|
2011-09-28 15:22:13 +00:00
|
|
|
/* numfaces = cloth->numfaces; */ /* UNUSED */
|
2010-02-24 18:06:51 +00:00
|
|
|
numverts = cloth->numverts;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// static collisions
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// update cloth bvh
|
2008-05-14 16:09:56 +00:00
|
|
|
bvhtree_update_from_cloth ( clmd, 1 ); // 0 means STATIC, 1 means MOVING (see later in this function)
|
2008-05-23 20:20:14 +00:00
|
|
|
bvhselftree_update_from_cloth ( clmd, 0 ); // 0 means STATIC, 1 means MOVING (see later in this function)
|
2008-07-02 20:28:49 +00:00
|
|
|
|
2012-03-20 04:15:41 +00:00
|
|
|
collobjs = get_collisionobjects(clmd->scene, ob, clmd->coll_parms->group, &numcollobj, eModifierType_Collision);
|
2008-07-02 20:28:49 +00:00
|
|
|
|
|
|
|
if(!collobjs)
|
|
|
|
return 0;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
do
|
|
|
|
{
|
2008-07-02 20:28:49 +00:00
|
|
|
CollPair **collisions, **collisions_index;
|
|
|
|
|
2008-05-26 10:36:14 +00:00
|
|
|
ret2 = 0;
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-07-02 20:28:49 +00:00
|
|
|
collisions = MEM_callocN(sizeof(CollPair *) *numcollobj , "CollPair");
|
|
|
|
collisions_index = MEM_callocN(sizeof(CollPair *) *numcollobj , "CollPair");
|
|
|
|
|
2008-01-29 21:01:12 +00:00
|
|
|
// check all collision objects
|
2008-07-02 20:28:49 +00:00
|
|
|
for(i = 0; i < numcollobj; i++)
|
2008-01-29 21:01:12 +00:00
|
|
|
{
|
2009-09-21 21:19:58 +00:00
|
|
|
Object *collob= collobjs[i];
|
|
|
|
CollisionModifierData *collmd = (CollisionModifierData*)modifiers_findByType(collob, eModifierType_Collision);
|
2008-07-02 20:28:49 +00:00
|
|
|
BVHTreeOverlap *overlap = NULL;
|
2010-10-21 22:45:54 +00:00
|
|
|
unsigned int result = 0;
|
2008-07-02 20:28:49 +00:00
|
|
|
|
2008-08-18 14:41:24 +00:00
|
|
|
if(!collmd->bvhtree)
|
|
|
|
continue;
|
|
|
|
|
2008-07-02 20:28:49 +00:00
|
|
|
/* move object to position (step) in time */
|
2011-05-01 21:39:13 +00:00
|
|
|
|
2008-07-02 20:28:49 +00:00
|
|
|
collision_move_object ( collmd, step + dt, step );
|
|
|
|
|
|
|
|
/* search for overlapping collision pairs */
|
|
|
|
overlap = BLI_bvhtree_overlap ( cloth_bvh, collmd->bvhtree, &result );
|
|
|
|
|
|
|
|
// go to next object if no overlap is there
|
2010-05-25 13:33:59 +00:00
|
|
|
if( result && overlap ) {
|
|
|
|
/* check if collisions really happen (costly near check) */
|
2011-05-01 21:39:13 +00:00
|
|
|
cloth_bvh_objcollisions_nearcheck ( clmd, collmd, &collisions[i],
|
|
|
|
&collisions_index[i], result, overlap, dt/(float)clmd->coll_parms->loop_count);
|
2008-07-02 20:28:49 +00:00
|
|
|
|
2010-05-25 13:33:59 +00:00
|
|
|
// resolve nearby collisions
|
|
|
|
ret += cloth_bvh_objcollisions_resolve ( clmd, collmd, collisions[i], collisions_index[i]);
|
|
|
|
ret2 += ret;
|
|
|
|
}
|
|
|
|
|
2008-07-02 20:28:49 +00:00
|
|
|
if ( overlap )
|
|
|
|
MEM_freeN ( overlap );
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
|
|
|
rounds++;
|
2008-07-02 20:28:49 +00:00
|
|
|
|
|
|
|
for(i = 0; i < numcollobj; i++)
|
|
|
|
{
|
|
|
|
if ( collisions[i] ) MEM_freeN ( collisions[i] );
|
|
|
|
}
|
|
|
|
|
|
|
|
MEM_freeN(collisions);
|
|
|
|
MEM_freeN(collisions_index);
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-02-12 12:02:39 +00:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// update positions
|
|
|
|
// this is needed for bvh_calc_DOP_hull_moving() [kdop.c]
|
|
|
|
////////////////////////////////////////////////////////////
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2008-02-12 12:02:39 +00:00
|
|
|
// verts come from clmd
|
2008-04-08 12:55:35 +00:00
|
|
|
for ( i = 0; i < numverts; i++ )
|
2008-02-12 12:02:39 +00:00
|
|
|
{
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( clmd->sim_parms->flags & CLOTH_SIMSETTINGS_FLAG_GOAL )
|
|
|
|
{
|
|
|
|
if ( verts [i].flags & CLOTH_VERT_FLAG_PINNED )
|
2008-02-12 12:02:39 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-04-08 12:55:35 +00:00
|
|
|
|
|
|
|
VECADD ( verts[i].tx, verts[i].txold, verts[i].tv );
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|
2008-02-12 12:02:39 +00:00
|
|
|
////////////////////////////////////////////////////////////
|
2008-08-03 01:41:57 +00:00
|
|
|
|
2008-07-02 20:28:49 +00:00
|
|
|
|
2008-02-12 12:02:39 +00:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Test on *simple* selfcollisions
|
|
|
|
////////////////////////////////////////////////////////////
|
2008-04-08 12:55:35 +00:00
|
|
|
if ( clmd->coll_parms->flags & CLOTH_COLLSETTINGS_FLAG_SELF )
|
2008-02-12 12:02:39 +00:00
|
|
|
{
|
2010-10-21 08:32:53 +00:00
|
|
|
for(l = 0; l < (unsigned int)clmd->coll_parms->self_loop_count; l++)
|
2008-08-03 01:41:57 +00:00
|
|
|
{
|
|
|
|
// TODO: add coll quality rounds again
|
|
|
|
BVHTreeOverlap *overlap = NULL;
|
2010-10-21 08:32:53 +00:00
|
|
|
unsigned int result = 0;
|
2008-08-03 01:41:57 +00:00
|
|
|
|
|
|
|
// collisions = 1;
|
|
|
|
verts = cloth->verts; // needed for openMP
|
|
|
|
|
2011-09-28 15:22:13 +00:00
|
|
|
/* numfaces = cloth->numfaces; */ /* UNUSED */
|
2010-02-24 18:06:51 +00:00
|
|
|
numverts = cloth->numverts;
|
2008-08-03 01:41:57 +00:00
|
|
|
|
|
|
|
verts = cloth->verts;
|
|
|
|
|
|
|
|
if ( cloth->bvhselftree )
|
|
|
|
{
|
|
|
|
// search for overlapping collision pairs
|
|
|
|
overlap = BLI_bvhtree_overlap ( cloth->bvhselftree, cloth->bvhselftree, &result );
|
|
|
|
|
|
|
|
// #pragma omp parallel for private(k, i, j) schedule(static)
|
|
|
|
for ( k = 0; k < result; k++ )
|
|
|
|
{
|
|
|
|
float temp[3];
|
|
|
|
float length = 0;
|
|
|
|
float mindistance;
|
|
|
|
|
|
|
|
i = overlap[k].indexA;
|
|
|
|
j = overlap[k].indexB;
|
|
|
|
|
|
|
|
mindistance = clmd->coll_parms->selfepsilon* ( cloth->verts[i].avg_spring_len + cloth->verts[j].avg_spring_len );
|
|
|
|
|
|
|
|
if ( clmd->sim_parms->flags & CLOTH_SIMSETTINGS_FLAG_GOAL )
|
|
|
|
{
|
|
|
|
if ( ( cloth->verts [i].flags & CLOTH_VERT_FLAG_PINNED )
|
|
|
|
&& ( cloth->verts [j].flags & CLOTH_VERT_FLAG_PINNED ) )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( temp, verts[i].tx, verts[j].tx );
|
2008-08-03 01:41:57 +00:00
|
|
|
|
|
|
|
if ( ( ABS ( temp[0] ) > mindistance ) || ( ABS ( temp[1] ) > mindistance ) || ( ABS ( temp[2] ) > mindistance ) ) continue;
|
|
|
|
|
|
|
|
// check for adjacent points (i must be smaller j)
|
|
|
|
if ( BLI_edgehash_haskey ( cloth->edgehash, MIN2(i, j), MAX2(i, j) ) )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-11-10 20:43:45 +00:00
|
|
|
length = normalize_v3( temp );
|
2008-08-03 01:41:57 +00:00
|
|
|
|
|
|
|
if ( length < mindistance )
|
|
|
|
{
|
|
|
|
float correction = mindistance - length;
|
|
|
|
|
|
|
|
if ( cloth->verts [i].flags & CLOTH_VERT_FLAG_PINNED )
|
|
|
|
{
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl( temp, -correction );
|
2008-08-03 01:41:57 +00:00
|
|
|
VECADD ( verts[j].tx, verts[j].tx, temp );
|
|
|
|
}
|
|
|
|
else if ( cloth->verts [j].flags & CLOTH_VERT_FLAG_PINNED )
|
|
|
|
{
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_v3_fl( temp, correction );
|
2008-08-03 01:41:57 +00:00
|
|
|
VECADD ( verts[i].tx, verts[i].tx, temp );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-11 12:00:08 +00:00
|
|
|
mul_v3_fl( temp, correction * -0.5 );
|
2008-08-03 01:41:57 +00:00
|
|
|
VECADD ( verts[j].tx, verts[j].tx, temp );
|
|
|
|
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( verts[i].tx, verts[i].tx, temp );
|
2008-08-03 01:41:57 +00:00
|
|
|
}
|
|
|
|
ret = 1;
|
|
|
|
ret2 += ret;
|
|
|
|
}
|
2012-03-06 18:40:15 +00:00
|
|
|
else {
|
2008-08-03 01:41:57 +00:00
|
|
|
// check for approximated time collisions
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( overlap )
|
|
|
|
MEM_freeN ( overlap );
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// SELFCOLLISIONS: update velocities
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
if ( ret2 )
|
|
|
|
{
|
|
|
|
for ( i = 0; i < cloth->numverts; i++ )
|
|
|
|
{
|
|
|
|
if ( ! ( verts [i].flags & CLOTH_VERT_FLAG_PINNED ) )
|
|
|
|
{
|
2012-03-09 06:04:17 +00:00
|
|
|
sub_v3_v3v3 ( verts[i].tv, verts[i].tx, verts[i].txold );
|
2008-08-03 01:41:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////
|
2008-02-12 11:04:58 +00:00
|
|
|
}
|
|
|
|
}
|
2008-05-26 10:36:14 +00:00
|
|
|
while ( ret2 && ( clmd->coll_parms->loop_count>rounds ) );
|
2008-07-02 20:28:49 +00:00
|
|
|
|
|
|
|
if(collobjs)
|
2008-08-03 01:00:51 +00:00
|
|
|
MEM_freeN(collobjs);
|
2008-04-08 12:55:35 +00:00
|
|
|
|
2011-05-01 21:39:13 +00:00
|
|
|
return 1|MIN2 ( ret, 1 );
|
2008-01-29 21:01:12 +00:00
|
|
|
}
|