aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPrim.cs4
-rw-r--r--OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs26
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODEPrim.cs295
-rw-r--r--bin/BulletDotNET.dllbin57344 -> 58880 bytes
-rw-r--r--bin/BulletDotNET.pdbbin194048 -> 198144 bytes
-rw-r--r--bin/libbulletnet.dllbin351744 -> 360448 bytes
-rw-r--r--bin/libbulletnet.sobin4224054 -> 4286426 bytes
7 files changed, 315 insertions, 10 deletions
diff --git a/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPrim.cs b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPrim.cs
index a2caeac..5ff73c5 100644
--- a/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPrim.cs
+++ b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPrim.cs
@@ -1289,7 +1289,7 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin
1289 } 1289 }
1290 else 1290 else
1291 { 1291 {
1292 Body.setCollisionFlags(0); 1292 Body.setCollisionFlags(0 | (int)ContactFlags.CF_CUSTOM_MATERIAL_CALLBACK);
1293 enableBodySoft(); 1293 enableBodySoft();
1294 } 1294 }
1295 m_isSelected = m_taintselected; 1295 m_isSelected = m_taintselected;
@@ -2140,6 +2140,8 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin
2140 ((btGImpactMeshShape) prim_geom).setLocalScaling(new btVector3(1, 1, 1)); 2140 ((btGImpactMeshShape) prim_geom).setLocalScaling(new btVector3(1, 1, 1));
2141 ((btGImpactMeshShape) prim_geom).updateBound(); 2141 ((btGImpactMeshShape) prim_geom).updateBound();
2142 } 2142 }
2143 Body.setCollisionFlags(Body.getCollisionFlags() | (int)ContactFlags.CF_CUSTOM_MATERIAL_CALLBACK);
2144 Body.setUserPointer((IntPtr) m_localID);
2143 _parent_scene.AddPrimToScene(this); 2145 _parent_scene.AddPrimToScene(this);
2144 } 2146 }
2145 else 2147 else
diff --git a/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs
index c4f659c..fecd4a1 100644
--- a/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs
+++ b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs
@@ -103,6 +103,7 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin
103 private readonly btVector3 worldAabbMax = new btVector3((int)Constants.RegionSize + 10f, (int)Constants.RegionSize + 10f, 9000); 103 private readonly btVector3 worldAabbMax = new btVector3((int)Constants.RegionSize + 10f, (int)Constants.RegionSize + 10f, 9000);
104 104
105 public IMesher mesher; 105 public IMesher mesher;
106 private ContactAddedCallbackHandler m_CollisionInterface;
106 107
107 public BulletDotNETScene(string sceneIdentifier) 108 public BulletDotNETScene(string sceneIdentifier)
108 { 109 {
@@ -112,6 +113,7 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin
112 TransZero = new btTransform(QuatIdentity, VectorZero); 113 TransZero = new btTransform(QuatIdentity, VectorZero);
113 m_gravity = new btVector3(0, 0, gravityz); 114 m_gravity = new btVector3(0, 0, gravityz);
114 _origheightmap = new float[(int)Constants.RegionSize * (int)Constants.RegionSize]; 115 _origheightmap = new float[(int)Constants.RegionSize * (int)Constants.RegionSize];
116
115 } 117 }
116 118
117 public override void Initialise(IMesher meshmerizer, IConfigSource config) 119 public override void Initialise(IMesher meshmerizer, IConfigSource config)
@@ -132,6 +134,9 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin
132 m_dispatcher = new btCollisionDispatcher(m_collisionConfiguration); 134 m_dispatcher = new btCollisionDispatcher(m_collisionConfiguration);
133 m_world = new btDiscreteDynamicsWorld(m_dispatcher, m_broadphase, m_solver, m_collisionConfiguration); 135 m_world = new btDiscreteDynamicsWorld(m_dispatcher, m_broadphase, m_solver, m_collisionConfiguration);
134 m_world.setGravity(m_gravity); 136 m_world.setGravity(m_gravity);
137 EnableCollisionInterface();
138
139
135 } 140 }
136 141
137 public override PhysicsActor AddAvatar(string avName, PhysicsVector position, PhysicsVector size, bool isFlying) 142 public override PhysicsActor AddAvatar(string avName, PhysicsVector position, PhysicsVector size, bool isFlying)
@@ -289,7 +294,19 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin
289 */ 294 */
290 prm.UpdatePositionAndVelocity(); 295 prm.UpdatePositionAndVelocity();
291 } 296 }
297 if (m_CollisionInterface != null)
298 {
299 List<int> collisions = m_CollisionInterface.GetContactList();
300 lock (collisions)
301 {
302 foreach (int pvalue in collisions)
303 {
304 System.Console.Write(string.Format("{0} ", pvalue));
305 }
306 }
307 m_CollisionInterface.Clear();
292 308
309 }
293 return steps; 310 return steps;
294 } 311 }
295 312
@@ -675,5 +692,14 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin
675 } 692 }
676 } 693 }
677 } 694 }
695 internal void EnableCollisionInterface()
696 {
697 if (m_CollisionInterface == null)
698 {
699 m_CollisionInterface = new ContactAddedCallbackHandler();
700 m_world.SetCollisionAddedCallback(m_CollisionInterface);
701 }
702 }
703
678 } 704 }
679} 705}
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
index 8711937..92373cd 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
@@ -1512,8 +1512,20 @@ namespace OpenSim.Region.Physics.OdePlugin
1512 float fy = 0; 1512 float fy = 0;
1513 float fz = 0; 1513 float fz = 0;
1514 1514
1515
1515 if (IsPhysical && Body != IntPtr.Zero && !m_isSelected) 1516 if (IsPhysical && Body != IntPtr.Zero && !m_isSelected)
1516 { 1517 {
1518 if (d.BodyIsEnabled(Body) && !m_angularlock.IsIdentical(PhysicsVector.Zero, 0.003f))
1519 {
1520 d.Vector3 avel2 = d.BodyGetAngularVel(Body);
1521 if (m_angularlock.X == 1)
1522 avel2.X = 0;
1523 if (m_angularlock.Y == 1)
1524 avel2.Y = 0;
1525 if (m_angularlock.Z == 1)
1526 avel2.Z = 0;
1527 d.BodySetAngularVel(Body, avel2.X, avel2.Y, avel2.Z);
1528 }
1517 //float PID_P = 900.0f; 1529 //float PID_P = 900.0f;
1518 1530
1519 float m_mass = CalculateMass(); 1531 float m_mass = CalculateMass();
@@ -2716,15 +2728,66 @@ namespace OpenSim.Region.Physics.OdePlugin
2716 float axisnum = 3; 2728 float axisnum = 3;
2717 2729
2718 axisnum = (axisnum - (axis.X + axis.Y + axis.Z)); 2730 axisnum = (axisnum - (axis.X + axis.Y + axis.Z));
2731
2732 PhysicsVector totalSize = new PhysicsVector(_size.X, _size.Y, _size.Z);
2733
2734
2719 2735
2736 /*
2737 // Inverse Inertia Matrix, set the X, Y, and/r Z inertia to 0 then invert it again.
2738 d.Mass objMass;
2739 d.MassSetZero(out objMass);
2740 DMassCopy(ref pMass, ref objMass);
2741
2742 m_log.DebugFormat("1-{0}, {1}, {2}, {3}, {4}, {5}, {6}, {7}, {8}, ", objMass.I.M00, objMass.I.M01, objMass.I.M02, objMass.I.M10, objMass.I.M11, objMass.I.M12, objMass.I.M20, objMass.I.M21, objMass.I.M22);
2743
2744 Matrix4 dMassMat = FromDMass(objMass);
2745
2746 Matrix4 mathmat = Inverse(dMassMat);
2747
2748 m_log.DebugFormat("2-{0}, {1}, {2}, {3}, {4}, {5}, {6}, {7}, {8}, ", mathmat[0, 0], mathmat[0, 1], mathmat[0, 2], mathmat[1, 0], mathmat[1, 1], mathmat[1, 2], mathmat[2, 0], mathmat[2, 1], mathmat[2, 2]);
2749
2750 mathmat = Inverse(mathmat);
2751
2752
2753 objMass = FromMatrix4(mathmat, ref objMass);
2754 m_log.DebugFormat("3-{0}, {1}, {2}, {3}, {4}, {5}, {6}, {7}, {8}, ", objMass.I.M00, objMass.I.M01, objMass.I.M02, objMass.I.M10, objMass.I.M11, objMass.I.M12, objMass.I.M20, objMass.I.M21, objMass.I.M22);
2755
2756 mathmat = Inverse(mathmat);
2720 2757
2758 if (axis.X == 0)
2759 {
2760 mathmat.M33 = 50.0000001f;
2761 //objMass.I.M22 = 0;
2762 }
2763 if (axis.Y == 0)
2764 {
2765 mathmat.M22 = 50.0000001f;
2766 //objMass.I.M11 = 0;
2767 }
2768 if (axis.Z == 0)
2769 {
2770 mathmat.M11 = 50.0000001f;
2771 //objMass.I.M00 = 0;
2772 }
2773
2774
2775
2776 mathmat = Inverse(mathmat);
2777 objMass = FromMatrix4(mathmat, ref objMass);
2778 m_log.DebugFormat("4-{0}, {1}, {2}, {3}, {4}, {5}, {6}, {7}, {8}, ", objMass.I.M00, objMass.I.M01, objMass.I.M02, objMass.I.M10, objMass.I.M11, objMass.I.M12, objMass.I.M20, objMass.I.M21, objMass.I.M22);
2779
2780 //return;
2781
2782 d.BodySetMass(Body, ref objMass);
2783 */
2721 if (axisnum <= 0) 2784 if (axisnum <= 0)
2722 return; 2785 return;
2723 int dAMotorEuler = 1; 2786 int dAMotorEuler = 1;
2724 2787
2725 Amotor = d.JointCreateAMotor(_parent_scene.world, IntPtr.Zero); 2788 Amotor = d.JointCreateAMotor(_parent_scene.world, IntPtr.Zero);
2726 d.JointAttach(Amotor, Body, IntPtr.Zero); 2789 d.JointAttach(Amotor, Body, IntPtr.Zero);
2727 d.JointSetAMotorMode(Amotor, dAMotorEuler); 2790 d.JointSetAMotorMode(Amotor, 0);
2728 2791
2729 d.JointSetAMotorNumAxes(Amotor,(int)axisnum); 2792 d.JointSetAMotorNumAxes(Amotor,(int)axisnum);
2730 int i = 0; 2793 int i = 0;
@@ -2756,15 +2819,52 @@ namespace OpenSim.Region.Physics.OdePlugin
2756 //d.JointSetAMotorAngle(Amotor, 2, 0); 2819 //d.JointSetAMotorAngle(Amotor, 2, 0);
2757 2820
2758 // These lowstops and high stops are effectively (no wiggle room) 2821 // These lowstops and high stops are effectively (no wiggle room)
2759 d.JointSetAMotorParam(Amotor, (int)dParam.LowStop, -0.000000000001f); 2822 d.JointSetAMotorParam(Amotor, (int)dParam.LowStop, -0f);
2760 d.JointSetAMotorParam(Amotor, (int)dParam.LoStop3, -0.000000000001f); 2823 d.JointSetAMotorParam(Amotor, (int)dParam.LoStop3, -0f);
2761 d.JointSetAMotorParam(Amotor, (int)dParam.LoStop2, -0.000000000001f); 2824 d.JointSetAMotorParam(Amotor, (int)dParam.LoStop2, -0f);
2762 d.JointSetAMotorParam(Amotor, (int)dParam.HiStop, 0.000000000001f); 2825 d.JointSetAMotorParam(Amotor, (int)dParam.HiStop, 0f);
2763 d.JointSetAMotorParam(Amotor, (int)dParam.HiStop3, 0.000000000001f); 2826 d.JointSetAMotorParam(Amotor, (int)dParam.HiStop3, 0f);
2764 d.JointSetAMotorParam(Amotor, (int)dParam.HiStop2, 0.000000000001f); 2827 d.JointSetAMotorParam(Amotor, (int)dParam.HiStop2, 0f);
2765 2828 //d.JointSetAMotorParam(Amotor, (int) dParam.Vel, 9000f);
2766 d.JointSetAMotorParam(Amotor, (int)dParam.FudgeFactor, 0f); 2829 d.JointSetAMotorParam(Amotor, (int)dParam.FudgeFactor, 0f);
2767 d.JointSetAMotorParam(Amotor, (int)dParam.FMax, m_tensor * 5);// 2830 d.JointSetAMotorParam(Amotor, (int)dParam.FMax, Mass * 50f);//
2831
2832 }
2833
2834 public Matrix4 FromDMass(d.Mass pMass)
2835 {
2836 Matrix4 obj;
2837 obj.M11 = pMass.I.M00;
2838 obj.M12 = pMass.I.M01;
2839 obj.M13 = pMass.I.M02;
2840 obj.M14 = 0;
2841 obj.M21 = pMass.I.M10;
2842 obj.M22 = pMass.I.M11;
2843 obj.M23 = pMass.I.M12;
2844 obj.M24 = 0;
2845 obj.M31 = pMass.I.M20;
2846 obj.M32 = pMass.I.M21;
2847 obj.M33 = pMass.I.M22;
2848 obj.M34 = 0;
2849 obj.M41 = 0;
2850 obj.M42 = 0;
2851 obj.M43 = 0;
2852 obj.M44 = 1;
2853 return obj;
2854 }
2855
2856 public d.Mass FromMatrix4(Matrix4 pMat, ref d.Mass obj)
2857 {
2858 obj.I.M00 = pMat[0, 0];
2859 obj.I.M01 = pMat[0, 1];
2860 obj.I.M02 = pMat[0, 2];
2861 obj.I.M10 = pMat[1, 0];
2862 obj.I.M11 = pMat[1, 1];
2863 obj.I.M12 = pMat[1, 2];
2864 obj.I.M20 = pMat[2, 0];
2865 obj.I.M21 = pMat[2, 1];
2866 obj.I.M22 = pMat[2, 2];
2867 return obj;
2768 } 2868 }
2769 2869
2770 public override void SubscribeEvents(int ms) 2870 public override void SubscribeEvents(int ms)
@@ -2805,5 +2905,182 @@ namespace OpenSim.Region.Physics.OdePlugin
2805 return true; 2905 return true;
2806 return false; 2906 return false;
2807 } 2907 }
2908
2909 public static Matrix4 Inverse(Matrix4 pMat)
2910 {
2911 if (determinant3x3(pMat) == 0)
2912 {
2913 return Matrix4.Identity; // should probably throw an error. singluar matrix inverse not possible
2914 }
2915
2916
2917
2918 return (Adjoint(pMat) / determinant3x3(pMat));
2919 }
2920
2921 public static Matrix4 Adjoint(Matrix4 pMat)
2922 {
2923 Matrix4 adjointMatrix = new Matrix4();
2924 for (int i=0; i<4; i++)
2925 {
2926 for (int j=0; j<4; j++)
2927 {
2928 Matrix4SetValue(ref adjointMatrix, i, j, (float)(Math.Pow(-1, i + j) * (determinant3x3(Minor(pMat, i, j)))));
2929 }
2930 }
2931
2932 adjointMatrix = Transpose(adjointMatrix);
2933 return adjointMatrix;
2934 }
2935
2936 public static Matrix4 Minor(Matrix4 matrix, int iRow, int iCol)
2937 {
2938 Matrix4 minor = new Matrix4();
2939 int m = 0, n = 0;
2940 for (int i = 0; i < 4; i++)
2941 {
2942 if (i == iRow)
2943 continue;
2944 n = 0;
2945 for (int j = 0; j < 4; j++)
2946 {
2947 if (j == iCol)
2948 continue;
2949 Matrix4SetValue(ref minor, m,n, matrix[i, j]);
2950 n++;
2951 }
2952 m++;
2953 }
2954 return minor;
2955 }
2956
2957 public static Matrix4 Transpose(Matrix4 pMat)
2958 {
2959 Matrix4 transposeMatrix = new Matrix4();
2960 for (int i = 0; i < 4; i++)
2961 for (int j = 0; j < 4; j++)
2962 Matrix4SetValue( ref transposeMatrix, i, j, pMat[j, i]);
2963 return transposeMatrix;
2964 }
2965
2966 public static void Matrix4SetValue(ref Matrix4 pMat, int r, int c, float val)
2967 {
2968 switch (r)
2969 {
2970 case 0:
2971 switch (c)
2972 {
2973 case 0:
2974 pMat.M11 = val;
2975 break;
2976 case 1:
2977 pMat.M12 = val;
2978 break;
2979 case 2:
2980 pMat.M13 = val;
2981 break;
2982 case 3:
2983 pMat.M14 = val;
2984 break;
2985 }
2986
2987 break;
2988 case 1:
2989 switch (c)
2990 {
2991 case 0:
2992 pMat.M21 = val;
2993 break;
2994 case 1:
2995 pMat.M22 = val;
2996 break;
2997 case 2:
2998 pMat.M23 = val;
2999 break;
3000 case 3:
3001 pMat.M24 = val;
3002 break;
3003 }
3004
3005 break;
3006 case 2:
3007 switch (c)
3008 {
3009 case 0:
3010 pMat.M31 = val;
3011 break;
3012 case 1:
3013 pMat.M32 = val;
3014 break;
3015 case 2:
3016 pMat.M33 = val;
3017 break;
3018 case 3:
3019 pMat.M34 = val;
3020 break;
3021 }
3022
3023 break;
3024 case 3:
3025 switch (c)
3026 {
3027 case 0:
3028 pMat.M41 = val;
3029 break;
3030 case 1:
3031 pMat.M42 = val;
3032 break;
3033 case 2:
3034 pMat.M43 = val;
3035 break;
3036 case 3:
3037 pMat.M44 = val;
3038 break;
3039 }
3040
3041 break;
3042 }
3043 }
3044 private static float determinant3x3(Matrix4 pMat)
3045 {
3046 float det = 0;
3047 float diag1 = pMat[0, 0]*pMat[1, 1]*pMat[2, 2];
3048 float diag2 = pMat[0, 1]*pMat[2, 1]*pMat[2, 0];
3049 float diag3 = pMat[0, 2]*pMat[1, 0]*pMat[2, 1];
3050 float diag4 = pMat[2, 0]*pMat[1, 1]*pMat[0, 2];
3051 float diag5 = pMat[2, 1]*pMat[1, 2]*pMat[0, 0];
3052 float diag6 = pMat[2, 2]*pMat[1, 0]*pMat[0, 1];
3053
3054 det = diag1 + diag2 + diag3 - (diag4 + diag5 + diag6);
3055 return det;
3056
3057 }
3058 private static float Determinant(Matrix4 matrix)
3059 {
3060 float det = 0;
3061
3062 for (int j = 0; j < 4; j++)
3063 det += (matrix[0, j] * Determinant(Minor(matrix, 0, j)) * (int)System.Math.Pow(-1, 0 + j));
3064 return det;
3065 }
3066
3067 private static void DMassCopy(ref d.Mass src, ref d.Mass dst)
3068 {
3069 dst.c.W = src.c.W;
3070 dst.c.X = src.c.X;
3071 dst.c.Y = src.c.Y;
3072 dst.c.Z = src.c.Z;
3073 dst.mass = src.mass;
3074 dst.I.M00 = src.I.M00;
3075 dst.I.M01 = src.I.M01;
3076 dst.I.M02 = src.I.M02;
3077 dst.I.M10 = src.I.M10;
3078 dst.I.M11 = src.I.M11;
3079 dst.I.M12 = src.I.M12;
3080 dst.I.M20 = src.I.M20;
3081 dst.I.M21 = src.I.M21;
3082 dst.I.M22 = src.I.M22;
3083 }
3084
2808 } 3085 }
2809} 3086}
diff --git a/bin/BulletDotNET.dll b/bin/BulletDotNET.dll
index 0322183..8abe03a 100644
--- a/bin/BulletDotNET.dll
+++ b/bin/BulletDotNET.dll
Binary files differ
diff --git a/bin/BulletDotNET.pdb b/bin/BulletDotNET.pdb
index 85f17b2..a5499ec 100644
--- a/bin/BulletDotNET.pdb
+++ b/bin/BulletDotNET.pdb
Binary files differ
diff --git a/bin/libbulletnet.dll b/bin/libbulletnet.dll
index 45d1574..3edd005 100644
--- a/bin/libbulletnet.dll
+++ b/bin/libbulletnet.dll
Binary files differ
diff --git a/bin/libbulletnet.so b/bin/libbulletnet.so
index 9fd104e..14779ea 100644
--- a/bin/libbulletnet.so
+++ b/bin/libbulletnet.so
Binary files differ