diff options
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs')
-rw-r--r-- | OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs | 672 |
1 files changed, 388 insertions, 284 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs b/OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs index e2f7af9..a041ba8 100644 --- a/OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs | |||
@@ -28,62 +28,48 @@ using System; | |||
28 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using System.Reflection; | 29 | using System.Reflection; |
30 | using log4net; | 30 | using log4net; |
31 | using OpenMetaverse; | 31 | using OMV = OpenMetaverse; |
32 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
33 | using OpenSim.Region.Physics.Manager; | 33 | using OpenSim.Region.Physics.Manager; |
34 | 34 | ||
35 | namespace OpenSim.Region.Physics.BulletSPlugin | 35 | namespace OpenSim.Region.Physics.BulletSPlugin |
36 | { | 36 | { |
37 | public class BSCharacter : PhysicsActor | 37 | public class BSCharacter : BSPhysObject |
38 | { | 38 | { |
39 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 39 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
40 | private static readonly string LogHeader = "[BULLETS CHAR]"; | 40 | private static readonly string LogHeader = "[BULLETS CHAR]"; |
41 | 41 | ||
42 | private BSScene _scene; | ||
43 | public BSScene Scene { get { return _scene; } } | ||
44 | private String _avName; | ||
45 | // private bool _stopped; | 42 | // private bool _stopped; |
46 | private Vector3 _size; | 43 | private OMV.Vector3 _size; |
47 | private Vector3 _scale; | ||
48 | private PrimitiveBaseShape _pbs; | ||
49 | private uint _localID = 0; | ||
50 | private bool _grabbed; | 44 | private bool _grabbed; |
51 | private bool _selected; | 45 | private bool _selected; |
52 | private Vector3 _position; | 46 | private OMV.Vector3 _position; |
53 | private float _mass; | 47 | private float _mass; |
54 | public float _density; | 48 | private float _avatarDensity; |
55 | public float _avatarVolume; | 49 | private float _avatarVolume; |
56 | private Vector3 _force; | 50 | private OMV.Vector3 _force; |
57 | private Vector3 _velocity; | 51 | private OMV.Vector3 _velocity; |
58 | private Vector3 _torque; | 52 | private OMV.Vector3 _torque; |
59 | private float _collisionScore; | 53 | private float _collisionScore; |
60 | private Vector3 _acceleration; | 54 | private OMV.Vector3 _acceleration; |
61 | private Quaternion _orientation; | 55 | private OMV.Quaternion _orientation; |
62 | private int _physicsActorType; | 56 | private int _physicsActorType; |
63 | private bool _isPhysical; | 57 | private bool _isPhysical; |
64 | private bool _flying; | 58 | private bool _flying; |
65 | private bool _setAlwaysRun; | 59 | private bool _setAlwaysRun; |
66 | private bool _throttleUpdates; | 60 | private bool _throttleUpdates; |
67 | private bool _isColliding; | 61 | private bool _isColliding; |
68 | private long _collidingStep; | ||
69 | private bool _collidingGround; | ||
70 | private long _collidingGroundStep; | ||
71 | private bool _collidingObj; | 62 | private bool _collidingObj; |
72 | private bool _floatOnWater; | 63 | private bool _floatOnWater; |
73 | private Vector3 _rotationalVelocity; | 64 | private OMV.Vector3 _rotationalVelocity; |
74 | private bool _kinematic; | 65 | private bool _kinematic; |
75 | private float _buoyancy; | 66 | private float _buoyancy; |
76 | 67 | ||
77 | private BulletBody m_body; | 68 | // The friction and velocity of the avatar is modified depending on whether walking or not. |
78 | public BulletBody Body { | 69 | private OMV.Vector3 _appliedVelocity; // the last velocity applied to the avatar |
79 | get { return m_body; } | 70 | private float _currentFriction; // the friction currently being used (changed by setVelocity). |
80 | set { m_body = value; } | ||
81 | } | ||
82 | |||
83 | private int _subscribedEventsMs = 0; | ||
84 | private int _nextCollisionOkTime = 0; | ||
85 | 71 | ||
86 | private Vector3 _PIDTarget; | 72 | private OMV.Vector3 _PIDTarget; |
87 | private bool _usePID; | 73 | private bool _usePID; |
88 | private float _PIDTau; | 74 | private float _PIDTau; |
89 | private bool _useHoverPID; | 75 | private bool _useHoverPID; |
@@ -91,332 +77,504 @@ public class BSCharacter : PhysicsActor | |||
91 | private PIDHoverType _PIDHoverType; | 77 | private PIDHoverType _PIDHoverType; |
92 | private float _PIDHoverTao; | 78 | private float _PIDHoverTao; |
93 | 79 | ||
94 | public BSCharacter(uint localID, String avName, BSScene parent_scene, Vector3 pos, Vector3 size, bool isFlying) | 80 | public BSCharacter(uint localID, String avName, BSScene parent_scene, OMV.Vector3 pos, OMV.Vector3 size, bool isFlying) |
95 | { | 81 | { |
96 | _localID = localID; | 82 | base.BaseInitialize(parent_scene, localID, avName, "BSCharacter"); |
97 | _avName = avName; | 83 | _physicsActorType = (int)ActorTypes.Agent; |
98 | _scene = parent_scene; | ||
99 | _position = pos; | 84 | _position = pos; |
100 | _size = size; | 85 | _size = size; |
101 | _flying = isFlying; | 86 | _flying = isFlying; |
102 | _orientation = Quaternion.Identity; | 87 | _orientation = OMV.Quaternion.Identity; |
103 | _velocity = Vector3.Zero; | 88 | _velocity = OMV.Vector3.Zero; |
89 | _appliedVelocity = OMV.Vector3.Zero; | ||
104 | _buoyancy = ComputeBuoyancyFromFlying(isFlying); | 90 | _buoyancy = ComputeBuoyancyFromFlying(isFlying); |
91 | _currentFriction = PhysicsScene.Params.avatarStandingFriction; | ||
92 | _avatarDensity = PhysicsScene.Params.avatarDensity; | ||
93 | |||
105 | // The dimensions of the avatar capsule are kept in the scale. | 94 | // The dimensions of the avatar capsule are kept in the scale. |
106 | // Physics creates a unit capsule which is scaled by the physics engine. | 95 | // Physics creates a unit capsule which is scaled by the physics engine. |
107 | _scale = new Vector3(_scene.Params.avatarCapsuleRadius, _scene.Params.avatarCapsuleRadius, size.Z); | 96 | ComputeAvatarScale(_size); |
108 | _density = _scene.Params.avatarDensity; | 97 | // set _avatarVolume and _mass based on capsule size, _density and Scale |
109 | ComputeAvatarVolumeAndMass(); // set _avatarVolume and _mass based on capsule size, _density and _scale | 98 | ComputeAvatarVolumeAndMass(); |
99 | DetailLog("{0},BSCharacter.create,call,size={1},scale={2},density={3},volume={4},mass={5}", | ||
100 | LocalID, _size, Scale, _avatarDensity, _avatarVolume, MassRaw); | ||
110 | 101 | ||
111 | ShapeData shapeData = new ShapeData(); | 102 | ShapeData shapeData = new ShapeData(); |
112 | shapeData.ID = _localID; | 103 | shapeData.ID = LocalID; |
113 | shapeData.Type = ShapeData.PhysicsShapeType.SHAPE_AVATAR; | 104 | shapeData.Type = ShapeData.PhysicsShapeType.SHAPE_AVATAR; |
114 | shapeData.Position = _position; | 105 | shapeData.Position = _position; |
115 | shapeData.Rotation = _orientation; | 106 | shapeData.Rotation = _orientation; |
116 | shapeData.Velocity = _velocity; | 107 | shapeData.Velocity = _velocity; |
117 | shapeData.Scale = _scale; | 108 | shapeData.Size = Scale; // capsule is a native shape but scale is not just <1,1,1> |
109 | shapeData.Scale = Scale; | ||
118 | shapeData.Mass = _mass; | 110 | shapeData.Mass = _mass; |
119 | shapeData.Buoyancy = _buoyancy; | 111 | shapeData.Buoyancy = _buoyancy; |
120 | shapeData.Static = ShapeData.numericFalse; | 112 | shapeData.Static = ShapeData.numericFalse; |
121 | shapeData.Friction = _scene.Params.avatarFriction; | 113 | shapeData.Friction = PhysicsScene.Params.avatarStandingFriction; |
122 | shapeData.Restitution = _scene.Params.avatarRestitution; | 114 | shapeData.Restitution = PhysicsScene.Params.avatarRestitution; |
123 | 115 | ||
124 | // do actual create at taint time | 116 | // do actual create at taint time |
125 | _scene.TaintedObject("BSCharacter.create", delegate() | 117 | PhysicsScene.TaintedObject("BSCharacter.create", delegate() |
126 | { | 118 | { |
127 | BulletSimAPI.CreateObject(parent_scene.WorldID, shapeData); | 119 | DetailLog("{0},BSCharacter.create,taint", LocalID); |
120 | // New body and shape into BSBody and BSShape | ||
121 | PhysicsScene.Shapes.GetBodyAndShape(true, PhysicsScene.World, this, shapeData, null, null, null); | ||
128 | 122 | ||
129 | m_body = new BulletBody(LocalID, BulletSimAPI.GetBodyHandle2(_scene.World.Ptr, LocalID)); | 123 | SetPhysicalProperties(); |
130 | // avatars get all collisions no matter what | ||
131 | BulletSimAPI.AddToCollisionFlags2(Body.Ptr, CollisionFlags.BS_SUBSCRIBE_COLLISION_EVENTS); | ||
132 | }); | 124 | }); |
133 | |||
134 | return; | 125 | return; |
135 | } | 126 | } |
136 | 127 | ||
137 | // called when this character is being destroyed and the resources should be released | 128 | // called when this character is being destroyed and the resources should be released |
138 | public void Destroy() | 129 | public override void Destroy() |
139 | { | 130 | { |
140 | // DetailLog("{0},BSCharacter.Destroy", LocalID); | 131 | DetailLog("{0},BSCharacter.Destroy", LocalID); |
141 | _scene.TaintedObject("BSCharacter.destroy", delegate() | 132 | PhysicsScene.TaintedObject("BSCharacter.destroy", delegate() |
142 | { | 133 | { |
143 | BulletSimAPI.DestroyObject(_scene.WorldID, _localID); | 134 | PhysicsScene.Shapes.DereferenceBody(BSBody, true, null); |
135 | PhysicsScene.Shapes.DereferenceShape(BSShape, true, null); | ||
144 | }); | 136 | }); |
145 | } | 137 | } |
146 | 138 | ||
139 | private void SetPhysicalProperties() | ||
140 | { | ||
141 | BulletSimAPI.RemoveObjectFromWorld2(PhysicsScene.World.ptr, BSBody.ptr); | ||
142 | |||
143 | ZeroMotion(); | ||
144 | ForcePosition = _position; | ||
145 | // Set the velocity and compute the proper friction | ||
146 | ForceVelocity = _velocity; | ||
147 | |||
148 | BulletSimAPI.SetRestitution2(BSBody.ptr, PhysicsScene.Params.avatarRestitution); | ||
149 | BulletSimAPI.SetMargin2(BSShape.ptr, PhysicsScene.Params.collisionMargin); | ||
150 | BulletSimAPI.SetLocalScaling2(BSShape.ptr, Scale); | ||
151 | BulletSimAPI.SetContactProcessingThreshold2(BSBody.ptr, PhysicsScene.Params.contactProcessingThreshold); | ||
152 | if (PhysicsScene.Params.ccdMotionThreshold > 0f) | ||
153 | { | ||
154 | BulletSimAPI.SetCcdMotionThreshold2(BSBody.ptr, PhysicsScene.Params.ccdMotionThreshold); | ||
155 | BulletSimAPI.SetCcdSweepSphereRadius2(BSBody.ptr, PhysicsScene.Params.ccdSweptSphereRadius); | ||
156 | } | ||
157 | |||
158 | OMV.Vector3 localInertia = BulletSimAPI.CalculateLocalInertia2(BSShape.ptr, MassRaw); | ||
159 | BulletSimAPI.SetMassProps2(BSBody.ptr, MassRaw, localInertia); | ||
160 | |||
161 | // Make so capsule does not fall over | ||
162 | BulletSimAPI.SetAngularFactorV2(BSBody.ptr, OMV.Vector3.Zero); | ||
163 | |||
164 | BulletSimAPI.AddToCollisionFlags2(BSBody.ptr, CollisionFlags.CF_CHARACTER_OBJECT); | ||
165 | |||
166 | BulletSimAPI.AddObjectToWorld2(PhysicsScene.World.ptr, BSBody.ptr); | ||
167 | |||
168 | // BulletSimAPI.ForceActivationState2(BSBody.ptr, ActivationState.ACTIVE_TAG); | ||
169 | BulletSimAPI.ForceActivationState2(BSBody.ptr, ActivationState.DISABLE_DEACTIVATION); | ||
170 | BulletSimAPI.UpdateSingleAabb2(PhysicsScene.World.ptr, BSBody.ptr); | ||
171 | |||
172 | // Do this after the object has been added to the world | ||
173 | BulletSimAPI.SetCollisionFilterMask2(BSBody.ptr, | ||
174 | (uint)CollisionFilterGroups.AvatarFilter, | ||
175 | (uint)CollisionFilterGroups.AvatarMask); | ||
176 | } | ||
177 | |||
147 | public override void RequestPhysicsterseUpdate() | 178 | public override void RequestPhysicsterseUpdate() |
148 | { | 179 | { |
149 | base.RequestPhysicsterseUpdate(); | 180 | base.RequestPhysicsterseUpdate(); |
150 | } | 181 | } |
151 | // No one calls this method so I don't know what it could possibly mean | 182 | // No one calls this method so I don't know what it could possibly mean |
152 | public override bool Stopped { | 183 | public override bool Stopped { get { return false; } } |
153 | get { return false; } | 184 | |
154 | } | 185 | public override OMV.Vector3 Size { |
155 | public override Vector3 Size { | ||
156 | get | 186 | get |
157 | { | 187 | { |
158 | // Avatar capsule size is kept in the scale parameter. | 188 | // Avatar capsule size is kept in the scale parameter. |
159 | return new Vector3(_scale.X * 2, _scale.Y * 2, _scale.Z); | 189 | // return _size; |
190 | return new OMV.Vector3(Scale.X * 2f, Scale.Y * 2f, Scale.Z); | ||
160 | } | 191 | } |
161 | 192 | ||
162 | set { | 193 | set { |
163 | // When an avatar's size is set, only the height is changed | 194 | // When an avatar's size is set, only the height is changed. |
164 | // and that really only depends on the radius. | ||
165 | _size = value; | 195 | _size = value; |
166 | _scale.Z = (_size.Z * 1.15f) - (_scale.X + _scale.Y); | 196 | ComputeAvatarScale(_size); |
167 | |||
168 | // TODO: something has to be done with the avatar's vertical position | ||
169 | |||
170 | ComputeAvatarVolumeAndMass(); | 197 | ComputeAvatarVolumeAndMass(); |
198 | DetailLog("{0},BSCharacter.setSize,call,scale={1},density={2},volume={3},mass={4}", | ||
199 | LocalID, Scale, _avatarDensity, _avatarVolume, MassRaw); | ||
171 | 200 | ||
172 | _scene.TaintedObject("BSCharacter.setSize", delegate() | 201 | PhysicsScene.TaintedObject("BSCharacter.setSize", delegate() |
173 | { | 202 | { |
174 | BulletSimAPI.SetObjectScaleMass(_scene.WorldID, LocalID, _scale, _mass, true); | 203 | BulletSimAPI.SetLocalScaling2(BSShape.ptr, Scale); |
204 | OMV.Vector3 localInertia = BulletSimAPI.CalculateLocalInertia2(BSShape.ptr, MassRaw); | ||
205 | BulletSimAPI.SetMassProps2(BSBody.ptr, MassRaw, localInertia); | ||
175 | }); | 206 | }); |
176 | 207 | ||
177 | } | ||
178 | } | ||
179 | public override PrimitiveBaseShape Shape { | ||
180 | set { _pbs = value; | ||
181 | } | ||
182 | } | ||
183 | public override uint LocalID { | ||
184 | set { _localID = value; | ||
185 | } | 208 | } |
186 | get { return _localID; } | ||
187 | } | 209 | } |
188 | public override bool Grabbed { | 210 | |
189 | set { _grabbed = value; | 211 | public override OMV.Vector3 Scale { get; set; } |
190 | } | 212 | |
213 | public override PrimitiveBaseShape Shape | ||
214 | { | ||
215 | set { BaseShape = value; } | ||
216 | } | ||
217 | |||
218 | public override bool Grabbed { | ||
219 | set { _grabbed = value; } | ||
191 | } | 220 | } |
192 | public override bool Selected { | 221 | public override bool Selected { |
193 | set { _selected = value; | 222 | set { _selected = value; } |
194 | } | ||
195 | } | 223 | } |
196 | public override void CrossingFailure() { return; } | 224 | public override void CrossingFailure() { return; } |
197 | public override void link(PhysicsActor obj) { return; } | 225 | public override void link(PhysicsActor obj) { return; } |
198 | public override void delink() { return; } | 226 | public override void delink() { return; } |
199 | public override void LockAngularMotion(Vector3 axis) { return; } | ||
200 | 227 | ||
201 | public override Vector3 Position { | 228 | // Set motion values to zero. |
229 | // Do it to the properties so the values get set in the physics engine. | ||
230 | // Push the setting of the values to the viewer. | ||
231 | // Called at taint time! | ||
232 | public override void ZeroMotion() | ||
233 | { | ||
234 | _velocity = OMV.Vector3.Zero; | ||
235 | _acceleration = OMV.Vector3.Zero; | ||
236 | _rotationalVelocity = OMV.Vector3.Zero; | ||
237 | |||
238 | // Zero some other properties directly into the physics engine | ||
239 | BulletSimAPI.SetLinearVelocity2(BSBody.ptr, OMV.Vector3.Zero); | ||
240 | BulletSimAPI.SetAngularVelocity2(BSBody.ptr, OMV.Vector3.Zero); | ||
241 | BulletSimAPI.SetInterpolationVelocity2(BSBody.ptr, OMV.Vector3.Zero, OMV.Vector3.Zero); | ||
242 | BulletSimAPI.ClearForces2(BSBody.ptr); | ||
243 | } | ||
244 | |||
245 | public override void LockAngularMotion(OMV.Vector3 axis) { return; } | ||
246 | |||
247 | public override OMV.Vector3 Position { | ||
202 | get { | 248 | get { |
203 | // _position = BulletSimAPI.GetObjectPosition(_scene.WorldID, _localID); | 249 | // _position = BulletSimAPI.GetObjectPosition2(Scene.World.ptr, LocalID); |
204 | return _position; | 250 | return _position; |
205 | } | 251 | } |
206 | set { | 252 | set { |
207 | _position = value; | 253 | _position = value; |
208 | PositionSanityCheck(); | 254 | PositionSanityCheck(); |
209 | 255 | ||
210 | _scene.TaintedObject("BSCharacter.setPosition", delegate() | 256 | PhysicsScene.TaintedObject("BSCharacter.setPosition", delegate() |
211 | { | 257 | { |
212 | DetailLog("{0},BSCharacter.SetPosition,taint,pos={1},orient={2}", LocalID, _position, _orientation); | 258 | DetailLog("{0},BSCharacter.SetPosition,taint,pos={1},orient={2}", LocalID, _position, _orientation); |
213 | BulletSimAPI.SetObjectTranslation(_scene.WorldID, _localID, _position, _orientation); | 259 | BulletSimAPI.SetTranslation2(BSBody.ptr, _position, _orientation); |
214 | }); | 260 | }); |
215 | } | 261 | } |
262 | } | ||
263 | public override OMV.Vector3 ForcePosition { | ||
264 | get { | ||
265 | _position = BulletSimAPI.GetPosition2(BSBody.ptr); | ||
266 | return _position; | ||
267 | } | ||
268 | set { | ||
269 | _position = value; | ||
270 | PositionSanityCheck(); | ||
271 | BulletSimAPI.SetTranslation2(BSBody.ptr, _position, _orientation); | ||
272 | } | ||
216 | } | 273 | } |
217 | 274 | ||
275 | |||
218 | // Check that the current position is sane and, if not, modify the position to make it so. | 276 | // Check that the current position is sane and, if not, modify the position to make it so. |
219 | // Check for being below terrain and being out of bounds. | 277 | // Check for being below terrain or on water. |
220 | // Returns 'true' of the position was made sane by some action. | 278 | // Returns 'true' of the position was made sane by some action. |
221 | private bool PositionSanityCheck() | 279 | private bool PositionSanityCheck() |
222 | { | 280 | { |
223 | bool ret = false; | 281 | bool ret = false; |
224 | 282 | ||
225 | // If below the ground, move the avatar up | 283 | // If below the ground, move the avatar up |
226 | float terrainHeight = Scene.GetTerrainHeightAtXYZ(_position); | 284 | float terrainHeight = PhysicsScene.TerrainManager.GetTerrainHeightAtXYZ(_position); |
227 | if (_position.Z < terrainHeight) | 285 | if (Position.Z < terrainHeight) |
228 | { | 286 | { |
229 | DetailLog("{0},BSCharacter.PositionAdjustUnderGround,call,pos={1},orient={2}", LocalID, _position, _orientation); | 287 | DetailLog("{0},BSCharacter.PositionAdjustUnderGround,call,pos={1},terrain={2}", LocalID, _position, terrainHeight); |
230 | _position.Z = terrainHeight + 2.0f; | 288 | _position.Z = terrainHeight + 2.0f; |
231 | ret = true; | 289 | ret = true; |
232 | } | 290 | } |
291 | if ((CurrentCollisionFlags & CollisionFlags.BS_FLOATS_ON_WATER) != 0) | ||
292 | { | ||
293 | float waterHeight = PhysicsScene.GetWaterLevelAtXYZ(_position); | ||
294 | if (Position.Z < waterHeight) | ||
295 | { | ||
296 | _position.Z = waterHeight; | ||
297 | ret = true; | ||
298 | } | ||
299 | } | ||
233 | 300 | ||
234 | // TODO: check for out of bounds | 301 | // TODO: check for out of bounds |
235 | |||
236 | return ret; | 302 | return ret; |
237 | } | 303 | } |
238 | 304 | ||
239 | public override float Mass { | 305 | // A version of the sanity check that also makes sure a new position value is |
240 | get { | 306 | // pushed back to the physics engine. This routine would be used by anyone |
241 | return _mass; | 307 | // who is not already pushing the value. |
242 | } | 308 | private bool PositionSanityCheck(bool inTaintTime) |
309 | { | ||
310 | bool ret = false; | ||
311 | if (PositionSanityCheck()) | ||
312 | { | ||
313 | // The new position value must be pushed into the physics engine but we can't | ||
314 | // just assign to "Position" because of potential call loops. | ||
315 | BSScene.TaintCallback sanityOperation = delegate() | ||
316 | { | ||
317 | DetailLog("{0},BSCharacter.PositionSanityCheck,taint,pos={1},orient={2}", LocalID, _position, _orientation); | ||
318 | BulletSimAPI.SetTranslation2(BSBody.ptr, _position, _orientation); | ||
319 | }; | ||
320 | if (inTaintTime) | ||
321 | sanityOperation(); | ||
322 | else | ||
323 | PhysicsScene.TaintedObject("BSCharacter.PositionSanityCheck", sanityOperation); | ||
324 | ret = true; | ||
325 | } | ||
326 | return ret; | ||
243 | } | 327 | } |
244 | public override Vector3 Force { | 328 | |
245 | get { return _force; } | 329 | public override float Mass { get { return _mass; } } |
330 | |||
331 | // used when we only want this prim's mass and not the linkset thing | ||
332 | public override float MassRaw { get {return _mass; } } | ||
333 | |||
334 | public override OMV.Vector3 Force { | ||
335 | get { return _force; } | ||
246 | set { | 336 | set { |
247 | _force = value; | 337 | _force = value; |
248 | // m_log.DebugFormat("{0}: Force = {1}", LogHeader, _force); | 338 | // m_log.DebugFormat("{0}: Force = {1}", LogHeader, _force); |
249 | Scene.TaintedObject("BSCharacter.SetForce", delegate() | 339 | PhysicsScene.TaintedObject("BSCharacter.SetForce", delegate() |
250 | { | 340 | { |
251 | DetailLog("{0},BSCharacter.setForce,taint,force={1}", LocalID, _force); | 341 | DetailLog("{0},BSCharacter.setForce,taint,force={1}", LocalID, _force); |
252 | BulletSimAPI.SetObjectForce(Scene.WorldID, LocalID, _force); | 342 | BulletSimAPI.SetObjectForce2(BSBody.ptr, _force); |
253 | }); | 343 | }); |
254 | } | 344 | } |
255 | } | 345 | } |
256 | 346 | ||
257 | public override int VehicleType { | 347 | // Avatars don't do vehicles |
258 | get { return 0; } | 348 | public override int VehicleType { get { return (int)Vehicle.TYPE_NONE; } set { return; } } |
259 | set { return; } | ||
260 | } | ||
261 | public override void VehicleFloatParam(int param, float value) { } | 349 | public override void VehicleFloatParam(int param, float value) { } |
262 | public override void VehicleVectorParam(int param, Vector3 value) {} | 350 | public override void VehicleVectorParam(int param, OMV.Vector3 value) {} |
263 | public override void VehicleRotationParam(int param, Quaternion rotation) { } | 351 | public override void VehicleRotationParam(int param, OMV.Quaternion rotation) { } |
264 | public override void VehicleFlags(int param, bool remove) { } | 352 | public override void VehicleFlags(int param, bool remove) { } |
265 | 353 | ||
266 | // Allows the detection of collisions with inherently non-physical prims. see llVolumeDetect for more | 354 | // Allows the detection of collisions with inherently non-physical prims. see llVolumeDetect for more |
267 | public override void SetVolumeDetect(int param) { return; } | 355 | public override void SetVolumeDetect(int param) { return; } |
268 | 356 | ||
269 | public override Vector3 GeometricCenter { get { return Vector3.Zero; } } | 357 | public override OMV.Vector3 GeometricCenter { get { return OMV.Vector3.Zero; } } |
270 | public override Vector3 CenterOfMass { get { return Vector3.Zero; } } | 358 | public override OMV.Vector3 CenterOfMass { get { return OMV.Vector3.Zero; } } |
271 | public override Vector3 Velocity { | 359 | public override OMV.Vector3 Velocity { |
272 | get { return _velocity; } | 360 | get { return _velocity; } |
273 | set { | 361 | set { |
274 | _velocity = value; | 362 | _velocity = value; |
275 | // m_log.DebugFormat("{0}: set velocity = {1}", LogHeader, _velocity); | 363 | // m_log.DebugFormat("{0}: set velocity = {1}", LogHeader, _velocity); |
276 | _scene.TaintedObject("BSCharacter.setVelocity", delegate() | 364 | PhysicsScene.TaintedObject("BSCharacter.setVelocity", delegate() |
277 | { | 365 | { |
278 | DetailLog("{0},BSCharacter.setVelocity,taint,vel={1}", LocalID, _velocity); | 366 | DetailLog("{0},BSCharacter.setVelocity,taint,vel={1}", LocalID, _velocity); |
279 | BulletSimAPI.SetObjectVelocity(_scene.WorldID, _localID, _velocity); | 367 | ForceVelocity = _velocity; |
280 | }); | 368 | }); |
281 | } | 369 | } |
282 | } | 370 | } |
283 | public override Vector3 Torque { | 371 | public override OMV.Vector3 ForceVelocity { |
284 | get { return _torque; } | 372 | get { return _velocity; } |
285 | set { _torque = value; | 373 | set { |
286 | } | 374 | // Depending on whether the avatar is moving or not, change the friction |
375 | // to keep the avatar from slipping around | ||
376 | if (_velocity.Length() == 0) | ||
377 | { | ||
378 | if (_currentFriction != PhysicsScene.Params.avatarStandingFriction) | ||
379 | { | ||
380 | _currentFriction = PhysicsScene.Params.avatarStandingFriction; | ||
381 | BulletSimAPI.SetFriction2(BSBody.ptr, _currentFriction); | ||
382 | } | ||
383 | } | ||
384 | else | ||
385 | { | ||
386 | if (_currentFriction != PhysicsScene.Params.avatarFriction) | ||
387 | { | ||
388 | _currentFriction = PhysicsScene.Params.avatarFriction; | ||
389 | BulletSimAPI.SetFriction2(BSBody.ptr, _currentFriction); | ||
390 | } | ||
391 | } | ||
392 | _velocity = value; | ||
393 | // Remember the set velocity so we can suppress the reduction by friction, ... | ||
394 | _appliedVelocity = value; | ||
395 | |||
396 | BulletSimAPI.SetLinearVelocity2(BSBody.ptr, _velocity); | ||
397 | BulletSimAPI.Activate2(BSBody.ptr, true); | ||
398 | } | ||
287 | } | 399 | } |
288 | public override float CollisionScore { | 400 | public override OMV.Vector3 Torque { |
289 | get { return _collisionScore; } | 401 | get { return _torque; } |
290 | set { _collisionScore = value; | 402 | set { _torque = value; |
291 | } | 403 | } |
404 | } | ||
405 | public override float CollisionScore { | ||
406 | get { return _collisionScore; } | ||
407 | set { _collisionScore = value; | ||
408 | } | ||
292 | } | 409 | } |
293 | public override Vector3 Acceleration { | 410 | public override OMV.Vector3 Acceleration { |
294 | get { return _acceleration; } | 411 | get { return _acceleration; } |
295 | set { _acceleration = value; } | 412 | set { _acceleration = value; } |
296 | } | 413 | } |
297 | public override Quaternion Orientation { | 414 | public override OMV.Quaternion Orientation { |
298 | get { return _orientation; } | 415 | get { return _orientation; } |
299 | set { | 416 | set { |
300 | _orientation = value; | 417 | _orientation = value; |
301 | // m_log.DebugFormat("{0}: set orientation to {1}", LogHeader, _orientation); | 418 | // m_log.DebugFormat("{0}: set orientation to {1}", LogHeader, _orientation); |
302 | _scene.TaintedObject("BSCharacter.setOrientation", delegate() | 419 | PhysicsScene.TaintedObject("BSCharacter.setOrientation", delegate() |
303 | { | 420 | { |
304 | // _position = BulletSimAPI.GetObjectPosition(_scene.WorldID, _localID); | 421 | // _position = BulletSimAPI.GetPosition2(BSBody.ptr); |
305 | BulletSimAPI.SetObjectTranslation(_scene.WorldID, _localID, _position, _orientation); | 422 | BulletSimAPI.SetTranslation2(BSBody.ptr, _position, _orientation); |
306 | }); | 423 | }); |
307 | } | 424 | } |
425 | } | ||
426 | // Go directly to Bullet to get/set the value. | ||
427 | public override OMV.Quaternion ForceOrientation | ||
428 | { | ||
429 | get | ||
430 | { | ||
431 | _orientation = BulletSimAPI.GetOrientation2(BSBody.ptr); | ||
432 | return _orientation; | ||
433 | } | ||
434 | set | ||
435 | { | ||
436 | _orientation = value; | ||
437 | BulletSimAPI.SetTranslation2(BSBody.ptr, _position, _orientation); | ||
438 | } | ||
308 | } | 439 | } |
309 | public override int PhysicsActorType { | 440 | public override int PhysicsActorType { |
310 | get { return _physicsActorType; } | 441 | get { return _physicsActorType; } |
311 | set { _physicsActorType = value; | 442 | set { _physicsActorType = value; |
312 | } | 443 | } |
313 | } | 444 | } |
314 | public override bool IsPhysical { | 445 | public override bool IsPhysical { |
315 | get { return _isPhysical; } | 446 | get { return _isPhysical; } |
316 | set { _isPhysical = value; | 447 | set { _isPhysical = value; |
317 | } | 448 | } |
449 | } | ||
450 | public override bool IsSolid { | ||
451 | get { return true; } | ||
318 | } | 452 | } |
319 | public override bool Flying { | 453 | public override bool IsStatic { |
320 | get { return _flying; } | 454 | get { return false; } |
455 | } | ||
456 | public override bool Flying { | ||
457 | get { return _flying; } | ||
321 | set { | 458 | set { |
322 | if (_flying != value) | 459 | _flying = value; |
323 | { | 460 | // simulate flying by changing the effect of gravity |
324 | _flying = value; | 461 | Buoyancy = ComputeBuoyancyFromFlying(_flying); |
325 | // simulate flying by changing the effect of gravity | 462 | } |
326 | this.Buoyancy = ComputeBuoyancyFromFlying(_flying); | ||
327 | } | ||
328 | } | ||
329 | } | 463 | } |
464 | // Flying is implimented by changing the avatar's buoyancy. | ||
465 | // Would this be done better with a vehicle type? | ||
330 | private float ComputeBuoyancyFromFlying(bool ifFlying) { | 466 | private float ComputeBuoyancyFromFlying(bool ifFlying) { |
331 | return ifFlying ? 1f : 0f; | 467 | return ifFlying ? 1f : 0f; |
332 | } | 468 | } |
333 | public override bool | 469 | public override bool |
334 | SetAlwaysRun { | 470 | SetAlwaysRun { |
335 | get { return _setAlwaysRun; } | 471 | get { return _setAlwaysRun; } |
336 | set { _setAlwaysRun = value; } | 472 | set { _setAlwaysRun = value; } |
337 | } | 473 | } |
338 | public override bool ThrottleUpdates { | 474 | public override bool ThrottleUpdates { |
339 | get { return _throttleUpdates; } | 475 | get { return _throttleUpdates; } |
340 | set { _throttleUpdates = value; } | 476 | set { _throttleUpdates = value; } |
341 | } | 477 | } |
342 | public override bool IsColliding { | 478 | public override bool IsColliding { |
343 | get { return (_collidingStep == _scene.SimulationStep); } | 479 | get { return (CollidingStep == PhysicsScene.SimulationStep); } |
344 | set { _isColliding = value; } | 480 | set { _isColliding = value; } |
345 | } | 481 | } |
346 | public override bool CollidingGround { | 482 | public override bool CollidingGround { |
347 | get { return (_collidingGroundStep == _scene.SimulationStep); } | 483 | get { return (CollidingGroundStep == PhysicsScene.SimulationStep); } |
348 | set { _collidingGround = value; } | 484 | set { CollidingGround = value; } |
349 | } | 485 | } |
350 | public override bool CollidingObj { | 486 | public override bool CollidingObj { |
351 | get { return _collidingObj; } | 487 | get { return _collidingObj; } |
352 | set { _collidingObj = value; } | 488 | set { _collidingObj = value; } |
353 | } | 489 | } |
354 | public override bool FloatOnWater { | 490 | public override bool FloatOnWater { |
355 | set { _floatOnWater = value; } | 491 | set { |
492 | _floatOnWater = value; | ||
493 | PhysicsScene.TaintedObject("BSCharacter.setFloatOnWater", delegate() | ||
494 | { | ||
495 | if (_floatOnWater) | ||
496 | CurrentCollisionFlags = BulletSimAPI.AddToCollisionFlags2(BSBody.ptr, CollisionFlags.BS_FLOATS_ON_WATER); | ||
497 | else | ||
498 | CurrentCollisionFlags = BulletSimAPI.RemoveFromCollisionFlags2(BSBody.ptr, CollisionFlags.BS_FLOATS_ON_WATER); | ||
499 | }); | ||
500 | } | ||
501 | } | ||
502 | public override OMV.Vector3 RotationalVelocity { | ||
503 | get { return _rotationalVelocity; } | ||
504 | set { _rotationalVelocity = value; } | ||
356 | } | 505 | } |
357 | public override Vector3 RotationalVelocity { | 506 | public override OMV.Vector3 ForceRotationalVelocity { |
358 | get { return _rotationalVelocity; } | 507 | get { return _rotationalVelocity; } |
359 | set { _rotationalVelocity = value; } | 508 | set { _rotationalVelocity = value; } |
360 | } | 509 | } |
361 | public override bool Kinematic { | 510 | public override bool Kinematic { |
362 | get { return _kinematic; } | 511 | get { return _kinematic; } |
363 | set { _kinematic = value; } | 512 | set { _kinematic = value; } |
364 | } | 513 | } |
365 | // neg=fall quickly, 0=1g, 1=0g, pos=float up | 514 | // neg=fall quickly, 0=1g, 1=0g, pos=float up |
366 | public override float Buoyancy { | 515 | public override float Buoyancy { |
367 | get { return _buoyancy; } | 516 | get { return _buoyancy; } |
368 | set { _buoyancy = value; | 517 | set { _buoyancy = value; |
369 | _scene.TaintedObject("BSCharacter.setBuoyancy", delegate() | 518 | PhysicsScene.TaintedObject("BSCharacter.setBuoyancy", delegate() |
370 | { | 519 | { |
371 | DetailLog("{0},BSCharacter.setBuoyancy,taint,buoy={1}", LocalID, _buoyancy); | 520 | DetailLog("{0},BSCharacter.setBuoyancy,taint,buoy={1}", LocalID, _buoyancy); |
372 | BulletSimAPI.SetObjectBuoyancy(_scene.WorldID, LocalID, _buoyancy); | 521 | ForceBuoyancy = _buoyancy; |
373 | }); | 522 | }); |
374 | } | 523 | } |
524 | } | ||
525 | public override float ForceBuoyancy { | ||
526 | get { return _buoyancy; } | ||
527 | set { _buoyancy = value; | ||
528 | DetailLog("{0},BSCharacter.setForceBuoyancy,taint,buoy={1}", LocalID, _buoyancy); | ||
529 | // Buoyancy is faked by changing the gravity applied to the object | ||
530 | float grav = PhysicsScene.Params.gravity * (1f - _buoyancy); | ||
531 | BulletSimAPI.SetGravity2(BSBody.ptr, new OMV.Vector3(0f, 0f, grav)); | ||
532 | } | ||
375 | } | 533 | } |
376 | 534 | ||
377 | // Used for MoveTo | 535 | // Used for MoveTo |
378 | public override Vector3 PIDTarget { | 536 | public override OMV.Vector3 PIDTarget { |
379 | set { _PIDTarget = value; } | 537 | set { _PIDTarget = value; } |
380 | } | 538 | } |
381 | public override bool PIDActive { | 539 | public override bool PIDActive { |
382 | set { _usePID = value; } | 540 | set { _usePID = value; } |
383 | } | 541 | } |
384 | public override float PIDTau { | 542 | public override float PIDTau { |
385 | set { _PIDTau = value; } | 543 | set { _PIDTau = value; } |
386 | } | 544 | } |
387 | 545 | ||
388 | // Used for llSetHoverHeight and maybe vehicle height | 546 | // Used for llSetHoverHeight and maybe vehicle height |
389 | // Hover Height will override MoveTo target's Z | 547 | // Hover Height will override MoveTo target's Z |
390 | public override bool PIDHoverActive { | 548 | public override bool PIDHoverActive { |
391 | set { _useHoverPID = value; } | 549 | set { _useHoverPID = value; } |
392 | } | 550 | } |
393 | public override float PIDHoverHeight { | 551 | public override float PIDHoverHeight { |
394 | set { _PIDHoverHeight = value; } | 552 | set { _PIDHoverHeight = value; } |
395 | } | 553 | } |
396 | public override PIDHoverType PIDHoverType { | 554 | public override PIDHoverType PIDHoverType { |
397 | set { _PIDHoverType = value; } | 555 | set { _PIDHoverType = value; } |
398 | } | 556 | } |
399 | public override float PIDHoverTau { | 557 | public override float PIDHoverTau { |
400 | set { _PIDHoverTao = value; } | 558 | set { _PIDHoverTao = value; } |
401 | } | 559 | } |
402 | 560 | ||
403 | // For RotLookAt | 561 | // For RotLookAt |
404 | public override Quaternion APIDTarget { set { return; } } | 562 | public override OMV.Quaternion APIDTarget { set { return; } } |
405 | public override bool APIDActive { set { return; } } | 563 | public override bool APIDActive { set { return; } } |
406 | public override float APIDStrength { set { return; } } | 564 | public override float APIDStrength { set { return; } } |
407 | public override float APIDDamping { set { return; } } | 565 | public override float APIDDamping { set { return; } } |
408 | 566 | ||
409 | public override void AddForce(Vector3 force, bool pushforce) { | 567 | public override void AddForce(OMV.Vector3 force, bool pushforce) { |
410 | if (force.IsFinite()) | 568 | if (force.IsFinite()) |
411 | { | 569 | { |
412 | _force.X += force.X; | 570 | _force.X += force.X; |
413 | _force.Y += force.Y; | 571 | _force.Y += force.Y; |
414 | _force.Z += force.Z; | 572 | _force.Z += force.Z; |
415 | // m_log.DebugFormat("{0}: AddForce. adding={1}, newForce={2}", LogHeader, force, _force); | 573 | // m_log.DebugFormat("{0}: AddForce. adding={1}, newForce={2}", LogHeader, force, _force); |
416 | _scene.TaintedObject("BSCharacter.AddForce", delegate() | 574 | PhysicsScene.TaintedObject("BSCharacter.AddForce", delegate() |
417 | { | 575 | { |
418 | DetailLog("{0},BSCharacter.setAddForce,taint,addedForce={1}", LocalID, _force); | 576 | DetailLog("{0},BSCharacter.setAddForce,taint,addedForce={1}", LocalID, _force); |
419 | BulletSimAPI.AddObjectForce2(Body.Ptr, _force); | 577 | BulletSimAPI.SetObjectForce2(BSBody.ptr, _force); |
420 | }); | 578 | }); |
421 | } | 579 | } |
422 | else | 580 | else |
@@ -426,129 +584,75 @@ public class BSCharacter : PhysicsActor | |||
426 | //m_lastUpdateSent = false; | 584 | //m_lastUpdateSent = false; |
427 | } | 585 | } |
428 | 586 | ||
429 | public override void AddAngularForce(Vector3 force, bool pushforce) { | 587 | public override void AddAngularForce(OMV.Vector3 force, bool pushforce) { |
430 | } | 588 | } |
431 | public override void SetMomentum(Vector3 momentum) { | 589 | public override void SetMomentum(OMV.Vector3 momentum) { |
432 | } | 590 | } |
433 | 591 | ||
434 | // Turn on collision events at a rate no faster than one every the given milliseconds | 592 | private void ComputeAvatarScale(OMV.Vector3 size) |
435 | public override void SubscribeEvents(int ms) { | 593 | { |
436 | _subscribedEventsMs = ms; | 594 | // The 'size' given by the simulator is the mid-point of the avatar |
437 | if (ms > 0) | 595 | // and X and Y are unspecified. |
438 | { | ||
439 | // make sure first collision happens | ||
440 | _nextCollisionOkTime = Util.EnvironmentTickCount() - _subscribedEventsMs; | ||
441 | 596 | ||
442 | Scene.TaintedObject("BSCharacter.SubscribeEvents", delegate() | 597 | OMV.Vector3 newScale = OMV.Vector3.Zero; |
443 | { | 598 | newScale.X = PhysicsScene.Params.avatarCapsuleRadius; |
444 | BulletSimAPI.AddToCollisionFlags2(Body.Ptr, CollisionFlags.BS_SUBSCRIBE_COLLISION_EVENTS); | 599 | newScale.Y = PhysicsScene.Params.avatarCapsuleRadius; |
445 | }); | 600 | |
446 | } | 601 | // From the total height, remove the capsule half spheres that are at each end |
447 | } | 602 | newScale.Z = size.Z- (newScale.X + newScale.Y); |
448 | // Stop collision events | 603 | Scale = newScale; |
449 | public override void UnSubscribeEvents() { | ||
450 | _subscribedEventsMs = 0; | ||
451 | // Avatars get all their collision events | ||
452 | // Scene.TaintedObject("BSCharacter.UnSubscribeEvents", delegate() | ||
453 | // { | ||
454 | // BulletSimAPI.RemoveFromCollisionFlags2(Body.Ptr, CollisionFlags.BS_SUBSCRIBE_COLLISION_EVENTS); | ||
455 | // }); | ||
456 | } | ||
457 | // Return 'true' if someone has subscribed to events | ||
458 | public override bool SubscribedEvents() { | ||
459 | return (_subscribedEventsMs > 0); | ||
460 | } | 604 | } |
461 | 605 | ||
462 | // set _avatarVolume and _mass based on capsule size, _density and _scale | 606 | // set _avatarVolume and _mass based on capsule size, _density and Scale |
463 | private void ComputeAvatarVolumeAndMass() | 607 | private void ComputeAvatarVolumeAndMass() |
464 | { | 608 | { |
465 | _avatarVolume = (float)( | 609 | _avatarVolume = (float)( |
466 | Math.PI | 610 | Math.PI |
467 | * _scale.X | 611 | * Scale.X |
468 | * _scale.Y // the area of capsule cylinder | 612 | * Scale.Y // the area of capsule cylinder |
469 | * _scale.Z // times height of capsule cylinder | 613 | * Scale.Z // times height of capsule cylinder |
470 | + 1.33333333f | 614 | + 1.33333333f |
471 | * Math.PI | 615 | * Math.PI |
472 | * _scale.X | 616 | * Scale.X |
473 | * Math.Min(_scale.X, _scale.Y) | 617 | * Math.Min(Scale.X, Scale.Y) |
474 | * _scale.Y // plus the volume of the capsule end caps | 618 | * Scale.Y // plus the volume of the capsule end caps |
475 | ); | 619 | ); |
476 | _mass = _density * _avatarVolume; | 620 | _mass = _avatarDensity * _avatarVolume; |
477 | } | 621 | } |
478 | 622 | ||
479 | // The physics engine says that properties have updated. Update same and inform | 623 | // The physics engine says that properties have updated. Update same and inform |
480 | // the world that things have changed. | 624 | // the world that things have changed. |
481 | public void UpdateProperties(EntityProperties entprop) | 625 | public override void UpdateProperties(EntityProperties entprop) |
482 | { | 626 | { |
483 | _position = entprop.Position; | 627 | _position = entprop.Position; |
484 | _orientation = entprop.Rotation; | 628 | _orientation = entprop.Rotation; |
485 | _velocity = entprop.Velocity; | 629 | _velocity = entprop.Velocity; |
486 | _acceleration = entprop.Acceleration; | 630 | _acceleration = entprop.Acceleration; |
487 | _rotationalVelocity = entprop.RotationalVelocity; | 631 | _rotationalVelocity = entprop.RotationalVelocity; |
488 | // Avatars don't report their changes the usual way. Changes are checked for in the heartbeat loop. | 632 | // Do some sanity checking for the avatar. Make sure it's above ground and inbounds. |
489 | // base.RequestPhysicsterseUpdate(); | 633 | PositionSanityCheck(true); |
490 | 634 | ||
491 | /* | 635 | // remember the current and last set values |
492 | DetailLog("{0},BSCharacter.UpdateProperties,call,pos={1},orient={2},vel={3},accel={4},rotVel={5}", | 636 | LastEntityProperties = CurrentEntityProperties; |
493 | LocalID, entprop.Position, entprop.Rotation, entprop.Velocity, | 637 | CurrentEntityProperties = entprop; |
494 | entprop.Acceleration, entprop.RotationalVelocity); | ||
495 | */ | ||
496 | } | ||
497 | |||
498 | // Called by the scene when a collision with this object is reported | ||
499 | // The collision, if it should be reported to the character, is placed in a collection | ||
500 | // that will later be sent to the simulator when SendCollisions() is called. | ||
501 | CollisionEventUpdate collisionCollection = null; | ||
502 | public void Collide(uint collidingWith, ActorTypes type, Vector3 contactPoint, Vector3 contactNormal, float pentrationDepth) | ||
503 | { | ||
504 | // m_log.DebugFormat("{0}: Collide: ms={1}, id={2}, with={3}", LogHeader, _subscribedEventsMs, LocalID, collidingWith); | ||
505 | 638 | ||
506 | // The following makes IsColliding() and IsCollidingGround() work | 639 | if (entprop.Velocity != LastEntityProperties.Velocity) |
507 | _collidingStep = _scene.SimulationStep; | ||
508 | if (collidingWith == BSScene.TERRAIN_ID || collidingWith == BSScene.GROUNDPLANE_ID) | ||
509 | { | 640 | { |
510 | _collidingGroundStep = _scene.SimulationStep; | 641 | // Changes in the velocity are suppressed in avatars. |
642 | // That's just the way they are defined. | ||
643 | OMV.Vector3 avVel = new OMV.Vector3(_appliedVelocity.X, _appliedVelocity.Y, entprop.Velocity.Z); | ||
644 | _velocity = avVel; | ||
645 | BulletSimAPI.SetLinearVelocity2(BSBody.ptr, avVel); | ||
511 | } | 646 | } |
512 | // DetailLog("{0},BSCharacter.Collison,call,with={1}", LocalID, collidingWith); | ||
513 | 647 | ||
514 | // throttle collisions to the rate specified in the subscription | 648 | // Tell the linkset about value changes |
515 | if (_subscribedEventsMs != 0) { | 649 | Linkset.UpdateProperties(this); |
516 | int nowTime = _scene.SimulationNowTime; | ||
517 | if (nowTime >= _nextCollisionOkTime) { | ||
518 | _nextCollisionOkTime = nowTime + _subscribedEventsMs; | ||
519 | 650 | ||
520 | if (collisionCollection == null) | 651 | // Avatars don't report their changes the usual way. Changes are checked for in the heartbeat loop. |
521 | collisionCollection = new CollisionEventUpdate(); | 652 | // base.RequestPhysicsterseUpdate(); |
522 | collisionCollection.AddCollider(collidingWith, new ContactPoint(contactPoint, contactNormal, pentrationDepth)); | ||
523 | } | ||
524 | } | ||
525 | } | ||
526 | 653 | ||
527 | public void SendCollisions() | 654 | DetailLog("{0},BSCharacter.UpdateProperties,call,pos={1},orient={2},vel={3},accel={4},rotVel={5}", |
528 | { | 655 | LocalID, _position, _orientation, _velocity, _acceleration, _rotationalVelocity); |
529 | /* | ||
530 | if (collisionCollection != null && collisionCollection.Count > 0) | ||
531 | { | ||
532 | base.SendCollisionUpdate(collisionCollection); | ||
533 | collisionCollection = null; | ||
534 | } | ||
535 | */ | ||
536 | // Kludge to make a collision call even if there are no collisions. | ||
537 | // This causes the avatar animation to get updated. | ||
538 | if (collisionCollection == null) | ||
539 | collisionCollection = new CollisionEventUpdate(); | ||
540 | base.SendCollisionUpdate(collisionCollection); | ||
541 | // If there were any collisions in the collection, make sure we don't use the | ||
542 | // same instance next time. | ||
543 | if (collisionCollection.Count > 0) | ||
544 | collisionCollection = null; | ||
545 | // End kludge | ||
546 | } | ||
547 | |||
548 | // Invoke the detailed logger and output something if it's enabled. | ||
549 | private void DetailLog(string msg, params Object[] args) | ||
550 | { | ||
551 | Scene.PhysicsLogging.Write(msg, args); | ||
552 | } | 656 | } |
553 | } | 657 | } |
554 | } | 658 | } |