aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/TerrainData.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/TerrainData.cs405
1 files changed, 405 insertions, 0 deletions
diff --git a/OpenSim/Framework/TerrainData.cs b/OpenSim/Framework/TerrainData.cs
new file mode 100644
index 0000000..9c036ca
--- /dev/null
+++ b/OpenSim/Framework/TerrainData.cs
@@ -0,0 +1,405 @@
1/*
2 * Copyright (c) Contributors, http://opensimulator.org/
3 * See CONTRIBUTORS.TXT for a full list of copyright holders.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the OpenSimulator Project nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28using System;
29using System.Collections.Generic;
30using System.IO;
31using System.Reflection;
32
33using OpenMetaverse;
34
35using log4net;
36
37namespace OpenSim.Framework
38{
39 public abstract class TerrainData
40 {
41 // Terrain always is a square
42 public int SizeX { get; protected set; }
43 public int SizeY { get; protected set; }
44 public int SizeZ { get; protected set; }
45
46 // A height used when the user doesn't specify anything
47 public const float DefaultTerrainHeight = 21f;
48
49 public abstract float this[int x, int y] { get; set; }
50 // Someday terrain will have caves
51 public abstract float this[int x, int y, int z] { get; set; }
52
53 public bool IsTainted { get; protected set; }
54 public abstract bool IsTaintedAt(int xx, int yy);
55 public abstract void ClearTaint();
56
57 public abstract void ClearLand();
58 public abstract void ClearLand(float height);
59
60 // Return a representation of this terrain for storing as a blob in the database.
61 // Returns 'true' to say blob was stored in the 'out' locations.
62 public abstract bool GetDatabaseBlob(out int DBFormatRevisionCode, out Array blob);
63
64 // Given a revision code and a blob from the database, create and return the right type of TerrainData.
65 // The sizes passed are the expected size of the region. The database info will be used to
66 // initialize the heightmap of that sized region with as much data is in the blob.
67 // Return created TerrainData or 'null' if unsuccessful.
68 public static TerrainData CreateFromDatabaseBlobFactory(int pSizeX, int pSizeY, int pSizeZ, int pFormatCode, byte[] pBlob)
69 {
70 // For the moment, there is only one implementation class
71 return new HeightmapTerrainData(pSizeX, pSizeY, pSizeZ, pFormatCode, pBlob);
72 }
73
74 // return a special compressed representation of the heightmap in shorts
75 public abstract short[] GetCompressedMap();
76 public abstract float CompressionFactor { get; }
77
78 public abstract double[,] GetDoubles();
79 public abstract TerrainData Clone();
80 }
81
82 // The terrain is stored in the database as a blob with a 'revision' field.
83 // Some implementations of terrain storage would fill the revision field with
84 // the time the terrain was stored. When real revisions were added and this
85 // feature removed, that left some old entries with the time in the revision
86 // field.
87 // Thus, if revision is greater than 'RevisionHigh' then terrain db entry is
88 // left over and it is presumed to be 'Legacy256'.
89 // Numbers are arbitrary and are chosen to to reduce possible mis-interpretation.
90 // If a revision does not match any of these, it is assumed to be Legacy256.
91 public enum DBTerrainRevision
92 {
93 // Terrain is 'double[256,256]'
94 Legacy256 = 11,
95 // Terrain is 'int32, int32, float[,]' where the ints are X and Y dimensions
96 // The dimensions are presumed to be multiples of 16 and, more likely, multiples of 256.
97 Variable2D = 22,
98 // Terrain is 'int32, int32, int32, int16[]' where the ints are X and Y dimensions
99 // and third int is the 'compression factor'. The heights are compressed as
100 // "short compressedHeight = (short)(height * compressionFactor);"
101 // The dimensions are presumed to be multiples of 16 and, more likely, multiples of 256.
102 Compressed2D = 27,
103 // A revision that is not listed above or any revision greater than this value is 'Legacy256'.
104 RevisionHigh = 1234
105 }
106
107 // Version of terrain that is a heightmap.
108 // This should really be 'LLOptimizedHeightmapTerrainData' as it includes knowledge
109 // of 'patches' which are 16x16 terrain areas which can be sent separately to the viewer.
110 // The heighmap is kept as an array of short integers. The integer values are converted to
111 // and from floats by TerrainCompressionFactor. Shorts are used to limit storage used.
112 public class HeightmapTerrainData : TerrainData
113 {
114 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
115 private static string LogHeader = "[TERRAIN DATA]";
116
117 // TerrainData.this[x, y]
118 public override float this[int x, int y]
119 {
120 get { return FromCompressedHeight(m_heightmap[x, y]); }
121 set {
122 short newVal = ToCompressedHeight(value);
123 if (m_heightmap[x, y] != newVal)
124 {
125 m_heightmap[x, y] = newVal;
126 m_taint[x / Constants.TerrainPatchSize, y / Constants.TerrainPatchSize] = true;
127 // m_log.DebugFormat("{0} set[{1},{2}] to {3} ({4})", LogHeader, x, y, value, newVal);
128 }
129 }
130 }
131
132 // TerrainData.this[x, y, z]
133 public override float this[int x, int y, int z]
134 {
135 get { return this[x, y]; }
136 set { this[x, y] = value; }
137 }
138
139 // TerrainData.ClearTaint
140 public override void ClearTaint()
141 {
142 IsTainted = false;
143 for (int ii = 0; ii < m_taint.GetLength(0); ii++)
144 for (int jj = 0; jj < m_taint.GetLength(1); jj++)
145 m_taint[ii, jj] = false;
146 }
147
148 // TerrainData.ClearLand
149 public override void ClearLand()
150 {
151 ClearLand(DefaultTerrainHeight);
152 }
153 // TerrainData.ClearLand(float)
154 public override void ClearLand(float pHeight)
155 {
156 short flatHeight = ToCompressedHeight(pHeight);
157 for (int xx = 0; xx < SizeX; xx++)
158 for (int yy = 0; yy < SizeY; yy++)
159 m_heightmap[xx, yy] = flatHeight;
160 }
161
162 public override bool IsTaintedAt(int xx, int yy)
163 {
164 return m_taint[xx / Constants.TerrainPatchSize, yy / Constants.TerrainPatchSize];
165 }
166
167 // TerrainData.GetDatabaseBlob
168 // The user wants something to store in the database.
169 public override bool GetDatabaseBlob(out int DBRevisionCode, out Array blob)
170 {
171 DBRevisionCode = (int)DBTerrainRevision.Legacy256;
172 blob = ToLegacyTerrainSerialization();
173 return false;
174 }
175
176 // TerrainData.CompressionFactor
177 private float m_compressionFactor = 100.0f;
178 public override float CompressionFactor { get { return m_compressionFactor; } }
179
180 // TerrainData.GetCompressedMap
181 public override short[] GetCompressedMap()
182 {
183 short[] newMap = new short[SizeX * SizeY];
184
185 int ind = 0;
186 for (int xx = 0; xx < SizeX; xx++)
187 for (int yy = 0; yy < SizeY; yy++)
188 newMap[ind++] = m_heightmap[xx, yy];
189
190 return newMap;
191
192 }
193 // TerrainData.Clone
194 public override TerrainData Clone()
195 {
196 HeightmapTerrainData ret = new HeightmapTerrainData(SizeX, SizeY, SizeZ);
197 ret.m_heightmap = (short[,])this.m_heightmap.Clone();
198 return ret;
199 }
200
201 // TerrainData.GetDoubles
202 public override double[,] GetDoubles()
203 {
204 double[,] ret = new double[SizeX, SizeY];
205 for (int xx = 0; xx < SizeX; xx++)
206 for (int yy = 0; yy < SizeY; yy++)
207 ret[xx, yy] = FromCompressedHeight(m_heightmap[xx, yy]);
208
209 return ret;
210 }
211
212
213 // =============================================================
214
215 private short[,] m_heightmap;
216 // Remember subregions of the heightmap that has changed.
217 private bool[,] m_taint;
218
219 // To save space (especially for large regions), keep the height as a short integer
220 // that is coded as the float height times the compression factor (usually '100'
221 // to make for two decimal points).
222 public short ToCompressedHeight(double pHeight)
223 {
224 return (short)(pHeight * CompressionFactor);
225 }
226
227 public float FromCompressedHeight(short pHeight)
228 {
229 return ((float)pHeight) / CompressionFactor;
230 }
231
232 // To keep with the legacy theme, create an instance of this class based on the
233 // way terrain used to be passed around.
234 public HeightmapTerrainData(double[,] pTerrain)
235 {
236 SizeX = pTerrain.GetLength(0);
237 SizeY = pTerrain.GetLength(1);
238 SizeZ = (int)Constants.RegionHeight;
239 m_compressionFactor = 100.0f;
240
241 m_heightmap = new short[SizeX, SizeY];
242 for (int ii = 0; ii < SizeX; ii++)
243 {
244 for (int jj = 0; jj < SizeY; jj++)
245 {
246 m_heightmap[ii, jj] = ToCompressedHeight(pTerrain[ii, jj]);
247
248 }
249 }
250
251 m_taint = new bool[SizeX / Constants.TerrainPatchSize, SizeY / Constants.TerrainPatchSize];
252 ClearTaint();
253 }
254
255 // Create underlying structures but don't initialize the heightmap assuming the caller will immediately do that
256 public HeightmapTerrainData(int pX, int pY, int pZ)
257 {
258 SizeX = pX;
259 SizeY = pY;
260 SizeZ = pZ;
261 m_compressionFactor = 100.0f;
262 m_heightmap = new short[SizeX, SizeY];
263 m_taint = new bool[SizeX / Constants.TerrainPatchSize, SizeY / Constants.TerrainPatchSize];
264 ClearTaint();
265 }
266
267 public HeightmapTerrainData(short[] cmap, float pCompressionFactor, int pX, int pY, int pZ) : this(pX, pY, pZ)
268 {
269 m_compressionFactor = pCompressionFactor;
270 int ind = 0;
271 for (int xx = 0; xx < SizeX; xx++)
272 for (int yy = 0; yy < SizeY; yy++)
273 m_heightmap[xx, yy] = cmap[ind++];
274 }
275
276 // Create a heighmap from a database blob
277 public HeightmapTerrainData(int pSizeX, int pSizeY, int pSizeZ, int pFormatCode, byte[] pBlob) : this(pSizeX, pSizeY, pSizeZ)
278 {
279 switch ((DBTerrainRevision)pFormatCode)
280 {
281 case DBTerrainRevision.Compressed2D:
282 FromCompressedTerrainSerialization(pBlob);
283 m_log.DebugFormat("{0} HeightmapTerrainData create from Compressed2D serialization. Size=<{1},{2}>", LogHeader, SizeX, SizeY);
284 break;
285 default:
286 FromLegacyTerrainSerialization(pBlob);
287 m_log.DebugFormat("{0} HeightmapTerrainData create from legacy serialization. Size=<{1},{2}>", LogHeader, SizeX, SizeY);
288 break;
289 }
290 }
291
292 // Just create an array of doubles. Presumes the caller implicitly knows the size.
293 public Array ToLegacyTerrainSerialization()
294 {
295 Array ret = null;
296
297 using (MemoryStream str = new MemoryStream((int)Constants.RegionSize * (int)Constants.RegionSize * sizeof(double)))
298 {
299 using (BinaryWriter bw = new BinaryWriter(str))
300 {
301 for (int xx = 0; xx < Constants.RegionSize; xx++)
302 {
303 for (int yy = 0; yy < Constants.RegionSize; yy++)
304 {
305 double height = this[xx, yy];
306 if (height == 0.0)
307 height = double.Epsilon;
308 bw.Write(height);
309 }
310 }
311 }
312 ret = str.ToArray();
313 }
314 return ret;
315 }
316
317 // Just create an array of doubles. Presumes the caller implicitly knows the size.
318 public void FromLegacyTerrainSerialization(byte[] pBlob)
319 {
320 // In case database info doesn't match real terrain size, initialize the whole terrain.
321 ClearLand();
322
323 using (MemoryStream mstr = new MemoryStream(pBlob))
324 {
325 using (BinaryReader br = new BinaryReader(mstr))
326 {
327 for (int xx = 0; xx < (int)Constants.RegionSize; xx++)
328 {
329 for (int yy = 0; yy < (int)Constants.RegionSize; yy++)
330 {
331 float val = (float)br.ReadDouble();
332 if (xx < SizeX && yy < SizeY)
333 m_heightmap[xx, yy] = ToCompressedHeight(val);
334 }
335 }
336 }
337 ClearTaint();
338 }
339 }
340
341 // See the reader below.
342 public Array ToCompressedTerrainSerialization()
343 {
344 Array ret = null;
345 using (MemoryStream str = new MemoryStream((3 * sizeof(Int32)) + (SizeX * SizeY * sizeof(Int16))))
346 {
347 using (BinaryWriter bw = new BinaryWriter(str))
348 {
349 bw.Write((Int32)DBTerrainRevision.Compressed2D);
350 bw.Write((Int32)SizeX);
351 bw.Write((Int32)SizeY);
352 bw.Write((Int32)CompressionFactor);
353 for (int yy = 0; yy < SizeY; yy++)
354 for (int xx = 0; xx < SizeX; xx++)
355 {
356 bw.Write((Int16)m_heightmap[xx, yy]);
357 }
358 }
359 ret = str.ToArray();
360 }
361 return ret;
362 }
363
364 // Initialize heightmap from blob consisting of:
365 // int32, int32, int32, int32, int16[]
366 // where the first int32 is format code, next two int32s are the X and y of heightmap data and
367 // the forth int is the compression factor for the following int16s
368 // This is just sets heightmap info. The actual size of the region was set on this instance's
369 // creation and any heights not initialized by theis blob are set to the default height.
370 public void FromCompressedTerrainSerialization(byte[] pBlob)
371 {
372 Int32 hmFormatCode, hmSizeX, hmSizeY, hmCompressionFactor;
373
374 using (MemoryStream mstr = new MemoryStream(pBlob))
375 {
376 using (BinaryReader br = new BinaryReader(mstr))
377 {
378 hmFormatCode = br.ReadInt32();
379 hmSizeX = br.ReadInt32();
380 hmSizeY = br.ReadInt32();
381 hmCompressionFactor = br.ReadInt32();
382
383 m_compressionFactor = hmCompressionFactor;
384
385 // In case database info doesn't match real terrain size, initialize the whole terrain.
386 ClearLand();
387
388 for (int yy = 0; yy < hmSizeY; yy++)
389 {
390 for (int xx = 0; xx < hmSizeX; xx++)
391 {
392 Int16 val = br.ReadInt16();
393 if (xx < SizeX && yy < SizeY)
394 m_heightmap[xx, yy] = ToCompressedHeight(val);
395 }
396 }
397 }
398 ClearTaint();
399
400 m_log.InfoFormat("{0} Read compressed 2d heightmap. Heightmap size=<{1},{2}>. Region size={<{3},{4}>. CompFact={5}", LogHeader,
401 hmSizeX, hmSizeY, SizeX, SizeY, hmCompressionFactor);
402 }
403 }
404 }
405}