Provide Telehub setting to allow use of landmarks

Setting to allow use of landmarks to override telehub routing. Default is off.
0.7.4.1
BlueWall 2012-05-18 17:47:00 -04:00
parent 0147dc6302
commit c05f87b50c
3 changed files with 14 additions and 1 deletions

View File

@ -577,6 +577,12 @@ namespace OpenSim.Region.Framework.Scenes
{
get { return m_SpawnPointRouting; }
}
// allow landmarks to pass
private bool m_TelehubAllowLandmarks;
public bool TelehubAllowLandmarks
{
get { return m_TelehubAllowLandmarks; }
}
#endregion Properties
@ -733,6 +739,7 @@ namespace OpenSim.Region.Framework.Scenes
m_defaultScriptEngine = startupConfig.GetString("DefaultScriptEngine", "XEngine");
m_SpawnPointRouting = startupConfig.GetString("SpawnPointRouting", "closest");
m_TelehubAllowLandmarks = startupConfig.GetBoolean("TelehubAllowLandmark", false);
IConfig packetConfig = m_config.Configs["PacketPool"];
if (packetConfig != null)

View File

@ -3929,7 +3929,8 @@ namespace OpenSim.Region.Framework.Scenes
{
if ((m_teleportFlags & (TeleportFlags.ViaLogin | TeleportFlags.ViaRegionID)) ==
(TeleportFlags.ViaLogin | TeleportFlags.ViaRegionID) ||
(m_teleportFlags & TeleportFlags.ViaLandmark) != 0 ||
// (m_teleportFlags & TeleportFlags.ViaLandmark) != 0 ||
(m_scene.TelehubAllowLandmarks == true ? false : ((m_teleportFlags & TeleportFlags.ViaLandmark) != 0 )) ||
(m_teleportFlags & TeleportFlags.ViaLocation) != 0 ||
(m_teleportFlags & Constants.TeleportFlags.ViaHGLogin) != 0)
{

View File

@ -249,6 +249,11 @@
;; "sequence" will place the avatar on the next sequential SpawnPoint
; SpawnPointRouting = closest
;# {TelehubAllowLandmark} {} {Allow users with landmarks to override telehub routing} {true false} false
;; TelehubAllowLandmark allows users with landmarks to override telehub routing and land at the landmark coordinates when set to true
;; default is false
; TelehubAllowLandmark = false
[Estates]
; If these values are commented out then the user will be asked for estate details when required (this is the normal case).
; If these values are uncommented then they will be used to create a default estate as necessary.