diff options
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.
Diffstat (limited to 'Common/OpenGrid.Framework.Communications')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/CommunicationsManager.cs | 2 | ||||
-rw-r--r-- | Common/OpenGrid.Framework.Communications/IGridServices.cs | 3 |
2 files changed, 3 insertions, 2 deletions
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 | |||
41 | { | 41 | { |
42 | public IUserServices UserServer; | 42 | public IUserServices UserServer; |
43 | public IGridServices GridServer; | 43 | public IGridServices GridServer; |
44 | public IInterRegionCommunications InterSims; | 44 | public IInterRegionCommunications InterRegion; |
45 | 45 | ||
46 | public CommunicationsManager() | 46 | public CommunicationsManager() |
47 | { | 47 | { |
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 | |||
36 | { | 36 | { |
37 | public interface IGridServices | 37 | public interface IGridServices |
38 | { | 38 | { |
39 | RegionCommsHostBase RegisterRegion(RegionInfo regionInfo); | 39 | RegionCommsListener RegisterRegion(RegionInfo regionInfo); |
40 | List<RegionInfo> RequestNeighbours(RegionInfo regionInfo); | 40 | List<RegionInfo> RequestNeighbours(RegionInfo regionInfo); |
41 | RegionInfo RequestNeighbourInfo(ulong regionHandle); | 41 | RegionInfo RequestNeighbourInfo(ulong regionHandle); |
42 | List<MapBlockData> RequestNeighbourMapBlocks(int minX, int minY, int maxX, int maxY); | ||
42 | } | 43 | } |
43 | } | 44 | } |