AgentUpdateArgs.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 OpenMetaverse;
  29. namespace OpenSim.Framework
  30. {
  31. /// <summary>
  32. /// Client provided parameters for avatar movement
  33. /// </summary>
  34. public class AgentUpdateArgs : EventArgs
  35. {
  36. /// <summary>
  37. /// Rotation of the avatar's body
  38. /// </summary>
  39. public Quaternion BodyRotation;
  40. /// <summary>
  41. /// AT portion of the camera matrix
  42. /// </summary>
  43. public Vector3 CameraAtAxis;
  44. /// <summary>
  45. /// Position of the camera in the Scene
  46. /// </summary>
  47. public Vector3 CameraCenter;
  48. public Vector3 CameraLeftAxis;
  49. public Vector3 CameraUpAxis;
  50. /// <summary>
  51. /// Bitflag field for agent movement. Fly, forward, backward, turn left, turn right, go up, go down, Straffe, etc.
  52. /// </summary>
  53. public uint ControlFlags;
  54. /// <summary>
  55. /// Agent's client Draw distance setting
  56. /// </summary>
  57. public float Far;
  58. public byte Flags;
  59. /// <summary>
  60. /// Rotation of the avatar's head
  61. /// </summary>
  62. public Quaternion HeadRotation;
  63. /// <summary>
  64. /// Session Id
  65. /// </summary>
  66. public byte State;
  67. public Vector3 ClientAgentPosition;
  68. public bool UseClientAgentPosition;
  69. public bool NeedsCameraCollision;
  70. public uint lastpacketSequence;
  71. public double lastUpdateTS;
  72. public AgentUpdateArgs()
  73. {
  74. UseClientAgentPosition = false;
  75. }
  76. }
  77. }