merge
parent
c4c7427ffb
commit
33b8fe52d6
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -87,7 +87,7 @@ namespace OpenSim
|
|||
|
||||
}
|
||||
|
||||
protected virtual void SetupLocalWorld()
|
||||
protected virtual void SetupWorld()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue