diff options
author | UbitUmarov | 2012-12-11 04:36:27 +0000 |
---|---|---|
committer | UbitUmarov | 2012-12-11 04:36:27 +0000 |
commit | 80639ace95089414423b16f90c8994f50e010373 (patch) | |
tree | 961834085922f4e585344faebf5204eaa2c7d0e0 | |
parent | typo fix (diff) | |
download | opensim-SC_OLD-80639ace95089414423b16f90c8994f50e010373.zip opensim-SC_OLD-80639ace95089414423b16f90c8994f50e010373.tar.gz opensim-SC_OLD-80639ace95089414423b16f90c8994f50e010373.tar.bz2 opensim-SC_OLD-80639ace95089414423b16f90c8994f50e010373.tar.xz |
a few more changes on avatar collider
-rw-r--r-- | OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs | 347 | ||||
-rw-r--r-- | OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs | 315 |
2 files changed, 363 insertions, 299 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs index 15bdc57..1b25faf 100644 --- a/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs +++ b/OpenSim/Region/Physics/UbitOdePlugin/ODECharacter.cs | |||
@@ -74,7 +74,6 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
74 | 74 | ||
75 | private Vector3 _position; | 75 | private Vector3 _position; |
76 | private Vector3 _zeroPosition; | 76 | private Vector3 _zeroPosition; |
77 | private bool _zeroFlag = false; | ||
78 | private Vector3 _velocity; | 77 | private Vector3 _velocity; |
79 | private Vector3 _target_velocity; | 78 | private Vector3 _target_velocity; |
80 | private Vector3 _acceleration; | 79 | private Vector3 _acceleration; |
@@ -90,11 +89,15 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
90 | public float PID_D; | 89 | public float PID_D; |
91 | public float PID_P; | 90 | public float PID_P; |
92 | 91 | ||
92 | private float timeStep; | ||
93 | private float invtimeStep; | ||
94 | |||
93 | private float m_feetOffset = 0; | 95 | private float m_feetOffset = 0; |
94 | private float feetOff = 0; | 96 | private float feetOff = 0; |
95 | private float feetSZ = 0.5f; | 97 | private float feetSZ = 0.5f; |
96 | const float feetScale = 0.8f; | 98 | const float feetScale = 0.8f; |
97 | private float boneOff = 0; | 99 | private float boneOff = 0; |
100 | private float m_lastVelocitySqr = 0; | ||
98 | 101 | ||
99 | public float walkDivisor = 1.3f; | 102 | public float walkDivisor = 1.3f; |
100 | public float runDivisor = 0.8f; | 103 | public float runDivisor = 0.8f; |
@@ -103,6 +106,9 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
103 | private bool m_iscollidingGround = false; | 106 | private bool m_iscollidingGround = false; |
104 | private bool m_iscollidingObj = false; | 107 | private bool m_iscollidingObj = false; |
105 | private bool m_alwaysRun = false; | 108 | private bool m_alwaysRun = false; |
109 | |||
110 | private bool _zeroFlag = false; | ||
111 | |||
106 | private int m_requestedUpdateFrequency = 0; | 112 | private int m_requestedUpdateFrequency = 0; |
107 | private uint m_localID = 0; | 113 | private uint m_localID = 0; |
108 | public bool m_returnCollisions = false; | 114 | public bool m_returnCollisions = false; |
@@ -120,6 +126,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
120 | int m_colliderfilter = 0; | 126 | int m_colliderfilter = 0; |
121 | int m_colliderGroundfilter = 0; | 127 | int m_colliderGroundfilter = 0; |
122 | int m_colliderObjectfilter = 0; | 128 | int m_colliderObjectfilter = 0; |
129 | bool m_collisionException = false; | ||
123 | 130 | ||
124 | // Default we're a Character | 131 | // Default we're a Character |
125 | private CollisionCategories m_collisionCategories = (CollisionCategories.Character); | 132 | private CollisionCategories m_collisionCategories = (CollisionCategories.Character); |
@@ -132,10 +139,11 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
132 | // we do land collisions not ode | CollisionCategories.Land); | 139 | // we do land collisions not ode | CollisionCategories.Land); |
133 | public IntPtr Body = IntPtr.Zero; | 140 | public IntPtr Body = IntPtr.Zero; |
134 | private OdeScene _parent_scene; | 141 | private OdeScene _parent_scene; |
135 | public IntPtr topbox = IntPtr.Zero; | 142 | private IntPtr topbox = IntPtr.Zero; |
136 | public IntPtr midbox = IntPtr.Zero; | 143 | private IntPtr midbox = IntPtr.Zero; |
137 | public IntPtr feetbox = IntPtr.Zero; | 144 | private IntPtr feetbox = IntPtr.Zero; |
138 | public IntPtr bonebox = IntPtr.Zero; | 145 | private IntPtr bbox = IntPtr.Zero; |
146 | public IntPtr collider = IntPtr.Zero; | ||
139 | 147 | ||
140 | public IntPtr Amotor = IntPtr.Zero; | 148 | public IntPtr Amotor = IntPtr.Zero; |
141 | 149 | ||
@@ -143,6 +151,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
143 | 151 | ||
144 | 152 | ||
145 | 153 | ||
154 | |||
146 | public int m_eventsubscription = 0; | 155 | public int m_eventsubscription = 0; |
147 | private int m_cureventsubscription = 0; | 156 | private int m_cureventsubscription = 0; |
148 | private CollisionEventUpdate CollisionEventsThisFrame = null; | 157 | private CollisionEventUpdate CollisionEventsThisFrame = null; |
@@ -160,6 +169,9 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
160 | { | 169 | { |
161 | m_uuid = UUID.Random(); | 170 | m_uuid = UUID.Random(); |
162 | 171 | ||
172 | timeStep = parent_scene.ODE_STEPSIZE; | ||
173 | invtimeStep = 1 / timeStep; | ||
174 | |||
163 | if (pos.IsFinite()) | 175 | if (pos.IsFinite()) |
164 | { | 176 | { |
165 | if (pos.Z > 99999f) | 177 | if (pos.Z > 99999f) |
@@ -208,8 +220,8 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
208 | 220 | ||
209 | m_mass = m_density * m_size.X * m_size.Y * m_size.Z; ; // sure we have a default | 221 | m_mass = m_density * m_size.X * m_size.Y * m_size.Z; ; // sure we have a default |
210 | 222 | ||
211 | PID_D = basePID_D * m_mass / parent_scene.ODE_STEPSIZE; | 223 | PID_D = basePID_D * m_mass * invtimeStep; |
212 | PID_P = basePID_P * m_mass / parent_scene.ODE_STEPSIZE; | 224 | PID_P = basePID_P * m_mass * invtimeStep; |
213 | 225 | ||
214 | m_isPhysical = false; // current status: no ODE information exists | 226 | m_isPhysical = false; // current status: no ODE information exists |
215 | 227 | ||
@@ -292,7 +304,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
292 | set | 304 | set |
293 | { | 305 | { |
294 | flying = value; | 306 | flying = value; |
295 | // m_log.DebugFormat("[PHYSICS]: Set OdeCharacter Flying to {0}", flying); | 307 | // m_log.DebugFormat("[PHYSICS]: Set OdeCharacter Flying to {0}", flying); |
296 | } | 308 | } |
297 | } | 309 | } |
298 | 310 | ||
@@ -336,25 +348,25 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
336 | get { return m_iscollidingGround; } | 348 | get { return m_iscollidingGround; } |
337 | set | 349 | set |
338 | { | 350 | { |
339 | /* we now control this | 351 | /* we now control this |
340 | if (value) | 352 | if (value) |
341 | { | 353 | { |
342 | m_colliderGroundfilter += 2; | 354 | m_colliderGroundfilter += 2; |
343 | if (m_colliderGroundfilter > 2) | 355 | if (m_colliderGroundfilter > 2) |
344 | m_colliderGroundfilter = 2; | 356 | m_colliderGroundfilter = 2; |
345 | } | 357 | } |
346 | else | 358 | else |
347 | { | 359 | { |
348 | m_colliderGroundfilter--; | 360 | m_colliderGroundfilter--; |
349 | if (m_colliderGroundfilter < 0) | 361 | if (m_colliderGroundfilter < 0) |
350 | m_colliderGroundfilter = 0; | 362 | m_colliderGroundfilter = 0; |
351 | } | 363 | } |
352 | 364 | ||
353 | if (m_colliderGroundfilter == 0) | 365 | if (m_colliderGroundfilter == 0) |
354 | m_iscollidingGround = false; | 366 | m_iscollidingGround = false; |
355 | else | 367 | else |
356 | m_iscollidingGround = true; | 368 | m_iscollidingGround = true; |
357 | */ | 369 | */ |
358 | } | 370 | } |
359 | 371 | ||
360 | } | 372 | } |
@@ -386,7 +398,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
386 | else | 398 | else |
387 | m_iscollidingObj = true; | 399 | m_iscollidingObj = true; |
388 | 400 | ||
389 | // m_iscollidingObj = value; | 401 | // m_iscollidingObj = value; |
390 | 402 | ||
391 | if (m_iscollidingObj) | 403 | if (m_iscollidingObj) |
392 | m_pidControllerActive = false; | 404 | m_pidControllerActive = false; |
@@ -634,8 +646,8 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
634 | get { return m_orientation; } | 646 | get { return m_orientation; } |
635 | set | 647 | set |
636 | { | 648 | { |
637 | // fakeori = value; | 649 | // fakeori = value; |
638 | // givefakeori++; | 650 | // givefakeori++; |
639 | 651 | ||
640 | value.Normalize(); | 652 | value.Normalize(); |
641 | AddChange(changes.Orientation, value); | 653 | AddChange(changes.Orientation, value); |
@@ -690,6 +702,46 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
690 | AddChange(changes.Momentum, momentum); | 702 | AddChange(changes.Momentum, momentum); |
691 | } | 703 | } |
692 | 704 | ||
705 | private void ajustCollider() | ||
706 | { | ||
707 | float vq = _velocity.LengthSquared(); | ||
708 | if (m_lastVelocitySqr != vq) | ||
709 | { | ||
710 | m_lastVelocitySqr = vq; | ||
711 | if (vq > 100.0f) | ||
712 | { | ||
713 | Vector3 off = _velocity; | ||
714 | float t = 0.5f * timeStep; | ||
715 | off = off * t; | ||
716 | d.GeomSetOffsetPosition(bbox, off.X, off.Y, off.Z); | ||
717 | off.X = 2.0f * (m_size.X + Math.Abs(off.X)); | ||
718 | off.Y = 2.0f * (m_size.Y + Math.Abs(off.Y)); | ||
719 | off.Z = m_size.Z + 2.0f * Math.Abs(off.Z); | ||
720 | d.GeomBoxSetLengths(bbox, off.X, off.Y, off.Z); | ||
721 | |||
722 | d.GeomSetCategoryBits(bbox, (uint)m_collisionCategories); | ||
723 | d.GeomSetCollideBits(bbox, (uint)m_collisionFlags); | ||
724 | d.GeomSetCategoryBits(topbox, 0); | ||
725 | d.GeomSetCollideBits(topbox, 0); | ||
726 | d.GeomSetCategoryBits(midbox, 0); | ||
727 | d.GeomSetCollideBits(midbox, 0); | ||
728 | d.GeomSetCategoryBits(feetbox, 0); | ||
729 | d.GeomSetCollideBits(feetbox, 0); | ||
730 | } | ||
731 | else | ||
732 | { | ||
733 | d.GeomSetCategoryBits(bbox, 0); | ||
734 | d.GeomSetCollideBits(bbox, 0); | ||
735 | d.GeomSetCategoryBits(topbox, (uint)m_collisionCategories); | ||
736 | d.GeomSetCollideBits(topbox, (uint)m_collisionFlags); | ||
737 | d.GeomSetCategoryBits(midbox, (uint)m_collisionCategories); | ||
738 | d.GeomSetCollideBits(midbox, (uint)m_collisionFlags); | ||
739 | d.GeomSetCategoryBits(feetbox, (uint)m_collisionCategories); | ||
740 | d.GeomSetCollideBits(feetbox, (uint)m_collisionFlags); | ||
741 | } | ||
742 | } | ||
743 | } | ||
744 | |||
693 | private void AvatarGeomAndBodyCreation(float npositionX, float npositionY, float npositionZ) | 745 | private void AvatarGeomAndBodyCreation(float npositionX, float npositionY, float npositionZ) |
694 | { | 746 | { |
695 | // sizes one day should came from visual parameters | 747 | // sizes one day should came from visual parameters |
@@ -697,7 +749,6 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
697 | float sy = m_size.Y; | 749 | float sy = m_size.Y; |
698 | float sz = m_size.Z; | 750 | float sz = m_size.Z; |
699 | 751 | ||
700 | |||
701 | float topsx = sx * 0.9f; | 752 | float topsx = sx * 0.9f; |
702 | float midsx = sx; | 753 | float midsx = sx; |
703 | float feetsx = sx * feetScale; | 754 | float feetsx = sx * feetScale; |
@@ -732,21 +783,17 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
732 | 783 | ||
733 | _parent_scene.waitForSpaceUnlock(_parent_scene.CharsSpace); | 784 | _parent_scene.waitForSpaceUnlock(_parent_scene.CharsSpace); |
734 | 785 | ||
735 | feetbox = d.CreateBox(_parent_scene.CharsSpace, feetsx, feetsy, feetsz); | 786 | collider = d.HashSpaceCreate(_parent_scene.CharsSpace); |
736 | d.GeomSetCategoryBits(feetbox, (uint)m_collisionCategories); | 787 | d.HashSpaceSetLevels(collider, -4, 3); |
737 | d.GeomSetCollideBits(feetbox, (uint)m_collisionFlags); | 788 | d.SpaceSetSublevel(collider, 3); |
738 | 789 | d.SpaceSetCleanup(collider, false); | |
739 | midbox = d.CreateBox(_parent_scene.CharsSpace, midsx, midsy, midsz); | 790 | d.GeomSetCategoryBits(collider, (uint)m_collisionCategories); |
740 | d.GeomSetCategoryBits(midbox, (uint)m_collisionCategories); | 791 | d.GeomSetCollideBits(collider, (uint)m_collisionFlags); |
741 | d.GeomSetCollideBits(midbox, (uint)m_collisionFlags); | ||
742 | 792 | ||
743 | topbox = d.CreateBox(_parent_scene.CharsSpace, topsx, topsy, topsz); | 793 | feetbox = d.CreateBox(collider, feetsx, feetsy, feetsz); |
744 | d.GeomSetCategoryBits(topbox, (uint)m_collisionCategories); | 794 | midbox = d.CreateBox(collider, midsx, midsy, midsz); |
745 | d.GeomSetCollideBits(topbox, (uint)m_collisionFlags); | 795 | topbox = d.CreateBox(collider, topsx, topsy, topsz); |
746 | 796 | bbox = d.CreateBox(collider, m_size.X, m_size.Y, m_size.Z); | |
747 | bonebox = d.CreateBox(_parent_scene.CharsSpace, bonesx, bonesy, bonesz); | ||
748 | d.GeomSetCategoryBits(bonebox, (uint)m_collisionCategories); | ||
749 | d.GeomSetCollideBits(bonebox, (uint)m_collisionFlags); | ||
750 | 797 | ||
751 | m_mass = m_density * m_size.X * m_size.Y * m_size.Z; // update mass | 798 | m_mass = m_density * m_size.X * m_size.Y * m_size.Z; // update mass |
752 | 799 | ||
@@ -758,9 +805,13 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
758 | Body = d.BodyCreate(_parent_scene.world); | 805 | Body = d.BodyCreate(_parent_scene.world); |
759 | 806 | ||
760 | _zeroFlag = false; | 807 | _zeroFlag = false; |
808 | m_collisionException = false; | ||
761 | m_pidControllerActive = true; | 809 | m_pidControllerActive = true; |
762 | m_freemove = false; | 810 | m_freemove = false; |
763 | 811 | ||
812 | _velocity = Vector3.Zero; | ||
813 | m_lastVelocitySqr = 0; | ||
814 | |||
764 | d.BodySetAutoDisableFlag(Body, false); | 815 | d.BodySetAutoDisableFlag(Body, false); |
765 | d.BodySetPosition(Body, npositionX, npositionY, npositionZ); | 816 | d.BodySetPosition(Body, npositionX, npositionY, npositionZ); |
766 | 817 | ||
@@ -772,12 +823,14 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
772 | d.GeomSetBody(feetbox, Body); | 823 | d.GeomSetBody(feetbox, Body); |
773 | d.GeomSetBody(midbox, Body); | 824 | d.GeomSetBody(midbox, Body); |
774 | d.GeomSetBody(topbox, Body); | 825 | d.GeomSetBody(topbox, Body); |
775 | d.GeomSetBody(bonebox, Body); | 826 | d.GeomSetBody(bbox, Body); |
776 | 827 | ||
777 | d.GeomSetOffsetPosition(feetbox, 0, 0, feetz); | 828 | d.GeomSetOffsetPosition(feetbox, 0, 0, feetz); |
778 | d.GeomSetOffsetPosition(midbox, 0, 0, midz); | 829 | d.GeomSetOffsetPosition(midbox, 0, 0, midz); |
779 | d.GeomSetOffsetPosition(topbox, 0, 0, topz); | 830 | d.GeomSetOffsetPosition(topbox, 0, 0, topz); |
780 | d.GeomSetOffsetPosition(bonebox, 0, 0, m_feetOffset); | 831 | |
832 | ajustCollider(); | ||
833 | |||
781 | 834 | ||
782 | // The purpose of the AMotor here is to keep the avatar's physical | 835 | // The purpose of the AMotor here is to keep the avatar's physical |
783 | // surrogate from rotating while moving | 836 | // surrogate from rotating while moving |
@@ -841,44 +894,109 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
841 | if (topbox != IntPtr.Zero) | 894 | if (topbox != IntPtr.Zero) |
842 | { | 895 | { |
843 | _parent_scene.actor_name_map.Remove(topbox); | 896 | _parent_scene.actor_name_map.Remove(topbox); |
844 | _parent_scene.waitForSpaceUnlock(_parent_scene.CharsSpace); | 897 | _parent_scene.waitForSpaceUnlock(collider); |
845 | d.GeomDestroy(topbox); | 898 | d.GeomDestroy(topbox); |
846 | topbox = IntPtr.Zero; | 899 | topbox = IntPtr.Zero; |
847 | } | 900 | } |
848 | if (midbox != IntPtr.Zero) | 901 | if (midbox != IntPtr.Zero) |
849 | { | 902 | { |
850 | _parent_scene.actor_name_map.Remove(midbox); | 903 | _parent_scene.actor_name_map.Remove(midbox); |
851 | _parent_scene.waitForSpaceUnlock(_parent_scene.CharsSpace); | 904 | _parent_scene.waitForSpaceUnlock(collider); |
852 | d.GeomDestroy(midbox); | 905 | d.GeomDestroy(midbox); |
853 | midbox = IntPtr.Zero; | 906 | midbox = IntPtr.Zero; |
854 | } | 907 | } |
855 | if (feetbox != IntPtr.Zero) | 908 | if (feetbox != IntPtr.Zero) |
856 | { | 909 | { |
857 | _parent_scene.actor_name_map.Remove(feetbox); | 910 | _parent_scene.actor_name_map.Remove(feetbox); |
858 | _parent_scene.waitForSpaceUnlock(_parent_scene.CharsSpace); | 911 | _parent_scene.waitForSpaceUnlock(collider); |
859 | d.GeomDestroy(feetbox); | 912 | d.GeomDestroy(feetbox); |
860 | feetbox = IntPtr.Zero; | 913 | feetbox = IntPtr.Zero; |
861 | } | 914 | } |
862 | 915 | ||
863 | if (bonebox != IntPtr.Zero) | 916 | if (bbox != IntPtr.Zero) |
917 | { | ||
918 | _parent_scene.actor_name_map.Remove(bbox); | ||
919 | _parent_scene.waitForSpaceUnlock(collider); | ||
920 | d.GeomDestroy(bbox); | ||
921 | bbox = IntPtr.Zero; | ||
922 | } | ||
923 | |||
924 | if (collider != IntPtr.Zero) | ||
864 | { | 925 | { |
865 | _parent_scene.actor_name_map.Remove(bonebox); | 926 | d.SpaceDestroy(collider); |
866 | _parent_scene.waitForSpaceUnlock(_parent_scene.CharsSpace); | 927 | collider = IntPtr.Zero; |
867 | d.GeomDestroy(bonebox); | ||
868 | bonebox = IntPtr.Zero; | ||
869 | } | 928 | } |
870 | 929 | ||
871 | } | 930 | } |
872 | 931 | ||
932 | //in place 2D rotation around Z assuming rot is normalised and is a rotation around Z | ||
933 | public void RotateXYonZ(ref float x, ref float y, ref Quaternion rot) | ||
934 | { | ||
935 | float sin = 2.0f * rot.Z * rot.W; | ||
936 | float cos = rot.W * rot.W - rot.Z * rot.Z; | ||
937 | float tx = x; | ||
938 | |||
939 | x = tx * cos - y * sin; | ||
940 | y = tx * sin + y * cos; | ||
941 | } | ||
942 | public void RotateXYonZ(ref float x, ref float y, ref float sin, ref float cos) | ||
943 | { | ||
944 | float tx = x; | ||
945 | x = tx * cos - y * sin; | ||
946 | y = tx * sin + y * cos; | ||
947 | } | ||
948 | public void invRotateXYonZ(ref float x, ref float y, ref float sin, ref float cos) | ||
949 | { | ||
950 | float tx = x; | ||
951 | x = tx * cos + y * sin; | ||
952 | y = -tx * sin + y * cos; | ||
953 | } | ||
954 | |||
955 | public void invRotateXYonZ(ref float x, ref float y, ref Quaternion rot) | ||
956 | { | ||
957 | float sin = - 2.0f * rot.Z * rot.W; | ||
958 | float cos = rot.W * rot.W - rot.Z * rot.Z; | ||
959 | float tx = x; | ||
960 | |||
961 | x = tx * cos - y * sin; | ||
962 | y = tx * sin + y * cos; | ||
963 | } | ||
964 | |||
965 | |||
873 | public bool Collide(IntPtr me, bool reverse, ref d.ContactGeom contact, ref bool feetcollision) | 966 | public bool Collide(IntPtr me, bool reverse, ref d.ContactGeom contact, ref bool feetcollision) |
874 | { | 967 | { |
875 | feetcollision = false; | 968 | feetcollision = false; |
969 | if (m_collisionException) | ||
970 | return false; | ||
876 | 971 | ||
877 | if (me == bonebox) // inner bone | 972 | if (me == bbox) // if moving fast |
878 | { | 973 | { |
879 | if (contact.pos.Z - _position.Z < boneOff) | 974 | // force a full inelastic collision |
880 | IsColliding = true; | 975 | m_collisionException = true; |
881 | return true; | 976 | |
977 | Vector3 off = m_size * 0.5f; | ||
978 | off.X += contact.depth; | ||
979 | off.Y += contact.depth; | ||
980 | off.Z += contact.depth; | ||
981 | if (reverse) | ||
982 | { | ||
983 | off.X *= -contact.normal.X; | ||
984 | off.Y *= -contact.normal.Y; | ||
985 | off.Z *= -contact.normal.Z; | ||
986 | } | ||
987 | else | ||
988 | { | ||
989 | off.X *= contact.normal.X; | ||
990 | off.Y *= contact.normal.Y; | ||
991 | off.Z *= contact.normal.Z; | ||
992 | } | ||
993 | |||
994 | off.X += contact.pos.X; | ||
995 | off.Y += contact.pos.Y; | ||
996 | off.Z += contact.pos.Z; | ||
997 | |||
998 | _position = off; | ||
999 | return false; | ||
882 | } | 1000 | } |
883 | 1001 | ||
884 | if (me == topbox) // keep a box head | 1002 | if (me == topbox) // keep a box head |
@@ -890,6 +1008,21 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
890 | 1008 | ||
891 | if (me == midbox) | 1009 | if (me == midbox) |
892 | { | 1010 | { |
1011 | if (Math.Abs(contact.normal.Z) > 0.95f) | ||
1012 | { | ||
1013 | float nz = contact.normal.Z; | ||
1014 | if (!reverse) | ||
1015 | nz = -nz; | ||
1016 | |||
1017 | if (nz > 0) | ||
1018 | return true; // missed head TODO | ||
1019 | |||
1020 | // missed feet collision? | ||
1021 | |||
1022 | |||
1023 | return true; | ||
1024 | } | ||
1025 | |||
893 | t = offx * offx + offy * offy; | 1026 | t = offx * offx + offy * offy; |
894 | t = (float)Math.Sqrt(t); | 1027 | t = (float)Math.Sqrt(t); |
895 | t = 1 / t; | 1028 | t = 1 / t; |
@@ -917,12 +1050,19 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
917 | 1050 | ||
918 | if (Math.Abs(contact.normal.Z) > 0.95f) | 1051 | if (Math.Abs(contact.normal.Z) > 0.95f) |
919 | { | 1052 | { |
1053 | if (contact.normal.Z > 0) | ||
1054 | contact.normal.Z = 1.0f; | ||
1055 | else | ||
1056 | contact.normal.Z = -1.0f; | ||
1057 | contact.normal.X = 0.0f; | ||
1058 | contact.normal.Y = 0.0f; | ||
920 | feetcollision = true; | 1059 | feetcollision = true; |
921 | if (h < boneOff) | 1060 | if (h < boneOff) |
922 | IsColliding = true; | 1061 | IsColliding = true; |
923 | return true; | 1062 | return true; |
924 | } | 1063 | } |
925 | 1064 | ||
1065 | |||
926 | float offz = h - feetOff; // distance from top of feetbox | 1066 | float offz = h - feetOff; // distance from top of feetbox |
927 | 1067 | ||
928 | if (offz > 0) | 1068 | if (offz > 0) |
@@ -971,11 +1111,28 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
971 | /// This is the avatar's movement control + PID Controller | 1111 | /// This is the avatar's movement control + PID Controller |
972 | /// </summary> | 1112 | /// </summary> |
973 | /// <param name="timeStep"></param> | 1113 | /// <param name="timeStep"></param> |
974 | public void Move(float timeStep, List<OdeCharacter> defects) | 1114 | public void Move(List<OdeCharacter> defects) |
975 | { | 1115 | { |
976 | if (Body == IntPtr.Zero) | 1116 | if (Body == IntPtr.Zero) |
977 | return; | 1117 | return; |
978 | 1118 | ||
1119 | if (m_collisionException) | ||
1120 | { | ||
1121 | d.BodySetPosition(Body,_position.X, _position.Y, _position.Z); | ||
1122 | d.BodySetLinearVel(Body, 0, 0, 0); | ||
1123 | |||
1124 | float v = _velocity.Length(); | ||
1125 | if (v != 0) | ||
1126 | { | ||
1127 | v = 6.0f / v; | ||
1128 | _velocity = _velocity * v; | ||
1129 | d.BodySetLinearVel(Body, _velocity.X, _velocity.Y, _velocity.Z); | ||
1130 | } | ||
1131 | ajustCollider(); | ||
1132 | m_collisionException = false; | ||
1133 | return; | ||
1134 | } | ||
1135 | |||
979 | d.Vector3 dtmp = d.BodyGetPosition(Body); | 1136 | d.Vector3 dtmp = d.BodyGetPosition(Body); |
980 | Vector3 localpos = new Vector3(dtmp.X, dtmp.Y, dtmp.Z); | 1137 | Vector3 localpos = new Vector3(dtmp.X, dtmp.Y, dtmp.Z); |
981 | 1138 | ||
@@ -1049,6 +1206,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1049 | 1206 | ||
1050 | //****************************************** | 1207 | //****************************************** |
1051 | // colide with land | 1208 | // colide with land |
1209 | |||
1052 | d.AABB aabb; | 1210 | d.AABB aabb; |
1053 | d.GeomGetAABB(feetbox, out aabb); | 1211 | d.GeomGetAABB(feetbox, out aabb); |
1054 | float chrminZ = aabb.MinZ - 0.02f; // move up a bit | 1212 | float chrminZ = aabb.MinZ - 0.02f; // move up a bit |
@@ -1095,8 +1253,8 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1095 | contact.Position.X = localpos.X; | 1253 | contact.Position.X = localpos.X; |
1096 | contact.Position.Y = localpos.Y; | 1254 | contact.Position.Y = localpos.Y; |
1097 | contact.Position.Z = chrminZ; | 1255 | contact.Position.Z = chrminZ; |
1098 | contact.SurfaceNormal.X = 0f; | 1256 | contact.SurfaceNormal.X = 0.0f; |
1099 | contact.SurfaceNormal.Y = 0f; | 1257 | contact.SurfaceNormal.Y = 0.0f; |
1100 | contact.SurfaceNormal.Z = -1f; | 1258 | contact.SurfaceNormal.Z = -1f; |
1101 | contact.RelativeSpeed = -vel.Z; | 1259 | contact.RelativeSpeed = -vel.Z; |
1102 | contact.CharacterFeet = true; | 1260 | contact.CharacterFeet = true; |
@@ -1118,6 +1276,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1118 | m_iscollidingGround = false; | 1276 | m_iscollidingGround = false; |
1119 | } | 1277 | } |
1120 | 1278 | ||
1279 | |||
1121 | //****************************************** | 1280 | //****************************************** |
1122 | 1281 | ||
1123 | bool tviszero = (_target_velocity.X == 0.0f && _target_velocity.Y == 0.0f && _target_velocity.Z == 0.0f); | 1282 | bool tviszero = (_target_velocity.X == 0.0f && _target_velocity.Y == 0.0f && _target_velocity.Z == 0.0f); |
@@ -1253,21 +1412,58 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1253 | } | 1412 | } |
1254 | 1413 | ||
1255 | // update our local ideia of position velocity and aceleration | 1414 | // update our local ideia of position velocity and aceleration |
1415 | // _position = localpos; | ||
1256 | _position = localpos; | 1416 | _position = localpos; |
1417 | |||
1257 | if (_zeroFlag) | 1418 | if (_zeroFlag) |
1258 | { | 1419 | { |
1259 | _velocity = Vector3.Zero; | 1420 | _velocity = Vector3.Zero; |
1260 | _acceleration = Vector3.Zero; | 1421 | _acceleration = Vector3.Zero; |
1422 | m_rotationalVelocity = Vector3.Zero; | ||
1261 | } | 1423 | } |
1262 | else | 1424 | else |
1263 | { | 1425 | { |
1264 | _acceleration = _velocity; // previus velocity | 1426 | Vector3 a =_velocity; // previus velocity |
1265 | _velocity = vel; | 1427 | SetSmooth(ref _velocity, ref vel, 2); |
1266 | _acceleration = (vel - _acceleration) / timeStep; | 1428 | a = (_velocity - a) * invtimeStep; |
1429 | SetSmooth(ref _acceleration, ref a, 2); | ||
1430 | |||
1431 | dtmp = d.BodyGetAngularVel(Body); | ||
1432 | m_rotationalVelocity.X = 0f; | ||
1433 | m_rotationalVelocity.Y = 0f; | ||
1434 | m_rotationalVelocity.Z = dtmp.Z; | ||
1435 | Math.Round(m_rotationalVelocity.Z,3); | ||
1267 | } | 1436 | } |
1268 | 1437 | ajustCollider(); | |
1269 | } | 1438 | } |
1270 | 1439 | ||
1440 | public void round(ref Vector3 v, int digits) | ||
1441 | { | ||
1442 | v.X = (float)Math.Round(v.X, digits); | ||
1443 | v.Y = (float)Math.Round(v.Y, digits); | ||
1444 | v.Z = (float)Math.Round(v.Z, digits); | ||
1445 | } | ||
1446 | |||
1447 | public void SetSmooth(ref Vector3 dst, ref Vector3 value) | ||
1448 | { | ||
1449 | dst.X = 0.1f * dst.X + 0.9f * value.X; | ||
1450 | dst.Y = 0.1f * dst.Y + 0.9f * value.Y; | ||
1451 | dst.Z = 0.1f * dst.Z + 0.9f * value.Z; | ||
1452 | } | ||
1453 | |||
1454 | public void SetSmooth(ref Vector3 dst, ref Vector3 value, int rounddigits) | ||
1455 | { | ||
1456 | dst.X = 0.4f * dst.X + 0.6f * value.X; | ||
1457 | dst.X = (float)Math.Round(dst.X, rounddigits); | ||
1458 | |||
1459 | dst.Y = 0.4f * dst.Y + 0.6f * value.Y; | ||
1460 | dst.Y = (float)Math.Round(dst.Y, rounddigits); | ||
1461 | |||
1462 | dst.Z = 0.4f * dst.Z + 0.6f * value.Z; | ||
1463 | dst.Z = (float)Math.Round(dst.Z, rounddigits); | ||
1464 | } | ||
1465 | |||
1466 | |||
1271 | /// <summary> | 1467 | /// <summary> |
1272 | /// Updates the reported position and velocity. | 1468 | /// Updates the reported position and velocity. |
1273 | /// Used to copy variables from unmanaged space at heartbeat rate and also trigger scene updates acording | 1469 | /// Used to copy variables from unmanaged space at heartbeat rate and also trigger scene updates acording |
@@ -1394,10 +1590,11 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1394 | 1590 | ||
1395 | AvatarGeomAndBodyCreation(_position.X, _position.Y, _position.Z); | 1591 | AvatarGeomAndBodyCreation(_position.X, _position.Y, _position.Z); |
1396 | 1592 | ||
1397 | _parent_scene.actor_name_map[topbox] = (PhysicsActor)this; | 1593 | _parent_scene.actor_name_map[collider] = (PhysicsActor)this; |
1398 | _parent_scene.actor_name_map[midbox] = (PhysicsActor)this; | ||
1399 | _parent_scene.actor_name_map[feetbox] = (PhysicsActor)this; | 1594 | _parent_scene.actor_name_map[feetbox] = (PhysicsActor)this; |
1400 | _parent_scene.actor_name_map[bonebox] = (PhysicsActor)this; | 1595 | _parent_scene.actor_name_map[midbox] = (PhysicsActor)this; |
1596 | _parent_scene.actor_name_map[topbox] = (PhysicsActor)this; | ||
1597 | _parent_scene.actor_name_map[bbox] = (PhysicsActor)this; | ||
1401 | _parent_scene.AddCharacter(this); | 1598 | _parent_scene.AddCharacter(this); |
1402 | } | 1599 | } |
1403 | else | 1600 | else |
@@ -1450,13 +1647,16 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1450 | _position.Z + (m_size.Z - oldsz) * 0.5f); | 1647 | _position.Z + (m_size.Z - oldsz) * 0.5f); |
1451 | 1648 | ||
1452 | Velocity = Vector3.Zero; | 1649 | Velocity = Vector3.Zero; |
1650 | |||
1453 | 1651 | ||
1454 | _parent_scene.actor_name_map[topbox] = (PhysicsActor)this; | 1652 | _parent_scene.actor_name_map[collider] = (PhysicsActor)this; |
1455 | _parent_scene.actor_name_map[midbox] = (PhysicsActor)this; | ||
1456 | _parent_scene.actor_name_map[feetbox] = (PhysicsActor)this; | 1653 | _parent_scene.actor_name_map[feetbox] = (PhysicsActor)this; |
1457 | _parent_scene.actor_name_map[bonebox] = (PhysicsActor)this; | 1654 | _parent_scene.actor_name_map[midbox] = (PhysicsActor)this; |
1655 | _parent_scene.actor_name_map[topbox] = (PhysicsActor)this; | ||
1656 | _parent_scene.actor_name_map[bbox] = (PhysicsActor)this; | ||
1458 | } | 1657 | } |
1459 | m_freemove = false; | 1658 | m_freemove = false; |
1659 | m_collisionException = false; | ||
1460 | m_pidControllerActive = true; | 1660 | m_pidControllerActive = true; |
1461 | } | 1661 | } |
1462 | else | 1662 | else |
@@ -1565,6 +1765,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1565 | 1765 | ||
1566 | if (Body != IntPtr.Zero) | 1766 | if (Body != IntPtr.Zero) |
1567 | d.BodySetLinearVel(Body, newmomentum.X, newmomentum.Y, newmomentum.Z); | 1767 | d.BodySetLinearVel(Body, newmomentum.X, newmomentum.Y, newmomentum.Z); |
1768 | ajustCollider(); | ||
1568 | } | 1769 | } |
1569 | 1770 | ||
1570 | private void donullchange() | 1771 | private void donullchange() |
@@ -1573,7 +1774,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1573 | 1774 | ||
1574 | public bool DoAChange(changes what, object arg) | 1775 | public bool DoAChange(changes what, object arg) |
1575 | { | 1776 | { |
1576 | if (topbox == IntPtr.Zero && what != changes.Add && what != changes.Remove) | 1777 | if (collider == IntPtr.Zero && what != changes.Add && what != changes.Remove) |
1577 | { | 1778 | { |
1578 | return false; | 1779 | return false; |
1579 | } | 1780 | } |
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs b/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs index 2ba5940..f8d7195 100644 --- a/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs +++ b/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs | |||
@@ -178,7 +178,9 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
178 | public changes what; | 178 | public changes what; |
179 | public Object arg; | 179 | public Object arg; |
180 | } | 180 | } |
181 | 181 | ||
182 | |||
183 | |||
182 | public class OdeScene : PhysicsScene | 184 | public class OdeScene : PhysicsScene |
183 | { | 185 | { |
184 | private readonly ILog m_log; | 186 | private readonly ILog m_log; |
@@ -301,6 +303,8 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
301 | public IntPtr StaticSpace; // space for the static things around | 303 | public IntPtr StaticSpace; // space for the static things around |
302 | public IntPtr GroundSpace; // space for ground | 304 | public IntPtr GroundSpace; // space for ground |
303 | 305 | ||
306 | public IntPtr SharedRay; | ||
307 | |||
304 | // some speedup variables | 308 | // some speedup variables |
305 | private int spaceGridMaxX; | 309 | private int spaceGridMaxX; |
306 | private int spaceGridMaxY; | 310 | private int spaceGridMaxY; |
@@ -428,6 +432,8 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
428 | contactgroup = d.JointGroupCreate(0); | 432 | contactgroup = d.JointGroupCreate(0); |
429 | //contactgroup | 433 | //contactgroup |
430 | 434 | ||
435 | SharedRay = d.CreateRay(TopSpace, 1.0f); | ||
436 | |||
431 | d.WorldSetAutoDisableFlag(world, false); | 437 | d.WorldSetAutoDisableFlag(world, false); |
432 | } | 438 | } |
433 | } | 439 | } |
@@ -733,35 +739,35 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
733 | 739 | ||
734 | if (b1 != IntPtr.Zero && b2 != IntPtr.Zero && d.AreConnectedExcluding(b1, b2, d.JointType.Contact)) | 740 | if (b1 != IntPtr.Zero && b2 != IntPtr.Zero && d.AreConnectedExcluding(b1, b2, d.JointType.Contact)) |
735 | return; | 741 | return; |
736 | /* | 742 | /* |
737 | // debug | 743 | // debug |
738 | PhysicsActor dp2; | 744 | PhysicsActor dp2; |
739 | if (d.GeomGetClass(g1) == d.GeomClassID.HeightfieldClass) | 745 | if (d.GeomGetClass(g1) == d.GeomClassID.HeightfieldClass) |
740 | { | 746 | { |
741 | d.AABB aabb; | 747 | d.AABB aabb; |
742 | d.GeomGetAABB(g2, out aabb); | 748 | d.GeomGetAABB(g2, out aabb); |
743 | float x = aabb.MaxX - aabb.MinX; | 749 | float x = aabb.MaxX - aabb.MinX; |
744 | float y = aabb.MaxY - aabb.MinY; | 750 | float y = aabb.MaxY - aabb.MinY; |
745 | float z = aabb.MaxZ - aabb.MinZ; | 751 | float z = aabb.MaxZ - aabb.MinZ; |
746 | if (x > 60.0f || y > 60.0f || z > 60.0f) | 752 | if (x > 60.0f || y > 60.0f || z > 60.0f) |
747 | { | 753 | { |
748 | if (!actor_name_map.TryGetValue(g2, out dp2)) | 754 | if (!actor_name_map.TryGetValue(g2, out dp2)) |
749 | m_log.WarnFormat("[PHYSICS]: failed actor mapping for geom 2"); | 755 | m_log.WarnFormat("[PHYSICS]: failed actor mapping for geom 2"); |
750 | else | 756 | else |
751 | m_log.WarnFormat("[PHYSICS]: land versus large prim geo {0},size {1}, AABBsize <{2},{3},{4}>, at {5} ori {6},({7})", | 757 | m_log.WarnFormat("[PHYSICS]: land versus large prim geo {0},size {1}, AABBsize <{2},{3},{4}>, at {5} ori {6},({7})", |
752 | dp2.Name, dp2.Size, x, y, z, | 758 | dp2.Name, dp2.Size, x, y, z, |
753 | dp2.Position.ToString(), | 759 | dp2.Position.ToString(), |
754 | dp2.Orientation.ToString(), | 760 | dp2.Orientation.ToString(), |
755 | dp2.Orientation.Length()); | 761 | dp2.Orientation.Length()); |
756 | return; | 762 | return; |
757 | } | 763 | } |
758 | } | 764 | } |
759 | // | 765 | // |
760 | */ | 766 | */ |
761 | 767 | ||
762 | 768 | ||
763 | if(d.GeomGetCategoryBits(g1) == (uint)CollisionCategories.VolumeDtc || | 769 | if (d.GeomGetCategoryBits(g1) == (uint)CollisionCategories.VolumeDtc || |
764 | d.GeomGetCategoryBits(g1) == (uint)CollisionCategories.VolumeDtc) | 770 | d.GeomGetCategoryBits(g2) == (uint)CollisionCategories.VolumeDtc) |
765 | { | 771 | { |
766 | int cflags; | 772 | int cflags; |
767 | unchecked | 773 | unchecked |
@@ -776,7 +782,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
776 | catch (SEHException) | 782 | catch (SEHException) |
777 | { | 783 | { |
778 | m_log.Error("[PHYSICS]: The Operating system shut down ODE because of corrupt memory. This could be a result of really irregular terrain. If this repeats continuously, restart using Basic Physics and terrain fill your terrain. Restarting the sim."); | 784 | m_log.Error("[PHYSICS]: The Operating system shut down ODE because of corrupt memory. This could be a result of really irregular terrain. If this repeats continuously, restart using Basic Physics and terrain fill your terrain. Restarting the sim."); |
779 | // ode.drelease(world); | 785 | // ode.drelease(world); |
780 | base.TriggerPhysicsBasedRestart(); | 786 | base.TriggerPhysicsBasedRestart(); |
781 | } | 787 | } |
782 | catch (Exception e) | 788 | catch (Exception e) |
@@ -816,26 +822,25 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
816 | 822 | ||
817 | // get first contact | 823 | // get first contact |
818 | d.ContactGeom curContact = new d.ContactGeom(); | 824 | d.ContactGeom curContact = new d.ContactGeom(); |
825 | |||
819 | if (!GetCurContactGeom(0, ref curContact)) | 826 | if (!GetCurContactGeom(0, ref curContact)) |
820 | return; | 827 | return; |
821 | // for now it's the one with max depth | 828 | |
822 | ContactPoint maxDepthContact = new ContactPoint( | ||
823 | new Vector3(curContact.pos.X, curContact.pos.Y, curContact.pos.Z), | ||
824 | new Vector3(curContact.normal.X, curContact.normal.Y, curContact.normal.Z), | ||
825 | curContact.depth | ||
826 | ); | ||
827 | // do volume detection case | 829 | // do volume detection case |
828 | if ( | 830 | if ((p1.IsVolumeDtc || p2.IsVolumeDtc)) |
829 | (p1.IsVolumeDtc || p2.IsVolumeDtc)) | ||
830 | { | 831 | { |
832 | ContactPoint maxDepthContact = new ContactPoint( | ||
833 | new Vector3(curContact.pos.X, curContact.pos.Y, curContact.pos.Z), | ||
834 | new Vector3(curContact.normal.X, curContact.normal.Y, curContact.normal.Z), | ||
835 | curContact.depth, false | ||
836 | ); | ||
837 | |||
831 | collision_accounting_events(p1, p2, maxDepthContact); | 838 | collision_accounting_events(p1, p2, maxDepthContact); |
832 | return; | 839 | return; |
833 | } | 840 | } |
834 | 841 | ||
835 | // big messy collision analises | 842 | // big messy collision analises |
836 | 843 | ||
837 | Vector3 normoverride = Vector3.Zero; //damm c# | ||
838 | |||
839 | float mu = 0; | 844 | float mu = 0; |
840 | float bounce = 0; | 845 | float bounce = 0; |
841 | float cfm = 0.0001f; | 846 | float cfm = 0.0001f; |
@@ -846,36 +851,15 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
846 | ContactData contactdata1 = new ContactData(0, 0, false); | 851 | ContactData contactdata1 = new ContactData(0, 0, false); |
847 | ContactData contactdata2 = new ContactData(0, 0, false); | 852 | ContactData contactdata2 = new ContactData(0, 0, false); |
848 | 853 | ||
849 | bool dop1foot = false; | 854 | bool dop1ava = false; |
850 | bool dop2foot = false; | 855 | bool dop2ava = false; |
851 | bool ignore = false; | 856 | bool ignore = false; |
852 | bool AvanormOverride = false; | ||
853 | 857 | ||
854 | switch (p1.PhysicsActorType) | 858 | switch (p1.PhysicsActorType) |
855 | { | 859 | { |
856 | case (int)ActorTypes.Agent: | 860 | case (int)ActorTypes.Agent: |
857 | { | 861 | { |
858 | dop1foot = true; | 862 | dop1ava = true; |
859 | |||
860 | AvanormOverride = true; | ||
861 | Vector3 tmp = p2.Position - p1.Position; | ||
862 | normoverride = p2.Velocity - p1.Velocity; | ||
863 | mu = normoverride.LengthSquared(); | ||
864 | |||
865 | if (mu > 1e-6) | ||
866 | { | ||
867 | mu = 1.0f / (float)Math.Sqrt(mu); | ||
868 | normoverride *= mu; | ||
869 | mu = Vector3.Dot(tmp, normoverride); | ||
870 | if (mu > 0) | ||
871 | normoverride *= -1; | ||
872 | } | ||
873 | else | ||
874 | { | ||
875 | tmp.Normalize(); | ||
876 | normoverride = -tmp; | ||
877 | } | ||
878 | |||
879 | switch (p2.PhysicsActorType) | 863 | switch (p2.PhysicsActorType) |
880 | { | 864 | { |
881 | case (int)ActorTypes.Agent: | 865 | case (int)ActorTypes.Agent: |
@@ -886,7 +870,6 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
886 | case (int)ActorTypes.Prim: | 870 | case (int)ActorTypes.Prim: |
887 | if (p2.Velocity.LengthSquared() > 0.0f) | 871 | if (p2.Velocity.LengthSquared() > 0.0f) |
888 | p2.CollidingObj = true; | 872 | p2.CollidingObj = true; |
889 | dop1foot = true; | ||
890 | break; | 873 | break; |
891 | 874 | ||
892 | default: | 875 | default: |
@@ -901,33 +884,8 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
901 | { | 884 | { |
902 | case (int)ActorTypes.Agent: | 885 | case (int)ActorTypes.Agent: |
903 | 886 | ||
887 | dop2ava = true; | ||
904 | 888 | ||
905 | dop2foot = true; | ||
906 | |||
907 | AvanormOverride = true; | ||
908 | |||
909 | Vector3 tmp = p2.Position - p1.Position; | ||
910 | normoverride = p2.Velocity - p1.Velocity; | ||
911 | mu = normoverride.LengthSquared(); | ||
912 | if (mu > 1e-6) | ||
913 | { | ||
914 | mu = 1.0f / (float)Math.Sqrt(mu); | ||
915 | normoverride *= mu; | ||
916 | mu = Vector3.Dot(tmp, normoverride); | ||
917 | if (mu > 0) | ||
918 | normoverride *= -1; | ||
919 | } | ||
920 | else | ||
921 | { | ||
922 | tmp.Normalize(); | ||
923 | normoverride = -tmp; | ||
924 | } | ||
925 | |||
926 | bounce = 0; | ||
927 | mu = 0; | ||
928 | cfm = 0.0001f; | ||
929 | |||
930 | dop2foot = true; | ||
931 | if (p1.Velocity.LengthSquared() > 0.0f) | 889 | if (p1.Velocity.LengthSquared() > 0.0f) |
932 | p1.CollidingObj = true; | 890 | p1.CollidingObj = true; |
933 | break; | 891 | break; |
@@ -1032,170 +990,78 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1032 | default: | 990 | default: |
1033 | break; | 991 | break; |
1034 | } | 992 | } |
993 | |||
1035 | if (ignore) | 994 | if (ignore) |
1036 | return; | 995 | return; |
1037 | 996 | ||
1038 | IntPtr Joint; | ||
1039 | 997 | ||
1040 | bool FeetCollision = false; | 998 | d.ContactGeom maxContact = curContact; |
999 | // if (IgnoreNegSides && curContact.side1 < 0) | ||
1000 | // maxContact.depth = float.MinValue; | ||
1001 | |||
1002 | d.ContactGeom minContact = curContact; | ||
1003 | // if (IgnoreNegSides && curContact.side1 < 0) | ||
1004 | // minContact.depth = float.MaxValue; | ||
1041 | 1005 | ||
1042 | int i = 0; | 1006 | IntPtr Joint; |
1007 | bool FeetCollision = false; | ||
1043 | int ncontacts = 0; | 1008 | int ncontacts = 0; |
1044 | while(true) | ||
1045 | { | ||
1046 | 1009 | ||
1047 | if (IgnoreNegSides && curContact.side1 < 0) | ||
1048 | { | ||
1049 | if (++i >= count) | ||
1050 | break; | ||
1051 | 1010 | ||
1052 | if (!GetCurContactGeom(i, ref curContact)) | 1011 | int i = 0; |
1053 | break; | ||
1054 | } | ||
1055 | else | ||
1056 | 1012 | ||
1013 | while (true) | ||
1057 | { | 1014 | { |
1058 | if(dop1foot) | 1015 | if (m_global_contactcount >= maxContactsbeforedeath) |
1016 | break; | ||
1017 | |||
1018 | // if (!(IgnoreNegSides && curContact.side1 < 0)) | ||
1059 | { | 1019 | { |
1060 | if (!(((OdeCharacter)p1).Collide(g1, false, ref curContact, ref FeetCollision))) | 1020 | bool noskip = true; |
1021 | if (dop1ava) | ||
1061 | { | 1022 | { |
1062 | if (++i >= count) | 1023 | if (!(((OdeCharacter)p1).Collide(g1,false, ref curContact, ref FeetCollision))) |
1063 | break; | 1024 | |
1064 | else | 1025 | noskip = false; |
1065 | continue; | ||
1066 | } | 1026 | } |
1067 | } | 1027 | else if (dop2ava) |
1068 | else if(dop2foot) | ||
1069 | { | ||
1070 | if (!(((OdeCharacter)p2).Collide(g2, true, ref curContact, ref FeetCollision))) | ||
1071 | { | 1028 | { |
1072 | if (++i >= count) | 1029 | if (!(((OdeCharacter)p2).Collide(g2,true, ref curContact, ref FeetCollision))) |
1073 | break; | 1030 | noskip = false; |
1074 | else | ||
1075 | continue; | ||
1076 | } | 1031 | } |
1077 | } | ||
1078 | 1032 | ||
1079 | /* | 1033 | if (noskip) |
1080 | if (AvanormOverride) | ||
1081 | { | ||
1082 | if (curContact.depth > 0.3f) | ||
1083 | { | 1034 | { |
1084 | if (dop1foot && (p1.Position.Z - curContact.pos.Z) > (p1.Size.Z - avCapRadius) * 0.5f) | 1035 | m_global_contactcount++; |
1085 | p1.IsColliding = true; | 1036 | ncontacts++; |
1086 | if (dop2foot && (p2.Position.Z - curContact.pos.Z) > (p2.Size.Z - avCapRadius) * 0.5f) | ||
1087 | p2.IsColliding = true; | ||
1088 | curContact.normal.X = normoverride.X; | ||
1089 | curContact.normal.Y = normoverride.Y; | ||
1090 | curContact.normal.Z = normoverride.Z; | ||
1091 | } | ||
1092 | 1037 | ||
1093 | else | 1038 | Joint = CreateContacJoint(ref curContact, mu, bounce, cfm, erpscale, dscale); |
1094 | { | 1039 | d.JointAttach(Joint, b1, b2); |
1095 | if (dop1foot) | ||
1096 | { | ||
1097 | float sz = p1.Size.Z; | ||
1098 | Vector3 vtmp = p1.Position; | ||
1099 | float ppos = curContact.pos.Z - vtmp.Z + (sz - avCapRadius) * 0.5f; | ||
1100 | if (ppos > 0f) | ||
1101 | { | ||
1102 | if (!p1.Flying) | ||
1103 | { | ||
1104 | d.AABB aabb; | ||
1105 | d.GeomGetAABB(g2, out aabb); | ||
1106 | float tmp = vtmp.Z - sz * .18f; | ||
1107 | |||
1108 | if (aabb.MaxZ < tmp) | ||
1109 | { | ||
1110 | vtmp.X = curContact.pos.X - vtmp.X; | ||
1111 | vtmp.Y = curContact.pos.Y - vtmp.Y; | ||
1112 | vtmp.Z = -0.2f; | ||
1113 | vtmp.Normalize(); | ||
1114 | curContact.normal.X = vtmp.X; | ||
1115 | curContact.normal.Y = vtmp.Y; | ||
1116 | curContact.normal.Z = vtmp.Z; | ||
1117 | } | ||
1118 | } | ||
1119 | } | ||
1120 | else | ||
1121 | p1.IsColliding = true; | ||
1122 | 1040 | ||
1123 | } | 1041 | if (curContact.depth > maxContact.depth) |
1042 | maxContact = curContact; | ||
1124 | 1043 | ||
1125 | if (dop2foot) | 1044 | if (curContact.depth < minContact.depth) |
1126 | { | 1045 | minContact = curContact; |
1127 | float sz = p2.Size.Z; | ||
1128 | Vector3 vtmp = p2.Position; | ||
1129 | vtmp.Z -= sz * 0.5f; | ||
1130 | vtmp.Z += 0.5f; | ||
1131 | float ppos = vtmp.Z - curContact.pos.Z; | ||
1132 | if (ppos > 0f) | ||
1133 | { | ||
1134 | if (!p2.Flying) | ||
1135 | { | ||
1136 | float tmp = vtmp.Z - sz * .18f; | ||
1137 | vtmp.X = curContact.pos.X - vtmp.X; | ||
1138 | vtmp.Y = curContact.pos.Y - vtmp.Y; | ||
1139 | vtmp.Z = curContact.pos.Z - vtmp.Z; | ||
1140 | vtmp.Normalize(); | ||
1141 | curContact.normal.X = vtmp.X; | ||
1142 | curContact.normal.Y = vtmp.Y; | ||
1143 | curContact.normal.Z = vtmp.Z; | ||
1144 | } | ||
1145 | } | ||
1146 | // else | ||
1147 | p2.IsColliding = true; | ||
1148 | |||
1149 | } | ||
1150 | } | 1046 | } |
1151 | } | 1047 | } |
1152 | */ | ||
1153 | ncontacts++; | ||
1154 | Joint = CreateContacJoint(ref curContact, mu, bounce, cfm, erpscale, dscale); | ||
1155 | d.JointAttach(Joint, b1, b2); | ||
1156 | |||
1157 | if (++m_global_contactcount >= maxContactsbeforedeath) | ||
1158 | break; | ||
1159 | 1048 | ||
1160 | if (++i >= count) | 1049 | if (++i >= count) |
1161 | break; | 1050 | break; |
1162 | 1051 | ||
1163 | if (!GetCurContactGeom(i, ref curContact)) | 1052 | if (!GetCurContactGeom(i, ref curContact)) |
1164 | break; | 1053 | break; |
1165 | |||
1166 | if (curContact.depth > maxDepthContact.PenetrationDepth) | ||
1167 | { | ||
1168 | maxDepthContact.Position.X = curContact.pos.X; | ||
1169 | maxDepthContact.Position.Y = curContact.pos.Y; | ||
1170 | maxDepthContact.Position.Z = curContact.pos.Z; | ||
1171 | maxDepthContact.SurfaceNormal.X = curContact.normal.X; | ||
1172 | maxDepthContact.SurfaceNormal.Y = curContact.normal.Y; | ||
1173 | maxDepthContact.SurfaceNormal.Z = curContact.normal.Z; | ||
1174 | maxDepthContact.PenetrationDepth = curContact.depth; | ||
1175 | } | ||
1176 | } | 1054 | } |
1177 | } | ||
1178 | 1055 | ||
1179 | if (ncontacts > 0) | 1056 | if (ncontacts > 0) |
1180 | { | 1057 | { |
1181 | maxDepthContact.CharacterFeet = FeetCollision; | 1058 | ContactPoint maxDepthContact = new ContactPoint( |
1059 | new Vector3(maxContact.pos.X, maxContact.pos.Y, maxContact.pos.Z), | ||
1060 | new Vector3(minContact.normal.X, minContact.normal.Y, minContact.normal.Z), | ||
1061 | maxContact.depth, FeetCollision | ||
1062 | ); | ||
1182 | collision_accounting_events(p1, p2, maxDepthContact); | 1063 | collision_accounting_events(p1, p2, maxDepthContact); |
1183 | } | 1064 | } |
1184 | /* | ||
1185 | if (notskipedcount > geomContactPointsStartthrottle) | ||
1186 | { | ||
1187 | // If there are more then 3 contact points, it's likely | ||
1188 | // that we've got a pile of objects, so ... | ||
1189 | // We don't want to send out hundreds of terse updates over and over again | ||
1190 | // so lets throttle them and send them again after it's somewhat sorted out. | ||
1191 | this needs checking so out for now | ||
1192 | if (b1 != IntPtr.Zero) | ||
1193 | p1.ThrottleUpdates = true; | ||
1194 | if (b2 != IntPtr.Zero) | ||
1195 | p2.ThrottleUpdates = true; | ||
1196 | |||
1197 | } | ||
1198 | */ | ||
1199 | } | 1065 | } |
1200 | 1066 | ||
1201 | private void collision_accounting_events(PhysicsActor p1, PhysicsActor p2, ContactPoint contact) | 1067 | private void collision_accounting_events(PhysicsActor p1, PhysicsActor p2, ContactPoint contact) |
@@ -1286,10 +1152,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1286 | // chr.CollidingGround = false; not done here | 1152 | // chr.CollidingGround = false; not done here |
1287 | chr.CollidingObj = false; | 1153 | chr.CollidingObj = false; |
1288 | // do colisions with static space | 1154 | // do colisions with static space |
1289 | d.SpaceCollide2(StaticSpace, chr.topbox, IntPtr.Zero, nearCallback); | 1155 | d.SpaceCollide2(chr.collider, StaticSpace, IntPtr.Zero, nearCallback); |
1290 | d.SpaceCollide2(StaticSpace, chr.midbox, IntPtr.Zero, nearCallback); | ||
1291 | d.SpaceCollide2(StaticSpace, chr.feetbox, IntPtr.Zero, nearCallback); | ||
1292 | d.SpaceCollide2(StaticSpace, chr.bonebox, IntPtr.Zero, nearCallback); | ||
1293 | 1156 | ||
1294 | // chars with chars | 1157 | // chars with chars |
1295 | d.SpaceCollide(CharsSpace, IntPtr.Zero, nearCallback); | 1158 | d.SpaceCollide(CharsSpace, IntPtr.Zero, nearCallback); |
@@ -1346,7 +1209,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1346 | // and with chars | 1209 | // and with chars |
1347 | try | 1210 | try |
1348 | { | 1211 | { |
1349 | d.SpaceCollide2(ActiveSpace, CharsSpace,IntPtr.Zero, nearCallback); | 1212 | d.SpaceCollide2(CharsSpace,ActiveSpace, IntPtr.Zero, nearCallback); |
1350 | } | 1213 | } |
1351 | catch (AccessViolationException) | 1214 | catch (AccessViolationException) |
1352 | { | 1215 | { |
@@ -1837,7 +1700,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1837 | foreach (OdeCharacter actor in _characters) | 1700 | foreach (OdeCharacter actor in _characters) |
1838 | { | 1701 | { |
1839 | if (actor != null) | 1702 | if (actor != null) |
1840 | actor.Move(ODE_STEPSIZE, defects); | 1703 | actor.Move(defects); |
1841 | } | 1704 | } |
1842 | if (defects.Count != 0) | 1705 | if (defects.Count != 0) |
1843 | { | 1706 | { |