aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Terrain.BasicTerrain
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-02-13 16:35:42 +0000
committerJustin Clarke Casey2008-02-13 16:35:42 +0000
commitdf21da6decff40793acb1f7667b7ea111faab7e3 (patch)
tree1a0fce58e139cbb623c69aaf3f457063d3f6fbc6 /OpenSim/Region/Terrain.BasicTerrain
parentAdded some locks on the cache Dictionary in AvatarFactoryModule. (diff)
downloadopensim-SC_OLD-df21da6decff40793acb1f7667b7ea111faab7e3.zip
opensim-SC_OLD-df21da6decff40793acb1f7667b7ea111faab7e3.tar.gz
opensim-SC_OLD-df21da6decff40793acb1f7667b7ea111faab7e3.tar.bz2
opensim-SC_OLD-df21da6decff40793acb1f7667b7ea111faab7e3.tar.xz
* Patch from Dr Schofld's (IBM). In his own words
all TerrainEngine.LoadFromFileX(string filename) methods don't set the dirty bits in heightmap.diff[,] in contrast to the TerrainEngine.LoadFromFileX(string filename, int dimensionX, int dimensionY, int lowerboundX, int lowerboundY) cousins. this has the unpleasant drawback that the Scene.SendTerrainUpdate(bool) will not send layer data to the client. the attached patch fixes all LoadFromFileX(.) methods. Thanks! * Also small build fix for AvatarFactoryModule
Diffstat (limited to 'OpenSim/Region/Terrain.BasicTerrain')
-rw-r--r--OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs b/OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs
index d4f4948..82969d9 100644
--- a/OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs
+++ b/OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs
@@ -817,7 +817,7 @@ namespace OpenSim.Region.Terrain
817 { 817 {
818 for (x = 0; x < h; x++) 818 for (x = 0; x < h; x++)
819 { 819 {
820 heightmap.map[x, y] = bs.ReadDouble(); 820 heightmap.Set(x, y, (double) bs.ReadSingle());
821 } 821 }
822 } 822 }
823 823
@@ -842,7 +842,7 @@ namespace OpenSim.Region.Terrain
842 { 842 {
843 for (x = 0; x < w; x++) 843 for (x = 0; x < w; x++)
844 { 844 {
845 heightmap.map[x, y] = (double) bs.ReadSingle(); 845 heightmap.Set(x, y, (double) bs.ReadSingle());
846 } 846 }
847 } 847 }
848 848
@@ -954,7 +954,7 @@ namespace OpenSim.Region.Terrain
954 { 954 {
955 for (x = 0; x < w; x++) 955 for (x = 0; x < w; x++)
956 { 956 {
957 heightmap.map[x, y] = (double) bs.ReadByte()*((double) bs.ReadByte()/127.0); 957 heightmap.Set(x, y, (double) bs.ReadByte()*((double) bs.ReadByte()/127.0));
958 bs.ReadBytes(11); // Advance the stream to next bytes. 958 bs.ReadBytes(11); // Advance the stream to next bytes.
959 } 959 }
960 } 960 }