* minor: Just some minor log elaboration to reveal in the logs where a teleport is being directed rather than just its position
parent
8e01f75784
commit
96e15058d5
|
@ -184,6 +184,7 @@ namespace OpenSim.Region.Environment.Modules.Communications.REST
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool SendReleaseAgent(ulong regionHandle, UUID id, string uri)
|
public bool SendReleaseAgent(ulong regionHandle, UUID id, string uri)
|
||||||
{
|
{
|
||||||
// Try local first
|
// Try local first
|
||||||
|
@ -214,6 +215,7 @@ namespace OpenSim.Region.Environment.Modules.Communications.REST
|
||||||
#endregion /* IInterregionComms */
|
#endregion /* IInterregionComms */
|
||||||
|
|
||||||
#region DoWork functions for the above public interface
|
#region DoWork functions for the above public interface
|
||||||
|
|
||||||
//-------------------------------------------------------------------
|
//-------------------------------------------------------------------
|
||||||
// Internal functions for the above public interface
|
// Internal functions for the above public interface
|
||||||
//-------------------------------------------------------------------
|
//-------------------------------------------------------------------
|
||||||
|
@ -385,7 +387,6 @@ namespace OpenSim.Region.Environment.Modules.Communications.REST
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected bool DoReleaseAgentCall(ulong regionHandle, UUID id, string uri)
|
protected bool DoReleaseAgentCall(ulong regionHandle, UUID id, string uri)
|
||||||
|
@ -418,7 +419,6 @@ namespace OpenSim.Region.Environment.Modules.Communications.REST
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected bool DoCloseAgentCall(RegionInfo region, UUID id)
|
protected bool DoCloseAgentCall(RegionInfo region, UUID id)
|
||||||
|
@ -453,10 +453,9 @@ namespace OpenSim.Region.Environment.Modules.Communications.REST
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion /* DoWork */
|
#endregion /* Do Work */
|
||||||
|
|
||||||
#region Incoming calls from remote instances
|
#region Incoming calls from remote instances
|
||||||
|
|
||||||
|
@ -653,9 +652,11 @@ namespace OpenSim.Region.Environment.Modules.Communications.REST
|
||||||
responsedata["int_response_code"] = 200;
|
responsedata["int_response_code"] = 200;
|
||||||
responsedata["str_response_string"] = "OpenSim agent " + id.ToString();
|
responsedata["str_response_string"] = "OpenSim agent " + id.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Misc
|
#region Misc
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Extract the param from an uri.
|
/// Extract the param from an uri.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -680,8 +680,6 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
public virtual void RequestTeleportToLocation(ScenePresence avatar, ulong regionHandle, Vector3 position,
|
public virtual void RequestTeleportToLocation(ScenePresence avatar, ulong regionHandle, Vector3 position,
|
||||||
Vector3 lookAt, uint teleportFlags)
|
Vector3 lookAt, uint teleportFlags)
|
||||||
{
|
{
|
||||||
m_log.DebugFormat("[SCENE COMMUNICATION SERVICE]: RequestTeleportToLocation {0} ", position.ToString());
|
|
||||||
|
|
||||||
if (!avatar.Scene.Permissions.CanTeleport(avatar.UUID))
|
if (!avatar.Scene.Permissions.CanTeleport(avatar.UUID))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -691,6 +689,10 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
|
|
||||||
if (regionHandle == m_regionInfo.RegionHandle)
|
if (regionHandle == m_regionInfo.RegionHandle)
|
||||||
{
|
{
|
||||||
|
m_log.DebugFormat(
|
||||||
|
"[SCENE COMMUNICATION SERVICE]: RequestTeleportToLocation {0} within {1}",
|
||||||
|
position, m_regionInfo.RegionName);
|
||||||
|
|
||||||
// Teleport within the same region
|
// Teleport within the same region
|
||||||
if (position.X < 0 || position.X > Constants.RegionSize || position.Y < 0 || position.Y > Constants.RegionSize || position.Z < 0)
|
if (position.X < 0 || position.X > Constants.RegionSize || position.Y < 0 || position.Y > Constants.RegionSize || position.Z < 0)
|
||||||
{
|
{
|
||||||
|
@ -723,6 +725,10 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
RegionInfo reg = RequestNeighbouringRegionInfo(regionHandle);
|
RegionInfo reg = RequestNeighbouringRegionInfo(regionHandle);
|
||||||
if (reg != null)
|
if (reg != null)
|
||||||
{
|
{
|
||||||
|
m_log.DebugFormat(
|
||||||
|
"[SCENE COMMUNICATION SERVICE]: RequestTeleportToLocation to {0} {1}",
|
||||||
|
position, reg.RegionName);
|
||||||
|
|
||||||
if (eq == null)
|
if (eq == null)
|
||||||
avatar.ControllingClient.SendTeleportLocationStart();
|
avatar.ControllingClient.SendTeleportLocationStart();
|
||||||
|
|
||||||
|
@ -870,6 +876,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
avatar.ControllingClient.SendTeleportFailed("Problems connecting to destination.");
|
avatar.ControllingClient.SendTeleportFailed("Problems connecting to destination.");
|
||||||
|
|
||||||
ResetFromTransit(avatar.UUID);
|
ResetFromTransit(avatar.UUID);
|
||||||
|
|
||||||
// Yikes! We should just have a ref to scene here.
|
// Yikes! We should just have a ref to scene here.
|
||||||
avatar.Scene.InformClientOfNeighbours(avatar);
|
avatar.Scene.InformClientOfNeighbours(avatar);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue