aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/OdeScene.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-18 21:21:15 +0100
committerJustin Clark-Casey (justincc)2011-10-18 21:21:15 +0100
commit581885da75c57250201b34e2d585d32c8f07089a (patch)
treee517add9c6b44ee18803423c0ac8078548a0989d /OpenSim/Region/Physics/OdePlugin/OdeScene.cs
parentStore scene identifier passed in to OdeScene for later debug messages (diff)
downloadopensim-SC_OLD-581885da75c57250201b34e2d585d32c8f07089a.zip
opensim-SC_OLD-581885da75c57250201b34e2d585d32c8f07089a.tar.gz
opensim-SC_OLD-581885da75c57250201b34e2d585d32c8f07089a.tar.bz2
opensim-SC_OLD-581885da75c57250201b34e2d585d32c8f07089a.tar.xz
Temporarily put in log lines to record time taken to set terrain in OdeScene.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/OdeScene.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdeScene.cs b/OpenSim/Region/Physics/OdePlugin/OdeScene.cs
index 8cce349..32d6481 100644
--- a/OpenSim/Region/Physics/OdePlugin/OdeScene.cs
+++ b/OpenSim/Region/Physics/OdePlugin/OdeScene.cs
@@ -3444,6 +3444,9 @@ Console.WriteLine("AddPhysicsActorTaint to " + taintedprim.Name);
3444 3444
3445 private void SetTerrain(float[] heightMap, Vector3 pOffset) 3445 private void SetTerrain(float[] heightMap, Vector3 pOffset)
3446 { 3446 {
3447 int startTime = Util.EnvironmentTickCount();
3448 m_log.DebugFormat("[PHYSICS]: Setting terrain for {0}", Name);
3449
3447 // this._heightmap[i] = (double)heightMap[i]; 3450 // this._heightmap[i] = (double)heightMap[i];
3448 // dbm (danx0r) -- creating a buffer zone of one extra sample all around 3451 // dbm (danx0r) -- creating a buffer zone of one extra sample all around
3449 //_origheightmap = heightMap; 3452 //_origheightmap = heightMap;
@@ -3565,6 +3568,9 @@ Console.WriteLine("AddPhysicsActorTaint to " + taintedprim.Name);
3565 RegionTerrain.Add(pOffset, GroundGeom, GroundGeom); 3568 RegionTerrain.Add(pOffset, GroundGeom, GroundGeom);
3566 TerrainHeightFieldHeights.Add(GroundGeom,_heightmap); 3569 TerrainHeightFieldHeights.Add(GroundGeom,_heightmap);
3567 } 3570 }
3571
3572 m_log.DebugFormat(
3573 "[PHYSICS]: Setting terrain for {0} took {1}ms", Name, Util.EnvironmentTickCountSubtract(startTime));
3568 } 3574 }
3569 3575
3570 public override void DeleteTerrain() 3576 public override void DeleteTerrain()