PhysicsActor.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using log4net;
  28. using System;
  29. using System.Collections.Generic;
  30. using System.Reflection;
  31. using OpenSim.Framework;
  32. using OpenMetaverse;
  33. namespace OpenSim.Region.Physics.Manager
  34. {
  35. public delegate void PositionUpdate(Vector3 position);
  36. public delegate void VelocityUpdate(Vector3 velocity);
  37. public delegate void OrientationUpdate(Quaternion orientation);
  38. public enum ActorTypes : int
  39. {
  40. Unknown = 0,
  41. Agent = 1,
  42. Prim = 2,
  43. Ground = 3
  44. }
  45. public enum PIDHoverType
  46. {
  47. Ground,
  48. GroundAndWater,
  49. Water,
  50. Absolute
  51. }
  52. public struct ContactPoint
  53. {
  54. public Vector3 Position;
  55. public Vector3 SurfaceNormal;
  56. public float PenetrationDepth;
  57. public ContactPoint(Vector3 position, Vector3 surfaceNormal, float penetrationDepth)
  58. {
  59. Position = position;
  60. SurfaceNormal = surfaceNormal;
  61. PenetrationDepth = penetrationDepth;
  62. }
  63. }
  64. /// <summary>
  65. /// Used to pass collision information to OnCollisionUpdate listeners.
  66. /// </summary>
  67. public class CollisionEventUpdate : EventArgs
  68. {
  69. /// <summary>
  70. /// Number of collision events in this update.
  71. /// </summary>
  72. public int Count { get { return m_objCollisionList.Count; } }
  73. public bool CollisionsOnPreviousFrame { get; private set; }
  74. public Dictionary<uint, ContactPoint> m_objCollisionList;
  75. public CollisionEventUpdate(Dictionary<uint, ContactPoint> objCollisionList)
  76. {
  77. m_objCollisionList = objCollisionList;
  78. }
  79. public CollisionEventUpdate()
  80. {
  81. m_objCollisionList = new Dictionary<uint, ContactPoint>();
  82. }
  83. public void AddCollider(uint localID, ContactPoint contact)
  84. {
  85. if (!m_objCollisionList.ContainsKey(localID))
  86. {
  87. m_objCollisionList.Add(localID, contact);
  88. }
  89. else
  90. {
  91. if (m_objCollisionList[localID].PenetrationDepth < contact.PenetrationDepth)
  92. m_objCollisionList[localID] = contact;
  93. }
  94. }
  95. /// <summary>
  96. /// Clear added collision events.
  97. /// </summary>
  98. public void Clear()
  99. {
  100. m_objCollisionList.Clear();
  101. }
  102. }
  103. public abstract class PhysicsActor
  104. {
  105. // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  106. public delegate void RequestTerseUpdate();
  107. public delegate void CollisionUpdate(EventArgs e);
  108. public delegate void OutOfBounds(Vector3 pos);
  109. // disable warning: public events
  110. #pragma warning disable 67
  111. public event PositionUpdate OnPositionUpdate;
  112. public event VelocityUpdate OnVelocityUpdate;
  113. public event OrientationUpdate OnOrientationUpdate;
  114. public event RequestTerseUpdate OnRequestTerseUpdate;
  115. /// <summary>
  116. /// Subscribers to this event must synchronously handle the dictionary of collisions received, since the event
  117. /// object is reused in subsequent physics frames.
  118. /// </summary>
  119. public event CollisionUpdate OnCollisionUpdate;
  120. public event OutOfBounds OnOutOfBounds;
  121. #pragma warning restore 67
  122. public static PhysicsActor Null
  123. {
  124. get { return new NullPhysicsActor(); }
  125. }
  126. public abstract bool Stopped { get; }
  127. public abstract Vector3 Size { get; set; }
  128. public abstract PrimitiveBaseShape Shape { set; }
  129. uint m_baseLocalID;
  130. public virtual uint LocalID
  131. {
  132. set { m_baseLocalID = value; }
  133. get { return m_baseLocalID; }
  134. }
  135. public abstract bool Grabbed { set; }
  136. public abstract bool Selected { set; }
  137. /// <summary>
  138. /// Name of this actor.
  139. /// </summary>
  140. /// <remarks>
  141. /// XXX: Bizarrely, this cannot be "Terrain" or "Water" right now unless it really is simulating terrain or
  142. /// water. This is not a problem due to the formatting of names given by prims and avatars.
  143. /// </remarks>
  144. public string Name { get; protected set; }
  145. /// <summary>
  146. /// This is being used by ODE joint code.
  147. /// </summary>
  148. public string SOPName;
  149. public abstract void CrossingFailure();
  150. public abstract void link(PhysicsActor obj);
  151. public abstract void delink();
  152. public abstract void LockAngularMotion(Vector3 axis);
  153. public virtual void RequestPhysicsterseUpdate()
  154. {
  155. // Make a temporary copy of the event to avoid possibility of
  156. // a race condition if the last subscriber unsubscribes
  157. // immediately after the null check and before the event is raised.
  158. RequestTerseUpdate handler = OnRequestTerseUpdate;
  159. if (handler != null)
  160. {
  161. handler();
  162. }
  163. }
  164. public virtual void RaiseOutOfBounds(Vector3 pos)
  165. {
  166. // Make a temporary copy of the event to avoid possibility of
  167. // a race condition if the last subscriber unsubscribes
  168. // immediately after the null check and before the event is raised.
  169. OutOfBounds handler = OnOutOfBounds;
  170. if (handler != null)
  171. {
  172. handler(pos);
  173. }
  174. }
  175. public virtual void SendCollisionUpdate(EventArgs e)
  176. {
  177. CollisionUpdate handler = OnCollisionUpdate;
  178. // m_log.DebugFormat("[PHYSICS ACTOR]: Sending collision for {0}", LocalID);
  179. if (handler != null)
  180. handler(e);
  181. }
  182. public virtual void SetMaterial (int material)
  183. {
  184. }
  185. /// <summary>
  186. /// Position of this actor.
  187. /// </summary>
  188. /// <remarks>
  189. /// Setting this directly moves the actor to a given position.
  190. /// Getting this retrieves the position calculated by physics scene updates, using factors such as velocity and
  191. /// collisions.
  192. /// </remarks>
  193. public abstract Vector3 Position { get; set; }
  194. public abstract float Mass { get; }
  195. public abstract Vector3 Force { get; set; }
  196. public abstract int VehicleType { get; set; }
  197. public abstract void VehicleFloatParam(int param, float value);
  198. public abstract void VehicleVectorParam(int param, Vector3 value);
  199. public abstract void VehicleRotationParam(int param, Quaternion rotation);
  200. public abstract void VehicleFlags(int param, bool remove);
  201. /// <summary>
  202. /// Allows the detection of collisions with inherently non-physical prims. see llVolumeDetect for more
  203. /// </summary>
  204. public abstract void SetVolumeDetect(int param);
  205. public abstract Vector3 GeometricCenter { get; }
  206. public abstract Vector3 CenterOfMass { get; }
  207. /// <summary>
  208. /// Velocity of this actor.
  209. /// </summary>
  210. /// <remarks>
  211. /// Setting this provides a target velocity for physics scene updates.
  212. /// Getting this returns the velocity calculated by physics scene updates, using factors such as target velocity,
  213. /// time to accelerate and collisions.
  214. /// </remarks>
  215. public virtual Vector3 TargetVelocity
  216. {
  217. get { return Velocity; }
  218. set { Velocity = value; }
  219. }
  220. public abstract Vector3 Velocity { get; set; }
  221. public abstract Vector3 Torque { get; set; }
  222. public abstract float CollisionScore { get; set;}
  223. public abstract Vector3 Acceleration { get; set; }
  224. public abstract Quaternion Orientation { get; set; }
  225. public abstract int PhysicsActorType { get; set; }
  226. public abstract bool IsPhysical { get; set; }
  227. public abstract bool Flying { get; set; }
  228. public abstract bool SetAlwaysRun { get; set; }
  229. public abstract bool ThrottleUpdates { get; set; }
  230. public abstract bool IsColliding { get; set; }
  231. public abstract bool CollidingGround { get; set; }
  232. public abstract bool CollidingObj { get; set; }
  233. public abstract bool FloatOnWater { set; }
  234. public abstract Vector3 RotationalVelocity { get; set; }
  235. public abstract bool Kinematic { get; set; }
  236. public abstract float Buoyancy { get; set; }
  237. // Used for MoveTo
  238. public abstract Vector3 PIDTarget { set; }
  239. public abstract bool PIDActive { set;}
  240. public abstract float PIDTau { set; }
  241. // Used for llSetHoverHeight and maybe vehicle height
  242. // Hover Height will override MoveTo target's Z
  243. public abstract bool PIDHoverActive { set;}
  244. public abstract float PIDHoverHeight { set;}
  245. public abstract PIDHoverType PIDHoverType { set;}
  246. public abstract float PIDHoverTau { set;}
  247. // For RotLookAt
  248. public abstract Quaternion APIDTarget { set;}
  249. public abstract bool APIDActive { set;}
  250. public abstract float APIDStrength { set;}
  251. public abstract float APIDDamping { set;}
  252. public abstract void AddForce(Vector3 force, bool pushforce);
  253. public abstract void AddAngularForce(Vector3 force, bool pushforce);
  254. public abstract void SetMomentum(Vector3 momentum);
  255. public abstract void SubscribeEvents(int ms);
  256. public abstract void UnSubscribeEvents();
  257. public abstract bool SubscribedEvents();
  258. }
  259. public class NullPhysicsActor : PhysicsActor
  260. {
  261. public override bool Stopped
  262. {
  263. get{ return false; }
  264. }
  265. public override Vector3 Position
  266. {
  267. get { return Vector3.Zero; }
  268. set { return; }
  269. }
  270. public override bool SetAlwaysRun
  271. {
  272. get { return false; }
  273. set { return; }
  274. }
  275. public override uint LocalID
  276. {
  277. set { return; }
  278. }
  279. public override bool Grabbed
  280. {
  281. set { return; }
  282. }
  283. public override bool Selected
  284. {
  285. set { return; }
  286. }
  287. public override float Buoyancy
  288. {
  289. get { return 0f; }
  290. set { return; }
  291. }
  292. public override bool FloatOnWater
  293. {
  294. set { return; }
  295. }
  296. public override bool CollidingGround
  297. {
  298. get { return false; }
  299. set { return; }
  300. }
  301. public override bool CollidingObj
  302. {
  303. get { return false; }
  304. set { return; }
  305. }
  306. public override Vector3 Size
  307. {
  308. get { return Vector3.Zero; }
  309. set { return; }
  310. }
  311. public override float Mass
  312. {
  313. get { return 0f; }
  314. }
  315. public override Vector3 Force
  316. {
  317. get { return Vector3.Zero; }
  318. set { return; }
  319. }
  320. public override int VehicleType
  321. {
  322. get { return 0; }
  323. set { return; }
  324. }
  325. public override void VehicleFloatParam(int param, float value)
  326. {
  327. }
  328. public override void VehicleVectorParam(int param, Vector3 value)
  329. {
  330. }
  331. public override void VehicleRotationParam(int param, Quaternion rotation)
  332. {
  333. }
  334. public override void VehicleFlags(int param, bool remove)
  335. {
  336. }
  337. public override void SetVolumeDetect(int param)
  338. {
  339. }
  340. public override void SetMaterial(int material)
  341. {
  342. }
  343. public override Vector3 CenterOfMass
  344. {
  345. get { return Vector3.Zero; }
  346. }
  347. public override Vector3 GeometricCenter
  348. {
  349. get { return Vector3.Zero; }
  350. }
  351. public override PrimitiveBaseShape Shape
  352. {
  353. set { return; }
  354. }
  355. public override Vector3 Velocity
  356. {
  357. get { return Vector3.Zero; }
  358. set { return; }
  359. }
  360. public override Vector3 Torque
  361. {
  362. get { return Vector3.Zero; }
  363. set { return; }
  364. }
  365. public override float CollisionScore
  366. {
  367. get { return 0f; }
  368. set { }
  369. }
  370. public override void CrossingFailure()
  371. {
  372. }
  373. public override Quaternion Orientation
  374. {
  375. get { return Quaternion.Identity; }
  376. set { }
  377. }
  378. public override Vector3 Acceleration
  379. {
  380. get { return Vector3.Zero; }
  381. set { }
  382. }
  383. public override bool IsPhysical
  384. {
  385. get { return false; }
  386. set { return; }
  387. }
  388. public override bool Flying
  389. {
  390. get { return false; }
  391. set { return; }
  392. }
  393. public override bool ThrottleUpdates
  394. {
  395. get { return false; }
  396. set { return; }
  397. }
  398. public override bool IsColliding
  399. {
  400. get { return false; }
  401. set { return; }
  402. }
  403. public override int PhysicsActorType
  404. {
  405. get { return (int) ActorTypes.Unknown; }
  406. set { return; }
  407. }
  408. public override bool Kinematic
  409. {
  410. get { return true; }
  411. set { return; }
  412. }
  413. public override void link(PhysicsActor obj)
  414. {
  415. }
  416. public override void delink()
  417. {
  418. }
  419. public override void LockAngularMotion(Vector3 axis)
  420. {
  421. }
  422. public override void AddForce(Vector3 force, bool pushforce)
  423. {
  424. }
  425. public override void AddAngularForce(Vector3 force, bool pushforce)
  426. {
  427. }
  428. public override Vector3 RotationalVelocity
  429. {
  430. get { return Vector3.Zero; }
  431. set { return; }
  432. }
  433. public override Vector3 PIDTarget { set { return; } }
  434. public override bool PIDActive { set { return; } }
  435. public override float PIDTau { set { return; } }
  436. public override float PIDHoverHeight { set { return; } }
  437. public override bool PIDHoverActive { set { return; } }
  438. public override PIDHoverType PIDHoverType { set { return; } }
  439. public override float PIDHoverTau { set { return; } }
  440. public override Quaternion APIDTarget { set { return; } }
  441. public override bool APIDActive { set { return; } }
  442. public override float APIDStrength { set { return; } }
  443. public override float APIDDamping { set { return; } }
  444. public override void SetMomentum(Vector3 momentum)
  445. {
  446. }
  447. public override void SubscribeEvents(int ms)
  448. {
  449. }
  450. public override void UnSubscribeEvents()
  451. {
  452. }
  453. public override bool SubscribedEvents()
  454. {
  455. return false;
  456. }
  457. }
  458. }