diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs | 3287 |
1 files changed, 3287 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs new file mode 100644 index 0000000..29a3dd9 --- /dev/null +++ b/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs | |||
@@ -0,0 +1,3287 @@ | |||
1 | /* Copyright (c) Contributors, http://opensimulator.org/ | ||
2 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
3 | * Redistribution and use in source and binary forms, with or without | ||
4 | * modification, are permitted provided that the following conditions are met: | ||
5 | * * Redistributions of source code must retain the above copyright | ||
6 | * notice, this list of conditions and the following disclaimer. | ||
7 | * * Redistributions in binary form must reproduce the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer in the | ||
9 | * documentation and/or other materials provided with the distribution. | ||
10 | * * Neither the name of the OpenSimulator Project nor the | ||
11 | * names of its contributors may be used to endorse or promote products | ||
12 | * derived from this software without specific prior written permission. | ||
13 | * | ||
14 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
15 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
16 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
17 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
18 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
19 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
20 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
21 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
23 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
24 | * | ||
25 | * Revised August 26 2009 by Kitto Flora. ODEDynamics.cs replaces | ||
26 | * ODEVehicleSettings.cs. It and ODEPrim.cs are re-organised: | ||
27 | * ODEPrim.cs contains methods dealing with Prim editing, Prim | ||
28 | * characteristics and Kinetic motion. | ||
29 | * ODEDynamics.cs contains methods dealing with Prim Physical motion | ||
30 | * (dynamics) and the associated settings. Old Linear and angular | ||
31 | * motors for dynamic motion have been replace with MoveLinear() | ||
32 | * and MoveAngular(); 'Physical' is used only to switch ODE dynamic | ||
33 | * simualtion on/off; VEHICAL_TYPE_NONE/VEHICAL_TYPE_<other> is to | ||
34 | * switch between 'VEHICLE' parameter use and general dynamics | ||
35 | * settings use. | ||
36 | */ | ||
37 | |||
38 | /* | ||
39 | * Revised August 26 2009 by Kitto Flora. ODEDynamics.cs replaces | ||
40 | * ODEVehicleSettings.cs. It and ODEPrim.cs are re-organised: | ||
41 | * ODEPrim.cs contains methods dealing with Prim editing, Prim | ||
42 | * characteristics and Kinetic motion. | ||
43 | * ODEDynamics.cs contains methods dealing with Prim Physical motion | ||
44 | * (dynamics) and the associated settings. Old Linear and angular | ||
45 | * motors for dynamic motion have been replace with MoveLinear() | ||
46 | * and MoveAngular(); 'Physical' is used only to switch ODE dynamic | ||
47 | * simualtion on/off; VEHICAL_TYPE_NONE/VEHICAL_TYPE_<other> is to | ||
48 | * switch between 'VEHICLE' parameter use and general dynamics | ||
49 | * settings use. | ||
50 | */ | ||
51 | using System; | ||
52 | using System.Collections.Generic; | ||
53 | using System.Reflection; | ||
54 | using System.Runtime.InteropServices; | ||
55 | using System.Threading; | ||
56 | using log4net; | ||
57 | using OpenMetaverse; | ||
58 | using Ode.NET; | ||
59 | using OpenSim.Framework; | ||
60 | using OpenSim.Region.Physics.Manager; | ||
61 | |||
62 | namespace OpenSim.Region.Physics.OdePlugin | ||
63 | { | ||
64 | /// <summary> | ||
65 | /// Various properties that ODE uses for AMotors but isn't exposed in ODE.NET so we must define them ourselves. | ||
66 | /// </summary> | ||
67 | |||
68 | public class OdePrim : PhysicsActor | ||
69 | { | ||
70 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
71 | |||
72 | private Vector3 _position; | ||
73 | private Vector3 _velocity; | ||
74 | private Vector3 _torque; | ||
75 | private Vector3 m_lastVelocity; | ||
76 | private Vector3 m_lastposition; | ||
77 | private Quaternion m_lastorientation = new Quaternion(); | ||
78 | private Vector3 m_rotationalVelocity; | ||
79 | private Vector3 _size; | ||
80 | private Vector3 _acceleration; | ||
81 | // private d.Vector3 _zeroPosition = new d.Vector3(0.0f, 0.0f, 0.0f); | ||
82 | private Quaternion _orientation; | ||
83 | private Vector3 m_taintposition; | ||
84 | private Vector3 m_taintsize; | ||
85 | private Vector3 m_taintVelocity; | ||
86 | private Vector3 m_taintTorque; | ||
87 | private Quaternion m_taintrot; | ||
88 | private Vector3 m_angularlock = Vector3.One; | ||
89 | private Vector3 m_taintAngularLock = Vector3.One; | ||
90 | private IntPtr Amotor = IntPtr.Zero; | ||
91 | |||
92 | private Vector3 m_PIDTarget; | ||
93 | private float m_PIDTau; | ||
94 | private float PID_D = 35f; | ||
95 | private float PID_G = 25f; | ||
96 | private bool m_usePID = false; | ||
97 | |||
98 | private Quaternion m_APIDTarget = new Quaternion(); | ||
99 | private float m_APIDStrength = 0.5f; | ||
100 | private float m_APIDDamping = 0.5f; | ||
101 | private bool m_useAPID = false; | ||
102 | |||
103 | // KF: These next 7 params apply to llSetHoverHeight(float height, integer water, float tau), | ||
104 | // and are for non-VEHICLES only. | ||
105 | |||
106 | private float m_PIDHoverHeight; | ||
107 | private float m_PIDHoverTau; | ||
108 | private bool m_useHoverPID; | ||
109 | private PIDHoverType m_PIDHoverType = PIDHoverType.Ground; | ||
110 | private float m_targetHoverHeight; | ||
111 | private float m_groundHeight; | ||
112 | private float m_waterHeight; | ||
113 | private float m_buoyancy; //KF: m_buoyancy should be set by llSetBuoyancy() for non-vehicle. | ||
114 | |||
115 | // private float m_tensor = 5f; | ||
116 | private int body_autodisable_frames = 20; | ||
117 | |||
118 | |||
119 | private const CollisionCategories m_default_collisionFlags = (CollisionCategories.Geom | ||
120 | | CollisionCategories.Space | ||
121 | | CollisionCategories.Body | ||
122 | | CollisionCategories.Character | ||
123 | ); | ||
124 | private bool m_taintshape; | ||
125 | private bool m_taintPhysics; | ||
126 | private bool m_collidesLand = true; | ||
127 | private bool m_collidesWater; | ||
128 | public bool m_returnCollisions; | ||
129 | |||
130 | // Default we're a Geometry | ||
131 | private CollisionCategories m_collisionCategories = (CollisionCategories.Geom); | ||
132 | |||
133 | // Default, Collide with Other Geometries, spaces and Bodies | ||
134 | private CollisionCategories m_collisionFlags = m_default_collisionFlags; | ||
135 | |||
136 | public bool m_taintremove; | ||
137 | public bool m_taintdisable; | ||
138 | public bool m_disabled; | ||
139 | public bool m_taintadd; | ||
140 | public bool m_taintselected; | ||
141 | public bool m_taintCollidesWater; | ||
142 | |||
143 | public uint m_localID; | ||
144 | |||
145 | //public GCHandle gc; | ||
146 | private CollisionLocker ode; | ||
147 | |||
148 | private bool m_taintforce = false; | ||
149 | private bool m_taintaddangularforce = false; | ||
150 | private Vector3 m_force; | ||
151 | private List<Vector3> m_forcelist = new List<Vector3>(); | ||
152 | private List<Vector3> m_angularforcelist = new List<Vector3>(); | ||
153 | |||
154 | private IMesh _mesh; | ||
155 | private PrimitiveBaseShape _pbs; | ||
156 | private OdeScene _parent_scene; | ||
157 | public IntPtr m_targetSpace = IntPtr.Zero; | ||
158 | public IntPtr prim_geom; | ||
159 | public IntPtr prev_geom; | ||
160 | public IntPtr _triMeshData; | ||
161 | |||
162 | private IntPtr _linkJointGroup = IntPtr.Zero; | ||
163 | private PhysicsActor _parent; | ||
164 | private PhysicsActor m_taintparent; | ||
165 | |||
166 | private List<OdePrim> childrenPrim = new List<OdePrim>(); | ||
167 | |||
168 | private bool iscolliding; | ||
169 | private bool m_isphysical; | ||
170 | private bool m_isSelected; | ||
171 | |||
172 | internal bool m_isVolumeDetect; // If true, this prim only detects collisions but doesn't collide actively | ||
173 | |||
174 | private bool m_throttleUpdates; | ||
175 | private int throttleCounter; | ||
176 | public int m_interpenetrationcount; | ||
177 | public float m_collisionscore; | ||
178 | public int m_roundsUnderMotionThreshold; | ||
179 | private int m_crossingfailures; | ||
180 | |||
181 | public bool outofBounds; | ||
182 | private float m_density = 10.000006836f; // Aluminum g/cm3; | ||
183 | |||
184 | public bool _zeroFlag; | ||
185 | private bool m_lastUpdateSent; | ||
186 | |||
187 | public IntPtr Body = IntPtr.Zero; | ||
188 | public String m_primName; | ||
189 | private Vector3 _target_velocity; | ||
190 | public d.Mass pMass; | ||
191 | |||
192 | public int m_eventsubscription; | ||
193 | private CollisionEventUpdate CollisionEventsThisFrame; | ||
194 | |||
195 | private IntPtr m_linkJoint = IntPtr.Zero; | ||
196 | |||
197 | public volatile bool childPrim; | ||
198 | |||
199 | private ODEDynamics m_vehicle; | ||
200 | |||
201 | internal int m_material = (int)Material.Wood; | ||
202 | |||
203 | private int frcount = 0; // Used to limit dynamics debug output to | ||
204 | |||
205 | |||
206 | public OdePrim(String primName, OdeScene parent_scene, Vector3 pos, Vector3 size, | ||
207 | Quaternion rotation, IMesh mesh, PrimitiveBaseShape pbs, bool pisPhysical, CollisionLocker dode) | ||
208 | { | ||
209 | m_vehicle = new ODEDynamics(); | ||
210 | //gc = GCHandle.Alloc(prim_geom, GCHandleType.Pinned); | ||
211 | ode = dode; | ||
212 | if (!pos.IsFinite()) | ||
213 | { | ||
214 | pos = new Vector3(((float)Constants.RegionSize * 0.5f), ((float)Constants.RegionSize * 0.5f), | ||
215 | parent_scene.GetTerrainHeightAtXY(((float)Constants.RegionSize * 0.5f), ((float)Constants.RegionSize * 0.5f)) + 0.5f); | ||
216 | m_log.Warn("[PHYSICS]: Got nonFinite Object create Position"); | ||
217 | } | ||
218 | |||
219 | _position = pos; | ||
220 | m_taintposition = pos; | ||
221 | PID_D = parent_scene.bodyPIDD; | ||
222 | PID_G = parent_scene.bodyPIDG; | ||
223 | m_density = parent_scene.geomDefaultDensity; | ||
224 | // m_tensor = parent_scene.bodyMotorJointMaxforceTensor; | ||
225 | body_autodisable_frames = parent_scene.bodyFramesAutoDisable; | ||
226 | |||
227 | |||
228 | prim_geom = IntPtr.Zero; | ||
229 | prev_geom = IntPtr.Zero; | ||
230 | |||
231 | if (!pos.IsFinite()) | ||
232 | { | ||
233 | size = new Vector3(0.5f, 0.5f, 0.5f); | ||
234 | m_log.Warn("[PHYSICS]: Got nonFinite Object create Size"); | ||
235 | } | ||
236 | |||
237 | if (size.X <= 0) size.X = 0.01f; | ||
238 | if (size.Y <= 0) size.Y = 0.01f; | ||
239 | if (size.Z <= 0) size.Z = 0.01f; | ||
240 | |||
241 | _size = size; | ||
242 | m_taintsize = _size; | ||
243 | |||
244 | if (!QuaternionIsFinite(rotation)) | ||
245 | { | ||
246 | rotation = Quaternion.Identity; | ||
247 | m_log.Warn("[PHYSICS]: Got nonFinite Object create Rotation"); | ||
248 | } | ||
249 | |||
250 | _orientation = rotation; | ||
251 | m_taintrot = _orientation; | ||
252 | _mesh = mesh; | ||
253 | _pbs = pbs; | ||
254 | |||
255 | _parent_scene = parent_scene; | ||
256 | m_targetSpace = (IntPtr)0; | ||
257 | |||
258 | // if (pos.Z < 0) | ||
259 | if (pos.Z < parent_scene.GetTerrainHeightAtXY(pos.X, pos.Y)) | ||
260 | m_isphysical = false; | ||
261 | else | ||
262 | { | ||
263 | m_isphysical = pisPhysical; | ||
264 | // If we're physical, we need to be in the master space for now. | ||
265 | // linksets *should* be in a space together.. but are not currently | ||
266 | if (m_isphysical) | ||
267 | m_targetSpace = _parent_scene.space; | ||
268 | } | ||
269 | m_primName = primName; | ||
270 | m_taintadd = true; | ||
271 | _parent_scene.AddPhysicsActorTaint(this); | ||
272 | // don't do .add() here; old geoms get recycled with the same hash | ||
273 | } | ||
274 | |||
275 | public override int PhysicsActorType | ||
276 | { | ||
277 | get { return (int) ActorTypes.Prim; } | ||
278 | set { return; } | ||
279 | } | ||
280 | |||
281 | public override bool SetAlwaysRun | ||
282 | { | ||
283 | get { return false; } | ||
284 | set { return; } | ||
285 | } | ||
286 | |||
287 | public override uint LocalID | ||
288 | { | ||
289 | set { | ||
290 | //m_log.Info("[PHYSICS]: Setting TrackerID: " + value); | ||
291 | m_localID = value; } | ||
292 | } | ||
293 | |||
294 | public override bool Grabbed | ||
295 | { | ||
296 | set { return; } | ||
297 | } | ||
298 | |||
299 | public override bool Selected | ||
300 | { | ||
301 | set { | ||
302 | |||
303 | |||
304 | // This only makes the object not collidable if the object | ||
305 | // is physical or the object is modified somehow *IN THE FUTURE* | ||
306 | // without this, if an avatar selects prim, they can walk right | ||
307 | // through it while it's selected | ||
308 | m_collisionscore = 0; | ||
309 | if ((m_isphysical && !_zeroFlag) || !value) | ||
310 | { | ||
311 | m_taintselected = value; | ||
312 | _parent_scene.AddPhysicsActorTaint(this); | ||
313 | } | ||
314 | else | ||
315 | { | ||
316 | m_taintselected = value; | ||
317 | m_isSelected = value; | ||
318 | } | ||
319 | if(m_isSelected) disableBodySoft(); | ||
320 | } | ||
321 | } | ||
322 | |||
323 | public void SetGeom(IntPtr geom) | ||
324 | { | ||
325 | prev_geom = prim_geom; | ||
326 | prim_geom = geom; | ||
327 | //Console.WriteLine("SetGeom to " + prim_geom + " for " + m_primName); | ||
328 | if (prim_geom != IntPtr.Zero) | ||
329 | { | ||
330 | d.GeomSetCategoryBits(prim_geom, (int)m_collisionCategories); | ||
331 | d.GeomSetCollideBits(prim_geom, (int)m_collisionFlags); | ||
332 | } | ||
333 | |||
334 | if (childPrim) | ||
335 | { | ||
336 | if (_parent != null && _parent is OdePrim) | ||
337 | { | ||
338 | OdePrim parent = (OdePrim)_parent; | ||
339 | //Console.WriteLine("SetGeom calls ChildSetGeom"); | ||
340 | parent.ChildSetGeom(this); | ||
341 | } | ||
342 | } | ||
343 | //m_log.Warn("Setting Geom to: " + prim_geom); | ||
344 | } | ||
345 | |||
346 | |||
347 | |||
348 | public void enableBodySoft() | ||
349 | { | ||
350 | if (!childPrim) | ||
351 | { | ||
352 | if (m_isphysical && Body != IntPtr.Zero) | ||
353 | { | ||
354 | d.BodyEnable(Body); | ||
355 | if (m_vehicle.Type != Vehicle.TYPE_NONE) | ||
356 | m_vehicle.Enable(Body, _parent_scene); | ||
357 | } | ||
358 | |||
359 | m_disabled = false; | ||
360 | } | ||
361 | } | ||
362 | |||
363 | public void disableBodySoft() | ||
364 | { | ||
365 | m_disabled = true; | ||
366 | |||
367 | if (m_isphysical && Body != IntPtr.Zero) | ||
368 | { | ||
369 | d.BodyDisable(Body); | ||
370 | } | ||
371 | } | ||
372 | |||
373 | public void enableBody() | ||
374 | { | ||
375 | // Don't enable this body if we're a child prim | ||
376 | // this should be taken care of in the parent function not here | ||
377 | if (!childPrim) | ||
378 | { | ||
379 | // Sets the geom to a body | ||
380 | Body = d.BodyCreate(_parent_scene.world); | ||
381 | |||
382 | setMass(); | ||
383 | d.BodySetPosition(Body, _position.X, _position.Y, _position.Z); | ||
384 | d.Quaternion myrot = new d.Quaternion(); | ||
385 | myrot.X = _orientation.X; | ||
386 | myrot.Y = _orientation.Y; | ||
387 | myrot.Z = _orientation.Z; | ||
388 | myrot.W = _orientation.W; | ||
389 | d.BodySetQuaternion(Body, ref myrot); | ||
390 | d.GeomSetBody(prim_geom, Body); | ||
391 | m_collisionCategories |= CollisionCategories.Body; | ||
392 | m_collisionFlags |= (CollisionCategories.Land | CollisionCategories.Wind); | ||
393 | |||
394 | d.GeomSetCategoryBits(prim_geom, (int)m_collisionCategories); | ||
395 | d.GeomSetCollideBits(prim_geom, (int)m_collisionFlags); | ||
396 | |||
397 | d.BodySetAutoDisableFlag(Body, true); | ||
398 | d.BodySetAutoDisableSteps(Body, body_autodisable_frames); | ||
399 | |||
400 | // disconnect from world gravity so we can apply buoyancy | ||
401 | d.BodySetGravityMode (Body, false); | ||
402 | |||
403 | m_interpenetrationcount = 0; | ||
404 | m_collisionscore = 0; | ||
405 | m_disabled = false; | ||
406 | |||
407 | // The body doesn't already have a finite rotation mode set here | ||
408 | if ((!m_angularlock.ApproxEquals(Vector3.Zero, 0.0f)) && _parent == null) | ||
409 | { | ||
410 | createAMotor(m_angularlock); | ||
411 | } | ||
412 | if (m_vehicle.Type != Vehicle.TYPE_NONE) | ||
413 | { | ||
414 | m_vehicle.Enable(Body, _parent_scene); | ||
415 | } | ||
416 | |||
417 | _parent_scene.addActivePrim(this); | ||
418 | } | ||
419 | } | ||
420 | |||
421 | #region Mass Calculation | ||
422 | |||
423 | private float CalculateMass() | ||
424 | { | ||
425 | float volume = 0; | ||
426 | |||
427 | // No material is passed to the physics engines yet.. soo.. | ||
428 | // we're using the m_density constant in the class definition | ||
429 | |||
430 | float returnMass = 0; | ||
431 | |||
432 | switch (_pbs.ProfileShape) | ||
433 | { | ||
434 | case ProfileShape.Square: | ||
435 | // Profile Volume | ||
436 | |||
437 | volume = _size.X*_size.Y*_size.Z; | ||
438 | |||
439 | // If the user has 'hollowed out' | ||
440 | // ProfileHollow is one of those 0 to 50000 values :P | ||
441 | // we like percentages better.. so turning into a percentage | ||
442 | |||
443 | if (((float) _pbs.ProfileHollow/50000f) > 0.0) | ||
444 | { | ||
445 | float hollowAmount = (float) _pbs.ProfileHollow/50000f; | ||
446 | |||
447 | // calculate the hollow volume by it's shape compared to the prim shape | ||
448 | float hollowVolume = 0; | ||
449 | switch (_pbs.HollowShape) | ||
450 | { | ||
451 | case HollowShape.Square: | ||
452 | case HollowShape.Same: | ||
453 | // Cube Hollow volume calculation | ||
454 | float hollowsizex = _size.X*hollowAmount; | ||
455 | float hollowsizey = _size.Y*hollowAmount; | ||
456 | float hollowsizez = _size.Z*hollowAmount; | ||
457 | hollowVolume = hollowsizex*hollowsizey*hollowsizez; | ||
458 | break; | ||
459 | |||
460 | case HollowShape.Circle: | ||
461 | // Hollow shape is a perfect cyllinder in respect to the cube's scale | ||
462 | // Cyllinder hollow volume calculation | ||
463 | float hRadius = _size.X/2; | ||
464 | float hLength = _size.Z; | ||
465 | |||
466 | // pi * r2 * h | ||
467 | hollowVolume = ((float) (Math.PI*Math.Pow(hRadius, 2)*hLength)*hollowAmount); | ||
468 | break; | ||
469 | |||
470 | case HollowShape.Triangle: | ||
471 | // Equilateral Triangular Prism volume hollow calculation | ||
472 | // Triangle is an Equilateral Triangular Prism with aLength = to _size.Y | ||
473 | |||
474 | float aLength = _size.Y; | ||
475 | // 1/2 abh | ||
476 | hollowVolume = (float) ((0.5*aLength*_size.X*_size.Z)*hollowAmount); | ||
477 | break; | ||
478 | |||
479 | default: | ||
480 | hollowVolume = 0; | ||
481 | break; | ||
482 | } | ||
483 | volume = volume - hollowVolume; | ||
484 | } | ||
485 | |||
486 | break; | ||
487 | case ProfileShape.Circle: | ||
488 | if (_pbs.PathCurve == (byte)Extrusion.Straight) | ||
489 | { | ||
490 | // Cylinder | ||
491 | float volume1 = (float)(Math.PI * Math.Pow(_size.X/2, 2) * _size.Z); | ||
492 | float volume2 = (float)(Math.PI * Math.Pow(_size.Y/2, 2) * _size.Z); | ||
493 | |||
494 | // Approximating the cylinder's irregularity. | ||
495 | if (volume1 > volume2) | ||
496 | { | ||
497 | volume = (float)volume1 - (volume1 - volume2); | ||
498 | } | ||
499 | else if (volume2 > volume1) | ||
500 | { | ||
501 | volume = (float)volume2 - (volume2 - volume1); | ||
502 | } | ||
503 | else | ||
504 | { | ||
505 | // Regular cylinder | ||
506 | volume = volume1; | ||
507 | } | ||
508 | } | ||
509 | else | ||
510 | { | ||
511 | // We don't know what the shape is yet, so use default | ||
512 | volume = _size.X * _size.Y * _size.Z; | ||
513 | } | ||
514 | // If the user has 'hollowed out' | ||
515 | // ProfileHollow is one of those 0 to 50000 values :P | ||
516 | // we like percentages better.. so turning into a percentage | ||
517 | |||
518 | if (((float)_pbs.ProfileHollow / 50000f) > 0.0) | ||
519 | { | ||
520 | float hollowAmount = (float)_pbs.ProfileHollow / 50000f; | ||
521 | |||
522 | // calculate the hollow volume by it's shape compared to the prim shape | ||
523 | float hollowVolume = 0; | ||
524 | switch (_pbs.HollowShape) | ||
525 | { | ||
526 | case HollowShape.Same: | ||
527 | case HollowShape.Circle: | ||
528 | // Hollow shape is a perfect cyllinder in respect to the cube's scale | ||
529 | // Cyllinder hollow volume calculation | ||
530 | float hRadius = _size.X / 2; | ||
531 | float hLength = _size.Z; | ||
532 | |||
533 | // pi * r2 * h | ||
534 | hollowVolume = ((float)(Math.PI * Math.Pow(hRadius, 2) * hLength) * hollowAmount); | ||
535 | break; | ||
536 | |||
537 | case HollowShape.Square: | ||
538 | // Cube Hollow volume calculation | ||
539 | float hollowsizex = _size.X * hollowAmount; | ||
540 | float hollowsizey = _size.Y * hollowAmount; | ||
541 | float hollowsizez = _size.Z * hollowAmount; | ||
542 | hollowVolume = hollowsizex * hollowsizey * hollowsizez; | ||
543 | break; | ||
544 | |||
545 | case HollowShape.Triangle: | ||
546 | // Equilateral Triangular Prism volume hollow calculation | ||
547 | // Triangle is an Equilateral Triangular Prism with aLength = to _size.Y | ||
548 | |||
549 | float aLength = _size.Y; | ||
550 | // 1/2 abh | ||
551 | hollowVolume = (float)((0.5 * aLength * _size.X * _size.Z) * hollowAmount); | ||
552 | break; | ||
553 | |||
554 | default: | ||
555 | hollowVolume = 0; | ||
556 | break; | ||
557 | } | ||
558 | volume = volume - hollowVolume; | ||
559 | } | ||
560 | break; | ||
561 | |||
562 | case ProfileShape.HalfCircle: | ||
563 | if (_pbs.PathCurve == (byte)Extrusion.Curve1) | ||
564 | { | ||
565 | if (_size.X == _size.Y && _size.Y == _size.Z) | ||
566 | { | ||
567 | // regular sphere | ||
568 | // v = 4/3 * pi * r^3 | ||
569 | float sradius3 = (float)Math.Pow((_size.X / 2), 3); | ||
570 | volume = (float)((4f / 3f) * Math.PI * sradius3); | ||
571 | } | ||
572 | else | ||
573 | { | ||
574 | // we treat this as a box currently | ||
575 | volume = _size.X * _size.Y * _size.Z; | ||
576 | } | ||
577 | } | ||
578 | else | ||
579 | { | ||
580 | // We don't know what the shape is yet, so use default | ||
581 | volume = _size.X * _size.Y * _size.Z; | ||
582 | } | ||
583 | break; | ||
584 | |||
585 | case ProfileShape.EquilateralTriangle: | ||
586 | /* | ||
587 | v = (abs((xB*yA-xA*yB)+(xC*yB-xB*yC)+(xA*yC-xC*yA))/2) * h | ||
588 | |||
589 | // seed mesh | ||
590 | Vertex MM = new Vertex(-0.25f, -0.45f, 0.0f); | ||
591 | Vertex PM = new Vertex(+0.5f, 0f, 0.0f); | ||
592 | Vertex PP = new Vertex(-0.25f, +0.45f, 0.0f); | ||
593 | */ | ||
594 | float xA = -0.25f * _size.X; | ||
595 | float yA = -0.45f * _size.Y; | ||
596 | |||
597 | float xB = 0.5f * _size.X; | ||
598 | float yB = 0; | ||
599 | |||
600 | float xC = -0.25f * _size.X; | ||
601 | float yC = 0.45f * _size.Y; | ||
602 | |||
603 | volume = (float)((Math.Abs((xB * yA - xA * yB) + (xC * yB - xB * yC) + (xA * yC - xC * yA)) / 2) * _size.Z); | ||
604 | |||
605 | // If the user has 'hollowed out' | ||
606 | // ProfileHollow is one of those 0 to 50000 values :P | ||
607 | // we like percentages better.. so turning into a percentage | ||
608 | float fhollowFactor = ((float)_pbs.ProfileHollow / 1.9f); | ||
609 | if (((float)fhollowFactor / 50000f) > 0.0) | ||
610 | { | ||
611 | float hollowAmount = (float)fhollowFactor / 50000f; | ||
612 | |||
613 | // calculate the hollow volume by it's shape compared to the prim shape | ||
614 | float hollowVolume = 0; | ||
615 | switch (_pbs.HollowShape) | ||
616 | { | ||
617 | case HollowShape.Same: | ||
618 | case HollowShape.Triangle: | ||
619 | // Equilateral Triangular Prism volume hollow calculation | ||
620 | // Triangle is an Equilateral Triangular Prism with aLength = to _size.Y | ||
621 | |||
622 | float aLength = _size.Y; | ||
623 | // 1/2 abh | ||
624 | hollowVolume = (float)((0.5 * aLength * _size.X * _size.Z) * hollowAmount); | ||
625 | break; | ||
626 | |||
627 | case HollowShape.Square: | ||
628 | // Cube Hollow volume calculation | ||
629 | float hollowsizex = _size.X * hollowAmount; | ||
630 | float hollowsizey = _size.Y * hollowAmount; | ||
631 | float hollowsizez = _size.Z * hollowAmount; | ||
632 | hollowVolume = hollowsizex * hollowsizey * hollowsizez; | ||
633 | break; | ||
634 | |||
635 | case HollowShape.Circle: | ||
636 | // Hollow shape is a perfect cyllinder in respect to the cube's scale | ||
637 | // Cyllinder hollow volume calculation | ||
638 | float hRadius = _size.X / 2; | ||
639 | float hLength = _size.Z; | ||
640 | |||
641 | // pi * r2 * h | ||
642 | hollowVolume = ((float)((Math.PI * Math.Pow(hRadius, 2) * hLength)/2) * hollowAmount); | ||
643 | break; | ||
644 | |||
645 | default: | ||
646 | hollowVolume = 0; | ||
647 | break; | ||
648 | } | ||
649 | volume = volume - hollowVolume; | ||
650 | } | ||
651 | break; | ||
652 | |||
653 | default: | ||
654 | // we don't have all of the volume formulas yet so | ||
655 | // use the common volume formula for all | ||
656 | volume = _size.X*_size.Y*_size.Z; | ||
657 | break; | ||
658 | } | ||
659 | |||
660 | // Calculate Path cut effect on volume | ||
661 | // Not exact, in the triangle hollow example | ||
662 | // They should never be zero or less then zero.. | ||
663 | // we'll ignore it if it's less then zero | ||
664 | |||
665 | // ProfileEnd and ProfileBegin are values | ||
666 | // from 0 to 50000 | ||
667 | |||
668 | // Turning them back into percentages so that I can cut that percentage off the volume | ||
669 | |||
670 | float PathCutEndAmount = _pbs.ProfileEnd; | ||
671 | float PathCutStartAmount = _pbs.ProfileBegin; | ||
672 | if (((PathCutStartAmount + PathCutEndAmount)/50000f) > 0.0f) | ||
673 | { | ||
674 | float pathCutAmount = ((PathCutStartAmount + PathCutEndAmount)/50000f); | ||
675 | |||
676 | // Check the return amount for sanity | ||
677 | if (pathCutAmount >= 0.99f) | ||
678 | pathCutAmount = 0.99f; | ||
679 | |||
680 | volume = volume - (volume*pathCutAmount); | ||
681 | } | ||
682 | UInt16 taperX = _pbs.PathScaleX; | ||
683 | UInt16 taperY = _pbs.PathScaleY; | ||
684 | float taperFactorX = 0; | ||
685 | float taperFactorY = 0; | ||
686 | |||
687 | // Mass = density * volume | ||
688 | if (taperX != 100) | ||
689 | { | ||
690 | if (taperX > 100) | ||
691 | { | ||
692 | taperFactorX = 1.0f - ((float)taperX / 200); | ||
693 | //m_log.Warn("taperTopFactorX: " + extr.taperTopFactorX.ToString()); | ||
694 | } | ||
695 | else | ||
696 | { | ||
697 | taperFactorX = 1.0f - ((100 - (float)taperX) / 100); | ||
698 | //m_log.Warn("taperBotFactorX: " + extr.taperBotFactorX.ToString()); | ||
699 | } | ||
700 | volume = (float)volume * ((taperFactorX / 3f) + 0.001f); | ||
701 | } | ||
702 | |||
703 | if (taperY != 100) | ||
704 | { | ||
705 | if (taperY > 100) | ||
706 | { | ||
707 | taperFactorY = 1.0f - ((float)taperY / 200); | ||
708 | //m_log.Warn("taperTopFactorY: " + extr.taperTopFactorY.ToString()); | ||
709 | } | ||
710 | else | ||
711 | { | ||
712 | taperFactorY = 1.0f - ((100 - (float)taperY) / 100); | ||
713 | //m_log.Warn("taperBotFactorY: " + extr.taperBotFactorY.ToString()); | ||
714 | } | ||
715 | volume = (float)volume * ((taperFactorY / 3f) + 0.001f); | ||
716 | } | ||
717 | returnMass = m_density*volume; | ||
718 | if (returnMass <= 0) returnMass = 0.0001f;//ckrinke: Mass must be greater then zero. | ||
719 | |||
720 | |||
721 | |||
722 | // Recursively calculate mass | ||
723 | bool HasChildPrim = false; | ||
724 | lock (childrenPrim) | ||
725 | { | ||
726 | if (childrenPrim.Count > 0) | ||
727 | { | ||
728 | HasChildPrim = true; | ||
729 | } | ||
730 | |||
731 | } | ||
732 | if (HasChildPrim) | ||
733 | { | ||
734 | OdePrim[] childPrimArr = new OdePrim[0]; | ||
735 | |||
736 | lock (childrenPrim) | ||
737 | childPrimArr = childrenPrim.ToArray(); | ||
738 | |||
739 | for (int i = 0; i < childPrimArr.Length; i++) | ||
740 | { | ||
741 | if (childPrimArr[i] != null && !childPrimArr[i].m_taintremove) | ||
742 | returnMass += childPrimArr[i].CalculateMass(); | ||
743 | // failsafe, this shouldn't happen but with OpenSim, you never know :) | ||
744 | if (i > 256) | ||
745 | break; | ||
746 | } | ||
747 | } | ||
748 | if (returnMass > _parent_scene.maximumMassObject) | ||
749 | returnMass = _parent_scene.maximumMassObject; | ||
750 | return returnMass; | ||
751 | }// end CalculateMass | ||
752 | |||
753 | #endregion | ||
754 | |||
755 | public void setMass() | ||
756 | { | ||
757 | if (Body != (IntPtr) 0) | ||
758 | { | ||
759 | float newmass = CalculateMass(); | ||
760 | |||
761 | //m_log.Info("[PHYSICS]: New Mass: " + newmass.ToString()); | ||
762 | |||
763 | d.MassSetBoxTotal(out pMass, newmass, _size.X, _size.Y, _size.Z); | ||
764 | d.BodySetMass(Body, ref pMass); | ||
765 | } | ||
766 | } | ||
767 | |||
768 | public void disableBody() | ||
769 | { | ||
770 | //this kills the body so things like 'mesh' can re-create it. | ||
771 | lock (this) | ||
772 | { | ||
773 | if (!childPrim) | ||
774 | { | ||
775 | if (Body != IntPtr.Zero) | ||
776 | { | ||
777 | _parent_scene.remActivePrim(this); | ||
778 | m_collisionCategories &= ~CollisionCategories.Body; | ||
779 | m_collisionFlags &= ~(CollisionCategories.Wind | CollisionCategories.Land); | ||
780 | |||
781 | if (prim_geom != IntPtr.Zero) | ||
782 | { | ||
783 | d.GeomSetCategoryBits(prim_geom, (int)m_collisionCategories); | ||
784 | d.GeomSetCollideBits(prim_geom, (int)m_collisionFlags); | ||
785 | } | ||
786 | |||
787 | |||
788 | d.BodyDestroy(Body); | ||
789 | lock (childrenPrim) | ||
790 | { | ||
791 | if (childrenPrim.Count > 0) | ||
792 | { | ||
793 | foreach (OdePrim prm in childrenPrim) | ||
794 | { | ||
795 | _parent_scene.remActivePrim(prm); | ||
796 | prm.Body = IntPtr.Zero; | ||
797 | } | ||
798 | } | ||
799 | } | ||
800 | Body = IntPtr.Zero; | ||
801 | } | ||
802 | } | ||
803 | else | ||
804 | { | ||
805 | _parent_scene.remActivePrim(this); | ||
806 | |||
807 | m_collisionCategories &= ~CollisionCategories.Body; | ||
808 | m_collisionFlags &= ~(CollisionCategories.Wind | CollisionCategories.Land); | ||
809 | |||
810 | if (prim_geom != IntPtr.Zero) | ||
811 | { | ||
812 | d.GeomSetCategoryBits(prim_geom, (int)m_collisionCategories); | ||
813 | d.GeomSetCollideBits(prim_geom, (int)m_collisionFlags); | ||
814 | } | ||
815 | |||
816 | |||
817 | Body = IntPtr.Zero; | ||
818 | } | ||
819 | } | ||
820 | m_disabled = true; | ||
821 | m_collisionscore = 0; | ||
822 | } | ||
823 | |||
824 | private static Dictionary<IMesh, IntPtr> m_MeshToTriMeshMap = new Dictionary<IMesh, IntPtr>(); | ||
825 | |||
826 | public void setMesh(OdeScene parent_scene, IMesh mesh) | ||
827 | { | ||
828 | // This sleeper is there to moderate how long it takes between | ||
829 | // setting up the mesh and pre-processing it when we get rapid fire mesh requests on a single object | ||
830 | |||
831 | //Thread.Sleep(10); | ||
832 | |||
833 | //Kill Body so that mesh can re-make the geom | ||
834 | if (IsPhysical && Body != IntPtr.Zero) | ||
835 | { | ||
836 | if (childPrim) | ||
837 | { | ||
838 | if (_parent != null) | ||
839 | { | ||
840 | OdePrim parent = (OdePrim)_parent; | ||
841 | parent.ChildDelink(this); | ||
842 | } | ||
843 | } | ||
844 | else | ||
845 | { | ||
846 | disableBody(); | ||
847 | } | ||
848 | } | ||
849 | |||
850 | IntPtr vertices, indices; | ||
851 | int vertexCount, indexCount; | ||
852 | int vertexStride, triStride; | ||
853 | mesh.getVertexListAsPtrToFloatArray(out vertices, out vertexStride, out vertexCount); // Note, that vertices are fixed in unmanaged heap | ||
854 | mesh.getIndexListAsPtrToIntArray(out indices, out triStride, out indexCount); // Also fixed, needs release after usage | ||
855 | |||
856 | mesh.releaseSourceMeshData(); // free up the original mesh data to save memory | ||
857 | if (m_MeshToTriMeshMap.ContainsKey(mesh)) | ||
858 | { | ||
859 | _triMeshData = m_MeshToTriMeshMap[mesh]; | ||
860 | } | ||
861 | else | ||
862 | { | ||
863 | _triMeshData = d.GeomTriMeshDataCreate(); | ||
864 | |||
865 | d.GeomTriMeshDataBuildSimple(_triMeshData, vertices, vertexStride, vertexCount, indices, indexCount, triStride); | ||
866 | d.GeomTriMeshDataPreprocess(_triMeshData); | ||
867 | m_MeshToTriMeshMap[mesh] = _triMeshData; | ||
868 | } | ||
869 | |||
870 | _parent_scene.waitForSpaceUnlock(m_targetSpace); | ||
871 | try | ||
872 | { | ||
873 | if (prim_geom == IntPtr.Zero) | ||
874 | { | ||
875 | SetGeom(d.CreateTriMesh(m_targetSpace, _triMeshData, parent_scene.triCallback, null, null)); | ||
876 | } | ||
877 | } | ||
878 | catch (AccessViolationException) | ||
879 | { | ||
880 | m_log.Error("[PHYSICS]: MESH LOCKED"); | ||
881 | return; | ||
882 | } | ||
883 | |||
884 | |||
885 | // if (IsPhysical && Body == (IntPtr) 0) | ||
886 | // { | ||
887 | // Recreate the body | ||
888 | // m_interpenetrationcount = 0; | ||
889 | // m_collisionscore = 0; | ||
890 | |||
891 | // enableBody(); | ||
892 | // } | ||
893 | } | ||
894 | |||
895 | public void ProcessTaints(float timestep) | ||
896 | { | ||
897 | //Console.WriteLine("ProcessTaints for " + m_primName ); | ||
898 | if (m_taintadd) | ||
899 | { | ||
900 | changeadd(timestep); | ||
901 | } | ||
902 | |||
903 | if (prim_geom != IntPtr.Zero) | ||
904 | { | ||
905 | if (!_position.ApproxEquals(m_taintposition, 0f)) | ||
906 | changemove(timestep); | ||
907 | |||
908 | if (m_taintrot != _orientation) | ||
909 | { | ||
910 | if(childPrim && IsPhysical) // For physical child prim... | ||
911 | { | ||
912 | rotate(timestep); | ||
913 | // KF: ODE will also rotate the parent prim! | ||
914 | // so rotate the root back to where it was | ||
915 | OdePrim parent = (OdePrim)_parent; | ||
916 | parent.rotate(timestep); | ||
917 | } | ||
918 | else | ||
919 | { | ||
920 | //Just rotate the prim | ||
921 | rotate(timestep); | ||
922 | } | ||
923 | } | ||
924 | // | ||
925 | |||
926 | if (m_taintPhysics != m_isphysical && !(m_taintparent != _parent)) | ||
927 | changePhysicsStatus(timestep); | ||
928 | // | ||
929 | |||
930 | if (!_size.ApproxEquals(m_taintsize,0f)) | ||
931 | changesize(timestep); | ||
932 | // | ||
933 | |||
934 | if (m_taintshape) | ||
935 | changeshape(timestep); | ||
936 | // | ||
937 | |||
938 | if (m_taintforce) | ||
939 | changeAddForce(timestep); | ||
940 | |||
941 | if (m_taintaddangularforce) | ||
942 | changeAddAngularForce(timestep); | ||
943 | |||
944 | if (!m_taintTorque.ApproxEquals(Vector3.Zero, 0.001f)) | ||
945 | changeSetTorque(timestep); | ||
946 | |||
947 | if (m_taintdisable) | ||
948 | changedisable(timestep); | ||
949 | |||
950 | if (m_taintselected != m_isSelected) | ||
951 | changeSelectedStatus(timestep); | ||
952 | |||
953 | if (!m_taintVelocity.ApproxEquals(Vector3.Zero, 0.001f)) | ||
954 | changevelocity(timestep); | ||
955 | |||
956 | if (m_taintparent != _parent) | ||
957 | changelink(timestep); | ||
958 | |||
959 | if (m_taintCollidesWater != m_collidesWater) | ||
960 | changefloatonwater(timestep); | ||
961 | |||
962 | if (!m_angularlock.ApproxEquals(m_taintAngularLock,0f)) | ||
963 | changeAngularLock(timestep); | ||
964 | |||
965 | } | ||
966 | else | ||
967 | { | ||
968 | m_log.Error("[PHYSICS]: The scene reused a disposed PhysActor! *waves finger*, Don't be evil. A couple of things can cause this. An improper prim breakdown(be sure to set prim_geom to zero after d.GeomDestroy! An improper buildup (creating the geom failed). Or, the Scene Reused a physics actor after disposing it.)"); | ||
969 | } | ||
970 | } | ||
971 | |||
972 | |||
973 | private void changeAngularLock(float timestep) | ||
974 | { | ||
975 | // do we have a Physical object? | ||
976 | if (Body != IntPtr.Zero) | ||
977 | { | ||
978 | //Check that we have a Parent | ||
979 | //If we have a parent then we're not authorative here | ||
980 | if (_parent == null) | ||
981 | { | ||
982 | if (!m_taintAngularLock.ApproxEquals(Vector3.One, 0f)) | ||
983 | { | ||
984 | //d.BodySetFiniteRotationMode(Body, 0); | ||
985 | //d.BodySetFiniteRotationAxis(Body,m_taintAngularLock.X,m_taintAngularLock.Y,m_taintAngularLock.Z); | ||
986 | createAMotor(m_taintAngularLock); | ||
987 | } | ||
988 | else | ||
989 | { | ||
990 | if (Amotor != IntPtr.Zero) | ||
991 | { | ||
992 | d.JointDestroy(Amotor); | ||
993 | Amotor = IntPtr.Zero; | ||
994 | } | ||
995 | } | ||
996 | } | ||
997 | } | ||
998 | // Store this for later in case we get turned into a separate body | ||
999 | m_angularlock = m_taintAngularLock; | ||
1000 | |||
1001 | } | ||
1002 | |||
1003 | private void changelink(float timestep) | ||
1004 | { | ||
1005 | // If the newly set parent is not null | ||
1006 | // create link | ||
1007 | if (_parent == null && m_taintparent != null) | ||
1008 | { | ||
1009 | if (m_taintparent.PhysicsActorType == (int)ActorTypes.Prim) | ||
1010 | { | ||
1011 | OdePrim obj = (OdePrim)m_taintparent; | ||
1012 | //obj.disableBody(); | ||
1013 | //Console.WriteLine("changelink calls ParentPrim"); | ||
1014 | obj.ParentPrim(this); | ||
1015 | |||
1016 | /* | ||
1017 | if (obj.Body != (IntPtr)0 && Body != (IntPtr)0 && obj.Body != Body) | ||
1018 | { | ||
1019 | _linkJointGroup = d.JointGroupCreate(0); | ||
1020 | m_linkJoint = d.JointCreateFixed(_parent_scene.world, _linkJointGroup); | ||
1021 | d.JointAttach(m_linkJoint, obj.Body, Body); | ||
1022 | d.JointSetFixed(m_linkJoint); | ||
1023 | } | ||
1024 | */ | ||
1025 | } | ||
1026 | } | ||
1027 | // If the newly set parent is null | ||
1028 | // destroy link | ||
1029 | else if (_parent != null && m_taintparent == null) | ||
1030 | { | ||
1031 | //Console.WriteLine(" changelink B"); | ||
1032 | |||
1033 | if (_parent is OdePrim) | ||
1034 | { | ||
1035 | OdePrim obj = (OdePrim)_parent; | ||
1036 | obj.ChildDelink(this); | ||
1037 | childPrim = false; | ||
1038 | //_parent = null; | ||
1039 | } | ||
1040 | |||
1041 | /* | ||
1042 | if (Body != (IntPtr)0 && _linkJointGroup != (IntPtr)0) | ||
1043 | d.JointGroupDestroy(_linkJointGroup); | ||
1044 | |||
1045 | _linkJointGroup = (IntPtr)0; | ||
1046 | m_linkJoint = (IntPtr)0; | ||
1047 | */ | ||
1048 | } | ||
1049 | |||
1050 | _parent = m_taintparent; | ||
1051 | m_taintPhysics = m_isphysical; | ||
1052 | } | ||
1053 | |||
1054 | // I'm the parent | ||
1055 | // prim is the child | ||
1056 | public void ParentPrim(OdePrim prim) | ||
1057 | { | ||
1058 | //Console.WriteLine("ParentPrim " + m_primName); | ||
1059 | if (this.m_localID != prim.m_localID) | ||
1060 | { | ||
1061 | if (Body == IntPtr.Zero) | ||
1062 | { | ||
1063 | Body = d.BodyCreate(_parent_scene.world); | ||
1064 | setMass(); | ||
1065 | } | ||
1066 | if (Body != IntPtr.Zero) | ||
1067 | { | ||
1068 | lock (childrenPrim) | ||
1069 | { | ||
1070 | if (!childrenPrim.Contains(prim)) | ||
1071 | { | ||
1072 | //Console.WriteLine("childrenPrim.Add " + prim); | ||
1073 | childrenPrim.Add(prim); | ||
1074 | |||
1075 | foreach (OdePrim prm in childrenPrim) | ||
1076 | { | ||
1077 | d.Mass m2; | ||
1078 | d.MassSetZero(out m2); | ||
1079 | d.MassSetBoxTotal(out m2, prim.CalculateMass(), prm._size.X, prm._size.Y, prm._size.Z); | ||
1080 | |||
1081 | |||
1082 | d.Quaternion quat = new d.Quaternion(); | ||
1083 | quat.W = prm._orientation.W; | ||
1084 | quat.X = prm._orientation.X; | ||
1085 | quat.Y = prm._orientation.Y; | ||
1086 | quat.Z = prm._orientation.Z; | ||
1087 | |||
1088 | d.Matrix3 mat = new d.Matrix3(); | ||
1089 | d.RfromQ(out mat, ref quat); | ||
1090 | d.MassRotate(ref m2, ref mat); | ||
1091 | d.MassTranslate(ref m2, Position.X - prm.Position.X, Position.Y - prm.Position.Y, Position.Z - prm.Position.Z); | ||
1092 | d.MassAdd(ref pMass, ref m2); | ||
1093 | } | ||
1094 | foreach (OdePrim prm in childrenPrim) | ||
1095 | { | ||
1096 | |||
1097 | prm.m_collisionCategories |= CollisionCategories.Body; | ||
1098 | prm.m_collisionFlags |= (CollisionCategories.Land | CollisionCategories.Wind); | ||
1099 | |||
1100 | if (prm.prim_geom == IntPtr.Zero) | ||
1101 | { | ||
1102 | m_log.Warn("[PHYSICS]: Unable to link one of the linkset elements. No geom yet"); | ||
1103 | continue; | ||
1104 | } | ||
1105 | //Console.WriteLine(" GeomSetCategoryBits 1: " + prm.prim_geom + " - " + (int)prm.m_collisionCategories + " for " + m_primName); | ||
1106 | d.GeomSetCategoryBits(prm.prim_geom, (int)prm.m_collisionCategories); | ||
1107 | d.GeomSetCollideBits(prm.prim_geom, (int)prm.m_collisionFlags); | ||
1108 | |||
1109 | |||
1110 | d.Quaternion quat = new d.Quaternion(); | ||
1111 | quat.W = prm._orientation.W; | ||
1112 | quat.X = prm._orientation.X; | ||
1113 | quat.Y = prm._orientation.Y; | ||
1114 | quat.Z = prm._orientation.Z; | ||
1115 | |||
1116 | d.Matrix3 mat = new d.Matrix3(); | ||
1117 | d.RfromQ(out mat, ref quat); | ||
1118 | if (Body != IntPtr.Zero) | ||
1119 | { | ||
1120 | d.GeomSetBody(prm.prim_geom, Body); | ||
1121 | prm.childPrim = true; | ||
1122 | d.GeomSetOffsetWorldPosition(prm.prim_geom, prm.Position.X , prm.Position.Y, prm.Position.Z); | ||
1123 | //d.GeomSetOffsetPosition(prim.prim_geom, | ||
1124 | // (Position.X - prm.Position.X) - pMass.c.X, | ||
1125 | // (Position.Y - prm.Position.Y) - pMass.c.Y, | ||
1126 | // (Position.Z - prm.Position.Z) - pMass.c.Z); | ||
1127 | d.GeomSetOffsetWorldRotation(prm.prim_geom, ref mat); | ||
1128 | //d.GeomSetOffsetRotation(prm.prim_geom, ref mat); | ||
1129 | d.MassTranslate(ref pMass, -pMass.c.X, -pMass.c.Y, -pMass.c.Z); | ||
1130 | d.BodySetMass(Body, ref pMass); | ||
1131 | } | ||
1132 | else | ||
1133 | { | ||
1134 | m_log.Debug("[PHYSICS]:I ain't got no boooooooooddy, no body"); | ||
1135 | } | ||
1136 | |||
1137 | |||
1138 | prm.m_interpenetrationcount = 0; | ||
1139 | prm.m_collisionscore = 0; | ||
1140 | prm.m_disabled = false; | ||
1141 | |||
1142 | // The body doesn't already have a finite rotation mode set here | ||
1143 | if ((!m_angularlock.ApproxEquals(Vector3.Zero, 0f)) && _parent == null) | ||
1144 | { | ||
1145 | prm.createAMotor(m_angularlock); | ||
1146 | } | ||
1147 | prm.Body = Body; | ||
1148 | _parent_scene.addActivePrim(prm); | ||
1149 | } | ||
1150 | m_collisionCategories |= CollisionCategories.Body; | ||
1151 | m_collisionFlags |= (CollisionCategories.Land | CollisionCategories.Wind); | ||
1152 | |||
1153 | //Console.WriteLine("GeomSetCategoryBits 2: " + prim_geom + " - " + (int)m_collisionCategories + " for " + m_primName); | ||
1154 | d.GeomSetCategoryBits(prim_geom, (int)m_collisionCategories); | ||
1155 | //Console.WriteLine(" Post GeomSetCategoryBits 2"); | ||
1156 | d.GeomSetCollideBits(prim_geom, (int)m_collisionFlags); | ||
1157 | |||
1158 | |||
1159 | d.Quaternion quat2 = new d.Quaternion(); | ||
1160 | quat2.W = _orientation.W; | ||
1161 | quat2.X = _orientation.X; | ||
1162 | quat2.Y = _orientation.Y; | ||
1163 | quat2.Z = _orientation.Z; | ||
1164 | |||
1165 | d.Matrix3 mat2 = new d.Matrix3(); | ||
1166 | d.RfromQ(out mat2, ref quat2); | ||
1167 | d.GeomSetBody(prim_geom, Body); | ||
1168 | d.GeomSetOffsetWorldPosition(prim_geom, Position.X - pMass.c.X, Position.Y - pMass.c.Y, Position.Z - pMass.c.Z); | ||
1169 | //d.GeomSetOffsetPosition(prim.prim_geom, | ||
1170 | // (Position.X - prm.Position.X) - pMass.c.X, | ||
1171 | // (Position.Y - prm.Position.Y) - pMass.c.Y, | ||
1172 | // (Position.Z - prm.Position.Z) - pMass.c.Z); | ||
1173 | //d.GeomSetOffsetRotation(prim_geom, ref mat2); | ||
1174 | d.MassTranslate(ref pMass, -pMass.c.X, -pMass.c.Y, -pMass.c.Z); | ||
1175 | d.BodySetMass(Body, ref pMass); | ||
1176 | |||
1177 | d.BodySetAutoDisableFlag(Body, true); | ||
1178 | d.BodySetAutoDisableSteps(Body, body_autodisable_frames); | ||
1179 | |||
1180 | |||
1181 | m_interpenetrationcount = 0; | ||
1182 | m_collisionscore = 0; | ||
1183 | m_disabled = false; | ||
1184 | |||
1185 | // The body doesn't already have a finite rotation mode set here | ||
1186 | if ((!m_angularlock.ApproxEquals(Vector3.Zero, 0f)) && _parent == null) | ||
1187 | { | ||
1188 | createAMotor(m_angularlock); | ||
1189 | } | ||
1190 | d.BodySetPosition(Body, Position.X, Position.Y, Position.Z); | ||
1191 | if (m_vehicle.Type != Vehicle.TYPE_NONE) m_vehicle.Enable(Body, _parent_scene); | ||
1192 | _parent_scene.addActivePrim(this); | ||
1193 | } | ||
1194 | } | ||
1195 | } | ||
1196 | } | ||
1197 | |||
1198 | } | ||
1199 | |||
1200 | private void ChildSetGeom(OdePrim odePrim) | ||
1201 | { | ||
1202 | //if (m_isphysical && Body != IntPtr.Zero) | ||
1203 | lock (childrenPrim) | ||
1204 | { | ||
1205 | foreach (OdePrim prm in childrenPrim) | ||
1206 | { | ||
1207 | //prm.childPrim = true; | ||
1208 | prm.disableBody(); | ||
1209 | //prm.m_taintparent = null; | ||
1210 | //prm._parent = null; | ||
1211 | //prm.m_taintPhysics = false; | ||
1212 | //prm.m_disabled = true; | ||
1213 | //prm.childPrim = false; | ||
1214 | } | ||
1215 | } | ||
1216 | disableBody(); | ||
1217 | |||
1218 | |||
1219 | if (Body != IntPtr.Zero) | ||
1220 | { | ||
1221 | _parent_scene.remActivePrim(this); | ||
1222 | } | ||
1223 | |||
1224 | lock (childrenPrim) | ||
1225 | { | ||
1226 | foreach (OdePrim prm in childrenPrim) | ||
1227 | { | ||
1228 | //Console.WriteLine("ChildSetGeom calls ParentPrim"); | ||
1229 | ParentPrim(prm); | ||
1230 | } | ||
1231 | } | ||
1232 | |||
1233 | } | ||
1234 | |||
1235 | private void ChildDelink(OdePrim odePrim) | ||
1236 | { | ||
1237 | // Okay, we have a delinked child.. need to rebuild the body. | ||
1238 | lock (childrenPrim) | ||
1239 | { | ||
1240 | foreach (OdePrim prm in childrenPrim) | ||
1241 | { | ||
1242 | prm.childPrim = true; | ||
1243 | prm.disableBody(); | ||
1244 | //prm.m_taintparent = null; | ||
1245 | //prm._parent = null; | ||
1246 | //prm.m_taintPhysics = false; | ||
1247 | //prm.m_disabled = true; | ||
1248 | //prm.childPrim = false; | ||
1249 | } | ||
1250 | } | ||
1251 | disableBody(); | ||
1252 | |||
1253 | lock (childrenPrim) | ||
1254 | { | ||
1255 | //Console.WriteLine("childrenPrim.Remove " + odePrim); | ||
1256 | childrenPrim.Remove(odePrim); | ||
1257 | } | ||
1258 | |||
1259 | |||
1260 | |||
1261 | |||
1262 | if (Body != IntPtr.Zero) | ||
1263 | { | ||
1264 | _parent_scene.remActivePrim(this); | ||
1265 | } | ||
1266 | |||
1267 | |||
1268 | |||
1269 | lock (childrenPrim) | ||
1270 | { | ||
1271 | foreach (OdePrim prm in childrenPrim) | ||
1272 | { | ||
1273 | //Console.WriteLine("ChildDelink calls ParentPrim"); | ||
1274 | ParentPrim(prm); | ||
1275 | } | ||
1276 | } | ||
1277 | |||
1278 | |||
1279 | } | ||
1280 | |||
1281 | private void changeSelectedStatus(float timestep) | ||
1282 | { | ||
1283 | if (m_taintselected) | ||
1284 | { | ||
1285 | m_collisionCategories = CollisionCategories.Selected; | ||
1286 | m_collisionFlags = (CollisionCategories.Sensor | CollisionCategories.Space); | ||
1287 | |||
1288 | // We do the body disable soft twice because 'in theory' a collision could have happened | ||
1289 | // in between the disabling and the collision properties setting | ||
1290 | // which would wake the physical body up from a soft disabling and potentially cause it to fall | ||
1291 | // through the ground. | ||
1292 | |||
1293 | // NOTE FOR JOINTS: this doesn't always work for jointed assemblies because if you select | ||
1294 | // just one part of the assembly, the rest of the assembly is non-selected and still simulating, | ||
1295 | // so that causes the selected part to wake up and continue moving. | ||
1296 | |||
1297 | // even if you select all parts of a jointed assembly, it is not guaranteed that the entire | ||
1298 | // assembly will stop simulating during the selection, because of the lack of atomicity | ||
1299 | // of select operations (their processing could be interrupted by a thread switch, causing | ||
1300 | // simulation to continue before all of the selected object notifications trickle down to | ||
1301 | // the physics engine). | ||
1302 | |||
1303 | // e.g. we select 100 prims that are connected by joints. non-atomically, the first 50 are | ||
1304 | // selected and disabled. then, due to a thread switch, the selection processing is | ||
1305 | // interrupted and the physics engine continues to simulate, so the last 50 items, whose | ||
1306 | // selection was not yet processed, continues to simulate. this wakes up ALL of the | ||
1307 | // first 50 again. then the last 50 are disabled. then the first 50, which were just woken | ||
1308 | // up, start simulating again, which in turn wakes up the last 50. | ||
1309 | |||
1310 | if (m_isphysical) | ||
1311 | { | ||
1312 | disableBodySoft(); | ||
1313 | } | ||
1314 | |||
1315 | if (prim_geom != IntPtr.Zero) | ||
1316 | { | ||
1317 | d.GeomSetCategoryBits(prim_geom, (int)m_collisionCategories); | ||
1318 | d.GeomSetCollideBits(prim_geom, (int)m_collisionFlags); | ||
1319 | } | ||
1320 | |||
1321 | if (m_isphysical) | ||
1322 | { | ||
1323 | disableBodySoft(); | ||
1324 | } | ||
1325 | } | ||
1326 | else | ||
1327 | { | ||
1328 | m_collisionCategories = CollisionCategories.Geom; | ||
1329 | |||
1330 | if (m_isphysical) | ||
1331 | m_collisionCategories |= CollisionCategories.Body; | ||
1332 | |||
1333 | m_collisionFlags = m_default_collisionFlags; | ||
1334 | |||
1335 | if (m_collidesLand) | ||
1336 | m_collisionFlags |= CollisionCategories.Land; | ||
1337 | if (m_collidesWater) | ||
1338 | m_collisionFlags |= CollisionCategories.Water; | ||
1339 | |||
1340 | if (prim_geom != IntPtr.Zero) | ||
1341 | { | ||
1342 | d.GeomSetCategoryBits(prim_geom, (int)m_collisionCategories); | ||
1343 | d.GeomSetCollideBits(prim_geom, (int)m_collisionFlags); | ||
1344 | } | ||
1345 | if (m_isphysical) | ||
1346 | { | ||
1347 | if (Body != IntPtr.Zero) | ||
1348 | { | ||
1349 | d.BodySetLinearVel(Body, 0f, 0f, 0f); | ||
1350 | d.BodySetForce(Body, 0, 0, 0); | ||
1351 | enableBodySoft(); | ||
1352 | } | ||
1353 | } | ||
1354 | } | ||
1355 | |||
1356 | resetCollisionAccounting(); | ||
1357 | m_isSelected = m_taintselected; | ||
1358 | }//end changeSelectedStatus | ||
1359 | |||
1360 | public void ResetTaints() | ||
1361 | { | ||
1362 | m_taintposition = _position; | ||
1363 | m_taintrot = _orientation; | ||
1364 | m_taintPhysics = m_isphysical; | ||
1365 | m_taintselected = m_isSelected; | ||
1366 | m_taintsize = _size; | ||
1367 | m_taintshape = false; | ||
1368 | m_taintforce = false; | ||
1369 | m_taintdisable = false; | ||
1370 | m_taintVelocity = Vector3.Zero; | ||
1371 | } | ||
1372 | |||
1373 | public void CreateGeom(IntPtr m_targetSpace, IMesh _mesh) | ||
1374 | { | ||
1375 | //Console.WriteLine("CreateGeom:"); | ||
1376 | if (_mesh != null) | ||
1377 | { | ||
1378 | setMesh(_parent_scene, _mesh); | ||
1379 | } | ||
1380 | else | ||
1381 | { | ||
1382 | if (_pbs.ProfileShape == ProfileShape.HalfCircle && _pbs.PathCurve == (byte)Extrusion.Curve1) | ||
1383 | { | ||
1384 | if (_size.X == _size.Y && _size.Y == _size.Z && _size.X == _size.Z) | ||
1385 | { | ||
1386 | if (((_size.X / 2f) > 0f)) | ||
1387 | { | ||
1388 | _parent_scene.waitForSpaceUnlock(m_targetSpace); | ||
1389 | try | ||
1390 | { | ||
1391 | //Console.WriteLine(" CreateGeom 1"); | ||
1392 | SetGeom(d.CreateSphere(m_targetSpace, _size.X / 2)); | ||
1393 | } | ||
1394 | catch (AccessViolationException) | ||
1395 | { | ||
1396 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); | ||
1397 | ode.dunlock(_parent_scene.world); | ||
1398 | return; | ||
1399 | } | ||
1400 | } | ||
1401 | else | ||
1402 | { | ||
1403 | _parent_scene.waitForSpaceUnlock(m_targetSpace); | ||
1404 | try | ||
1405 | { | ||
1406 | //Console.WriteLine(" CreateGeom 2"); | ||
1407 | SetGeom(d.CreateBox(m_targetSpace, _size.X, _size.Y, _size.Z)); | ||
1408 | } | ||
1409 | catch (AccessViolationException) | ||
1410 | { | ||
1411 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); | ||
1412 | ode.dunlock(_parent_scene.world); | ||
1413 | return; | ||
1414 | } | ||
1415 | } | ||
1416 | } | ||
1417 | else | ||
1418 | { | ||
1419 | _parent_scene.waitForSpaceUnlock(m_targetSpace); | ||
1420 | try | ||
1421 | { | ||
1422 | //Console.WriteLine(" CreateGeom 3"); | ||
1423 | SetGeom(d.CreateBox(m_targetSpace, _size.X, _size.Y, _size.Z)); | ||
1424 | } | ||
1425 | catch (AccessViolationException) | ||
1426 | { | ||
1427 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); | ||
1428 | ode.dunlock(_parent_scene.world); | ||
1429 | return; | ||
1430 | } | ||
1431 | } | ||
1432 | } | ||
1433 | |||
1434 | else | ||
1435 | { | ||
1436 | _parent_scene.waitForSpaceUnlock(m_targetSpace); | ||
1437 | try | ||
1438 | { | ||
1439 | //Console.WriteLine(" CreateGeom 4"); | ||
1440 | SetGeom(d.CreateBox(m_targetSpace, _size.X, _size.Y, _size.Z)); | ||
1441 | } | ||
1442 | catch (AccessViolationException) | ||
1443 | { | ||
1444 | m_log.Warn("[PHYSICS]: Unable to create physics proxy for object"); | ||
1445 | ode.dunlock(_parent_scene.world); | ||
1446 | return; | ||
1447 | } | ||
1448 | } | ||
1449 | } | ||
1450 | } | ||
1451 | |||
1452 | public void changeadd(float timestep) | ||
1453 | { | ||
1454 | int[] iprimspaceArrItem = _parent_scene.calculateSpaceArrayItemFromPos(_position); | ||
1455 | IntPtr targetspace = _parent_scene.calculateSpaceForGeom(_position); | ||
1456 | |||
1457 | if (targetspace == IntPtr.Zero) | ||
1458 | targetspace = _parent_scene.createprimspace(iprimspaceArrItem[0], iprimspaceArrItem[1]); | ||
1459 | |||
1460 | m_targetSpace = targetspace; | ||
1461 | |||
1462 | if (_mesh == null) | ||
1463 | { | ||
1464 | if (_parent_scene.needsMeshing(_pbs)) | ||
1465 | { | ||
1466 | // Don't need to re-enable body.. it's done in SetMesh | ||
1467 | _mesh = _parent_scene.mesher.CreateMesh(m_primName, _pbs, _size, _parent_scene.meshSculptLOD, IsPhysical); | ||
1468 | // createmesh returns null when it's a shape that isn't a cube. | ||
1469 | // m_log.Debug(m_localID); | ||
1470 | } | ||
1471 | } | ||
1472 | |||
1473 | |||
1474 | lock (_parent_scene.OdeLock) | ||
1475 | { | ||
1476 | //Console.WriteLine("changeadd 1"); | ||
1477 | CreateGeom(m_targetSpace, _mesh); | ||
1478 | |||
1479 | if (prim_geom != IntPtr.Zero) | ||
1480 | { | ||
1481 | d.GeomSetPosition(prim_geom, _position.X, _position.Y, _position.Z); | ||
1482 | d.Quaternion myrot = new d.Quaternion(); | ||
1483 | myrot.X = _orientation.X; | ||
1484 | myrot.Y = _orientation.Y; | ||
1485 | myrot.Z = _orientation.Z; | ||
1486 | myrot.W = _orientation.W; | ||
1487 | d.GeomSetQuaternion(prim_geom, ref myrot); | ||
1488 | } | ||
1489 | |||
1490 | if (m_isphysical && Body == IntPtr.Zero) | ||
1491 | { | ||
1492 | enableBody(); | ||
1493 | } | ||
1494 | } | ||
1495 | |||
1496 | _parent_scene.geom_name_map[prim_geom] = this.m_primName; | ||
1497 | _parent_scene.actor_name_map[prim_geom] = (PhysicsActor)this; | ||
1498 | |||
1499 | changeSelectedStatus(timestep); | ||
1500 | |||
1501 | m_taintadd = false; | ||
1502 | } | ||
1503 | |||
1504 | public void changemove(float timestep) | ||
1505 | { | ||
1506 | if (m_isphysical) | ||
1507 | { | ||
1508 | |||
1509 | if (!m_disabled && !m_taintremove && !childPrim) | ||
1510 | { | ||
1511 | if (Body == IntPtr.Zero) | ||
1512 | enableBody(); | ||
1513 | //Prim auto disable after 20 frames, | ||
1514 | //if you move it, re-enable the prim manually. | ||
1515 | if (_parent != null) | ||
1516 | { | ||
1517 | if (m_linkJoint != IntPtr.Zero) | ||
1518 | { | ||
1519 | d.JointDestroy(m_linkJoint); | ||
1520 | m_linkJoint = IntPtr.Zero; | ||
1521 | } | ||
1522 | } | ||
1523 | if (Body != IntPtr.Zero) | ||
1524 | { | ||
1525 | d.BodySetPosition(Body, _position.X, _position.Y, _position.Z); | ||
1526 | |||
1527 | if (_parent != null) | ||
1528 | { | ||
1529 | OdePrim odParent = (OdePrim)_parent; | ||
1530 | if (Body != (IntPtr)0 && odParent.Body != (IntPtr)0 && Body != odParent.Body) | ||
1531 | { | ||
1532 | // KF: Fixed Joints were removed? Anyway - this Console.WriteLine does not show up, so routine is not used?? | ||
1533 | Console.WriteLine(" JointCreateFixed"); | ||
1534 | m_linkJoint = d.JointCreateFixed(_parent_scene.world, _linkJointGroup); | ||
1535 | d.JointAttach(m_linkJoint, Body, odParent.Body); | ||
1536 | d.JointSetFixed(m_linkJoint); | ||
1537 | } | ||
1538 | } | ||
1539 | d.BodyEnable(Body); | ||
1540 | if (m_vehicle.Type != Vehicle.TYPE_NONE) | ||
1541 | { | ||
1542 | m_vehicle.Enable(Body, _parent_scene); | ||
1543 | } | ||
1544 | } | ||
1545 | else | ||
1546 | { | ||
1547 | m_log.Warn("[PHYSICS]: Body Still null after enableBody(). This is a crash scenario."); | ||
1548 | } | ||
1549 | } | ||
1550 | //else | ||
1551 | // { | ||
1552 | //m_log.Debug("[BUG]: race!"); | ||
1553 | //} | ||
1554 | } | ||
1555 | else | ||
1556 | { | ||
1557 | // string primScenAvatarIn = _parent_scene.whichspaceamIin(_position); | ||
1558 | // int[] arrayitem = _parent_scene.calculateSpaceArrayItemFromPos(_position); | ||
1559 | _parent_scene.waitForSpaceUnlock(m_targetSpace); | ||
1560 | |||
1561 | IntPtr tempspace = _parent_scene.recalculateSpaceForGeom(prim_geom, _position, m_targetSpace); | ||
1562 | m_targetSpace = tempspace; | ||
1563 | |||
1564 | _parent_scene.waitForSpaceUnlock(m_targetSpace); | ||
1565 | if (prim_geom != IntPtr.Zero) | ||
1566 | { | ||
1567 | d.GeomSetPosition(prim_geom, _position.X, _position.Y, _position.Z); | ||
1568 | |||
1569 | _parent_scene.waitForSpaceUnlock(m_targetSpace); | ||
1570 | d.SpaceAdd(m_targetSpace, prim_geom); | ||
1571 | } | ||
1572 | } | ||
1573 | |||
1574 | changeSelectedStatus(timestep); | ||
1575 | |||
1576 | resetCollisionAccounting(); | ||
1577 | m_taintposition = _position; | ||
1578 | } | ||
1579 | |||
1580 | public void Move(float timestep) | ||
1581 | { | ||
1582 | float fx = 0; | ||
1583 | float fy = 0; | ||
1584 | float fz = 0; | ||
1585 | |||
1586 | frcount++; // used to limit debug comment output | ||
1587 | if (frcount > 100) | ||
1588 | frcount = 0; | ||
1589 | |||
1590 | if (IsPhysical && (Body != IntPtr.Zero) && !m_isSelected && !childPrim) // KF: Only move root prims. | ||
1591 | { | ||
1592 | //if(frcount == 0) Console.WriteLine("Move " + m_primName + " VTyp " + m_vehicle.Type + | ||
1593 | // " usePID=" + m_usePID + " seHover=" + m_useHoverPID + " useAPID=" + m_useAPID); | ||
1594 | if (m_vehicle.Type != Vehicle.TYPE_NONE) | ||
1595 | { | ||
1596 | // 'VEHICLES' are dealt with in ODEDynamics.cs | ||
1597 | m_vehicle.Step(timestep, _parent_scene); | ||
1598 | } | ||
1599 | else | ||
1600 | { | ||
1601 | if(!d.BodyIsEnabled (Body)) d.BodyEnable (Body); // KF add 161009 | ||
1602 | // NON-'VEHICLES' are dealt with here | ||
1603 | if (d.BodyIsEnabled(Body) && !m_angularlock.ApproxEquals(Vector3.Zero, 0.003f)) | ||
1604 | { | ||
1605 | d.Vector3 avel2 = d.BodyGetAngularVel(Body); | ||
1606 | if (m_angularlock.X == 1) | ||
1607 | avel2.X = 0; | ||
1608 | if (m_angularlock.Y == 1) | ||
1609 | avel2.Y = 0; | ||
1610 | if (m_angularlock.Z == 1) | ||
1611 | avel2.Z = 0; | ||
1612 | d.BodySetAngularVel(Body, avel2.X, avel2.Y, avel2.Z); | ||
1613 | } | ||
1614 | //float PID_P = 900.0f; | ||
1615 | |||
1616 | float m_mass = CalculateMass(); | ||
1617 | |||
1618 | // fz = 0f; | ||
1619 | //m_log.Info(m_collisionFlags.ToString()); | ||
1620 | |||
1621 | |||
1622 | //KF: m_buoyancy is set by llSetBuoyancy() and is for non-vehicle. | ||
1623 | // m_buoyancy: (unlimited value) <0=Falls fast; 0=1g; 1=0g; >1 = floats up | ||
1624 | // NB Prims in ODE are no subject to global gravity | ||
1625 | fz = _parent_scene.gravityz * (1.0f - m_buoyancy) * m_mass; // force = acceleration * mass | ||
1626 | |||
1627 | if (m_usePID) | ||
1628 | { | ||
1629 | //if(frcount == 0) Console.WriteLine("PID " + m_primName); | ||
1630 | // KF - this is for object MoveToTarget. | ||
1631 | |||
1632 | //if (!d.BodyIsEnabled(Body)) | ||
1633 | //d.BodySetForce(Body, 0f, 0f, 0f); | ||
1634 | |||
1635 | // no lock; for now it's only called from within Simulate() | ||
1636 | |||
1637 | // If the PID Controller isn't active then we set our force | ||
1638 | // calculating base velocity to the current position | ||
1639 | |||
1640 | if ((m_PIDTau < 1) && (m_PIDTau != 0)) | ||
1641 | { | ||
1642 | //PID_G = PID_G / m_PIDTau; | ||
1643 | m_PIDTau = 1; | ||
1644 | } | ||
1645 | |||
1646 | if ((PID_G - m_PIDTau) <= 0) | ||
1647 | { | ||
1648 | PID_G = m_PIDTau + 1; | ||
1649 | } | ||
1650 | //PidStatus = true; | ||
1651 | |||
1652 | // PhysicsVector vec = new PhysicsVector(); | ||
1653 | d.Vector3 vel = d.BodyGetLinearVel(Body); | ||
1654 | |||
1655 | d.Vector3 pos = d.BodyGetPosition(Body); | ||
1656 | _target_velocity = | ||
1657 | new Vector3( | ||
1658 | (m_PIDTarget.X - pos.X) * ((PID_G - m_PIDTau) * timestep), | ||
1659 | (m_PIDTarget.Y - pos.Y) * ((PID_G - m_PIDTau) * timestep), | ||
1660 | (m_PIDTarget.Z - pos.Z) * ((PID_G - m_PIDTau) * timestep) | ||
1661 | ); | ||
1662 | |||
1663 | // if velocity is zero, use position control; otherwise, velocity control | ||
1664 | |||
1665 | if (_target_velocity.ApproxEquals(Vector3.Zero,0.1f)) | ||
1666 | { | ||
1667 | // keep track of where we stopped. No more slippin' & slidin' | ||
1668 | |||
1669 | // We only want to deactivate the PID Controller if we think we want to have our surrogate | ||
1670 | // react to the physics scene by moving it's position. | ||
1671 | // Avatar to Avatar collisions | ||
1672 | // Prim to avatar collisions | ||
1673 | |||
1674 | //fx = (_target_velocity.X - vel.X) * (PID_D) + (_zeroPosition.X - pos.X) * (PID_P * 2); | ||
1675 | //fy = (_target_velocity.Y - vel.Y) * (PID_D) + (_zeroPosition.Y - pos.Y) * (PID_P * 2); | ||
1676 | //fz = fz + (_target_velocity.Z - vel.Z) * (PID_D) + (_zeroPosition.Z - pos.Z) * PID_P; | ||
1677 | d.BodySetPosition(Body, m_PIDTarget.X, m_PIDTarget.Y, m_PIDTarget.Z); | ||
1678 | d.BodySetLinearVel(Body, 0, 0, 0); | ||
1679 | d.BodyAddForce(Body, 0, 0, fz); | ||
1680 | return; | ||
1681 | } | ||
1682 | else | ||
1683 | { | ||
1684 | _zeroFlag = false; | ||
1685 | |||
1686 | // We're flying and colliding with something | ||
1687 | fx = ((_target_velocity.X) - vel.X) * (PID_D); | ||
1688 | fy = ((_target_velocity.Y) - vel.Y) * (PID_D); | ||
1689 | |||
1690 | // vec.Z = (_target_velocity.Z - vel.Z) * PID_D + (_zeroPosition.Z - pos.Z) * PID_P; | ||
1691 | |||
1692 | fz = fz + ((_target_velocity.Z - vel.Z) * (PID_D) * m_mass); | ||
1693 | } | ||
1694 | } // end if (m_usePID) | ||
1695 | |||
1696 | // Hover PID Controller needs to be mutually exlusive to MoveTo PID controller | ||
1697 | if (m_useHoverPID && !m_usePID) | ||
1698 | { | ||
1699 | //Console.WriteLine("Hover " + m_primName); | ||
1700 | |||
1701 | // If we're using the PID controller, then we have no gravity | ||
1702 | fz = (-1 * _parent_scene.gravityz) * m_mass; | ||
1703 | |||
1704 | // no lock; for now it's only called from within Simulate() | ||
1705 | |||
1706 | // If the PID Controller isn't active then we set our force | ||
1707 | // calculating base velocity to the current position | ||
1708 | |||
1709 | if ((m_PIDTau < 1)) | ||
1710 | { | ||
1711 | PID_G = PID_G / m_PIDTau; | ||
1712 | } | ||
1713 | |||
1714 | if ((PID_G - m_PIDTau) <= 0) | ||
1715 | { | ||
1716 | PID_G = m_PIDTau + 1; | ||
1717 | } | ||
1718 | |||
1719 | |||
1720 | // Where are we, and where are we headed? | ||
1721 | d.Vector3 pos = d.BodyGetPosition(Body); | ||
1722 | d.Vector3 vel = d.BodyGetLinearVel(Body); | ||
1723 | |||
1724 | |||
1725 | // Non-Vehicles have a limited set of Hover options. | ||
1726 | // determine what our target height really is based on HoverType | ||
1727 | switch (m_PIDHoverType) | ||
1728 | { | ||
1729 | case PIDHoverType.Ground: | ||
1730 | m_groundHeight = _parent_scene.GetTerrainHeightAtXY(pos.X, pos.Y); | ||
1731 | m_targetHoverHeight = m_groundHeight + m_PIDHoverHeight; | ||
1732 | break; | ||
1733 | case PIDHoverType.GroundAndWater: | ||
1734 | m_groundHeight = _parent_scene.GetTerrainHeightAtXY(pos.X, pos.Y); | ||
1735 | m_waterHeight = _parent_scene.GetWaterLevel(); | ||
1736 | if (m_groundHeight > m_waterHeight) | ||
1737 | { | ||
1738 | m_targetHoverHeight = m_groundHeight + m_PIDHoverHeight; | ||
1739 | } | ||
1740 | else | ||
1741 | { | ||
1742 | m_targetHoverHeight = m_waterHeight + m_PIDHoverHeight; | ||
1743 | } | ||
1744 | break; | ||
1745 | |||
1746 | } // end switch (m_PIDHoverType) | ||
1747 | |||
1748 | |||
1749 | _target_velocity = | ||
1750 | new Vector3(0.0f, 0.0f, | ||
1751 | (m_targetHoverHeight - pos.Z) * ((PID_G - m_PIDHoverTau) * timestep) | ||
1752 | ); | ||
1753 | |||
1754 | // if velocity is zero, use position control; otherwise, velocity control | ||
1755 | |||
1756 | if (_target_velocity.ApproxEquals(Vector3.Zero, 0.1f)) | ||
1757 | { | ||
1758 | // keep track of where we stopped. No more slippin' & slidin' | ||
1759 | |||
1760 | // We only want to deactivate the PID Controller if we think we want to have our surrogate | ||
1761 | // react to the physics scene by moving it's position. | ||
1762 | // Avatar to Avatar collisions | ||
1763 | // Prim to avatar collisions | ||
1764 | |||
1765 | d.BodySetPosition(Body, pos.X, pos.Y, m_targetHoverHeight); | ||
1766 | d.BodySetLinearVel(Body, vel.X, vel.Y, 0); | ||
1767 | d.BodyAddForce(Body, 0, 0, fz); | ||
1768 | //KF this prevents furthur motions return; | ||
1769 | } | ||
1770 | else | ||
1771 | { | ||
1772 | _zeroFlag = false; | ||
1773 | |||
1774 | // We're flying and colliding with something | ||
1775 | fz = fz + ((_target_velocity.Z - vel.Z) * (PID_D) * m_mass); | ||
1776 | } | ||
1777 | } // end m_useHoverPID && !m_usePID | ||
1778 | |||
1779 | if (m_useAPID) | ||
1780 | { | ||
1781 | // RotLookAt, apparently overrides all other rotation sources. Inputs: | ||
1782 | // Quaternion m_APIDTarget | ||
1783 | // float m_APIDStrength // From SL experiments, this is the time to get there | ||
1784 | // float m_APIDDamping // From SL experiments, this is damping, 1.0 = damped, 0.1 = wobbly | ||
1785 | // Also in SL the mass of the object has no effect on time to get there. | ||
1786 | // Factors: | ||
1787 | //if(frcount == 0) Console.WriteLine("APID "); | ||
1788 | // get present body rotation | ||
1789 | float limit = 1.0f; | ||
1790 | float scaler = 50f; // adjusts damping time | ||
1791 | float RLAservo = 0f; | ||
1792 | |||
1793 | d.Quaternion rot = d.BodyGetQuaternion(Body); | ||
1794 | Quaternion rotq = new Quaternion(rot.X, rot.Y, rot.Z, rot.W); | ||
1795 | Quaternion rot_diff = Quaternion.Inverse(rotq) * m_APIDTarget; | ||
1796 | float diff_angle; | ||
1797 | Vector3 diff_axis; | ||
1798 | rot_diff.GetAxisAngle(out diff_axis, out diff_angle); | ||
1799 | diff_axis.Normalize(); | ||
1800 | if(diff_angle > 0.01f) // diff_angle is always +ve | ||
1801 | { | ||
1802 | // PhysicsVector rotforce = new PhysicsVector(diff_axis.X, diff_axis.Y, diff_axis.Z); | ||
1803 | Vector3 rotforce = new Vector3(diff_axis.X, diff_axis.Y, diff_axis.Z); | ||
1804 | rotforce = rotforce * rotq; | ||
1805 | if(diff_angle > limit) diff_angle = limit; // cap the rotate rate | ||
1806 | // RLAservo = timestep / m_APIDStrength * m_mass * scaler; | ||
1807 | // rotforce = rotforce * RLAservo * diff_angle ; | ||
1808 | // d.BodyAddRelTorque(Body, rotforce.X, rotforce.Y, rotforce.Z); | ||
1809 | RLAservo = timestep / m_APIDStrength * scaler; | ||
1810 | rotforce = rotforce * RLAservo * diff_angle ; | ||
1811 | d.BodySetAngularVel (Body, rotforce.X, rotforce.Y, rotforce.Z); | ||
1812 | //Console.WriteLine("axis= " + diff_axis + " angle= " + diff_angle + "servo= " + RLAservo); | ||
1813 | } | ||
1814 | //if(frcount == 0) Console.WriteLine("mass= " + m_mass + " servo= " + RLAservo + " angle= " + diff_angle); | ||
1815 | } // end m_useAPID | ||
1816 | |||
1817 | fx *= m_mass; | ||
1818 | fy *= m_mass; | ||
1819 | //fz *= m_mass; | ||
1820 | |||
1821 | fx += m_force.X; | ||
1822 | fy += m_force.Y; | ||
1823 | fz += m_force.Z; | ||
1824 | |||
1825 | //m_log.Info("[OBJPID]: X:" + fx.ToString() + " Y:" + fy.ToString() + " Z:" + fz.ToString()); | ||
1826 | if (fx != 0 || fy != 0 || fz != 0) | ||
1827 | { | ||
1828 | //m_taintdisable = true; | ||
1829 | //base.RaiseOutOfBounds(Position); | ||
1830 | //d.BodySetLinearVel(Body, fx, fy, 0f); | ||
1831 | if (!d.BodyIsEnabled(Body)) | ||
1832 | { | ||
1833 | // A physical body at rest on a surface will auto-disable after a while, | ||
1834 | // this appears to re-enable it incase the surface it is upon vanishes, | ||
1835 | // and the body should fall again. | ||
1836 | d.BodySetLinearVel(Body, 0f, 0f, 0f); | ||
1837 | d.BodySetForce(Body, 0, 0, 0); | ||
1838 | enableBodySoft(); | ||
1839 | } | ||
1840 | |||
1841 | // 35x10 = 350n times the mass per second applied maximum. | ||
1842 | float nmax = 35f * m_mass; | ||
1843 | float nmin = -35f * m_mass; | ||
1844 | |||
1845 | |||
1846 | if (fx > nmax) | ||
1847 | fx = nmax; | ||
1848 | if (fx < nmin) | ||
1849 | fx = nmin; | ||
1850 | if (fy > nmax) | ||
1851 | fy = nmax; | ||
1852 | if (fy < nmin) | ||
1853 | fy = nmin; | ||
1854 | d.BodyAddForce(Body, fx, fy, fz); | ||
1855 | //Console.WriteLine("AddForce " + fx + "," + fy + "," + fz); | ||
1856 | } | ||
1857 | } | ||
1858 | } | ||
1859 | else | ||
1860 | { // is not physical, or is not a body or is selected | ||
1861 | // _zeroPosition = d.BodyGetPosition(Body); | ||
1862 | return; | ||
1863 | //Console.WriteLine("Nothing " + m_primName); | ||
1864 | |||
1865 | } | ||
1866 | } | ||
1867 | |||
1868 | |||
1869 | |||
1870 | public void rotate(float timestep) | ||
1871 | { | ||
1872 | d.Quaternion myrot = new d.Quaternion(); | ||
1873 | myrot.X = _orientation.X; | ||
1874 | myrot.Y = _orientation.Y; | ||
1875 | myrot.Z = _orientation.Z; | ||
1876 | myrot.W = _orientation.W; | ||
1877 | if (Body != IntPtr.Zero) | ||
1878 | { | ||
1879 | // KF: If this is a root prim do BodySet | ||
1880 | d.BodySetQuaternion(Body, ref myrot); | ||
1881 | if (m_isphysical) | ||
1882 | { | ||
1883 | if (!m_angularlock.ApproxEquals(Vector3.One, 0f)) | ||
1884 | createAMotor(m_angularlock); | ||
1885 | } | ||
1886 | } | ||
1887 | else | ||
1888 | { | ||
1889 | // daughter prim, do Geom set | ||
1890 | d.GeomSetQuaternion(prim_geom, ref myrot); | ||
1891 | } | ||
1892 | |||
1893 | resetCollisionAccounting(); | ||
1894 | m_taintrot = _orientation; | ||
1895 | } | ||
1896 | |||
1897 | private void resetCollisionAccounting() | ||
1898 | { | ||
1899 | m_collisionscore = 0; | ||
1900 | m_interpenetrationcount = 0; | ||
1901 | m_disabled = false; | ||
1902 | } | ||
1903 | |||
1904 | public void changedisable(float timestep) | ||
1905 | { | ||
1906 | m_disabled = true; | ||
1907 | if (Body != IntPtr.Zero) | ||
1908 | { | ||
1909 | d.BodyDisable(Body); | ||
1910 | Body = IntPtr.Zero; | ||
1911 | } | ||
1912 | |||
1913 | m_taintdisable = false; | ||
1914 | } | ||
1915 | |||
1916 | public void changePhysicsStatus(float timestep) | ||
1917 | { | ||
1918 | if (m_isphysical == true) | ||
1919 | { | ||
1920 | if (Body == IntPtr.Zero) | ||
1921 | { | ||
1922 | if (_pbs.SculptEntry && _parent_scene.meshSculptedPrim) | ||
1923 | { | ||
1924 | changeshape(2f); | ||
1925 | } | ||
1926 | else | ||
1927 | { | ||
1928 | enableBody(); | ||
1929 | } | ||
1930 | } | ||
1931 | } | ||
1932 | else | ||
1933 | { | ||
1934 | if (Body != IntPtr.Zero) | ||
1935 | { | ||
1936 | if (_pbs.SculptEntry && _parent_scene.meshSculptedPrim) | ||
1937 | { | ||
1938 | |||
1939 | |||
1940 | if (prim_geom != IntPtr.Zero) | ||
1941 | { | ||
1942 | try | ||
1943 | { | ||
1944 | d.GeomDestroy(prim_geom); | ||
1945 | prim_geom = IntPtr.Zero; | ||
1946 | _mesh = null; | ||
1947 | } | ||
1948 | catch (System.AccessViolationException) | ||
1949 | { | ||
1950 | prim_geom = IntPtr.Zero; | ||
1951 | m_log.Error("[PHYSICS]: PrimGeom dead"); | ||
1952 | } | ||
1953 | } | ||
1954 | //Console.WriteLine("changePhysicsStatus for " + m_primName ); | ||
1955 | changeadd(2f); | ||
1956 | } | ||
1957 | if (childPrim) | ||
1958 | { | ||
1959 | if (_parent != null) | ||
1960 | { | ||
1961 | OdePrim parent = (OdePrim)_parent; | ||
1962 | parent.ChildDelink(this); | ||
1963 | } | ||
1964 | } | ||
1965 | else | ||
1966 | { | ||
1967 | disableBody(); | ||
1968 | } | ||
1969 | } | ||
1970 | } | ||
1971 | |||
1972 | changeSelectedStatus(timestep); | ||
1973 | |||
1974 | resetCollisionAccounting(); | ||
1975 | m_taintPhysics = m_isphysical; | ||
1976 | } | ||
1977 | |||
1978 | public void changesize(float timestamp) | ||
1979 | { | ||
1980 | |||
1981 | string oldname = _parent_scene.geom_name_map[prim_geom]; | ||
1982 | |||
1983 | if (_size.X <= 0) _size.X = 0.01f; | ||
1984 | if (_size.Y <= 0) _size.Y = 0.01f; | ||
1985 | if (_size.Z <= 0) _size.Z = 0.01f; | ||
1986 | |||
1987 | // Cleanup of old prim geometry | ||
1988 | if (_mesh != null) | ||
1989 | { | ||
1990 | // Cleanup meshing here | ||
1991 | } | ||
1992 | //kill body to rebuild | ||
1993 | if (IsPhysical && Body != IntPtr.Zero) | ||
1994 | { | ||
1995 | if (childPrim) | ||
1996 | { | ||
1997 | if (_parent != null) | ||
1998 | { | ||
1999 | OdePrim parent = (OdePrim)_parent; | ||
2000 | parent.ChildDelink(this); | ||
2001 | } | ||
2002 | } | ||
2003 | else | ||
2004 | { | ||
2005 | disableBody(); | ||
2006 | } | ||
2007 | } | ||
2008 | if (d.SpaceQuery(m_targetSpace, prim_geom)) | ||
2009 | { | ||
2010 | _parent_scene.waitForSpaceUnlock(m_targetSpace); | ||
2011 | d.SpaceRemove(m_targetSpace, prim_geom); | ||
2012 | } | ||
2013 | d.GeomDestroy(prim_geom); | ||
2014 | prim_geom = IntPtr.Zero; | ||
2015 | // we don't need to do space calculation because the client sends a position update also. | ||
2016 | |||
2017 | // Construction of new prim | ||
2018 | if (_parent_scene.needsMeshing(_pbs)) | ||
2019 | { | ||
2020 | float meshlod = _parent_scene.meshSculptLOD; | ||
2021 | |||
2022 | if (IsPhysical) | ||
2023 | meshlod = _parent_scene.MeshSculptphysicalLOD; | ||
2024 | // Don't need to re-enable body.. it's done in SetMesh | ||
2025 | |||
2026 | IMesh mesh = null; | ||
2027 | |||
2028 | if (_parent_scene.needsMeshing(_pbs)) | ||
2029 | mesh = _parent_scene.mesher.CreateMesh(oldname, _pbs, _size, meshlod, IsPhysical); | ||
2030 | |||
2031 | //IMesh mesh = _parent_scene.mesher.CreateMesh(oldname, _pbs, _size, meshlod, IsPhysical); | ||
2032 | //Console.WriteLine("changesize 1"); | ||
2033 | CreateGeom(m_targetSpace, mesh); | ||
2034 | |||
2035 | |||
2036 | } | ||
2037 | else | ||
2038 | { | ||
2039 | _mesh = null; | ||
2040 | //Console.WriteLine("changesize 2"); | ||
2041 | CreateGeom(m_targetSpace, _mesh); | ||
2042 | } | ||
2043 | |||
2044 | d.GeomSetPosition(prim_geom, _position.X, _position.Y, _position.Z); | ||
2045 | d.Quaternion myrot = new d.Quaternion(); | ||
2046 | myrot.X = _orientation.X; | ||
2047 | myrot.Y = _orientation.Y; | ||
2048 | myrot.Z = _orientation.Z; | ||
2049 | myrot.W = _orientation.W; | ||
2050 | d.GeomSetQuaternion(prim_geom, ref myrot); | ||
2051 | |||
2052 | //d.GeomBoxSetLengths(prim_geom, _size.X, _size.Y, _size.Z); | ||
2053 | if (IsPhysical && Body == IntPtr.Zero && !childPrim) | ||
2054 | { | ||
2055 | // Re creates body on size. | ||
2056 | // EnableBody also does setMass() | ||
2057 | enableBody(); | ||
2058 | d.BodyEnable(Body); | ||
2059 | } | ||
2060 | |||
2061 | _parent_scene.geom_name_map[prim_geom] = oldname; | ||
2062 | |||
2063 | changeSelectedStatus(timestamp); | ||
2064 | if (childPrim) | ||
2065 | { | ||
2066 | if (_parent is OdePrim) | ||
2067 | { | ||
2068 | OdePrim parent = (OdePrim)_parent; | ||
2069 | parent.ChildSetGeom(this); | ||
2070 | } | ||
2071 | } | ||
2072 | resetCollisionAccounting(); | ||
2073 | m_taintsize = _size; | ||
2074 | } | ||
2075 | |||
2076 | |||
2077 | |||
2078 | public void changefloatonwater(float timestep) | ||
2079 | { | ||
2080 | m_collidesWater = m_taintCollidesWater; | ||
2081 | |||
2082 | if (prim_geom != IntPtr.Zero) | ||
2083 | { | ||
2084 | if (m_collidesWater) | ||
2085 | { | ||
2086 | m_collisionFlags |= CollisionCategories.Water; | ||
2087 | } | ||
2088 | else | ||
2089 | { | ||
2090 | m_collisionFlags &= ~CollisionCategories.Water; | ||
2091 | } | ||
2092 | d.GeomSetCollideBits(prim_geom, (int)m_collisionFlags); | ||
2093 | } | ||
2094 | } | ||
2095 | |||
2096 | public void changeshape(float timestamp) | ||
2097 | { | ||
2098 | string oldname = _parent_scene.geom_name_map[prim_geom]; | ||
2099 | |||
2100 | // Cleanup of old prim geometry and Bodies | ||
2101 | if (IsPhysical && Body != IntPtr.Zero) | ||
2102 | { | ||
2103 | if (childPrim) | ||
2104 | { | ||
2105 | if (_parent != null) | ||
2106 | { | ||
2107 | OdePrim parent = (OdePrim)_parent; | ||
2108 | parent.ChildDelink(this); | ||
2109 | } | ||
2110 | } | ||
2111 | else | ||
2112 | { | ||
2113 | disableBody(); | ||
2114 | } | ||
2115 | } | ||
2116 | try | ||
2117 | { | ||
2118 | d.GeomDestroy(prim_geom); | ||
2119 | } | ||
2120 | catch (System.AccessViolationException) | ||
2121 | { | ||
2122 | prim_geom = IntPtr.Zero; | ||
2123 | m_log.Error("[PHYSICS]: PrimGeom dead"); | ||
2124 | } | ||
2125 | prim_geom = IntPtr.Zero; | ||
2126 | // we don't need to do space calculation because the client sends a position update also. | ||
2127 | if (_size.X <= 0) _size.X = 0.01f; | ||
2128 | if (_size.Y <= 0) _size.Y = 0.01f; | ||
2129 | if (_size.Z <= 0) _size.Z = 0.01f; | ||
2130 | // Construction of new prim | ||
2131 | |||
2132 | if (_parent_scene.needsMeshing(_pbs)) | ||
2133 | { | ||
2134 | // Don't need to re-enable body.. it's done in SetMesh | ||
2135 | float meshlod = _parent_scene.meshSculptLOD; | ||
2136 | |||
2137 | if (IsPhysical) | ||
2138 | meshlod = _parent_scene.MeshSculptphysicalLOD; | ||
2139 | |||
2140 | IMesh mesh = _parent_scene.mesher.CreateMesh(oldname, _pbs, _size, meshlod, IsPhysical); | ||
2141 | // createmesh returns null when it doesn't mesh. | ||
2142 | CreateGeom(m_targetSpace, mesh); | ||
2143 | } | ||
2144 | else | ||
2145 | { | ||
2146 | _mesh = null; | ||
2147 | //Console.WriteLine("changeshape"); | ||
2148 | CreateGeom(m_targetSpace, null); | ||
2149 | } | ||
2150 | |||
2151 | d.GeomSetPosition(prim_geom, _position.X, _position.Y, _position.Z); | ||
2152 | d.Quaternion myrot = new d.Quaternion(); | ||
2153 | //myrot.W = _orientation.w; | ||
2154 | myrot.W = _orientation.W; | ||
2155 | myrot.X = _orientation.X; | ||
2156 | myrot.Y = _orientation.Y; | ||
2157 | myrot.Z = _orientation.Z; | ||
2158 | d.GeomSetQuaternion(prim_geom, ref myrot); | ||
2159 | |||
2160 | //d.GeomBoxSetLengths(prim_geom, _size.X, _size.Y, _size.Z); | ||
2161 | if (IsPhysical && Body == IntPtr.Zero) | ||
2162 | { | ||
2163 | // Re creates body on size. | ||
2164 | // EnableBody also does setMass() | ||
2165 | enableBody(); | ||
2166 | if (Body != IntPtr.Zero) | ||
2167 | { | ||
2168 | d.BodyEnable(Body); | ||
2169 | } | ||
2170 | } | ||
2171 | _parent_scene.geom_name_map[prim_geom] = oldname; | ||
2172 | |||
2173 | changeSelectedStatus(timestamp); | ||
2174 | if (childPrim) | ||
2175 | { | ||
2176 | if (_parent is OdePrim) | ||
2177 | { | ||
2178 | OdePrim parent = (OdePrim)_parent; | ||
2179 | parent.ChildSetGeom(this); | ||
2180 | } | ||
2181 | } | ||
2182 | resetCollisionAccounting(); | ||
2183 | m_taintshape = false; | ||
2184 | } | ||
2185 | |||
2186 | public void changeAddForce(float timestamp) | ||
2187 | { | ||
2188 | if (!m_isSelected) | ||
2189 | { | ||
2190 | lock (m_forcelist) | ||
2191 | { | ||
2192 | //m_log.Info("[PHYSICS]: dequeing forcelist"); | ||
2193 | if (IsPhysical) | ||
2194 | { | ||
2195 | Vector3 iforce = Vector3.Zero; | ||
2196 | int i = 0; | ||
2197 | try | ||
2198 | { | ||
2199 | for (i = 0; i < m_forcelist.Count; i++) | ||
2200 | { | ||
2201 | |||
2202 | iforce = iforce + (m_forcelist[i] * 100); | ||
2203 | } | ||
2204 | } | ||
2205 | catch (IndexOutOfRangeException) | ||
2206 | { | ||
2207 | m_forcelist = new List<Vector3>(); | ||
2208 | m_collisionscore = 0; | ||
2209 | m_interpenetrationcount = 0; | ||
2210 | m_taintforce = false; | ||
2211 | return; | ||
2212 | } | ||
2213 | catch (ArgumentOutOfRangeException) | ||
2214 | { | ||
2215 | m_forcelist = new List<Vector3>(); | ||
2216 | m_collisionscore = 0; | ||
2217 | m_interpenetrationcount = 0; | ||
2218 | m_taintforce = false; | ||
2219 | return; | ||
2220 | } | ||
2221 | d.BodyEnable(Body); | ||
2222 | d.BodyAddForce(Body, iforce.X, iforce.Y, iforce.Z); | ||
2223 | } | ||
2224 | m_forcelist.Clear(); | ||
2225 | } | ||
2226 | |||
2227 | m_collisionscore = 0; | ||
2228 | m_interpenetrationcount = 0; | ||
2229 | } | ||
2230 | |||
2231 | m_taintforce = false; | ||
2232 | |||
2233 | } | ||
2234 | |||
2235 | |||
2236 | |||
2237 | public void changeSetTorque(float timestamp) | ||
2238 | { | ||
2239 | if (!m_isSelected) | ||
2240 | { | ||
2241 | if (IsPhysical && Body != IntPtr.Zero) | ||
2242 | { | ||
2243 | d.BodySetTorque(Body, m_taintTorque.X, m_taintTorque.Y, m_taintTorque.Z); | ||
2244 | } | ||
2245 | } | ||
2246 | |||
2247 | m_taintTorque = Vector3.Zero; | ||
2248 | } | ||
2249 | |||
2250 | public void changeAddAngularForce(float timestamp) | ||
2251 | { | ||
2252 | if (!m_isSelected) | ||
2253 | { | ||
2254 | lock (m_angularforcelist) | ||
2255 | { | ||
2256 | //m_log.Info("[PHYSICS]: dequeing forcelist"); | ||
2257 | if (IsPhysical) | ||
2258 | { | ||
2259 | Vector3 iforce = Vector3.Zero; | ||
2260 | for (int i = 0; i < m_angularforcelist.Count; i++) | ||
2261 | { | ||
2262 | iforce = iforce + (m_angularforcelist[i] * 100); | ||
2263 | } | ||
2264 | d.BodyEnable(Body); | ||
2265 | d.BodyAddTorque(Body, iforce.X, iforce.Y, iforce.Z); | ||
2266 | |||
2267 | } | ||
2268 | m_angularforcelist.Clear(); | ||
2269 | } | ||
2270 | |||
2271 | m_collisionscore = 0; | ||
2272 | m_interpenetrationcount = 0; | ||
2273 | } | ||
2274 | |||
2275 | m_taintaddangularforce = false; | ||
2276 | } | ||
2277 | |||
2278 | private void changevelocity(float timestep) | ||
2279 | { | ||
2280 | if (!m_isSelected) | ||
2281 | { | ||
2282 | Thread.Sleep(20); | ||
2283 | if (IsPhysical) | ||
2284 | { | ||
2285 | if (Body != IntPtr.Zero) | ||
2286 | { | ||
2287 | d.BodySetLinearVel(Body, m_taintVelocity.X, m_taintVelocity.Y, m_taintVelocity.Z); | ||
2288 | } | ||
2289 | } | ||
2290 | |||
2291 | //resetCollisionAccounting(); | ||
2292 | } | ||
2293 | m_taintVelocity = Vector3.Zero; | ||
2294 | } | ||
2295 | |||
2296 | public override bool IsPhysical | ||
2297 | { | ||
2298 | get { return m_isphysical; } | ||
2299 | set | ||
2300 | { | ||
2301 | m_isphysical = value; | ||
2302 | if (!m_isphysical) | ||
2303 | { // Zero the remembered last velocity | ||
2304 | m_lastVelocity = Vector3.Zero; | ||
2305 | if (m_vehicle.Type != Vehicle.TYPE_NONE) m_vehicle.Halt(); | ||
2306 | } | ||
2307 | } | ||
2308 | } | ||
2309 | |||
2310 | public void setPrimForRemoval() | ||
2311 | { | ||
2312 | m_taintremove = true; | ||
2313 | } | ||
2314 | |||
2315 | public override bool Flying | ||
2316 | { | ||
2317 | // no flying prims for you | ||
2318 | get { return false; } | ||
2319 | set { } | ||
2320 | } | ||
2321 | |||
2322 | public override bool IsColliding | ||
2323 | { | ||
2324 | get { return iscolliding; } | ||
2325 | set { iscolliding = value; } | ||
2326 | } | ||
2327 | |||
2328 | public override bool CollidingGround | ||
2329 | { | ||
2330 | get { return false; } | ||
2331 | set { return; } | ||
2332 | } | ||
2333 | |||
2334 | public override bool CollidingObj | ||
2335 | { | ||
2336 | get { return false; } | ||
2337 | set { return; } | ||
2338 | } | ||
2339 | |||
2340 | public override bool ThrottleUpdates | ||
2341 | { | ||
2342 | get { return m_throttleUpdates; } | ||
2343 | set { m_throttleUpdates = value; } | ||
2344 | } | ||
2345 | |||
2346 | public override bool Stopped | ||
2347 | { | ||
2348 | get { return _zeroFlag; } | ||
2349 | } | ||
2350 | |||
2351 | public override Vector3 Position | ||
2352 | { | ||
2353 | get { return _position; } | ||
2354 | |||
2355 | set { _position = value; | ||
2356 | //m_log.Info("[PHYSICS]: " + _position.ToString()); | ||
2357 | } | ||
2358 | } | ||
2359 | |||
2360 | public override Vector3 Size | ||
2361 | { | ||
2362 | get { return _size; } | ||
2363 | set | ||
2364 | { | ||
2365 | if (value.IsFinite()) | ||
2366 | { | ||
2367 | _size = value; | ||
2368 | } | ||
2369 | else | ||
2370 | { | ||
2371 | m_log.Warn("[PHYSICS]: Got NaN Size on object"); | ||
2372 | } | ||
2373 | } | ||
2374 | } | ||
2375 | |||
2376 | public override float Mass | ||
2377 | { | ||
2378 | get { return CalculateMass(); } | ||
2379 | } | ||
2380 | |||
2381 | public override Vector3 Force | ||
2382 | { | ||
2383 | //get { return Vector3.Zero; } | ||
2384 | get { return m_force; } | ||
2385 | set | ||
2386 | { | ||
2387 | if (value.IsFinite()) | ||
2388 | { | ||
2389 | m_force = value; | ||
2390 | } | ||
2391 | else | ||
2392 | { | ||
2393 | m_log.Warn("[PHYSICS]: NaN in Force Applied to an Object"); | ||
2394 | } | ||
2395 | } | ||
2396 | } | ||
2397 | |||
2398 | public override int VehicleType | ||
2399 | { | ||
2400 | get { return (int)m_vehicle.Type; } | ||
2401 | set { m_vehicle.ProcessTypeChange((Vehicle)value); } | ||
2402 | } | ||
2403 | |||
2404 | public override void VehicleFloatParam(int param, float value) | ||
2405 | { | ||
2406 | m_vehicle.ProcessFloatVehicleParam((Vehicle) param, value); | ||
2407 | } | ||
2408 | |||
2409 | public override void VehicleVectorParam(int param, Vector3 value) | ||
2410 | { | ||
2411 | m_vehicle.ProcessVectorVehicleParam((Vehicle) param, value); | ||
2412 | } | ||
2413 | |||
2414 | public override void VehicleRotationParam(int param, Quaternion rotation) | ||
2415 | { | ||
2416 | m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation); | ||
2417 | } | ||
2418 | |||
2419 | public override void VehicleFlagsSet(int flags) | ||
2420 | { | ||
2421 | m_vehicle.ProcessFlagsVehicleSet(flags); | ||
2422 | } | ||
2423 | |||
2424 | public override void VehicleFlagsRemove(int flags) | ||
2425 | { | ||
2426 | m_vehicle.ProcessFlagsVehicleRemove(flags); | ||
2427 | } | ||
2428 | |||
2429 | public override void SetVolumeDetect(int param) | ||
2430 | { | ||
2431 | lock (_parent_scene.OdeLock) | ||
2432 | { | ||
2433 | m_isVolumeDetect = (param!=0); | ||
2434 | } | ||
2435 | } | ||
2436 | |||
2437 | public override Vector3 CenterOfMass | ||
2438 | { | ||
2439 | get { return Vector3.Zero; } | ||
2440 | } | ||
2441 | |||
2442 | public override Vector3 GeometricCenter | ||
2443 | { | ||
2444 | get { return Vector3.Zero; } | ||
2445 | } | ||
2446 | |||
2447 | public override PrimitiveBaseShape Shape | ||
2448 | { | ||
2449 | set | ||
2450 | { | ||
2451 | _pbs = value; | ||
2452 | m_taintshape = true; | ||
2453 | } | ||
2454 | } | ||
2455 | |||
2456 | public override Vector3 Velocity | ||
2457 | { | ||
2458 | get | ||
2459 | { | ||
2460 | // Averate previous velocity with the new one so | ||
2461 | // client object interpolation works a 'little' better | ||
2462 | if (_zeroFlag) | ||
2463 | return Vector3.Zero; | ||
2464 | |||
2465 | Vector3 returnVelocity = Vector3.Zero; | ||
2466 | returnVelocity.X = (m_lastVelocity.X + _velocity.X)/2; | ||
2467 | returnVelocity.Y = (m_lastVelocity.Y + _velocity.Y)/2; | ||
2468 | returnVelocity.Z = (m_lastVelocity.Z + _velocity.Z)/2; | ||
2469 | return returnVelocity; | ||
2470 | } | ||
2471 | set | ||
2472 | { | ||
2473 | if (value.IsFinite()) | ||
2474 | { | ||
2475 | _velocity = value; | ||
2476 | |||
2477 | m_taintVelocity = value; | ||
2478 | _parent_scene.AddPhysicsActorTaint(this); | ||
2479 | } | ||
2480 | else | ||
2481 | { | ||
2482 | m_log.Warn("[PHYSICS]: Got NaN Velocity in Object"); | ||
2483 | } | ||
2484 | |||
2485 | } | ||
2486 | } | ||
2487 | |||
2488 | public override Vector3 Torque | ||
2489 | { | ||
2490 | get | ||
2491 | { | ||
2492 | if (!m_isphysical || Body == IntPtr.Zero) | ||
2493 | return Vector3.Zero; | ||
2494 | |||
2495 | return _torque; | ||
2496 | } | ||
2497 | |||
2498 | set | ||
2499 | { | ||
2500 | if (value.IsFinite()) | ||
2501 | { | ||
2502 | m_taintTorque = value; | ||
2503 | _parent_scene.AddPhysicsActorTaint(this); | ||
2504 | } | ||
2505 | else | ||
2506 | { | ||
2507 | m_log.Warn("[PHYSICS]: Got NaN Torque in Object"); | ||
2508 | } | ||
2509 | } | ||
2510 | } | ||
2511 | |||
2512 | public override float CollisionScore | ||
2513 | { | ||
2514 | get { return m_collisionscore; } | ||
2515 | set { m_collisionscore = value; } | ||
2516 | } | ||
2517 | |||
2518 | public override bool Kinematic | ||
2519 | { | ||
2520 | get { return false; } | ||
2521 | set { } | ||
2522 | } | ||
2523 | |||
2524 | public override Quaternion Orientation | ||
2525 | { | ||
2526 | get { return _orientation; } | ||
2527 | set | ||
2528 | { | ||
2529 | if (QuaternionIsFinite(value)) | ||
2530 | { | ||
2531 | _orientation = value; | ||
2532 | } | ||
2533 | else | ||
2534 | m_log.Warn("[PHYSICS]: Got NaN quaternion Orientation from Scene in Object"); | ||
2535 | |||
2536 | } | ||
2537 | } | ||
2538 | |||
2539 | internal static bool QuaternionIsFinite(Quaternion q) | ||
2540 | { | ||
2541 | if (Single.IsNaN(q.X) || Single.IsInfinity(q.X)) | ||
2542 | return false; | ||
2543 | if (Single.IsNaN(q.Y) || Single.IsInfinity(q.Y)) | ||
2544 | return false; | ||
2545 | if (Single.IsNaN(q.Z) || Single.IsInfinity(q.Z)) | ||
2546 | return false; | ||
2547 | if (Single.IsNaN(q.W) || Single.IsInfinity(q.W)) | ||
2548 | return false; | ||
2549 | return true; | ||
2550 | } | ||
2551 | |||
2552 | public override Vector3 Acceleration | ||
2553 | { | ||
2554 | get { return _acceleration; } | ||
2555 | } | ||
2556 | |||
2557 | |||
2558 | public void SetAcceleration(Vector3 accel) | ||
2559 | { | ||
2560 | _acceleration = accel; | ||
2561 | } | ||
2562 | |||
2563 | public override void AddForce(Vector3 force, bool pushforce) | ||
2564 | { | ||
2565 | if (force.IsFinite()) | ||
2566 | { | ||
2567 | lock (m_forcelist) | ||
2568 | m_forcelist.Add(force); | ||
2569 | |||
2570 | m_taintforce = true; | ||
2571 | } | ||
2572 | else | ||
2573 | { | ||
2574 | m_log.Warn("[PHYSICS]: Got Invalid linear force vector from Scene in Object"); | ||
2575 | } | ||
2576 | //m_log.Info("[PHYSICS]: Added Force:" + force.ToString() + " to prim at " + Position.ToString()); | ||
2577 | } | ||
2578 | |||
2579 | public override void AddAngularForce(Vector3 force, bool pushforce) | ||
2580 | { | ||
2581 | if (force.IsFinite()) | ||
2582 | { | ||
2583 | m_angularforcelist.Add(force); | ||
2584 | m_taintaddangularforce = true; | ||
2585 | } | ||
2586 | else | ||
2587 | { | ||
2588 | m_log.Warn("[PHYSICS]: Got Invalid Angular force vector from Scene in Object"); | ||
2589 | } | ||
2590 | } | ||
2591 | |||
2592 | public override Vector3 RotationalVelocity | ||
2593 | { | ||
2594 | get | ||
2595 | { | ||
2596 | Vector3 pv = Vector3.Zero; | ||
2597 | if (_zeroFlag) | ||
2598 | return pv; | ||
2599 | m_lastUpdateSent = false; | ||
2600 | |||
2601 | if (m_rotationalVelocity.ApproxEquals(pv, 0.2f)) | ||
2602 | return pv; | ||
2603 | |||
2604 | return m_rotationalVelocity; | ||
2605 | } | ||
2606 | set | ||
2607 | { | ||
2608 | if (value.IsFinite()) | ||
2609 | { | ||
2610 | m_rotationalVelocity = value; | ||
2611 | } | ||
2612 | else | ||
2613 | { | ||
2614 | m_log.Warn("[PHYSICS]: Got NaN RotationalVelocity in Object"); | ||
2615 | } | ||
2616 | } | ||
2617 | } | ||
2618 | |||
2619 | public override void CrossingFailure() | ||
2620 | { | ||
2621 | m_crossingfailures++; | ||
2622 | if (m_crossingfailures > _parent_scene.geomCrossingFailuresBeforeOutofbounds) | ||
2623 | { | ||
2624 | base.RaiseOutOfBounds(_position); | ||
2625 | return; | ||
2626 | } | ||
2627 | else if (m_crossingfailures == _parent_scene.geomCrossingFailuresBeforeOutofbounds) | ||
2628 | { | ||
2629 | m_log.Warn("[PHYSICS]: Too many crossing failures for: " + m_primName); | ||
2630 | } | ||
2631 | } | ||
2632 | |||
2633 | public override float Buoyancy | ||
2634 | { | ||
2635 | get { return m_buoyancy; } | ||
2636 | set { m_buoyancy = value; } | ||
2637 | } | ||
2638 | |||
2639 | public override void link(PhysicsActor obj) | ||
2640 | { | ||
2641 | m_taintparent = obj; | ||
2642 | } | ||
2643 | |||
2644 | public override void delink() | ||
2645 | { | ||
2646 | m_taintparent = null; | ||
2647 | } | ||
2648 | |||
2649 | public override void LockAngularMotion(Vector3 axis) | ||
2650 | { | ||
2651 | // reverse the zero/non zero values for ODE. | ||
2652 | if (axis.IsFinite()) | ||
2653 | { | ||
2654 | axis.X = (axis.X > 0) ? 1f : 0f; | ||
2655 | axis.Y = (axis.Y > 0) ? 1f : 0f; | ||
2656 | axis.Z = (axis.Z > 0) ? 1f : 0f; | ||
2657 | m_log.DebugFormat("[axislock]: <{0},{1},{2}>", axis.X, axis.Y, axis.Z); | ||
2658 | m_taintAngularLock = axis; | ||
2659 | } | ||
2660 | else | ||
2661 | { | ||
2662 | m_log.Warn("[PHYSICS]: Got NaN locking axis from Scene on Object"); | ||
2663 | } | ||
2664 | } | ||
2665 | |||
2666 | public void UpdatePositionAndVelocity() | ||
2667 | { | ||
2668 | // no lock; called from Simulate() -- if you call this from elsewhere, gotta lock or do Monitor.Enter/Exit! | ||
2669 | if (_parent == null) | ||
2670 | { | ||
2671 | Vector3 pv = Vector3.Zero; | ||
2672 | bool lastZeroFlag = _zeroFlag; | ||
2673 | if (Body != (IntPtr)0) // FIXME -> or if it is a joint | ||
2674 | { | ||
2675 | d.Vector3 vec = d.BodyGetPosition(Body); | ||
2676 | d.Quaternion ori = d.BodyGetQuaternion(Body); | ||
2677 | d.Vector3 vel = d.BodyGetLinearVel(Body); | ||
2678 | d.Vector3 rotvel = d.BodyGetAngularVel(Body); | ||
2679 | d.Vector3 torque = d.BodyGetTorque(Body); | ||
2680 | _torque = new Vector3(torque.X, torque.Y, torque.Z); | ||
2681 | Vector3 l_position = Vector3.Zero; | ||
2682 | Quaternion l_orientation = Quaternion.Identity; | ||
2683 | |||
2684 | // kluge to keep things in bounds. ODE lets dead avatars drift away (they should be removed!) | ||
2685 | //if (vec.X < 0.0f) { vec.X = 0.0f; if (Body != (IntPtr)0) d.BodySetAngularVel(Body, 0, 0, 0); } | ||
2686 | //if (vec.Y < 0.0f) { vec.Y = 0.0f; if (Body != (IntPtr)0) d.BodySetAngularVel(Body, 0, 0, 0); } | ||
2687 | //if (vec.X > 255.95f) { vec.X = 255.95f; if (Body != (IntPtr)0) d.BodySetAngularVel(Body, 0, 0, 0); } | ||
2688 | //if (vec.Y > 255.95f) { vec.Y = 255.95f; if (Body != (IntPtr)0) d.BodySetAngularVel(Body, 0, 0, 0); } | ||
2689 | |||
2690 | m_lastposition = _position; | ||
2691 | m_lastorientation = _orientation; | ||
2692 | |||
2693 | l_position.X = vec.X; | ||
2694 | l_position.Y = vec.Y; | ||
2695 | l_position.Z = vec.Z; | ||
2696 | l_orientation.X = ori.X; | ||
2697 | l_orientation.Y = ori.Y; | ||
2698 | l_orientation.Z = ori.Z; | ||
2699 | l_orientation.W = ori.W; | ||
2700 | |||
2701 | // if(l_position.Y != m_lastposition.Y){ | ||
2702 | // Console.WriteLine("UP&V {0} {1}", m_primName, l_position); | ||
2703 | // } | ||
2704 | |||
2705 | if (l_position.X > ((int)_parent_scene.WorldExtents.X - 0.05f) || l_position.X < 0f || l_position.Y > ((int)_parent_scene.WorldExtents.Y - 0.05f) || l_position.Y < 0f) | ||
2706 | { | ||
2707 | //base.RaiseOutOfBounds(l_position); | ||
2708 | |||
2709 | if (m_crossingfailures < _parent_scene.geomCrossingFailuresBeforeOutofbounds) | ||
2710 | { | ||
2711 | _position = l_position; | ||
2712 | //_parent_scene.remActivePrim(this); | ||
2713 | if (_parent == null) | ||
2714 | base.RequestPhysicsterseUpdate(); | ||
2715 | return; | ||
2716 | } | ||
2717 | else | ||
2718 | { | ||
2719 | if (_parent == null) | ||
2720 | base.RaiseOutOfBounds(l_position); | ||
2721 | return; | ||
2722 | } | ||
2723 | } | ||
2724 | |||
2725 | if (l_position.Z < 0) | ||
2726 | { | ||
2727 | // This is so prim that get lost underground don't fall forever and suck up | ||
2728 | // | ||
2729 | // Sim resources and memory. | ||
2730 | // Disables the prim's movement physics.... | ||
2731 | // It's a hack and will generate a console message if it fails. | ||
2732 | |||
2733 | //IsPhysical = false; | ||
2734 | if (_parent == null) | ||
2735 | base.RaiseOutOfBounds(_position); | ||
2736 | |||
2737 | _acceleration.X = 0; | ||
2738 | _acceleration.Y = 0; | ||
2739 | _acceleration.Z = 0; | ||
2740 | |||
2741 | _velocity.X = 0; | ||
2742 | _velocity.Y = 0; | ||
2743 | _velocity.Z = 0; | ||
2744 | m_rotationalVelocity.X = 0; | ||
2745 | m_rotationalVelocity.Y = 0; | ||
2746 | m_rotationalVelocity.Z = 0; | ||
2747 | |||
2748 | if (_parent == null) | ||
2749 | base.RequestPhysicsterseUpdate(); | ||
2750 | |||
2751 | m_throttleUpdates = false; | ||
2752 | throttleCounter = 0; | ||
2753 | _zeroFlag = true; | ||
2754 | //outofBounds = true; | ||
2755 | } | ||
2756 | |||
2757 | //float Adiff = 1.0f - Math.Abs(Quaternion.Dot(m_lastorientation, l_orientation)); | ||
2758 | //Console.WriteLine("Adiff " + m_primName + " = " + Adiff); | ||
2759 | if ((Math.Abs(m_lastposition.X - l_position.X) < 0.02) | ||
2760 | && (Math.Abs(m_lastposition.Y - l_position.Y) < 0.02) | ||
2761 | && (Math.Abs(m_lastposition.Z - l_position.Z) < 0.02) | ||
2762 | // && (1.0 - Math.Abs(Quaternion.Dot(m_lastorientation, l_orientation)) < 0.01)) | ||
2763 | && (1.0 - Math.Abs(Quaternion.Dot(m_lastorientation, l_orientation)) < 0.0001)) // KF 0.01 is far to large | ||
2764 | { | ||
2765 | _zeroFlag = true; | ||
2766 | //Console.WriteLine("ZFT 2"); | ||
2767 | m_throttleUpdates = false; | ||
2768 | } | ||
2769 | else | ||
2770 | { | ||
2771 | //m_log.Debug(Math.Abs(m_lastposition.X - l_position.X).ToString()); | ||
2772 | _zeroFlag = false; | ||
2773 | m_lastUpdateSent = false; | ||
2774 | //m_throttleUpdates = false; | ||
2775 | } | ||
2776 | |||
2777 | if (_zeroFlag) | ||
2778 | { | ||
2779 | _velocity.X = 0.0f; | ||
2780 | _velocity.Y = 0.0f; | ||
2781 | _velocity.Z = 0.0f; | ||
2782 | |||
2783 | _acceleration.X = 0; | ||
2784 | _acceleration.Y = 0; | ||
2785 | _acceleration.Z = 0; | ||
2786 | |||
2787 | //_orientation.w = 0f; | ||
2788 | //_orientation.X = 0f; | ||
2789 | //_orientation.Y = 0f; | ||
2790 | //_orientation.Z = 0f; | ||
2791 | m_rotationalVelocity.X = 0; | ||
2792 | m_rotationalVelocity.Y = 0; | ||
2793 | m_rotationalVelocity.Z = 0; | ||
2794 | if (!m_lastUpdateSent) | ||
2795 | { | ||
2796 | m_throttleUpdates = false; | ||
2797 | throttleCounter = 0; | ||
2798 | m_rotationalVelocity = pv; | ||
2799 | |||
2800 | if (_parent == null) | ||
2801 | { | ||
2802 | base.RequestPhysicsterseUpdate(); | ||
2803 | } | ||
2804 | |||
2805 | m_lastUpdateSent = true; | ||
2806 | } | ||
2807 | } | ||
2808 | else | ||
2809 | { | ||
2810 | if (lastZeroFlag != _zeroFlag) | ||
2811 | { | ||
2812 | if (_parent == null) | ||
2813 | { | ||
2814 | base.RequestPhysicsterseUpdate(); | ||
2815 | } | ||
2816 | } | ||
2817 | |||
2818 | m_lastVelocity = _velocity; | ||
2819 | |||
2820 | _position = l_position; | ||
2821 | |||
2822 | _velocity.X = vel.X; | ||
2823 | _velocity.Y = vel.Y; | ||
2824 | _velocity.Z = vel.Z; | ||
2825 | |||
2826 | _acceleration = ((_velocity - m_lastVelocity) / 0.1f); | ||
2827 | _acceleration = new Vector3(_velocity.X - m_lastVelocity.X / 0.1f, _velocity.Y - m_lastVelocity.Y / 0.1f, _velocity.Z - m_lastVelocity.Z / 0.1f); | ||
2828 | //m_log.Info("[PHYSICS]: V1: " + _velocity + " V2: " + m_lastVelocity + " Acceleration: " + _acceleration.ToString()); | ||
2829 | |||
2830 | if (_velocity.ApproxEquals(pv, 0.5f)) | ||
2831 | { | ||
2832 | m_rotationalVelocity = pv; | ||
2833 | } | ||
2834 | else | ||
2835 | { | ||
2836 | m_rotationalVelocity = new Vector3(rotvel.X, rotvel.Y, rotvel.Z); | ||
2837 | } | ||
2838 | |||
2839 | //m_log.Debug("ODE: " + m_rotationalVelocity.ToString()); | ||
2840 | _orientation.X = ori.X; | ||
2841 | _orientation.Y = ori.Y; | ||
2842 | _orientation.Z = ori.Z; | ||
2843 | _orientation.W = ori.W; | ||
2844 | m_lastUpdateSent = false; | ||
2845 | if (!m_throttleUpdates || throttleCounter > _parent_scene.geomUpdatesPerThrottledUpdate) | ||
2846 | { | ||
2847 | if (_parent == null) | ||
2848 | { | ||
2849 | base.RequestPhysicsterseUpdate(); | ||
2850 | } | ||
2851 | } | ||
2852 | else | ||
2853 | { | ||
2854 | throttleCounter++; | ||
2855 | } | ||
2856 | } | ||
2857 | m_lastposition = l_position; | ||
2858 | } | ||
2859 | else | ||
2860 | { | ||
2861 | // Not a body.. so Make sure the client isn't interpolating | ||
2862 | _velocity.X = 0; | ||
2863 | _velocity.Y = 0; | ||
2864 | _velocity.Z = 0; | ||
2865 | |||
2866 | _acceleration.X = 0; | ||
2867 | _acceleration.Y = 0; | ||
2868 | _acceleration.Z = 0; | ||
2869 | |||
2870 | m_rotationalVelocity.X = 0; | ||
2871 | m_rotationalVelocity.Y = 0; | ||
2872 | m_rotationalVelocity.Z = 0; | ||
2873 | _zeroFlag = true; | ||
2874 | } | ||
2875 | } | ||
2876 | } | ||
2877 | |||
2878 | public override bool FloatOnWater | ||
2879 | { | ||
2880 | set { | ||
2881 | m_taintCollidesWater = value; | ||
2882 | _parent_scene.AddPhysicsActorTaint(this); | ||
2883 | } | ||
2884 | } | ||
2885 | |||
2886 | public override void SetMomentum(Vector3 momentum) | ||
2887 | { | ||
2888 | } | ||
2889 | |||
2890 | public override Vector3 PIDTarget | ||
2891 | { | ||
2892 | set | ||
2893 | { | ||
2894 | if (value.IsFinite()) | ||
2895 | { | ||
2896 | m_PIDTarget = value; | ||
2897 | } | ||
2898 | else | ||
2899 | m_log.Warn("[PHYSICS]: Got NaN PIDTarget from Scene on Object"); | ||
2900 | } | ||
2901 | } | ||
2902 | public override bool PIDActive { set { m_usePID = value; } } | ||
2903 | public override float PIDTau { set { m_PIDTau = value; } } | ||
2904 | |||
2905 | // For RotLookAt | ||
2906 | public override Quaternion APIDTarget { set { m_APIDTarget = value; } } | ||
2907 | public override bool APIDActive { set { m_useAPID = value; } } | ||
2908 | public override float APIDStrength { set { m_APIDStrength = value; } } | ||
2909 | public override float APIDDamping { set { m_APIDDamping = value; } } | ||
2910 | |||
2911 | public override float PIDHoverHeight { set { m_PIDHoverHeight = value; ; } } | ||
2912 | public override bool PIDHoverActive { set { m_useHoverPID = value; } } | ||
2913 | public override PIDHoverType PIDHoverType { set { m_PIDHoverType = value; } } | ||
2914 | public override float PIDHoverTau { set { m_PIDHoverTau = value; } } | ||
2915 | |||
2916 | private void createAMotor(Vector3 axis) | ||
2917 | { | ||
2918 | if (Body == IntPtr.Zero) | ||
2919 | return; | ||
2920 | |||
2921 | if (Amotor != IntPtr.Zero) | ||
2922 | { | ||
2923 | d.JointDestroy(Amotor); | ||
2924 | Amotor = IntPtr.Zero; | ||
2925 | } | ||
2926 | |||
2927 | float axisnum = 3; | ||
2928 | |||
2929 | axisnum = (axisnum - (axis.X + axis.Y + axis.Z)); | ||
2930 | |||
2931 | // PhysicsVector totalSize = new PhysicsVector(_size.X, _size.Y, _size.Z); | ||
2932 | |||
2933 | |||
2934 | // Inverse Inertia Matrix, set the X, Y, and/r Z inertia to 0 then invert it again. | ||
2935 | d.Mass objMass; | ||
2936 | d.MassSetZero(out objMass); | ||
2937 | DMassCopy(ref pMass, ref objMass); | ||
2938 | |||
2939 | //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); | ||
2940 | |||
2941 | Matrix4 dMassMat = FromDMass(objMass); | ||
2942 | |||
2943 | Matrix4 mathmat = Inverse(dMassMat); | ||
2944 | |||
2945 | /* | ||
2946 | //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]); | ||
2947 | |||
2948 | mathmat = Inverse(mathmat); | ||
2949 | |||
2950 | |||
2951 | objMass = FromMatrix4(mathmat, ref objMass); | ||
2952 | //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); | ||
2953 | |||
2954 | mathmat = Inverse(mathmat); | ||
2955 | */ | ||
2956 | if (axis.X == 0) | ||
2957 | { | ||
2958 | mathmat.M33 = 50.0000001f; | ||
2959 | //objMass.I.M22 = 0; | ||
2960 | } | ||
2961 | if (axis.Y == 0) | ||
2962 | { | ||
2963 | mathmat.M22 = 50.0000001f; | ||
2964 | //objMass.I.M11 = 0; | ||
2965 | } | ||
2966 | if (axis.Z == 0) | ||
2967 | { | ||
2968 | mathmat.M11 = 50.0000001f; | ||
2969 | //objMass.I.M00 = 0; | ||
2970 | } | ||
2971 | |||
2972 | |||
2973 | |||
2974 | mathmat = Inverse(mathmat); | ||
2975 | objMass = FromMatrix4(mathmat, ref objMass); | ||
2976 | //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); | ||
2977 | |||
2978 | //return; | ||
2979 | if (d.MassCheck(ref objMass)) | ||
2980 | { | ||
2981 | d.BodySetMass(Body, ref objMass); | ||
2982 | } | ||
2983 | else | ||
2984 | { | ||
2985 | //m_log.Debug("[PHYSICS]: Mass invalid, ignoring"); | ||
2986 | } | ||
2987 | |||
2988 | if (axisnum <= 0) | ||
2989 | return; | ||
2990 | // int dAMotorEuler = 1; | ||
2991 | |||
2992 | Amotor = d.JointCreateAMotor(_parent_scene.world, IntPtr.Zero); | ||
2993 | d.JointAttach(Amotor, Body, IntPtr.Zero); | ||
2994 | d.JointSetAMotorMode(Amotor, 0); | ||
2995 | |||
2996 | d.JointSetAMotorNumAxes(Amotor,(int)axisnum); | ||
2997 | int i = 0; | ||
2998 | |||
2999 | if (axis.X == 0) | ||
3000 | { | ||
3001 | d.JointSetAMotorAxis(Amotor, i, 0, 1, 0, 0); | ||
3002 | i++; | ||
3003 | } | ||
3004 | |||
3005 | if (axis.Y == 0) | ||
3006 | { | ||
3007 | d.JointSetAMotorAxis(Amotor, i, 0, 0, 1, 0); | ||
3008 | i++; | ||
3009 | } | ||
3010 | |||
3011 | if (axis.Z == 0) | ||
3012 | { | ||
3013 | d.JointSetAMotorAxis(Amotor, i, 0, 0, 0, 1); | ||
3014 | i++; | ||
3015 | } | ||
3016 | |||
3017 | for (int j = 0; j < (int)axisnum; j++) | ||
3018 | { | ||
3019 | //d.JointSetAMotorAngle(Amotor, j, 0); | ||
3020 | } | ||
3021 | |||
3022 | //d.JointSetAMotorAngle(Amotor, 1, 0); | ||
3023 | //d.JointSetAMotorAngle(Amotor, 2, 0); | ||
3024 | |||
3025 | // These lowstops and high stops are effectively (no wiggle room) | ||
3026 | d.JointSetAMotorParam(Amotor, (int)dParam.LowStop, -0f); | ||
3027 | d.JointSetAMotorParam(Amotor, (int)dParam.LoStop3, -0f); | ||
3028 | d.JointSetAMotorParam(Amotor, (int)dParam.LoStop2, -0f); | ||
3029 | d.JointSetAMotorParam(Amotor, (int)dParam.HiStop, 0f); | ||
3030 | d.JointSetAMotorParam(Amotor, (int)dParam.HiStop3, 0f); | ||
3031 | d.JointSetAMotorParam(Amotor, (int)dParam.HiStop2, 0f); | ||
3032 | //d.JointSetAMotorParam(Amotor, (int) dParam.Vel, 9000f); | ||
3033 | d.JointSetAMotorParam(Amotor, (int)dParam.FudgeFactor, 0f); | ||
3034 | d.JointSetAMotorParam(Amotor, (int)dParam.FMax, Mass * 50f);// | ||
3035 | |||
3036 | } | ||
3037 | |||
3038 | public Matrix4 FromDMass(d.Mass pMass) | ||
3039 | { | ||
3040 | Matrix4 obj; | ||
3041 | obj.M11 = pMass.I.M00; | ||
3042 | obj.M12 = pMass.I.M01; | ||
3043 | obj.M13 = pMass.I.M02; | ||
3044 | obj.M14 = 0; | ||
3045 | obj.M21 = pMass.I.M10; | ||
3046 | obj.M22 = pMass.I.M11; | ||
3047 | obj.M23 = pMass.I.M12; | ||
3048 | obj.M24 = 0; | ||
3049 | obj.M31 = pMass.I.M20; | ||
3050 | obj.M32 = pMass.I.M21; | ||
3051 | obj.M33 = pMass.I.M22; | ||
3052 | obj.M34 = 0; | ||
3053 | obj.M41 = 0; | ||
3054 | obj.M42 = 0; | ||
3055 | obj.M43 = 0; | ||
3056 | obj.M44 = 1; | ||
3057 | return obj; | ||
3058 | } | ||
3059 | |||
3060 | public d.Mass FromMatrix4(Matrix4 pMat, ref d.Mass obj) | ||
3061 | { | ||
3062 | obj.I.M00 = pMat[0, 0]; | ||
3063 | obj.I.M01 = pMat[0, 1]; | ||
3064 | obj.I.M02 = pMat[0, 2]; | ||
3065 | obj.I.M10 = pMat[1, 0]; | ||
3066 | obj.I.M11 = pMat[1, 1]; | ||
3067 | obj.I.M12 = pMat[1, 2]; | ||
3068 | obj.I.M20 = pMat[2, 0]; | ||
3069 | obj.I.M21 = pMat[2, 1]; | ||
3070 | obj.I.M22 = pMat[2, 2]; | ||
3071 | return obj; | ||
3072 | } | ||
3073 | |||
3074 | public override void SubscribeEvents(int ms) | ||
3075 | { | ||
3076 | m_eventsubscription = ms; | ||
3077 | _parent_scene.addCollisionEventReporting(this); | ||
3078 | } | ||
3079 | |||
3080 | public override void UnSubscribeEvents() | ||
3081 | { | ||
3082 | _parent_scene.remCollisionEventReporting(this); | ||
3083 | m_eventsubscription = 0; | ||
3084 | } | ||
3085 | |||
3086 | public void AddCollisionEvent(uint CollidedWith, ContactPoint contact) | ||
3087 | { | ||
3088 | if (CollisionEventsThisFrame == null) | ||
3089 | CollisionEventsThisFrame = new CollisionEventUpdate(); | ||
3090 | CollisionEventsThisFrame.addCollider(CollidedWith, contact); | ||
3091 | } | ||
3092 | |||
3093 | public void SendCollisions() | ||
3094 | { | ||
3095 | if (CollisionEventsThisFrame == null) | ||
3096 | return; | ||
3097 | |||
3098 | base.SendCollisionUpdate(CollisionEventsThisFrame); | ||
3099 | |||
3100 | if (CollisionEventsThisFrame.m_objCollisionList.Count == 0) | ||
3101 | CollisionEventsThisFrame = null; | ||
3102 | else | ||
3103 | CollisionEventsThisFrame = new CollisionEventUpdate(); | ||
3104 | } | ||
3105 | |||
3106 | public override bool SubscribedEvents() | ||
3107 | { | ||
3108 | if (m_eventsubscription > 0) | ||
3109 | return true; | ||
3110 | return false; | ||
3111 | } | ||
3112 | |||
3113 | public static Matrix4 Inverse(Matrix4 pMat) | ||
3114 | { | ||
3115 | if (determinant3x3(pMat) == 0) | ||
3116 | { | ||
3117 | return Matrix4.Identity; // should probably throw an error. singluar matrix inverse not possible | ||
3118 | } | ||
3119 | |||
3120 | |||
3121 | |||
3122 | return (Adjoint(pMat) / determinant3x3(pMat)); | ||
3123 | } | ||
3124 | |||
3125 | public static Matrix4 Adjoint(Matrix4 pMat) | ||
3126 | { | ||
3127 | Matrix4 adjointMatrix = new Matrix4(); | ||
3128 | for (int i=0; i<4; i++) | ||
3129 | { | ||
3130 | for (int j=0; j<4; j++) | ||
3131 | { | ||
3132 | Matrix4SetValue(ref adjointMatrix, i, j, (float)(Math.Pow(-1, i + j) * (determinant3x3(Minor(pMat, i, j))))); | ||
3133 | } | ||
3134 | } | ||
3135 | |||
3136 | adjointMatrix = Transpose(adjointMatrix); | ||
3137 | return adjointMatrix; | ||
3138 | } | ||
3139 | |||
3140 | public static Matrix4 Minor(Matrix4 matrix, int iRow, int iCol) | ||
3141 | { | ||
3142 | Matrix4 minor = new Matrix4(); | ||
3143 | int m = 0, n = 0; | ||
3144 | for (int i = 0; i < 4; i++) | ||
3145 | { | ||
3146 | if (i == iRow) | ||
3147 | continue; | ||
3148 | n = 0; | ||
3149 | for (int j = 0; j < 4; j++) | ||
3150 | { | ||
3151 | if (j == iCol) | ||
3152 | continue; | ||
3153 | Matrix4SetValue(ref minor, m,n, matrix[i, j]); | ||
3154 | n++; | ||
3155 | } | ||
3156 | m++; | ||
3157 | } | ||
3158 | return minor; | ||
3159 | } | ||
3160 | |||
3161 | public static Matrix4 Transpose(Matrix4 pMat) | ||
3162 | { | ||
3163 | Matrix4 transposeMatrix = new Matrix4(); | ||
3164 | for (int i = 0; i < 4; i++) | ||
3165 | for (int j = 0; j < 4; j++) | ||
3166 | Matrix4SetValue(ref transposeMatrix, i, j, pMat[j, i]); | ||
3167 | return transposeMatrix; | ||
3168 | } | ||
3169 | |||
3170 | public static void Matrix4SetValue(ref Matrix4 pMat, int r, int c, float val) | ||
3171 | { | ||
3172 | switch (r) | ||
3173 | { | ||
3174 | case 0: | ||
3175 | switch (c) | ||
3176 | { | ||
3177 | case 0: | ||
3178 | pMat.M11 = val; | ||
3179 | break; | ||
3180 | case 1: | ||
3181 | pMat.M12 = val; | ||
3182 | break; | ||
3183 | case 2: | ||
3184 | pMat.M13 = val; | ||
3185 | break; | ||
3186 | case 3: | ||
3187 | pMat.M14 = val; | ||
3188 | break; | ||
3189 | } | ||
3190 | |||
3191 | break; | ||
3192 | case 1: | ||
3193 | switch (c) | ||
3194 | { | ||
3195 | case 0: | ||
3196 | pMat.M21 = val; | ||
3197 | break; | ||
3198 | case 1: | ||
3199 | pMat.M22 = val; | ||
3200 | break; | ||
3201 | case 2: | ||
3202 | pMat.M23 = val; | ||
3203 | break; | ||
3204 | case 3: | ||
3205 | pMat.M24 = val; | ||
3206 | break; | ||
3207 | } | ||
3208 | |||
3209 | break; | ||
3210 | case 2: | ||
3211 | switch (c) | ||
3212 | { | ||
3213 | case 0: | ||
3214 | pMat.M31 = val; | ||
3215 | break; | ||
3216 | case 1: | ||
3217 | pMat.M32 = val; | ||
3218 | break; | ||
3219 | case 2: | ||
3220 | pMat.M33 = val; | ||
3221 | break; | ||
3222 | case 3: | ||
3223 | pMat.M34 = val; | ||
3224 | break; | ||
3225 | } | ||
3226 | |||
3227 | break; | ||
3228 | case 3: | ||
3229 | switch (c) | ||
3230 | { | ||
3231 | case 0: | ||
3232 | pMat.M41 = val; | ||
3233 | break; | ||
3234 | case 1: | ||
3235 | pMat.M42 = val; | ||
3236 | break; | ||
3237 | case 2: | ||
3238 | pMat.M43 = val; | ||
3239 | break; | ||
3240 | case 3: | ||
3241 | pMat.M44 = val; | ||
3242 | break; | ||
3243 | } | ||
3244 | |||
3245 | break; | ||
3246 | } | ||
3247 | } | ||
3248 | private static float determinant3x3(Matrix4 pMat) | ||
3249 | { | ||
3250 | float det = 0; | ||
3251 | float diag1 = pMat[0, 0]*pMat[1, 1]*pMat[2, 2]; | ||
3252 | float diag2 = pMat[0, 1]*pMat[2, 1]*pMat[2, 0]; | ||
3253 | float diag3 = pMat[0, 2]*pMat[1, 0]*pMat[2, 1]; | ||
3254 | float diag4 = pMat[2, 0]*pMat[1, 1]*pMat[0, 2]; | ||
3255 | float diag5 = pMat[2, 1]*pMat[1, 2]*pMat[0, 0]; | ||
3256 | float diag6 = pMat[2, 2]*pMat[1, 0]*pMat[0, 1]; | ||
3257 | |||
3258 | det = diag1 + diag2 + diag3 - (diag4 + diag5 + diag6); | ||
3259 | return det; | ||
3260 | |||
3261 | } | ||
3262 | |||
3263 | private static void DMassCopy(ref d.Mass src, ref d.Mass dst) | ||
3264 | { | ||
3265 | dst.c.W = src.c.W; | ||
3266 | dst.c.X = src.c.X; | ||
3267 | dst.c.Y = src.c.Y; | ||
3268 | dst.c.Z = src.c.Z; | ||
3269 | dst.mass = src.mass; | ||
3270 | dst.I.M00 = src.I.M00; | ||
3271 | dst.I.M01 = src.I.M01; | ||
3272 | dst.I.M02 = src.I.M02; | ||
3273 | dst.I.M10 = src.I.M10; | ||
3274 | dst.I.M11 = src.I.M11; | ||
3275 | dst.I.M12 = src.I.M12; | ||
3276 | dst.I.M20 = src.I.M20; | ||
3277 | dst.I.M21 = src.I.M21; | ||
3278 | dst.I.M22 = src.I.M22; | ||
3279 | } | ||
3280 | |||
3281 | public override void SetMaterial(int pMaterial) | ||
3282 | { | ||
3283 | m_material = pMaterial; | ||
3284 | } | ||
3285 | |||
3286 | } | ||
3287 | } | ||