diff options
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/ITerrain.cs')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/ITerrain.cs | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ITerrain.cs b/OpenSim/Region/Framework/Interfaces/ITerrain.cs new file mode 100644 index 0000000..6e9c98d --- /dev/null +++ b/OpenSim/Region/Framework/Interfaces/ITerrain.cs | |||
@@ -0,0 +1,78 @@ | |||
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 OpenSim 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 | |||
28 | using OpenSim.Framework; | ||
29 | |||
30 | namespace OpenSim.Region.Framework.Interfaces | ||
31 | { | ||
32 | public interface ITerrain | ||
33 | { | ||
34 | bool Tainted(); | ||
35 | bool Tainted(int x, int y); | ||
36 | void ResetTaint(); | ||
37 | |||
38 | void ModifyTerrain(float height, float seconds, byte brushsize, byte action, float north, float west, | ||
39 | IClientAPI remoteUser); | ||
40 | |||
41 | void CheckHeightValues(); | ||
42 | float[] GetHeights1D(); | ||
43 | float[,] GetHeights2D(); | ||
44 | double[,] GetHeights2DD(); | ||
45 | void GetHeights1D(float[] heights); | ||
46 | void SetHeights2D(float[,] heights); | ||
47 | void SetHeights2D(double[,] heights); | ||
48 | void SwapRevertMaps(); | ||
49 | void SaveRevertMap(); | ||
50 | bool RunTerrainCmd(string[] args, ref string resultText, string simName); | ||
51 | void SetRange(float min, float max); | ||
52 | void LoadFromFileF64(string filename); | ||
53 | void LoadFromFileF32(string filename); | ||
54 | void LoadFromFileF32(string filename, int dimensionX, int dimensionY, int lowerboundX, int lowerboundY); | ||
55 | void LoadFromFileIMG(string filename, int dimensionX, int dimensionY, int lowerboundX, int lowerboundY); | ||
56 | void LoadFromFileSLRAW(string filename); | ||
57 | void WriteToFileF64(string filename); | ||
58 | void WriteToFileF32(string filename); | ||
59 | void WriteToFileRAW(string filename); | ||
60 | void WriteToFileHiRAW(string filename); | ||
61 | void SetSeed(int val); | ||
62 | void RaiseTerrain(double rx, double ry, double size, double amount); | ||
63 | void LowerTerrain(double rx, double ry, double size, double amount); | ||
64 | void FlattenTerrain(double rx, double ry, double size, double amount); | ||
65 | void NoiseTerrain(double rx, double ry, double size, double amount); | ||
66 | void RevertTerrain(double rx, double ry, double size, double amount); | ||
67 | void SmoothTerrain(double rx, double ry, double size, double amount); | ||
68 | void HillsGenerator(); | ||
69 | double GetHeight(int x, int y); | ||
70 | void ExportImage(string filename, string gradientmap); | ||
71 | byte[] ExportJpegImage(string gradientmap); | ||
72 | } | ||
73 | |||
74 | public interface IMapImageGenerator | ||
75 | { | ||
76 | byte[] WriteJpeg2000Image(string gradientmap); | ||
77 | } | ||
78 | } | ||