mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user