aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Estate/EstateTerrainXferHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Estate/EstateTerrainXferHandler.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Estate/EstateTerrainXferHandler.cs127
1 files changed, 127 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Estate/EstateTerrainXferHandler.cs b/OpenSim/Region/CoreModules/World/Estate/EstateTerrainXferHandler.cs
new file mode 100644
index 0000000..94a4072
--- /dev/null
+++ b/OpenSim/Region/CoreModules/World/Estate/EstateTerrainXferHandler.cs
@@ -0,0 +1,127 @@
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
28using System;
29using System.IO;
30using System.Reflection;
31using log4net;
32using OpenMetaverse;
33using OpenSim.Framework;
34using OpenSim.Framework.Communications.Cache;
35using OpenSim.Region.Framework.Scenes;
36
37
38namespace OpenSim.Region.CoreModules.World.Estate
39{
40
41 public class EstateTerrainXferHandler
42 {
43 //private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
44
45 private AssetBase m_asset;
46
47 public delegate void TerrainUploadComplete(string name, byte[] filedata, IClientAPI remoteClient);
48
49 public event TerrainUploadComplete TerrainUploadDone;
50
51 //private string m_description = String.Empty;
52 //private string m_name = String.Empty;
53 //private UUID TransactionID = UUID.Zero;
54 private sbyte type = 0;
55
56 public ulong mXferID;
57 private TerrainUploadComplete handlerTerrainUploadDone;
58
59 public EstateTerrainXferHandler(IClientAPI pRemoteClient, string pClientFilename)
60 {
61
62 m_asset = new AssetBase();
63 m_asset.Metadata.FullID = UUID.Zero;
64 m_asset.Metadata.Type = type;
65 m_asset.Data = new byte[0];
66 m_asset.Metadata.Name = pClientFilename;
67 m_asset.Metadata.Description = "empty";
68 m_asset.Metadata.Local = true;
69 m_asset.Metadata.Temporary = true;
70
71 }
72
73 public ulong XferID
74 {
75 get { return mXferID; }
76 }
77
78 public void RequestStartXfer(IClientAPI pRemoteClient)
79 {
80 mXferID = Util.GetNextXferID();
81 pRemoteClient.SendXferRequest(mXferID, m_asset.Metadata.Type, m_asset.Metadata.FullID, 0, Utils.StringToBytes(m_asset.Metadata.Name));
82 }
83
84 /// <summary>
85 /// Process transfer data received from the client.
86 /// </summary>
87 /// <param name="xferID"></param>
88 /// <param name="packetID"></param>
89 /// <param name="data"></param>
90 public void XferReceive(IClientAPI remoteClient, ulong xferID, uint packetID, byte[] data)
91 {
92 if (mXferID == xferID)
93 {
94 if (m_asset.Data.Length > 1)
95 {
96 byte[] destinationArray = new byte[m_asset.Data.Length + data.Length];
97 Array.Copy(m_asset.Data, 0, destinationArray, 0, m_asset.Data.Length);
98 Array.Copy(data, 0, destinationArray, m_asset.Data.Length, data.Length);
99 m_asset.Data = destinationArray;
100 }
101 else
102 {
103 byte[] buffer2 = new byte[data.Length - 4];
104 Array.Copy(data, 4, buffer2, 0, data.Length - 4);
105 m_asset.Data = buffer2;
106 }
107
108 remoteClient.SendConfirmXfer(xferID, packetID);
109
110 if ((packetID & 0x80000000) != 0)
111 {
112 SendCompleteMessage(remoteClient);
113
114 }
115 }
116 }
117
118 public void SendCompleteMessage(IClientAPI remoteClient)
119 {
120 handlerTerrainUploadDone = TerrainUploadDone;
121 if (handlerTerrainUploadDone != null)
122 {
123 handlerTerrainUploadDone(m_asset.Metadata.Name, m_asset.Data, remoteClient);
124 }
125 }
126 }
127}