POSPrim.cs 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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 System;
  28. using System.Collections.Generic;
  29. using Nini.Config;
  30. using OpenMetaverse;
  31. using OpenSim.Framework;
  32. using OpenSim.Region.PhysicsModules.SharedBase;
  33. namespace OpenSim.Region.PhysicsModule.POS
  34. {
  35. public class POSPrim : PhysicsActor
  36. {
  37. private Vector3 _position;
  38. private Vector3 _velocity;
  39. private Vector3 _acceleration;
  40. private Vector3 _size;
  41. private Vector3 m_rotationalVelocity = Vector3.Zero;
  42. private Quaternion _orientation;
  43. private bool iscolliding;
  44. public POSPrim()
  45. {
  46. }
  47. public override int PhysicsActorType
  48. {
  49. get { return (int) ActorTypes.Prim; }
  50. set { return; }
  51. }
  52. public override Vector3 RotationalVelocity
  53. {
  54. get { return m_rotationalVelocity; }
  55. set { m_rotationalVelocity = value; }
  56. }
  57. public override bool IsPhysical
  58. {
  59. get { return false; }
  60. set { return; }
  61. }
  62. public override bool ThrottleUpdates
  63. {
  64. get { return false; }
  65. set { return; }
  66. }
  67. public override bool IsColliding
  68. {
  69. get { return iscolliding; }
  70. set { iscolliding = value; }
  71. }
  72. public override bool CollidingGround
  73. {
  74. get { return false; }
  75. set { return; }
  76. }
  77. public override bool CollidingObj
  78. {
  79. get { return false; }
  80. set { return; }
  81. }
  82. public override bool Stopped
  83. {
  84. get { return false; }
  85. }
  86. public override Vector3 Position
  87. {
  88. get { return _position; }
  89. set { _position = value; }
  90. }
  91. public override Vector3 Size
  92. {
  93. get { return _size; }
  94. set { _size = value; }
  95. }
  96. public override float Mass
  97. {
  98. get { return 0f; }
  99. }
  100. public override Vector3 Force
  101. {
  102. get { return Vector3.Zero; }
  103. set { return; }
  104. }
  105. public override int VehicleType
  106. {
  107. get { return 0; }
  108. set { return; }
  109. }
  110. public override void VehicleFloatParam(int param, float value)
  111. {
  112. }
  113. public override void VehicleVectorParam(int param, Vector3 value)
  114. {
  115. }
  116. public override void VehicleRotationParam(int param, Quaternion rotation)
  117. {
  118. }
  119. public override void VehicleFlags(int param, bool remove) { }
  120. public override void SetVolumeDetect(int param)
  121. {
  122. }
  123. public override Vector3 CenterOfMass
  124. {
  125. get { return Vector3.Zero; }
  126. }
  127. public override Vector3 GeometricCenter
  128. {
  129. get { return Vector3.Zero; }
  130. }
  131. public override PrimitiveBaseShape Shape
  132. {
  133. set { return; }
  134. }
  135. public override float Buoyancy
  136. {
  137. get { return 0f; }
  138. set { return; }
  139. }
  140. public override Vector3 Velocity
  141. {
  142. get { return _velocity; }
  143. set { _velocity = value; }
  144. }
  145. public override float CollisionScore
  146. {
  147. get { return 0f; }
  148. set { }
  149. }
  150. public override Quaternion Orientation
  151. {
  152. get { return _orientation; }
  153. set { _orientation = value; }
  154. }
  155. public override Vector3 Acceleration
  156. {
  157. get { return _acceleration; }
  158. set { _acceleration = value; }
  159. }
  160. public override bool Kinematic
  161. {
  162. get { return true; }
  163. set { }
  164. }
  165. public override void AvatarJump(float forceZ) { }
  166. public override void AddForce(Vector3 force, bool pushforce)
  167. {
  168. }
  169. public override void AddAngularForce(Vector3 force, bool pushforce)
  170. {
  171. }
  172. public override Vector3 Torque
  173. {
  174. get { return Vector3.Zero; }
  175. set { return; }
  176. }
  177. public override void SetMomentum(Vector3 momentum)
  178. {
  179. }
  180. public override bool Flying
  181. {
  182. get { return false; }
  183. set { }
  184. }
  185. public override bool SetAlwaysRun
  186. {
  187. get { return false; }
  188. set { return; }
  189. }
  190. public override uint LocalID
  191. {
  192. set { return; }
  193. }
  194. public override bool Grabbed
  195. {
  196. set { return; }
  197. }
  198. public override void link(PhysicsActor obj)
  199. {
  200. }
  201. public override void delink()
  202. {
  203. }
  204. public override void LockAngularMotion(byte axislocks)
  205. {
  206. }
  207. public override bool Selected
  208. {
  209. set { return; }
  210. }
  211. public override void CrossingFailure()
  212. {
  213. }
  214. public override Vector3 PIDTarget
  215. {
  216. set { return; }
  217. }
  218. public override bool PIDActive
  219. {
  220. get { return false; }
  221. set { return; }
  222. }
  223. public override float PIDTau
  224. {
  225. set { return; }
  226. }
  227. public override float PIDHoverHeight
  228. {
  229. set { return; }
  230. }
  231. public override bool PIDHoverActive
  232. {
  233. get { return false; }
  234. set { return; }
  235. }
  236. public override PIDHoverType PIDHoverType
  237. {
  238. set { return; }
  239. }
  240. public override float PIDHoverTau
  241. {
  242. set { return; }
  243. }
  244. public override Quaternion APIDTarget
  245. {
  246. set { return; }
  247. }
  248. public override bool APIDActive
  249. {
  250. set { return; }
  251. }
  252. public override float APIDStrength
  253. {
  254. set { return; }
  255. }
  256. public override float APIDDamping
  257. {
  258. set { return; }
  259. }
  260. public override void SubscribeEvents(int ms)
  261. {
  262. }
  263. public override void UnSubscribeEvents()
  264. {
  265. }
  266. public override bool SubscribedEvents()
  267. {
  268. return false;
  269. }
  270. }
  271. }