ISimulationDataService.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 OpenMetaverse;
  30. using OpenSim.Framework;
  31. using OpenSim.Region.Framework.Scenes;
  32. namespace OpenSim.Region.Framework.Interfaces
  33. {
  34. public interface ISimulationDataService
  35. {
  36. /// <summary>
  37. /// Stores all object's details apart from inventory
  38. /// </summary>
  39. /// <param name="obj"></param>
  40. /// <param name="regionUUID"></param>
  41. void StoreObject(SceneObjectGroup obj, UUID regionUUID);
  42. /// <summary>
  43. /// Entirely removes the object, including inventory
  44. /// </summary>
  45. /// <param name="uuid"></param>
  46. /// <param name="regionUUID"></param>
  47. /// <returns></returns>
  48. void RemoveObject(UUID uuid, UUID regionUUID);
  49. /// <summary>
  50. /// Store a prim's inventory
  51. /// </summary>
  52. /// <returns></returns>
  53. void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items);
  54. /// <summary>
  55. /// Load persisted objects from region storage.
  56. /// </summary>
  57. /// <param name="regionUUID">the Region UUID</param>
  58. /// <returns>List of loaded groups</returns>
  59. List<SceneObjectGroup> LoadObjects(UUID regionUUID);
  60. /// <summary>
  61. /// Store terrain in region storage
  62. /// </summary>
  63. /// <param name="ter">HeightField data</param>
  64. /// <param name="regionID">region UUID</param>
  65. void StoreTerrain(TerrainData terrain, UUID regionID);
  66. /// <summary>
  67. /// Store baked terrain in region storage
  68. /// </summary>
  69. /// <param name="ter">HeightField data</param>
  70. /// <param name="regionID">region UUID</param>
  71. void StoreBakedTerrain(TerrainData terrain, UUID regionID);
  72. // Legacy version kept for downward compabibility
  73. void StoreTerrain(double[,] terrain, UUID regionID);
  74. /// <summary>
  75. /// Load the latest terrain revision from region storage
  76. /// </summary>
  77. /// <param name="regionID">the region UUID</param>
  78. /// <param name="sizeX">the X dimension of the region being filled</param>
  79. /// <param name="sizeY">the Y dimension of the region being filled</param>
  80. /// <param name="sizeZ">the Z dimension of the region being filled</param>
  81. /// <returns>Heightfield data</returns>
  82. TerrainData LoadTerrain(UUID regionID, int pSizeX, int pSizeY, int pSizeZ);
  83. TerrainData LoadBakedTerrain(UUID regionID, int pSizeX, int pSizeY, int pSizeZ);
  84. // Legacy version kept for downward compabibility
  85. double[,] LoadTerrain(UUID regionID);
  86. void StoreLandObject(ILandObject Parcel);
  87. /// <summary>
  88. /// <list type="bullet">
  89. /// <item>delete from land where UUID=globalID</item>
  90. /// <item>delete from landaccesslist where LandUUID=globalID</item>
  91. /// </list>
  92. /// </summary>
  93. /// <param name="globalID"></param>
  94. void RemoveLandObject(UUID globalID);
  95. List<LandData> LoadLandObjects(UUID regionUUID);
  96. void StoreRegionSettings(RegionSettings rs);
  97. RegionSettings LoadRegionSettings(UUID regionUUID);
  98. RegionLightShareData LoadRegionWindlightSettings(UUID regionUUID);
  99. void StoreRegionWindlightSettings(RegionLightShareData wl);
  100. void RemoveRegionWindlightSettings(UUID regionID);
  101. /// <summary>
  102. /// Load Environment settings from region storage
  103. /// </summary>
  104. /// <param name="regionUUID">the region UUID</param>
  105. /// <returns>LLSD string for viewer</returns>
  106. string LoadRegionEnvironmentSettings(UUID regionUUID);
  107. /// <summary>
  108. /// Store Environment settings into region storage
  109. /// </summary>
  110. /// <param name="regionUUID">the region UUID</param>
  111. /// <param name="settings">LLSD string from viewer</param>
  112. void StoreRegionEnvironmentSettings(UUID regionUUID, string settings);
  113. /// <summary>
  114. /// Delete Environment settings from region storage
  115. /// </summary>
  116. /// <param name="regionUUID">the region UUID</param>
  117. void RemoveRegionEnvironmentSettings(UUID regionUUID);
  118. UUID[] GetObjectIDs(UUID regionID);
  119. void SaveExtra(UUID regionID, string name, string value);
  120. void RemoveExtra(UUID regionID, string name);
  121. Dictionary<string, string> GetExtra(UUID regionID);
  122. }
  123. }