* A Few physical prim + linkset fixes. Prevent some crashes
parent
b32f72a438
commit
6f7a560c04
|
@ -700,6 +700,17 @@ namespace OpenSim.Region.Physics.OdePlugin
|
|||
|
||||
|
||||
d.BodyDestroy(Body);
|
||||
lock (childrenPrim)
|
||||
{
|
||||
if (childrenPrim.Count > 0)
|
||||
{
|
||||
foreach (OdePrim prm in childrenPrim)
|
||||
{
|
||||
_parent_scene.remActivePrim(prm);
|
||||
prm.Body = IntPtr.Zero;
|
||||
}
|
||||
}
|
||||
}
|
||||
Body = IntPtr.Zero;
|
||||
}
|
||||
}
|
||||
|
@ -971,6 +982,12 @@ namespace OpenSim.Region.Physics.OdePlugin
|
|||
prm.m_collisionCategories |= CollisionCategories.Body;
|
||||
prm.m_collisionFlags |= (CollisionCategories.Land | CollisionCategories.Wind);
|
||||
|
||||
if (prm.prim_geom == IntPtr.Zero)
|
||||
{
|
||||
m_log.Warn("[PHYSICS]: Unable to link one of the linkset elements. No geom yet");
|
||||
continue;
|
||||
}
|
||||
|
||||
d.GeomSetCategoryBits(prm.prim_geom, (int)prm.m_collisionCategories);
|
||||
d.GeomSetCollideBits(prm.prim_geom, (int)prm.m_collisionFlags);
|
||||
|
||||
|
@ -1345,7 +1362,9 @@ namespace OpenSim.Region.Physics.OdePlugin
|
|||
{
|
||||
if (m_isphysical)
|
||||
{
|
||||
// This is a fallback.. May no longer be necessary.
|
||||
|
||||
if (!m_disabled && !m_taintremove && !childPrim)
|
||||
{
|
||||
if (Body == IntPtr.Zero)
|
||||
enableBody();
|
||||
//Prim auto disable after 20 frames,
|
||||
|
@ -1358,7 +1377,10 @@ namespace OpenSim.Region.Physics.OdePlugin
|
|||
m_linkJoint = IntPtr.Zero;
|
||||
}
|
||||
}
|
||||
if (Body != IntPtr.Zero)
|
||||
{
|
||||
d.BodySetPosition(Body, _position.X, _position.Y, _position.Z);
|
||||
|
||||
if (_parent != null)
|
||||
{
|
||||
OdePrim odParent = (OdePrim)_parent;
|
||||
|
@ -1372,6 +1394,16 @@ namespace OpenSim.Region.Physics.OdePlugin
|
|||
d.BodyEnable(Body);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_log.Warn("[PHYSICS]: Body Still null after enableBody(). This is a crash scenario.");
|
||||
}
|
||||
}
|
||||
//else
|
||||
// {
|
||||
//m_log.Debug("[BUG]: race!");
|
||||
//}
|
||||
}
|
||||
else
|
||||
{
|
||||
// string primScenAvatarIn = _parent_scene.whichspaceamIin(_position);
|
||||
// int[] arrayitem = _parent_scene.calculateSpaceArrayItemFromPos(_position);
|
||||
|
|
Loading…
Reference in New Issue