aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMW2008-06-25 20:03:16 +0000
committerMW2008-06-25 20:03:16 +0000
commit35e1a2fdfc32355e7495df858b4ce1105559cc92 (patch)
tree40f3fad332f01728cc9c99d9319331d09759eb44 /OpenSim/Framework/IClientAPI.cs
parentforgotten methods in SceneManager for the terrain serialising. (diff)
downloadopensim-SC_OLD-35e1a2fdfc32355e7495df858b4ce1105559cc92.zip
opensim-SC_OLD-35e1a2fdfc32355e7495df858b4ce1105559cc92.tar.gz
opensim-SC_OLD-35e1a2fdfc32355e7495df858b4ce1105559cc92.tar.bz2
opensim-SC_OLD-35e1a2fdfc32355e7495df858b4ce1105559cc92.tar.xz
first part of Requestmapblocks fixes: Adds uint flags param to the OnRequestMapBlocks event (and handler), as when a client sends a map block request it also sends what layer it wants it for 0,1,2. It will always send two requests, one of them being for layer 2 (the overlay layer) and the other one either 0 or 1 depending on the tab that is selected in the client worldmap window. We should also be sending what layer the reply is for in IClientAPI.SendMapBlock (current always set to 0). That will come in next part (most likely at the weekend).
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 10f8276..9bb326c 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -421,7 +421,7 @@ namespace OpenSim.Framework
421 421
422 public delegate void DelinkObjects(List<uint> primIds); 422 public delegate void DelinkObjects(List<uint> primIds);
423 423
424 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY); 424 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY, uint flag);
425 425
426 public delegate void RequestMapName(IClientAPI remoteClient, string mapName); 426 public delegate void RequestMapName(IClientAPI remoteClient, string mapName);
427 427