1
0

ISimulationService.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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 OpenSim.Framework;
  29. using OpenMetaverse;
  30. using GridRegion = OpenSim.Services.Interfaces.GridRegion;
  31. namespace OpenSim.Services.Interfaces
  32. {
  33. public interface ISimulationService
  34. {
  35. /// <summary>
  36. /// Retrieve the scene with the given region ID.
  37. /// </summary>
  38. /// <param name='regionId'>
  39. /// Region identifier.
  40. /// </param>
  41. /// <returns>
  42. /// The scene.
  43. /// </returns>
  44. IScene GetScene(UUID regionId);
  45. ISimulationService GetInnerService();
  46. #region Agents
  47. /// <summary>
  48. /// Ask the simulator hosting the destination to create an agent on that region.
  49. /// </summary>
  50. /// <param name="source">The region that the user is coming from. Will be null if the user
  51. /// logged-in directly, or arrived from a simulator that doesn't send this parameter.</param>
  52. /// <param name="destination"></param>
  53. /// <param name="aCircuit"></param>
  54. /// <param name="flags"></param>
  55. /// <param name="reason">Reason message in the event of a failure.</param>
  56. bool CreateAgent(GridRegion source, GridRegion destination, AgentCircuitData aCircuit, uint flags, out string reason);
  57. /// <summary>
  58. /// Full child agent update.
  59. /// </summary>
  60. /// <param name="regionHandle"></param>
  61. /// <param name="data"></param>
  62. /// <returns></returns>
  63. bool UpdateAgent(GridRegion destination, AgentData data);
  64. /// <summary>
  65. /// Short child agent update, mostly for position.
  66. /// </summary>
  67. /// <param name="regionHandle"></param>
  68. /// <param name="data"></param>
  69. /// <returns></returns>
  70. bool UpdateAgent(GridRegion destination, AgentPosition data);
  71. /// <summary>
  72. /// Returns whether a propspective user is allowed to visit the region.
  73. /// </summary>
  74. /// <param name="destination">Desired destination</param>
  75. /// <param name="agentID">The visitor's User ID</param>
  76. /// <param name="agentHomeURI">The visitor's Home URI. Will be missing (null) in older OpenSims.</param>
  77. /// <param name="viaTeleport">True: via teleport; False: via cross (walking)</param>
  78. /// <param name="position">Position in the region</param>
  79. /// <param name="sversion">
  80. /// Version that the requesting simulator is runing. If null then no version check is carried out.
  81. /// </param>
  82. /// <param name="version">Version that the target simulator is running</param>
  83. /// <param name="reason">[out] Optional error message</param>
  84. /// <returns>True: ok; False: not allowed</returns>
  85. bool QueryAccess(GridRegion destination, UUID agentID, string agentHomeURI, bool viaTeleport, Vector3 position, string sversion, out string version, out string reason);
  86. /// <summary>
  87. /// Message from receiving region to departing region, telling it got contacted by the client.
  88. /// When sent over REST, it invokes the opaque uri.
  89. /// </summary>
  90. /// <param name="regionHandle"></param>
  91. /// <param name="id"></param>
  92. /// <param name="uri"></param>
  93. /// <returns></returns>
  94. bool ReleaseAgent(UUID originRegion, UUID id, string uri);
  95. /// <summary>
  96. /// Close agent.
  97. /// </summary>
  98. /// <param name="regionHandle"></param>
  99. /// <param name="id"></param>
  100. /// <returns></returns>
  101. bool CloseAgent(GridRegion destination, UUID id, string auth_token);
  102. #endregion Agents
  103. #region Objects
  104. /// <summary>
  105. /// Create an object in the destination region. This message is used primarily for prim crossing.
  106. /// </summary>
  107. /// <param name="regionHandle"></param>
  108. /// <param name="sog"></param>
  109. /// <param name="isLocalCall"></param>
  110. /// <returns></returns>
  111. bool CreateObject(GridRegion destination, Vector3 newPosition, ISceneObject sog, bool isLocalCall);
  112. #endregion Objects
  113. }
  114. }