ISimulationService.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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="destination"></param>
  51. /// <param name="aCircuit"></param>
  52. /// <param name="flags"></param>
  53. /// <param name="reason">Reason message in the event of a failure.</param>
  54. bool CreateAgent(GridRegion destination, AgentCircuitData aCircuit, uint flags, out string reason);
  55. /// <summary>
  56. /// Full child agent update.
  57. /// </summary>
  58. /// <param name="regionHandle"></param>
  59. /// <param name="data"></param>
  60. /// <returns></returns>
  61. bool UpdateAgent(GridRegion destination, AgentData data);
  62. /// <summary>
  63. /// Short child agent update, mostly for position.
  64. /// </summary>
  65. /// <param name="regionHandle"></param>
  66. /// <param name="data"></param>
  67. /// <returns></returns>
  68. bool UpdateAgent(GridRegion destination, AgentPosition data);
  69. bool QueryAccess(GridRegion destination, UUID id, Vector3 position, out string version, out string reason);
  70. /// <summary>
  71. /// Message from receiving region to departing region, telling it got contacted by the client.
  72. /// When sent over REST, it invokes the opaque uri.
  73. /// </summary>
  74. /// <param name="regionHandle"></param>
  75. /// <param name="id"></param>
  76. /// <param name="uri"></param>
  77. /// <returns></returns>
  78. bool ReleaseAgent(UUID originRegion, UUID id, string uri);
  79. /// <summary>
  80. /// Close agent.
  81. /// </summary>
  82. /// <param name="regionHandle"></param>
  83. /// <param name="id"></param>
  84. /// <returns></returns>
  85. bool CloseAgent(GridRegion destination, UUID id, string auth_token);
  86. #endregion Agents
  87. #region Objects
  88. /// <summary>
  89. /// Create an object in the destination region. This message is used primarily for prim crossing.
  90. /// </summary>
  91. /// <param name="regionHandle"></param>
  92. /// <param name="sog"></param>
  93. /// <param name="isLocalCall"></param>
  94. /// <returns></returns>
  95. bool CreateObject(GridRegion destination, Vector3 newPosition, ISceneObject sog, bool isLocalCall);
  96. #endregion Objects
  97. }
  98. }