More cleaning up when deleting regions from a instance. NOTE: IGridServices.DeregisterRegion() method needs implementing for grid mode.
parent
76a67f45c6
commit
483377adae
|
@ -33,6 +33,7 @@ namespace OpenSim.Framework.Communications
|
||||||
public interface IGridServices
|
public interface IGridServices
|
||||||
{
|
{
|
||||||
RegionCommsListener RegisterRegion(RegionInfo regionInfos);
|
RegionCommsListener RegisterRegion(RegionInfo regionInfos);
|
||||||
|
bool DeregisterRegion(RegionInfo regionInfo);
|
||||||
List<SimpleRegionInfo> RequestNeighbours(uint x, uint y);
|
List<SimpleRegionInfo> RequestNeighbours(uint x, uint y);
|
||||||
RegionInfo RequestNeighbourInfo(ulong regionHandle);
|
RegionInfo RequestNeighbourInfo(ulong regionHandle);
|
||||||
List<MapBlockData> RequestNeighbourMapBlocks(int minX, int minY, int maxX, int maxY);
|
List<MapBlockData> RequestNeighbourMapBlocks(int minX, int minY, int maxX, int maxY);
|
||||||
|
|
|
@ -773,7 +773,7 @@ namespace OpenSim
|
||||||
case "regions":
|
case "regions":
|
||||||
m_sceneManager.ForEachScene(delegate(Scene scene)
|
m_sceneManager.ForEachScene(delegate(Scene scene)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Region Name: " + scene.RegionInfo.RegionName + " , Region XLoc: " + scene.RegionInfo.RegionLocX + " , Region YLoc: " + scene.RegionInfo.RegionLocY);
|
m_log.Error("Region Name: " + scene.RegionInfo.RegionName + " , Region XLoc: " + scene.RegionInfo.RegionLocX + " , Region YLoc: " + scene.RegionInfo.RegionLocY);
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,7 @@ namespace OpenSim.Region.Communications.Local
|
||||||
public RegionCommsListener RegisterRegion(RegionInfo regionInfo)
|
public RegionCommsListener RegisterRegion(RegionInfo regionInfo)
|
||||||
{
|
{
|
||||||
//Console.WriteLine("CommsManager - Region " + regionInfo.RegionHandle + " , " + regionInfo.RegionLocX + " , "+ regionInfo.RegionLocY +" is registering");
|
//Console.WriteLine("CommsManager - Region " + regionInfo.RegionHandle + " , " + regionInfo.RegionLocX + " , "+ regionInfo.RegionLocY +" is registering");
|
||||||
if (!m_regions.ContainsKey((uint) regionInfo.RegionHandle))
|
if (!m_regions.ContainsKey( regionInfo.RegionHandle))
|
||||||
{
|
{
|
||||||
//Console.WriteLine("CommsManager - Adding Region " + regionInfo.RegionHandle );
|
//Console.WriteLine("CommsManager - Adding Region " + regionInfo.RegionHandle );
|
||||||
m_regions.Add(regionInfo.RegionHandle, regionInfo);
|
m_regions.Add(regionInfo.RegionHandle, regionInfo);
|
||||||
|
@ -69,6 +69,20 @@ namespace OpenSim.Region.Communications.Local
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool DeregisterRegion(RegionInfo regionInfo)
|
||||||
|
{
|
||||||
|
if (m_regions.ContainsKey(regionInfo.RegionHandle))
|
||||||
|
{
|
||||||
|
m_regions.Remove(regionInfo.RegionHandle);
|
||||||
|
if (m_regionListeners.ContainsKey(regionInfo.RegionHandle))
|
||||||
|
{
|
||||||
|
m_regionListeners.Remove(regionInfo.RegionHandle);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="regionInfo"></param>
|
/// <param name="regionInfo"></param>
|
||||||
|
@ -132,7 +146,6 @@ namespace OpenSim.Region.Communications.Local
|
||||||
map.Y = (ushort) regInfo.RegionLocY;
|
map.Y = (ushort) regInfo.RegionLocY;
|
||||||
map.WaterHeight = (byte) regInfo.EstateSettings.waterHeight;
|
map.WaterHeight = (byte) regInfo.EstateSettings.waterHeight;
|
||||||
map.MapImageId = regInfo.EstateSettings.terrainImageID;
|
map.MapImageId = regInfo.EstateSettings.terrainImageID;
|
||||||
//new LLUUID("00000000-0000-0000-9999-000000000007");
|
|
||||||
map.Agents = 1;
|
map.Agents = 1;
|
||||||
map.RegionFlags = 72458694;
|
map.RegionFlags = 72458694;
|
||||||
map.Access = 13;
|
map.Access = 13;
|
||||||
|
|
|
@ -112,6 +112,11 @@ namespace OpenSim.Region.Communications.OGS1
|
||||||
return m_localBackend.RegisterRegion(regionInfo);
|
return m_localBackend.RegisterRegion(regionInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool DeregisterRegion(RegionInfo regionInfo)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -36,6 +36,10 @@ using OpenSim.Region.Environment.Scenes;
|
||||||
|
|
||||||
namespace OpenSim.Region.Environment.Modules
|
namespace OpenSim.Region.Environment.Modules
|
||||||
{
|
{
|
||||||
|
//this is first attempt to start breaking the mess thats called the assetcache up.
|
||||||
|
// basically this should be the texture sending (to clients) code moved out of assetcache
|
||||||
|
//and some small clean up
|
||||||
|
// but on first tests it didn't seem to work very well so is currently not in use.
|
||||||
public class TextureDownloadModule : IRegionModule
|
public class TextureDownloadModule : IRegionModule
|
||||||
{
|
{
|
||||||
private Scene m_scene;
|
private Scene m_scene;
|
||||||
|
|
|
@ -43,7 +43,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
regionCommsHost.OnExpectUser -= NewUserConnection;
|
regionCommsHost.OnExpectUser -= NewUserConnection;
|
||||||
regionCommsHost.OnAvatarCrossingIntoRegion -= AgentCrossing;
|
regionCommsHost.OnAvatarCrossingIntoRegion -= AgentCrossing;
|
||||||
regionCommsHost.OnCloseAgentConnection -= CloseConnection;
|
regionCommsHost.OnCloseAgentConnection -= CloseConnection;
|
||||||
//regionCommsHost.RemoveRegion(m_regionInfo); //TODO add to method to commsManager
|
m_commsProvider.GridService.DeregisterRegion(m_regionInfo);
|
||||||
regionCommsHost = null;
|
regionCommsHost = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -674,6 +674,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
SendAnimPack(Animations.AnimsLLUUID["SIT"], 1);
|
SendAnimPack(Animations.AnimsLLUUID["SIT"], 1);
|
||||||
SendFullUpdateToAllClients();
|
SendFullUpdateToAllClients();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void HandleSetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun)
|
public void HandleSetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun)
|
||||||
{
|
{
|
||||||
m_setAlwaysRun = SetAlwaysRun;
|
m_setAlwaysRun = SetAlwaysRun;
|
||||||
|
@ -683,6 +684,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void UpdateMovementAnimations(bool update_movementflag)
|
protected void UpdateMovementAnimations(bool update_movementflag)
|
||||||
{
|
{
|
||||||
if (update_movementflag)
|
if (update_movementflag)
|
||||||
|
|
|
@ -709,22 +709,9 @@ namespace OpenSim.DataStore.MonoSqlite
|
||||||
row["ProfileEnd"] = s.ProfileEnd;
|
row["ProfileEnd"] = s.ProfileEnd;
|
||||||
row["ProfileCurve"] = s.ProfileCurve;
|
row["ProfileCurve"] = s.ProfileCurve;
|
||||||
row["ProfileHollow"] = s.ProfileHollow;
|
row["ProfileHollow"] = s.ProfileHollow;
|
||||||
// text TODO: this isn't right] = but I'm not sure the right
|
|
||||||
// way to specify this as a blob atm
|
|
||||||
|
|
||||||
// And I couldn't work out how to save binary data either
|
|
||||||
// seems that the texture colum is being treated as a string in the Datarow
|
|
||||||
// if you do a .getType() on it, it returns string, while the other columns return correct type
|
|
||||||
// MW[10-08-07]
|
|
||||||
// Added following xml hack but not really ideal , also ExtraParams isn't currently part of the database
|
|
||||||
// am a bit worried about adding it now as some people will have old format databases, so for now including that data in this xml data
|
|
||||||
// MW[17-08-07]
|
|
||||||
row["Texture"] = s.TextureEntry;
|
row["Texture"] = s.TextureEntry;
|
||||||
row["ExtraParams"] = s.ExtraParams;
|
row["ExtraParams"] = s.ExtraParams;
|
||||||
// TextureBlock textureBlock = new TextureBlock(s.TextureEntry);
|
|
||||||
// textureBlock.ExtraParams = s.ExtraParams;
|
|
||||||
// System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
|
|
||||||
// row["Texture"] = encoding.GetBytes(textureBlock.ToXMLString());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void addPrim(SceneObjectPart prim, LLUUID sceneGroupID, LLUUID regionUUID)
|
private void addPrim(SceneObjectPart prim, LLUUID sceneGroupID, LLUUID regionUUID)
|
||||||
|
|
Loading…
Reference in New Issue