From 0311fef2447217fb87111835d82654cdc6c6dd31 Mon Sep 17 00:00:00 2001 From: MW Date: Fri, 6 Apr 2007 19:08:24 +0000 Subject: Now back to compiling, just no terrain generation at the moment --- OpenSim.Physics/Manager/PhysicsScene.cs | 4 ++-- OpenSim.Physics/OdePlugin/OdePlugin.cs | 2 +- OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs | 2 +- OpenSim.RegionServer/OpenSimMain.cs | 2 +- OpenSim.RegionServer/world/World.cs | 10 +++++----- OpenSim.Storage/LocalStorageDb4o/Db4LocalStorage.cs | 9 +++++---- OpenSim.Storage/LocalStorageDb4o/MapStorage.cs | 2 +- 7 files changed, 16 insertions(+), 15 deletions(-) diff --git a/OpenSim.Physics/Manager/PhysicsScene.cs b/OpenSim.Physics/Manager/PhysicsScene.cs index 25e2104..0b3dfd2 100644 --- a/OpenSim.Physics/Manager/PhysicsScene.cs +++ b/OpenSim.Physics/Manager/PhysicsScene.cs @@ -49,7 +49,7 @@ namespace OpenSim.Physics.Manager public abstract void GetResults(); - public abstract void SetTerrain(float[,] heightMap); + public abstract void SetTerrain(float[] heightMap); public abstract void DeleteTerrain(); @@ -87,7 +87,7 @@ namespace OpenSim.Physics.Manager OpenSim.Framework.Console.MainConsole.Instance.WriteLine("NullPhysicsScene : GetResults()"); } - public override void SetTerrain(float[,] heightMap) + public override void SetTerrain(float[] heightMap) { OpenSim.Framework.Console.MainConsole.Instance.WriteLine("NullPhysicsScene : SetTerrain({0} items)", heightMap.Length); } diff --git a/OpenSim.Physics/OdePlugin/OdePlugin.cs b/OpenSim.Physics/OdePlugin/OdePlugin.cs index 7c9c684..325e2fd 100644 --- a/OpenSim.Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim.Physics/OdePlugin/OdePlugin.cs @@ -173,7 +173,7 @@ namespace OpenSim.Physics.OdePlugin } } - public override void SetTerrain(float[,] heightMap) + public override void SetTerrain(float[] heightMap) { for (int i = 0; i < 65536; i++) { diff --git a/OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs b/OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs index 74e7cb8..10e92fe 100644 --- a/OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs +++ b/OpenSim.Physics/PhysXPlugin/PhysXPlugin.cs @@ -173,7 +173,7 @@ namespace OpenSim.Physics.PhysXPlugin } } - public override void SetTerrain(float[,] heightMap) + public override void SetTerrain(float[] heightMap) { if (this._heightMap != null) { diff --git a/OpenSim.RegionServer/OpenSimMain.cs b/OpenSim.RegionServer/OpenSimMain.cs index b159af0..fa5dfc2 100644 --- a/OpenSim.RegionServer/OpenSimMain.cs +++ b/OpenSim.RegionServer/OpenSimMain.cs @@ -156,7 +156,7 @@ namespace OpenSim m_console.WriteLine("Main.cs:Startup() - Starting up messaging system"); LocalWorld.PhysScene = this.physManager.GetPhysicsScene(this.m_physicsEngine); //should be reading from the config file what physics engine to use - LocalWorld.PhysScene.SetTerrain(LocalWorld.Terrain.map); + LocalWorld.PhysScene.SetTerrain(LocalWorld.Terrain.getHeights1D()); //should be passing a IGenericConfig object to these so they can read the config data they want from it GridServers.AssetServer.SetServerInfo(regionData.AssetURL, regionData.AssetSendKey); diff --git a/OpenSim.RegionServer/world/World.cs b/OpenSim.RegionServer/world/World.cs index c23ac2d..73c04d8 100644 --- a/OpenSim.RegionServer/world/World.cs +++ b/OpenSim.RegionServer/world/World.cs @@ -195,7 +195,7 @@ namespace OpenSim.world lock (this.LockPhysicsEngine) { - this.phyScene.SetTerrain(Terrain.map); + this.phyScene.SetTerrain(Terrain.getHeights1D()); } this.localStorage.SaveMap(this.Terrain.map); @@ -215,7 +215,7 @@ namespace OpenSim.world this.Terrain.map = newMap; lock (this.LockPhysicsEngine) { - this.phyScene.SetTerrain(this.Terrain.map); + this.phyScene.SetTerrain(this.Terrain.getHeights1D()); } this.localStorage.SaveMap(this.Terrain.map); @@ -236,7 +236,7 @@ namespace OpenSim.world { lock (this.LockPhysicsEngine) { - this.phyScene.SetTerrain(this.Terrain.map); + this.phyScene.SetTerrain(this.Terrain.getHeights1D()); } this.localStorage.SaveMap(this.Terrain.map); @@ -290,7 +290,7 @@ namespace OpenSim.world patches[2] = x + 2 + y * 16; patches[3] = x + 3 + y * 16; - Packet layerpack = TerrainManager.CreateLandPacket(Terrain.map, patches); + Packet layerpack = TerrainManager.CreateLandPacket(Terrain.getHeights1D(), patches); RemoteClient.OutPacket(layerpack); } } @@ -312,7 +312,7 @@ namespace OpenSim.world //patches[2] = patchx + 2 + patchy * 16; //patches[3] = patchx + 3 + patchy * 16; - Packet layerpack = TerrainManager.CreateLandPacket(Terrain.map, patches); + Packet layerpack = TerrainManager.CreateLandPacket(Terrain.getHeights1D(), patches); RemoteClient.OutPacket(layerpack); } diff --git a/OpenSim.Storage/LocalStorageDb4o/Db4LocalStorage.cs b/OpenSim.Storage/LocalStorageDb4o/Db4LocalStorage.cs index cdab9ba..b5fa79b 100644 --- a/OpenSim.Storage/LocalStorageDb4o/Db4LocalStorage.cs +++ b/OpenSim.Storage/LocalStorageDb4o/Db4LocalStorage.cs @@ -118,11 +118,11 @@ namespace OpenSim.Storage.LocalStorageDb4o } } - public float[] LoadWorld() + public float[,] LoadWorld() { OpenSim.Framework.Console.MainConsole.Instance.WriteLine("LoadWorld() - Loading world...."); //World blank = new World(); - float[] heightmap = null; + float[,] heightmap = null; OpenSim.Framework.Console.MainConsole.Instance.WriteLine("LoadWorld() - Looking for a heightmap in local DB"); IObjectSet world_result = db.Get(typeof(MapStorage)); if (world_result.Count > 0) @@ -137,7 +137,8 @@ namespace OpenSim.Storage.LocalStorageDb4o OpenSim.Framework.Console.MainConsole.Instance.WriteLine("LoadWorld() - No heightmap found, generating new one"); HeightmapGenHills hills = new HeightmapGenHills(); // blank.LandMap = hills.GenerateHeightmap(200, 4.0f, 80.0f, false); - heightmap = hills.GenerateHeightmap(200, 4.0f, 80.0f, false); + // heightmap = hills.GenerateHeightmap(200, 4.0f, 80.0f, false); + heightmap = new float[256, 256]; OpenSim.Framework.Console.MainConsole.Instance.WriteLine("LoadWorld() - Saving heightmap to local database"); MapStorage map = new MapStorage(); map.Map = heightmap; //blank.LandMap; @@ -147,7 +148,7 @@ namespace OpenSim.Storage.LocalStorageDb4o return heightmap; } - public void SaveMap(float[] heightmap) + public void SaveMap(float[,] heightmap) { IObjectSet world_result = db.Get(typeof(MapStorage)); if (world_result.Count > 0) diff --git a/OpenSim.Storage/LocalStorageDb4o/MapStorage.cs b/OpenSim.Storage/LocalStorageDb4o/MapStorage.cs index db590ff..dc5793e 100644 --- a/OpenSim.Storage/LocalStorageDb4o/MapStorage.cs +++ b/OpenSim.Storage/LocalStorageDb4o/MapStorage.cs @@ -6,7 +6,7 @@ namespace OpenSim.Storage.LocalStorageDb4o { public class MapStorage { - public float[] Map; + public float[,] Map; public MapStorage() { -- cgit v1.1