diff options
author | MW | 2007-06-10 18:51:45 +0000 |
---|---|---|
committer | MW | 2007-06-10 18:51:45 +0000 |
commit | 453fadd94071545b76706674bb284402c9a065c0 (patch) | |
tree | e971a1970f5926da1a9393b94f9b3e109a8cd14b /OpenSim/OpenSim.Region | |
parent | Added a Couple of summary comments (diff) | |
download | opensim-SC_OLD-453fadd94071545b76706674bb284402c9a065c0.zip opensim-SC_OLD-453fadd94071545b76706674bb284402c9a065c0.tar.gz opensim-SC_OLD-453fadd94071545b76706674bb284402c9a065c0.tar.bz2 opensim-SC_OLD-453fadd94071545b76706674bb284402c9a065c0.tar.xz |
Added SandBoxManager which in sandbox mode, acts as the backend server for the CommsManager interfaces (commsManager.gridServer etc).
Diffstat (limited to 'OpenSim/OpenSim.Region')
-rw-r--r-- | OpenSim/OpenSim.Region/World/Primitive.cs | 3 | ||||
-rw-r--r-- | OpenSim/OpenSim.Region/World/World.cs | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/OpenSim.Region/World/Primitive.cs b/OpenSim/OpenSim.Region/World/Primitive.cs index c800f21..99e349d 100644 --- a/OpenSim/OpenSim.Region/World/Primitive.cs +++ b/OpenSim/OpenSim.Region/World/Primitive.cs | |||
@@ -224,7 +224,6 @@ namespace OpenSim.Region | |||
224 | public void UpdateTexture(byte[] tex) | 224 | public void UpdateTexture(byte[] tex) |
225 | { | 225 | { |
226 | this.primData.Texture = tex; | 226 | this.primData.Texture = tex; |
227 | //this.dirtyFlag = true; | ||
228 | } | 227 | } |
229 | 228 | ||
230 | /// <summary> | 229 | /// <summary> |
@@ -387,8 +386,6 @@ namespace OpenSim.Region | |||
387 | lPos = this.Pos; | 386 | lPos = this.Pos; |
388 | lRot = this.rotation; | 387 | lRot = this.rotation; |
389 | } | 388 | } |
390 | |||
391 | |||
392 | } | 389 | } |
393 | 390 | ||
394 | /// <summary> | 391 | /// <summary> |
diff --git a/OpenSim/OpenSim.Region/World/World.cs b/OpenSim/OpenSim.Region/World/World.cs index 49ba8fa..cf0382a 100644 --- a/OpenSim/OpenSim.Region/World/World.cs +++ b/OpenSim/OpenSim.Region/World/World.cs | |||
@@ -544,7 +544,7 @@ namespace OpenSim.Region | |||
544 | protected void InformClientOfNeighbours(IClientAPI remoteClient) | 544 | protected void InformClientOfNeighbours(IClientAPI remoteClient) |
545 | { | 545 | { |
546 | // Console.WriteLine("informing client of neighbouring regions"); | 546 | // Console.WriteLine("informing client of neighbouring regions"); |
547 | List<RegionInfo> neighbours = this.commsManager.RequestNeighbours(this.m_regInfo); | 547 | List<RegionInfo> neighbours = this.commsManager.gridServer.RequestNeighbours(this.m_regInfo); |
548 | 548 | ||
549 | //Console.WriteLine("we have " + neighbours.Count + " neighbouring regions"); | 549 | //Console.WriteLine("we have " + neighbours.Count + " neighbouring regions"); |
550 | if (neighbours != null) | 550 | if (neighbours != null) |
@@ -617,7 +617,7 @@ namespace OpenSim.Region | |||
617 | /// </summary> | 617 | /// </summary> |
618 | public void RegisterRegionWithComms() | 618 | public void RegisterRegionWithComms() |
619 | { | 619 | { |
620 | this.regionCommsHost = this.commsManager.RegisterRegion(this.m_regInfo); | 620 | this.regionCommsHost = this.commsManager.gridServer.RegisterRegion(this.m_regInfo); |
621 | if (this.regionCommsHost != null) | 621 | if (this.regionCommsHost != null) |
622 | { | 622 | { |
623 | this.regionCommsHost.OnExpectUser += new ExpectUserDelegate(this.NewUserConnection); | 623 | this.regionCommsHost.OnExpectUser += new ExpectUserDelegate(this.NewUserConnection); |