MW 2007-05-31 12:05:32 +00:00
parent c4c7427ffb
commit 33b8fe52d6
4 changed files with 30 additions and 5 deletions

View File

@ -15,6 +15,15 @@ namespace OpenGrid.Framework.Communications
}
/// <summary>
///
/// </summary>
/// <returns></returns>
public virtual RegionInfo LoadRegionConfigFromGridServer()
{
return null;
}
/// <summary>
///
/// </summary>
@ -25,7 +34,20 @@ namespace OpenGrid.Framework.Communications
return null;
}
public virtual bool InformNeighbourChildAgent()
/// <summary>
///
/// </summary>
/// <returns></returns>
public virtual bool InformNeighbourOfChildAgent()
{
return false;
}
/// <summary>
///
/// </summary>
/// <returns></returns>
public virtual bool AvatarCrossingToRegion()
{
return false;
}

View File

@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Interfaces;
namespace OpenSim.Framework
{
@ -8,6 +9,8 @@ namespace OpenSim.Framework
public interface IRegionCommsHost
{
event ExpectUserDelegate ExpectUser;
event ExpectUserDelegate OnExpectUser;
event GenericCall2 OnExpectChildAgent;
event GenericCall2 OnAvatarCrossingIntoRegion;
}
}

View File

@ -87,7 +87,7 @@ namespace OpenSim
}
protected virtual void SetupLocalWorld()
protected virtual void SetupWorld()
{
}

View File

@ -112,7 +112,7 @@ namespace OpenSim
this.physManager = new OpenSim.Physics.Manager.PhysicsManager();
this.physManager.LoadPlugins();
this.SetupLocalWorld();
this.SetupWorld();
m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Main.cs:Startup() - Initialising HTTP server");
@ -178,7 +178,7 @@ namespace OpenSim
}
}
protected override void SetupLocalWorld()
protected override void SetupWorld()
{
IGenericConfig regionConfig;
World LocalWorld;