IEntityInventory.cs 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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.Collections.Generic;
  28. using System.Collections;
  29. using OpenMetaverse;
  30. using OpenSim.Framework;
  31. namespace OpenSim.Region.Framework.Interfaces
  32. {
  33. /// <summary>
  34. /// Interface to an entity's (SceneObjectPart's) inventory
  35. /// </summary>
  36. ///
  37. /// This is not a finished 1.0 candidate interface
  38. public interface IEntityInventory
  39. {
  40. /// <summary>
  41. /// Force the task inventory of this prim to persist at the next update sweep
  42. /// </summary>
  43. void ForceInventoryPersistence();
  44. /// <summary>
  45. /// Reset UUIDs for all the items in the prim's inventory.
  46. /// </summary>
  47. ///
  48. /// This involves either generating
  49. /// new ones or setting existing UUIDs to the correct parent UUIDs.
  50. ///
  51. /// If this method is called and there are inventory items, then we regard the inventory as having changed.
  52. ///
  53. /// <param name="linkNum">Link number for the part</param>
  54. void ResetInventoryIDs();
  55. /// <summary>
  56. /// Change every item in this inventory to a new owner.
  57. /// </summary>
  58. /// <param name="ownerId"></param>
  59. void ChangeInventoryOwner(UUID ownerId);
  60. /// <summary>
  61. /// Change every item in this inventory to a new group.
  62. /// </summary>
  63. /// <param name="groupID"></param>
  64. void ChangeInventoryGroup(UUID groupID);
  65. /// <summary>
  66. /// Start all the scripts contained in this entity's inventory
  67. /// </summary>
  68. void CreateScriptInstances(int startParam, bool postOnRez, string engine, int stateSource);
  69. ArrayList GetScriptErrors(UUID itemID);
  70. /// <summary>
  71. /// Stop all the scripts in this entity.
  72. /// </summary>
  73. void RemoveScriptInstances();
  74. /// <summary>
  75. /// Start a script which is in this entity's inventory.
  76. /// </summary>
  77. /// <param name="item"></param>
  78. /// <param name="postOnRez"></param>
  79. /// <param name="engine"></param>
  80. /// <param name="stateSource"></param>
  81. void CreateScriptInstance(
  82. TaskInventoryItem item, int startParam, bool postOnRez, string engine, int stateSource);
  83. /// <summary>
  84. /// Start a script which is in this entity's inventory.
  85. /// </summary>
  86. /// <param name="itemId"></param>
  87. /// <param name="startParam"></param>
  88. /// <param name="postOnRez"></param>
  89. /// <param name="engine"></param>
  90. /// <param name="stateSource"></param>
  91. void CreateScriptInstance(UUID itemId, int startParam, bool postOnRez, string engine, int stateSource);
  92. /// <summary>
  93. /// Stop a script which is in this prim's inventory.
  94. /// </summary>
  95. /// <param name="itemId"></param>
  96. void RemoveScriptInstance(UUID itemId);
  97. /// <summary>
  98. /// Add an item to this entity's inventory. If an item with the same name already exists, then an alternative
  99. /// name is chosen.
  100. /// </summary>
  101. /// <param name="item"></param>
  102. void AddInventoryItem(TaskInventoryItem item, bool allowedDrop);
  103. /// <summary>
  104. /// Add an item to this entity's inventory. If an item with the same name already exists, it is replaced.
  105. /// </summary>
  106. /// <param name="item"></param>
  107. void AddInventoryItemExclusive(TaskInventoryItem item, bool allowedDrop);
  108. /// <summary>
  109. /// Restore a whole collection of items to the entity's inventory at once.
  110. /// We assume that the items already have all their fields correctly filled out.
  111. /// The items are not flagged for persistence to the database, since they are being restored
  112. /// from persistence rather than being newly added.
  113. /// </summary>
  114. /// <param name="items"></param>
  115. void RestoreInventoryItems(ICollection<TaskInventoryItem> items);
  116. /// <summary>
  117. /// Returns an existing inventory item. Returns the original, so any changes will be live.
  118. /// </summary>
  119. /// <param name="itemID"></param>
  120. /// <returns>null if the item does not exist</returns>
  121. TaskInventoryItem GetInventoryItem(UUID itemId);
  122. /// <summary>
  123. /// Update an existing inventory item.
  124. /// </summary>
  125. /// <param name="item">The updated item. An item with the same id must already exist
  126. /// in this prim's inventory.</param>
  127. /// <returns>false if the item did not exist, true if the update occurred successfully</returns>
  128. bool UpdateInventoryItem(TaskInventoryItem item);
  129. /// <summary>
  130. /// Remove an item from this entity's inventory
  131. /// </summary>
  132. /// <param name="itemID"></param>
  133. /// <returns>Numeric asset type of the item removed. Returns -1 if the item did not exist
  134. /// in this prim's inventory.</returns>
  135. int RemoveInventoryItem(UUID itemID);
  136. /// <summary>
  137. /// Return the name with which a client can request a xfer of this prim's inventory metadata
  138. /// </summary>
  139. string GetInventoryFileName();
  140. bool GetInventoryFileName(IClientAPI client, uint localID);
  141. /// <summary>
  142. /// Serialize all the metadata for the items in this prim's inventory ready for sending to the client
  143. /// </summary>
  144. /// <param name="xferManager"></param>
  145. void RequestInventoryFile(IClientAPI client, IXfer xferManager);
  146. /// <summary>
  147. /// Backup the inventory to the given data store
  148. /// </summary>
  149. /// <param name="datastore"></param>
  150. void ProcessInventoryBackup(IRegionDataStore datastore);
  151. uint MaskEffectivePermissions();
  152. void ApplyNextOwnerPermissions();
  153. void ApplyGodPermissions(uint perms);
  154. /// <summary>
  155. /// Returns true if this inventory contains any scripts
  156. /// </summary></returns>
  157. bool ContainsScripts();
  158. /// <summary>
  159. /// Get the uuids of all items in this inventory
  160. /// </summary>
  161. /// <returns></returns>
  162. List<UUID> GetInventoryList();
  163. /// <summary>
  164. /// Get the xml representing the saved states of scripts in this inventory.
  165. /// </summary>
  166. /// <returns>
  167. /// A <see cref="Dictionary`2"/>
  168. /// </returns>
  169. Dictionary<UUID, string> GetScriptStates();
  170. }
  171. }