Added soft_cfm and soft_erp to the general "contact" initialization

for physical prim interactions. They were not previously enabled
for prim-prim interactions.
0.6.0-stable
Charles Krinke 2008-11-01 17:30:06 +00:00
parent 865b5bb317
commit 1e376deedd
1 changed files with 12 additions and 7 deletions

View File

@ -386,9 +386,12 @@ namespace OpenSim.Region.Physics.OdePlugin
staticPrimspace = new IntPtr[(int)(300 / metersInSpace), (int)(300 / metersInSpace)];
// Centeral contact friction and bounce
// General contact friction, bounce and other parameters
contact.surface.mode |= (d.ContactFlags.SoftERP | d.ContactFlags.SoftCFM);
contact.surface.mu = nmAvatarObjectContactFriction;
contact.surface.bounce = nmAvatarObjectContactBounce;
contact.surface.soft_cfm = 0.01f; //ckrinke 11-08
contact.surface.soft_erp = 0.010f; //ckrinke 11-08
// Terrain contact friction and Bounce
// This is the *non* moving version. Use this when an avatar
@ -398,12 +401,6 @@ namespace OpenSim.Region.Physics.OdePlugin
TerrainContact.surface.bounce = nmTerrainContactBounce;
TerrainContact.surface.soft_erp = nmTerrainContactERP;
WaterContact.surface.mode |= (d.ContactFlags.SoftERP | d.ContactFlags.SoftCFM);
WaterContact.surface.mu = 0f; // No friction
WaterContact.surface.bounce = 0.0f; // No bounce
WaterContact.surface.soft_cfm = 0.01f;
WaterContact.surface.soft_erp = 0.010f;
// Prim contact friction and bounce
// THis is the *non* moving version of friction and bounce
// Use this when an avatar comes in contact with a prim
@ -418,6 +415,14 @@ namespace OpenSim.Region.Physics.OdePlugin
AvatarMovementTerrainContact.surface.bounce = mTerrainContactBounce;
AvatarMovementTerrainContact.surface.soft_erp = mTerrainContactERP;
// And finally, WaterContact parameters. These are the five different d.Contact defined
// currently (11-08)
WaterContact.surface.mode |= (d.ContactFlags.SoftERP | d.ContactFlags.SoftCFM);
WaterContact.surface.mu = 0f; // No friction
WaterContact.surface.bounce = 0.0f; // No bounce
WaterContact.surface.soft_cfm = 0.01f;
WaterContact.surface.soft_erp = 0.010f;
d.HashSpaceSetLevels(space, worldHashspaceLow, worldHashspaceHigh);
// Set the gravity,, don't disable things automatically (we set it explicitly on some things)