Change the map tile system to be multi-grid hosting compatible

Conflicts:

	OpenSim/Server/Handlers/Map/MapRemoveServerConnector.cs
This commit is contained in:
Melanie Thielker
2014-08-23 17:33:14 +02:00
parent 0eaabef1dc
commit 1a7efc2c64
7 changed files with 297 additions and 27 deletions

View File

@@ -34,8 +34,8 @@ namespace OpenSim.Services.Interfaces
public interface IMapImageService
{
//List<MapBlockData> GetMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY);
bool AddMapTile(int x, int y, byte[] imageData, out string reason);
bool RemoveMapTile(int x, int y, out string reason);
byte[] GetMapTile(string fileName, out string format);
bool AddMapTile(int x, int y, byte[] imageData, UUID scopeID, out string reason);
bool RemoveMapTile(int x, int y, UUID scopeID, out string reason);
byte[] GetMapTile(string fileName, UUID scopeID, out string format);
}
}