LandChannel.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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 OpenMetaverse;
  29. using OpenSim.Framework;
  30. using OpenSim.Region.Framework.Interfaces;
  31. using OpenSim.Region.Framework.Scenes;
  32. namespace OpenSim.Region.CoreModules.World.Land
  33. {
  34. public class LandChannel : ILandChannel
  35. {
  36. #region Constants
  37. //Land types set with flags in ParcelOverlay.
  38. //Only one of these can be used.
  39. public const float BAN_LINE_SAFETY_HIEGHT = 100;
  40. public const byte LAND_FLAG_PROPERTY_BORDER_SOUTH = 128; //Equals 10000000
  41. public const byte LAND_FLAG_PROPERTY_BORDER_WEST = 64; //Equals 01000000
  42. //RequestResults (I think these are right, they seem to work):
  43. public const int LAND_RESULT_MULTIPLE = 1; // The request they made contained more than a single peice of land
  44. public const int LAND_RESULT_SINGLE = 0; // The request they made contained only a single piece of land
  45. //ParcelSelectObjects
  46. public const int LAND_SELECT_OBJECTS_GROUP = 4;
  47. public const int LAND_SELECT_OBJECTS_OTHER = 8;
  48. public const int LAND_SELECT_OBJECTS_OWNER = 2;
  49. public const byte LAND_TYPE_IS_BEING_AUCTIONED = 5; //Equals 00000101
  50. public const byte LAND_TYPE_IS_FOR_SALE = 4; //Equals 00000100
  51. public const byte LAND_TYPE_OWNED_BY_GROUP = 2; //Equals 00000010
  52. public const byte LAND_TYPE_OWNED_BY_OTHER = 1; //Equals 00000001
  53. public const byte LAND_TYPE_OWNED_BY_REQUESTER = 3; //Equals 00000011
  54. public const byte LAND_TYPE_PUBLIC = 0; //Equals 00000000
  55. //These are other constants. Yay!
  56. public const int START_LAND_LOCAL_ID = 1;
  57. #endregion
  58. private readonly Scene m_scene;
  59. private readonly LandManagementModule m_landManagementModule;
  60. public LandChannel(Scene scene, LandManagementModule landManagementMod)
  61. {
  62. m_scene = scene;
  63. m_landManagementModule = landManagementMod;
  64. }
  65. #region ILandChannel Members
  66. public ILandObject GetLandObject(float x_float, float y_float)
  67. {
  68. if (m_landManagementModule != null)
  69. {
  70. return m_landManagementModule.GetLandObject(x_float, y_float);
  71. }
  72. ILandObject obj = new LandObject(UUID.Zero, false, m_scene);
  73. obj.LandData.Name = "NO LAND";
  74. return obj;
  75. }
  76. public ILandObject GetLandObject(int localID)
  77. {
  78. if (m_landManagementModule != null)
  79. {
  80. return m_landManagementModule.GetLandObject(localID);
  81. }
  82. return null;
  83. }
  84. public ILandObject GetLandObject(Vector3 position)
  85. {
  86. return GetLandObject(position.X, position.Y);
  87. }
  88. public ILandObject GetLandObject(int x, int y)
  89. {
  90. if (m_landManagementModule != null)
  91. {
  92. return m_landManagementModule.GetLandObject(x, y);
  93. }
  94. ILandObject obj = new LandObject(UUID.Zero, false, m_scene);
  95. obj.LandData.Name = "NO LAND";
  96. return obj;
  97. }
  98. public List<ILandObject> AllParcels()
  99. {
  100. if (m_landManagementModule != null)
  101. {
  102. return m_landManagementModule.AllParcels();
  103. }
  104. return new List<ILandObject>();
  105. }
  106. public void Clear(bool setupDefaultParcel)
  107. {
  108. if (m_landManagementModule != null)
  109. m_landManagementModule.Clear(setupDefaultParcel);
  110. }
  111. public List<ILandObject> ParcelsNearPoint(Vector3 position)
  112. {
  113. if (m_landManagementModule != null)
  114. {
  115. return m_landManagementModule.ParcelsNearPoint(position);
  116. }
  117. return new List<ILandObject>();
  118. }
  119. public bool IsForcefulBansAllowed()
  120. {
  121. if (m_landManagementModule != null)
  122. {
  123. return m_landManagementModule.AllowedForcefulBans;
  124. }
  125. return false;
  126. }
  127. public void UpdateLandObject(int localID, LandData data)
  128. {
  129. if (m_landManagementModule != null)
  130. {
  131. m_landManagementModule.UpdateLandObject(localID, data);
  132. }
  133. }
  134. public void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id)
  135. {
  136. if (m_landManagementModule != null)
  137. {
  138. m_landManagementModule.Join(start_x, start_y, end_x, end_y, attempting_user_id);
  139. }
  140. }
  141. public void Subdivide(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id)
  142. {
  143. if (m_landManagementModule != null)
  144. {
  145. m_landManagementModule.Subdivide(start_x, start_y, end_x, end_y, attempting_user_id);
  146. }
  147. }
  148. public void ReturnObjectsInParcel(int localID, uint returnType, UUID[] agentIDs, UUID[] taskIDs, IClientAPI remoteClient)
  149. {
  150. if (m_landManagementModule != null)
  151. {
  152. m_landManagementModule.ReturnObjectsInParcel(localID, returnType, agentIDs, taskIDs, remoteClient);
  153. }
  154. }
  155. public void setParcelObjectMaxOverride(overrideParcelMaxPrimCountDelegate overrideDel)
  156. {
  157. if (m_landManagementModule != null)
  158. {
  159. m_landManagementModule.setParcelObjectMaxOverride(overrideDel);
  160. }
  161. }
  162. public void setSimulatorObjectMaxOverride(overrideSimulatorMaxPrimCountDelegate overrideDel)
  163. {
  164. if (m_landManagementModule != null)
  165. {
  166. m_landManagementModule.setSimulatorObjectMaxOverride(overrideDel);
  167. }
  168. }
  169. public void SetParcelOtherCleanTime(IClientAPI remoteClient, int localID, int otherCleanTime)
  170. {
  171. if (m_landManagementModule != null)
  172. {
  173. m_landManagementModule.setParcelOtherCleanTime(remoteClient, localID, otherCleanTime);
  174. }
  175. }
  176. #endregion
  177. }
  178. }