From ef0e5e913e2c22f8e2cba96d54436443b573c1ed Mon Sep 17 00:00:00 2001 From: MW Date: Sun, 17 Jun 2007 14:10:19 +0000 Subject: Very Preliminary local teleporting added (currently only can teleport within the current region). Now need to add teleporting between regions and use of the dynamic texture for the terrain. --- Common/OpenGrid.Framework.Communications/CommunicationsManager.cs | 2 +- Common/OpenGrid.Framework.Communications/IGridServices.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'Common/OpenGrid.Framework.Communications') diff --git a/Common/OpenGrid.Framework.Communications/CommunicationsManager.cs b/Common/OpenGrid.Framework.Communications/CommunicationsManager.cs index 10fe251..2ed4fd2 100644 --- a/Common/OpenGrid.Framework.Communications/CommunicationsManager.cs +++ b/Common/OpenGrid.Framework.Communications/CommunicationsManager.cs @@ -41,7 +41,7 @@ namespace OpenGrid.Framework.Communications { public IUserServices UserServer; public IGridServices GridServer; - public IInterRegionCommunications InterSims; + public IInterRegionCommunications InterRegion; public CommunicationsManager() { diff --git a/Common/OpenGrid.Framework.Communications/IGridServices.cs b/Common/OpenGrid.Framework.Communications/IGridServices.cs index 9466647..b4bc3b6 100644 --- a/Common/OpenGrid.Framework.Communications/IGridServices.cs +++ b/Common/OpenGrid.Framework.Communications/IGridServices.cs @@ -36,8 +36,9 @@ namespace OpenGrid.Framework.Communications { public interface IGridServices { - RegionCommsHostBase RegisterRegion(RegionInfo regionInfo); + RegionCommsListener RegisterRegion(RegionInfo regionInfo); List RequestNeighbours(RegionInfo regionInfo); RegionInfo RequestNeighbourInfo(ulong regionHandle); + List RequestNeighbourMapBlocks(int minX, int minY, int maxX, int maxY); } } -- cgit v1.1