IAttachmentsModule.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 OpenSim 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 OpenMetaverse;
  30. using OpenSim.Framework;
  31. using OpenSim.Region.Framework.Scenes;
  32. namespace OpenSim.Region.Framework.Interfaces
  33. {
  34. public interface IAttachmentsModule
  35. {
  36. /// <summary>
  37. /// Copy attachment data from a ScenePresence into the AgentData structure for transmission to another simulator
  38. /// </summary>
  39. /// <param name='sp'></param>
  40. /// <param name='ad'></param>
  41. void CopyAttachments(IScenePresence sp, AgentData ad);
  42. /// <summary>
  43. /// Copy attachment data from an AgentData structure into a ScenePresence.
  44. /// </summary>
  45. /// <param name='ad'></param>
  46. /// <param name='sp'></param>
  47. void CopyAttachments(AgentData ad, IScenePresence sp);
  48. /// <summary>
  49. /// RezAttachments. This should only be called upon login on the first region.
  50. /// Attachment rezzings on crossings and TPs are done in a different way.
  51. /// </summary>
  52. /// <remarks>
  53. /// This is only actually necessary for viewers which do not have a current outfit folder (these viewers make
  54. /// their own attachment calls on login) and agents which have attachments but no viewer (e.g. NPCs).
  55. /// </remarks>
  56. /// <param name="sp"></param>
  57. void RezAttachments(IScenePresence sp);
  58. /// <summary>
  59. /// Derez the attachements for a scene presence that is closing.
  60. /// </summary>
  61. /// <remarks>
  62. /// Attachment changes are saved.
  63. /// </remarks>
  64. /// <param name="sp">The presence closing</param>
  65. /// <param name="saveChanged">Save changed attachments.</param>
  66. /// <param name="saveAllScripted">Save attachments with scripts even if they haven't changed.</para>
  67. void DeRezAttachments(IScenePresence sp);
  68. /// <summary>
  69. /// Delete all the presence's attachments from the scene
  70. /// This is done when a root agent leaves/is demoted to child (for instance, on logout, teleport or region cross).
  71. /// </summary>
  72. /// <param name="sp"></param>
  73. /// <param name="silent"></param>
  74. void DeleteAttachmentsFromScene(IScenePresence sp, bool silent);
  75. /// <summary>
  76. /// Attach an object to an avatar.
  77. /// </summary>
  78. /// <param name="sp"></param>
  79. /// <param name="grp"></param>
  80. /// <param name="AttachmentPt"></param>
  81. /// <param name="silent"></param>
  82. /// <param name="addToInventory">If true then add object to user inventory</param>
  83. /// <param name="append">Append to attachment point rather than replace.</param>
  84. /// <returns>true if the object was successfully attached, false otherwise</returns>
  85. bool AttachObject(IScenePresence sp, SceneObjectGroup grp, uint AttachmentPt, bool silent, bool addToInventory, bool append);
  86. /// <summary>
  87. /// Rez an attachment from user inventory and change inventory status to match.
  88. /// </summary>
  89. /// <param name="sp"></param>
  90. /// <param name="itemID"></param>
  91. /// <param name="AttachmentPt"></param>
  92. /// <returns>The scene object that was attached. Null if the scene object could not be found</returns>
  93. SceneObjectGroup RezSingleAttachmentFromInventory(IScenePresence sp, UUID itemID, uint AttachmentPt);
  94. /// <summary>
  95. /// Rez multiple attachments from a user's inventory
  96. /// </summary>
  97. /// <param name="sp"></param>
  98. /// <param name="rezlist"></param>
  99. void RezMultipleAttachmentsFromInventory(IScenePresence sp,List<KeyValuePair<UUID, uint>> rezlist);
  100. /// <summary>
  101. /// Detach the given item to the ground.
  102. /// </summary>
  103. /// <param name="sp"></param>
  104. /// <param name="objectLocalID"></param>
  105. void DetachSingleAttachmentToGround(IScenePresence sp, uint objectLocalID);
  106. /// <summary>
  107. /// Detach the given item to the ground at the specified coordinates & rotation
  108. /// </summary>
  109. /// <param name="sp"></param>
  110. /// <param name="objectLocalID"></param>
  111. /// <param name="absolutePos"></param>
  112. /// <param name="absoluteRot"></param>
  113. void DetachSingleAttachmentToGround(IScenePresence sp, uint objectLocalID, Vector3 absolutePos, Quaternion absoluteRot);
  114. /// <summary>
  115. /// Detach the given attachment so that it remains in the user's inventory.
  116. /// </summary>
  117. /// <param name="sp">/param>
  118. /// <param name="grp">The attachment to detach.</param>
  119. void DetachSingleAttachmentToInv(IScenePresence sp, SceneObjectGroup grp);
  120. /// <summary>
  121. /// Update the position of an attachment.
  122. /// </summary>
  123. /// <param name="sog"></param>
  124. /// <param name="pos"></param>
  125. void UpdateAttachmentPosition(SceneObjectGroup sog, Vector3 pos);
  126. }
  127. }