diff options
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs | 232 |
1 files changed, 0 insertions, 232 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs b/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs deleted file mode 100755 index c75eb9b..0000000 --- a/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs +++ /dev/null | |||
@@ -1,232 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyrightD | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSimulator Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Linq; | ||
31 | using System.Text; | ||
32 | |||
33 | namespace OpenSim.Region.Physics.BulletSPlugin | ||
34 | { | ||
35 | public abstract class BSShape | ||
36 | { | ||
37 | public IntPtr ptr { get; set; } | ||
38 | public BSPhysicsShapeType type { get; set; } | ||
39 | public System.UInt64 key { get; set; } | ||
40 | public int referenceCount { get; set; } | ||
41 | public DateTime lastReferenced { get; set; } | ||
42 | |||
43 | public BSShape() | ||
44 | { | ||
45 | ptr = IntPtr.Zero; | ||
46 | type = BSPhysicsShapeType.SHAPE_UNKNOWN; | ||
47 | key = 0; | ||
48 | referenceCount = 0; | ||
49 | lastReferenced = DateTime.Now; | ||
50 | } | ||
51 | |||
52 | // Get a reference to a physical shape. Create if it doesn't exist | ||
53 | public static BSShape GetShapeReference(BSScene physicsScene, bool forceRebuild, BSPhysObject prim) | ||
54 | { | ||
55 | BSShape ret = null; | ||
56 | |||
57 | if (prim.PreferredPhysicalShape == BSPhysicsShapeType.SHAPE_CAPSULE) | ||
58 | { | ||
59 | // an avatar capsule is close to a native shape (it is not shared) | ||
60 | ret = BSShapeNative.GetReference(physicsScene, prim, BSPhysicsShapeType.SHAPE_CAPSULE, | ||
61 | FixedShapeKey.KEY_CAPSULE); | ||
62 | physicsScene.DetailLog("{0},BSShape.GetShapeReference,avatarCapsule,shape={1}", prim.LocalID, ret); | ||
63 | } | ||
64 | |||
65 | // Compound shapes are handled special as they are rebuilt from scratch. | ||
66 | // This isn't too great a hardship since most of the child shapes will already been created. | ||
67 | if (ret == null && prim.PreferredPhysicalShape == BSPhysicsShapeType.SHAPE_COMPOUND) | ||
68 | { | ||
69 | // Getting a reference to a compound shape gets you the compound shape with the root prim shape added | ||
70 | ret = BSShapeCompound.GetReference(prim); | ||
71 | physicsScene.DetailLog("{0},BSShapeCollection.CreateGeom,compoundShape,shape={1}", prim.LocalID, ret); | ||
72 | } | ||
73 | |||
74 | if (ret == null) | ||
75 | ret = GetShapeReferenceNonSpecial(physicsScene, forceRebuild, prim); | ||
76 | |||
77 | return ret; | ||
78 | } | ||
79 | public static BSShape GetShapeReferenceNonSpecial(BSScene physicsScene, bool forceRebuild, BSPhysObject prim) | ||
80 | { | ||
81 | return null; | ||
82 | } | ||
83 | public static BSShape GetShapeReferenceNonNative(BSScene physicsScene, bool forceRebuild, BSPhysObject prim) | ||
84 | { | ||
85 | return null; | ||
86 | } | ||
87 | |||
88 | // Release the use of a physical shape. | ||
89 | public abstract void Dereference(BSScene physicsScene); | ||
90 | |||
91 | // All shapes have a static call to get a reference to the physical shape | ||
92 | // protected abstract static BSShape GetReference(); | ||
93 | |||
94 | // Returns a string for debugging that uniquily identifies the memory used by this instance | ||
95 | public string AddrString | ||
96 | { | ||
97 | get { return ptr.ToString("X"); } | ||
98 | } | ||
99 | |||
100 | public override string ToString() | ||
101 | { | ||
102 | StringBuilder buff = new StringBuilder(); | ||
103 | buff.Append("<p="); | ||
104 | buff.Append(AddrString); | ||
105 | buff.Append(",s="); | ||
106 | buff.Append(type.ToString()); | ||
107 | buff.Append(",k="); | ||
108 | buff.Append(key.ToString("X")); | ||
109 | buff.Append(",c="); | ||
110 | buff.Append(referenceCount.ToString()); | ||
111 | buff.Append(">"); | ||
112 | return buff.ToString(); | ||
113 | } | ||
114 | } | ||
115 | |||
116 | public class BSShapeNull : BSShape | ||
117 | { | ||
118 | public BSShapeNull() : base() | ||
119 | { | ||
120 | } | ||
121 | public static BSShape GetReference() { return new BSShapeNull(); } | ||
122 | public override void Dereference(BSScene physicsScene) { /* The magic of garbage collection will make this go away */ } | ||
123 | } | ||
124 | |||
125 | public class BSShapeNative : BSShape | ||
126 | { | ||
127 | private static string LogHeader = "[BULLETSIM SHAPE NATIVE]"; | ||
128 | public BSShapeNative() : base() | ||
129 | { | ||
130 | } | ||
131 | public static BSShape GetReference(BSScene physicsScene, BSPhysObject prim, | ||
132 | BSPhysicsShapeType shapeType, FixedShapeKey shapeKey) | ||
133 | { | ||
134 | // Native shapes are not shared and are always built anew. | ||
135 | //return new BSShapeNative(physicsScene, prim, shapeType, shapeKey); | ||
136 | return null; | ||
137 | } | ||
138 | |||
139 | private BSShapeNative(BSScene physicsScene, BSPhysObject prim, | ||
140 | BSPhysicsShapeType shapeType, FixedShapeKey shapeKey) | ||
141 | { | ||
142 | ShapeData nativeShapeData = new ShapeData(); | ||
143 | nativeShapeData.Type = shapeType; | ||
144 | nativeShapeData.ID = prim.LocalID; | ||
145 | nativeShapeData.Scale = prim.Scale; | ||
146 | nativeShapeData.Size = prim.Scale; | ||
147 | nativeShapeData.MeshKey = (ulong)shapeKey; | ||
148 | nativeShapeData.HullKey = (ulong)shapeKey; | ||
149 | |||
150 | |||
151 | /* | ||
152 | if (shapeType == BSPhysicsShapeType.SHAPE_CAPSULE) | ||
153 | { | ||
154 | ptr = PhysicsScene.PE.BuildCapsuleShape(physicsScene.World, 1f, 1f, prim.Scale); | ||
155 | physicsScene.DetailLog("{0},BSShapeCollection.BuiletPhysicalNativeShape,capsule,scale={1}", prim.LocalID, prim.Scale); | ||
156 | } | ||
157 | else | ||
158 | { | ||
159 | ptr = PhysicsScene.PE.BuildNativeShape(physicsScene.World, nativeShapeData); | ||
160 | } | ||
161 | if (ptr == IntPtr.Zero) | ||
162 | { | ||
163 | physicsScene.Logger.ErrorFormat("{0} BuildPhysicalNativeShape failed. ID={1}, shape={2}", | ||
164 | LogHeader, prim.LocalID, shapeType); | ||
165 | } | ||
166 | type = shapeType; | ||
167 | key = (UInt64)shapeKey; | ||
168 | */ | ||
169 | } | ||
170 | // Make this reference to the physical shape go away since native shapes are not shared. | ||
171 | public override void Dereference(BSScene physicsScene) | ||
172 | { | ||
173 | /* | ||
174 | // Native shapes are not tracked and are released immediately | ||
175 | physicsScene.DetailLog("{0},BSShapeCollection.DereferenceShape,deleteNativeShape,shape={1}", BSScene.DetailLogZero, this); | ||
176 | PhysicsScene.PE.DeleteCollisionShape(physicsScene.World, this); | ||
177 | ptr = IntPtr.Zero; | ||
178 | // Garbage collection will free up this instance. | ||
179 | */ | ||
180 | } | ||
181 | } | ||
182 | |||
183 | public class BSShapeMesh : BSShape | ||
184 | { | ||
185 | private static string LogHeader = "[BULLETSIM SHAPE MESH]"; | ||
186 | private static Dictionary<System.UInt64, BSShapeMesh> Meshes = new Dictionary<System.UInt64, BSShapeMesh>(); | ||
187 | |||
188 | public BSShapeMesh() : base() | ||
189 | { | ||
190 | } | ||
191 | public static BSShape GetReference() { return new BSShapeNull(); } | ||
192 | public override void Dereference(BSScene physicsScene) { } | ||
193 | } | ||
194 | |||
195 | public class BSShapeHull : BSShape | ||
196 | { | ||
197 | private static string LogHeader = "[BULLETSIM SHAPE HULL]"; | ||
198 | private static Dictionary<System.UInt64, BSShapeHull> Hulls = new Dictionary<System.UInt64, BSShapeHull>(); | ||
199 | |||
200 | public BSShapeHull() : base() | ||
201 | { | ||
202 | } | ||
203 | public static BSShape GetReference() { return new BSShapeNull(); } | ||
204 | public override void Dereference(BSScene physicsScene) { } | ||
205 | } | ||
206 | |||
207 | public class BSShapeCompound : BSShape | ||
208 | { | ||
209 | private static string LogHeader = "[BULLETSIM SHAPE COMPOUND]"; | ||
210 | public BSShapeCompound() : base() | ||
211 | { | ||
212 | } | ||
213 | public static BSShape GetReference(BSPhysObject prim) | ||
214 | { | ||
215 | return new BSShapeNull(); | ||
216 | } | ||
217 | public override void Dereference(BSScene physicsScene) { } | ||
218 | } | ||
219 | |||
220 | public class BSShapeAvatar : BSShape | ||
221 | { | ||
222 | private static string LogHeader = "[BULLETSIM SHAPE AVATAR]"; | ||
223 | public BSShapeAvatar() : base() | ||
224 | { | ||
225 | } | ||
226 | public static BSShape GetReference(BSPhysObject prim) | ||
227 | { | ||
228 | return new BSShapeNull(); | ||
229 | } | ||
230 | public override void Dereference(BSScene physicsScene) { } | ||
231 | } | ||
232 | } | ||