aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/ContentManagementSystem/MetaEntity.cs
blob: c2030542d5453f22e06aa2daad365507904ed65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#region Header

// MetaEntity.cs
// User: bongiojp
//
// TODO:
//    Create a physics manager to the meta object if there isn't one or the object knows of no scene but the user wants physics enabled.

#endregion Header

using System;
using System.Collections.Generic;
using System.Drawing;

using libsecondlife;

using Nini.Config;

using OpenSim.Framework;
using OpenSim.Region.Environment.Interfaces;
using OpenSim.Region.Environment.Scenes;
using OpenSim.Region.Physics.Manager;

using log4net;

using Axiom.Math;

namespace OpenSim.Region.Environment.Modules.ContentManagement
{
    public class MetaEntity
    {
        #region Constants

        public const float INVISIBLE = .95f;

        // Settings for transparency of metaentity
        public const float NONE = 0f;
        public const float TRANSLUCENT = .5f;

        #endregion Constants

        #region Static Fields

        protected static readonly ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

        #endregion Static Fields

        #region Fields

        protected SceneObjectGroup m_Entity = null; // The scene object group that represents this meta entity.
        protected uint m_metaLocalid;

        #endregion Fields

        #region Constructors

        public MetaEntity()
        {
        }

        /// <summary>
        /// Makes a new meta entity by copying the given scene object group. 
        /// The physics boolean is just a stub right now.
        /// </summary>
        public MetaEntity(SceneObjectGroup orig, bool physics)
        {
            m_Entity = orig.Copy(orig.RootPart.OwnerID, orig.RootPart.GroupID, false);
            Initialize(physics);
        }

        /// <summary>
        /// Takes an XML description of a scene object group and converts it to a meta entity.
        /// </summary>
        public MetaEntity(string objectXML, Scene scene, bool physics)
        {
            m_Entity = new SceneObjectGroup(objectXML);
            m_Entity.SetScene(scene);
            Initialize(physics);
        }

        #endregion Constructors

        #region Public Properties

        public Dictionary<LLUUID, SceneObjectPart> Children
        {
            get { return m_Entity.Children; }
            set { m_Entity.Children = value; }
        }

        public uint LocalId
        {
            get { return m_Entity.LocalId; }
            set { m_Entity.LocalId = value; }
        }

        public SceneObjectGroup ObjectGroup
        {
            get { return m_Entity; }
        }

        public int PrimCount
        {
            get { return m_Entity.PrimCount; }
        }

        public SceneObjectPart RootPart
        {
            get { return m_Entity.RootPart; }
            set { m_Entity.RootPart = value; }
        }

        public Scene Scene
        {
            get { return m_Entity.Scene; }
        }

        public LLUUID UUID
        {
            get { return m_Entity.UUID; }
            set { m_Entity.UUID = value; }
        }

        #endregion Public Properties

        #region Protected Methods

        // The metaentity objectgroup must have unique localids as well as unique uuids.
        // localids are used by the client to refer to parts.
        // uuids are sent to the client and back to the server to identify parts on the server side.
        /// <summary>
        /// Changes localids and uuids of m_Entity.
        /// </summary>
        protected void Initialize(bool physics)
        {
            //make new uuids
            Dictionary<LLUUID, SceneObjectPart> parts = new Dictionary<LLUUID, SceneObjectPart>();
            foreach(SceneObjectPart part in m_Entity.Children.Values)
            {
            	part.ResetIDs(part.LinkNum);
            	parts.Add(part.UUID, part);
            }

            // make new localids
            foreach (SceneObjectPart part in m_Entity.Children.Values)
            	part.LocalId = m_Entity.Scene.PrimIDAllocate();

            //finalize
            m_Entity.UpdateParentIDs();
            m_Entity.RootPart.PhysActor = null;	
            m_Entity.Children = parts;
        }

        #endregion Protected Methods

        #region Public Methods

        /// <summary>
        /// Hides the metaentity from a single client.
        /// </summary>
        public virtual void Hide(IClientAPI client)
        {
            //This deletes the group without removing from any databases.
            //This is important because we are not IN any database.
            //m_Entity.FakeDeleteGroup();
            foreach( SceneObjectPart part in m_Entity.Children.Values)
            	client.SendKillObject(m_Entity.RegionHandle, part.LocalId);
        }

        /// <summary>
        /// Sends a kill object message to all clients, effectively "hiding" the metaentity even though it's still on the server.
        /// </summary>
        public virtual void HideFromAll()
        {
            foreach( SceneObjectPart part in m_Entity.Children.Values)
            	m_Entity.Scene.ClientManager.ForEachClient(delegate(IClientAPI controller)
            	                                           { controller.SendKillObject(m_Entity.RegionHandle, part.LocalId); }
            	);
        }

        public void SendFullUpdate(IClientAPI client)
        {
            // Not sure what clientFlags should be but 0 seems to work
            SendFullUpdate(client, 0);
        }

        public void SendFullUpdate(IClientAPI client, uint clientFlags)
        {
            m_Entity.SendFullUpdateToClient(client, clientFlags);
        }

        public void SendFullUpdateToAll()
        {
            uint clientFlags = 0;
            m_Entity.Scene.ClientManager.ForEachClient(delegate(IClientAPI controller)
                                                       { m_Entity.SendFullUpdateToClient(controller, clientFlags); }
            );
        }

        /// <summary>
        /// Makes a single SceneObjectPart see through.
        /// </summary>
        /// <param name="part">
        /// A <see cref="SceneObjectPart"/>
        /// The part to make see through
        /// </param>
        /// <param name="transparencyAmount">
        /// A <see cref="System.Single"/>
        /// The degree of transparency to imbue the part with, 0f being solid and .95f being invisible.
        /// </param>
        public static void SetPartTransparency(SceneObjectPart part, float transparencyAmount)
        {
            LLObject.TextureEntry tex = null;
            LLColor texcolor;
            try
            {
            	tex = part.Shape.Textures;
            	texcolor = new LLColor();
            }
            catch(Exception)
            {
            	//m_log.ErrorFormat("[Content Management]: Exception thrown while accessing textures of scene object: " + e);
            	return;
            }

            for (uint i = 0; i < tex.FaceTextures.Length; i++)
            {
            	try {
            		if (tex.FaceTextures[i] != null)
            		{
            			texcolor = tex.FaceTextures[i].RGBA;
            			texcolor.A = transparencyAmount;
            			tex.FaceTextures[i].RGBA = texcolor;
            		}
            	}
            	catch (Exception)
            	{
            		//m_log.ErrorFormat("[Content Management]: Exception thrown while accessing different face textures of object: " + e);
            		continue;
            	}
            }
            try {
            	texcolor = tex.DefaultTexture.RGBA;
            	texcolor.A = transparencyAmount;
            	tex.DefaultTexture.RGBA = texcolor;
            	part.Shape.TextureEntry = tex.ToBytes();
            }
            catch (Exception)
            {
            	//m_log.Info("[Content Management]: Exception thrown while accessing default face texture of object: " + e);
            }
        }

        #endregion Public Methods
    }
}