diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
20 files changed, 5492 insertions, 1521 deletions
diff --git a/OpenSim/Region/Framework/Scenes/EventManager.cs b/OpenSim/Region/Framework/Scenes/EventManager.cs index b3debb0..2365cfe 100644 --- a/OpenSim/Region/Framework/Scenes/EventManager.cs +++ b/OpenSim/Region/Framework/Scenes/EventManager.cs | |||
@@ -55,8 +55,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
55 | 55 | ||
56 | public delegate void OnTerrainTickDelegate(); | 56 | public delegate void OnTerrainTickDelegate(); |
57 | 57 | ||
58 | public delegate void OnTerrainUpdateDelegate(); | ||
59 | |||
58 | public event OnTerrainTickDelegate OnTerrainTick; | 60 | public event OnTerrainTickDelegate OnTerrainTick; |
59 | 61 | ||
62 | public event OnTerrainUpdateDelegate OnTerrainUpdate; | ||
63 | |||
60 | public delegate void OnBackupDelegate(ISimulationDataService datastore, bool forceBackup); | 64 | public delegate void OnBackupDelegate(ISimulationDataService datastore, bool forceBackup); |
61 | 65 | ||
62 | public event OnBackupDelegate OnBackup; | 66 | public event OnBackupDelegate OnBackup; |
@@ -889,6 +893,26 @@ namespace OpenSim.Region.Framework.Scenes | |||
889 | } | 893 | } |
890 | } | 894 | } |
891 | } | 895 | } |
896 | public void TriggerTerrainUpdate() | ||
897 | { | ||
898 | OnTerrainUpdateDelegate handlerTerrainUpdate = OnTerrainUpdate; | ||
899 | if (handlerTerrainUpdate != null) | ||
900 | { | ||
901 | foreach (OnTerrainUpdateDelegate d in handlerTerrainUpdate.GetInvocationList()) | ||
902 | { | ||
903 | try | ||
904 | { | ||
905 | d(); | ||
906 | } | ||
907 | catch (Exception e) | ||
908 | { | ||
909 | m_log.ErrorFormat( | ||
910 | "[EVENT MANAGER]: Delegate for TriggerTerrainUpdate failed - continuing. {0} {1}", | ||
911 | e.Message, e.StackTrace); | ||
912 | } | ||
913 | } | ||
914 | } | ||
915 | } | ||
892 | 916 | ||
893 | public void TriggerTerrainTick() | 917 | public void TriggerTerrainTick() |
894 | { | 918 | { |
diff --git a/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs b/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs new file mode 100644 index 0000000..b7b0d27 --- /dev/null +++ b/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs | |||
@@ -0,0 +1,422 @@ | |||
1 | // Proprietary code of Avination Virtual Limited | ||
2 | // (c) 2012 Melanie Thielker | ||
3 | // | ||
4 | |||
5 | using System; | ||
6 | using System.Timers; | ||
7 | using System.Collections; | ||
8 | using System.Collections.Generic; | ||
9 | using System.IO; | ||
10 | using System.Diagnostics; | ||
11 | using System.Reflection; | ||
12 | using System.Threading; | ||
13 | using OpenMetaverse; | ||
14 | using OpenSim.Framework; | ||
15 | using OpenSim.Region.Framework.Interfaces; | ||
16 | using OpenSim.Region.Physics.Manager; | ||
17 | using OpenSim.Region.Framework.Scenes.Serialization; | ||
18 | using System.Runtime.Serialization.Formatters.Binary; | ||
19 | using System.Runtime.Serialization; | ||
20 | using Timer = System.Timers.Timer; | ||
21 | using log4net; | ||
22 | |||
23 | namespace OpenSim.Region.Framework.Scenes | ||
24 | { | ||
25 | [Serializable] | ||
26 | public class KeyframeMotion | ||
27 | { | ||
28 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
29 | |||
30 | public enum PlayMode : int | ||
31 | { | ||
32 | Forward = 0, | ||
33 | Reverse = 1, | ||
34 | Loop = 2, | ||
35 | PingPong = 3 | ||
36 | }; | ||
37 | |||
38 | [Flags] | ||
39 | public enum DataFormat : int | ||
40 | { | ||
41 | Translation = 1, | ||
42 | Rotation = 2 | ||
43 | } | ||
44 | |||
45 | [Serializable] | ||
46 | public struct Keyframe | ||
47 | { | ||
48 | public Vector3? Position; | ||
49 | public Quaternion? Rotation; | ||
50 | public Quaternion StartRotation; | ||
51 | public int TimeMS; | ||
52 | public int TimeTotal; | ||
53 | public Vector3 AngularVelocity; | ||
54 | }; | ||
55 | |||
56 | private Vector3 m_basePosition; | ||
57 | private Quaternion m_baseRotation; | ||
58 | private Vector3 m_serializedPosition; | ||
59 | |||
60 | private Keyframe m_currentFrame; | ||
61 | private List<Keyframe> m_frames = new List<Keyframe>(); | ||
62 | |||
63 | private Keyframe[] m_keyframes; | ||
64 | |||
65 | [NonSerialized()] | ||
66 | protected Timer m_timer = new Timer(); | ||
67 | |||
68 | [NonSerialized()] | ||
69 | private SceneObjectGroup m_group; | ||
70 | |||
71 | private PlayMode m_mode = PlayMode.Forward; | ||
72 | private DataFormat m_data = DataFormat.Translation | DataFormat.Rotation; | ||
73 | |||
74 | private bool m_running = false; | ||
75 | [NonSerialized()] | ||
76 | private bool m_selected = false; | ||
77 | |||
78 | private int m_iterations = 0; | ||
79 | |||
80 | private const double timerInterval = 50.0; | ||
81 | |||
82 | public DataFormat Data | ||
83 | { | ||
84 | get { return m_data; } | ||
85 | } | ||
86 | |||
87 | public bool Selected | ||
88 | { | ||
89 | set | ||
90 | { | ||
91 | if (value) | ||
92 | { | ||
93 | // Once we're let go, recompute positions | ||
94 | if (m_selected) | ||
95 | UpdateSceneObject(m_group); | ||
96 | } | ||
97 | else | ||
98 | { | ||
99 | // Save selection position in case we get moved | ||
100 | if (!m_selected) | ||
101 | m_serializedPosition = m_group.AbsolutePosition; | ||
102 | } | ||
103 | m_selected = value; } | ||
104 | } | ||
105 | |||
106 | public static KeyframeMotion FromData(SceneObjectGroup grp, Byte[] data) | ||
107 | { | ||
108 | MemoryStream ms = new MemoryStream(data); | ||
109 | |||
110 | BinaryFormatter fmt = new BinaryFormatter(); | ||
111 | |||
112 | KeyframeMotion newMotion = (KeyframeMotion)fmt.Deserialize(ms); | ||
113 | |||
114 | // This will be started when position is updated | ||
115 | newMotion.m_timer = new Timer(); | ||
116 | newMotion.m_timer.Interval = (int)timerInterval; | ||
117 | newMotion.m_timer.AutoReset = true; | ||
118 | newMotion.m_timer.Elapsed += newMotion.OnTimer; | ||
119 | |||
120 | return newMotion; | ||
121 | } | ||
122 | |||
123 | public void UpdateSceneObject(SceneObjectGroup grp) | ||
124 | { | ||
125 | m_group = grp; | ||
126 | Vector3 offset = grp.AbsolutePosition - m_serializedPosition; | ||
127 | |||
128 | m_basePosition += offset; | ||
129 | m_currentFrame.Position += offset; | ||
130 | for (int i = 0 ; i < m_frames.Count ; i++) | ||
131 | { | ||
132 | Keyframe k = m_frames[i]; | ||
133 | k.Position += offset; | ||
134 | m_frames[i] = k; | ||
135 | } | ||
136 | |||
137 | if (m_running) | ||
138 | Start(); | ||
139 | } | ||
140 | |||
141 | public KeyframeMotion(SceneObjectGroup grp, PlayMode mode, DataFormat data) | ||
142 | { | ||
143 | m_mode = mode; | ||
144 | m_data = data; | ||
145 | |||
146 | m_group = grp; | ||
147 | m_basePosition = grp.AbsolutePosition; | ||
148 | m_baseRotation = grp.GroupRotation; | ||
149 | |||
150 | m_timer.Interval = (int)timerInterval; | ||
151 | m_timer.AutoReset = true; | ||
152 | m_timer.Elapsed += OnTimer; | ||
153 | } | ||
154 | |||
155 | public void SetKeyframes(Keyframe[] frames) | ||
156 | { | ||
157 | m_keyframes = frames; | ||
158 | } | ||
159 | |||
160 | public void Start() | ||
161 | { | ||
162 | if (m_keyframes.Length > 0) | ||
163 | m_timer.Start(); | ||
164 | m_running = true; | ||
165 | } | ||
166 | |||
167 | public void Stop() | ||
168 | { | ||
169 | // Failed object creation | ||
170 | if (m_timer == null) | ||
171 | return; | ||
172 | m_timer.Stop(); | ||
173 | |||
174 | m_basePosition = m_group.AbsolutePosition; | ||
175 | m_baseRotation = m_group.GroupRotation; | ||
176 | |||
177 | m_group.RootPart.Velocity = Vector3.Zero; | ||
178 | m_group.RootPart.UpdateAngularVelocity(Vector3.Zero); | ||
179 | m_group.SendGroupRootTerseUpdate(); | ||
180 | |||
181 | m_frames.Clear(); | ||
182 | m_running = false; | ||
183 | } | ||
184 | |||
185 | public void Pause() | ||
186 | { | ||
187 | m_group.RootPart.Velocity = Vector3.Zero; | ||
188 | m_group.RootPart.UpdateAngularVelocity(Vector3.Zero); | ||
189 | m_group.SendGroupRootTerseUpdate(); | ||
190 | |||
191 | m_timer.Stop(); | ||
192 | m_running = false; | ||
193 | } | ||
194 | |||
195 | private void GetNextList() | ||
196 | { | ||
197 | m_frames.Clear(); | ||
198 | Vector3 pos = m_basePosition; | ||
199 | Quaternion rot = m_baseRotation; | ||
200 | |||
201 | if (m_mode == PlayMode.Loop || m_mode == PlayMode.PingPong || m_iterations == 0) | ||
202 | { | ||
203 | int direction = 1; | ||
204 | if (m_mode == PlayMode.Reverse || ((m_mode == PlayMode.PingPong) && ((m_iterations & 1) != 0))) | ||
205 | direction = -1; | ||
206 | |||
207 | int start = 0; | ||
208 | int end = m_keyframes.Length; | ||
209 | // if (m_mode == PlayMode.PingPong && m_keyframes.Length > 1) | ||
210 | // end = m_keyframes.Length - 1; | ||
211 | |||
212 | if (direction < 0) | ||
213 | { | ||
214 | start = m_keyframes.Length - 1; | ||
215 | end = -1; | ||
216 | // if (m_mode == PlayMode.PingPong && m_keyframes.Length > 1) | ||
217 | // end = 0; | ||
218 | } | ||
219 | |||
220 | for (int i = start; i != end ; i += direction) | ||
221 | { | ||
222 | Keyframe k = m_keyframes[i]; | ||
223 | |||
224 | if (k.Position.HasValue) | ||
225 | k.Position = (k.Position * direction) + pos; | ||
226 | else | ||
227 | k.Position = pos; | ||
228 | |||
229 | k.StartRotation = rot; | ||
230 | if (k.Rotation.HasValue) | ||
231 | { | ||
232 | if (direction == -1) | ||
233 | k.Rotation = Quaternion.Conjugate((Quaternion)k.Rotation); | ||
234 | k.Rotation = rot * k.Rotation; | ||
235 | } | ||
236 | else | ||
237 | { | ||
238 | k.Rotation = rot; | ||
239 | } | ||
240 | |||
241 | float angle = 0; | ||
242 | |||
243 | float aa = k.StartRotation.X * k.StartRotation.X + k.StartRotation.Y * k.StartRotation.Y + k.StartRotation.Z * k.StartRotation.Z + k.StartRotation.W * k.StartRotation.W; | ||
244 | float bb = ((Quaternion)k.Rotation).X * ((Quaternion)k.Rotation).X + ((Quaternion)k.Rotation).Y * ((Quaternion)k.Rotation).Y + ((Quaternion)k.Rotation).Z * ((Quaternion)k.Rotation).Z + ((Quaternion)k.Rotation).W * ((Quaternion)k.Rotation).W; | ||
245 | float aa_bb = aa * bb; | ||
246 | |||
247 | if (aa_bb == 0) | ||
248 | { | ||
249 | angle = 0; | ||
250 | } | ||
251 | else | ||
252 | { | ||
253 | float ab = k.StartRotation.X * ((Quaternion)k.Rotation).X + | ||
254 | k.StartRotation.Y * ((Quaternion)k.Rotation).Y + | ||
255 | k.StartRotation.Z * ((Quaternion)k.Rotation).Z + | ||
256 | k.StartRotation.W * ((Quaternion)k.Rotation).W; | ||
257 | float q = (ab * ab) / aa_bb; | ||
258 | |||
259 | if (q > 1.0f) | ||
260 | { | ||
261 | angle = 0; | ||
262 | } | ||
263 | else | ||
264 | { | ||
265 | angle = (float)Math.Acos(2 * q - 1); | ||
266 | } | ||
267 | } | ||
268 | |||
269 | k.AngularVelocity = (new Vector3(0, 0, 1) * (Quaternion)k.Rotation) * (angle / (k.TimeMS / 1000)); | ||
270 | k.TimeTotal = k.TimeMS; | ||
271 | |||
272 | m_frames.Add(k); | ||
273 | |||
274 | pos = (Vector3)k.Position; | ||
275 | rot = (Quaternion)k.Rotation; | ||
276 | } | ||
277 | |||
278 | m_basePosition = pos; | ||
279 | m_baseRotation = rot; | ||
280 | |||
281 | m_iterations++; | ||
282 | } | ||
283 | } | ||
284 | |||
285 | protected void OnTimer(object sender, ElapsedEventArgs e) | ||
286 | { | ||
287 | if (m_frames.Count == 0) | ||
288 | { | ||
289 | GetNextList(); | ||
290 | |||
291 | if (m_frames.Count == 0) | ||
292 | { | ||
293 | Stop(); | ||
294 | return; | ||
295 | } | ||
296 | |||
297 | m_currentFrame = m_frames[0]; | ||
298 | } | ||
299 | |||
300 | if (m_selected) | ||
301 | { | ||
302 | if (m_group.RootPart.Velocity != Vector3.Zero) | ||
303 | { | ||
304 | m_group.RootPart.Velocity = Vector3.Zero; | ||
305 | m_group.SendGroupRootTerseUpdate(); | ||
306 | } | ||
307 | return; | ||
308 | } | ||
309 | |||
310 | // Do the frame processing | ||
311 | double steps = (double)m_currentFrame.TimeMS / timerInterval; | ||
312 | float complete = ((float)m_currentFrame.TimeTotal - (float)m_currentFrame.TimeMS) / (float)m_currentFrame.TimeTotal; | ||
313 | |||
314 | if (steps <= 1.0) | ||
315 | { | ||
316 | m_currentFrame.TimeMS = 0; | ||
317 | |||
318 | m_group.AbsolutePosition = (Vector3)m_currentFrame.Position; | ||
319 | m_group.UpdateGroupRotationR((Quaternion)m_currentFrame.Rotation); | ||
320 | } | ||
321 | else | ||
322 | { | ||
323 | Vector3 v = (Vector3)m_currentFrame.Position - m_group.AbsolutePosition; | ||
324 | Vector3 motionThisFrame = v / (float)steps; | ||
325 | v = v * 1000 / m_currentFrame.TimeMS; | ||
326 | |||
327 | bool update = false; | ||
328 | |||
329 | if (Vector3.Mag(motionThisFrame) >= 0.05f) | ||
330 | { | ||
331 | m_group.AbsolutePosition += motionThisFrame; | ||
332 | m_group.RootPart.Velocity = v; | ||
333 | update = true; | ||
334 | } | ||
335 | |||
336 | if ((Quaternion)m_currentFrame.Rotation != m_group.GroupRotation) | ||
337 | { | ||
338 | Quaternion current = m_group.GroupRotation; | ||
339 | |||
340 | Quaternion step = Quaternion.Slerp(m_currentFrame.StartRotation, (Quaternion)m_currentFrame.Rotation, complete); | ||
341 | |||
342 | float angle = 0; | ||
343 | |||
344 | float aa = current.X * current.X + current.Y * current.Y + current.Z * current.Z + current.W * current.W; | ||
345 | float bb = step.X * step.X + step.Y * step.Y + step.Z * step.Z + step.W * step.W; | ||
346 | float aa_bb = aa * bb; | ||
347 | |||
348 | if (aa_bb == 0) | ||
349 | { | ||
350 | angle = 0; | ||
351 | } | ||
352 | else | ||
353 | { | ||
354 | float ab = current.X * step.X + | ||
355 | current.Y * step.Y + | ||
356 | current.Z * step.Z + | ||
357 | current.W * step.W; | ||
358 | float q = (ab * ab) / aa_bb; | ||
359 | |||
360 | if (q > 1.0f) | ||
361 | { | ||
362 | angle = 0; | ||
363 | } | ||
364 | else | ||
365 | { | ||
366 | angle = (float)Math.Acos(2 * q - 1); | ||
367 | } | ||
368 | } | ||
369 | |||
370 | if (angle > 0.01f) | ||
371 | { | ||
372 | m_group.UpdateGroupRotationR(step); | ||
373 | //m_group.RootPart.UpdateAngularVelocity(m_currentFrame.AngularVelocity / 2); | ||
374 | update = true; | ||
375 | } | ||
376 | } | ||
377 | |||
378 | if (update) | ||
379 | m_group.SendGroupRootTerseUpdate(); | ||
380 | } | ||
381 | |||
382 | m_currentFrame.TimeMS -= (int)timerInterval; | ||
383 | |||
384 | if (m_currentFrame.TimeMS <= 0) | ||
385 | { | ||
386 | m_group.RootPart.Velocity = Vector3.Zero; | ||
387 | m_group.RootPart.UpdateAngularVelocity(Vector3.Zero); | ||
388 | m_group.SendGroupRootTerseUpdate(); | ||
389 | |||
390 | m_frames.RemoveAt(0); | ||
391 | if (m_frames.Count > 0) | ||
392 | m_currentFrame = m_frames[0]; | ||
393 | } | ||
394 | } | ||
395 | |||
396 | public Byte[] Serialize() | ||
397 | { | ||
398 | MemoryStream ms = new MemoryStream(); | ||
399 | m_timer.Stop(); | ||
400 | |||
401 | BinaryFormatter fmt = new BinaryFormatter(); | ||
402 | SceneObjectGroup tmp = m_group; | ||
403 | m_group = null; | ||
404 | m_serializedPosition = tmp.AbsolutePosition; | ||
405 | fmt.Serialize(ms, this); | ||
406 | m_group = tmp; | ||
407 | return ms.ToArray(); | ||
408 | } | ||
409 | |||
410 | public void CrossingFailure() | ||
411 | { | ||
412 | // The serialization has stopped the timer, so let's wait a moment | ||
413 | // then retry the crossing. We'll get back here if it fails. | ||
414 | Util.FireAndForget(delegate (object x) | ||
415 | { | ||
416 | Thread.Sleep(60000); | ||
417 | if (m_running) | ||
418 | m_timer.Start(); | ||
419 | }); | ||
420 | } | ||
421 | } | ||
422 | } | ||
diff --git a/OpenSim/Region/Framework/Scenes/Prioritizer.cs b/OpenSim/Region/Framework/Scenes/Prioritizer.cs index 1b10e3c..0a34a4c 100644 --- a/OpenSim/Region/Framework/Scenes/Prioritizer.cs +++ b/OpenSim/Region/Framework/Scenes/Prioritizer.cs | |||
@@ -157,7 +157,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
157 | 157 | ||
158 | private uint GetPriorityByBestAvatarResponsiveness(IClientAPI client, ISceneEntity entity) | 158 | private uint GetPriorityByBestAvatarResponsiveness(IClientAPI client, ISceneEntity entity) |
159 | { | 159 | { |
160 | uint pqueue = ComputeDistancePriority(client,entity,true); | 160 | uint pqueue = ComputeDistancePriority(client,entity,false); |
161 | 161 | ||
162 | ScenePresence presence = m_scene.GetScenePresence(client.AgentId); | 162 | ScenePresence presence = m_scene.GetScenePresence(client.AgentId); |
163 | if (presence != null) | 163 | if (presence != null) |
@@ -226,7 +226,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
226 | 226 | ||
227 | for (int i = 0; i < queues - 1; i++) | 227 | for (int i = 0; i < queues - 1; i++) |
228 | { | 228 | { |
229 | if (distance < 10 * Math.Pow(2.0,i)) | 229 | if (distance < 30 * Math.Pow(2.0,i)) |
230 | break; | 230 | break; |
231 | pqueue++; | 231 | pqueue++; |
232 | } | 232 | } |
diff --git a/OpenSim/Region/Framework/Scenes/SOPMaterial.cs b/OpenSim/Region/Framework/Scenes/SOPMaterial.cs new file mode 100644 index 0000000..10ac37c --- /dev/null +++ b/OpenSim/Region/Framework/Scenes/SOPMaterial.cs | |||
@@ -0,0 +1,95 @@ | |||
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 | |||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using OpenMetaverse; | ||
31 | using OpenSim.Framework; | ||
32 | |||
33 | namespace OpenSim.Region.Framework.Scenes | ||
34 | { | ||
35 | public static class SOPMaterialData | ||
36 | { | ||
37 | public enum SopMaterial : int // redundante and not in use for now | ||
38 | { | ||
39 | Stone = 0, | ||
40 | Metal = 1, | ||
41 | Glass = 2, | ||
42 | Wood = 3, | ||
43 | Flesh = 4, | ||
44 | Plastic = 5, | ||
45 | Rubber = 6, | ||
46 | light = 7 // compatibility with old viewers | ||
47 | } | ||
48 | |||
49 | private struct MaterialData | ||
50 | { | ||
51 | public float friction; | ||
52 | public float bounce; | ||
53 | public MaterialData(float f, float b) | ||
54 | { | ||
55 | friction = f; | ||
56 | bounce = b; | ||
57 | } | ||
58 | } | ||
59 | |||
60 | private static MaterialData[] m_materialdata = { | ||
61 | new MaterialData(0.8f,0.4f), // Stone | ||
62 | new MaterialData(0.3f,0.4f), // Metal | ||
63 | new MaterialData(0.2f,0.7f), // Glass | ||
64 | new MaterialData(0.6f,0.5f), // Wood | ||
65 | new MaterialData(0.9f,0.3f), // Flesh | ||
66 | new MaterialData(0.4f,0.7f), // Plastic | ||
67 | new MaterialData(0.9f,0.95f), // Rubber | ||
68 | new MaterialData(0.0f,0.0f) // light ?? | ||
69 | }; | ||
70 | |||
71 | public static Material MaxMaterial | ||
72 | { | ||
73 | get { return (Material)(m_materialdata.Length - 1); } | ||
74 | } | ||
75 | |||
76 | public static float friction(Material material) | ||
77 | { | ||
78 | int indx = (int)material; | ||
79 | if (indx < m_materialdata.Length) | ||
80 | return (m_materialdata[indx].friction); | ||
81 | else | ||
82 | return 0; | ||
83 | } | ||
84 | |||
85 | public static float bounce(Material material) | ||
86 | { | ||
87 | int indx = (int)material; | ||
88 | if (indx < m_materialdata.Length) | ||
89 | return (m_materialdata[indx].bounce); | ||
90 | else | ||
91 | return 0; | ||
92 | } | ||
93 | |||
94 | } | ||
95 | } \ No newline at end of file | ||
diff --git a/OpenSim/Region/Framework/Scenes/SOPVehicle.cs b/OpenSim/Region/Framework/Scenes/SOPVehicle.cs new file mode 100644 index 0000000..d3c2d27 --- /dev/null +++ b/OpenSim/Region/Framework/Scenes/SOPVehicle.cs | |||
@@ -0,0 +1,742 @@ | |||
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 | |||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using OpenMetaverse; | ||
31 | using OpenSim.Framework; | ||
32 | using OpenSim.Region.Physics.Manager; | ||
33 | using System.Xml; | ||
34 | using OpenSim.Framework.Serialization; | ||
35 | using OpenSim.Framework.Serialization.External; | ||
36 | using OpenSim.Region.Framework.Scenes.Serialization; | ||
37 | using OpenSim.Region.Framework.Scenes.Serialization; | ||
38 | |||
39 | namespace OpenSim.Region.Framework.Scenes | ||
40 | { | ||
41 | public class SOPVehicle | ||
42 | { | ||
43 | public VehicleData vd; | ||
44 | |||
45 | public Vehicle Type | ||
46 | { | ||
47 | get { return vd.m_type; } | ||
48 | } | ||
49 | |||
50 | public SOPVehicle() | ||
51 | { | ||
52 | vd = new VehicleData(); | ||
53 | ProcessTypeChange(Vehicle.TYPE_NONE); // is needed? | ||
54 | } | ||
55 | |||
56 | public void ProcessFloatVehicleParam(Vehicle pParam, float pValue) | ||
57 | { | ||
58 | float len; | ||
59 | float timestep = 0.01f; | ||
60 | switch (pParam) | ||
61 | { | ||
62 | case Vehicle.ANGULAR_DEFLECTION_EFFICIENCY: | ||
63 | if (pValue < 0f) pValue = 0f; | ||
64 | if (pValue > 1f) pValue = 1f; | ||
65 | vd.m_angularDeflectionEfficiency = pValue; | ||
66 | break; | ||
67 | case Vehicle.ANGULAR_DEFLECTION_TIMESCALE: | ||
68 | if (pValue < timestep) pValue = timestep; | ||
69 | vd.m_angularDeflectionTimescale = pValue; | ||
70 | break; | ||
71 | case Vehicle.ANGULAR_MOTOR_DECAY_TIMESCALE: | ||
72 | if (pValue < timestep) pValue = timestep; | ||
73 | else if (pValue > 120) pValue = 120; | ||
74 | vd.m_angularMotorDecayTimescale = pValue; | ||
75 | break; | ||
76 | case Vehicle.ANGULAR_MOTOR_TIMESCALE: | ||
77 | if (pValue < timestep) pValue = timestep; | ||
78 | vd.m_angularMotorTimescale = pValue; | ||
79 | break; | ||
80 | case Vehicle.BANKING_EFFICIENCY: | ||
81 | if (pValue < -1f) pValue = -1f; | ||
82 | if (pValue > 1f) pValue = 1f; | ||
83 | vd.m_bankingEfficiency = pValue; | ||
84 | break; | ||
85 | case Vehicle.BANKING_MIX: | ||
86 | if (pValue < 0f) pValue = 0f; | ||
87 | if (pValue > 1f) pValue = 1f; | ||
88 | vd.m_bankingMix = pValue; | ||
89 | break; | ||
90 | case Vehicle.BANKING_TIMESCALE: | ||
91 | if (pValue < timestep) pValue = timestep; | ||
92 | vd.m_bankingTimescale = pValue; | ||
93 | break; | ||
94 | case Vehicle.BUOYANCY: | ||
95 | if (pValue < -1f) pValue = -1f; | ||
96 | if (pValue > 1f) pValue = 1f; | ||
97 | vd.m_VehicleBuoyancy = pValue; | ||
98 | break; | ||
99 | case Vehicle.HOVER_EFFICIENCY: | ||
100 | if (pValue < 0f) pValue = 0f; | ||
101 | if (pValue > 1f) pValue = 1f; | ||
102 | vd.m_VhoverEfficiency = pValue; | ||
103 | break; | ||
104 | case Vehicle.HOVER_HEIGHT: | ||
105 | vd.m_VhoverHeight = pValue; | ||
106 | break; | ||
107 | case Vehicle.HOVER_TIMESCALE: | ||
108 | if (pValue < timestep) pValue = timestep; | ||
109 | vd.m_VhoverTimescale = pValue; | ||
110 | break; | ||
111 | case Vehicle.LINEAR_DEFLECTION_EFFICIENCY: | ||
112 | if (pValue < 0f) pValue = 0f; | ||
113 | if (pValue > 1f) pValue = 1f; | ||
114 | vd.m_linearDeflectionEfficiency = pValue; | ||
115 | break; | ||
116 | case Vehicle.LINEAR_DEFLECTION_TIMESCALE: | ||
117 | if (pValue < timestep) pValue = timestep; | ||
118 | vd.m_linearDeflectionTimescale = pValue; | ||
119 | break; | ||
120 | case Vehicle.LINEAR_MOTOR_DECAY_TIMESCALE: | ||
121 | if (pValue < timestep) pValue = timestep; | ||
122 | else if (pValue > 120) pValue = 120; | ||
123 | vd.m_linearMotorDecayTimescale = pValue; | ||
124 | break; | ||
125 | case Vehicle.LINEAR_MOTOR_TIMESCALE: | ||
126 | if (pValue < timestep) pValue = timestep; | ||
127 | vd.m_linearMotorTimescale = pValue; | ||
128 | break; | ||
129 | case Vehicle.VERTICAL_ATTRACTION_EFFICIENCY: | ||
130 | if (pValue < 0f) pValue = 0f; | ||
131 | if (pValue > 1f) pValue = 1f; | ||
132 | vd.m_verticalAttractionEfficiency = pValue; | ||
133 | break; | ||
134 | case Vehicle.VERTICAL_ATTRACTION_TIMESCALE: | ||
135 | if (pValue < timestep) pValue = timestep; | ||
136 | vd.m_verticalAttractionTimescale = pValue; | ||
137 | break; | ||
138 | |||
139 | // These are vector properties but the engine lets you use a single float value to | ||
140 | // set all of the components to the same value | ||
141 | case Vehicle.ANGULAR_FRICTION_TIMESCALE: | ||
142 | if (pValue < timestep) pValue = timestep; | ||
143 | vd.m_angularFrictionTimescale = new Vector3(pValue, pValue, pValue); | ||
144 | break; | ||
145 | case Vehicle.ANGULAR_MOTOR_DIRECTION: | ||
146 | vd.m_angularMotorDirection = new Vector3(pValue, pValue, pValue); | ||
147 | len = vd.m_angularMotorDirection.Length(); | ||
148 | if (len > 12.566f) | ||
149 | vd.m_angularMotorDirection *= (12.566f / len); | ||
150 | break; | ||
151 | case Vehicle.LINEAR_FRICTION_TIMESCALE: | ||
152 | if (pValue < timestep) pValue = timestep; | ||
153 | vd.m_linearFrictionTimescale = new Vector3(pValue, pValue, pValue); | ||
154 | break; | ||
155 | case Vehicle.LINEAR_MOTOR_DIRECTION: | ||
156 | vd.m_linearMotorDirection = new Vector3(pValue, pValue, pValue); | ||
157 | len = vd.m_linearMotorDirection.Length(); | ||
158 | if (len > 30.0f) | ||
159 | vd.m_linearMotorDirection *= (30.0f / len); | ||
160 | break; | ||
161 | case Vehicle.LINEAR_MOTOR_OFFSET: | ||
162 | vd.m_linearMotorOffset = new Vector3(pValue, pValue, pValue); | ||
163 | len = vd.m_linearMotorOffset.Length(); | ||
164 | if (len > 100.0f) | ||
165 | vd.m_linearMotorOffset *= (100.0f / len); | ||
166 | break; | ||
167 | } | ||
168 | }//end ProcessFloatVehicleParam | ||
169 | |||
170 | public void ProcessVectorVehicleParam(Vehicle pParam, Vector3 pValue) | ||
171 | { | ||
172 | float len; | ||
173 | float timestep = 0.01f; | ||
174 | switch (pParam) | ||
175 | { | ||
176 | case Vehicle.ANGULAR_FRICTION_TIMESCALE: | ||
177 | if (pValue.X < timestep) pValue.X = timestep; | ||
178 | if (pValue.Y < timestep) pValue.Y = timestep; | ||
179 | if (pValue.Z < timestep) pValue.Z = timestep; | ||
180 | |||
181 | vd.m_angularFrictionTimescale = new Vector3(pValue.X, pValue.Y, pValue.Z); | ||
182 | break; | ||
183 | case Vehicle.ANGULAR_MOTOR_DIRECTION: | ||
184 | vd.m_angularMotorDirection = new Vector3(pValue.X, pValue.Y, pValue.Z); | ||
185 | // Limit requested angular speed to 2 rps= 4 pi rads/sec | ||
186 | len = vd.m_angularMotorDirection.Length(); | ||
187 | if (len > 12.566f) | ||
188 | vd.m_angularMotorDirection *= (12.566f / len); | ||
189 | break; | ||
190 | case Vehicle.LINEAR_FRICTION_TIMESCALE: | ||
191 | if (pValue.X < timestep) pValue.X = timestep; | ||
192 | if (pValue.Y < timestep) pValue.Y = timestep; | ||
193 | if (pValue.Z < timestep) pValue.Z = timestep; | ||
194 | vd.m_linearFrictionTimescale = new Vector3(pValue.X, pValue.Y, pValue.Z); | ||
195 | break; | ||
196 | case Vehicle.LINEAR_MOTOR_DIRECTION: | ||
197 | vd.m_linearMotorDirection = new Vector3(pValue.X, pValue.Y, pValue.Z); | ||
198 | len = vd.m_linearMotorDirection.Length(); | ||
199 | if (len > 30.0f) | ||
200 | vd.m_linearMotorDirection *= (30.0f / len); | ||
201 | break; | ||
202 | case Vehicle.LINEAR_MOTOR_OFFSET: | ||
203 | vd.m_linearMotorOffset = new Vector3(pValue.X, pValue.Y, pValue.Z); | ||
204 | len = vd.m_linearMotorOffset.Length(); | ||
205 | if (len > 100.0f) | ||
206 | vd.m_linearMotorOffset *= (100.0f / len); | ||
207 | break; | ||
208 | } | ||
209 | }//end ProcessVectorVehicleParam | ||
210 | |||
211 | public void ProcessRotationVehicleParam(Vehicle pParam, Quaternion pValue) | ||
212 | { | ||
213 | switch (pParam) | ||
214 | { | ||
215 | case Vehicle.REFERENCE_FRAME: | ||
216 | vd.m_referenceFrame = Quaternion.Inverse(pValue); | ||
217 | break; | ||
218 | } | ||
219 | }//end ProcessRotationVehicleParam | ||
220 | |||
221 | public void ProcessVehicleFlags(int pParam, bool remove) | ||
222 | { | ||
223 | if (remove) | ||
224 | { | ||
225 | vd.m_flags &= ~((VehicleFlag)pParam); | ||
226 | } | ||
227 | else | ||
228 | { | ||
229 | vd.m_flags |= (VehicleFlag)pParam; | ||
230 | } | ||
231 | }//end ProcessVehicleFlags | ||
232 | |||
233 | public void ProcessTypeChange(Vehicle pType) | ||
234 | { | ||
235 | vd.m_linearMotorDirection = Vector3.Zero; | ||
236 | vd.m_angularMotorDirection = Vector3.Zero; | ||
237 | vd.m_linearMotorOffset = Vector3.Zero; | ||
238 | vd.m_referenceFrame = Quaternion.Identity; | ||
239 | |||
240 | // Set Defaults For Type | ||
241 | vd.m_type = pType; | ||
242 | switch (pType) | ||
243 | { | ||
244 | case Vehicle.TYPE_NONE: | ||
245 | vd.m_linearFrictionTimescale = new Vector3(1000, 1000, 1000); | ||
246 | vd.m_angularFrictionTimescale = new Vector3(1000, 1000, 1000); | ||
247 | vd.m_linearMotorTimescale = 1000; | ||
248 | vd.m_linearMotorDecayTimescale = 120; | ||
249 | vd.m_angularMotorTimescale = 1000; | ||
250 | vd.m_angularMotorDecayTimescale = 1000; | ||
251 | vd.m_VhoverHeight = 0; | ||
252 | vd.m_VhoverEfficiency = 1; | ||
253 | vd.m_VhoverTimescale = 1000; | ||
254 | vd.m_VehicleBuoyancy = 0; | ||
255 | vd.m_linearDeflectionEfficiency = 0; | ||
256 | vd.m_linearDeflectionTimescale = 1000; | ||
257 | vd.m_angularDeflectionEfficiency = 0; | ||
258 | vd.m_angularDeflectionTimescale = 1000; | ||
259 | vd.m_bankingEfficiency = 0; | ||
260 | vd.m_bankingMix = 1; | ||
261 | vd.m_bankingTimescale = 1000; | ||
262 | vd.m_verticalAttractionEfficiency = 0; | ||
263 | vd.m_verticalAttractionTimescale = 1000; | ||
264 | |||
265 | vd.m_flags = (VehicleFlag)0; | ||
266 | break; | ||
267 | |||
268 | case Vehicle.TYPE_SLED: | ||
269 | vd.m_linearFrictionTimescale = new Vector3(30, 1, 1000); | ||
270 | vd.m_angularFrictionTimescale = new Vector3(1000, 1000, 1000); | ||
271 | vd.m_linearMotorTimescale = 1000; | ||
272 | vd.m_linearMotorDecayTimescale = 120; | ||
273 | vd.m_angularMotorTimescale = 1000; | ||
274 | vd.m_angularMotorDecayTimescale = 120; | ||
275 | vd.m_VhoverHeight = 0; | ||
276 | vd.m_VhoverEfficiency = 1; | ||
277 | vd.m_VhoverTimescale = 10; | ||
278 | vd.m_VehicleBuoyancy = 0; | ||
279 | vd.m_linearDeflectionEfficiency = 1; | ||
280 | vd.m_linearDeflectionTimescale = 1; | ||
281 | vd.m_angularDeflectionEfficiency = 0; | ||
282 | vd.m_angularDeflectionTimescale = 1000; | ||
283 | vd.m_bankingEfficiency = 0; | ||
284 | vd.m_bankingMix = 1; | ||
285 | vd.m_bankingTimescale = 10; | ||
286 | vd.m_flags &= | ||
287 | ~(VehicleFlag.HOVER_WATER_ONLY | VehicleFlag.HOVER_TERRAIN_ONLY | | ||
288 | VehicleFlag.HOVER_GLOBAL_HEIGHT | VehicleFlag.HOVER_UP_ONLY); | ||
289 | vd.m_flags |= (VehicleFlag.NO_DEFLECTION_UP | VehicleFlag.LIMIT_ROLL_ONLY | VehicleFlag.LIMIT_MOTOR_UP); | ||
290 | break; | ||
291 | case Vehicle.TYPE_CAR: | ||
292 | vd.m_linearFrictionTimescale = new Vector3(100, 2, 1000); | ||
293 | vd.m_angularFrictionTimescale = new Vector3(1000, 1000, 1000); | ||
294 | vd.m_linearMotorTimescale = 1; | ||
295 | vd.m_linearMotorDecayTimescale = 60; | ||
296 | vd.m_angularMotorTimescale = 1; | ||
297 | vd.m_angularMotorDecayTimescale = 0.8f; | ||
298 | vd.m_VhoverHeight = 0; | ||
299 | vd.m_VhoverEfficiency = 0; | ||
300 | vd.m_VhoverTimescale = 1000; | ||
301 | vd.m_VehicleBuoyancy = 0; | ||
302 | vd.m_linearDeflectionEfficiency = 1; | ||
303 | vd.m_linearDeflectionTimescale = 2; | ||
304 | vd.m_angularDeflectionEfficiency = 0; | ||
305 | vd.m_angularDeflectionTimescale = 10; | ||
306 | vd.m_verticalAttractionEfficiency = 1f; | ||
307 | vd.m_verticalAttractionTimescale = 10f; | ||
308 | vd.m_bankingEfficiency = -0.2f; | ||
309 | vd.m_bankingMix = 1; | ||
310 | vd.m_bankingTimescale = 1; | ||
311 | vd.m_flags &= ~(VehicleFlag.HOVER_WATER_ONLY | VehicleFlag.HOVER_TERRAIN_ONLY | VehicleFlag.HOVER_GLOBAL_HEIGHT); | ||
312 | vd.m_flags |= (VehicleFlag.NO_DEFLECTION_UP | VehicleFlag.LIMIT_ROLL_ONLY | | ||
313 | VehicleFlag.LIMIT_MOTOR_UP | VehicleFlag.HOVER_UP_ONLY); | ||
314 | break; | ||
315 | case Vehicle.TYPE_BOAT: | ||
316 | vd.m_linearFrictionTimescale = new Vector3(10, 3, 2); | ||
317 | vd.m_angularFrictionTimescale = new Vector3(10, 10, 10); | ||
318 | vd.m_linearMotorTimescale = 5; | ||
319 | vd.m_linearMotorDecayTimescale = 60; | ||
320 | vd.m_angularMotorTimescale = 4; | ||
321 | vd.m_angularMotorDecayTimescale = 4; | ||
322 | vd.m_VhoverHeight = 0; | ||
323 | vd.m_VhoverEfficiency = 0.5f; | ||
324 | vd.m_VhoverTimescale = 2; | ||
325 | vd.m_VehicleBuoyancy = 1; | ||
326 | vd.m_linearDeflectionEfficiency = 0.5f; | ||
327 | vd.m_linearDeflectionTimescale = 3; | ||
328 | vd.m_angularDeflectionEfficiency = 0.5f; | ||
329 | vd.m_angularDeflectionTimescale = 5; | ||
330 | vd.m_verticalAttractionEfficiency = 0.5f; | ||
331 | vd.m_verticalAttractionTimescale = 5f; | ||
332 | vd.m_bankingEfficiency = -0.3f; | ||
333 | vd.m_bankingMix = 0.8f; | ||
334 | vd.m_bankingTimescale = 1; | ||
335 | vd.m_flags &= ~(VehicleFlag.HOVER_TERRAIN_ONLY | | ||
336 | VehicleFlag.HOVER_GLOBAL_HEIGHT | | ||
337 | VehicleFlag.HOVER_UP_ONLY | | ||
338 | VehicleFlag.LIMIT_ROLL_ONLY); | ||
339 | vd.m_flags |= (VehicleFlag.NO_DEFLECTION_UP | | ||
340 | VehicleFlag.LIMIT_MOTOR_UP | | ||
341 | VehicleFlag.HOVER_WATER_ONLY); | ||
342 | break; | ||
343 | case Vehicle.TYPE_AIRPLANE: | ||
344 | vd.m_linearFrictionTimescale = new Vector3(200, 10, 5); | ||
345 | vd.m_angularFrictionTimescale = new Vector3(20, 20, 20); | ||
346 | vd.m_linearMotorTimescale = 2; | ||
347 | vd.m_linearMotorDecayTimescale = 60; | ||
348 | vd.m_angularMotorTimescale = 4; | ||
349 | vd.m_angularMotorDecayTimescale = 8; | ||
350 | vd.m_VhoverHeight = 0; | ||
351 | vd.m_VhoverEfficiency = 0.5f; | ||
352 | vd.m_VhoverTimescale = 1000; | ||
353 | vd.m_VehicleBuoyancy = 0; | ||
354 | vd.m_linearDeflectionEfficiency = 0.5f; | ||
355 | vd.m_linearDeflectionTimescale = 0.5f; | ||
356 | vd.m_angularDeflectionEfficiency = 1; | ||
357 | vd.m_angularDeflectionTimescale = 2; | ||
358 | vd.m_verticalAttractionEfficiency = 0.9f; | ||
359 | vd.m_verticalAttractionTimescale = 2f; | ||
360 | vd.m_bankingEfficiency = 1; | ||
361 | vd.m_bankingMix = 0.7f; | ||
362 | vd.m_bankingTimescale = 2; | ||
363 | vd.m_flags &= ~(VehicleFlag.HOVER_WATER_ONLY | | ||
364 | VehicleFlag.HOVER_TERRAIN_ONLY | | ||
365 | VehicleFlag.HOVER_GLOBAL_HEIGHT | | ||
366 | VehicleFlag.HOVER_UP_ONLY | | ||
367 | VehicleFlag.NO_DEFLECTION_UP | | ||
368 | VehicleFlag.LIMIT_MOTOR_UP); | ||
369 | vd.m_flags |= (VehicleFlag.LIMIT_ROLL_ONLY); | ||
370 | break; | ||
371 | case Vehicle.TYPE_BALLOON: | ||
372 | vd.m_linearFrictionTimescale = new Vector3(5, 5, 5); | ||
373 | vd.m_angularFrictionTimescale = new Vector3(10, 10, 10); | ||
374 | vd.m_linearMotorTimescale = 5; | ||
375 | vd.m_linearMotorDecayTimescale = 60; | ||
376 | vd.m_angularMotorTimescale = 6; | ||
377 | vd.m_angularMotorDecayTimescale = 10; | ||
378 | vd.m_VhoverHeight = 5; | ||
379 | vd.m_VhoverEfficiency = 0.8f; | ||
380 | vd.m_VhoverTimescale = 10; | ||
381 | vd.m_VehicleBuoyancy = 1; | ||
382 | vd.m_linearDeflectionEfficiency = 0; | ||
383 | vd.m_linearDeflectionTimescale = 5; | ||
384 | vd.m_angularDeflectionEfficiency = 0; | ||
385 | vd.m_angularDeflectionTimescale = 5; | ||
386 | vd.m_verticalAttractionEfficiency = 0f; | ||
387 | vd.m_verticalAttractionTimescale = 1000f; | ||
388 | vd.m_bankingEfficiency = 0; | ||
389 | vd.m_bankingMix = 0.7f; | ||
390 | vd.m_bankingTimescale = 5; | ||
391 | vd.m_flags &= ~(VehicleFlag.HOVER_WATER_ONLY | | ||
392 | VehicleFlag.HOVER_TERRAIN_ONLY | | ||
393 | VehicleFlag.HOVER_UP_ONLY | | ||
394 | VehicleFlag.NO_DEFLECTION_UP | | ||
395 | VehicleFlag.LIMIT_MOTOR_UP); | ||
396 | vd.m_flags |= (VehicleFlag.LIMIT_ROLL_ONLY | | ||
397 | VehicleFlag.HOVER_GLOBAL_HEIGHT); | ||
398 | break; | ||
399 | } | ||
400 | } | ||
401 | public void SetVehicle(PhysicsActor ph) | ||
402 | { | ||
403 | if (ph == null) | ||
404 | return; | ||
405 | ph.SetVehicle(vd); | ||
406 | } | ||
407 | |||
408 | private XmlTextWriter writer; | ||
409 | |||
410 | private void XWint(string name, int i) | ||
411 | { | ||
412 | writer.WriteElementString(name, i.ToString()); | ||
413 | } | ||
414 | |||
415 | private void XWfloat(string name, float f) | ||
416 | { | ||
417 | writer.WriteElementString(name, f.ToString(Utils.EnUsCulture)); | ||
418 | } | ||
419 | |||
420 | private void XWVector(string name, Vector3 vec) | ||
421 | { | ||
422 | writer.WriteStartElement(name); | ||
423 | writer.WriteElementString("X", vec.X.ToString(Utils.EnUsCulture)); | ||
424 | writer.WriteElementString("Y", vec.Y.ToString(Utils.EnUsCulture)); | ||
425 | writer.WriteElementString("Z", vec.Z.ToString(Utils.EnUsCulture)); | ||
426 | writer.WriteEndElement(); | ||
427 | } | ||
428 | |||
429 | private void XWQuat(string name, Quaternion quat) | ||
430 | { | ||
431 | writer.WriteStartElement(name); | ||
432 | writer.WriteElementString("X", quat.X.ToString(Utils.EnUsCulture)); | ||
433 | writer.WriteElementString("Y", quat.Y.ToString(Utils.EnUsCulture)); | ||
434 | writer.WriteElementString("Z", quat.Z.ToString(Utils.EnUsCulture)); | ||
435 | writer.WriteElementString("W", quat.W.ToString(Utils.EnUsCulture)); | ||
436 | writer.WriteEndElement(); | ||
437 | } | ||
438 | |||
439 | public void ToXml2(XmlTextWriter twriter) | ||
440 | { | ||
441 | writer = twriter; | ||
442 | writer.WriteStartElement("Vehicle"); | ||
443 | |||
444 | XWint("TYPE", (int)vd.m_type); | ||
445 | XWint("FLAGS", (int)vd.m_flags); | ||
446 | |||
447 | // Linear properties | ||
448 | XWVector("LMDIR", vd.m_linearMotorDirection); | ||
449 | XWVector("LMFTIME", vd.m_linearFrictionTimescale); | ||
450 | XWfloat("LMDTIME", vd.m_linearMotorDecayTimescale); | ||
451 | XWfloat("LMTIME", vd.m_linearMotorTimescale); | ||
452 | XWVector("LMOFF", vd.m_linearMotorOffset); | ||
453 | |||
454 | //Angular properties | ||
455 | XWVector("AMDIR", vd.m_angularMotorDirection); | ||
456 | XWfloat("AMTIME", vd.m_angularMotorTimescale); | ||
457 | XWfloat("AMDTIME", vd.m_angularMotorDecayTimescale); | ||
458 | XWVector("AMFTIME", vd.m_angularFrictionTimescale); | ||
459 | |||
460 | //Deflection properties | ||
461 | XWfloat("ADEFF", vd.m_angularDeflectionEfficiency); | ||
462 | XWfloat("ADTIME", vd.m_angularDeflectionTimescale); | ||
463 | XWfloat("LDEFF", vd.m_linearDeflectionEfficiency); | ||
464 | XWfloat("LDTIME", vd.m_linearDeflectionTimescale); | ||
465 | |||
466 | //Banking properties | ||
467 | XWfloat("BEFF", vd.m_bankingEfficiency); | ||
468 | XWfloat("BMIX", vd.m_bankingMix); | ||
469 | XWfloat("BTIME", vd.m_bankingTimescale); | ||
470 | |||
471 | //Hover and Buoyancy properties | ||
472 | XWfloat("HHEI", vd.m_VhoverHeight); | ||
473 | XWfloat("HEFF", vd.m_VhoverEfficiency); | ||
474 | XWfloat("HTIME", vd.m_VhoverTimescale); | ||
475 | XWfloat("VBUO", vd.m_VehicleBuoyancy); | ||
476 | |||
477 | //Attractor properties | ||
478 | XWfloat("VAEFF", vd.m_verticalAttractionEfficiency); | ||
479 | XWfloat("VATIME", vd.m_verticalAttractionTimescale); | ||
480 | |||
481 | XWQuat("REF_FRAME", vd.m_referenceFrame); | ||
482 | |||
483 | writer.WriteEndElement(); | ||
484 | writer = null; | ||
485 | } | ||
486 | |||
487 | |||
488 | |||
489 | XmlTextReader reader; | ||
490 | |||
491 | private int XRint() | ||
492 | { | ||
493 | return reader.ReadElementContentAsInt(); | ||
494 | } | ||
495 | |||
496 | private float XRfloat() | ||
497 | { | ||
498 | return reader.ReadElementContentAsFloat(); | ||
499 | } | ||
500 | |||
501 | public Vector3 XRvector() | ||
502 | { | ||
503 | Vector3 vec; | ||
504 | reader.ReadStartElement(); | ||
505 | vec.X = reader.ReadElementContentAsFloat(); | ||
506 | vec.Y = reader.ReadElementContentAsFloat(); | ||
507 | vec.Z = reader.ReadElementContentAsFloat(); | ||
508 | reader.ReadEndElement(); | ||
509 | return vec; | ||
510 | } | ||
511 | |||
512 | public Quaternion XRquat() | ||
513 | { | ||
514 | Quaternion q; | ||
515 | reader.ReadStartElement(); | ||
516 | q.X = reader.ReadElementContentAsFloat(); | ||
517 | q.Y = reader.ReadElementContentAsFloat(); | ||
518 | q.Z = reader.ReadElementContentAsFloat(); | ||
519 | q.W = reader.ReadElementContentAsFloat(); | ||
520 | reader.ReadEndElement(); | ||
521 | return q; | ||
522 | } | ||
523 | |||
524 | public static bool EReadProcessors( | ||
525 | Dictionary<string, Action> processors, | ||
526 | XmlTextReader xtr) | ||
527 | { | ||
528 | bool errors = false; | ||
529 | |||
530 | string nodeName = string.Empty; | ||
531 | while (xtr.NodeType != XmlNodeType.EndElement) | ||
532 | { | ||
533 | nodeName = xtr.Name; | ||
534 | |||
535 | // m_log.DebugFormat("[ExternalRepresentationUtils]: Processing: {0}", nodeName); | ||
536 | |||
537 | Action p = null; | ||
538 | if (processors.TryGetValue(xtr.Name, out p)) | ||
539 | { | ||
540 | // m_log.DebugFormat("[ExternalRepresentationUtils]: Found {0} processor, nodeName); | ||
541 | |||
542 | try | ||
543 | { | ||
544 | p(); | ||
545 | } | ||
546 | catch (Exception e) | ||
547 | { | ||
548 | errors = true; | ||
549 | if (xtr.NodeType == XmlNodeType.EndElement) | ||
550 | xtr.Read(); | ||
551 | } | ||
552 | } | ||
553 | else | ||
554 | { | ||
555 | // m_log.DebugFormat("[LandDataSerializer]: caught unknown element {0}", nodeName); | ||
556 | xtr.ReadOuterXml(); // ignore | ||
557 | } | ||
558 | } | ||
559 | |||
560 | return errors; | ||
561 | } | ||
562 | |||
563 | |||
564 | |||
565 | public void FromXml2(XmlTextReader _reader, out bool errors) | ||
566 | { | ||
567 | errors = false; | ||
568 | reader = _reader; | ||
569 | |||
570 | Dictionary<string, Action> m_VehicleXmlProcessors | ||
571 | = new Dictionary<string, Action>(); | ||
572 | |||
573 | m_VehicleXmlProcessors.Add("TYPE", ProcessXR_type); | ||
574 | m_VehicleXmlProcessors.Add("FLAGS", ProcessXR_flags); | ||
575 | |||
576 | // Linear properties | ||
577 | m_VehicleXmlProcessors.Add("LMDIR", ProcessXR_linearMotorDirection); | ||
578 | m_VehicleXmlProcessors.Add("LMFTIME", ProcessXR_linearFrictionTimescale); | ||
579 | m_VehicleXmlProcessors.Add("LMDTIME", ProcessXR_linearMotorDecayTimescale); | ||
580 | m_VehicleXmlProcessors.Add("LMTIME", ProcessXR_linearMotorTimescale); | ||
581 | m_VehicleXmlProcessors.Add("LMOFF", ProcessXR_linearMotorOffset); | ||
582 | |||
583 | //Angular properties | ||
584 | m_VehicleXmlProcessors.Add("AMDIR", ProcessXR_angularMotorDirection); | ||
585 | m_VehicleXmlProcessors.Add("AMTIME", ProcessXR_angularMotorTimescale); | ||
586 | m_VehicleXmlProcessors.Add("AMDTIME", ProcessXR_angularMotorDecayTimescale); | ||
587 | m_VehicleXmlProcessors.Add("AMFTIME", ProcessXR_angularFrictionTimescale); | ||
588 | |||
589 | //Deflection properties | ||
590 | m_VehicleXmlProcessors.Add("ADEFF", ProcessXR_angularDeflectionEfficiency); | ||
591 | m_VehicleXmlProcessors.Add("ADTIME", ProcessXR_angularDeflectionTimescale); | ||
592 | m_VehicleXmlProcessors.Add("LDEFF", ProcessXR_linearDeflectionEfficiency); | ||
593 | m_VehicleXmlProcessors.Add("LDTIME", ProcessXR_linearDeflectionTimescale); | ||
594 | |||
595 | //Banking properties | ||
596 | m_VehicleXmlProcessors.Add("BEFF", ProcessXR_bankingEfficiency); | ||
597 | m_VehicleXmlProcessors.Add("BMIX", ProcessXR_bankingMix); | ||
598 | m_VehicleXmlProcessors.Add("BTIME", ProcessXR_bankingTimescale); | ||
599 | |||
600 | //Hover and Buoyancy properties | ||
601 | m_VehicleXmlProcessors.Add("HHEI", ProcessXR_VhoverHeight); | ||
602 | m_VehicleXmlProcessors.Add("HEFF", ProcessXR_VhoverEfficiency); | ||
603 | m_VehicleXmlProcessors.Add("HTIME", ProcessXR_VhoverTimescale); | ||
604 | |||
605 | m_VehicleXmlProcessors.Add("VBUO", ProcessXR_VehicleBuoyancy); | ||
606 | |||
607 | //Attractor properties | ||
608 | m_VehicleXmlProcessors.Add("VAEFF", ProcessXR_verticalAttractionEfficiency); | ||
609 | m_VehicleXmlProcessors.Add("VATIME", ProcessXR_verticalAttractionTimescale); | ||
610 | |||
611 | m_VehicleXmlProcessors.Add("REF_FRAME", ProcessXR_referenceFrame); | ||
612 | |||
613 | vd = new VehicleData(); | ||
614 | |||
615 | reader.ReadStartElement("Vehicle", String.Empty); | ||
616 | |||
617 | errors = EReadProcessors( | ||
618 | m_VehicleXmlProcessors, | ||
619 | reader); | ||
620 | |||
621 | reader.ReadEndElement(); | ||
622 | reader = null; | ||
623 | } | ||
624 | |||
625 | private void ProcessXR_type() | ||
626 | { | ||
627 | vd.m_type = (Vehicle)XRint(); | ||
628 | } | ||
629 | private void ProcessXR_flags() | ||
630 | { | ||
631 | vd.m_flags = (VehicleFlag)XRint(); | ||
632 | } | ||
633 | // Linear properties | ||
634 | private void ProcessXR_linearMotorDirection() | ||
635 | { | ||
636 | vd.m_linearMotorDirection = XRvector(); | ||
637 | } | ||
638 | |||
639 | private void ProcessXR_linearFrictionTimescale() | ||
640 | { | ||
641 | vd.m_linearFrictionTimescale = XRvector(); | ||
642 | } | ||
643 | |||
644 | private void ProcessXR_linearMotorDecayTimescale() | ||
645 | { | ||
646 | vd.m_linearMotorDecayTimescale = XRfloat(); | ||
647 | } | ||
648 | private void ProcessXR_linearMotorTimescale() | ||
649 | { | ||
650 | vd.m_linearMotorTimescale = XRfloat(); | ||
651 | } | ||
652 | private void ProcessXR_linearMotorOffset() | ||
653 | { | ||
654 | vd.m_linearMotorOffset = XRvector(); | ||
655 | } | ||
656 | |||
657 | |||
658 | //Angular properties | ||
659 | private void ProcessXR_angularMotorDirection() | ||
660 | { | ||
661 | vd.m_angularMotorDirection = XRvector(); | ||
662 | } | ||
663 | private void ProcessXR_angularMotorTimescale() | ||
664 | { | ||
665 | vd.m_angularMotorTimescale = XRfloat(); | ||
666 | } | ||
667 | private void ProcessXR_angularMotorDecayTimescale() | ||
668 | { | ||
669 | vd.m_angularMotorDecayTimescale = XRfloat(); | ||
670 | } | ||
671 | private void ProcessXR_angularFrictionTimescale() | ||
672 | { | ||
673 | vd.m_angularFrictionTimescale = XRvector(); | ||
674 | } | ||
675 | |||
676 | //Deflection properties | ||
677 | private void ProcessXR_angularDeflectionEfficiency() | ||
678 | { | ||
679 | vd.m_angularDeflectionEfficiency = XRfloat(); | ||
680 | } | ||
681 | private void ProcessXR_angularDeflectionTimescale() | ||
682 | { | ||
683 | vd.m_angularDeflectionTimescale = XRfloat(); | ||
684 | } | ||
685 | private void ProcessXR_linearDeflectionEfficiency() | ||
686 | { | ||
687 | vd.m_linearDeflectionEfficiency = XRfloat(); | ||
688 | } | ||
689 | private void ProcessXR_linearDeflectionTimescale() | ||
690 | { | ||
691 | vd.m_linearDeflectionTimescale = XRfloat(); | ||
692 | } | ||
693 | |||
694 | //Banking properties | ||
695 | private void ProcessXR_bankingEfficiency() | ||
696 | { | ||
697 | vd.m_bankingEfficiency = XRfloat(); | ||
698 | } | ||
699 | private void ProcessXR_bankingMix() | ||
700 | { | ||
701 | vd.m_bankingMix = XRfloat(); | ||
702 | } | ||
703 | private void ProcessXR_bankingTimescale() | ||
704 | { | ||
705 | vd.m_bankingTimescale = XRfloat(); | ||
706 | } | ||
707 | |||
708 | //Hover and Buoyancy properties | ||
709 | private void ProcessXR_VhoverHeight() | ||
710 | { | ||
711 | vd.m_VhoverHeight = XRfloat(); | ||
712 | } | ||
713 | private void ProcessXR_VhoverEfficiency() | ||
714 | { | ||
715 | vd.m_VhoverEfficiency = XRfloat(); | ||
716 | } | ||
717 | private void ProcessXR_VhoverTimescale() | ||
718 | { | ||
719 | vd.m_VhoverTimescale = XRfloat(); | ||
720 | } | ||
721 | |||
722 | private void ProcessXR_VehicleBuoyancy() | ||
723 | { | ||
724 | vd.m_VehicleBuoyancy = XRfloat(); | ||
725 | } | ||
726 | |||
727 | //Attractor properties | ||
728 | private void ProcessXR_verticalAttractionEfficiency() | ||
729 | { | ||
730 | vd.m_verticalAttractionEfficiency = XRfloat(); | ||
731 | } | ||
732 | private void ProcessXR_verticalAttractionTimescale() | ||
733 | { | ||
734 | vd.m_verticalAttractionTimescale = XRfloat(); | ||
735 | } | ||
736 | |||
737 | private void ProcessXR_referenceFrame() | ||
738 | { | ||
739 | vd.m_referenceFrame = XRquat(); | ||
740 | } | ||
741 | } | ||
742 | } \ No newline at end of file | ||
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index 10b25ed..0089c7d 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -156,7 +156,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
156 | return false; | 156 | return false; |
157 | } | 157 | } |
158 | } | 158 | } |
159 | 159 | ||
160 | if (InventoryService.AddItem(item)) | 160 | if (InventoryService.AddItem(item)) |
161 | { | 161 | { |
162 | int userlevel = 0; | 162 | int userlevel = 0; |
@@ -307,8 +307,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
307 | 307 | ||
308 | // Update item with new asset | 308 | // Update item with new asset |
309 | item.AssetID = asset.FullID; | 309 | item.AssetID = asset.FullID; |
310 | if (group.UpdateInventoryItem(item)) | 310 | group.UpdateInventoryItem(item); |
311 | remoteClient.SendAgentAlertMessage("Script saved", false); | ||
312 | 311 | ||
313 | part.SendPropertiesToClient(remoteClient); | 312 | part.SendPropertiesToClient(remoteClient); |
314 | 313 | ||
@@ -319,12 +318,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
319 | { | 318 | { |
320 | // Needs to determine which engine was running it and use that | 319 | // Needs to determine which engine was running it and use that |
321 | // | 320 | // |
322 | part.Inventory.CreateScriptInstance(item.ItemID, 0, false, DefaultScriptEngine, 0); | 321 | errors = part.Inventory.CreateScriptInstanceEr(item.ItemID, 0, false, DefaultScriptEngine, 0); |
323 | errors = part.Inventory.GetScriptErrors(item.ItemID); | ||
324 | } | ||
325 | else | ||
326 | { | ||
327 | remoteClient.SendAgentAlertMessage("Script saved", false); | ||
328 | } | 322 | } |
329 | 323 | ||
330 | // Tell anyone managing scripts that a script has been reloaded/changed | 324 | // Tell anyone managing scripts that a script has been reloaded/changed |
@@ -392,6 +386,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
392 | 386 | ||
393 | if (UUID.Zero == transactionID) | 387 | if (UUID.Zero == transactionID) |
394 | { | 388 | { |
389 | item.Flags = (item.Flags & ~(uint)255) | (itemUpd.Flags & (uint)255); | ||
395 | item.Name = itemUpd.Name; | 390 | item.Name = itemUpd.Name; |
396 | item.Description = itemUpd.Description; | 391 | item.Description = itemUpd.Description; |
397 | 392 | ||
@@ -779,6 +774,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
779 | return; | 774 | return; |
780 | } | 775 | } |
781 | 776 | ||
777 | if (newName == null) newName = item.Name; | ||
778 | |||
782 | AssetBase asset = AssetService.Get(item.AssetID.ToString()); | 779 | AssetBase asset = AssetService.Get(item.AssetID.ToString()); |
783 | 780 | ||
784 | if (asset != null) | 781 | if (asset != null) |
@@ -835,6 +832,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
835 | } | 832 | } |
836 | 833 | ||
837 | /// <summary> | 834 | /// <summary> |
835 | /// Move an item within the agent's inventory, and leave a copy (used in making a new outfit) | ||
836 | /// </summary> | ||
837 | public void MoveInventoryItemsLeaveCopy(IClientAPI remoteClient, List<InventoryItemBase> items, UUID destfolder) | ||
838 | { | ||
839 | List<InventoryItemBase> moveitems = new List<InventoryItemBase>(); | ||
840 | foreach (InventoryItemBase b in items) | ||
841 | { | ||
842 | CopyInventoryItem(remoteClient, 0, remoteClient.AgentId, b.ID, b.Folder, null); | ||
843 | InventoryItemBase n = InventoryService.GetItem(b); | ||
844 | n.Folder = destfolder; | ||
845 | moveitems.Add(n); | ||
846 | remoteClient.SendInventoryItemCreateUpdate(n, 0); | ||
847 | } | ||
848 | |||
849 | MoveInventoryItem(remoteClient, moveitems); | ||
850 | } | ||
851 | |||
852 | /// <summary> | ||
838 | /// Move an item within the agent's inventory. | 853 | /// Move an item within the agent's inventory. |
839 | /// </summary> | 854 | /// </summary> |
840 | /// <param name="remoteClient"></param> | 855 | /// <param name="remoteClient"></param> |
@@ -1177,6 +1192,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
1177 | { | 1192 | { |
1178 | SceneObjectPart part = GetSceneObjectPart(primLocalId); | 1193 | SceneObjectPart part = GetSceneObjectPart(primLocalId); |
1179 | 1194 | ||
1195 | // Can't move a null item | ||
1196 | if (itemId == UUID.Zero) | ||
1197 | return; | ||
1198 | |||
1180 | if (null == part) | 1199 | if (null == part) |
1181 | { | 1200 | { |
1182 | m_log.WarnFormat( | 1201 | m_log.WarnFormat( |
@@ -1281,21 +1300,28 @@ namespace OpenSim.Region.Framework.Scenes | |||
1281 | return; | 1300 | return; |
1282 | } | 1301 | } |
1283 | 1302 | ||
1284 | if (part.OwnerID != destPart.OwnerID) | 1303 | // Can't transfer this |
1304 | // | ||
1305 | if (part.OwnerID != destPart.OwnerID && (srcTaskItem.CurrentPermissions & (uint)PermissionMask.Transfer) == 0) | ||
1306 | return; | ||
1307 | |||
1308 | bool overrideNoMod = false; | ||
1309 | if ((part.GetEffectiveObjectFlags() & (uint)PrimFlags.AllowInventoryDrop) != 0) | ||
1310 | overrideNoMod = true; | ||
1311 | |||
1312 | if (part.OwnerID != destPart.OwnerID && (destPart.GetEffectiveObjectFlags() & (uint)PrimFlags.AllowInventoryDrop) == 0) | ||
1285 | { | 1313 | { |
1286 | // Source must have transfer permissions | 1314 | // object cannot copy items to an object owned by a different owner |
1287 | if ((srcTaskItem.CurrentPermissions & (uint)PermissionMask.Transfer) == 0) | 1315 | // unless llAllowInventoryDrop has been called |
1288 | return; | ||
1289 | 1316 | ||
1290 | // Object cannot copy items to an object owned by a different owner | 1317 | return; |
1291 | // unless llAllowInventoryDrop has been called on the destination | ||
1292 | if ((destPart.GetEffectiveObjectFlags() & (uint)PrimFlags.AllowInventoryDrop) == 0) | ||
1293 | return; | ||
1294 | } | 1318 | } |
1295 | 1319 | ||
1296 | // must have both move and modify permission to put an item in an object | 1320 | // must have both move and modify permission to put an item in an object |
1297 | if ((part.OwnerMask & ((uint)PermissionMask.Move | (uint)PermissionMask.Modify)) == 0) | 1321 | if (((part.OwnerMask & (uint)PermissionMask.Modify) == 0) && (!overrideNoMod)) |
1322 | { | ||
1298 | return; | 1323 | return; |
1324 | } | ||
1299 | 1325 | ||
1300 | TaskInventoryItem destTaskItem = new TaskInventoryItem(); | 1326 | TaskInventoryItem destTaskItem = new TaskInventoryItem(); |
1301 | 1327 | ||
@@ -1351,6 +1377,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
1351 | 1377 | ||
1352 | public UUID MoveTaskInventoryItems(UUID destID, string category, SceneObjectPart host, List<UUID> items) | 1378 | public UUID MoveTaskInventoryItems(UUID destID, string category, SceneObjectPart host, List<UUID> items) |
1353 | { | 1379 | { |
1380 | SceneObjectPart destPart = GetSceneObjectPart(destID); | ||
1381 | if (destPart != null) // Move into a prim | ||
1382 | { | ||
1383 | foreach(UUID itemID in items) | ||
1384 | MoveTaskInventoryItem(destID, host, itemID); | ||
1385 | return destID; // Prim folder ID == prim ID | ||
1386 | } | ||
1387 | |||
1354 | InventoryFolderBase rootFolder = InventoryService.GetRootFolder(destID); | 1388 | InventoryFolderBase rootFolder = InventoryService.GetRootFolder(destID); |
1355 | 1389 | ||
1356 | UUID newFolderID = UUID.Random(); | 1390 | UUID newFolderID = UUID.Random(); |
@@ -1536,12 +1570,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1536 | agentTransactions.HandleTaskItemUpdateFromTransaction( | 1570 | agentTransactions.HandleTaskItemUpdateFromTransaction( |
1537 | remoteClient, part, transactionID, currentItem); | 1571 | remoteClient, part, transactionID, currentItem); |
1538 | 1572 | ||
1539 | if ((InventoryType)itemInfo.InvType == InventoryType.Notecard) | 1573 | // if ((InventoryType)itemInfo.InvType == InventoryType.Notecard) |
1540 | remoteClient.SendAgentAlertMessage("Notecard saved", false); | 1574 | // remoteClient.SendAgentAlertMessage("Notecard saved", false); |
1541 | else if ((InventoryType)itemInfo.InvType == InventoryType.LSL) | 1575 | // else if ((InventoryType)itemInfo.InvType == InventoryType.LSL) |
1542 | remoteClient.SendAgentAlertMessage("Script saved", false); | 1576 | // remoteClient.SendAgentAlertMessage("Script saved", false); |
1543 | else | 1577 | // else |
1544 | remoteClient.SendAgentAlertMessage("Item saved", false); | 1578 | // remoteClient.SendAgentAlertMessage("Item saved", false); |
1545 | } | 1579 | } |
1546 | } | 1580 | } |
1547 | 1581 | ||
@@ -1725,7 +1759,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1725 | } | 1759 | } |
1726 | 1760 | ||
1727 | AssetBase asset = CreateAsset(itemBase.Name, itemBase.Description, (sbyte)itemBase.AssetType, | 1761 | AssetBase asset = CreateAsset(itemBase.Name, itemBase.Description, (sbyte)itemBase.AssetType, |
1728 | Encoding.ASCII.GetBytes("default\n{\n state_entry()\n {\n llSay(0, \"Script running\");\n }\n}"), | 1762 | Encoding.ASCII.GetBytes("default\n{\n state_entry()\n {\n llSay(0, \"Script running\");\n }\n\n touch_start(integer num)\n {\n }\n}"), |
1729 | agentID); | 1763 | agentID); |
1730 | AssetService.Store(asset); | 1764 | AssetService.Store(asset); |
1731 | 1765 | ||
@@ -1881,23 +1915,32 @@ namespace OpenSim.Region.Framework.Scenes | |||
1881 | // build a list of eligible objects | 1915 | // build a list of eligible objects |
1882 | List<uint> deleteIDs = new List<uint>(); | 1916 | List<uint> deleteIDs = new List<uint>(); |
1883 | List<SceneObjectGroup> deleteGroups = new List<SceneObjectGroup>(); | 1917 | List<SceneObjectGroup> deleteGroups = new List<SceneObjectGroup>(); |
1884 | 1918 | List<SceneObjectGroup> takeGroups = new List<SceneObjectGroup>(); | |
1885 | // Start with true for both, then remove the flags if objects | ||
1886 | // that we can't derez are part of the selection | ||
1887 | bool permissionToTake = true; | ||
1888 | bool permissionToTakeCopy = true; | ||
1889 | bool permissionToDelete = true; | ||
1890 | 1919 | ||
1891 | foreach (uint localID in localIDs) | 1920 | foreach (uint localID in localIDs) |
1892 | { | 1921 | { |
1922 | // Start with true for both, then remove the flags if objects | ||
1923 | // that we can't derez are part of the selection | ||
1924 | bool permissionToTake = true; | ||
1925 | bool permissionToTakeCopy = true; | ||
1926 | bool permissionToDelete = true; | ||
1927 | |||
1893 | // Invalid id | 1928 | // Invalid id |
1894 | SceneObjectPart part = GetSceneObjectPart(localID); | 1929 | SceneObjectPart part = GetSceneObjectPart(localID); |
1895 | if (part == null) | 1930 | if (part == null) |
1931 | { | ||
1932 | //Client still thinks the object exists, kill it | ||
1933 | deleteIDs.Add(localID); | ||
1896 | continue; | 1934 | continue; |
1935 | } | ||
1897 | 1936 | ||
1898 | // Already deleted by someone else | 1937 | // Already deleted by someone else |
1899 | if (part.ParentGroup.IsDeleted) | 1938 | if (part.ParentGroup.IsDeleted) |
1939 | { | ||
1940 | //Client still thinks the object exists, kill it | ||
1941 | deleteIDs.Add(localID); | ||
1900 | continue; | 1942 | continue; |
1943 | } | ||
1901 | 1944 | ||
1902 | // Can't delete child prims | 1945 | // Can't delete child prims |
1903 | if (part != part.ParentGroup.RootPart) | 1946 | if (part != part.ParentGroup.RootPart) |
@@ -1905,9 +1948,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1905 | 1948 | ||
1906 | SceneObjectGroup grp = part.ParentGroup; | 1949 | SceneObjectGroup grp = part.ParentGroup; |
1907 | 1950 | ||
1908 | deleteIDs.Add(localID); | ||
1909 | deleteGroups.Add(grp); | ||
1910 | |||
1911 | if (remoteClient == null) | 1951 | if (remoteClient == null) |
1912 | { | 1952 | { |
1913 | // Autoreturn has a null client. Nothing else does. So | 1953 | // Autoreturn has a null client. Nothing else does. So |
@@ -1924,81 +1964,193 @@ namespace OpenSim.Region.Framework.Scenes | |||
1924 | } | 1964 | } |
1925 | else | 1965 | else |
1926 | { | 1966 | { |
1927 | if (!Permissions.CanTakeCopyObject(grp.UUID, remoteClient.AgentId)) | 1967 | if (action == DeRezAction.TakeCopy) |
1968 | { | ||
1969 | if (!Permissions.CanTakeCopyObject(grp.UUID, remoteClient.AgentId)) | ||
1970 | permissionToTakeCopy = false; | ||
1971 | } | ||
1972 | else | ||
1973 | { | ||
1928 | permissionToTakeCopy = false; | 1974 | permissionToTakeCopy = false; |
1929 | 1975 | } | |
1930 | if (!Permissions.CanTakeObject(grp.UUID, remoteClient.AgentId)) | 1976 | if (!Permissions.CanTakeObject(grp.UUID, remoteClient.AgentId)) |
1931 | permissionToTake = false; | 1977 | permissionToTake = false; |
1932 | 1978 | ||
1933 | if (!Permissions.CanDeleteObject(grp.UUID, remoteClient.AgentId)) | 1979 | if (!Permissions.CanDeleteObject(grp.UUID, remoteClient.AgentId)) |
1934 | permissionToDelete = false; | 1980 | permissionToDelete = false; |
1935 | } | 1981 | } |
1936 | } | ||
1937 | 1982 | ||
1938 | // Handle god perms | 1983 | // Handle god perms |
1939 | if ((remoteClient != null) && Permissions.IsGod(remoteClient.AgentId)) | 1984 | if ((remoteClient != null) && Permissions.IsGod(remoteClient.AgentId)) |
1940 | { | 1985 | { |
1941 | permissionToTake = true; | 1986 | permissionToTake = true; |
1942 | permissionToTakeCopy = true; | 1987 | permissionToTakeCopy = true; |
1943 | permissionToDelete = true; | 1988 | permissionToDelete = true; |
1944 | } | 1989 | } |
1945 | 1990 | ||
1946 | // If we're re-saving, we don't even want to delete | 1991 | // If we're re-saving, we don't even want to delete |
1947 | if (action == DeRezAction.SaveToExistingUserInventoryItem) | 1992 | if (action == DeRezAction.SaveToExistingUserInventoryItem) |
1948 | permissionToDelete = false; | 1993 | permissionToDelete = false; |
1949 | 1994 | ||
1950 | // if we want to take a copy, we also don't want to delete | 1995 | // if we want to take a copy, we also don't want to delete |
1951 | // Note: after this point, the permissionToTakeCopy flag | 1996 | // Note: after this point, the permissionToTakeCopy flag |
1952 | // becomes irrelevant. It already includes the permissionToTake | 1997 | // becomes irrelevant. It already includes the permissionToTake |
1953 | // permission and after excluding no copy items here, we can | 1998 | // permission and after excluding no copy items here, we can |
1954 | // just use that. | 1999 | // just use that. |
1955 | if (action == DeRezAction.TakeCopy) | 2000 | if (action == DeRezAction.TakeCopy) |
1956 | { | 2001 | { |
1957 | // If we don't have permission, stop right here | 2002 | // If we don't have permission, stop right here |
1958 | if (!permissionToTakeCopy) | 2003 | if (!permissionToTakeCopy) |
1959 | return; | 2004 | return; |
1960 | 2005 | ||
1961 | permissionToTake = true; | 2006 | permissionToTake = true; |
1962 | // Don't delete | 2007 | // Don't delete |
1963 | permissionToDelete = false; | 2008 | permissionToDelete = false; |
1964 | } | 2009 | } |
1965 | 2010 | ||
1966 | if (action == DeRezAction.Return) | 2011 | if (action == DeRezAction.Return) |
1967 | { | ||
1968 | if (remoteClient != null) | ||
1969 | { | 2012 | { |
1970 | if (Permissions.CanReturnObjects( | 2013 | if (remoteClient != null) |
1971 | null, | ||
1972 | remoteClient.AgentId, | ||
1973 | deleteGroups)) | ||
1974 | { | 2014 | { |
1975 | permissionToTake = true; | 2015 | if (Permissions.CanReturnObjects( |
1976 | permissionToDelete = true; | 2016 | null, |
1977 | 2017 | remoteClient.AgentId, | |
1978 | foreach (SceneObjectGroup g in deleteGroups) | 2018 | deleteGroups)) |
1979 | { | 2019 | { |
1980 | AddReturn(g.OwnerID == g.GroupID ? g.LastOwnerID : g.OwnerID, g.Name, g.AbsolutePosition, "parcel owner return"); | 2020 | permissionToTake = true; |
2021 | permissionToDelete = true; | ||
2022 | |||
2023 | AddReturn(grp.OwnerID == grp.GroupID ? grp.LastOwnerID : grp.OwnerID, grp.Name, grp.AbsolutePosition, "parcel owner return"); | ||
1981 | } | 2024 | } |
1982 | } | 2025 | } |
2026 | else // Auto return passes through here with null agent | ||
2027 | { | ||
2028 | permissionToTake = true; | ||
2029 | permissionToDelete = true; | ||
2030 | } | ||
1983 | } | 2031 | } |
1984 | else // Auto return passes through here with null agent | 2032 | |
2033 | if (permissionToTake && (!permissionToDelete)) | ||
2034 | takeGroups.Add(grp); | ||
2035 | |||
2036 | if (permissionToDelete) | ||
1985 | { | 2037 | { |
1986 | permissionToTake = true; | 2038 | if (permissionToTake) |
1987 | permissionToDelete = true; | 2039 | deleteGroups.Add(grp); |
2040 | deleteIDs.Add(grp.LocalId); | ||
1988 | } | 2041 | } |
1989 | } | 2042 | } |
1990 | 2043 | ||
1991 | if (permissionToTake) | 2044 | SendKillObject(deleteIDs); |
2045 | |||
2046 | if (deleteGroups.Count > 0) | ||
1992 | { | 2047 | { |
2048 | foreach (SceneObjectGroup g in deleteGroups) | ||
2049 | deleteIDs.Remove(g.LocalId); | ||
2050 | |||
1993 | m_asyncSceneObjectDeleter.DeleteToInventory( | 2051 | m_asyncSceneObjectDeleter.DeleteToInventory( |
1994 | action, destinationID, deleteGroups, remoteClient, | 2052 | action, destinationID, deleteGroups, remoteClient, |
1995 | permissionToDelete); | 2053 | true); |
2054 | } | ||
2055 | if (takeGroups.Count > 0) | ||
2056 | { | ||
2057 | m_asyncSceneObjectDeleter.DeleteToInventory( | ||
2058 | action, destinationID, takeGroups, remoteClient, | ||
2059 | false); | ||
1996 | } | 2060 | } |
1997 | else if (permissionToDelete) | 2061 | if (deleteIDs.Count > 0) |
1998 | { | 2062 | { |
1999 | foreach (SceneObjectGroup g in deleteGroups) | 2063 | foreach (SceneObjectGroup g in deleteGroups) |
2000 | DeleteSceneObject(g, false); | 2064 | DeleteSceneObject(g, true); |
2065 | } | ||
2066 | } | ||
2067 | |||
2068 | public UUID attachObjectAssetStore(IClientAPI remoteClient, SceneObjectGroup grp, UUID AgentId, out UUID itemID) | ||
2069 | { | ||
2070 | itemID = UUID.Zero; | ||
2071 | if (grp != null) | ||
2072 | { | ||
2073 | Vector3 inventoryStoredPosition = new Vector3 | ||
2074 | (((grp.AbsolutePosition.X > (int)Constants.RegionSize) | ||
2075 | ? 250 | ||
2076 | : grp.AbsolutePosition.X) | ||
2077 | , | ||
2078 | (grp.AbsolutePosition.X > (int)Constants.RegionSize) | ||
2079 | ? 250 | ||
2080 | : grp.AbsolutePosition.X, | ||
2081 | grp.AbsolutePosition.Z); | ||
2082 | |||
2083 | Vector3 originalPosition = grp.AbsolutePosition; | ||
2084 | |||
2085 | grp.AbsolutePosition = inventoryStoredPosition; | ||
2086 | |||
2087 | string sceneObjectXml = SceneObjectSerializer.ToOriginalXmlFormat(grp); | ||
2088 | |||
2089 | grp.AbsolutePosition = originalPosition; | ||
2090 | |||
2091 | AssetBase asset = CreateAsset( | ||
2092 | grp.GetPartName(grp.LocalId), | ||
2093 | grp.GetPartDescription(grp.LocalId), | ||
2094 | (sbyte)AssetType.Object, | ||
2095 | Utils.StringToBytes(sceneObjectXml), | ||
2096 | remoteClient.AgentId); | ||
2097 | AssetService.Store(asset); | ||
2098 | |||
2099 | InventoryItemBase item = new InventoryItemBase(); | ||
2100 | item.CreatorId = grp.RootPart.CreatorID.ToString(); | ||
2101 | item.CreatorData = grp.RootPart.CreatorData; | ||
2102 | item.Owner = remoteClient.AgentId; | ||
2103 | item.ID = UUID.Random(); | ||
2104 | item.AssetID = asset.FullID; | ||
2105 | item.Description = asset.Description; | ||
2106 | item.Name = asset.Name; | ||
2107 | item.AssetType = asset.Type; | ||
2108 | item.InvType = (int)InventoryType.Object; | ||
2109 | |||
2110 | InventoryFolderBase folder = InventoryService.GetFolderForType(remoteClient.AgentId, AssetType.Object); | ||
2111 | if (folder != null) | ||
2112 | item.Folder = folder.ID; | ||
2113 | else // oopsies | ||
2114 | item.Folder = UUID.Zero; | ||
2115 | |||
2116 | // Set up base perms properly | ||
2117 | uint permsBase = (uint)(PermissionMask.Move | PermissionMask.Copy | PermissionMask.Transfer | PermissionMask.Modify); | ||
2118 | permsBase &= grp.RootPart.BaseMask; | ||
2119 | permsBase |= (uint)PermissionMask.Move; | ||
2120 | |||
2121 | // Make sure we don't lock it | ||
2122 | grp.RootPart.NextOwnerMask |= (uint)PermissionMask.Move; | ||
2123 | |||
2124 | if ((remoteClient.AgentId != grp.RootPart.OwnerID) && Permissions.PropagatePermissions()) | ||
2125 | { | ||
2126 | item.BasePermissions = permsBase & grp.RootPart.NextOwnerMask; | ||
2127 | item.CurrentPermissions = permsBase & grp.RootPart.NextOwnerMask; | ||
2128 | item.NextPermissions = permsBase & grp.RootPart.NextOwnerMask; | ||
2129 | item.EveryOnePermissions = permsBase & grp.RootPart.EveryoneMask & grp.RootPart.NextOwnerMask; | ||
2130 | item.GroupPermissions = permsBase & grp.RootPart.GroupMask & grp.RootPart.NextOwnerMask; | ||
2131 | } | ||
2132 | else | ||
2133 | { | ||
2134 | item.BasePermissions = permsBase; | ||
2135 | item.CurrentPermissions = permsBase & grp.RootPart.OwnerMask; | ||
2136 | item.NextPermissions = permsBase & grp.RootPart.NextOwnerMask; | ||
2137 | item.EveryOnePermissions = permsBase & grp.RootPart.EveryoneMask; | ||
2138 | item.GroupPermissions = permsBase & grp.RootPart.GroupMask; | ||
2139 | } | ||
2140 | item.CreationDate = Util.UnixTimeSinceEpoch(); | ||
2141 | |||
2142 | // sets itemID so client can show item as 'attached' in inventory | ||
2143 | grp.FromItemID = item.ID; | ||
2144 | |||
2145 | if (AddInventoryItem(item)) | ||
2146 | remoteClient.SendInventoryItemCreateUpdate(item, 0); | ||
2147 | else | ||
2148 | m_dialogModule.SendAlertToUser(remoteClient, "Operation failed"); | ||
2149 | |||
2150 | itemID = item.ID; | ||
2151 | return item.AssetID; | ||
2001 | } | 2152 | } |
2153 | return UUID.Zero; | ||
2002 | } | 2154 | } |
2003 | 2155 | ||
2004 | /// <summary> | 2156 | /// <summary> |
@@ -2127,6 +2279,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
2127 | 2279 | ||
2128 | public void SetScriptRunning(IClientAPI controllingClient, UUID objectID, UUID itemID, bool running) | 2280 | public void SetScriptRunning(IClientAPI controllingClient, UUID objectID, UUID itemID, bool running) |
2129 | { | 2281 | { |
2282 | if (!Permissions.CanEditScript(itemID, objectID, controllingClient.AgentId)) | ||
2283 | return; | ||
2284 | |||
2130 | SceneObjectPart part = GetSceneObjectPart(objectID); | 2285 | SceneObjectPart part = GetSceneObjectPart(objectID); |
2131 | if (part == null) | 2286 | if (part == null) |
2132 | return; | 2287 | return; |
diff --git a/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs index 2701d6e..cf68ff4 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs | |||
@@ -149,27 +149,47 @@ namespace OpenSim.Region.Framework.Scenes | |||
149 | /// <param name="remoteClient"></param> | 149 | /// <param name="remoteClient"></param> |
150 | public void SelectPrim(uint primLocalID, IClientAPI remoteClient) | 150 | public void SelectPrim(uint primLocalID, IClientAPI remoteClient) |
151 | { | 151 | { |
152 | /* | ||
153 | SceneObjectPart part = GetSceneObjectPart(primLocalID); | ||
154 | |||
155 | if (null == part) | ||
156 | return; | ||
157 | |||
158 | if (part.IsRoot) | ||
159 | { | ||
160 | SceneObjectGroup sog = part.ParentGroup; | ||
161 | sog.SendPropertiesToClient(remoteClient); | ||
162 | |||
163 | // A prim is only tainted if it's allowed to be edited by the person clicking it. | ||
164 | if (Permissions.CanEditObject(sog.UUID, remoteClient.AgentId) | ||
165 | || Permissions.CanMoveObject(sog.UUID, remoteClient.AgentId)) | ||
166 | { | ||
167 | sog.IsSelected = true; | ||
168 | EventManager.TriggerParcelPrimCountTainted(); | ||
169 | } | ||
170 | } | ||
171 | else | ||
172 | { | ||
173 | part.SendPropertiesToClient(remoteClient); | ||
174 | } | ||
175 | */ | ||
152 | SceneObjectPart part = GetSceneObjectPart(primLocalID); | 176 | SceneObjectPart part = GetSceneObjectPart(primLocalID); |
153 | 177 | ||
154 | if (null == part) | 178 | if (null == part) |
155 | return; | 179 | return; |
156 | 180 | ||
157 | if (part.IsRoot) | 181 | SceneObjectGroup sog = part.ParentGroup; |
158 | { | 182 | if (sog == null) |
159 | SceneObjectGroup sog = part.ParentGroup; | 183 | return; |
160 | sog.SendPropertiesToClient(remoteClient); | ||
161 | sog.IsSelected = true; | ||
162 | 184 | ||
163 | // A prim is only tainted if it's allowed to be edited by the person clicking it. | 185 | part.SendPropertiesToClient(remoteClient); |
164 | if (Permissions.CanEditObject(sog.UUID, remoteClient.AgentId) | 186 | |
165 | || Permissions.CanMoveObject(sog.UUID, remoteClient.AgentId)) | 187 | // A prim is only tainted if it's allowed to be edited by the person clicking it. |
166 | { | 188 | if (Permissions.CanEditObject(sog.UUID, remoteClient.AgentId) |
167 | EventManager.TriggerParcelPrimCountTainted(); | 189 | || Permissions.CanMoveObject(sog.UUID, remoteClient.AgentId)) |
168 | } | ||
169 | } | ||
170 | else | ||
171 | { | 190 | { |
172 | part.SendPropertiesToClient(remoteClient); | 191 | part.IsSelected = true; |
192 | EventManager.TriggerParcelPrimCountTainted(); | ||
173 | } | 193 | } |
174 | } | 194 | } |
175 | 195 | ||
@@ -222,7 +242,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
222 | SceneObjectPart part = GetSceneObjectPart(primLocalID); | 242 | SceneObjectPart part = GetSceneObjectPart(primLocalID); |
223 | if (part == null) | 243 | if (part == null) |
224 | return; | 244 | return; |
225 | 245 | /* | |
226 | // A deselect packet contains all the local prims being deselected. However, since selection is still | 246 | // A deselect packet contains all the local prims being deselected. However, since selection is still |
227 | // group based we only want the root prim to trigger a full update - otherwise on objects with many prims | 247 | // group based we only want the root prim to trigger a full update - otherwise on objects with many prims |
228 | // we end up sending many duplicate ObjectUpdates | 248 | // we end up sending many duplicate ObjectUpdates |
@@ -235,7 +255,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
235 | // handled by group, but by prim. Legacy cruft. | 255 | // handled by group, but by prim. Legacy cruft. |
236 | // TODO: Make selection flagging per prim! | 256 | // TODO: Make selection flagging per prim! |
237 | // | 257 | // |
238 | part.ParentGroup.IsSelected = false; | 258 | if (Permissions.CanEditObject(part.ParentGroup.UUID, remoteClient.AgentId) |
259 | || Permissions.CanMoveObject(part.ParentGroup.UUID, remoteClient.AgentId)) | ||
260 | part.ParentGroup.IsSelected = false; | ||
239 | 261 | ||
240 | if (part.ParentGroup.IsAttachment) | 262 | if (part.ParentGroup.IsAttachment) |
241 | isAttachment = true; | 263 | isAttachment = true; |
@@ -255,6 +277,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
255 | part.UUID, remoteClient.AgentId)) | 277 | part.UUID, remoteClient.AgentId)) |
256 | EventManager.TriggerParcelPrimCountTainted(); | 278 | EventManager.TriggerParcelPrimCountTainted(); |
257 | } | 279 | } |
280 | */ | ||
281 | |||
282 | bool oldgprSelect = part.ParentGroup.IsSelected; | ||
283 | |||
284 | // This is wrong, wrong, wrong. Selection should not be | ||
285 | // handled by group, but by prim. Legacy cruft. | ||
286 | // TODO: Make selection flagging per prim! | ||
287 | // | ||
288 | if (Permissions.CanEditObject(part.ParentGroup.UUID, remoteClient.AgentId) | ||
289 | || Permissions.CanMoveObject(part.ParentGroup.UUID, remoteClient.AgentId)) | ||
290 | { | ||
291 | part.IsSelected = false; | ||
292 | if (!part.ParentGroup.IsAttachment && oldgprSelect != part.ParentGroup.IsSelected) | ||
293 | EventManager.TriggerParcelPrimCountTainted(); | ||
294 | } | ||
295 | |||
258 | } | 296 | } |
259 | 297 | ||
260 | public virtual void ProcessMoneyTransferRequest(UUID source, UUID destination, int amount, | 298 | public virtual void ProcessMoneyTransferRequest(UUID source, UUID destination, int amount, |
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index a87dfb7..85b1242 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -118,6 +118,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
118 | // TODO: need to figure out how allow client agents but deny | 118 | // TODO: need to figure out how allow client agents but deny |
119 | // root agents when ACL denies access to root agent | 119 | // root agents when ACL denies access to root agent |
120 | public bool m_strictAccessControl = true; | 120 | public bool m_strictAccessControl = true; |
121 | public bool m_seeIntoBannedRegion = false; | ||
121 | public int MaxUndoCount = 5; | 122 | public int MaxUndoCount = 5; |
122 | // Using this for RegionReady module to prevent LoginsDisabled from changing under our feet; | 123 | // Using this for RegionReady module to prevent LoginsDisabled from changing under our feet; |
123 | public bool LoginLock = false; | 124 | public bool LoginLock = false; |
@@ -133,12 +134,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
133 | 134 | ||
134 | protected int m_splitRegionID; | 135 | protected int m_splitRegionID; |
135 | protected Timer m_restartWaitTimer = new Timer(); | 136 | protected Timer m_restartWaitTimer = new Timer(); |
137 | protected Timer m_timerWatchdog = new Timer(); | ||
136 | protected List<RegionInfo> m_regionRestartNotifyList = new List<RegionInfo>(); | 138 | protected List<RegionInfo> m_regionRestartNotifyList = new List<RegionInfo>(); |
137 | protected List<RegionInfo> m_neighbours = new List<RegionInfo>(); | 139 | protected List<RegionInfo> m_neighbours = new List<RegionInfo>(); |
138 | protected string m_simulatorVersion = "OpenSimulator Server"; | 140 | protected string m_simulatorVersion = "OpenSimulator Server"; |
139 | protected ModuleLoader m_moduleLoader; | 141 | protected ModuleLoader m_moduleLoader; |
140 | protected AgentCircuitManager m_authenticateHandler; | 142 | protected AgentCircuitManager m_authenticateHandler; |
141 | protected SceneCommunicationService m_sceneGridService; | 143 | protected SceneCommunicationService m_sceneGridService; |
144 | protected ISnmpModule m_snmpService = null; | ||
142 | 145 | ||
143 | protected ISimulationDataService m_SimulationDataService; | 146 | protected ISimulationDataService m_SimulationDataService; |
144 | protected IEstateDataService m_EstateDataService; | 147 | protected IEstateDataService m_EstateDataService; |
@@ -201,7 +204,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
201 | private int m_update_events = 1; | 204 | private int m_update_events = 1; |
202 | private int m_update_backup = 200; | 205 | private int m_update_backup = 200; |
203 | private int m_update_terrain = 50; | 206 | private int m_update_terrain = 50; |
204 | // private int m_update_land = 1; | 207 | private int m_update_land = 10; |
205 | private int m_update_coarse_locations = 50; | 208 | private int m_update_coarse_locations = 50; |
206 | 209 | ||
207 | private int agentMS; | 210 | private int agentMS; |
@@ -220,6 +223,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
220 | /// </summary> | 223 | /// </summary> |
221 | private int m_lastFrameTick; | 224 | private int m_lastFrameTick; |
222 | 225 | ||
226 | public bool CombineRegions = false; | ||
223 | /// <summary> | 227 | /// <summary> |
224 | /// Tick at which the last maintenance run occurred. | 228 | /// Tick at which the last maintenance run occurred. |
225 | /// </summary> | 229 | /// </summary> |
@@ -250,6 +254,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
250 | /// </summary> | 254 | /// </summary> |
251 | private int m_LastLogin; | 255 | private int m_LastLogin; |
252 | 256 | ||
257 | private int m_lastIncoming; | ||
258 | private int m_lastOutgoing; | ||
259 | private int m_hbRestarts = 0; | ||
260 | |||
261 | |||
253 | /// <summary> | 262 | /// <summary> |
254 | /// Thread that runs the scene loop. | 263 | /// Thread that runs the scene loop. |
255 | /// </summary> | 264 | /// </summary> |
@@ -265,7 +274,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
265 | private volatile bool m_shuttingDown; | 274 | private volatile bool m_shuttingDown; |
266 | 275 | ||
267 | // private int m_lastUpdate; | 276 | // private int m_lastUpdate; |
268 | // private bool m_firstHeartbeat = true; | 277 | private bool m_firstHeartbeat = true; |
269 | 278 | ||
270 | private UpdatePrioritizationSchemes m_priorityScheme = UpdatePrioritizationSchemes.Time; | 279 | private UpdatePrioritizationSchemes m_priorityScheme = UpdatePrioritizationSchemes.Time; |
271 | private bool m_reprioritizationEnabled = true; | 280 | private bool m_reprioritizationEnabled = true; |
@@ -310,6 +319,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
310 | get { return m_sceneGridService; } | 319 | get { return m_sceneGridService; } |
311 | } | 320 | } |
312 | 321 | ||
322 | public ISnmpModule SnmpService | ||
323 | { | ||
324 | get | ||
325 | { | ||
326 | if (m_snmpService == null) | ||
327 | { | ||
328 | m_snmpService = RequestModuleInterface<ISnmpModule>(); | ||
329 | } | ||
330 | |||
331 | return m_snmpService; | ||
332 | } | ||
333 | } | ||
334 | |||
313 | public ISimulationDataService SimulationDataService | 335 | public ISimulationDataService SimulationDataService |
314 | { | 336 | { |
315 | get | 337 | get |
@@ -592,6 +614,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
592 | m_EstateDataService = estateDataService; | 614 | m_EstateDataService = estateDataService; |
593 | m_regionHandle = m_regInfo.RegionHandle; | 615 | m_regionHandle = m_regInfo.RegionHandle; |
594 | m_regionName = m_regInfo.RegionName; | 616 | m_regionName = m_regInfo.RegionName; |
617 | m_lastIncoming = 0; | ||
618 | m_lastOutgoing = 0; | ||
595 | 619 | ||
596 | m_asyncSceneObjectDeleter = new AsyncSceneObjectGroupDeleter(this); | 620 | m_asyncSceneObjectDeleter = new AsyncSceneObjectGroupDeleter(this); |
597 | m_asyncSceneObjectDeleter.Enabled = true; | 621 | m_asyncSceneObjectDeleter.Enabled = true; |
@@ -672,98 +696,107 @@ namespace OpenSim.Region.Framework.Scenes | |||
672 | 696 | ||
673 | // Region config overrides global config | 697 | // Region config overrides global config |
674 | // | 698 | // |
675 | if (m_config.Configs["Startup"] != null) | 699 | try |
676 | { | 700 | { |
677 | IConfig startupConfig = m_config.Configs["Startup"]; | 701 | if (m_config.Configs["Startup"] != null) |
678 | |||
679 | m_defaultDrawDistance = startupConfig.GetFloat("DefaultDrawDistance",m_defaultDrawDistance); | ||
680 | m_useBackup = startupConfig.GetBoolean("UseSceneBackup", m_useBackup); | ||
681 | if (!m_useBackup) | ||
682 | m_log.InfoFormat("[SCENE]: Backup has been disabled for {0}", RegionInfo.RegionName); | ||
683 | |||
684 | //Animation states | ||
685 | m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false); | ||
686 | |||
687 | PhysicalPrims = startupConfig.GetBoolean("physical_prim", PhysicalPrims); | ||
688 | CollidablePrims = startupConfig.GetBoolean("collidable_prim", CollidablePrims); | ||
689 | |||
690 | m_maxNonphys = startupConfig.GetFloat("NonphysicalPrimMax", m_maxNonphys); | ||
691 | if (RegionInfo.NonphysPrimMax > 0) | ||
692 | { | 702 | { |
693 | m_maxNonphys = RegionInfo.NonphysPrimMax; | 703 | IConfig startupConfig = m_config.Configs["Startup"]; |
694 | } | ||
695 | 704 | ||
696 | m_maxPhys = startupConfig.GetFloat("PhysicalPrimMax", m_maxPhys); | 705 | m_defaultDrawDistance = startupConfig.GetFloat("DefaultDrawDistance",m_defaultDrawDistance); |
706 | m_useBackup = startupConfig.GetBoolean("UseSceneBackup", m_useBackup); | ||
707 | if (!m_useBackup) | ||
708 | m_log.InfoFormat("[SCENE]: Backup has been disabled for {0}", RegionInfo.RegionName); | ||
709 | |||
710 | //Animation states | ||
711 | m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false); | ||
697 | 712 | ||
698 | if (RegionInfo.PhysPrimMax > 0) | 713 | PhysicalPrims = startupConfig.GetBoolean("physical_prim", true); |
699 | { | 714 | CollidablePrims = startupConfig.GetBoolean("collidable_prim", true); |
700 | m_maxPhys = RegionInfo.PhysPrimMax; | ||
701 | } | ||
702 | 715 | ||
703 | // Here, if clamping is requested in either global or | 716 | m_maxNonphys = startupConfig.GetFloat("NonphysicalPrimMax", m_maxNonphys); |
704 | // local config, it will be used | 717 | if (RegionInfo.NonphysPrimMax > 0) |
705 | // | 718 | { |
706 | m_clampPrimSize = startupConfig.GetBoolean("ClampPrimSize", m_clampPrimSize); | 719 | m_maxNonphys = RegionInfo.NonphysPrimMax; |
707 | if (RegionInfo.ClampPrimSize) | 720 | } |
708 | { | ||
709 | m_clampPrimSize = true; | ||
710 | } | ||
711 | 721 | ||
712 | m_trustBinaries = startupConfig.GetBoolean("TrustBinaries", m_trustBinaries); | 722 | m_maxPhys = startupConfig.GetFloat("PhysicalPrimMax", m_maxPhys); |
713 | m_allowScriptCrossings = startupConfig.GetBoolean("AllowScriptCrossing", m_allowScriptCrossings); | ||
714 | m_dontPersistBefore = | ||
715 | startupConfig.GetLong("MinimumTimeBeforePersistenceConsidered", DEFAULT_MIN_TIME_FOR_PERSISTENCE); | ||
716 | m_dontPersistBefore *= 10000000; | ||
717 | m_persistAfter = | ||
718 | startupConfig.GetLong("MaximumTimeBeforePersistenceConsidered", DEFAULT_MAX_TIME_FOR_PERSISTENCE); | ||
719 | m_persistAfter *= 10000000; | ||
720 | 723 | ||
721 | m_defaultScriptEngine = startupConfig.GetString("DefaultScriptEngine", "XEngine"); | 724 | if (RegionInfo.PhysPrimMax > 0) |
725 | { | ||
726 | m_maxPhys = RegionInfo.PhysPrimMax; | ||
727 | } | ||
722 | 728 | ||
723 | IConfig packetConfig = m_config.Configs["PacketPool"]; | 729 | // Here, if clamping is requested in either global or |
724 | if (packetConfig != null) | 730 | // local config, it will be used |
725 | { | 731 | // |
726 | PacketPool.Instance.RecyclePackets = packetConfig.GetBoolean("RecyclePackets", true); | 732 | m_clampPrimSize = startupConfig.GetBoolean("ClampPrimSize", m_clampPrimSize); |
727 | PacketPool.Instance.RecycleDataBlocks = packetConfig.GetBoolean("RecycleDataBlocks", true); | 733 | if (RegionInfo.ClampPrimSize) |
728 | } | 734 | { |
735 | m_clampPrimSize = true; | ||
736 | } | ||
729 | 737 | ||
730 | m_strictAccessControl = startupConfig.GetBoolean("StrictAccessControl", m_strictAccessControl); | 738 | m_trustBinaries = startupConfig.GetBoolean("TrustBinaries", m_trustBinaries); |
739 | m_allowScriptCrossings = startupConfig.GetBoolean("AllowScriptCrossing", m_allowScriptCrossings); | ||
740 | m_dontPersistBefore = | ||
741 | startupConfig.GetLong("MinimumTimeBeforePersistenceConsidered", DEFAULT_MIN_TIME_FOR_PERSISTENCE); | ||
742 | m_dontPersistBefore *= 10000000; | ||
743 | m_persistAfter = | ||
744 | startupConfig.GetLong("MaximumTimeBeforePersistenceConsidered", DEFAULT_MAX_TIME_FOR_PERSISTENCE); | ||
745 | m_persistAfter *= 10000000; | ||
731 | 746 | ||
732 | m_generateMaptiles = startupConfig.GetBoolean("GenerateMaptiles", true); | 747 | m_defaultScriptEngine = startupConfig.GetString("DefaultScriptEngine", "XEngine"); |
733 | if (m_generateMaptiles) | 748 | m_log.InfoFormat("[SCENE]: Default script engine {0}", m_defaultScriptEngine); |
734 | { | 749 | |
735 | int maptileRefresh = startupConfig.GetInt("MaptileRefresh", 0); | 750 | IConfig packetConfig = m_config.Configs["PacketPool"]; |
736 | if (maptileRefresh != 0) | 751 | if (packetConfig != null) |
737 | { | 752 | { |
738 | m_mapGenerationTimer.Interval = maptileRefresh * 1000; | 753 | PacketPool.Instance.RecyclePackets = packetConfig.GetBoolean("RecyclePackets", true); |
739 | m_mapGenerationTimer.Elapsed += RegenerateMaptileAndReregister; | 754 | PacketPool.Instance.RecycleDataBlocks = packetConfig.GetBoolean("RecycleDataBlocks", true); |
740 | m_mapGenerationTimer.AutoReset = true; | ||
741 | m_mapGenerationTimer.Start(); | ||
742 | } | 755 | } |
743 | } | ||
744 | else | ||
745 | { | ||
746 | string tile = startupConfig.GetString("MaptileStaticUUID", UUID.Zero.ToString()); | ||
747 | UUID tileID; | ||
748 | 756 | ||
749 | if (UUID.TryParse(tile, out tileID)) | 757 | m_strictAccessControl = startupConfig.GetBoolean("StrictAccessControl", m_strictAccessControl); |
758 | m_seeIntoBannedRegion = startupConfig.GetBoolean("SeeIntoBannedRegion", m_seeIntoBannedRegion); | ||
759 | CombineRegions = startupConfig.GetBoolean("CombineContiguousRegions", false); | ||
760 | |||
761 | m_generateMaptiles = startupConfig.GetBoolean("GenerateMaptiles", true); | ||
762 | if (m_generateMaptiles) | ||
750 | { | 763 | { |
751 | RegionInfo.RegionSettings.TerrainImageID = tileID; | 764 | int maptileRefresh = startupConfig.GetInt("MaptileRefresh", 0); |
765 | if (maptileRefresh != 0) | ||
766 | { | ||
767 | m_mapGenerationTimer.Interval = maptileRefresh * 1000; | ||
768 | m_mapGenerationTimer.Elapsed += RegenerateMaptileAndReregister; | ||
769 | m_mapGenerationTimer.AutoReset = true; | ||
770 | m_mapGenerationTimer.Start(); | ||
771 | } | ||
752 | } | 772 | } |
753 | } | 773 | else |
774 | { | ||
775 | string tile = startupConfig.GetString("MaptileStaticUUID", UUID.Zero.ToString()); | ||
776 | UUID tileID; | ||
754 | 777 | ||
755 | MinFrameTime = startupConfig.GetFloat( "MinFrameTime", MinFrameTime); | 778 | if (UUID.TryParse(tile, out tileID)) |
756 | m_update_backup = startupConfig.GetInt( "UpdateStorageEveryNFrames", m_update_backup); | 779 | { |
757 | m_update_coarse_locations = startupConfig.GetInt( "UpdateCoarseLocationsEveryNFrames", m_update_coarse_locations); | 780 | RegionInfo.RegionSettings.TerrainImageID = tileID; |
758 | m_update_entitymovement = startupConfig.GetInt( "UpdateEntityMovementEveryNFrames", m_update_entitymovement); | 781 | } |
759 | m_update_events = startupConfig.GetInt( "UpdateEventsEveryNFrames", m_update_events); | 782 | } |
760 | m_update_objects = startupConfig.GetInt( "UpdateObjectsEveryNFrames", m_update_objects); | ||
761 | m_update_physics = startupConfig.GetInt( "UpdatePhysicsEveryNFrames", m_update_physics); | ||
762 | m_update_presences = startupConfig.GetInt( "UpdateAgentsEveryNFrames", m_update_presences); | ||
763 | m_update_terrain = startupConfig.GetInt( "UpdateTerrainEveryNFrames", m_update_terrain); | ||
764 | m_update_temp_cleaning = startupConfig.GetInt( "UpdateTempCleaningEveryNFrames", m_update_temp_cleaning); | ||
765 | 783 | ||
766 | SendPeriodicAppearanceUpdates = startupConfig.GetBoolean("SendPeriodicAppearanceUpdates", SendPeriodicAppearanceUpdates); | 784 | MinFrameTime = startupConfig.GetFloat( "MinFrameTime", MinFrameTime); |
785 | m_update_backup = startupConfig.GetInt( "UpdateStorageEveryNFrames", m_update_backup); | ||
786 | m_update_coarse_locations = startupConfig.GetInt( "UpdateCoarseLocationsEveryNFrames", m_update_coarse_locations); | ||
787 | m_update_entitymovement = startupConfig.GetInt( "UpdateEntityMovementEveryNFrames", m_update_entitymovement); | ||
788 | m_update_events = startupConfig.GetInt( "UpdateEventsEveryNFrames", m_update_events); | ||
789 | m_update_objects = startupConfig.GetInt( "UpdateObjectsEveryNFrames", m_update_objects); | ||
790 | m_update_physics = startupConfig.GetInt( "UpdatePhysicsEveryNFrames", m_update_physics); | ||
791 | m_update_presences = startupConfig.GetInt( "UpdateAgentsEveryNFrames", m_update_presences); | ||
792 | m_update_terrain = startupConfig.GetInt( "UpdateTerrainEveryNFrames", m_update_terrain); | ||
793 | m_update_temp_cleaning = startupConfig.GetInt( "UpdateTempCleaningEveryNFrames", m_update_temp_cleaning); | ||
794 | SendPeriodicAppearanceUpdates = startupConfig.GetBoolean("SendPeriodicAppearanceUpdates", SendPeriodicAppearanceUpdates); | ||
795 | } | ||
796 | } | ||
797 | catch (Exception e) | ||
798 | { | ||
799 | m_log.Error("[SCENE]: Failed to load StartupConfig: " + e.ToString()); | ||
767 | } | 800 | } |
768 | 801 | ||
769 | #endregion Region Config | 802 | #endregion Region Config |
@@ -1190,7 +1223,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
1190 | //m_heartbeatTimer.Elapsed += new ElapsedEventHandler(Heartbeat); | 1223 | //m_heartbeatTimer.Elapsed += new ElapsedEventHandler(Heartbeat); |
1191 | if (m_heartbeatThread != null) | 1224 | if (m_heartbeatThread != null) |
1192 | { | 1225 | { |
1226 | m_hbRestarts++; | ||
1227 | if(m_hbRestarts > 10) | ||
1228 | Environment.Exit(1); | ||
1229 | m_log.ErrorFormat("[SCENE]: Restarting heartbeat thread because it hasn't reported in in region {0}", RegionInfo.RegionName); | ||
1230 | |||
1231 | //int pid = System.Diagnostics.Process.GetCurrentProcess().Id; | ||
1232 | //System.Diagnostics.Process proc = new System.Diagnostics.Process(); | ||
1233 | //proc.EnableRaisingEvents=false; | ||
1234 | //proc.StartInfo.FileName = "/bin/kill"; | ||
1235 | //proc.StartInfo.Arguments = "-QUIT " + pid.ToString(); | ||
1236 | //proc.Start(); | ||
1237 | //proc.WaitForExit(); | ||
1238 | //Thread.Sleep(1000); | ||
1239 | //Environment.Exit(1); | ||
1193 | m_heartbeatThread.Abort(); | 1240 | m_heartbeatThread.Abort(); |
1241 | Watchdog.AbortThread(m_heartbeatThread.ManagedThreadId); | ||
1194 | m_heartbeatThread = null; | 1242 | m_heartbeatThread = null; |
1195 | } | 1243 | } |
1196 | // m_lastUpdate = Util.EnvironmentTickCount(); | 1244 | // m_lastUpdate = Util.EnvironmentTickCount(); |
@@ -1503,6 +1551,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1503 | maintc = Util.EnvironmentTickCountSubtract(m_lastFrameTick, maintc); | 1551 | maintc = Util.EnvironmentTickCountSubtract(m_lastFrameTick, maintc); |
1504 | maintc = (int)(MinFrameTime * 1000) - maintc; | 1552 | maintc = (int)(MinFrameTime * 1000) - maintc; |
1505 | 1553 | ||
1554 | m_firstHeartbeat = false; | ||
1555 | |||
1506 | if (maintc > 0) | 1556 | if (maintc > 0) |
1507 | Thread.Sleep(maintc); | 1557 | Thread.Sleep(maintc); |
1508 | 1558 | ||
@@ -1532,9 +1582,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1532 | 1582 | ||
1533 | private void CheckAtTargets() | 1583 | private void CheckAtTargets() |
1534 | { | 1584 | { |
1535 | Dictionary<UUID, SceneObjectGroup>.ValueCollection objs; | 1585 | List<SceneObjectGroup> objs = new List<SceneObjectGroup>(); |
1536 | lock (m_groupsWithTargets) | 1586 | lock (m_groupsWithTargets) |
1537 | objs = m_groupsWithTargets.Values; | 1587 | objs = new List<SceneObjectGroup>(m_groupsWithTargets.Values); |
1538 | 1588 | ||
1539 | foreach (SceneObjectGroup entry in objs) | 1589 | foreach (SceneObjectGroup entry in objs) |
1540 | entry.checkAtTargets(); | 1590 | entry.checkAtTargets(); |
@@ -1615,7 +1665,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1615 | msg.fromAgentName = "Server"; | 1665 | msg.fromAgentName = "Server"; |
1616 | msg.dialog = (byte)19; // Object msg | 1666 | msg.dialog = (byte)19; // Object msg |
1617 | msg.fromGroup = false; | 1667 | msg.fromGroup = false; |
1618 | msg.offline = (byte)0; | 1668 | msg.offline = (byte)1; |
1619 | msg.ParentEstateID = RegionInfo.EstateSettings.ParentEstateID; | 1669 | msg.ParentEstateID = RegionInfo.EstateSettings.ParentEstateID; |
1620 | msg.Position = Vector3.Zero; | 1670 | msg.Position = Vector3.Zero; |
1621 | msg.RegionID = RegionInfo.RegionID.Guid; | 1671 | msg.RegionID = RegionInfo.RegionID.Guid; |
@@ -1837,6 +1887,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
1837 | EventManager.TriggerPrimsLoaded(this); | 1887 | EventManager.TriggerPrimsLoaded(this); |
1838 | } | 1888 | } |
1839 | 1889 | ||
1890 | public bool SuportsRayCastFiltered() | ||
1891 | { | ||
1892 | if (PhysicsScene == null) | ||
1893 | return false; | ||
1894 | return PhysicsScene.SuportsRaycastWorldFiltered(); | ||
1895 | } | ||
1896 | |||
1897 | public object RayCastFiltered(Vector3 position, Vector3 direction, float length, int Count, RayFilterFlags filter) | ||
1898 | { | ||
1899 | if (PhysicsScene == null) | ||
1900 | return null; | ||
1901 | return PhysicsScene.RaycastWorld(position, direction, length, Count,filter); | ||
1902 | } | ||
1840 | 1903 | ||
1841 | /// <summary> | 1904 | /// <summary> |
1842 | /// Gets a new rez location based on the raycast and the size of the object that is being rezzed. | 1905 | /// Gets a new rez location based on the raycast and the size of the object that is being rezzed. |
@@ -1853,14 +1916,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
1853 | /// <returns></returns> | 1916 | /// <returns></returns> |
1854 | public Vector3 GetNewRezLocation(Vector3 RayStart, Vector3 RayEnd, UUID RayTargetID, Quaternion rot, byte bypassRayCast, byte RayEndIsIntersection, bool frontFacesOnly, Vector3 scale, bool FaceCenter) | 1917 | public Vector3 GetNewRezLocation(Vector3 RayStart, Vector3 RayEnd, UUID RayTargetID, Quaternion rot, byte bypassRayCast, byte RayEndIsIntersection, bool frontFacesOnly, Vector3 scale, bool FaceCenter) |
1855 | { | 1918 | { |
1919 | |||
1920 | float wheight = (float)RegionInfo.RegionSettings.WaterHeight; | ||
1921 | Vector3 wpos = Vector3.Zero; | ||
1922 | // Check for water surface intersection from above | ||
1923 | if ( (RayStart.Z > wheight) && (RayEnd.Z < wheight) ) | ||
1924 | { | ||
1925 | float ratio = (RayStart.Z - wheight) / (RayStart.Z - RayEnd.Z); | ||
1926 | wpos.X = RayStart.X - (ratio * (RayStart.X - RayEnd.X)); | ||
1927 | wpos.Y = RayStart.Y - (ratio * (RayStart.Y - RayEnd.Y)); | ||
1928 | wpos.Z = wheight; | ||
1929 | } | ||
1930 | |||
1856 | Vector3 pos = Vector3.Zero; | 1931 | Vector3 pos = Vector3.Zero; |
1857 | if (RayEndIsIntersection == (byte)1) | 1932 | if (RayEndIsIntersection == (byte)1) |
1858 | { | 1933 | { |
1859 | pos = RayEnd; | 1934 | pos = RayEnd; |
1860 | return pos; | ||
1861 | } | 1935 | } |
1862 | 1936 | else if (RayTargetID != UUID.Zero) | |
1863 | if (RayTargetID != UUID.Zero) | ||
1864 | { | 1937 | { |
1865 | SceneObjectPart target = GetSceneObjectPart(RayTargetID); | 1938 | SceneObjectPart target = GetSceneObjectPart(RayTargetID); |
1866 | 1939 | ||
@@ -1882,7 +1955,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1882 | EntityIntersection ei = target.TestIntersectionOBB(NewRay, Quaternion.Identity, frontFacesOnly, FaceCenter); | 1955 | EntityIntersection ei = target.TestIntersectionOBB(NewRay, Quaternion.Identity, frontFacesOnly, FaceCenter); |
1883 | 1956 | ||
1884 | // Un-comment out the following line to Get Raytrace results printed to the console. | 1957 | // Un-comment out the following line to Get Raytrace results printed to the console. |
1885 | // m_log.Info("[RAYTRACERESULTS]: Hit:" + ei.HitTF.ToString() + " Point: " + ei.ipoint.ToString() + " Normal: " + ei.normal.ToString()); | 1958 | // m_log.Info("[RAYTRACERESULTS]: Hit:" + ei.HitTF.ToString() + " Point: " + ei.ipoint.ToString() + " Normal: " + ei.normal.ToString()); |
1886 | float ScaleOffset = 0.5f; | 1959 | float ScaleOffset = 0.5f; |
1887 | 1960 | ||
1888 | // If we hit something | 1961 | // If we hit something |
@@ -1905,13 +1978,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
1905 | //pos.Z -= 0.25F; | 1978 | //pos.Z -= 0.25F; |
1906 | 1979 | ||
1907 | } | 1980 | } |
1908 | |||
1909 | return pos; | ||
1910 | } | 1981 | } |
1911 | else | 1982 | else |
1912 | { | 1983 | { |
1913 | // We don't have a target here, so we're going to raytrace all the objects in the scene. | 1984 | // We don't have a target here, so we're going to raytrace all the objects in the scene. |
1914 | |||
1915 | EntityIntersection ei = m_sceneGraph.GetClosestIntersectingPrim(new Ray(AXOrigin, AXdirection), true, false); | 1985 | EntityIntersection ei = m_sceneGraph.GetClosestIntersectingPrim(new Ray(AXOrigin, AXdirection), true, false); |
1916 | 1986 | ||
1917 | // Un-comment the following line to print the raytrace results to the console. | 1987 | // Un-comment the following line to print the raytrace results to the console. |
@@ -1920,13 +1990,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1920 | if (ei.HitTF) | 1990 | if (ei.HitTF) |
1921 | { | 1991 | { |
1922 | pos = new Vector3(ei.ipoint.X, ei.ipoint.Y, ei.ipoint.Z); | 1992 | pos = new Vector3(ei.ipoint.X, ei.ipoint.Y, ei.ipoint.Z); |
1923 | } else | 1993 | } |
1994 | else | ||
1924 | { | 1995 | { |
1925 | // fall back to our stupid functionality | 1996 | // fall back to our stupid functionality |
1926 | pos = RayEnd; | 1997 | pos = RayEnd; |
1927 | } | 1998 | } |
1928 | |||
1929 | return pos; | ||
1930 | } | 1999 | } |
1931 | } | 2000 | } |
1932 | else | 2001 | else |
@@ -1937,8 +2006,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1937 | //increase height so its above the ground. | 2006 | //increase height so its above the ground. |
1938 | //should be getting the normal of the ground at the rez point and using that? | 2007 | //should be getting the normal of the ground at the rez point and using that? |
1939 | pos.Z += scale.Z / 2f; | 2008 | pos.Z += scale.Z / 2f; |
1940 | return pos; | 2009 | // return pos; |
1941 | } | 2010 | } |
2011 | |||
2012 | // check against posible water intercept | ||
2013 | if (wpos.Z > pos.Z) pos = wpos; | ||
2014 | return pos; | ||
1942 | } | 2015 | } |
1943 | 2016 | ||
1944 | 2017 | ||
@@ -2028,7 +2101,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
2028 | public bool AddRestoredSceneObject( | 2101 | public bool AddRestoredSceneObject( |
2029 | SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates) | 2102 | SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates) |
2030 | { | 2103 | { |
2031 | return m_sceneGraph.AddRestoredSceneObject(sceneObject, attachToBackup, alreadyPersisted, sendClientUpdates); | 2104 | bool result = m_sceneGraph.AddRestoredSceneObject(sceneObject, attachToBackup, alreadyPersisted, sendClientUpdates); |
2105 | if (result) | ||
2106 | sceneObject.IsDeleted = false; | ||
2107 | return result; | ||
2032 | } | 2108 | } |
2033 | 2109 | ||
2034 | /// <summary> | 2110 | /// <summary> |
@@ -2120,6 +2196,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
2120 | /// </summary> | 2196 | /// </summary> |
2121 | public void DeleteAllSceneObjects() | 2197 | public void DeleteAllSceneObjects() |
2122 | { | 2198 | { |
2199 | DeleteAllSceneObjects(false); | ||
2200 | } | ||
2201 | |||
2202 | /// <summary> | ||
2203 | /// Delete every object from the scene. This does not include attachments worn by avatars. | ||
2204 | /// </summary> | ||
2205 | public void DeleteAllSceneObjects(bool exceptNoCopy) | ||
2206 | { | ||
2207 | List<SceneObjectGroup> toReturn = new List<SceneObjectGroup>(); | ||
2123 | lock (Entities) | 2208 | lock (Entities) |
2124 | { | 2209 | { |
2125 | EntityBase[] entities = Entities.GetEntities(); | 2210 | EntityBase[] entities = Entities.GetEntities(); |
@@ -2128,11 +2213,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
2128 | if (e is SceneObjectGroup) | 2213 | if (e is SceneObjectGroup) |
2129 | { | 2214 | { |
2130 | SceneObjectGroup sog = (SceneObjectGroup)e; | 2215 | SceneObjectGroup sog = (SceneObjectGroup)e; |
2131 | if (!sog.IsAttachment) | 2216 | if (sog != null && !sog.IsAttachment) |
2132 | DeleteSceneObject((SceneObjectGroup)e, false); | 2217 | { |
2218 | if (!exceptNoCopy || ((sog.GetEffectivePermissions() & (uint)PermissionMask.Copy) != 0)) | ||
2219 | { | ||
2220 | DeleteSceneObject((SceneObjectGroup)e, false); | ||
2221 | } | ||
2222 | else | ||
2223 | { | ||
2224 | toReturn.Add((SceneObjectGroup)e); | ||
2225 | } | ||
2226 | } | ||
2133 | } | 2227 | } |
2134 | } | 2228 | } |
2135 | } | 2229 | } |
2230 | if (toReturn.Count > 0) | ||
2231 | { | ||
2232 | returnObjects(toReturn.ToArray(), UUID.Zero); | ||
2233 | } | ||
2136 | } | 2234 | } |
2137 | 2235 | ||
2138 | /// <summary> | 2236 | /// <summary> |
@@ -2167,6 +2265,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2167 | } | 2265 | } |
2168 | 2266 | ||
2169 | group.DeleteGroupFromScene(silent); | 2267 | group.DeleteGroupFromScene(silent); |
2268 | if (!silent) | ||
2269 | SendKillObject(new List<uint>() { group.LocalId }); | ||
2170 | 2270 | ||
2171 | // m_log.DebugFormat("[SCENE]: Exit DeleteSceneObject() for {0} {1}", group.Name, group.UUID); | 2271 | // m_log.DebugFormat("[SCENE]: Exit DeleteSceneObject() for {0} {1}", group.Name, group.UUID); |
2172 | } | 2272 | } |
@@ -2456,6 +2556,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2456 | 2556 | ||
2457 | if (newPosition != Vector3.Zero) | 2557 | if (newPosition != Vector3.Zero) |
2458 | newObject.RootPart.GroupPosition = newPosition; | 2558 | newObject.RootPart.GroupPosition = newPosition; |
2559 | if (newObject.RootPart.KeyframeMotion != null) | ||
2560 | newObject.RootPart.KeyframeMotion.UpdateSceneObject(newObject); | ||
2459 | 2561 | ||
2460 | if (!AddSceneObject(newObject)) | 2562 | if (!AddSceneObject(newObject)) |
2461 | { | 2563 | { |
@@ -2524,10 +2626,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
2524 | /// <returns>True if the SceneObjectGroup was added, False if it was not</returns> | 2626 | /// <returns>True if the SceneObjectGroup was added, False if it was not</returns> |
2525 | public bool AddSceneObject(SceneObjectGroup sceneObject) | 2627 | public bool AddSceneObject(SceneObjectGroup sceneObject) |
2526 | { | 2628 | { |
2629 | if (sceneObject.OwnerID == UUID.Zero) | ||
2630 | { | ||
2631 | m_log.ErrorFormat("[SCENE]: Owner ID for {0} was zero", sceneObject.UUID); | ||
2632 | return false; | ||
2633 | } | ||
2634 | |||
2527 | // If the user is banned, we won't let any of their objects | 2635 | // If the user is banned, we won't let any of their objects |
2528 | // enter. Period. | 2636 | // enter. Period. |
2529 | // | 2637 | // |
2530 | if (m_regInfo.EstateSettings.IsBanned(sceneObject.OwnerID)) | 2638 | int flags = GetUserFlags(sceneObject.OwnerID); |
2639 | if (m_regInfo.EstateSettings.IsBanned(sceneObject.OwnerID, flags)) | ||
2531 | { | 2640 | { |
2532 | m_log.InfoFormat("[INTERREGION]: Denied prim crossing for banned avatar {0}", sceneObject.OwnerID); | 2641 | m_log.InfoFormat("[INTERREGION]: Denied prim crossing for banned avatar {0}", sceneObject.OwnerID); |
2533 | 2642 | ||
@@ -2573,12 +2682,23 @@ namespace OpenSim.Region.Framework.Scenes | |||
2573 | } | 2682 | } |
2574 | else | 2683 | else |
2575 | { | 2684 | { |
2685 | m_log.DebugFormat("[SCENE]: Attachment {0} arrived and scene presence was not found, setting to temp", sceneObject.UUID); | ||
2576 | RootPrim.RemFlag(PrimFlags.TemporaryOnRez); | 2686 | RootPrim.RemFlag(PrimFlags.TemporaryOnRez); |
2577 | RootPrim.AddFlag(PrimFlags.TemporaryOnRez); | 2687 | RootPrim.AddFlag(PrimFlags.TemporaryOnRez); |
2578 | } | 2688 | } |
2689 | if (sceneObject.OwnerID == UUID.Zero) | ||
2690 | { | ||
2691 | m_log.ErrorFormat("[SCENE]: Owner ID for {0} was zero after attachment processing. BUG!", sceneObject.UUID); | ||
2692 | return false; | ||
2693 | } | ||
2579 | } | 2694 | } |
2580 | else | 2695 | else |
2581 | { | 2696 | { |
2697 | if (sceneObject.OwnerID == UUID.Zero) | ||
2698 | { | ||
2699 | m_log.ErrorFormat("[SCENE]: Owner ID for non-attachment {0} was zero", sceneObject.UUID); | ||
2700 | return false; | ||
2701 | } | ||
2582 | AddRestoredSceneObject(sceneObject, true, false); | 2702 | AddRestoredSceneObject(sceneObject, true, false); |
2583 | 2703 | ||
2584 | if (!Permissions.CanObjectEntry(sceneObject.UUID, | 2704 | if (!Permissions.CanObjectEntry(sceneObject.UUID, |
@@ -2607,6 +2727,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
2607 | return 2; // StateSource.PrimCrossing | 2727 | return 2; // StateSource.PrimCrossing |
2608 | } | 2728 | } |
2609 | 2729 | ||
2730 | public int GetUserFlags(UUID user) | ||
2731 | { | ||
2732 | //Unfortunately the SP approach means that the value is cached until region is restarted | ||
2733 | /* | ||
2734 | ScenePresence sp; | ||
2735 | if (TryGetScenePresence(user, out sp)) | ||
2736 | { | ||
2737 | return sp.UserFlags; | ||
2738 | } | ||
2739 | else | ||
2740 | { | ||
2741 | */ | ||
2742 | UserAccount uac = UserAccountService.GetUserAccount(RegionInfo.ScopeID, user); | ||
2743 | if (uac == null) | ||
2744 | return 0; | ||
2745 | return uac.UserFlags; | ||
2746 | //} | ||
2747 | } | ||
2610 | #endregion | 2748 | #endregion |
2611 | 2749 | ||
2612 | #region Add/Remove Avatar Methods | 2750 | #region Add/Remove Avatar Methods |
@@ -2620,7 +2758,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2620 | = (aCircuit.teleportFlags & (uint)Constants.TeleportFlags.ViaHGLogin) != 0 | 2758 | = (aCircuit.teleportFlags & (uint)Constants.TeleportFlags.ViaHGLogin) != 0 |
2621 | || (aCircuit.teleportFlags & (uint)Constants.TeleportFlags.ViaLogin) != 0; | 2759 | || (aCircuit.teleportFlags & (uint)Constants.TeleportFlags.ViaLogin) != 0; |
2622 | 2760 | ||
2623 | // CheckHeartbeat(); | 2761 | CheckHeartbeat(); |
2624 | 2762 | ||
2625 | ScenePresence sp = GetScenePresence(client.AgentId); | 2763 | ScenePresence sp = GetScenePresence(client.AgentId); |
2626 | 2764 | ||
@@ -2673,7 +2811,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
2673 | 2811 | ||
2674 | EventManager.TriggerOnNewClient(client); | 2812 | EventManager.TriggerOnNewClient(client); |
2675 | if (vialogin) | 2813 | if (vialogin) |
2814 | { | ||
2676 | EventManager.TriggerOnClientLogin(client); | 2815 | EventManager.TriggerOnClientLogin(client); |
2816 | // Send initial parcel data | ||
2817 | Vector3 pos = sp.AbsolutePosition; | ||
2818 | ILandObject land = LandChannel.GetLandObject(pos.X, pos.Y); | ||
2819 | land.SendLandUpdateToClient(client); | ||
2820 | } | ||
2677 | 2821 | ||
2678 | return sp; | 2822 | return sp; |
2679 | } | 2823 | } |
@@ -2763,19 +2907,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
2763 | // and the scene presence and the client, if they exist | 2907 | // and the scene presence and the client, if they exist |
2764 | try | 2908 | try |
2765 | { | 2909 | { |
2766 | // We need to wait for the client to make UDP contact first. | 2910 | ScenePresence sp = GetScenePresence(agentID); |
2767 | // It's the UDP contact that creates the scene presence | 2911 | PresenceService.LogoutAgent(sp.ControllingClient.SessionId); |
2768 | ScenePresence sp = WaitGetScenePresence(agentID); | 2912 | |
2769 | if (sp != null) | 2913 | if (sp != null) |
2770 | { | ||
2771 | PresenceService.LogoutAgent(sp.ControllingClient.SessionId); | ||
2772 | |||
2773 | sp.ControllingClient.Close(); | 2914 | sp.ControllingClient.Close(); |
2774 | } | 2915 | |
2775 | else | ||
2776 | { | ||
2777 | m_log.WarnFormat("[SCENE]: Could not find scene presence for {0}", agentID); | ||
2778 | } | ||
2779 | // BANG! SLASH! | 2916 | // BANG! SLASH! |
2780 | m_authenticateHandler.RemoveCircuit(agentID); | 2917 | m_authenticateHandler.RemoveCircuit(agentID); |
2781 | 2918 | ||
@@ -2820,6 +2957,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2820 | client.OnUpdatePrimGroupPosition += m_sceneGraph.UpdatePrimGroupPosition; | 2957 | client.OnUpdatePrimGroupPosition += m_sceneGraph.UpdatePrimGroupPosition; |
2821 | client.OnUpdatePrimSinglePosition += m_sceneGraph.UpdatePrimSinglePosition; | 2958 | client.OnUpdatePrimSinglePosition += m_sceneGraph.UpdatePrimSinglePosition; |
2822 | 2959 | ||
2960 | client.onClientChangeObject += m_sceneGraph.ClientChangeObject; | ||
2961 | |||
2823 | client.OnUpdatePrimGroupRotation += m_sceneGraph.UpdatePrimGroupRotation; | 2962 | client.OnUpdatePrimGroupRotation += m_sceneGraph.UpdatePrimGroupRotation; |
2824 | client.OnUpdatePrimGroupMouseRotation += m_sceneGraph.UpdatePrimGroupRotation; | 2963 | client.OnUpdatePrimGroupMouseRotation += m_sceneGraph.UpdatePrimGroupRotation; |
2825 | client.OnUpdatePrimSingleRotation += m_sceneGraph.UpdatePrimSingleRotation; | 2964 | client.OnUpdatePrimSingleRotation += m_sceneGraph.UpdatePrimSingleRotation; |
@@ -2876,6 +3015,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2876 | client.OnFetchInventory += m_asyncInventorySender.HandleFetchInventory; | 3015 | client.OnFetchInventory += m_asyncInventorySender.HandleFetchInventory; |
2877 | client.OnUpdateInventoryItem += UpdateInventoryItemAsset; | 3016 | client.OnUpdateInventoryItem += UpdateInventoryItemAsset; |
2878 | client.OnCopyInventoryItem += CopyInventoryItem; | 3017 | client.OnCopyInventoryItem += CopyInventoryItem; |
3018 | client.OnMoveItemsAndLeaveCopy += MoveInventoryItemsLeaveCopy; | ||
2879 | client.OnMoveInventoryItem += MoveInventoryItem; | 3019 | client.OnMoveInventoryItem += MoveInventoryItem; |
2880 | client.OnRemoveInventoryItem += RemoveInventoryItem; | 3020 | client.OnRemoveInventoryItem += RemoveInventoryItem; |
2881 | client.OnRemoveInventoryFolder += RemoveInventoryFolder; | 3021 | client.OnRemoveInventoryFolder += RemoveInventoryFolder; |
@@ -2947,6 +3087,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2947 | client.OnUpdatePrimGroupPosition -= m_sceneGraph.UpdatePrimGroupPosition; | 3087 | client.OnUpdatePrimGroupPosition -= m_sceneGraph.UpdatePrimGroupPosition; |
2948 | client.OnUpdatePrimSinglePosition -= m_sceneGraph.UpdatePrimSinglePosition; | 3088 | client.OnUpdatePrimSinglePosition -= m_sceneGraph.UpdatePrimSinglePosition; |
2949 | 3089 | ||
3090 | client.onClientChangeObject -= m_sceneGraph.ClientChangeObject; | ||
3091 | |||
2950 | client.OnUpdatePrimGroupRotation -= m_sceneGraph.UpdatePrimGroupRotation; | 3092 | client.OnUpdatePrimGroupRotation -= m_sceneGraph.UpdatePrimGroupRotation; |
2951 | client.OnUpdatePrimGroupMouseRotation -= m_sceneGraph.UpdatePrimGroupRotation; | 3093 | client.OnUpdatePrimGroupMouseRotation -= m_sceneGraph.UpdatePrimGroupRotation; |
2952 | client.OnUpdatePrimSingleRotation -= m_sceneGraph.UpdatePrimSingleRotation; | 3094 | client.OnUpdatePrimSingleRotation -= m_sceneGraph.UpdatePrimSingleRotation; |
@@ -3049,15 +3191,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
3049 | /// </summary> | 3191 | /// </summary> |
3050 | /// <param name="agentId">The avatar's Unique ID</param> | 3192 | /// <param name="agentId">The avatar's Unique ID</param> |
3051 | /// <param name="client">The IClientAPI for the client</param> | 3193 | /// <param name="client">The IClientAPI for the client</param> |
3052 | public virtual void TeleportClientHome(UUID agentId, IClientAPI client) | 3194 | public virtual bool TeleportClientHome(UUID agentId, IClientAPI client) |
3053 | { | 3195 | { |
3054 | if (m_teleportModule != null) | 3196 | if (m_teleportModule != null) |
3055 | m_teleportModule.TeleportHome(agentId, client); | 3197 | return m_teleportModule.TeleportHome(agentId, client); |
3056 | else | 3198 | else |
3057 | { | 3199 | { |
3058 | m_log.DebugFormat("[SCENE]: Unable to teleport user home: no AgentTransferModule is active"); | 3200 | m_log.DebugFormat("[SCENE]: Unable to teleport user home: no AgentTransferModule is active"); |
3059 | client.SendTeleportFailed("Unable to perform teleports on this simulator."); | 3201 | client.SendTeleportFailed("Unable to perform teleports on this simulator."); |
3060 | } | 3202 | } |
3203 | return false; | ||
3061 | } | 3204 | } |
3062 | 3205 | ||
3063 | /// <summary> | 3206 | /// <summary> |
@@ -3167,6 +3310,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
3167 | /// <param name="flags"></param> | 3310 | /// <param name="flags"></param> |
3168 | public virtual void SetHomeRezPoint(IClientAPI remoteClient, ulong regionHandle, Vector3 position, Vector3 lookAt, uint flags) | 3311 | public virtual void SetHomeRezPoint(IClientAPI remoteClient, ulong regionHandle, Vector3 position, Vector3 lookAt, uint flags) |
3169 | { | 3312 | { |
3313 | //Add half the avatar's height so that the user doesn't fall through prims | ||
3314 | ScenePresence presence; | ||
3315 | if (TryGetScenePresence(remoteClient.AgentId, out presence)) | ||
3316 | { | ||
3317 | if (presence.Appearance != null) | ||
3318 | { | ||
3319 | position.Z = position.Z + (presence.Appearance.AvatarHeight / 2); | ||
3320 | } | ||
3321 | } | ||
3322 | |||
3170 | if (GridUserService != null && GridUserService.SetHome(remoteClient.AgentId.ToString(), RegionInfo.RegionID, position, lookAt)) | 3323 | if (GridUserService != null && GridUserService.SetHome(remoteClient.AgentId.ToString(), RegionInfo.RegionID, position, lookAt)) |
3171 | // FUBAR ALERT: this needs to be "Home position set." so the viewer saves a home-screenshot. | 3324 | // FUBAR ALERT: this needs to be "Home position set." so the viewer saves a home-screenshot. |
3172 | m_dialogModule.SendAlertToUser(remoteClient, "Home position set."); | 3325 | m_dialogModule.SendAlertToUser(remoteClient, "Home position set."); |
@@ -3235,8 +3388,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
3235 | regions.Remove(RegionInfo.RegionHandle); | 3388 | regions.Remove(RegionInfo.RegionHandle); |
3236 | m_sceneGridService.SendCloseChildAgentConnections(agentID, regions); | 3389 | m_sceneGridService.SendCloseChildAgentConnections(agentID, regions); |
3237 | } | 3390 | } |
3238 | 3391 | m_log.Debug("[Scene] Beginning ClientClosed"); | |
3239 | m_eventManager.TriggerClientClosed(agentID, this); | 3392 | m_eventManager.TriggerClientClosed(agentID, this); |
3393 | m_log.Debug("[Scene] Finished ClientClosed"); | ||
3240 | } | 3394 | } |
3241 | catch (NullReferenceException) | 3395 | catch (NullReferenceException) |
3242 | { | 3396 | { |
@@ -3298,9 +3452,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
3298 | { | 3452 | { |
3299 | m_log.ErrorFormat("[SCENE] Scene.cs:RemoveClient exception {0}{1}", e.Message, e.StackTrace); | 3453 | m_log.ErrorFormat("[SCENE] Scene.cs:RemoveClient exception {0}{1}", e.Message, e.StackTrace); |
3300 | } | 3454 | } |
3301 | 3455 | m_log.Debug("[Scene] Done. Firing RemoveCircuit"); | |
3302 | m_authenticateHandler.RemoveCircuit(avatar.ControllingClient.CircuitCode); | 3456 | m_authenticateHandler.RemoveCircuit(avatar.ControllingClient.CircuitCode); |
3303 | // CleanDroppedAttachments(); | 3457 | // CleanDroppedAttachments(); |
3458 | m_log.Debug("[Scene] The avatar has left the building"); | ||
3304 | //m_log.InfoFormat("[SCENE] Memory pre GC {0}", System.GC.GetTotalMemory(false)); | 3459 | //m_log.InfoFormat("[SCENE] Memory pre GC {0}", System.GC.GetTotalMemory(false)); |
3305 | //m_log.InfoFormat("[SCENE] Memory post GC {0}", System.GC.GetTotalMemory(true)); | 3460 | //m_log.InfoFormat("[SCENE] Memory post GC {0}", System.GC.GetTotalMemory(true)); |
3306 | } | 3461 | } |
@@ -3422,13 +3577,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
3422 | sp = null; | 3577 | sp = null; |
3423 | } | 3578 | } |
3424 | 3579 | ||
3425 | ILandObject land = LandChannel.GetLandObject(agent.startpos.X, agent.startpos.Y); | ||
3426 | 3580 | ||
3427 | //On login test land permisions | 3581 | //On login test land permisions |
3428 | if (vialogin) | 3582 | if (vialogin) |
3429 | { | 3583 | { |
3430 | if (land != null && !TestLandRestrictions(agent, land, out reason)) | 3584 | IUserAccountCacheModule cache = RequestModuleInterface<IUserAccountCacheModule>(); |
3585 | if (cache != null) | ||
3586 | cache.Remove(agent.firstname + " " + agent.lastname); | ||
3587 | if (!TestLandRestrictions(agent.AgentID, out reason, ref agent.startpos.X, ref agent.startpos.Y)) | ||
3431 | { | 3588 | { |
3589 | m_log.DebugFormat("[CONNECTION BEGIN]: Denying access to {0} due to no land access", agent.AgentID.ToString()); | ||
3432 | return false; | 3590 | return false; |
3433 | } | 3591 | } |
3434 | } | 3592 | } |
@@ -3452,8 +3610,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
3452 | 3610 | ||
3453 | try | 3611 | try |
3454 | { | 3612 | { |
3455 | if (!AuthorizeUser(agent, out reason)) | 3613 | // Always check estate if this is a login. Always |
3456 | return false; | 3614 | // check if banned regions are to be blacked out. |
3615 | if (vialogin || (!m_seeIntoBannedRegion)) | ||
3616 | { | ||
3617 | if (!AuthorizeUser(agent, out reason)) | ||
3618 | return false; | ||
3619 | } | ||
3457 | } | 3620 | } |
3458 | catch (Exception e) | 3621 | catch (Exception e) |
3459 | { | 3622 | { |
@@ -3579,6 +3742,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
3579 | } | 3742 | } |
3580 | 3743 | ||
3581 | // Honor parcel landing type and position. | 3744 | // Honor parcel landing type and position. |
3745 | /* | ||
3746 | ILandObject land = LandChannel.GetLandObject(agent.startpos.X, agent.startpos.Y); | ||
3582 | if (land != null) | 3747 | if (land != null) |
3583 | { | 3748 | { |
3584 | if (land.LandData.LandingType == (byte)1 && land.LandData.UserLocation != Vector3.Zero) | 3749 | if (land.LandData.LandingType == (byte)1 && land.LandData.UserLocation != Vector3.Zero) |
@@ -3586,26 +3751,34 @@ namespace OpenSim.Region.Framework.Scenes | |||
3586 | agent.startpos = land.LandData.UserLocation; | 3751 | agent.startpos = land.LandData.UserLocation; |
3587 | } | 3752 | } |
3588 | } | 3753 | } |
3754 | */// This is now handled properly in ScenePresence.MakeRootAgent | ||
3589 | } | 3755 | } |
3590 | 3756 | ||
3591 | return true; | 3757 | return true; |
3592 | } | 3758 | } |
3593 | 3759 | ||
3594 | private bool TestLandRestrictions(AgentCircuitData agent, ILandObject land, out string reason) | 3760 | public bool TestLandRestrictions(UUID agentID, out string reason, ref float posX, ref float posY) |
3595 | { | 3761 | { |
3596 | 3762 | reason = String.Empty; | |
3597 | bool banned = land.IsBannedFromLand(agent.AgentID); | 3763 | if (Permissions.IsGod(agentID)) |
3598 | bool restricted = land.IsRestrictedFromLand(agent.AgentID); | 3764 | return true; |
3765 | |||
3766 | ILandObject land = LandChannel.GetLandObject(posX, posY); | ||
3767 | if (land == null) | ||
3768 | return false; | ||
3769 | |||
3770 | bool banned = land.IsBannedFromLand(agentID); | ||
3771 | bool restricted = land.IsRestrictedFromLand(agentID); | ||
3599 | 3772 | ||
3600 | if (banned || restricted) | 3773 | if (banned || restricted) |
3601 | { | 3774 | { |
3602 | ILandObject nearestParcel = GetNearestAllowedParcel(agent.AgentID, agent.startpos.X, agent.startpos.Y); | 3775 | ILandObject nearestParcel = GetNearestAllowedParcel(agentID, posX, posY); |
3603 | if (nearestParcel != null) | 3776 | if (nearestParcel != null) |
3604 | { | 3777 | { |
3605 | //Move agent to nearest allowed | 3778 | //Move agent to nearest allowed |
3606 | Vector3 newPosition = GetParcelCenterAtGround(nearestParcel); | 3779 | Vector3 newPosition = GetParcelCenterAtGround(nearestParcel); |
3607 | agent.startpos.X = newPosition.X; | 3780 | posX = newPosition.X; |
3608 | agent.startpos.Y = newPosition.Y; | 3781 | posY = newPosition.Y; |
3609 | } | 3782 | } |
3610 | else | 3783 | else |
3611 | { | 3784 | { |
@@ -3667,7 +3840,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
3667 | 3840 | ||
3668 | if (!m_strictAccessControl) return true; | 3841 | if (!m_strictAccessControl) return true; |
3669 | if (Permissions.IsGod(agent.AgentID)) return true; | 3842 | if (Permissions.IsGod(agent.AgentID)) return true; |
3670 | 3843 | ||
3671 | if (AuthorizationService != null) | 3844 | if (AuthorizationService != null) |
3672 | { | 3845 | { |
3673 | if (!AuthorizationService.IsAuthorizedForRegion( | 3846 | if (!AuthorizationService.IsAuthorizedForRegion( |
@@ -3682,7 +3855,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
3682 | 3855 | ||
3683 | if (m_regInfo.EstateSettings != null) | 3856 | if (m_regInfo.EstateSettings != null) |
3684 | { | 3857 | { |
3685 | if (m_regInfo.EstateSettings.IsBanned(agent.AgentID)) | 3858 | if (m_regInfo.EstateSettings.IsBanned(agent.AgentID,0)) |
3686 | { | 3859 | { |
3687 | m_log.WarnFormat("[CONNECTION BEGIN]: Denied access to: {0} ({1} {2}) at {3} because the user is on the banlist", | 3860 | m_log.WarnFormat("[CONNECTION BEGIN]: Denied access to: {0} ({1} {2}) at {3} because the user is on the banlist", |
3688 | agent.AgentID, agent.firstname, agent.lastname, RegionInfo.RegionName); | 3861 | agent.AgentID, agent.firstname, agent.lastname, RegionInfo.RegionName); |
@@ -3874,6 +4047,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
3874 | 4047 | ||
3875 | // We have to wait until the viewer contacts this region after receiving EAC. | 4048 | // We have to wait until the viewer contacts this region after receiving EAC. |
3876 | // That calls AddNewClient, which finally creates the ScenePresence | 4049 | // That calls AddNewClient, which finally creates the ScenePresence |
4050 | int flags = GetUserFlags(cAgentData.AgentID); | ||
4051 | if (m_regInfo.EstateSettings.IsBanned(cAgentData.AgentID, flags)) | ||
4052 | { | ||
4053 | m_log.DebugFormat("[SCENE]: Denying root agent entry to {0}: banned", cAgentData.AgentID); | ||
4054 | return false; | ||
4055 | } | ||
4056 | |||
3877 | ILandObject nearestParcel = GetNearestAllowedParcel(cAgentData.AgentID, Constants.RegionSize / 2, Constants.RegionSize / 2); | 4057 | ILandObject nearestParcel = GetNearestAllowedParcel(cAgentData.AgentID, Constants.RegionSize / 2, Constants.RegionSize / 2); |
3878 | if (nearestParcel == null) | 4058 | if (nearestParcel == null) |
3879 | { | 4059 | { |
@@ -3955,12 +4135,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
3955 | return false; | 4135 | return false; |
3956 | } | 4136 | } |
3957 | 4137 | ||
4138 | public bool IncomingCloseAgent(UUID agentID) | ||
4139 | { | ||
4140 | return IncomingCloseAgent(agentID, false); | ||
4141 | } | ||
4142 | |||
4143 | public bool IncomingCloseChildAgent(UUID agentID) | ||
4144 | { | ||
4145 | return IncomingCloseAgent(agentID, true); | ||
4146 | } | ||
4147 | |||
3958 | /// <summary> | 4148 | /// <summary> |
3959 | /// Tell a single agent to disconnect from the region. | 4149 | /// Tell a single agent to disconnect from the region. |
3960 | /// </summary> | 4150 | /// </summary> |
3961 | /// <param name="regionHandle"></param> | ||
3962 | /// <param name="agentID"></param> | 4151 | /// <param name="agentID"></param> |
3963 | public bool IncomingCloseAgent(UUID agentID) | 4152 | /// <param name="childOnly"></param> |
4153 | public bool IncomingCloseAgent(UUID agentID, bool childOnly) | ||
3964 | { | 4154 | { |
3965 | //m_log.DebugFormat("[SCENE]: Processing incoming close agent for {0}", agentID); | 4155 | //m_log.DebugFormat("[SCENE]: Processing incoming close agent for {0}", agentID); |
3966 | 4156 | ||
@@ -3972,7 +4162,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
3972 | { | 4162 | { |
3973 | m_sceneGraph.removeUserCount(false); | 4163 | m_sceneGraph.removeUserCount(false); |
3974 | } | 4164 | } |
3975 | else | 4165 | else if (!childOnly) |
3976 | { | 4166 | { |
3977 | m_sceneGraph.removeUserCount(true); | 4167 | m_sceneGraph.removeUserCount(true); |
3978 | } | 4168 | } |
@@ -3988,9 +4178,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
3988 | } | 4178 | } |
3989 | else | 4179 | else |
3990 | presence.ControllingClient.SendShutdownConnectionNotice(); | 4180 | presence.ControllingClient.SendShutdownConnectionNotice(); |
4181 | presence.ControllingClient.Close(false); | ||
4182 | } | ||
4183 | else if (!childOnly) | ||
4184 | { | ||
4185 | presence.ControllingClient.Close(true); | ||
3991 | } | 4186 | } |
3992 | |||
3993 | presence.ControllingClient.Close(); | ||
3994 | return true; | 4187 | return true; |
3995 | } | 4188 | } |
3996 | 4189 | ||
@@ -4572,35 +4765,81 @@ namespace OpenSim.Region.Framework.Scenes | |||
4572 | SimulationDataService.RemoveObject(uuid, m_regInfo.RegionID); | 4765 | SimulationDataService.RemoveObject(uuid, m_regInfo.RegionID); |
4573 | } | 4766 | } |
4574 | 4767 | ||
4575 | public int GetHealth() | 4768 | public int GetHealth(out int flags, out string message) |
4576 | { | 4769 | { |
4577 | // Returns: | 4770 | // Returns: |
4578 | // 1 = sim is up and accepting http requests. The heartbeat has | 4771 | // 1 = sim is up and accepting http requests. The heartbeat has |
4579 | // stopped and the sim is probably locked up, but a remote | 4772 | // stopped and the sim is probably locked up, but a remote |
4580 | // admin restart may succeed | 4773 | // admin restart may succeed |
4581 | // | 4774 | // |
4582 | // 2 = Sim is up and the heartbeat is running. The sim is likely | 4775 | // 2 = Sim is up and the heartbeat is running. The sim is likely |
4583 | // usable for people within and logins _may_ work | 4776 | // usable for people within |
4777 | // | ||
4778 | // 3 = Sim is up and one packet thread is running. Sim is | ||
4779 | // unstable and will not accept new logins | ||
4780 | // | ||
4781 | // 4 = Sim is up and both packet threads are running. Sim is | ||
4782 | // likely usable | ||
4584 | // | 4783 | // |
4585 | // 3 = We have seen a new user enter within the past 4 minutes | 4784 | // 5 = We have seen a new user enter within the past 4 minutes |
4586 | // which can be seen as positive confirmation of sim health | 4785 | // which can be seen as positive confirmation of sim health |
4587 | // | 4786 | // |
4787 | |||
4788 | flags = 0; | ||
4789 | message = String.Empty; | ||
4790 | |||
4791 | CheckHeartbeat(); | ||
4792 | |||
4793 | if (m_firstHeartbeat || (m_lastIncoming == 0 && m_lastOutgoing == 0)) | ||
4794 | { | ||
4795 | // We're still starting | ||
4796 | // 0 means "in startup", it can't happen another way, since | ||
4797 | // to get here, we must be able to accept http connections | ||
4798 | return 0; | ||
4799 | } | ||
4800 | |||
4588 | int health=1; // Start at 1, means we're up | 4801 | int health=1; // Start at 1, means we're up |
4589 | 4802 | ||
4590 | if ((Util.EnvironmentTickCountSubtract(m_lastFrameTick)) < 1000) | 4803 | if ((Util.EnvironmentTickCountSubtract(m_lastFrameTick)) < 1000) |
4591 | health += 1; | 4804 | { |
4805 | health+=1; | ||
4806 | flags |= 1; | ||
4807 | } | ||
4808 | |||
4809 | if (Util.EnvironmentTickCountSubtract(m_lastIncoming) < 1000) | ||
4810 | { | ||
4811 | health+=1; | ||
4812 | flags |= 2; | ||
4813 | } | ||
4814 | |||
4815 | if (Util.EnvironmentTickCountSubtract(m_lastOutgoing) < 1000) | ||
4816 | { | ||
4817 | health+=1; | ||
4818 | flags |= 4; | ||
4819 | } | ||
4592 | else | 4820 | else |
4821 | { | ||
4822 | int pid = System.Diagnostics.Process.GetCurrentProcess().Id; | ||
4823 | System.Diagnostics.Process proc = new System.Diagnostics.Process(); | ||
4824 | proc.EnableRaisingEvents=false; | ||
4825 | proc.StartInfo.FileName = "/bin/kill"; | ||
4826 | proc.StartInfo.Arguments = "-QUIT " + pid.ToString(); | ||
4827 | proc.Start(); | ||
4828 | proc.WaitForExit(); | ||
4829 | Thread.Sleep(1000); | ||
4830 | Environment.Exit(1); | ||
4831 | } | ||
4832 | |||
4833 | if (flags != 7) | ||
4593 | return health; | 4834 | return health; |
4594 | 4835 | ||
4595 | // A login in the last 4 mins? We can't be doing too badly | 4836 | // A login in the last 4 mins? We can't be doing too badly |
4596 | // | 4837 | // |
4597 | if ((Util.EnvironmentTickCountSubtract(m_LastLogin)) < 240000) | 4838 | if (Util.EnvironmentTickCountSubtract(m_LastLogin) < 240000) |
4598 | health++; | 4839 | health++; |
4599 | else | 4840 | else |
4600 | return health; | 4841 | return health; |
4601 | 4842 | ||
4602 | // CheckHeartbeat(); | ||
4603 | |||
4604 | return health; | 4843 | return health; |
4605 | } | 4844 | } |
4606 | 4845 | ||
@@ -4688,7 +4927,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
4688 | bool wasUsingPhysics = ((jointProxyObject.Flags & PrimFlags.Physics) != 0); | 4927 | bool wasUsingPhysics = ((jointProxyObject.Flags & PrimFlags.Physics) != 0); |
4689 | if (wasUsingPhysics) | 4928 | if (wasUsingPhysics) |
4690 | { | 4929 | { |
4691 | jointProxyObject.UpdatePrimFlags(false, false, true, false); // FIXME: possible deadlock here; check to make sure all the scene alterations set into motion here won't deadlock | 4930 | jointProxyObject.UpdatePrimFlags(false, false, true, false,false); // FIXME: possible deadlock here; check to make sure all the scene alterations set into motion here won't deadlock |
4692 | } | 4931 | } |
4693 | } | 4932 | } |
4694 | 4933 | ||
@@ -4787,14 +5026,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
4787 | return (((vsn.X * xdiff) + (vsn.Y * ydiff)) / (-1 * vsn.Z)) + p0.Z; | 5026 | return (((vsn.X * xdiff) + (vsn.Y * ydiff)) / (-1 * vsn.Z)) + p0.Z; |
4788 | } | 5027 | } |
4789 | 5028 | ||
4790 | // private void CheckHeartbeat() | 5029 | private void CheckHeartbeat() |
4791 | // { | 5030 | { |
4792 | // if (m_firstHeartbeat) | 5031 | if (m_firstHeartbeat) |
4793 | // return; | 5032 | return; |
4794 | // | 5033 | |
4795 | // if (Util.EnvironmentTickCountSubtract(m_lastFrameTick) > 2000) | 5034 | if ((Util.EnvironmentTickCountSubtract(m_lastFrameTick)) > 5000) |
4796 | // StartTimer(); | 5035 | Start(); |
4797 | // } | 5036 | } |
4798 | 5037 | ||
4799 | public override ISceneObject DeserializeObject(string representation) | 5038 | public override ISceneObject DeserializeObject(string representation) |
4800 | { | 5039 | { |
@@ -4806,9 +5045,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
4806 | get { return m_allowScriptCrossings; } | 5045 | get { return m_allowScriptCrossings; } |
4807 | } | 5046 | } |
4808 | 5047 | ||
4809 | public Vector3? GetNearestAllowedPosition(ScenePresence avatar) | 5048 | public Vector3 GetNearestAllowedPosition(ScenePresence avatar) |
4810 | { | 5049 | { |
4811 | ILandObject nearestParcel = GetNearestAllowedParcel(avatar.UUID, avatar.AbsolutePosition.X, avatar.AbsolutePosition.Y); | 5050 | return GetNearestAllowedPosition(avatar, null); |
5051 | } | ||
5052 | |||
5053 | public Vector3 GetNearestAllowedPosition(ScenePresence avatar, ILandObject excludeParcel) | ||
5054 | { | ||
5055 | ILandObject nearestParcel = GetNearestAllowedParcel(avatar.UUID, avatar.AbsolutePosition.X, avatar.AbsolutePosition.Y, excludeParcel); | ||
4812 | 5056 | ||
4813 | if (nearestParcel != null) | 5057 | if (nearestParcel != null) |
4814 | { | 5058 | { |
@@ -4817,10 +5061,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
4817 | Vector3? nearestPoint = GetNearestPointInParcelAlongDirectionFromPoint(avatar.AbsolutePosition, dir, nearestParcel); | 5061 | Vector3? nearestPoint = GetNearestPointInParcelAlongDirectionFromPoint(avatar.AbsolutePosition, dir, nearestParcel); |
4818 | if (nearestPoint != null) | 5062 | if (nearestPoint != null) |
4819 | { | 5063 | { |
4820 | // m_log.DebugFormat( | 5064 | Debug.WriteLine("Found a sane previous position based on velocity, sending them to: " + nearestPoint.ToString()); |
4821 | // "[SCENE]: Found a sane previous position based on velocity for {0}, sending them to {1} in {2}", | ||
4822 | // avatar.Name, nearestPoint, nearestParcel.LandData.Name); | ||
4823 | |||
4824 | return nearestPoint.Value; | 5065 | return nearestPoint.Value; |
4825 | } | 5066 | } |
4826 | 5067 | ||
@@ -4830,17 +5071,20 @@ namespace OpenSim.Region.Framework.Scenes | |||
4830 | nearestPoint = GetNearestPointInParcelAlongDirectionFromPoint(avatar.AbsolutePosition, dir, nearestParcel); | 5071 | nearestPoint = GetNearestPointInParcelAlongDirectionFromPoint(avatar.AbsolutePosition, dir, nearestParcel); |
4831 | if (nearestPoint != null) | 5072 | if (nearestPoint != null) |
4832 | { | 5073 | { |
4833 | // m_log.DebugFormat( | 5074 | Debug.WriteLine("They had a zero velocity, sending them to: " + nearestPoint.ToString()); |
4834 | // "[SCENE]: {0} had a zero velocity, sending them to {1}", avatar.Name, nearestPoint); | ||
4835 | |||
4836 | return nearestPoint.Value; | 5075 | return nearestPoint.Value; |
4837 | } | 5076 | } |
4838 | 5077 | ||
4839 | //Ultimate backup if we have no idea where they are | 5078 | ILandObject dest = LandChannel.GetLandObject(avatar.lastKnownAllowedPosition.X, avatar.lastKnownAllowedPosition.Y); |
4840 | // m_log.DebugFormat( | 5079 | if (dest != excludeParcel) |
4841 | // "[SCENE]: No idea where {0} is, sending them to {1}", avatar.Name, avatar.lastKnownAllowedPosition); | 5080 | { |
5081 | // Ultimate backup if we have no idea where they are and | ||
5082 | // the last allowed position was in another parcel | ||
5083 | Debug.WriteLine("Have no idea where they are, sending them to: " + avatar.lastKnownAllowedPosition.ToString()); | ||
5084 | return avatar.lastKnownAllowedPosition; | ||
5085 | } | ||
4842 | 5086 | ||
4843 | return avatar.lastKnownAllowedPosition; | 5087 | // else fall through to region edge |
4844 | } | 5088 | } |
4845 | 5089 | ||
4846 | //Go to the edge, this happens in teleporting to a region with no available parcels | 5090 | //Go to the edge, this happens in teleporting to a region with no available parcels |
@@ -4874,13 +5118,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
4874 | 5118 | ||
4875 | public ILandObject GetNearestAllowedParcel(UUID avatarId, float x, float y) | 5119 | public ILandObject GetNearestAllowedParcel(UUID avatarId, float x, float y) |
4876 | { | 5120 | { |
5121 | return GetNearestAllowedParcel(avatarId, x, y, null); | ||
5122 | } | ||
5123 | |||
5124 | public ILandObject GetNearestAllowedParcel(UUID avatarId, float x, float y, ILandObject excludeParcel) | ||
5125 | { | ||
4877 | List<ILandObject> all = AllParcels(); | 5126 | List<ILandObject> all = AllParcels(); |
4878 | float minParcelDistance = float.MaxValue; | 5127 | float minParcelDistance = float.MaxValue; |
4879 | ILandObject nearestParcel = null; | 5128 | ILandObject nearestParcel = null; |
4880 | 5129 | ||
4881 | foreach (var parcel in all) | 5130 | foreach (var parcel in all) |
4882 | { | 5131 | { |
4883 | if (!parcel.IsEitherBannedOrRestricted(avatarId)) | 5132 | if (!parcel.IsEitherBannedOrRestricted(avatarId) && parcel != excludeParcel) |
4884 | { | 5133 | { |
4885 | float parcelDistance = GetParcelDistancefromPoint(parcel, x, y); | 5134 | float parcelDistance = GetParcelDistancefromPoint(parcel, x, y); |
4886 | if (parcelDistance < minParcelDistance) | 5135 | if (parcelDistance < minParcelDistance) |
@@ -5122,7 +5371,55 @@ namespace OpenSim.Region.Framework.Scenes | |||
5122 | mapModule.GenerateMaptile(); | 5371 | mapModule.GenerateMaptile(); |
5123 | } | 5372 | } |
5124 | 5373 | ||
5125 | private void RegenerateMaptileAndReregister(object sender, ElapsedEventArgs e) | 5374 | // public void CleanDroppedAttachments() |
5375 | // { | ||
5376 | // List<SceneObjectGroup> objectsToDelete = | ||
5377 | // new List<SceneObjectGroup>(); | ||
5378 | // | ||
5379 | // lock (m_cleaningAttachments) | ||
5380 | // { | ||
5381 | // ForEachSOG(delegate (SceneObjectGroup grp) | ||
5382 | // { | ||
5383 | // if (grp.RootPart.Shape.PCode == 0 && grp.RootPart.Shape.State != 0 && (!objectsToDelete.Contains(grp))) | ||
5384 | // { | ||
5385 | // UUID agentID = grp.OwnerID; | ||
5386 | // if (agentID == UUID.Zero) | ||
5387 | // { | ||
5388 | // objectsToDelete.Add(grp); | ||
5389 | // return; | ||
5390 | // } | ||
5391 | // | ||
5392 | // ScenePresence sp = GetScenePresence(agentID); | ||
5393 | // if (sp == null) | ||
5394 | // { | ||
5395 | // objectsToDelete.Add(grp); | ||
5396 | // return; | ||
5397 | // } | ||
5398 | // } | ||
5399 | // }); | ||
5400 | // } | ||
5401 | // | ||
5402 | // foreach (SceneObjectGroup grp in objectsToDelete) | ||
5403 | // { | ||
5404 | // m_log.InfoFormat("[SCENE]: Deleting dropped attachment {0} of user {1}", grp.UUID, grp.OwnerID); | ||
5405 | // DeleteSceneObject(grp, true); | ||
5406 | // } | ||
5407 | // } | ||
5408 | |||
5409 | public void ThreadAlive(int threadCode) | ||
5410 | { | ||
5411 | switch(threadCode) | ||
5412 | { | ||
5413 | case 1: // Incoming | ||
5414 | m_lastIncoming = Util.EnvironmentTickCount(); | ||
5415 | break; | ||
5416 | case 2: // Incoming | ||
5417 | m_lastOutgoing = Util.EnvironmentTickCount(); | ||
5418 | break; | ||
5419 | } | ||
5420 | } | ||
5421 | |||
5422 | public void RegenerateMaptileAndReregister(object sender, ElapsedEventArgs e) | ||
5126 | { | 5423 | { |
5127 | RegenerateMaptile(); | 5424 | RegenerateMaptile(); |
5128 | 5425 | ||
@@ -5141,6 +5438,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
5141 | // child agent creation, thereby emulating the SL behavior. | 5438 | // child agent creation, thereby emulating the SL behavior. |
5142 | public bool QueryAccess(UUID agentID, Vector3 position, out string reason) | 5439 | public bool QueryAccess(UUID agentID, Vector3 position, out string reason) |
5143 | { | 5440 | { |
5441 | reason = "You are banned from the region"; | ||
5442 | |||
5443 | if (Permissions.IsGod(agentID)) | ||
5444 | { | ||
5445 | reason = String.Empty; | ||
5446 | return true; | ||
5447 | } | ||
5448 | |||
5144 | int num = m_sceneGraph.GetNumberOfScenePresences(); | 5449 | int num = m_sceneGraph.GetNumberOfScenePresences(); |
5145 | 5450 | ||
5146 | if (num >= RegionInfo.RegionSettings.AgentLimit) | 5451 | if (num >= RegionInfo.RegionSettings.AgentLimit) |
@@ -5152,6 +5457,41 @@ namespace OpenSim.Region.Framework.Scenes | |||
5152 | } | 5457 | } |
5153 | } | 5458 | } |
5154 | 5459 | ||
5460 | ScenePresence presence = GetScenePresence(agentID); | ||
5461 | IClientAPI client = null; | ||
5462 | AgentCircuitData aCircuit = null; | ||
5463 | |||
5464 | if (presence != null) | ||
5465 | { | ||
5466 | client = presence.ControllingClient; | ||
5467 | if (client != null) | ||
5468 | aCircuit = client.RequestClientInfo(); | ||
5469 | } | ||
5470 | |||
5471 | // We may be called before there is a presence or a client. | ||
5472 | // Fake AgentCircuitData to keep IAuthorizationModule smiling | ||
5473 | if (client == null) | ||
5474 | { | ||
5475 | aCircuit = new AgentCircuitData(); | ||
5476 | aCircuit.AgentID = agentID; | ||
5477 | aCircuit.firstname = String.Empty; | ||
5478 | aCircuit.lastname = String.Empty; | ||
5479 | } | ||
5480 | |||
5481 | try | ||
5482 | { | ||
5483 | if (!AuthorizeUser(aCircuit, out reason)) | ||
5484 | { | ||
5485 | // m_log.DebugFormat("[SCENE]: Denying access for {0}", agentID); | ||
5486 | return false; | ||
5487 | } | ||
5488 | } | ||
5489 | catch (Exception e) | ||
5490 | { | ||
5491 | m_log.DebugFormat("[SCENE]: Exception authorizing agent: {0} "+ e.StackTrace, e.Message); | ||
5492 | return false; | ||
5493 | } | ||
5494 | |||
5155 | if (position == Vector3.Zero) // Teleport | 5495 | if (position == Vector3.Zero) // Teleport |
5156 | { | 5496 | { |
5157 | if (!RegionInfo.EstateSettings.AllowDirectTeleport) | 5497 | if (!RegionInfo.EstateSettings.AllowDirectTeleport) |
@@ -5180,13 +5520,46 @@ namespace OpenSim.Region.Framework.Scenes | |||
5180 | } | 5520 | } |
5181 | } | 5521 | } |
5182 | } | 5522 | } |
5523 | |||
5524 | float posX = 128.0f; | ||
5525 | float posY = 128.0f; | ||
5526 | |||
5527 | if (!TestLandRestrictions(agentID, out reason, ref posX, ref posY)) | ||
5528 | { | ||
5529 | // m_log.DebugFormat("[SCENE]: Denying {0} because they are banned on all parcels", agentID); | ||
5530 | return false; | ||
5531 | } | ||
5532 | } | ||
5533 | else // Walking | ||
5534 | { | ||
5535 | ILandObject land = LandChannel.GetLandObject(position.X, position.Y); | ||
5536 | if (land == null) | ||
5537 | return false; | ||
5538 | |||
5539 | bool banned = land.IsBannedFromLand(agentID); | ||
5540 | bool restricted = land.IsRestrictedFromLand(agentID); | ||
5541 | |||
5542 | if (banned || restricted) | ||
5543 | return false; | ||
5183 | } | 5544 | } |
5184 | 5545 | ||
5185 | reason = String.Empty; | 5546 | reason = String.Empty; |
5186 | return true; | 5547 | return true; |
5187 | } | 5548 | } |
5188 | 5549 | ||
5189 | /// <summary> | 5550 | public void StartTimerWatchdog() |
5551 | { | ||
5552 | m_timerWatchdog.Interval = 1000; | ||
5553 | m_timerWatchdog.Elapsed += TimerWatchdog; | ||
5554 | m_timerWatchdog.AutoReset = true; | ||
5555 | m_timerWatchdog.Start(); | ||
5556 | } | ||
5557 | |||
5558 | public void TimerWatchdog(object sender, ElapsedEventArgs e) | ||
5559 | { | ||
5560 | CheckHeartbeat(); | ||
5561 | } | ||
5562 | |||
5190 | /// This method deals with movement when an avatar is automatically moving (but this is distinct from the | 5563 | /// This method deals with movement when an avatar is automatically moving (but this is distinct from the |
5191 | /// autopilot that moves an avatar to a sit target!. | 5564 | /// autopilot that moves an avatar to a sit target!. |
5192 | /// </summary> | 5565 | /// </summary> |
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs index 9c6b884..9b8a3ae 100644 --- a/OpenSim/Region/Framework/Scenes/SceneBase.cs +++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs | |||
@@ -136,6 +136,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
136 | get { return m_permissions; } | 136 | get { return m_permissions; } |
137 | } | 137 | } |
138 | 138 | ||
139 | protected string m_datastore; | ||
140 | |||
139 | /* Used by the loadbalancer plugin on GForge */ | 141 | /* Used by the loadbalancer plugin on GForge */ |
140 | protected RegionStatus m_regStatus; | 142 | protected RegionStatus m_regStatus; |
141 | public RegionStatus RegionStatus | 143 | public RegionStatus RegionStatus |
diff --git a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs index b8616e8..77e808e 100644 --- a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs +++ b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs | |||
@@ -88,7 +88,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
88 | 88 | ||
89 | if (neighbour != null) | 89 | if (neighbour != null) |
90 | { | 90 | { |
91 | m_log.DebugFormat("[INTERGRID]: Successfully informed neighbour {0}-{1} that I'm here", x / Constants.RegionSize, y / Constants.RegionSize); | 91 | // m_log.DebugFormat("[INTERGRID]: Successfully informed neighbour {0}-{1} that I'm here", x / Constants.RegionSize, y / Constants.RegionSize); |
92 | m_scene.EventManager.TriggerOnRegionUp(neighbour); | 92 | m_scene.EventManager.TriggerOnRegionUp(neighbour); |
93 | } | 93 | } |
94 | else | 94 | else |
@@ -102,7 +102,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
102 | //m_log.Info("[INTER]: " + debugRegionName + ": SceneCommunicationService: Sending InterRegion Notification that region is up " + region.RegionName); | 102 | //m_log.Info("[INTER]: " + debugRegionName + ": SceneCommunicationService: Sending InterRegion Notification that region is up " + region.RegionName); |
103 | 103 | ||
104 | List<GridRegion> neighbours = m_scene.GridService.GetNeighbours(m_scene.RegionInfo.ScopeID, m_scene.RegionInfo.RegionID); | 104 | List<GridRegion> neighbours = m_scene.GridService.GetNeighbours(m_scene.RegionInfo.ScopeID, m_scene.RegionInfo.RegionID); |
105 | m_log.DebugFormat("[INTERGRID]: Informing {0} neighbours that this region is up", neighbours.Count); | 105 | //m_log.DebugFormat("[INTERGRID]: Informing {0} neighbours that this region is up", neighbours.Count); |
106 | foreach (GridRegion n in neighbours) | 106 | foreach (GridRegion n in neighbours) |
107 | { | 107 | { |
108 | InformNeighbourThatRegionUpDelegate d = InformNeighboursThatRegionIsUpAsync; | 108 | InformNeighbourThatRegionUpDelegate d = InformNeighboursThatRegionIsUpAsync; |
@@ -182,10 +182,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
182 | } | 182 | } |
183 | } | 183 | } |
184 | 184 | ||
185 | public delegate void SendCloseChildAgentDelegate(UUID agentID, ulong regionHandle); | ||
186 | |||
185 | /// <summary> | 187 | /// <summary> |
186 | /// Closes a child agent on a given region | 188 | /// This Closes child agents on neighboring regions |
189 | /// Calls an asynchronous method to do so.. so it doesn't lag the sim. | ||
187 | /// </summary> | 190 | /// </summary> |
188 | protected void SendCloseChildAgent(UUID agentID, ulong regionHandle) | 191 | protected void SendCloseChildAgentAsync(UUID agentID, ulong regionHandle) |
189 | { | 192 | { |
190 | // let's do our best, but there's not much we can do if the neighbour doesn't accept. | 193 | // let's do our best, but there's not much we can do if the neighbour doesn't accept. |
191 | 194 | ||
@@ -194,31 +197,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
194 | Utils.LongToUInts(regionHandle, out x, out y); | 197 | Utils.LongToUInts(regionHandle, out x, out y); |
195 | 198 | ||
196 | GridRegion destination = m_scene.GridService.GetRegionByPosition(m_regionInfo.ScopeID, (int)x, (int)y); | 199 | GridRegion destination = m_scene.GridService.GetRegionByPosition(m_regionInfo.ScopeID, (int)x, (int)y); |
200 | m_scene.SimulationService.CloseChildAgent(destination, agentID); | ||
201 | } | ||
197 | 202 | ||
198 | m_log.DebugFormat( | 203 | private void SendCloseChildAgentCompleted(IAsyncResult iar) |
199 | "[INTERGRID]: Sending close agent {0} to region at {1}-{2}", | 204 | { |
200 | agentID, destination.RegionCoordX, destination.RegionCoordY); | 205 | SendCloseChildAgentDelegate icon = (SendCloseChildAgentDelegate)iar.AsyncState; |
201 | 206 | icon.EndInvoke(iar); | |
202 | m_scene.SimulationService.CloseAgent(destination, agentID); | ||
203 | } | 207 | } |
204 | 208 | ||
205 | /// <summary> | ||
206 | /// Closes a child agents in a collection of regions. Does so asynchronously | ||
207 | /// so that the caller doesn't wait. | ||
208 | /// </summary> | ||
209 | /// <param name="agentID"></param> | ||
210 | /// <param name="regionslst"></param> | ||
211 | public void SendCloseChildAgentConnections(UUID agentID, List<ulong> regionslst) | 209 | public void SendCloseChildAgentConnections(UUID agentID, List<ulong> regionslst) |
212 | { | 210 | { |
213 | foreach (ulong handle in regionslst) | 211 | foreach (ulong handle in regionslst) |
214 | { | 212 | { |
215 | SendCloseChildAgent(agentID, handle); | 213 | SendCloseChildAgentDelegate d = SendCloseChildAgentAsync; |
214 | d.BeginInvoke(agentID, handle, | ||
215 | SendCloseChildAgentCompleted, | ||
216 | d); | ||
216 | } | 217 | } |
217 | } | 218 | } |
218 | 219 | ||
219 | public List<GridRegion> RequestNamedRegions(string name, int maxNumber) | 220 | public List<GridRegion> RequestNamedRegions(string name, int maxNumber) |
220 | { | 221 | { |
221 | return m_scene.GridService.GetRegionsByName(UUID.Zero, name, maxNumber); | 222 | return m_scene.GridService.GetRegionsByName(UUID.Zero, name, maxNumber); |
222 | } | 223 | } |
223 | } | 224 | } |
224 | } \ No newline at end of file | 225 | } |
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index 67eb0fe..f6f6a1a 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -41,6 +41,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
41 | { | 41 | { |
42 | public delegate void PhysicsCrash(); | 42 | public delegate void PhysicsCrash(); |
43 | 43 | ||
44 | public delegate void AttachToBackupDelegate(SceneObjectGroup sog); | ||
45 | |||
46 | public delegate void DetachFromBackupDelegate(SceneObjectGroup sog); | ||
47 | |||
48 | public delegate void ChangedBackupDelegate(SceneObjectGroup sog); | ||
49 | |||
44 | /// <summary> | 50 | /// <summary> |
45 | /// This class used to be called InnerScene and may not yet truly be a SceneGraph. The non scene graph components | 51 | /// This class used to be called InnerScene and may not yet truly be a SceneGraph. The non scene graph components |
46 | /// should be migrated out over time. | 52 | /// should be migrated out over time. |
@@ -54,11 +60,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
54 | protected internal event PhysicsCrash UnRecoverableError; | 60 | protected internal event PhysicsCrash UnRecoverableError; |
55 | private PhysicsCrash handlerPhysicsCrash = null; | 61 | private PhysicsCrash handlerPhysicsCrash = null; |
56 | 62 | ||
63 | public event AttachToBackupDelegate OnAttachToBackup; | ||
64 | public event DetachFromBackupDelegate OnDetachFromBackup; | ||
65 | public event ChangedBackupDelegate OnChangeBackup; | ||
66 | |||
57 | #endregion | 67 | #endregion |
58 | 68 | ||
59 | #region Fields | 69 | #region Fields |
60 | 70 | ||
61 | protected object m_presenceLock = new object(); | 71 | protected OpenMetaverse.ReaderWriterLockSlim m_scenePresencesLock = new OpenMetaverse.ReaderWriterLockSlim(); |
62 | protected Dictionary<UUID, ScenePresence> m_scenePresenceMap = new Dictionary<UUID, ScenePresence>(); | 72 | protected Dictionary<UUID, ScenePresence> m_scenePresenceMap = new Dictionary<UUID, ScenePresence>(); |
63 | protected List<ScenePresence> m_scenePresenceArray = new List<ScenePresence>(); | 73 | protected List<ScenePresence> m_scenePresenceArray = new List<ScenePresence>(); |
64 | 74 | ||
@@ -123,13 +133,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
123 | 133 | ||
124 | protected internal void Close() | 134 | protected internal void Close() |
125 | { | 135 | { |
126 | lock (m_presenceLock) | 136 | m_scenePresencesLock.EnterWriteLock(); |
137 | try | ||
127 | { | 138 | { |
128 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(); | 139 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(); |
129 | List<ScenePresence> newlist = new List<ScenePresence>(); | 140 | List<ScenePresence> newlist = new List<ScenePresence>(); |
130 | m_scenePresenceMap = newmap; | 141 | m_scenePresenceMap = newmap; |
131 | m_scenePresenceArray = newlist; | 142 | m_scenePresenceArray = newlist; |
132 | } | 143 | } |
144 | finally | ||
145 | { | ||
146 | m_scenePresencesLock.ExitWriteLock(); | ||
147 | } | ||
133 | 148 | ||
134 | lock (SceneObjectGroupsByFullID) | 149 | lock (SceneObjectGroupsByFullID) |
135 | SceneObjectGroupsByFullID.Clear(); | 150 | SceneObjectGroupsByFullID.Clear(); |
@@ -250,6 +265,33 @@ namespace OpenSim.Region.Framework.Scenes | |||
250 | protected internal bool AddRestoredSceneObject( | 265 | protected internal bool AddRestoredSceneObject( |
251 | SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates) | 266 | SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates) |
252 | { | 267 | { |
268 | if (!m_parentScene.CombineRegions) | ||
269 | { | ||
270 | // KF: Check for out-of-region, move inside and make static. | ||
271 | Vector3 npos = new Vector3(sceneObject.RootPart.GroupPosition.X, | ||
272 | sceneObject.RootPart.GroupPosition.Y, | ||
273 | sceneObject.RootPart.GroupPosition.Z); | ||
274 | if (!(((sceneObject.RootPart.Shape.PCode == (byte)PCode.Prim) && (sceneObject.RootPart.Shape.State != 0))) && (npos.X < 0.0 || npos.Y < 0.0 || npos.Z < 0.0 || | ||
275 | npos.X > Constants.RegionSize || | ||
276 | npos.Y > Constants.RegionSize)) | ||
277 | { | ||
278 | if (npos.X < 0.0) npos.X = 1.0f; | ||
279 | if (npos.Y < 0.0) npos.Y = 1.0f; | ||
280 | if (npos.Z < 0.0) npos.Z = 0.0f; | ||
281 | if (npos.X > Constants.RegionSize) npos.X = Constants.RegionSize - 1.0f; | ||
282 | if (npos.Y > Constants.RegionSize) npos.Y = Constants.RegionSize - 1.0f; | ||
283 | |||
284 | foreach (SceneObjectPart part in sceneObject.Parts) | ||
285 | { | ||
286 | part.GroupPosition = npos; | ||
287 | } | ||
288 | sceneObject.RootPart.Velocity = Vector3.Zero; | ||
289 | sceneObject.RootPart.AngularVelocity = Vector3.Zero; | ||
290 | sceneObject.RootPart.Acceleration = Vector3.Zero; | ||
291 | sceneObject.RootPart.Velocity = Vector3.Zero; | ||
292 | } | ||
293 | } | ||
294 | |||
253 | if (attachToBackup && (!alreadyPersisted)) | 295 | if (attachToBackup && (!alreadyPersisted)) |
254 | { | 296 | { |
255 | sceneObject.ForceInventoryPersistence(); | 297 | sceneObject.ForceInventoryPersistence(); |
@@ -340,6 +382,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
340 | /// </returns> | 382 | /// </returns> |
341 | protected bool AddSceneObject(SceneObjectGroup sceneObject, bool attachToBackup, bool sendClientUpdates) | 383 | protected bool AddSceneObject(SceneObjectGroup sceneObject, bool attachToBackup, bool sendClientUpdates) |
342 | { | 384 | { |
385 | if (sceneObject == null) | ||
386 | { | ||
387 | m_log.ErrorFormat("[SCENEGRAPH]: Tried to add null scene object"); | ||
388 | return false; | ||
389 | } | ||
343 | if (sceneObject.UUID == UUID.Zero) | 390 | if (sceneObject.UUID == UUID.Zero) |
344 | { | 391 | { |
345 | m_log.ErrorFormat( | 392 | m_log.ErrorFormat( |
@@ -474,6 +521,30 @@ namespace OpenSim.Region.Framework.Scenes | |||
474 | m_updateList[obj.UUID] = obj; | 521 | m_updateList[obj.UUID] = obj; |
475 | } | 522 | } |
476 | 523 | ||
524 | public void FireAttachToBackup(SceneObjectGroup obj) | ||
525 | { | ||
526 | if (OnAttachToBackup != null) | ||
527 | { | ||
528 | OnAttachToBackup(obj); | ||
529 | } | ||
530 | } | ||
531 | |||
532 | public void FireDetachFromBackup(SceneObjectGroup obj) | ||
533 | { | ||
534 | if (OnDetachFromBackup != null) | ||
535 | { | ||
536 | OnDetachFromBackup(obj); | ||
537 | } | ||
538 | } | ||
539 | |||
540 | public void FireChangeBackup(SceneObjectGroup obj) | ||
541 | { | ||
542 | if (OnChangeBackup != null) | ||
543 | { | ||
544 | OnChangeBackup(obj); | ||
545 | } | ||
546 | } | ||
547 | |||
477 | /// <summary> | 548 | /// <summary> |
478 | /// Process all pending updates | 549 | /// Process all pending updates |
479 | /// </summary> | 550 | /// </summary> |
@@ -591,7 +662,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
591 | 662 | ||
592 | Entities[presence.UUID] = presence; | 663 | Entities[presence.UUID] = presence; |
593 | 664 | ||
594 | lock (m_presenceLock) | 665 | m_scenePresencesLock.EnterWriteLock(); |
666 | try | ||
595 | { | 667 | { |
596 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(m_scenePresenceMap); | 668 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(m_scenePresenceMap); |
597 | List<ScenePresence> newlist = new List<ScenePresence>(m_scenePresenceArray); | 669 | List<ScenePresence> newlist = new List<ScenePresence>(m_scenePresenceArray); |
@@ -615,6 +687,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
615 | m_scenePresenceMap = newmap; | 687 | m_scenePresenceMap = newmap; |
616 | m_scenePresenceArray = newlist; | 688 | m_scenePresenceArray = newlist; |
617 | } | 689 | } |
690 | finally | ||
691 | { | ||
692 | m_scenePresencesLock.ExitWriteLock(); | ||
693 | } | ||
618 | } | 694 | } |
619 | 695 | ||
620 | /// <summary> | 696 | /// <summary> |
@@ -629,7 +705,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
629 | agentID); | 705 | agentID); |
630 | } | 706 | } |
631 | 707 | ||
632 | lock (m_presenceLock) | 708 | m_scenePresencesLock.EnterWriteLock(); |
709 | try | ||
633 | { | 710 | { |
634 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(m_scenePresenceMap); | 711 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(m_scenePresenceMap); |
635 | List<ScenePresence> newlist = new List<ScenePresence>(m_scenePresenceArray); | 712 | List<ScenePresence> newlist = new List<ScenePresence>(m_scenePresenceArray); |
@@ -651,6 +728,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
651 | m_log.WarnFormat("[SCENE GRAPH]: Tried to remove non-existent scene presence with agent ID {0} from scene ScenePresences list", agentID); | 728 | m_log.WarnFormat("[SCENE GRAPH]: Tried to remove non-existent scene presence with agent ID {0} from scene ScenePresences list", agentID); |
652 | } | 729 | } |
653 | } | 730 | } |
731 | finally | ||
732 | { | ||
733 | m_scenePresencesLock.ExitWriteLock(); | ||
734 | } | ||
654 | } | 735 | } |
655 | 736 | ||
656 | protected internal void SwapRootChildAgent(bool direction_RC_CR_T_F) | 737 | protected internal void SwapRootChildAgent(bool direction_RC_CR_T_F) |
@@ -1183,6 +1264,25 @@ namespace OpenSim.Region.Framework.Scenes | |||
1183 | 1264 | ||
1184 | #region Client Event handlers | 1265 | #region Client Event handlers |
1185 | 1266 | ||
1267 | protected internal void ClientChangeObject(uint localID, object odata, IClientAPI remoteClient) | ||
1268 | { | ||
1269 | SceneObjectPart part = GetSceneObjectPart(localID); | ||
1270 | ObjectChangeData data = (ObjectChangeData)odata; | ||
1271 | |||
1272 | if (part != null) | ||
1273 | { | ||
1274 | SceneObjectGroup grp = part.ParentGroup; | ||
1275 | if (grp != null) | ||
1276 | { | ||
1277 | if (m_parentScene.Permissions.CanEditObject(grp.UUID, remoteClient.AgentId)) | ||
1278 | { | ||
1279 | part.StoreUndoState(data.change); // lets test only saving what we changed | ||
1280 | grp.doChangeObject(part, (ObjectChangeData)data); | ||
1281 | } | ||
1282 | } | ||
1283 | } | ||
1284 | } | ||
1285 | |||
1186 | /// <summary> | 1286 | /// <summary> |
1187 | /// Update the scale of an individual prim. | 1287 | /// Update the scale of an individual prim. |
1188 | /// </summary> | 1288 | /// </summary> |
@@ -1197,7 +1297,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
1197 | { | 1297 | { |
1198 | if (m_parentScene.Permissions.CanEditObject(part.ParentGroup.UUID, remoteClient.AgentId)) | 1298 | if (m_parentScene.Permissions.CanEditObject(part.ParentGroup.UUID, remoteClient.AgentId)) |
1199 | { | 1299 | { |
1300 | bool physbuild = false; | ||
1301 | if (part.ParentGroup.RootPart.PhysActor != null) | ||
1302 | { | ||
1303 | part.ParentGroup.RootPart.PhysActor.Building = true; | ||
1304 | physbuild = true; | ||
1305 | } | ||
1306 | |||
1200 | part.Resize(scale); | 1307 | part.Resize(scale); |
1308 | |||
1309 | if (physbuild) | ||
1310 | part.ParentGroup.RootPart.PhysActor.Building = false; | ||
1201 | } | 1311 | } |
1202 | } | 1312 | } |
1203 | } | 1313 | } |
@@ -1209,7 +1319,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
1209 | { | 1319 | { |
1210 | if (m_parentScene.Permissions.CanEditObject(group.UUID, remoteClient.AgentId)) | 1320 | if (m_parentScene.Permissions.CanEditObject(group.UUID, remoteClient.AgentId)) |
1211 | { | 1321 | { |
1322 | bool physbuild = false; | ||
1323 | if (group.RootPart.PhysActor != null) | ||
1324 | { | ||
1325 | group.RootPart.PhysActor.Building = true; | ||
1326 | physbuild = true; | ||
1327 | } | ||
1328 | |||
1212 | group.GroupResize(scale); | 1329 | group.GroupResize(scale); |
1330 | |||
1331 | if (physbuild) | ||
1332 | group.RootPart.PhysActor.Building = false; | ||
1213 | } | 1333 | } |
1214 | } | 1334 | } |
1215 | } | 1335 | } |
@@ -1337,8 +1457,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
1337 | { | 1457 | { |
1338 | if (group.IsAttachment || (group.RootPart.Shape.PCode == 9 && group.RootPart.Shape.State != 0)) | 1458 | if (group.IsAttachment || (group.RootPart.Shape.PCode == 9 && group.RootPart.Shape.State != 0)) |
1339 | { | 1459 | { |
1340 | if (m_parentScene.AttachmentsModule != null) | 1460 | // Set the new attachment point data in the object |
1341 | m_parentScene.AttachmentsModule.UpdateAttachmentPosition(group, pos); | 1461 | byte attachmentPoint = group.GetAttachmentPoint(); |
1462 | group.UpdateGroupPosition(pos); | ||
1463 | group.IsAttachment = false; | ||
1464 | group.AbsolutePosition = group.RootPart.AttachedPos; | ||
1465 | group.AttachmentPoint = attachmentPoint; | ||
1466 | group.HasGroupChanged = true; | ||
1342 | } | 1467 | } |
1343 | else | 1468 | else |
1344 | { | 1469 | { |
@@ -1386,7 +1511,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1386 | /// <param name="SetPhantom"></param> | 1511 | /// <param name="SetPhantom"></param> |
1387 | /// <param name="remoteClient"></param> | 1512 | /// <param name="remoteClient"></param> |
1388 | protected internal void UpdatePrimFlags( | 1513 | protected internal void UpdatePrimFlags( |
1389 | uint localID, bool UsePhysics, bool SetTemporary, bool SetPhantom, IClientAPI remoteClient) | 1514 | uint localID, bool UsePhysics, bool SetTemporary, bool SetPhantom, ExtraPhysicsData PhysData, IClientAPI remoteClient) |
1390 | { | 1515 | { |
1391 | SceneObjectGroup group = GetGroupByPrim(localID); | 1516 | SceneObjectGroup group = GetGroupByPrim(localID); |
1392 | if (group != null) | 1517 | if (group != null) |
@@ -1394,7 +1519,28 @@ namespace OpenSim.Region.Framework.Scenes | |||
1394 | if (m_parentScene.Permissions.CanEditObject(group.UUID, remoteClient.AgentId)) | 1519 | if (m_parentScene.Permissions.CanEditObject(group.UUID, remoteClient.AgentId)) |
1395 | { | 1520 | { |
1396 | // VolumeDetect can't be set via UI and will always be off when a change is made there | 1521 | // VolumeDetect can't be set via UI and will always be off when a change is made there |
1397 | group.UpdatePrimFlags(localID, UsePhysics, SetTemporary, SetPhantom, false); | 1522 | // now only change volume dtc if phantom off |
1523 | |||
1524 | if (PhysData.PhysShapeType == PhysShapeType.invalid) // check for extraPhysics data | ||
1525 | { | ||
1526 | bool vdtc; | ||
1527 | if (SetPhantom) // if phantom keep volumedtc | ||
1528 | vdtc = group.RootPart.VolumeDetectActive; | ||
1529 | else // else turn it off | ||
1530 | vdtc = false; | ||
1531 | |||
1532 | group.UpdatePrimFlags(localID, UsePhysics, SetTemporary, SetPhantom, vdtc); | ||
1533 | } | ||
1534 | else | ||
1535 | { | ||
1536 | SceneObjectPart part = GetSceneObjectPart(localID); | ||
1537 | if (part != null) | ||
1538 | { | ||
1539 | part.UpdateExtraPhysics(PhysData); | ||
1540 | if (part.UpdatePhysRequired) | ||
1541 | remoteClient.SendPartPhysicsProprieties(part); | ||
1542 | } | ||
1543 | } | ||
1398 | } | 1544 | } |
1399 | } | 1545 | } |
1400 | } | 1546 | } |
@@ -1538,6 +1684,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1538 | { | 1684 | { |
1539 | part.Material = Convert.ToByte(material); | 1685 | part.Material = Convert.ToByte(material); |
1540 | group.HasGroupChanged = true; | 1686 | group.HasGroupChanged = true; |
1687 | remoteClient.SendPartPhysicsProprieties(part); | ||
1541 | } | 1688 | } |
1542 | } | 1689 | } |
1543 | } | 1690 | } |
@@ -1602,6 +1749,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1602 | /// <param name="childPrims"></param> | 1749 | /// <param name="childPrims"></param> |
1603 | protected internal void LinkObjects(SceneObjectPart root, List<SceneObjectPart> children) | 1750 | protected internal void LinkObjects(SceneObjectPart root, List<SceneObjectPart> children) |
1604 | { | 1751 | { |
1752 | if (root.KeyframeMotion != null) | ||
1753 | { | ||
1754 | root.KeyframeMotion.Stop(); | ||
1755 | root.KeyframeMotion = null; | ||
1756 | } | ||
1757 | |||
1605 | SceneObjectGroup parentGroup = root.ParentGroup; | 1758 | SceneObjectGroup parentGroup = root.ParentGroup; |
1606 | if (parentGroup == null) return; | 1759 | if (parentGroup == null) return; |
1607 | 1760 | ||
@@ -1610,8 +1763,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1610 | return; | 1763 | return; |
1611 | 1764 | ||
1612 | Monitor.Enter(m_updateLock); | 1765 | Monitor.Enter(m_updateLock); |
1766 | |||
1613 | try | 1767 | try |
1614 | { | 1768 | { |
1769 | parentGroup.areUpdatesSuspended = true; | ||
1770 | |||
1615 | List<SceneObjectGroup> childGroups = new List<SceneObjectGroup>(); | 1771 | List<SceneObjectGroup> childGroups = new List<SceneObjectGroup>(); |
1616 | 1772 | ||
1617 | // We do this in reverse to get the link order of the prims correct | 1773 | // We do this in reverse to get the link order of the prims correct |
@@ -1626,9 +1782,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
1626 | // Make sure no child prim is set for sale | 1782 | // Make sure no child prim is set for sale |
1627 | // So that, on delink, no prims are unwittingly | 1783 | // So that, on delink, no prims are unwittingly |
1628 | // left for sale and sold off | 1784 | // left for sale and sold off |
1629 | child.RootPart.ObjectSaleType = 0; | 1785 | |
1630 | child.RootPart.SalePrice = 10; | 1786 | if (child != null) |
1631 | childGroups.Add(child); | 1787 | { |
1788 | child.RootPart.ObjectSaleType = 0; | ||
1789 | child.RootPart.SalePrice = 10; | ||
1790 | childGroups.Add(child); | ||
1791 | } | ||
1632 | } | 1792 | } |
1633 | 1793 | ||
1634 | foreach (SceneObjectGroup child in childGroups) | 1794 | foreach (SceneObjectGroup child in childGroups) |
@@ -1655,6 +1815,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
1655 | } | 1815 | } |
1656 | finally | 1816 | finally |
1657 | { | 1817 | { |
1818 | lock (SceneObjectGroupsByLocalPartID) | ||
1819 | { | ||
1820 | foreach (SceneObjectPart part in parentGroup.Parts) | ||
1821 | SceneObjectGroupsByLocalPartID[part.LocalId] = parentGroup; | ||
1822 | } | ||
1823 | |||
1824 | parentGroup.areUpdatesSuspended = false; | ||
1825 | parentGroup.HasGroupChanged = true; | ||
1826 | parentGroup.ProcessBackup(m_parentScene.SimulationDataService, true); | ||
1827 | parentGroup.ScheduleGroupForFullUpdate(); | ||
1658 | Monitor.Exit(m_updateLock); | 1828 | Monitor.Exit(m_updateLock); |
1659 | } | 1829 | } |
1660 | } | 1830 | } |
@@ -1677,6 +1847,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1677 | { | 1847 | { |
1678 | if (part != null) | 1848 | if (part != null) |
1679 | { | 1849 | { |
1850 | if (part.KeyframeMotion != null) | ||
1851 | { | ||
1852 | part.KeyframeMotion.Stop(); | ||
1853 | part.KeyframeMotion = null; | ||
1854 | } | ||
1680 | if (part.ParentGroup.PrimCount != 1) // Skip single | 1855 | if (part.ParentGroup.PrimCount != 1) // Skip single |
1681 | { | 1856 | { |
1682 | if (part.LinkNum < 2) // Root | 1857 | if (part.LinkNum < 2) // Root |
@@ -1691,21 +1866,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
1691 | 1866 | ||
1692 | SceneObjectGroup group = part.ParentGroup; | 1867 | SceneObjectGroup group = part.ParentGroup; |
1693 | if (!affectedGroups.Contains(group)) | 1868 | if (!affectedGroups.Contains(group)) |
1869 | { | ||
1870 | group.areUpdatesSuspended = true; | ||
1694 | affectedGroups.Add(group); | 1871 | affectedGroups.Add(group); |
1872 | } | ||
1695 | } | 1873 | } |
1696 | } | 1874 | } |
1697 | } | 1875 | } |
1698 | 1876 | ||
1699 | foreach (SceneObjectPart child in childParts) | 1877 | if (childParts.Count > 0) |
1700 | { | 1878 | { |
1701 | // Unlink all child parts from their groups | 1879 | foreach (SceneObjectPart child in childParts) |
1702 | // | 1880 | { |
1703 | child.ParentGroup.DelinkFromGroup(child, true); | 1881 | // Unlink all child parts from their groups |
1704 | 1882 | // | |
1705 | // These are not in affected groups and will not be | 1883 | child.ParentGroup.DelinkFromGroup(child, true); |
1706 | // handled further. Do the honors here. | 1884 | child.ParentGroup.HasGroupChanged = true; |
1707 | child.ParentGroup.HasGroupChanged = true; | 1885 | child.ParentGroup.ScheduleGroupForFullUpdate(); |
1708 | child.ParentGroup.ScheduleGroupForFullUpdate(); | 1886 | } |
1709 | } | 1887 | } |
1710 | 1888 | ||
1711 | foreach (SceneObjectPart root in rootParts) | 1889 | foreach (SceneObjectPart root in rootParts) |
@@ -1715,56 +1893,68 @@ namespace OpenSim.Region.Framework.Scenes | |||
1715 | // However, editing linked parts and unlinking may be different | 1893 | // However, editing linked parts and unlinking may be different |
1716 | // | 1894 | // |
1717 | SceneObjectGroup group = root.ParentGroup; | 1895 | SceneObjectGroup group = root.ParentGroup; |
1896 | group.areUpdatesSuspended = true; | ||
1718 | 1897 | ||
1719 | List<SceneObjectPart> newSet = new List<SceneObjectPart>(group.Parts); | 1898 | List<SceneObjectPart> newSet = new List<SceneObjectPart>(group.Parts); |
1720 | int numChildren = newSet.Count; | 1899 | int numChildren = newSet.Count; |
1721 | 1900 | ||
1901 | if (numChildren == 1) | ||
1902 | break; | ||
1903 | |||
1722 | // If there are prims left in a link set, but the root is | 1904 | // If there are prims left in a link set, but the root is |
1723 | // slated for unlink, we need to do this | 1905 | // slated for unlink, we need to do this |
1906 | // Unlink the remaining set | ||
1724 | // | 1907 | // |
1725 | if (numChildren != 1) | 1908 | bool sendEventsToRemainder = true; |
1726 | { | 1909 | if (numChildren > 1) |
1727 | // Unlink the remaining set | 1910 | sendEventsToRemainder = false; |
1728 | // | ||
1729 | bool sendEventsToRemainder = true; | ||
1730 | if (numChildren > 1) | ||
1731 | sendEventsToRemainder = false; | ||
1732 | 1911 | ||
1733 | foreach (SceneObjectPart p in newSet) | 1912 | foreach (SceneObjectPart p in newSet) |
1913 | { | ||
1914 | if (p != group.RootPart) | ||
1734 | { | 1915 | { |
1735 | if (p != group.RootPart) | 1916 | group.DelinkFromGroup(p, sendEventsToRemainder); |
1736 | group.DelinkFromGroup(p, sendEventsToRemainder); | 1917 | if (numChildren > 2) |
1918 | { | ||
1919 | p.ParentGroup.areUpdatesSuspended = true; | ||
1920 | } | ||
1921 | else | ||
1922 | { | ||
1923 | p.ParentGroup.HasGroupChanged = true; | ||
1924 | p.ParentGroup.ScheduleGroupForFullUpdate(); | ||
1925 | } | ||
1737 | } | 1926 | } |
1927 | } | ||
1738 | 1928 | ||
1739 | // If there is more than one prim remaining, we | 1929 | // If there is more than one prim remaining, we |
1740 | // need to re-link | 1930 | // need to re-link |
1931 | // | ||
1932 | if (numChildren > 2) | ||
1933 | { | ||
1934 | // Remove old root | ||
1741 | // | 1935 | // |
1742 | if (numChildren > 2) | 1936 | if (newSet.Contains(root)) |
1937 | newSet.Remove(root); | ||
1938 | |||
1939 | // Preserve link ordering | ||
1940 | // | ||
1941 | newSet.Sort(delegate (SceneObjectPart a, SceneObjectPart b) | ||
1743 | { | 1942 | { |
1744 | // Remove old root | 1943 | return a.LinkNum.CompareTo(b.LinkNum); |
1745 | // | 1944 | }); |
1746 | if (newSet.Contains(root)) | ||
1747 | newSet.Remove(root); | ||
1748 | |||
1749 | // Preserve link ordering | ||
1750 | // | ||
1751 | newSet.Sort(delegate (SceneObjectPart a, SceneObjectPart b) | ||
1752 | { | ||
1753 | return a.LinkNum.CompareTo(b.LinkNum); | ||
1754 | }); | ||
1755 | 1945 | ||
1756 | // Determine new root | 1946 | // Determine new root |
1757 | // | 1947 | // |
1758 | SceneObjectPart newRoot = newSet[0]; | 1948 | SceneObjectPart newRoot = newSet[0]; |
1759 | newSet.RemoveAt(0); | 1949 | newSet.RemoveAt(0); |
1760 | 1950 | ||
1761 | foreach (SceneObjectPart newChild in newSet) | 1951 | foreach (SceneObjectPart newChild in newSet) |
1762 | newChild.ClearUpdateSchedule(); | 1952 | newChild.ClearUpdateSchedule(); |
1763 | 1953 | ||
1764 | LinkObjects(newRoot, newSet); | 1954 | newRoot.ParentGroup.areUpdatesSuspended = true; |
1765 | if (!affectedGroups.Contains(newRoot.ParentGroup)) | 1955 | LinkObjects(newRoot, newSet); |
1766 | affectedGroups.Add(newRoot.ParentGroup); | 1956 | if (!affectedGroups.Contains(newRoot.ParentGroup)) |
1767 | } | 1957 | affectedGroups.Add(newRoot.ParentGroup); |
1768 | } | 1958 | } |
1769 | } | 1959 | } |
1770 | 1960 | ||
@@ -1772,8 +1962,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
1772 | // | 1962 | // |
1773 | foreach (SceneObjectGroup g in affectedGroups) | 1963 | foreach (SceneObjectGroup g in affectedGroups) |
1774 | { | 1964 | { |
1965 | // Child prims that have been unlinked and deleted will | ||
1966 | // return unless the root is deleted. This will remove them | ||
1967 | // from the database. They will be rewritten immediately, | ||
1968 | // minus the rows for the unlinked child prims. | ||
1969 | m_parentScene.SimulationDataService.RemoveObject(g.UUID, m_parentScene.RegionInfo.RegionID); | ||
1775 | g.TriggerScriptChangedEvent(Changed.LINK); | 1970 | g.TriggerScriptChangedEvent(Changed.LINK); |
1776 | g.HasGroupChanged = true; // Persist | 1971 | g.HasGroupChanged = true; // Persist |
1972 | g.areUpdatesSuspended = false; | ||
1777 | g.ScheduleGroupForFullUpdate(); | 1973 | g.ScheduleGroupForFullUpdate(); |
1778 | } | 1974 | } |
1779 | } | 1975 | } |
@@ -1875,9 +2071,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1875 | child.ApplyNextOwnerPermissions(); | 2071 | child.ApplyNextOwnerPermissions(); |
1876 | } | 2072 | } |
1877 | } | 2073 | } |
1878 | |||
1879 | copy.RootPart.ObjectSaleType = 0; | ||
1880 | copy.RootPart.SalePrice = 10; | ||
1881 | } | 2074 | } |
1882 | 2075 | ||
1883 | // FIXME: This section needs to be refactored so that it just calls AddSceneObject() | 2076 | // FIXME: This section needs to be refactored so that it just calls AddSceneObject() |
diff --git a/OpenSim/Region/Framework/Scenes/SceneManager.cs b/OpenSim/Region/Framework/Scenes/SceneManager.cs index d73a959..e4eaf3a 100644 --- a/OpenSim/Region/Framework/Scenes/SceneManager.cs +++ b/OpenSim/Region/Framework/Scenes/SceneManager.cs | |||
@@ -356,7 +356,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
356 | 356 | ||
357 | public bool TrySetCurrentScene(UUID regionID) | 357 | public bool TrySetCurrentScene(UUID regionID) |
358 | { | 358 | { |
359 | m_log.Debug("Searching for Region: '" + regionID + "'"); | 359 | // m_log.Debug("Searching for Region: '" + regionID + "'"); |
360 | 360 | ||
361 | lock (m_localScenes) | 361 | lock (m_localScenes) |
362 | { | 362 | { |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.Inventory.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.Inventory.cs index 10012d0..2effa25 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.Inventory.cs | |||
@@ -69,10 +69,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
69 | /// <summary> | 69 | /// <summary> |
70 | /// Stop the scripts contained in all the prims in this group | 70 | /// Stop the scripts contained in all the prims in this group |
71 | /// </summary> | 71 | /// </summary> |
72 | /// <param name="sceneObjectBeingDeleted"> | ||
73 | /// Should be true if these scripts are being removed because the scene | ||
74 | /// object is being deleted. This will prevent spurious updates to the client. | ||
75 | /// </param> | ||
76 | public void RemoveScriptInstances(bool sceneObjectBeingDeleted) | 72 | public void RemoveScriptInstances(bool sceneObjectBeingDeleted) |
77 | { | 73 | { |
78 | SceneObjectPart[] parts = m_parts.GetArray(); | 74 | SceneObjectPart[] parts = m_parts.GetArray(); |
@@ -227,6 +223,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
227 | 223 | ||
228 | public uint GetEffectivePermissions() | 224 | public uint GetEffectivePermissions() |
229 | { | 225 | { |
226 | return GetEffectivePermissions(false); | ||
227 | } | ||
228 | |||
229 | public uint GetEffectivePermissions(bool useBase) | ||
230 | { | ||
230 | uint perms=(uint)(PermissionMask.Modify | | 231 | uint perms=(uint)(PermissionMask.Modify | |
231 | PermissionMask.Copy | | 232 | PermissionMask.Copy | |
232 | PermissionMask.Move | | 233 | PermissionMask.Move | |
@@ -238,7 +239,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
238 | for (int i = 0; i < parts.Length; i++) | 239 | for (int i = 0; i < parts.Length; i++) |
239 | { | 240 | { |
240 | SceneObjectPart part = parts[i]; | 241 | SceneObjectPart part = parts[i]; |
241 | ownerMask &= part.OwnerMask; | 242 | if (useBase) |
243 | ownerMask &= part.BaseMask; | ||
244 | else | ||
245 | ownerMask &= part.OwnerMask; | ||
242 | perms &= part.Inventory.MaskEffectivePermissions(); | 246 | perms &= part.Inventory.MaskEffectivePermissions(); |
243 | } | 247 | } |
244 | 248 | ||
@@ -380,6 +384,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
380 | 384 | ||
381 | public void ResumeScripts() | 385 | public void ResumeScripts() |
382 | { | 386 | { |
387 | if (m_scene.RegionInfo.RegionSettings.DisableScripts) | ||
388 | return; | ||
389 | |||
383 | SceneObjectPart[] parts = m_parts.GetArray(); | 390 | SceneObjectPart[] parts = m_parts.GetArray(); |
384 | for (int i = 0; i < parts.Length; i++) | 391 | for (int i = 0; i < parts.Length; i++) |
385 | parts[i].Inventory.ResumeScripts(); | 392 | parts[i].Inventory.ResumeScripts(); |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 49a3485..c47db97 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -24,11 +24,12 @@ | |||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 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. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Drawing; | 30 | using System.Drawing; |
31 | using System.IO; | 31 | using System.IO; |
32 | using System.Diagnostics; | ||
32 | using System.Linq; | 33 | using System.Linq; |
33 | using System.Threading; | 34 | using System.Threading; |
34 | using System.Xml; | 35 | using System.Xml; |
@@ -42,6 +43,7 @@ using OpenSim.Region.Framework.Scenes.Serialization; | |||
42 | 43 | ||
43 | namespace OpenSim.Region.Framework.Scenes | 44 | namespace OpenSim.Region.Framework.Scenes |
44 | { | 45 | { |
46 | |||
45 | [Flags] | 47 | [Flags] |
46 | public enum scriptEvents | 48 | public enum scriptEvents |
47 | { | 49 | { |
@@ -105,8 +107,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
105 | /// since the group's last persistent backup | 107 | /// since the group's last persistent backup |
106 | /// </summary> | 108 | /// </summary> |
107 | private bool m_hasGroupChanged = false; | 109 | private bool m_hasGroupChanged = false; |
108 | private long timeFirstChanged; | 110 | private long timeFirstChanged = 0; |
109 | private long timeLastChanged; | 111 | private long timeLastChanged = 0; |
112 | private long m_maxPersistTime = 0; | ||
113 | private long m_minPersistTime = 0; | ||
114 | private Random m_rand; | ||
115 | private bool m_suspendUpdates; | ||
116 | private List<ScenePresence> m_linkedAvatars = new List<ScenePresence>(); | ||
117 | |||
118 | public bool areUpdatesSuspended | ||
119 | { | ||
120 | get | ||
121 | { | ||
122 | return m_suspendUpdates; | ||
123 | } | ||
124 | set | ||
125 | { | ||
126 | m_suspendUpdates = value; | ||
127 | if (!value) | ||
128 | { | ||
129 | QueueForUpdateCheck(); | ||
130 | } | ||
131 | } | ||
132 | } | ||
110 | 133 | ||
111 | public bool HasGroupChanged | 134 | public bool HasGroupChanged |
112 | { | 135 | { |
@@ -114,9 +137,39 @@ namespace OpenSim.Region.Framework.Scenes | |||
114 | { | 137 | { |
115 | if (value) | 138 | if (value) |
116 | { | 139 | { |
140 | if (m_isBackedUp) | ||
141 | { | ||
142 | m_scene.SceneGraph.FireChangeBackup(this); | ||
143 | } | ||
117 | timeLastChanged = DateTime.Now.Ticks; | 144 | timeLastChanged = DateTime.Now.Ticks; |
118 | if (!m_hasGroupChanged) | 145 | if (!m_hasGroupChanged) |
119 | timeFirstChanged = DateTime.Now.Ticks; | 146 | timeFirstChanged = DateTime.Now.Ticks; |
147 | if (m_rootPart != null && m_rootPart.UUID != null && m_scene != null) | ||
148 | { | ||
149 | if (m_rand == null) | ||
150 | { | ||
151 | byte[] val = new byte[16]; | ||
152 | m_rootPart.UUID.ToBytes(val, 0); | ||
153 | m_rand = new Random(BitConverter.ToInt32(val, 0)); | ||
154 | } | ||
155 | |||
156 | if (m_scene.GetRootAgentCount() == 0) | ||
157 | { | ||
158 | //If the region is empty, this change has been made by an automated process | ||
159 | //and thus we delay the persist time by a random amount between 1.5 and 2.5. | ||
160 | |||
161 | float factor = 1.5f + (float)(m_rand.NextDouble()); | ||
162 | m_maxPersistTime = (long)((float)m_scene.m_persistAfter * factor); | ||
163 | m_minPersistTime = (long)((float)m_scene.m_dontPersistBefore * factor); | ||
164 | } | ||
165 | else | ||
166 | { | ||
167 | //If the region is not empty, we want to obey the minimum and maximum persist times | ||
168 | //but add a random factor so we stagger the object persistance a little | ||
169 | m_maxPersistTime = (long)((float)m_scene.m_persistAfter * (1.0d - (m_rand.NextDouble() / 5.0d))); //Multiply by 1.0-1.5 | ||
170 | m_minPersistTime = (long)((float)m_scene.m_dontPersistBefore * (1.0d + (m_rand.NextDouble() / 2.0d))); //Multiply by 0.8-1.0 | ||
171 | } | ||
172 | } | ||
120 | } | 173 | } |
121 | m_hasGroupChanged = value; | 174 | m_hasGroupChanged = value; |
122 | 175 | ||
@@ -131,7 +184,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
131 | /// Has the group changed due to an unlink operation? We record this in order to optimize deletion, since | 184 | /// Has the group changed due to an unlink operation? We record this in order to optimize deletion, since |
132 | /// an unlinked group currently has to be persisted to the database before we can perform an unlink operation. | 185 | /// an unlinked group currently has to be persisted to the database before we can perform an unlink operation. |
133 | /// </summary> | 186 | /// </summary> |
134 | public bool HasGroupChangedDueToDelink { get; private set; } | 187 | public bool HasGroupChangedDueToDelink { get; set; } |
135 | 188 | ||
136 | private bool isTimeToPersist() | 189 | private bool isTimeToPersist() |
137 | { | 190 | { |
@@ -141,8 +194,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
141 | return false; | 194 | return false; |
142 | if (m_scene.ShuttingDown) | 195 | if (m_scene.ShuttingDown) |
143 | return true; | 196 | return true; |
197 | |||
198 | if (m_minPersistTime == 0 || m_maxPersistTime == 0) | ||
199 | { | ||
200 | m_maxPersistTime = m_scene.m_persistAfter; | ||
201 | m_minPersistTime = m_scene.m_dontPersistBefore; | ||
202 | } | ||
203 | |||
144 | long currentTime = DateTime.Now.Ticks; | 204 | long currentTime = DateTime.Now.Ticks; |
145 | if (currentTime - timeLastChanged > m_scene.m_dontPersistBefore || currentTime - timeFirstChanged > m_scene.m_persistAfter) | 205 | |
206 | if (timeLastChanged == 0) timeLastChanged = currentTime; | ||
207 | if (timeFirstChanged == 0) timeFirstChanged = currentTime; | ||
208 | |||
209 | if (currentTime - timeLastChanged > m_minPersistTime || currentTime - timeFirstChanged > m_maxPersistTime) | ||
146 | return true; | 210 | return true; |
147 | return false; | 211 | return false; |
148 | } | 212 | } |
@@ -245,10 +309,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
245 | 309 | ||
246 | private bool m_scriptListens_atTarget; | 310 | private bool m_scriptListens_atTarget; |
247 | private bool m_scriptListens_notAtTarget; | 311 | private bool m_scriptListens_notAtTarget; |
248 | |||
249 | private bool m_scriptListens_atRotTarget; | 312 | private bool m_scriptListens_atRotTarget; |
250 | private bool m_scriptListens_notAtRotTarget; | 313 | private bool m_scriptListens_notAtRotTarget; |
251 | 314 | ||
315 | public bool m_dupeInProgress = false; | ||
252 | internal Dictionary<UUID, string> m_savedScriptState; | 316 | internal Dictionary<UUID, string> m_savedScriptState; |
253 | 317 | ||
254 | #region Properties | 318 | #region Properties |
@@ -285,6 +349,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
285 | get { return m_parts.Count; } | 349 | get { return m_parts.Count; } |
286 | } | 350 | } |
287 | 351 | ||
352 | // protected Quaternion m_rotation = Quaternion.Identity; | ||
353 | // | ||
354 | // public virtual Quaternion Rotation | ||
355 | // { | ||
356 | // get { return m_rotation; } | ||
357 | // set { | ||
358 | // m_rotation = value; | ||
359 | // } | ||
360 | // } | ||
361 | |||
288 | public Quaternion GroupRotation | 362 | public Quaternion GroupRotation |
289 | { | 363 | { |
290 | get { return m_rootPart.RotationOffset; } | 364 | get { return m_rootPart.RotationOffset; } |
@@ -404,14 +478,99 @@ namespace OpenSim.Region.Framework.Scenes | |||
404 | 478 | ||
405 | if (Scene != null) | 479 | if (Scene != null) |
406 | { | 480 | { |
407 | if ((Scene.TestBorderCross(val - Vector3.UnitX, Cardinals.E) || Scene.TestBorderCross(val + Vector3.UnitX, Cardinals.W) | 481 | // if ((Scene.TestBorderCross(val - Vector3.UnitX, Cardinals.E) || Scene.TestBorderCross(val + Vector3.UnitX, Cardinals.W) |
408 | || Scene.TestBorderCross(val - Vector3.UnitY, Cardinals.N) || Scene.TestBorderCross(val + Vector3.UnitY, Cardinals.S)) | 482 | // || Scene.TestBorderCross(val - Vector3.UnitY, Cardinals.N) || Scene.TestBorderCross(val + Vector3.UnitY, Cardinals.S)) |
483 | // && !IsAttachmentCheckFull() && (!Scene.LoadingPrims)) | ||
484 | if ((Scene.TestBorderCross(val, Cardinals.E) || Scene.TestBorderCross(val, Cardinals.W) | ||
485 | || Scene.TestBorderCross(val, Cardinals.N) || Scene.TestBorderCross(val, Cardinals.S)) | ||
409 | && !IsAttachmentCheckFull() && (!Scene.LoadingPrims)) | 486 | && !IsAttachmentCheckFull() && (!Scene.LoadingPrims)) |
410 | { | 487 | { |
411 | m_scene.CrossPrimGroupIntoNewRegion(val, this, true); | 488 | IEntityTransferModule entityTransfer = m_scene.RequestModuleInterface<IEntityTransferModule>(); |
489 | uint x = 0; | ||
490 | uint y = 0; | ||
491 | string version = String.Empty; | ||
492 | Vector3 newpos = Vector3.Zero; | ||
493 | OpenSim.Services.Interfaces.GridRegion destination = null; | ||
494 | |||
495 | bool canCross = true; | ||
496 | foreach (ScenePresence av in m_linkedAvatars) | ||
497 | { | ||
498 | // We need to cross these agents. First, let's find | ||
499 | // out if any of them can't cross for some reason. | ||
500 | // We have to deny the crossing entirely if any | ||
501 | // of them are banned. Alternatively, we could | ||
502 | // unsit banned agents.... | ||
503 | |||
504 | |||
505 | // We set the avatar position as being the object | ||
506 | // position to get the region to send to | ||
507 | if ((destination = entityTransfer.GetDestination(m_scene, av.UUID, val, out x, out y, out version, out newpos)) == null) | ||
508 | { | ||
509 | canCross = false; | ||
510 | break; | ||
511 | } | ||
512 | |||
513 | m_log.DebugFormat("[SCENE OBJECT]: Avatar {0} needs to be crossed to {1}", av.Name, destination.RegionName); | ||
514 | } | ||
515 | |||
516 | if (canCross) | ||
517 | { | ||
518 | // We unparent the SP quietly so that it won't | ||
519 | // be made to stand up | ||
520 | foreach (ScenePresence av in m_linkedAvatars) | ||
521 | { | ||
522 | SceneObjectPart parentPart = m_scene.GetSceneObjectPart(av.ParentID); | ||
523 | if (parentPart != null) | ||
524 | av.ParentUUID = parentPart.UUID; | ||
525 | |||
526 | av.ParentID = 0; | ||
527 | } | ||
528 | |||
529 | m_scene.CrossPrimGroupIntoNewRegion(val, this, true); | ||
530 | |||
531 | // Normalize | ||
532 | if (val.X >= Constants.RegionSize) | ||
533 | val.X -= Constants.RegionSize; | ||
534 | if (val.Y >= Constants.RegionSize) | ||
535 | val.Y -= Constants.RegionSize; | ||
536 | if (val.X < 0) | ||
537 | val.X += Constants.RegionSize; | ||
538 | if (val.Y < 0) | ||
539 | val.Y += Constants.RegionSize; | ||
540 | |||
541 | // If it's deleted, crossing was successful | ||
542 | if (IsDeleted) | ||
543 | { | ||
544 | foreach (ScenePresence av in m_linkedAvatars) | ||
545 | { | ||
546 | m_log.DebugFormat("[SCENE OBJECT]: Crossing avatar {0} to {1}", av.Name, val); | ||
547 | |||
548 | av.IsInTransit = true; | ||
549 | |||
550 | CrossAgentToNewRegionDelegate d = entityTransfer.CrossAgentToNewRegionAsync; | ||
551 | d.BeginInvoke(av, val, x, y, destination, av.Flying, version, CrossAgentToNewRegionCompleted, d); | ||
552 | } | ||
553 | |||
554 | return; | ||
555 | } | ||
556 | } | ||
557 | else if (RootPart.PhysActor != null) | ||
558 | { | ||
559 | RootPart.PhysActor.CrossingFailure(); | ||
560 | } | ||
561 | |||
562 | Vector3 oldp = AbsolutePosition; | ||
563 | val.X = Util.Clamp<float>(oldp.X, 0.5f, (float)Constants.RegionSize - 0.5f); | ||
564 | val.Y = Util.Clamp<float>(oldp.Y, 0.5f, (float)Constants.RegionSize - 0.5f); | ||
565 | val.Z = Util.Clamp<float>(oldp.Z, 0.5f, 4096.0f); | ||
412 | } | 566 | } |
413 | } | 567 | } |
414 | 568 | /* don't see the need but worse don't see where is restored to false if things stay in | |
569 | foreach (SceneObjectPart part in m_parts.GetArray()) | ||
570 | { | ||
571 | part.IgnoreUndoUpdate = true; | ||
572 | } | ||
573 | */ | ||
415 | if (RootPart.GetStatusSandbox()) | 574 | if (RootPart.GetStatusSandbox()) |
416 | { | 575 | { |
417 | if (Util.GetDistanceTo(RootPart.StatusSandboxPos, value) > 10) | 576 | if (Util.GetDistanceTo(RootPart.StatusSandboxPos, value) > 10) |
@@ -425,10 +584,30 @@ namespace OpenSim.Region.Framework.Scenes | |||
425 | return; | 584 | return; |
426 | } | 585 | } |
427 | } | 586 | } |
428 | |||
429 | SceneObjectPart[] parts = m_parts.GetArray(); | 587 | SceneObjectPart[] parts = m_parts.GetArray(); |
430 | for (int i = 0; i < parts.Length; i++) | 588 | bool triggerScriptEvent = m_rootPart.GroupPosition != val; |
431 | parts[i].GroupPosition = val; | 589 | if (m_dupeInProgress) |
590 | triggerScriptEvent = false; | ||
591 | foreach (SceneObjectPart part in parts) | ||
592 | { | ||
593 | part.GroupPosition = val; | ||
594 | if (triggerScriptEvent) | ||
595 | part.TriggerScriptChangedEvent(Changed.POSITION); | ||
596 | } | ||
597 | if (!m_dupeInProgress) | ||
598 | { | ||
599 | foreach (ScenePresence av in m_linkedAvatars) | ||
600 | { | ||
601 | SceneObjectPart p = m_scene.GetSceneObjectPart(av.ParentID); | ||
602 | if (p != null && m_parts.TryGetValue(p.UUID, out p)) | ||
603 | { | ||
604 | Vector3 offset = p.GetWorldPosition() - av.ParentPosition; | ||
605 | av.AbsolutePosition += offset; | ||
606 | av.ParentPosition = p.GetWorldPosition(); //ParentPosition gets cleared by AbsolutePosition | ||
607 | av.SendAvatarDataToAllAgents(); | ||
608 | } | ||
609 | } | ||
610 | } | ||
432 | 611 | ||
433 | //if (m_rootPart.PhysActor != null) | 612 | //if (m_rootPart.PhysActor != null) |
434 | //{ | 613 | //{ |
@@ -443,6 +622,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
443 | } | 622 | } |
444 | } | 623 | } |
445 | 624 | ||
625 | public override Vector3 Velocity | ||
626 | { | ||
627 | get { return RootPart.Velocity; } | ||
628 | set { RootPart.Velocity = value; } | ||
629 | } | ||
630 | |||
631 | private void CrossAgentToNewRegionCompleted(IAsyncResult iar) | ||
632 | { | ||
633 | CrossAgentToNewRegionDelegate icon = (CrossAgentToNewRegionDelegate)iar.AsyncState; | ||
634 | ScenePresence agent = icon.EndInvoke(iar); | ||
635 | |||
636 | //// If the cross was successful, this agent is a child agent | ||
637 | //if (agent.IsChildAgent) | ||
638 | // agent.Reset(); | ||
639 | //else // Not successful | ||
640 | // agent.RestoreInCurrentScene(); | ||
641 | |||
642 | // In any case | ||
643 | agent.IsInTransit = false; | ||
644 | |||
645 | m_log.DebugFormat("[SCENE OBJECT]: Crossing agent {0} {1} completed.", agent.Firstname, agent.Lastname); | ||
646 | } | ||
647 | |||
446 | public override uint LocalId | 648 | public override uint LocalId |
447 | { | 649 | { |
448 | get { return m_rootPart.LocalId; } | 650 | get { return m_rootPart.LocalId; } |
@@ -524,6 +726,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
524 | m_isSelected = value; | 726 | m_isSelected = value; |
525 | // Tell physics engine that group is selected | 727 | // Tell physics engine that group is selected |
526 | 728 | ||
729 | // this is not right | ||
730 | // but ode engines should only really need to know about root part | ||
731 | // so they can put entire object simulation on hold and not colliding | ||
732 | // keep as was for now | ||
733 | |||
527 | PhysicsActor pa = m_rootPart.PhysActor; | 734 | PhysicsActor pa = m_rootPart.PhysActor; |
528 | if (pa != null) | 735 | if (pa != null) |
529 | { | 736 | { |
@@ -540,6 +747,42 @@ namespace OpenSim.Region.Framework.Scenes | |||
540 | childPa.Selected = value; | 747 | childPa.Selected = value; |
541 | } | 748 | } |
542 | } | 749 | } |
750 | if (RootPart.KeyframeMotion != null) | ||
751 | RootPart.KeyframeMotion.Selected = value; | ||
752 | } | ||
753 | } | ||
754 | |||
755 | public void PartSelectChanged(bool partSelect) | ||
756 | { | ||
757 | // any part selected makes group selected | ||
758 | if (m_isSelected == partSelect) | ||
759 | return; | ||
760 | |||
761 | if (partSelect) | ||
762 | { | ||
763 | IsSelected = partSelect; | ||
764 | // if (!IsAttachment) | ||
765 | // ScheduleGroupForFullUpdate(); | ||
766 | } | ||
767 | else | ||
768 | { | ||
769 | // bad bad bad 2 heavy for large linksets | ||
770 | // since viewer does send lot of (un)selects | ||
771 | // this needs to be replaced by a specific list or count ? | ||
772 | // but that will require extra code in several places | ||
773 | |||
774 | SceneObjectPart[] parts = m_parts.GetArray(); | ||
775 | for (int i = 0; i < parts.Length; i++) | ||
776 | { | ||
777 | SceneObjectPart part = parts[i]; | ||
778 | if (part.IsSelected) | ||
779 | return; | ||
780 | } | ||
781 | IsSelected = partSelect; | ||
782 | if (!IsAttachment) | ||
783 | { | ||
784 | ScheduleGroupForFullUpdate(); | ||
785 | } | ||
543 | } | 786 | } |
544 | } | 787 | } |
545 | 788 | ||
@@ -617,6 +860,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
617 | /// </summary> | 860 | /// </summary> |
618 | public SceneObjectGroup() | 861 | public SceneObjectGroup() |
619 | { | 862 | { |
863 | |||
620 | } | 864 | } |
621 | 865 | ||
622 | /// <summary> | 866 | /// <summary> |
@@ -633,7 +877,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
633 | /// Constructor. This object is added to the scene later via AttachToScene() | 877 | /// Constructor. This object is added to the scene later via AttachToScene() |
634 | /// </summary> | 878 | /// </summary> |
635 | public SceneObjectGroup(UUID ownerID, Vector3 pos, Quaternion rot, PrimitiveBaseShape shape) | 879 | public SceneObjectGroup(UUID ownerID, Vector3 pos, Quaternion rot, PrimitiveBaseShape shape) |
636 | { | 880 | { |
637 | SetRootPart(new SceneObjectPart(ownerID, shape, pos, rot, Vector3.Zero)); | 881 | SetRootPart(new SceneObjectPart(ownerID, shape, pos, rot, Vector3.Zero)); |
638 | } | 882 | } |
639 | 883 | ||
@@ -669,6 +913,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
669 | /// </summary> | 913 | /// </summary> |
670 | public virtual void AttachToBackup() | 914 | public virtual void AttachToBackup() |
671 | { | 915 | { |
916 | if (IsAttachment) return; | ||
917 | m_scene.SceneGraph.FireAttachToBackup(this); | ||
918 | |||
672 | if (InSceneBackup) | 919 | if (InSceneBackup) |
673 | { | 920 | { |
674 | //m_log.DebugFormat( | 921 | //m_log.DebugFormat( |
@@ -711,6 +958,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
711 | 958 | ||
712 | ApplyPhysics(); | 959 | ApplyPhysics(); |
713 | 960 | ||
961 | if (RootPart.PhysActor != null) | ||
962 | RootPart.Force = RootPart.Force; | ||
963 | if (RootPart.PhysActor != null) | ||
964 | RootPart.Torque = RootPart.Torque; | ||
965 | if (RootPart.PhysActor != null) | ||
966 | RootPart.Buoyancy = RootPart.Buoyancy; | ||
967 | |||
714 | // Don't trigger the update here - otherwise some client issues occur when multiple updates are scheduled | 968 | // Don't trigger the update here - otherwise some client issues occur when multiple updates are scheduled |
715 | // for the same object with very different properties. The caller must schedule the update. | 969 | // for the same object with very different properties. The caller must schedule the update. |
716 | //ScheduleGroupForFullUpdate(); | 970 | //ScheduleGroupForFullUpdate(); |
@@ -726,6 +980,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
726 | EntityIntersection result = new EntityIntersection(); | 980 | EntityIntersection result = new EntityIntersection(); |
727 | 981 | ||
728 | SceneObjectPart[] parts = m_parts.GetArray(); | 982 | SceneObjectPart[] parts = m_parts.GetArray(); |
983 | |||
984 | // Find closest hit here | ||
985 | float idist = float.MaxValue; | ||
986 | |||
729 | for (int i = 0; i < parts.Length; i++) | 987 | for (int i = 0; i < parts.Length; i++) |
730 | { | 988 | { |
731 | SceneObjectPart part = parts[i]; | 989 | SceneObjectPart part = parts[i]; |
@@ -740,11 +998,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
740 | 998 | ||
741 | EntityIntersection inter = part.TestIntersectionOBB(hRay, parentrotation, frontFacesOnly, faceCenters); | 999 | EntityIntersection inter = part.TestIntersectionOBB(hRay, parentrotation, frontFacesOnly, faceCenters); |
742 | 1000 | ||
743 | // This may need to be updated to the maximum draw distance possible.. | ||
744 | // We might (and probably will) be checking for prim creation from other sims | ||
745 | // when the camera crosses the border. | ||
746 | float idist = Constants.RegionSize; | ||
747 | |||
748 | if (inter.HitTF) | 1001 | if (inter.HitTF) |
749 | { | 1002 | { |
750 | // We need to find the closest prim to return to the testcaller along the ray | 1003 | // We need to find the closest prim to return to the testcaller along the ray |
@@ -755,10 +1008,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
755 | result.obj = part; | 1008 | result.obj = part; |
756 | result.normal = inter.normal; | 1009 | result.normal = inter.normal; |
757 | result.distance = inter.distance; | 1010 | result.distance = inter.distance; |
1011 | |||
1012 | idist = inter.distance; | ||
758 | } | 1013 | } |
759 | } | 1014 | } |
760 | } | 1015 | } |
761 | |||
762 | return result; | 1016 | return result; |
763 | } | 1017 | } |
764 | 1018 | ||
@@ -770,25 +1024,27 @@ namespace OpenSim.Region.Framework.Scenes | |||
770 | /// <returns></returns> | 1024 | /// <returns></returns> |
771 | public void GetAxisAlignedBoundingBoxRaw(out float minX, out float maxX, out float minY, out float maxY, out float minZ, out float maxZ) | 1025 | public void GetAxisAlignedBoundingBoxRaw(out float minX, out float maxX, out float minY, out float maxY, out float minZ, out float maxZ) |
772 | { | 1026 | { |
773 | maxX = -256f; | 1027 | maxX = float.MinValue; |
774 | maxY = -256f; | 1028 | maxY = float.MinValue; |
775 | maxZ = -256f; | 1029 | maxZ = float.MinValue; |
776 | minX = 256f; | 1030 | minX = float.MaxValue; |
777 | minY = 256f; | 1031 | minY = float.MaxValue; |
778 | minZ = 8192f; | 1032 | minZ = float.MaxValue; |
779 | 1033 | ||
780 | SceneObjectPart[] parts = m_parts.GetArray(); | 1034 | SceneObjectPart[] parts = m_parts.GetArray(); |
781 | for (int i = 0; i < parts.Length; i++) | 1035 | foreach (SceneObjectPart part in parts) |
782 | { | 1036 | { |
783 | SceneObjectPart part = parts[i]; | ||
784 | |||
785 | Vector3 worldPos = part.GetWorldPosition(); | 1037 | Vector3 worldPos = part.GetWorldPosition(); |
786 | Vector3 offset = worldPos - AbsolutePosition; | 1038 | Vector3 offset = worldPos - AbsolutePosition; |
787 | Quaternion worldRot; | 1039 | Quaternion worldRot; |
788 | if (part.ParentID == 0) | 1040 | if (part.ParentID == 0) |
1041 | { | ||
789 | worldRot = part.RotationOffset; | 1042 | worldRot = part.RotationOffset; |
1043 | } | ||
790 | else | 1044 | else |
1045 | { | ||
791 | worldRot = part.GetWorldRotation(); | 1046 | worldRot = part.GetWorldRotation(); |
1047 | } | ||
792 | 1048 | ||
793 | Vector3 frontTopLeft; | 1049 | Vector3 frontTopLeft; |
794 | Vector3 frontTopRight; | 1050 | Vector3 frontTopRight; |
@@ -800,6 +1056,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
800 | Vector3 backBottomLeft; | 1056 | Vector3 backBottomLeft; |
801 | Vector3 backBottomRight; | 1057 | Vector3 backBottomRight; |
802 | 1058 | ||
1059 | // Vector3[] corners = new Vector3[8]; | ||
1060 | |||
803 | Vector3 orig = Vector3.Zero; | 1061 | Vector3 orig = Vector3.Zero; |
804 | 1062 | ||
805 | frontTopLeft.X = orig.X - (part.Scale.X / 2); | 1063 | frontTopLeft.X = orig.X - (part.Scale.X / 2); |
@@ -834,6 +1092,38 @@ namespace OpenSim.Region.Framework.Scenes | |||
834 | backBottomRight.Y = orig.Y + (part.Scale.Y / 2); | 1092 | backBottomRight.Y = orig.Y + (part.Scale.Y / 2); |
835 | backBottomRight.Z = orig.Z - (part.Scale.Z / 2); | 1093 | backBottomRight.Z = orig.Z - (part.Scale.Z / 2); |
836 | 1094 | ||
1095 | |||
1096 | |||
1097 | //m_log.InfoFormat("pre corner 1 is {0} {1} {2}", frontTopLeft.X, frontTopLeft.Y, frontTopLeft.Z); | ||
1098 | //m_log.InfoFormat("pre corner 2 is {0} {1} {2}", frontTopRight.X, frontTopRight.Y, frontTopRight.Z); | ||
1099 | //m_log.InfoFormat("pre corner 3 is {0} {1} {2}", frontBottomRight.X, frontBottomRight.Y, frontBottomRight.Z); | ||
1100 | //m_log.InfoFormat("pre corner 4 is {0} {1} {2}", frontBottomLeft.X, frontBottomLeft.Y, frontBottomLeft.Z); | ||
1101 | //m_log.InfoFormat("pre corner 5 is {0} {1} {2}", backTopLeft.X, backTopLeft.Y, backTopLeft.Z); | ||
1102 | //m_log.InfoFormat("pre corner 6 is {0} {1} {2}", backTopRight.X, backTopRight.Y, backTopRight.Z); | ||
1103 | //m_log.InfoFormat("pre corner 7 is {0} {1} {2}", backBottomRight.X, backBottomRight.Y, backBottomRight.Z); | ||
1104 | //m_log.InfoFormat("pre corner 8 is {0} {1} {2}", backBottomLeft.X, backBottomLeft.Y, backBottomLeft.Z); | ||
1105 | |||
1106 | //for (int i = 0; i < 8; i++) | ||
1107 | //{ | ||
1108 | // corners[i] = corners[i] * worldRot; | ||
1109 | // corners[i] += offset; | ||
1110 | |||
1111 | // if (corners[i].X > maxX) | ||
1112 | // maxX = corners[i].X; | ||
1113 | // if (corners[i].X < minX) | ||
1114 | // minX = corners[i].X; | ||
1115 | |||
1116 | // if (corners[i].Y > maxY) | ||
1117 | // maxY = corners[i].Y; | ||
1118 | // if (corners[i].Y < minY) | ||
1119 | // minY = corners[i].Y; | ||
1120 | |||
1121 | // if (corners[i].Z > maxZ) | ||
1122 | // maxZ = corners[i].Y; | ||
1123 | // if (corners[i].Z < minZ) | ||
1124 | // minZ = corners[i].Z; | ||
1125 | //} | ||
1126 | |||
837 | frontTopLeft = frontTopLeft * worldRot; | 1127 | frontTopLeft = frontTopLeft * worldRot; |
838 | frontTopRight = frontTopRight * worldRot; | 1128 | frontTopRight = frontTopRight * worldRot; |
839 | frontBottomLeft = frontBottomLeft * worldRot; | 1129 | frontBottomLeft = frontBottomLeft * worldRot; |
@@ -855,6 +1145,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
855 | backTopLeft += offset; | 1145 | backTopLeft += offset; |
856 | backTopRight += offset; | 1146 | backTopRight += offset; |
857 | 1147 | ||
1148 | //m_log.InfoFormat("corner 1 is {0} {1} {2}", frontTopLeft.X, frontTopLeft.Y, frontTopLeft.Z); | ||
1149 | //m_log.InfoFormat("corner 2 is {0} {1} {2}", frontTopRight.X, frontTopRight.Y, frontTopRight.Z); | ||
1150 | //m_log.InfoFormat("corner 3 is {0} {1} {2}", frontBottomRight.X, frontBottomRight.Y, frontBottomRight.Z); | ||
1151 | //m_log.InfoFormat("corner 4 is {0} {1} {2}", frontBottomLeft.X, frontBottomLeft.Y, frontBottomLeft.Z); | ||
1152 | //m_log.InfoFormat("corner 5 is {0} {1} {2}", backTopLeft.X, backTopLeft.Y, backTopLeft.Z); | ||
1153 | //m_log.InfoFormat("corner 6 is {0} {1} {2}", backTopRight.X, backTopRight.Y, backTopRight.Z); | ||
1154 | //m_log.InfoFormat("corner 7 is {0} {1} {2}", backBottomRight.X, backBottomRight.Y, backBottomRight.Z); | ||
1155 | //m_log.InfoFormat("corner 8 is {0} {1} {2}", backBottomLeft.X, backBottomLeft.Y, backBottomLeft.Z); | ||
1156 | |||
858 | if (frontTopRight.X > maxX) | 1157 | if (frontTopRight.X > maxX) |
859 | maxX = frontTopRight.X; | 1158 | maxX = frontTopRight.X; |
860 | if (frontTopLeft.X > maxX) | 1159 | if (frontTopLeft.X > maxX) |
@@ -998,17 +1297,118 @@ namespace OpenSim.Region.Framework.Scenes | |||
998 | 1297 | ||
999 | #endregion | 1298 | #endregion |
1000 | 1299 | ||
1300 | public void GetResourcesCosts(SceneObjectPart apart, | ||
1301 | out float linksetResCost, out float linksetPhysCost, out float partCost, out float partPhysCost) | ||
1302 | { | ||
1303 | // this information may need to be cached | ||
1304 | |||
1305 | float cost; | ||
1306 | float tmpcost; | ||
1307 | |||
1308 | bool ComplexCost = false; | ||
1309 | |||
1310 | SceneObjectPart p; | ||
1311 | SceneObjectPart[] parts; | ||
1312 | |||
1313 | lock (m_parts) | ||
1314 | { | ||
1315 | parts = m_parts.GetArray(); | ||
1316 | } | ||
1317 | |||
1318 | int nparts = parts.Length; | ||
1319 | |||
1320 | |||
1321 | for (int i = 0; i < nparts; i++) | ||
1322 | { | ||
1323 | p = parts[i]; | ||
1324 | |||
1325 | if (p.UsesComplexCost) | ||
1326 | { | ||
1327 | ComplexCost = true; | ||
1328 | break; | ||
1329 | } | ||
1330 | } | ||
1331 | |||
1332 | if (ComplexCost) | ||
1333 | { | ||
1334 | linksetResCost = 0; | ||
1335 | linksetPhysCost = 0; | ||
1336 | partCost = 0; | ||
1337 | partPhysCost = 0; | ||
1338 | |||
1339 | for (int i = 0; i < nparts; i++) | ||
1340 | { | ||
1341 | p = parts[i]; | ||
1342 | |||
1343 | cost = p.StreamingCost; | ||
1344 | tmpcost = p.SimulationCost; | ||
1345 | if (tmpcost > cost) | ||
1346 | cost = tmpcost; | ||
1347 | tmpcost = p.PhysicsCost; | ||
1348 | if (tmpcost > cost) | ||
1349 | cost = tmpcost; | ||
1350 | |||
1351 | linksetPhysCost += tmpcost; | ||
1352 | linksetResCost += cost; | ||
1353 | |||
1354 | if (p == apart) | ||
1355 | { | ||
1356 | partCost = cost; | ||
1357 | partPhysCost = tmpcost; | ||
1358 | } | ||
1359 | } | ||
1360 | } | ||
1361 | else | ||
1362 | { | ||
1363 | partPhysCost = 1.0f; | ||
1364 | partCost = 1.0f; | ||
1365 | linksetResCost = (float)nparts; | ||
1366 | linksetPhysCost = linksetResCost; | ||
1367 | } | ||
1368 | } | ||
1369 | |||
1370 | public void GetSelectedCosts(out float PhysCost, out float StreamCost, out float SimulCost) | ||
1371 | { | ||
1372 | SceneObjectPart p; | ||
1373 | SceneObjectPart[] parts; | ||
1374 | |||
1375 | lock (m_parts) | ||
1376 | { | ||
1377 | parts = m_parts.GetArray(); | ||
1378 | } | ||
1379 | |||
1380 | int nparts = parts.Length; | ||
1381 | |||
1382 | PhysCost = 0; | ||
1383 | StreamCost = 0; | ||
1384 | SimulCost = 0; | ||
1385 | |||
1386 | for (int i = 0; i < nparts; i++) | ||
1387 | { | ||
1388 | p = parts[i]; | ||
1389 | |||
1390 | StreamCost += p.StreamingCost; | ||
1391 | SimulCost += p.SimulationCost; | ||
1392 | PhysCost += p.PhysicsCost; | ||
1393 | } | ||
1394 | } | ||
1395 | |||
1001 | public void SaveScriptedState(XmlTextWriter writer) | 1396 | public void SaveScriptedState(XmlTextWriter writer) |
1002 | { | 1397 | { |
1398 | SaveScriptedState(writer, false); | ||
1399 | } | ||
1400 | |||
1401 | public void SaveScriptedState(XmlTextWriter writer, bool oldIDs) | ||
1402 | { | ||
1003 | XmlDocument doc = new XmlDocument(); | 1403 | XmlDocument doc = new XmlDocument(); |
1004 | Dictionary<UUID,string> states = new Dictionary<UUID,string>(); | 1404 | Dictionary<UUID,string> states = new Dictionary<UUID,string>(); |
1005 | 1405 | ||
1006 | SceneObjectPart[] parts = m_parts.GetArray(); | 1406 | SceneObjectPart[] parts = m_parts.GetArray(); |
1007 | for (int i = 0; i < parts.Length; i++) | 1407 | for (int i = 0; i < parts.Length; i++) |
1008 | { | 1408 | { |
1009 | Dictionary<UUID, string> pstates = parts[i].Inventory.GetScriptStates(); | 1409 | Dictionary<UUID, string> pstates = parts[i].Inventory.GetScriptStates(oldIDs); |
1010 | foreach (KeyValuePair<UUID, string> kvp in pstates) | 1410 | foreach (KeyValuePair<UUID, string> kvp in pstates) |
1011 | states.Add(kvp.Key, kvp.Value); | 1411 | states[kvp.Key] = kvp.Value; |
1012 | } | 1412 | } |
1013 | 1413 | ||
1014 | if (states.Count > 0) | 1414 | if (states.Count > 0) |
@@ -1028,6 +1428,169 @@ namespace OpenSim.Region.Framework.Scenes | |||
1028 | } | 1428 | } |
1029 | 1429 | ||
1030 | /// <summary> | 1430 | /// <summary> |
1431 | /// Add the avatar to this linkset (avatar is sat). | ||
1432 | /// </summary> | ||
1433 | /// <param name="agentID"></param> | ||
1434 | public void AddAvatar(UUID agentID) | ||
1435 | { | ||
1436 | ScenePresence presence; | ||
1437 | if (m_scene.TryGetScenePresence(agentID, out presence)) | ||
1438 | { | ||
1439 | if (!m_linkedAvatars.Contains(presence)) | ||
1440 | { | ||
1441 | m_linkedAvatars.Add(presence); | ||
1442 | } | ||
1443 | } | ||
1444 | } | ||
1445 | |||
1446 | /// <summary> | ||
1447 | /// Delete the avatar from this linkset (avatar is unsat). | ||
1448 | /// </summary> | ||
1449 | /// <param name="agentID"></param> | ||
1450 | public void DeleteAvatar(UUID agentID) | ||
1451 | { | ||
1452 | ScenePresence presence; | ||
1453 | if (m_scene.TryGetScenePresence(agentID, out presence)) | ||
1454 | { | ||
1455 | if (m_linkedAvatars.Contains(presence)) | ||
1456 | { | ||
1457 | m_linkedAvatars.Remove(presence); | ||
1458 | } | ||
1459 | } | ||
1460 | } | ||
1461 | |||
1462 | /// <summary> | ||
1463 | /// Returns the list of linked presences (avatars sat on this group) | ||
1464 | /// </summary> | ||
1465 | /// <param name="agentID"></param> | ||
1466 | public List<ScenePresence> GetLinkedAvatars() | ||
1467 | { | ||
1468 | return m_linkedAvatars; | ||
1469 | } | ||
1470 | |||
1471 | /// <summary> | ||
1472 | /// Attach this scene object to the given avatar. | ||
1473 | /// </summary> | ||
1474 | /// <param name="agentID"></param> | ||
1475 | /// <param name="attachmentpoint"></param> | ||
1476 | /// <param name="AttachOffset"></param> | ||
1477 | private void AttachToAgent( | ||
1478 | ScenePresence avatar, SceneObjectGroup so, uint attachmentpoint, Vector3 attachOffset, bool silent) | ||
1479 | { | ||
1480 | if (avatar != null) | ||
1481 | { | ||
1482 | // don't attach attachments to child agents | ||
1483 | if (avatar.IsChildAgent) return; | ||
1484 | |||
1485 | // Remove from database and parcel prim count | ||
1486 | m_scene.DeleteFromStorage(so.UUID); | ||
1487 | m_scene.EventManager.TriggerParcelPrimCountTainted(); | ||
1488 | |||
1489 | so.AttachedAvatar = avatar.UUID; | ||
1490 | |||
1491 | if (so.RootPart.PhysActor != null) | ||
1492 | { | ||
1493 | m_scene.PhysicsScene.RemovePrim(so.RootPart.PhysActor); | ||
1494 | so.RootPart.PhysActor = null; | ||
1495 | } | ||
1496 | |||
1497 | so.AbsolutePosition = attachOffset; | ||
1498 | so.RootPart.AttachedPos = attachOffset; | ||
1499 | so.IsAttachment = true; | ||
1500 | so.RootPart.SetParentLocalId(avatar.LocalId); | ||
1501 | so.AttachmentPoint = attachmentpoint; | ||
1502 | |||
1503 | avatar.AddAttachment(this); | ||
1504 | |||
1505 | if (!silent) | ||
1506 | { | ||
1507 | // Killing it here will cause the client to deselect it | ||
1508 | // It then reappears on the avatar, deselected | ||
1509 | // through the full update below | ||
1510 | // | ||
1511 | if (IsSelected) | ||
1512 | { | ||
1513 | m_scene.SendKillObject(new List<uint> { m_rootPart.LocalId }); | ||
1514 | } | ||
1515 | |||
1516 | IsSelected = false; // fudge.... | ||
1517 | ScheduleGroupForFullUpdate(); | ||
1518 | } | ||
1519 | } | ||
1520 | else | ||
1521 | { | ||
1522 | m_log.WarnFormat( | ||
1523 | "[SOG]: Tried to add attachment {0} to avatar with UUID {1} in region {2} but the avatar is not present", | ||
1524 | UUID, avatar.ControllingClient.AgentId, Scene.RegionInfo.RegionName); | ||
1525 | } | ||
1526 | } | ||
1527 | |||
1528 | public byte GetAttachmentPoint() | ||
1529 | { | ||
1530 | return m_rootPart.Shape.State; | ||
1531 | } | ||
1532 | |||
1533 | public void DetachToGround() | ||
1534 | { | ||
1535 | ScenePresence avatar = m_scene.GetScenePresence(AttachedAvatar); | ||
1536 | if (avatar == null) | ||
1537 | return; | ||
1538 | |||
1539 | avatar.RemoveAttachment(this); | ||
1540 | |||
1541 | Vector3 detachedpos = new Vector3(127f,127f,127f); | ||
1542 | if (avatar == null) | ||
1543 | return; | ||
1544 | |||
1545 | detachedpos = avatar.AbsolutePosition; | ||
1546 | FromItemID = UUID.Zero; | ||
1547 | |||
1548 | AbsolutePosition = detachedpos; | ||
1549 | AttachedAvatar = UUID.Zero; | ||
1550 | |||
1551 | //SceneObjectPart[] parts = m_parts.GetArray(); | ||
1552 | //for (int i = 0; i < parts.Length; i++) | ||
1553 | // parts[i].AttachedAvatar = UUID.Zero; | ||
1554 | |||
1555 | m_rootPart.SetParentLocalId(0); | ||
1556 | AttachmentPoint = (byte)0; | ||
1557 | // must check if buildind should be true or false here | ||
1558 | m_rootPart.ApplyPhysics(m_rootPart.GetEffectiveObjectFlags(), m_rootPart.VolumeDetectActive,false); | ||
1559 | HasGroupChanged = true; | ||
1560 | RootPart.Rezzed = DateTime.Now; | ||
1561 | RootPart.RemFlag(PrimFlags.TemporaryOnRez); | ||
1562 | AttachToBackup(); | ||
1563 | m_scene.EventManager.TriggerParcelPrimCountTainted(); | ||
1564 | m_rootPart.ScheduleFullUpdate(); | ||
1565 | m_rootPart.ClearUndoState(); | ||
1566 | } | ||
1567 | |||
1568 | public void DetachToInventoryPrep() | ||
1569 | { | ||
1570 | ScenePresence avatar = m_scene.GetScenePresence(AttachedAvatar); | ||
1571 | //Vector3 detachedpos = new Vector3(127f, 127f, 127f); | ||
1572 | if (avatar != null) | ||
1573 | { | ||
1574 | //detachedpos = avatar.AbsolutePosition; | ||
1575 | avatar.RemoveAttachment(this); | ||
1576 | } | ||
1577 | |||
1578 | AttachedAvatar = UUID.Zero; | ||
1579 | |||
1580 | /*SceneObjectPart[] parts = m_parts.GetArray(); | ||
1581 | for (int i = 0; i < parts.Length; i++) | ||
1582 | parts[i].AttachedAvatar = UUID.Zero;*/ | ||
1583 | |||
1584 | m_rootPart.SetParentLocalId(0); | ||
1585 | //m_rootPart.SetAttachmentPoint((byte)0); | ||
1586 | IsAttachment = false; | ||
1587 | AbsolutePosition = m_rootPart.AttachedPos; | ||
1588 | //m_rootPart.ApplyPhysics(m_rootPart.GetEffectiveObjectFlags(), m_scene.m_physicalPrim); | ||
1589 | //AttachToBackup(); | ||
1590 | //m_rootPart.ScheduleFullUpdate(); | ||
1591 | } | ||
1592 | |||
1593 | /// <summary> | ||
1031 | /// | 1594 | /// |
1032 | /// </summary> | 1595 | /// </summary> |
1033 | /// <param name="part"></param> | 1596 | /// <param name="part"></param> |
@@ -1077,7 +1640,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
1077 | public void AddPart(SceneObjectPart part) | 1640 | public void AddPart(SceneObjectPart part) |
1078 | { | 1641 | { |
1079 | part.SetParent(this); | 1642 | part.SetParent(this); |
1080 | part.LinkNum = m_parts.Add(part.UUID, part); | 1643 | m_parts.Add(part.UUID, part); |
1644 | |||
1645 | part.LinkNum = m_parts.Count; | ||
1646 | |||
1081 | if (part.LinkNum == 2) | 1647 | if (part.LinkNum == 2) |
1082 | RootPart.LinkNum = 1; | 1648 | RootPart.LinkNum = 1; |
1083 | } | 1649 | } |
@@ -1165,7 +1731,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1165 | // "[SCENE OBJECT GROUP]: Processing OnGrabPart for {0} on {1} {2}, offsetPos {3}", | 1731 | // "[SCENE OBJECT GROUP]: Processing OnGrabPart for {0} on {1} {2}, offsetPos {3}", |
1166 | // remoteClient.Name, part.Name, part.LocalId, offsetPos); | 1732 | // remoteClient.Name, part.Name, part.LocalId, offsetPos); |
1167 | 1733 | ||
1168 | part.StoreUndoState(); | 1734 | // part.StoreUndoState(); |
1169 | part.OnGrab(offsetPos, remoteClient); | 1735 | part.OnGrab(offsetPos, remoteClient); |
1170 | } | 1736 | } |
1171 | 1737 | ||
@@ -1185,6 +1751,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1185 | /// <param name="silent">If true then deletion is not broadcast to clients</param> | 1751 | /// <param name="silent">If true then deletion is not broadcast to clients</param> |
1186 | public void DeleteGroupFromScene(bool silent) | 1752 | public void DeleteGroupFromScene(bool silent) |
1187 | { | 1753 | { |
1754 | // We need to keep track of this state in case this group is still queued for backup. | ||
1755 | IsDeleted = true; | ||
1756 | |||
1757 | DetachFromBackup(); | ||
1758 | |||
1188 | SceneObjectPart[] parts = m_parts.GetArray(); | 1759 | SceneObjectPart[] parts = m_parts.GetArray(); |
1189 | for (int i = 0; i < parts.Length; i++) | 1760 | for (int i = 0; i < parts.Length; i++) |
1190 | { | 1761 | { |
@@ -1207,6 +1778,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1207 | } | 1778 | } |
1208 | }); | 1779 | }); |
1209 | } | 1780 | } |
1781 | |||
1782 | |||
1210 | } | 1783 | } |
1211 | 1784 | ||
1212 | public void AddScriptLPS(int count) | 1785 | public void AddScriptLPS(int count) |
@@ -1276,28 +1849,43 @@ namespace OpenSim.Region.Framework.Scenes | |||
1276 | /// </summary> | 1849 | /// </summary> |
1277 | public void ApplyPhysics() | 1850 | public void ApplyPhysics() |
1278 | { | 1851 | { |
1279 | // Apply physics to the root prim | ||
1280 | m_rootPart.ApplyPhysics(m_rootPart.GetEffectiveObjectFlags(), m_rootPart.VolumeDetectActive); | ||
1281 | |||
1282 | // Apply physics to child prims | ||
1283 | SceneObjectPart[] parts = m_parts.GetArray(); | 1852 | SceneObjectPart[] parts = m_parts.GetArray(); |
1284 | if (parts.Length > 1) | 1853 | if (parts.Length > 1) |
1285 | { | 1854 | { |
1855 | ResetChildPrimPhysicsPositions(); | ||
1856 | |||
1857 | // Apply physics to the root prim | ||
1858 | m_rootPart.ApplyPhysics(m_rootPart.GetEffectiveObjectFlags(), m_rootPart.VolumeDetectActive, true); | ||
1859 | |||
1860 | |||
1286 | for (int i = 0; i < parts.Length; i++) | 1861 | for (int i = 0; i < parts.Length; i++) |
1287 | { | 1862 | { |
1288 | SceneObjectPart part = parts[i]; | 1863 | SceneObjectPart part = parts[i]; |
1289 | if (part.LocalId != m_rootPart.LocalId) | 1864 | if (part.LocalId != m_rootPart.LocalId) |
1290 | part.ApplyPhysics(m_rootPart.GetEffectiveObjectFlags(), part.VolumeDetectActive); | 1865 | part.ApplyPhysics(m_rootPart.GetEffectiveObjectFlags(), part.VolumeDetectActive, true); |
1291 | } | 1866 | } |
1292 | |||
1293 | // Hack to get the physics scene geometries in the right spot | 1867 | // Hack to get the physics scene geometries in the right spot |
1294 | ResetChildPrimPhysicsPositions(); | 1868 | // ResetChildPrimPhysicsPositions(); |
1869 | if (m_rootPart.PhysActor != null) | ||
1870 | { | ||
1871 | m_rootPart.PhysActor.Building = false; | ||
1872 | } | ||
1873 | } | ||
1874 | else | ||
1875 | { | ||
1876 | // Apply physics to the root prim | ||
1877 | m_rootPart.ApplyPhysics(m_rootPart.GetEffectiveObjectFlags(), m_rootPart.VolumeDetectActive, false); | ||
1295 | } | 1878 | } |
1296 | } | 1879 | } |
1297 | 1880 | ||
1298 | public void SetOwnerId(UUID userId) | 1881 | public void SetOwnerId(UUID userId) |
1299 | { | 1882 | { |
1300 | ForEachPart(delegate(SceneObjectPart part) { part.OwnerID = userId; }); | 1883 | ForEachPart(delegate(SceneObjectPart part) |
1884 | { | ||
1885 | |||
1886 | part.OwnerID = userId; | ||
1887 | |||
1888 | }); | ||
1301 | } | 1889 | } |
1302 | 1890 | ||
1303 | public void ForEachPart(Action<SceneObjectPart> whatToDo) | 1891 | public void ForEachPart(Action<SceneObjectPart> whatToDo) |
@@ -1329,11 +1917,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
1329 | return; | 1917 | return; |
1330 | } | 1918 | } |
1331 | 1919 | ||
1920 | if ((RootPart.Flags & PrimFlags.TemporaryOnRez) != 0) | ||
1921 | return; | ||
1922 | |||
1332 | // Since this is the top of the section of call stack for backing up a particular scene object, don't let | 1923 | // Since this is the top of the section of call stack for backing up a particular scene object, don't let |
1333 | // any exception propogate upwards. | 1924 | // any exception propogate upwards. |
1334 | try | 1925 | try |
1335 | { | 1926 | { |
1336 | if (!m_scene.ShuttingDown) // if shutting down then there will be nothing to handle the return so leave till next restart | 1927 | if (!m_scene.ShuttingDown || // if shutting down then there will be nothing to handle the return so leave till next restart |
1928 | m_scene.LoginsDisabled || // We're starting up or doing maintenance, don't mess with things | ||
1929 | m_scene.LoadingPrims) // Land may not be valid yet | ||
1930 | |||
1337 | { | 1931 | { |
1338 | ILandObject parcel = m_scene.LandChannel.GetLandObject( | 1932 | ILandObject parcel = m_scene.LandChannel.GetLandObject( |
1339 | m_rootPart.GroupPosition.X, m_rootPart.GroupPosition.Y); | 1933 | m_rootPart.GroupPosition.X, m_rootPart.GroupPosition.Y); |
@@ -1360,6 +1954,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1360 | } | 1954 | } |
1361 | } | 1955 | } |
1362 | } | 1956 | } |
1957 | |||
1363 | } | 1958 | } |
1364 | 1959 | ||
1365 | if (m_scene.UseBackup && HasGroupChanged) | 1960 | if (m_scene.UseBackup && HasGroupChanged) |
@@ -1367,10 +1962,30 @@ namespace OpenSim.Region.Framework.Scenes | |||
1367 | // don't backup while it's selected or you're asking for changes mid stream. | 1962 | // don't backup while it's selected or you're asking for changes mid stream. |
1368 | if (isTimeToPersist() || forcedBackup) | 1963 | if (isTimeToPersist() || forcedBackup) |
1369 | { | 1964 | { |
1965 | if (m_rootPart.PhysActor != null && | ||
1966 | (!m_rootPart.PhysActor.IsPhysical)) | ||
1967 | { | ||
1968 | // Possible ghost prim | ||
1969 | if (m_rootPart.PhysActor.Position != m_rootPart.GroupPosition) | ||
1970 | { | ||
1971 | foreach (SceneObjectPart part in m_parts.GetArray()) | ||
1972 | { | ||
1973 | // Re-set physics actor positions and | ||
1974 | // orientations | ||
1975 | part.GroupPosition = m_rootPart.GroupPosition; | ||
1976 | } | ||
1977 | } | ||
1978 | } | ||
1370 | // m_log.DebugFormat( | 1979 | // m_log.DebugFormat( |
1371 | // "[SCENE]: Storing {0}, {1} in {2}", | 1980 | // "[SCENE]: Storing {0}, {1} in {2}", |
1372 | // Name, UUID, m_scene.RegionInfo.RegionName); | 1981 | // Name, UUID, m_scene.RegionInfo.RegionName); |
1373 | 1982 | ||
1983 | if (RootPart.Shape.PCode == 9 && RootPart.Shape.State != 0) | ||
1984 | { | ||
1985 | RootPart.Shape.State = 0; | ||
1986 | ScheduleGroupForFullUpdate(); | ||
1987 | } | ||
1988 | |||
1374 | SceneObjectGroup backup_group = Copy(false); | 1989 | SceneObjectGroup backup_group = Copy(false); |
1375 | backup_group.RootPart.Velocity = RootPart.Velocity; | 1990 | backup_group.RootPart.Velocity = RootPart.Velocity; |
1376 | backup_group.RootPart.Acceleration = RootPart.Acceleration; | 1991 | backup_group.RootPart.Acceleration = RootPart.Acceleration; |
@@ -1384,6 +1999,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1384 | 1999 | ||
1385 | backup_group.ForEachPart(delegate(SceneObjectPart part) | 2000 | backup_group.ForEachPart(delegate(SceneObjectPart part) |
1386 | { | 2001 | { |
2002 | if (part.KeyframeMotion != null) | ||
2003 | { | ||
2004 | part.KeyframeMotion = KeyframeMotion.FromData(backup_group, part.KeyframeMotion.Serialize()); | ||
2005 | part.KeyframeMotion.UpdateSceneObject(this); | ||
2006 | } | ||
1387 | part.Inventory.ProcessInventoryBackup(datastore); | 2007 | part.Inventory.ProcessInventoryBackup(datastore); |
1388 | }); | 2008 | }); |
1389 | 2009 | ||
@@ -1436,6 +2056,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1436 | /// <returns></returns> | 2056 | /// <returns></returns> |
1437 | public SceneObjectGroup Copy(bool userExposed) | 2057 | public SceneObjectGroup Copy(bool userExposed) |
1438 | { | 2058 | { |
2059 | m_dupeInProgress = true; | ||
1439 | SceneObjectGroup dupe = (SceneObjectGroup)MemberwiseClone(); | 2060 | SceneObjectGroup dupe = (SceneObjectGroup)MemberwiseClone(); |
1440 | dupe.m_isBackedUp = false; | 2061 | dupe.m_isBackedUp = false; |
1441 | dupe.m_parts = new MapAndArray<OpenMetaverse.UUID, SceneObjectPart>(); | 2062 | dupe.m_parts = new MapAndArray<OpenMetaverse.UUID, SceneObjectPart>(); |
@@ -1450,7 +2071,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1450 | // This is only necessary when userExposed is false! | 2071 | // This is only necessary when userExposed is false! |
1451 | 2072 | ||
1452 | bool previousAttachmentStatus = dupe.IsAttachment; | 2073 | bool previousAttachmentStatus = dupe.IsAttachment; |
1453 | 2074 | ||
1454 | if (!userExposed) | 2075 | if (!userExposed) |
1455 | dupe.IsAttachment = true; | 2076 | dupe.IsAttachment = true; |
1456 | 2077 | ||
@@ -1468,11 +2089,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1468 | dupe.m_rootPart.TrimPermissions(); | 2089 | dupe.m_rootPart.TrimPermissions(); |
1469 | 2090 | ||
1470 | List<SceneObjectPart> partList = new List<SceneObjectPart>(m_parts.GetArray()); | 2091 | List<SceneObjectPart> partList = new List<SceneObjectPart>(m_parts.GetArray()); |
1471 | 2092 | ||
1472 | partList.Sort(delegate(SceneObjectPart p1, SceneObjectPart p2) | 2093 | partList.Sort(delegate(SceneObjectPart p1, SceneObjectPart p2) |
1473 | { | 2094 | { |
1474 | return p1.LinkNum.CompareTo(p2.LinkNum); | 2095 | return p1.LinkNum.CompareTo(p2.LinkNum); |
1475 | } | 2096 | } |
1476 | ); | 2097 | ); |
1477 | 2098 | ||
1478 | foreach (SceneObjectPart part in partList) | 2099 | foreach (SceneObjectPart part in partList) |
@@ -1482,41 +2103,53 @@ namespace OpenSim.Region.Framework.Scenes | |||
1482 | { | 2103 | { |
1483 | newPart = dupe.CopyPart(part, OwnerID, GroupID, userExposed); | 2104 | newPart = dupe.CopyPart(part, OwnerID, GroupID, userExposed); |
1484 | newPart.LinkNum = part.LinkNum; | 2105 | newPart.LinkNum = part.LinkNum; |
1485 | } | 2106 | if (userExposed) |
2107 | newPart.ParentID = dupe.m_rootPart.LocalId; | ||
2108 | } | ||
1486 | else | 2109 | else |
1487 | { | 2110 | { |
1488 | newPart = dupe.m_rootPart; | 2111 | newPart = dupe.m_rootPart; |
1489 | } | 2112 | } |
2113 | /* | ||
2114 | bool isphys = ((newPart.Flags & PrimFlags.Physics) != 0); | ||
2115 | bool isphan = ((newPart.Flags & PrimFlags.Phantom) != 0); | ||
1490 | 2116 | ||
1491 | // Need to duplicate the physics actor as well | 2117 | // Need to duplicate the physics actor as well |
1492 | PhysicsActor originalPartPa = part.PhysActor; | 2118 | if (userExposed && (isphys || !isphan || newPart.VolumeDetectActive)) |
1493 | if (originalPartPa != null && userExposed) | ||
1494 | { | 2119 | { |
1495 | PrimitiveBaseShape pbs = newPart.Shape; | 2120 | PrimitiveBaseShape pbs = newPart.Shape; |
1496 | |||
1497 | newPart.PhysActor | 2121 | newPart.PhysActor |
1498 | = m_scene.PhysicsScene.AddPrimShape( | 2122 | = m_scene.PhysicsScene.AddPrimShape( |
1499 | string.Format("{0}/{1}", newPart.Name, newPart.UUID), | 2123 | string.Format("{0}/{1}", newPart.Name, newPart.UUID), |
1500 | pbs, | 2124 | pbs, |
1501 | newPart.AbsolutePosition, | 2125 | newPart.AbsolutePosition, |
1502 | newPart.Scale, | 2126 | newPart.Scale, |
1503 | newPart.RotationOffset, | 2127 | newPart.GetWorldRotation(), |
1504 | originalPartPa.IsPhysical, | 2128 | isphys, |
2129 | isphan, | ||
1505 | newPart.LocalId); | 2130 | newPart.LocalId); |
1506 | 2131 | ||
1507 | newPart.DoPhysicsPropertyUpdate(originalPartPa.IsPhysical, true); | 2132 | newPart.DoPhysicsPropertyUpdate(isphys, true); |
1508 | } | 2133 | */ |
2134 | if (userExposed) | ||
2135 | newPart.ApplyPhysics((uint)newPart.Flags,newPart.VolumeDetectActive,true); | ||
2136 | // } | ||
1509 | } | 2137 | } |
1510 | 2138 | ||
1511 | if (userExposed) | 2139 | if (userExposed) |
1512 | { | 2140 | { |
1513 | dupe.UpdateParentIDs(); | 2141 | // done above dupe.UpdateParentIDs(); |
2142 | |||
2143 | if (dupe.m_rootPart.PhysActor != null) | ||
2144 | dupe.m_rootPart.PhysActor.Building = false; // tell physics to finish building | ||
2145 | |||
1514 | dupe.HasGroupChanged = true; | 2146 | dupe.HasGroupChanged = true; |
1515 | dupe.AttachToBackup(); | 2147 | dupe.AttachToBackup(); |
1516 | 2148 | ||
1517 | ScheduleGroupForFullUpdate(); | 2149 | ScheduleGroupForFullUpdate(); |
1518 | } | 2150 | } |
1519 | 2151 | ||
2152 | m_dupeInProgress = false; | ||
1520 | return dupe; | 2153 | return dupe; |
1521 | } | 2154 | } |
1522 | 2155 | ||
@@ -1528,11 +2161,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
1528 | /// <param name="cGroupID"></param> | 2161 | /// <param name="cGroupID"></param> |
1529 | public void CopyRootPart(SceneObjectPart part, UUID cAgentID, UUID cGroupID, bool userExposed) | 2162 | public void CopyRootPart(SceneObjectPart part, UUID cAgentID, UUID cGroupID, bool userExposed) |
1530 | { | 2163 | { |
1531 | SetRootPart(part.Copy(m_scene.AllocateLocalId(), OwnerID, GroupID, 0, userExposed)); | 2164 | // SetRootPart(part.Copy(m_scene.AllocateLocalId(), OwnerID, GroupID, 0, userExposed)); |
2165 | // give newpart a new local ID lettng old part keep same | ||
2166 | SceneObjectPart newpart = part.Copy(part.LocalId, OwnerID, GroupID, 0, userExposed); | ||
2167 | newpart.LocalId = m_scene.AllocateLocalId(); | ||
2168 | |||
2169 | SetRootPart(newpart); | ||
2170 | if (userExposed) | ||
2171 | RootPart.Velocity = Vector3.Zero; // In case source is moving | ||
1532 | } | 2172 | } |
1533 | 2173 | ||
1534 | public void ScriptSetPhysicsStatus(bool usePhysics) | 2174 | public void ScriptSetPhysicsStatus(bool usePhysics) |
1535 | { | 2175 | { |
2176 | if (usePhysics) | ||
2177 | { | ||
2178 | if (RootPart.KeyframeMotion != null) | ||
2179 | RootPart.KeyframeMotion.Stop(); | ||
2180 | RootPart.KeyframeMotion = null; | ||
2181 | } | ||
1536 | UpdatePrimFlags(RootPart.LocalId, usePhysics, IsTemporary, IsPhantom, IsVolumeDetect); | 2182 | UpdatePrimFlags(RootPart.LocalId, usePhysics, IsTemporary, IsPhantom, IsVolumeDetect); |
1537 | } | 2183 | } |
1538 | 2184 | ||
@@ -1586,7 +2232,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1586 | } | 2232 | } |
1587 | } | 2233 | } |
1588 | 2234 | ||
1589 | public void applyAngularImpulse(Vector3 impulse) | 2235 | public void ApplyAngularImpulse(Vector3 impulse) |
1590 | { | 2236 | { |
1591 | PhysicsActor pa = RootPart.PhysActor; | 2237 | PhysicsActor pa = RootPart.PhysActor; |
1592 | 2238 | ||
@@ -1600,36 +2246,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1600 | } | 2246 | } |
1601 | } | 2247 | } |
1602 | 2248 | ||
1603 | public void setAngularImpulse(Vector3 impulse) | ||
1604 | { | ||
1605 | PhysicsActor pa = RootPart.PhysActor; | ||
1606 | |||
1607 | if (pa != null) | ||
1608 | { | ||
1609 | if (!IsAttachment) | ||
1610 | { | ||
1611 | pa.Torque = impulse; | ||
1612 | m_scene.PhysicsScene.AddPhysicsActorTaint(pa); | ||
1613 | } | ||
1614 | } | ||
1615 | } | ||
1616 | |||
1617 | public Vector3 GetTorque() | 2249 | public Vector3 GetTorque() |
1618 | { | 2250 | { |
1619 | PhysicsActor pa = RootPart.PhysActor; | 2251 | return RootPart.Torque; |
1620 | |||
1621 | if (pa != null) | ||
1622 | { | ||
1623 | if (!IsAttachment) | ||
1624 | { | ||
1625 | Vector3 torque = pa.Torque; | ||
1626 | return torque; | ||
1627 | } | ||
1628 | } | ||
1629 | |||
1630 | return Vector3.Zero; | ||
1631 | } | 2252 | } |
1632 | 2253 | ||
2254 | // This is used by both Double-Click Auto-Pilot and llMoveToTarget() in an attached object | ||
1633 | public void moveToTarget(Vector3 target, float tau) | 2255 | public void moveToTarget(Vector3 target, float tau) |
1634 | { | 2256 | { |
1635 | if (IsAttachment) | 2257 | if (IsAttachment) |
@@ -1661,6 +2283,46 @@ namespace OpenSim.Region.Framework.Scenes | |||
1661 | pa.PIDActive = false; | 2283 | pa.PIDActive = false; |
1662 | } | 2284 | } |
1663 | 2285 | ||
2286 | public void rotLookAt(Quaternion target, float strength, float damping) | ||
2287 | { | ||
2288 | SceneObjectPart rootpart = m_rootPart; | ||
2289 | if (rootpart != null) | ||
2290 | { | ||
2291 | if (IsAttachment) | ||
2292 | { | ||
2293 | /* | ||
2294 | ScenePresence avatar = m_scene.GetScenePresence(rootpart.AttachedAvatar); | ||
2295 | if (avatar != null) | ||
2296 | { | ||
2297 | Rotate the Av? | ||
2298 | } */ | ||
2299 | } | ||
2300 | else | ||
2301 | { | ||
2302 | if (rootpart.PhysActor != null) | ||
2303 | { // APID must be implemented in your physics system for this to function. | ||
2304 | rootpart.PhysActor.APIDTarget = new Quaternion(target.X, target.Y, target.Z, target.W); | ||
2305 | rootpart.PhysActor.APIDStrength = strength; | ||
2306 | rootpart.PhysActor.APIDDamping = damping; | ||
2307 | rootpart.PhysActor.APIDActive = true; | ||
2308 | } | ||
2309 | } | ||
2310 | } | ||
2311 | } | ||
2312 | |||
2313 | public void stopLookAt() | ||
2314 | { | ||
2315 | SceneObjectPart rootpart = m_rootPart; | ||
2316 | if (rootpart != null) | ||
2317 | { | ||
2318 | if (rootpart.PhysActor != null) | ||
2319 | { // APID must be implemented in your physics system for this to function. | ||
2320 | rootpart.PhysActor.APIDActive = false; | ||
2321 | } | ||
2322 | } | ||
2323 | |||
2324 | } | ||
2325 | |||
1664 | /// <summary> | 2326 | /// <summary> |
1665 | /// Uses a PID to attempt to clamp the object on the Z axis at the given height over tau seconds. | 2327 | /// Uses a PID to attempt to clamp the object on the Z axis at the given height over tau seconds. |
1666 | /// </summary> | 2328 | /// </summary> |
@@ -1717,7 +2379,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1717 | /// <param name="cGroupID"></param> | 2379 | /// <param name="cGroupID"></param> |
1718 | public SceneObjectPart CopyPart(SceneObjectPart part, UUID cAgentID, UUID cGroupID, bool userExposed) | 2380 | public SceneObjectPart CopyPart(SceneObjectPart part, UUID cAgentID, UUID cGroupID, bool userExposed) |
1719 | { | 2381 | { |
1720 | SceneObjectPart newPart = part.Copy(m_scene.AllocateLocalId(), OwnerID, GroupID, m_parts.Count, userExposed); | 2382 | // give new ID to the new part, letting old keep original |
2383 | // SceneObjectPart newPart = part.Copy(m_scene.AllocateLocalId(), OwnerID, GroupID, m_parts.Count, userExposed); | ||
2384 | SceneObjectPart newPart = part.Copy(part.LocalId, OwnerID, GroupID, m_parts.Count, userExposed); | ||
2385 | newPart.LocalId = m_scene.AllocateLocalId(); | ||
2386 | newPart.SetParent(this); | ||
2387 | |||
1721 | AddPart(newPart); | 2388 | AddPart(newPart); |
1722 | 2389 | ||
1723 | SetPartAsNonRoot(newPart); | 2390 | SetPartAsNonRoot(newPart); |
@@ -1846,11 +2513,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1846 | /// Immediately send a full update for this scene object. | 2513 | /// Immediately send a full update for this scene object. |
1847 | /// </summary> | 2514 | /// </summary> |
1848 | public void SendGroupFullUpdate() | 2515 | public void SendGroupFullUpdate() |
1849 | { | 2516 | { |
1850 | if (IsDeleted) | 2517 | if (IsDeleted) |
1851 | return; | 2518 | return; |
1852 | 2519 | ||
1853 | // m_log.DebugFormat("[SOG]: Sending immediate full group update for {0} {1}", Name, UUID); | 2520 | // m_log.DebugFormat("[SOG]: Sending immediate full group update for {0} {1}", Name, UUID); |
1854 | 2521 | ||
1855 | RootPart.SendFullUpdateToAllClients(); | 2522 | RootPart.SendFullUpdateToAllClients(); |
1856 | 2523 | ||
@@ -1969,6 +2636,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1969 | /// <param name="objectGroup">The group of prims which should be linked to this group</param> | 2636 | /// <param name="objectGroup">The group of prims which should be linked to this group</param> |
1970 | public void LinkToGroup(SceneObjectGroup objectGroup) | 2637 | public void LinkToGroup(SceneObjectGroup objectGroup) |
1971 | { | 2638 | { |
2639 | LinkToGroup(objectGroup, false); | ||
2640 | } | ||
2641 | |||
2642 | public void LinkToGroup(SceneObjectGroup objectGroup, bool insert) | ||
2643 | { | ||
1972 | // m_log.DebugFormat( | 2644 | // m_log.DebugFormat( |
1973 | // "[SCENE OBJECT GROUP]: Linking group with root part {0}, {1} to group with root part {2}, {3}", | 2645 | // "[SCENE OBJECT GROUP]: Linking group with root part {0}, {1} to group with root part {2}, {3}", |
1974 | // objectGroup.RootPart.Name, objectGroup.RootPart.UUID, RootPart.Name, RootPart.UUID); | 2646 | // objectGroup.RootPart.Name, objectGroup.RootPart.UUID, RootPart.Name, RootPart.UUID); |
@@ -1979,6 +2651,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
1979 | 2651 | ||
1980 | SceneObjectPart linkPart = objectGroup.m_rootPart; | 2652 | SceneObjectPart linkPart = objectGroup.m_rootPart; |
1981 | 2653 | ||
2654 | if (m_rootPart.PhysActor != null) | ||
2655 | m_rootPart.PhysActor.Building = true; | ||
2656 | if (linkPart.PhysActor != null) | ||
2657 | linkPart.PhysActor.Building = true; | ||
2658 | |||
2659 | // physics flags from group to be applied to linked parts | ||
2660 | bool grpusephys = UsesPhysics; | ||
2661 | bool grptemporary = IsTemporary; | ||
2662 | |||
1982 | Vector3 oldGroupPosition = linkPart.GroupPosition; | 2663 | Vector3 oldGroupPosition = linkPart.GroupPosition; |
1983 | Quaternion oldRootRotation = linkPart.RotationOffset; | 2664 | Quaternion oldRootRotation = linkPart.RotationOffset; |
1984 | 2665 | ||
@@ -2002,15 +2683,36 @@ namespace OpenSim.Region.Framework.Scenes | |||
2002 | 2683 | ||
2003 | lock (m_parts.SyncRoot) | 2684 | lock (m_parts.SyncRoot) |
2004 | { | 2685 | { |
2005 | int linkNum = PrimCount + 1; | 2686 | int linkNum; |
2687 | if (insert) | ||
2688 | { | ||
2689 | linkNum = 2; | ||
2690 | foreach (SceneObjectPart part in Parts) | ||
2691 | { | ||
2692 | if (part.LinkNum > 1) | ||
2693 | part.LinkNum++; | ||
2694 | } | ||
2695 | } | ||
2696 | else | ||
2697 | { | ||
2698 | linkNum = PrimCount + 1; | ||
2699 | } | ||
2006 | 2700 | ||
2007 | m_parts.Add(linkPart.UUID, linkPart); | 2701 | m_parts.Add(linkPart.UUID, linkPart); |
2008 | 2702 | ||
2009 | linkPart.SetParent(this); | 2703 | linkPart.SetParent(this); |
2010 | linkPart.CreateSelected = true; | 2704 | linkPart.CreateSelected = true; |
2011 | 2705 | ||
2706 | // let physics know preserve part volume dtc messy since UpdatePrimFlags doesn't look to parent changes for now | ||
2707 | linkPart.UpdatePrimFlags(grpusephys, grptemporary, (IsPhantom || (linkPart.Flags & PrimFlags.Phantom) != 0), linkPart.VolumeDetectActive, true); | ||
2708 | if (linkPart.PhysActor != null && m_rootPart.PhysActor != null && m_rootPart.PhysActor.IsPhysical) | ||
2709 | { | ||
2710 | linkPart.PhysActor.link(m_rootPart.PhysActor); | ||
2711 | this.Scene.PhysicsScene.AddPhysicsActorTaint(linkPart.PhysActor); | ||
2712 | } | ||
2713 | |||
2012 | linkPart.LinkNum = linkNum++; | 2714 | linkPart.LinkNum = linkNum++; |
2013 | linkPart.UpdatePrimFlags(UsesPhysics, IsTemporary, IsPhantom, IsVolumeDetect); | 2715 | linkPart.UpdatePrimFlags(UsesPhysics, IsTemporary, IsPhantom, IsVolumeDetect, false); |
2014 | 2716 | ||
2015 | SceneObjectPart[] ogParts = objectGroup.Parts; | 2717 | SceneObjectPart[] ogParts = objectGroup.Parts; |
2016 | Array.Sort(ogParts, delegate(SceneObjectPart a, SceneObjectPart b) | 2718 | Array.Sort(ogParts, delegate(SceneObjectPart a, SceneObjectPart b) |
@@ -2022,7 +2724,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
2022 | { | 2724 | { |
2023 | SceneObjectPart part = ogParts[i]; | 2725 | SceneObjectPart part = ogParts[i]; |
2024 | if (part.UUID != objectGroup.m_rootPart.UUID) | 2726 | if (part.UUID != objectGroup.m_rootPart.UUID) |
2727 | { | ||
2025 | LinkNonRootPart(part, oldGroupPosition, oldRootRotation, linkNum++); | 2728 | LinkNonRootPart(part, oldGroupPosition, oldRootRotation, linkNum++); |
2729 | // let physics know | ||
2730 | part.UpdatePrimFlags(grpusephys, grptemporary, (IsPhantom || (part.Flags & PrimFlags.Phantom) != 0), part.VolumeDetectActive, true); | ||
2731 | if (part.PhysActor != null && m_rootPart.PhysActor != null && m_rootPart.PhysActor.IsPhysical) | ||
2732 | { | ||
2733 | part.PhysActor.link(m_rootPart.PhysActor); | ||
2734 | this.Scene.PhysicsScene.AddPhysicsActorTaint(part.PhysActor); | ||
2735 | } | ||
2736 | } | ||
2026 | part.ClearUndoState(); | 2737 | part.ClearUndoState(); |
2027 | } | 2738 | } |
2028 | } | 2739 | } |
@@ -2031,7 +2742,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2031 | objectGroup.IsDeleted = true; | 2742 | objectGroup.IsDeleted = true; |
2032 | 2743 | ||
2033 | objectGroup.m_parts.Clear(); | 2744 | objectGroup.m_parts.Clear(); |
2034 | 2745 | ||
2035 | // Can't do this yet since backup still makes use of the root part without any synchronization | 2746 | // Can't do this yet since backup still makes use of the root part without any synchronization |
2036 | // objectGroup.m_rootPart = null; | 2747 | // objectGroup.m_rootPart = null; |
2037 | 2748 | ||
@@ -2042,6 +2753,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
2042 | // unmoved prims! | 2753 | // unmoved prims! |
2043 | ResetChildPrimPhysicsPositions(); | 2754 | ResetChildPrimPhysicsPositions(); |
2044 | 2755 | ||
2756 | if (m_rootPart.PhysActor != null) | ||
2757 | m_rootPart.PhysActor.Building = false; | ||
2758 | |||
2045 | //HasGroupChanged = true; | 2759 | //HasGroupChanged = true; |
2046 | //ScheduleGroupForFullUpdate(); | 2760 | //ScheduleGroupForFullUpdate(); |
2047 | } | 2761 | } |
@@ -2109,7 +2823,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
2109 | // m_log.DebugFormat( | 2823 | // m_log.DebugFormat( |
2110 | // "[SCENE OBJECT GROUP]: Delinking part {0}, {1} from group with root part {2}, {3}", | 2824 | // "[SCENE OBJECT GROUP]: Delinking part {0}, {1} from group with root part {2}, {3}", |
2111 | // linkPart.Name, linkPart.UUID, RootPart.Name, RootPart.UUID); | 2825 | // linkPart.Name, linkPart.UUID, RootPart.Name, RootPart.UUID); |
2112 | 2826 | ||
2827 | if (m_rootPart.PhysActor != null) | ||
2828 | m_rootPart.PhysActor.Building = true; | ||
2829 | |||
2113 | linkPart.ClearUndoState(); | 2830 | linkPart.ClearUndoState(); |
2114 | 2831 | ||
2115 | Quaternion worldRot = linkPart.GetWorldRotation(); | 2832 | Quaternion worldRot = linkPart.GetWorldRotation(); |
@@ -2169,6 +2886,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
2169 | 2886 | ||
2170 | // When we delete a group, we currently have to force persist to the database if the object id has changed | 2887 | // When we delete a group, we currently have to force persist to the database if the object id has changed |
2171 | // (since delete works by deleting all rows which have a given object id) | 2888 | // (since delete works by deleting all rows which have a given object id) |
2889 | |||
2890 | // this is as it seems to be in sl now | ||
2891 | if(linkPart.PhysicsShapeType == (byte)PhysShapeType.none) | ||
2892 | linkPart.PhysicsShapeType = linkPart.DefaultPhysicsShapeType(); // root prims can't have type none for now | ||
2893 | |||
2894 | if (m_rootPart.PhysActor != null) | ||
2895 | m_rootPart.PhysActor.Building = false; | ||
2896 | |||
2172 | objectGroup.HasGroupChangedDueToDelink = true; | 2897 | objectGroup.HasGroupChangedDueToDelink = true; |
2173 | 2898 | ||
2174 | return objectGroup; | 2899 | return objectGroup; |
@@ -2180,6 +2905,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2180 | /// <param name="objectGroup"></param> | 2905 | /// <param name="objectGroup"></param> |
2181 | public virtual void DetachFromBackup() | 2906 | public virtual void DetachFromBackup() |
2182 | { | 2907 | { |
2908 | m_scene.SceneGraph.FireDetachFromBackup(this); | ||
2183 | if (m_isBackedUp && Scene != null) | 2909 | if (m_isBackedUp && Scene != null) |
2184 | m_scene.EventManager.OnBackup -= ProcessBackup; | 2910 | m_scene.EventManager.OnBackup -= ProcessBackup; |
2185 | 2911 | ||
@@ -2198,7 +2924,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2198 | 2924 | ||
2199 | axPos *= parentRot; | 2925 | axPos *= parentRot; |
2200 | part.OffsetPosition = axPos; | 2926 | part.OffsetPosition = axPos; |
2201 | part.GroupPosition = oldGroupPosition + part.OffsetPosition; | 2927 | Vector3 newPos = oldGroupPosition + part.OffsetPosition; |
2928 | part.GroupPosition = newPos; | ||
2202 | part.OffsetPosition = Vector3.Zero; | 2929 | part.OffsetPosition = Vector3.Zero; |
2203 | part.RotationOffset = worldRot; | 2930 | part.RotationOffset = worldRot; |
2204 | 2931 | ||
@@ -2209,7 +2936,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2209 | 2936 | ||
2210 | part.LinkNum = linkNum; | 2937 | part.LinkNum = linkNum; |
2211 | 2938 | ||
2212 | part.OffsetPosition = part.GroupPosition - AbsolutePosition; | 2939 | part.OffsetPosition = newPos - AbsolutePosition; |
2213 | 2940 | ||
2214 | Quaternion rootRotation = m_rootPart.RotationOffset; | 2941 | Quaternion rootRotation = m_rootPart.RotationOffset; |
2215 | 2942 | ||
@@ -2219,10 +2946,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
2219 | 2946 | ||
2220 | parentRot = m_rootPart.RotationOffset; | 2947 | parentRot = m_rootPart.RotationOffset; |
2221 | oldRot = part.RotationOffset; | 2948 | oldRot = part.RotationOffset; |
2222 | Quaternion newRot = Quaternion.Inverse(parentRot) * oldRot; | 2949 | Quaternion newRot = Quaternion.Inverse(parentRot) * worldRot; |
2223 | part.RotationOffset = newRot; | 2950 | part.RotationOffset = newRot; |
2224 | 2951 | ||
2225 | part.UpdatePrimFlags(UsesPhysics, IsTemporary, IsPhantom, IsVolumeDetect); | 2952 | part.UpdatePrimFlags(UsesPhysics, IsTemporary, IsPhantom, IsVolumeDetect, false); |
2226 | } | 2953 | } |
2227 | 2954 | ||
2228 | /// <summary> | 2955 | /// <summary> |
@@ -2473,8 +3200,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
2473 | } | 3200 | } |
2474 | } | 3201 | } |
2475 | 3202 | ||
2476 | for (int i = 0; i < parts.Length; i++) | 3203 | if (parts.Length > 1) |
2477 | parts[i].UpdatePrimFlags(UsePhysics, SetTemporary, SetPhantom, SetVolumeDetect); | 3204 | { |
3205 | m_rootPart.UpdatePrimFlags(UsePhysics, SetTemporary, SetPhantom, SetVolumeDetect, true); | ||
3206 | |||
3207 | for (int i = 0; i < parts.Length; i++) | ||
3208 | { | ||
3209 | |||
3210 | if (parts[i].UUID != m_rootPart.UUID) | ||
3211 | parts[i].UpdatePrimFlags(UsePhysics, SetTemporary, SetPhantom, SetVolumeDetect, true); | ||
3212 | } | ||
3213 | |||
3214 | if (m_rootPart.PhysActor != null) | ||
3215 | m_rootPart.PhysActor.Building = false; | ||
3216 | } | ||
3217 | else | ||
3218 | m_rootPart.UpdatePrimFlags(UsePhysics, SetTemporary, SetPhantom, SetVolumeDetect, false); | ||
2478 | } | 3219 | } |
2479 | } | 3220 | } |
2480 | 3221 | ||
@@ -2487,6 +3228,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
2487 | } | 3228 | } |
2488 | } | 3229 | } |
2489 | 3230 | ||
3231 | |||
3232 | |||
3233 | /// <summary> | ||
3234 | /// Gets the number of parts | ||
3235 | /// </summary> | ||
3236 | /// <returns></returns> | ||
3237 | public int GetPartCount() | ||
3238 | { | ||
3239 | return Parts.Count(); | ||
3240 | } | ||
3241 | |||
2490 | /// <summary> | 3242 | /// <summary> |
2491 | /// Update the texture entry for this part | 3243 | /// Update the texture entry for this part |
2492 | /// </summary> | 3244 | /// </summary> |
@@ -2548,11 +3300,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2548 | /// <param name="scale"></param> | 3300 | /// <param name="scale"></param> |
2549 | public void GroupResize(Vector3 scale) | 3301 | public void GroupResize(Vector3 scale) |
2550 | { | 3302 | { |
2551 | // m_log.DebugFormat( | ||
2552 | // "[SCENE OBJECT GROUP]: Group resizing {0} {1} from {2} to {3}", Name, LocalId, RootPart.Scale, scale); | ||
2553 | |||
2554 | RootPart.StoreUndoState(true); | ||
2555 | |||
2556 | scale.X = Math.Min(scale.X, Scene.m_maxNonphys); | 3303 | scale.X = Math.Min(scale.X, Scene.m_maxNonphys); |
2557 | scale.Y = Math.Min(scale.Y, Scene.m_maxNonphys); | 3304 | scale.Y = Math.Min(scale.Y, Scene.m_maxNonphys); |
2558 | scale.Z = Math.Min(scale.Z, Scene.m_maxNonphys); | 3305 | scale.Z = Math.Min(scale.Z, Scene.m_maxNonphys); |
@@ -2579,7 +3326,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2579 | SceneObjectPart obPart = parts[i]; | 3326 | SceneObjectPart obPart = parts[i]; |
2580 | if (obPart.UUID != m_rootPart.UUID) | 3327 | if (obPart.UUID != m_rootPart.UUID) |
2581 | { | 3328 | { |
2582 | // obPart.IgnoreUndoUpdate = true; | ||
2583 | Vector3 oldSize = new Vector3(obPart.Scale); | 3329 | Vector3 oldSize = new Vector3(obPart.Scale); |
2584 | 3330 | ||
2585 | float f = 1.0f; | 3331 | float f = 1.0f; |
@@ -2643,8 +3389,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2643 | z *= a; | 3389 | z *= a; |
2644 | } | 3390 | } |
2645 | } | 3391 | } |
2646 | |||
2647 | // obPart.IgnoreUndoUpdate = false; | ||
2648 | } | 3392 | } |
2649 | } | 3393 | } |
2650 | } | 3394 | } |
@@ -2654,9 +3398,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2654 | prevScale.Y *= y; | 3398 | prevScale.Y *= y; |
2655 | prevScale.Z *= z; | 3399 | prevScale.Z *= z; |
2656 | 3400 | ||
2657 | // RootPart.IgnoreUndoUpdate = true; | ||
2658 | RootPart.Resize(prevScale); | 3401 | RootPart.Resize(prevScale); |
2659 | // RootPart.IgnoreUndoUpdate = false; | ||
2660 | 3402 | ||
2661 | parts = m_parts.GetArray(); | 3403 | parts = m_parts.GetArray(); |
2662 | for (int i = 0; i < parts.Length; i++) | 3404 | for (int i = 0; i < parts.Length; i++) |
@@ -2665,8 +3407,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2665 | 3407 | ||
2666 | if (obPart.UUID != m_rootPart.UUID) | 3408 | if (obPart.UUID != m_rootPart.UUID) |
2667 | { | 3409 | { |
2668 | obPart.IgnoreUndoUpdate = true; | ||
2669 | |||
2670 | Vector3 currentpos = new Vector3(obPart.OffsetPosition); | 3410 | Vector3 currentpos = new Vector3(obPart.OffsetPosition); |
2671 | currentpos.X *= x; | 3411 | currentpos.X *= x; |
2672 | currentpos.Y *= y; | 3412 | currentpos.Y *= y; |
@@ -2679,16 +3419,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
2679 | 3419 | ||
2680 | obPart.Resize(newSize); | 3420 | obPart.Resize(newSize); |
2681 | obPart.UpdateOffSet(currentpos); | 3421 | obPart.UpdateOffSet(currentpos); |
2682 | |||
2683 | obPart.IgnoreUndoUpdate = false; | ||
2684 | } | 3422 | } |
2685 | 3423 | ||
2686 | // obPart.IgnoreUndoUpdate = false; | 3424 | HasGroupChanged = true; |
2687 | // obPart.StoreUndoState(); | 3425 | m_rootPart.TriggerScriptChangedEvent(Changed.SCALE); |
3426 | ScheduleGroupForTerseUpdate(); | ||
2688 | } | 3427 | } |
2689 | |||
2690 | // m_log.DebugFormat( | ||
2691 | // "[SCENE OBJECT GROUP]: Finished group resizing {0} {1} to {2}", Name, LocalId, RootPart.Scale); | ||
2692 | } | 3428 | } |
2693 | 3429 | ||
2694 | #endregion | 3430 | #endregion |
@@ -2701,14 +3437,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2701 | /// <param name="pos"></param> | 3437 | /// <param name="pos"></param> |
2702 | public void UpdateGroupPosition(Vector3 pos) | 3438 | public void UpdateGroupPosition(Vector3 pos) |
2703 | { | 3439 | { |
2704 | // m_log.DebugFormat("[SCENE OBJECT GROUP]: Updating group position on {0} {1} to {2}", Name, LocalId, pos); | ||
2705 | |||
2706 | RootPart.StoreUndoState(true); | ||
2707 | |||
2708 | // SceneObjectPart[] parts = m_parts.GetArray(); | ||
2709 | // for (int i = 0; i < parts.Length; i++) | ||
2710 | // parts[i].StoreUndoState(); | ||
2711 | |||
2712 | if (m_scene.EventManager.TriggerGroupMove(UUID, pos)) | 3440 | if (m_scene.EventManager.TriggerGroupMove(UUID, pos)) |
2713 | { | 3441 | { |
2714 | if (IsAttachment) | 3442 | if (IsAttachment) |
@@ -2741,21 +3469,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
2741 | /// </summary> | 3469 | /// </summary> |
2742 | /// <param name="pos"></param> | 3470 | /// <param name="pos"></param> |
2743 | /// <param name="localID"></param> | 3471 | /// <param name="localID"></param> |
3472 | /// | ||
3473 | |||
2744 | public void UpdateSinglePosition(Vector3 pos, uint localID) | 3474 | public void UpdateSinglePosition(Vector3 pos, uint localID) |
2745 | { | 3475 | { |
2746 | SceneObjectPart part = GetPart(localID); | 3476 | SceneObjectPart part = GetPart(localID); |
2747 | 3477 | ||
2748 | // SceneObjectPart[] parts = m_parts.GetArray(); | ||
2749 | // for (int i = 0; i < parts.Length; i++) | ||
2750 | // parts[i].StoreUndoState(); | ||
2751 | |||
2752 | if (part != null) | 3478 | if (part != null) |
2753 | { | 3479 | { |
2754 | // m_log.DebugFormat( | 3480 | // unlock parts position change |
2755 | // "[SCENE OBJECT GROUP]: Updating single position of {0} {1} to {2}", part.Name, part.LocalId, pos); | 3481 | if (m_rootPart.PhysActor != null) |
2756 | 3482 | m_rootPart.PhysActor.Building = true; | |
2757 | part.StoreUndoState(false); | ||
2758 | part.IgnoreUndoUpdate = true; | ||
2759 | 3483 | ||
2760 | if (part.UUID == m_rootPart.UUID) | 3484 | if (part.UUID == m_rootPart.UUID) |
2761 | { | 3485 | { |
@@ -2766,8 +3490,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
2766 | part.UpdateOffSet(pos); | 3490 | part.UpdateOffSet(pos); |
2767 | } | 3491 | } |
2768 | 3492 | ||
3493 | if (m_rootPart.PhysActor != null) | ||
3494 | m_rootPart.PhysActor.Building = false; | ||
3495 | |||
2769 | HasGroupChanged = true; | 3496 | HasGroupChanged = true; |
2770 | part.IgnoreUndoUpdate = false; | ||
2771 | } | 3497 | } |
2772 | } | 3498 | } |
2773 | 3499 | ||
@@ -2777,13 +3503,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2777 | /// <param name="pos"></param> | 3503 | /// <param name="pos"></param> |
2778 | public void UpdateRootPosition(Vector3 pos) | 3504 | public void UpdateRootPosition(Vector3 pos) |
2779 | { | 3505 | { |
2780 | // m_log.DebugFormat( | 3506 | // needs to be called with phys building true |
2781 | // "[SCENE OBJECT GROUP]: Updating root position of {0} {1} to {2}", Name, LocalId, pos); | ||
2782 | |||
2783 | // SceneObjectPart[] parts = m_parts.GetArray(); | ||
2784 | // for (int i = 0; i < parts.Length; i++) | ||
2785 | // parts[i].StoreUndoState(); | ||
2786 | |||
2787 | Vector3 newPos = new Vector3(pos.X, pos.Y, pos.Z); | 3507 | Vector3 newPos = new Vector3(pos.X, pos.Y, pos.Z); |
2788 | Vector3 oldPos = | 3508 | Vector3 oldPos = |
2789 | new Vector3(AbsolutePosition.X + m_rootPart.OffsetPosition.X, | 3509 | new Vector3(AbsolutePosition.X + m_rootPart.OffsetPosition.X, |
@@ -2806,7 +3526,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
2806 | AbsolutePosition = newPos; | 3526 | AbsolutePosition = newPos; |
2807 | 3527 | ||
2808 | HasGroupChanged = true; | 3528 | HasGroupChanged = true; |
2809 | ScheduleGroupForTerseUpdate(); | 3529 | if (m_rootPart.Undoing) |
3530 | { | ||
3531 | ScheduleGroupForFullUpdate(); | ||
3532 | } | ||
3533 | else | ||
3534 | { | ||
3535 | ScheduleGroupForTerseUpdate(); | ||
3536 | } | ||
2810 | } | 3537 | } |
2811 | 3538 | ||
2812 | #endregion | 3539 | #endregion |
@@ -2819,17 +3546,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2819 | /// <param name="rot"></param> | 3546 | /// <param name="rot"></param> |
2820 | public void UpdateGroupRotationR(Quaternion rot) | 3547 | public void UpdateGroupRotationR(Quaternion rot) |
2821 | { | 3548 | { |
2822 | // m_log.DebugFormat( | ||
2823 | // "[SCENE OBJECT GROUP]: Updating group rotation R of {0} {1} to {2}", Name, LocalId, rot); | ||
2824 | |||
2825 | // SceneObjectPart[] parts = m_parts.GetArray(); | ||
2826 | // for (int i = 0; i < parts.Length; i++) | ||
2827 | // parts[i].StoreUndoState(); | ||
2828 | |||
2829 | m_rootPart.StoreUndoState(true); | ||
2830 | |||
2831 | m_rootPart.UpdateRotation(rot); | ||
2832 | |||
2833 | PhysicsActor actor = m_rootPart.PhysActor; | 3549 | PhysicsActor actor = m_rootPart.PhysActor; |
2834 | if (actor != null) | 3550 | if (actor != null) |
2835 | { | 3551 | { |
@@ -2848,16 +3564,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2848 | /// <param name="rot"></param> | 3564 | /// <param name="rot"></param> |
2849 | public void UpdateGroupRotationPR(Vector3 pos, Quaternion rot) | 3565 | public void UpdateGroupRotationPR(Vector3 pos, Quaternion rot) |
2850 | { | 3566 | { |
2851 | // m_log.DebugFormat( | ||
2852 | // "[SCENE OBJECT GROUP]: Updating group rotation PR of {0} {1} to {2}", Name, LocalId, rot); | ||
2853 | |||
2854 | // SceneObjectPart[] parts = m_parts.GetArray(); | ||
2855 | // for (int i = 0; i < parts.Length; i++) | ||
2856 | // parts[i].StoreUndoState(); | ||
2857 | |||
2858 | RootPart.StoreUndoState(true); | ||
2859 | RootPart.IgnoreUndoUpdate = true; | ||
2860 | |||
2861 | m_rootPart.UpdateRotation(rot); | 3567 | m_rootPart.UpdateRotation(rot); |
2862 | 3568 | ||
2863 | PhysicsActor actor = m_rootPart.PhysActor; | 3569 | PhysicsActor actor = m_rootPart.PhysActor; |
@@ -2871,8 +3577,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2871 | 3577 | ||
2872 | HasGroupChanged = true; | 3578 | HasGroupChanged = true; |
2873 | ScheduleGroupForTerseUpdate(); | 3579 | ScheduleGroupForTerseUpdate(); |
2874 | |||
2875 | RootPart.IgnoreUndoUpdate = false; | ||
2876 | } | 3580 | } |
2877 | 3581 | ||
2878 | /// <summary> | 3582 | /// <summary> |
@@ -2885,13 +3589,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
2885 | SceneObjectPart part = GetPart(localID); | 3589 | SceneObjectPart part = GetPart(localID); |
2886 | 3590 | ||
2887 | SceneObjectPart[] parts = m_parts.GetArray(); | 3591 | SceneObjectPart[] parts = m_parts.GetArray(); |
2888 | for (int i = 0; i < parts.Length; i++) | ||
2889 | parts[i].StoreUndoState(); | ||
2890 | 3592 | ||
2891 | if (part != null) | 3593 | if (part != null) |
2892 | { | 3594 | { |
2893 | // m_log.DebugFormat( | 3595 | if (m_rootPart.PhysActor != null) |
2894 | // "[SCENE OBJECT GROUP]: Updating single rotation of {0} {1} to {2}", part.Name, part.LocalId, rot); | 3596 | m_rootPart.PhysActor.Building = true; |
2895 | 3597 | ||
2896 | if (part.UUID == m_rootPart.UUID) | 3598 | if (part.UUID == m_rootPart.UUID) |
2897 | { | 3599 | { |
@@ -2901,6 +3603,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
2901 | { | 3603 | { |
2902 | part.UpdateRotation(rot); | 3604 | part.UpdateRotation(rot); |
2903 | } | 3605 | } |
3606 | |||
3607 | if (m_rootPart.PhysActor != null) | ||
3608 | m_rootPart.PhysActor.Building = false; | ||
2904 | } | 3609 | } |
2905 | } | 3610 | } |
2906 | 3611 | ||
@@ -2914,12 +3619,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2914 | SceneObjectPart part = GetPart(localID); | 3619 | SceneObjectPart part = GetPart(localID); |
2915 | if (part != null) | 3620 | if (part != null) |
2916 | { | 3621 | { |
2917 | // m_log.DebugFormat( | 3622 | if (m_rootPart.PhysActor != null) |
2918 | // "[SCENE OBJECT GROUP]: Updating single position and rotation of {0} {1} to {2}", | 3623 | m_rootPart.PhysActor.Building = true; |
2919 | // part.Name, part.LocalId, rot); | ||
2920 | |||
2921 | part.StoreUndoState(); | ||
2922 | part.IgnoreUndoUpdate = true; | ||
2923 | 3624 | ||
2924 | if (part.UUID == m_rootPart.UUID) | 3625 | if (part.UUID == m_rootPart.UUID) |
2925 | { | 3626 | { |
@@ -2932,7 +3633,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2932 | part.OffsetPosition = pos; | 3633 | part.OffsetPosition = pos; |
2933 | } | 3634 | } |
2934 | 3635 | ||
2935 | part.IgnoreUndoUpdate = false; | 3636 | if (m_rootPart.PhysActor != null) |
3637 | m_rootPart.PhysActor.Building = false; | ||
2936 | } | 3638 | } |
2937 | } | 3639 | } |
2938 | 3640 | ||
@@ -2942,15 +3644,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
2942 | /// <param name="rot"></param> | 3644 | /// <param name="rot"></param> |
2943 | public void UpdateRootRotation(Quaternion rot) | 3645 | public void UpdateRootRotation(Quaternion rot) |
2944 | { | 3646 | { |
2945 | // m_log.DebugFormat( | 3647 | // needs to be called with phys building true |
2946 | // "[SCENE OBJECT GROUP]: Updating root rotation of {0} {1} to {2}", | ||
2947 | // Name, LocalId, rot); | ||
2948 | |||
2949 | Quaternion axRot = rot; | 3648 | Quaternion axRot = rot; |
2950 | Quaternion oldParentRot = m_rootPart.RotationOffset; | 3649 | Quaternion oldParentRot = m_rootPart.RotationOffset; |
2951 | 3650 | ||
2952 | m_rootPart.StoreUndoState(); | 3651 | //Don't use UpdateRotation because it schedules an update prematurely |
2953 | m_rootPart.UpdateRotation(rot); | 3652 | m_rootPart.RotationOffset = rot; |
2954 | 3653 | ||
2955 | PhysicsActor pa = m_rootPart.PhysActor; | 3654 | PhysicsActor pa = m_rootPart.PhysActor; |
2956 | 3655 | ||
@@ -2966,35 +3665,135 @@ namespace OpenSim.Region.Framework.Scenes | |||
2966 | SceneObjectPart prim = parts[i]; | 3665 | SceneObjectPart prim = parts[i]; |
2967 | if (prim.UUID != m_rootPart.UUID) | 3666 | if (prim.UUID != m_rootPart.UUID) |
2968 | { | 3667 | { |
2969 | prim.IgnoreUndoUpdate = true; | 3668 | Quaternion NewRot = oldParentRot * prim.RotationOffset; |
3669 | NewRot = Quaternion.Inverse(axRot) * NewRot; | ||
3670 | prim.RotationOffset = NewRot; | ||
3671 | |||
2970 | Vector3 axPos = prim.OffsetPosition; | 3672 | Vector3 axPos = prim.OffsetPosition; |
3673 | |||
2971 | axPos *= oldParentRot; | 3674 | axPos *= oldParentRot; |
2972 | axPos *= Quaternion.Inverse(axRot); | 3675 | axPos *= Quaternion.Inverse(axRot); |
2973 | prim.OffsetPosition = axPos; | 3676 | prim.OffsetPosition = axPos; |
2974 | Quaternion primsRot = prim.RotationOffset; | 3677 | } |
2975 | Quaternion newRot = oldParentRot * primsRot; | 3678 | } |
2976 | newRot = Quaternion.Inverse(axRot) * newRot; | 3679 | |
2977 | prim.RotationOffset = newRot; | 3680 | HasGroupChanged = true; |
2978 | prim.ScheduleTerseUpdate(); | 3681 | ScheduleGroupForFullUpdate(); |
2979 | prim.IgnoreUndoUpdate = false; | 3682 | } |
2980 | } | ||
2981 | } | ||
2982 | |||
2983 | // for (int i = 0; i < parts.Length; i++) | ||
2984 | // { | ||
2985 | // SceneObjectPart childpart = parts[i]; | ||
2986 | // if (childpart != m_rootPart) | ||
2987 | // { | ||
2988 | //// childpart.IgnoreUndoUpdate = false; | ||
2989 | //// childpart.StoreUndoState(); | ||
2990 | // } | ||
2991 | // } | ||
2992 | 3683 | ||
2993 | m_rootPart.ScheduleTerseUpdate(); | 3684 | private enum updatetype :int |
3685 | { | ||
3686 | none = 0, | ||
3687 | partterse = 1, | ||
3688 | partfull = 2, | ||
3689 | groupterse = 3, | ||
3690 | groupfull = 4 | ||
3691 | } | ||
2994 | 3692 | ||
2995 | // m_log.DebugFormat( | 3693 | public void doChangeObject(SceneObjectPart part, ObjectChangeData data) |
2996 | // "[SCENE OBJECT GROUP]: Updated root rotation of {0} {1} to {2}", | 3694 | { |
2997 | // Name, LocalId, rot); | 3695 | // TODO this still as excessive *.Schedule*Update()s |
3696 | |||
3697 | if (part != null && part.ParentGroup != null) | ||
3698 | { | ||
3699 | ObjectChangeType change = data.change; | ||
3700 | bool togroup = ((change & ObjectChangeType.Group) != 0); | ||
3701 | // bool uniform = ((what & ObjectChangeType.UniformScale) != 0); not in use | ||
3702 | |||
3703 | SceneObjectGroup group = part.ParentGroup; | ||
3704 | PhysicsActor pha = group.RootPart.PhysActor; | ||
3705 | |||
3706 | updatetype updateType = updatetype.none; | ||
3707 | |||
3708 | if (togroup) | ||
3709 | { | ||
3710 | // related to group | ||
3711 | if ((change & ObjectChangeType.Position) != 0) | ||
3712 | { | ||
3713 | group.AbsolutePosition = data.position; | ||
3714 | updateType = updatetype.groupterse; | ||
3715 | } | ||
3716 | if ((change & ObjectChangeType.Rotation) != 0) | ||
3717 | { | ||
3718 | group.RootPart.UpdateRotation(data.rotation); | ||
3719 | updateType = updatetype.none; | ||
3720 | } | ||
3721 | if ((change & ObjectChangeType.Scale) != 0) | ||
3722 | { | ||
3723 | if (pha != null) | ||
3724 | pha.Building = true; | ||
3725 | |||
3726 | group.GroupResize(data.scale); | ||
3727 | updateType = updatetype.none; | ||
3728 | |||
3729 | if (pha != null) | ||
3730 | pha.Building = false; | ||
3731 | } | ||
3732 | } | ||
3733 | else | ||
3734 | { | ||
3735 | // related to single prim in a link-set ( ie group) | ||
3736 | if (pha != null) | ||
3737 | pha.Building = true; | ||
3738 | |||
3739 | // root part is special | ||
3740 | // parts offset positions or rotations need to change also | ||
3741 | |||
3742 | if (part == group.RootPart) | ||
3743 | { | ||
3744 | if ((change & ObjectChangeType.Position) != 0) | ||
3745 | group.UpdateRootPosition(data.position); | ||
3746 | if ((change & ObjectChangeType.Rotation) != 0) | ||
3747 | group.UpdateRootRotation(data.rotation); | ||
3748 | if ((change & ObjectChangeType.Scale) != 0) | ||
3749 | part.Resize(data.scale); | ||
3750 | } | ||
3751 | else | ||
3752 | { | ||
3753 | if ((change & ObjectChangeType.Position) != 0) | ||
3754 | { | ||
3755 | part.OffsetPosition = data.position; | ||
3756 | updateType = updatetype.partterse; | ||
3757 | } | ||
3758 | if ((change & ObjectChangeType.Rotation) != 0) | ||
3759 | { | ||
3760 | part.UpdateRotation(data.rotation); | ||
3761 | updateType = updatetype.none; | ||
3762 | } | ||
3763 | if ((change & ObjectChangeType.Scale) != 0) | ||
3764 | { | ||
3765 | part.Resize(data.scale); | ||
3766 | updateType = updatetype.none; | ||
3767 | } | ||
3768 | } | ||
3769 | |||
3770 | if (pha != null) | ||
3771 | pha.Building = false; | ||
3772 | } | ||
3773 | |||
3774 | if (updateType != updatetype.none) | ||
3775 | { | ||
3776 | group.HasGroupChanged = true; | ||
3777 | |||
3778 | switch (updateType) | ||
3779 | { | ||
3780 | case updatetype.partterse: | ||
3781 | part.ScheduleTerseUpdate(); | ||
3782 | break; | ||
3783 | case updatetype.partfull: | ||
3784 | part.ScheduleFullUpdate(); | ||
3785 | break; | ||
3786 | case updatetype.groupterse: | ||
3787 | group.ScheduleGroupForTerseUpdate(); | ||
3788 | break; | ||
3789 | case updatetype.groupfull: | ||
3790 | group.ScheduleGroupForFullUpdate(); | ||
3791 | break; | ||
3792 | default: | ||
3793 | break; | ||
3794 | } | ||
3795 | } | ||
3796 | } | ||
2998 | } | 3797 | } |
2999 | 3798 | ||
3000 | #endregion | 3799 | #endregion |
@@ -3214,11 +4013,38 @@ namespace OpenSim.Region.Framework.Scenes | |||
3214 | } | 4013 | } |
3215 | } | 4014 | } |
3216 | } | 4015 | } |
3217 | 4016 | ||
4017 | public Vector3 GetGeometricCenter() | ||
4018 | { | ||
4019 | // this is not real geometric center but a average of positions relative to root prim acording to | ||
4020 | // http://wiki.secondlife.com/wiki/llGetGeometricCenter | ||
4021 | // ignoring tortured prims details since sl also seems to ignore | ||
4022 | // so no real use in doing it on physics | ||
4023 | |||
4024 | Vector3 gc = Vector3.Zero; | ||
4025 | |||
4026 | int nparts = m_parts.Count; | ||
4027 | if (nparts <= 1) | ||
4028 | return gc; | ||
4029 | |||
4030 | SceneObjectPart[] parts = m_parts.GetArray(); | ||
4031 | nparts = parts.Length; // just in case it changed | ||
4032 | if (nparts <= 1) | ||
4033 | return gc; | ||
4034 | |||
4035 | // average all parts positions | ||
4036 | for (int i = 0; i < nparts; i++) | ||
4037 | gc += parts[i].GetWorldPosition(); | ||
4038 | gc /= nparts; | ||
4039 | |||
4040 | // relative to root: | ||
4041 | gc -= AbsolutePosition; | ||
4042 | return gc; | ||
4043 | } | ||
4044 | |||
3218 | public float GetMass() | 4045 | public float GetMass() |
3219 | { | 4046 | { |
3220 | float retmass = 0f; | 4047 | float retmass = 0f; |
3221 | |||
3222 | SceneObjectPart[] parts = m_parts.GetArray(); | 4048 | SceneObjectPart[] parts = m_parts.GetArray(); |
3223 | for (int i = 0; i < parts.Length; i++) | 4049 | for (int i = 0; i < parts.Length; i++) |
3224 | retmass += parts[i].GetMass(); | 4050 | retmass += parts[i].GetMass(); |
@@ -3379,6 +4205,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
3379 | FromItemID = uuid; | 4205 | FromItemID = uuid; |
3380 | } | 4206 | } |
3381 | 4207 | ||
4208 | public void ResetOwnerChangeFlag() | ||
4209 | { | ||
4210 | ForEachPart(delegate(SceneObjectPart part) | ||
4211 | { | ||
4212 | part.ResetOwnerChangeFlag(); | ||
4213 | }); | ||
4214 | } | ||
4215 | |||
3382 | #endregion | 4216 | #endregion |
3383 | } | 4217 | } |
3384 | } | 4218 | } |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 4bec2d4..37b5554 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -62,7 +62,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
62 | TELEPORT = 512, | 62 | TELEPORT = 512, |
63 | REGION_RESTART = 1024, | 63 | REGION_RESTART = 1024, |
64 | MEDIA = 2048, | 64 | MEDIA = 2048, |
65 | ANIMATION = 16384 | 65 | ANIMATION = 16384, |
66 | POSITION = 32768 | ||
66 | } | 67 | } |
67 | 68 | ||
68 | // I don't really know where to put this except here. | 69 | // I don't really know where to put this except here. |
@@ -121,6 +122,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
121 | /// Denote all sides of the prim | 122 | /// Denote all sides of the prim |
122 | /// </value> | 123 | /// </value> |
123 | public const int ALL_SIDES = -1; | 124 | public const int ALL_SIDES = -1; |
125 | |||
126 | private const scriptEvents PhyscicsNeededSubsEvents = ( | ||
127 | scriptEvents.collision | scriptEvents.collision_start | scriptEvents.collision_end | | ||
128 | scriptEvents.land_collision | scriptEvents.land_collision_start | scriptEvents.land_collision_end | ||
129 | ); | ||
124 | 130 | ||
125 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 131 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
126 | 132 | ||
@@ -182,6 +188,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
182 | 188 | ||
183 | public uint TimeStampTerse; | 189 | public uint TimeStampTerse; |
184 | 190 | ||
191 | // The following two are to hold the attachment data | ||
192 | // while an object is inworld | ||
193 | [XmlIgnore] | ||
194 | public byte AttachPoint = 0; | ||
195 | |||
196 | [XmlIgnore] | ||
197 | public Vector3 AttachOffset = Vector3.Zero; | ||
198 | |||
199 | [XmlIgnore] | ||
185 | public int STATUS_ROTATE_X; | 200 | public int STATUS_ROTATE_X; |
186 | 201 | ||
187 | public int STATUS_ROTATE_Y; | 202 | public int STATUS_ROTATE_Y; |
@@ -208,8 +223,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
208 | 223 | ||
209 | public Vector3 RotationAxis = Vector3.One; | 224 | public Vector3 RotationAxis = Vector3.One; |
210 | 225 | ||
211 | public bool VolumeDetectActive; // XmlIgnore set to avoid problems with persistance until I come to care for this | 226 | public bool VolumeDetectActive; |
212 | // Certainly this must be a persistant setting finally | ||
213 | 227 | ||
214 | public bool IsWaitingForFirstSpinUpdatePacket; | 228 | public bool IsWaitingForFirstSpinUpdatePacket; |
215 | 229 | ||
@@ -249,10 +263,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
249 | private Quaternion m_sitTargetOrientation = Quaternion.Identity; | 263 | private Quaternion m_sitTargetOrientation = Quaternion.Identity; |
250 | private Vector3 m_sitTargetPosition; | 264 | private Vector3 m_sitTargetPosition; |
251 | private string m_sitAnimation = "SIT"; | 265 | private string m_sitAnimation = "SIT"; |
266 | private bool m_occupied; // KF if any av is sitting on this prim | ||
252 | private string m_text = String.Empty; | 267 | private string m_text = String.Empty; |
253 | private string m_touchName = String.Empty; | 268 | private string m_touchName = String.Empty; |
254 | private readonly Stack<UndoState> m_undo = new Stack<UndoState>(5); | 269 | private UndoRedoState m_UndoRedo = null; |
255 | private readonly Stack<UndoState> m_redo = new Stack<UndoState>(5); | ||
256 | 270 | ||
257 | private bool m_passTouches; | 271 | private bool m_passTouches; |
258 | 272 | ||
@@ -280,7 +294,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
280 | protected Vector3 m_lastAcceleration; | 294 | protected Vector3 m_lastAcceleration; |
281 | protected Vector3 m_lastAngularVelocity; | 295 | protected Vector3 m_lastAngularVelocity; |
282 | protected int m_lastTerseSent; | 296 | protected int m_lastTerseSent; |
283 | 297 | protected float m_buoyancy = 0.0f; | |
298 | protected Vector3 m_force; | ||
299 | protected Vector3 m_torque; | ||
300 | |||
301 | protected byte m_physicsShapeType = (byte)PhysShapeType.prim; | ||
302 | protected float m_density = 1000.0f; // in kg/m^3 | ||
303 | protected float m_gravitymod = 1.0f; | ||
304 | protected float m_friction = 0.6f; // wood | ||
305 | protected float m_bounce = 0.5f; // wood | ||
306 | |||
307 | |||
308 | protected bool m_isSelected = false; | ||
309 | |||
284 | /// <summary> | 310 | /// <summary> |
285 | /// Stores media texture data | 311 | /// Stores media texture data |
286 | /// </summary> | 312 | /// </summary> |
@@ -296,6 +322,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
296 | private UUID m_collisionSound; | 322 | private UUID m_collisionSound; |
297 | private float m_collisionSoundVolume; | 323 | private float m_collisionSoundVolume; |
298 | 324 | ||
325 | |||
326 | private SOPVehicle m_vehicle = null; | ||
327 | |||
328 | private KeyframeMotion m_keyframeMotion = null; | ||
329 | |||
330 | public KeyframeMotion KeyframeMotion | ||
331 | { | ||
332 | get; set; | ||
333 | } | ||
334 | |||
335 | |||
299 | #endregion Fields | 336 | #endregion Fields |
300 | 337 | ||
301 | // ~SceneObjectPart() | 338 | // ~SceneObjectPart() |
@@ -338,7 +375,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
338 | UUID ownerID, PrimitiveBaseShape shape, Vector3 groupPosition, | 375 | UUID ownerID, PrimitiveBaseShape shape, Vector3 groupPosition, |
339 | Quaternion rotationOffset, Vector3 offsetPosition) : this() | 376 | Quaternion rotationOffset, Vector3 offsetPosition) : this() |
340 | { | 377 | { |
341 | m_name = "Primitive"; | 378 | m_name = "Object"; |
342 | 379 | ||
343 | CreationDate = (int)Utils.DateTimeToUnixTime(Rezzed); | 380 | CreationDate = (int)Utils.DateTimeToUnixTime(Rezzed); |
344 | LastOwnerID = CreatorID = OwnerID = ownerID; | 381 | LastOwnerID = CreatorID = OwnerID = ownerID; |
@@ -378,7 +415,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
378 | private uint _ownerMask = (uint)PermissionMask.All; | 415 | private uint _ownerMask = (uint)PermissionMask.All; |
379 | private uint _groupMask = (uint)PermissionMask.None; | 416 | private uint _groupMask = (uint)PermissionMask.None; |
380 | private uint _everyoneMask = (uint)PermissionMask.None; | 417 | private uint _everyoneMask = (uint)PermissionMask.None; |
381 | private uint _nextOwnerMask = (uint)PermissionMask.All; | 418 | private uint _nextOwnerMask = (uint)(PermissionMask.Move | PermissionMask.Modify | PermissionMask.Transfer); |
382 | private PrimFlags _flags = PrimFlags.None; | 419 | private PrimFlags _flags = PrimFlags.None; |
383 | private DateTime m_expires; | 420 | private DateTime m_expires; |
384 | private DateTime m_rezzed; | 421 | private DateTime m_rezzed; |
@@ -472,12 +509,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
472 | } | 509 | } |
473 | 510 | ||
474 | /// <value> | 511 | /// <value> |
475 | /// Access should be via Inventory directly - this property temporarily remains for xml serialization purposes | 512 | /// Get the inventory list |
476 | /// </value> | 513 | /// </value> |
477 | public TaskInventoryDictionary TaskInventory | 514 | public TaskInventoryDictionary TaskInventory |
478 | { | 515 | { |
479 | get { return m_inventory.Items; } | 516 | get { |
480 | set { m_inventory.Items = value; } | 517 | return m_inventory.Items; |
518 | } | ||
519 | set { | ||
520 | m_inventory.Items = value; | ||
521 | } | ||
481 | } | 522 | } |
482 | 523 | ||
483 | /// <summary> | 524 | /// <summary> |
@@ -527,32 +568,28 @@ namespace OpenSim.Region.Framework.Scenes | |||
527 | } | 568 | } |
528 | } | 569 | } |
529 | 570 | ||
530 | public byte Material | 571 | public bool PassTouches |
531 | { | 572 | { |
532 | get { return (byte) m_material; } | 573 | get { return m_passTouches; } |
533 | set | 574 | set |
534 | { | 575 | { |
535 | m_material = (Material)value; | 576 | m_passTouches = value; |
536 | |||
537 | PhysicsActor pa = PhysActor; | ||
538 | 577 | ||
539 | if (pa != null) | 578 | if (ParentGroup != null) |
540 | pa.SetMaterial((int)value); | 579 | ParentGroup.HasGroupChanged = true; |
541 | } | 580 | } |
542 | } | 581 | } |
543 | 582 | ||
544 | public bool PassTouches | 583 | public bool IsSelected |
545 | { | 584 | { |
546 | get { return m_passTouches; } | 585 | get { return m_isSelected; } |
547 | set | 586 | set |
548 | { | 587 | { |
549 | m_passTouches = value; | 588 | m_isSelected = value; |
550 | |||
551 | if (ParentGroup != null) | 589 | if (ParentGroup != null) |
552 | ParentGroup.HasGroupChanged = true; | 590 | ParentGroup.PartSelectChanged(value); |
553 | } | 591 | } |
554 | } | 592 | } |
555 | |||
556 | 593 | ||
557 | 594 | ||
558 | public Dictionary<int, string> CollisionFilter | 595 | public Dictionary<int, string> CollisionFilter |
@@ -623,14 +660,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
623 | set { m_LoopSoundSlavePrims = value; } | 660 | set { m_LoopSoundSlavePrims = value; } |
624 | } | 661 | } |
625 | 662 | ||
626 | |||
627 | public Byte[] TextureAnimation | 663 | public Byte[] TextureAnimation |
628 | { | 664 | { |
629 | get { return m_TextureAnimation; } | 665 | get { return m_TextureAnimation; } |
630 | set { m_TextureAnimation = value; } | 666 | set { m_TextureAnimation = value; } |
631 | } | 667 | } |
632 | 668 | ||
633 | |||
634 | public Byte[] ParticleSystem | 669 | public Byte[] ParticleSystem |
635 | { | 670 | { |
636 | get { return m_particleSystem; } | 671 | get { return m_particleSystem; } |
@@ -667,8 +702,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
667 | { | 702 | { |
668 | // If this is a linkset, we don't want the physics engine mucking up our group position here. | 703 | // If this is a linkset, we don't want the physics engine mucking up our group position here. |
669 | PhysicsActor actor = PhysActor; | 704 | PhysicsActor actor = PhysActor; |
670 | if (actor != null && ParentID == 0) | 705 | if (ParentID == 0) |
671 | m_groupPosition = actor.Position; | 706 | { |
707 | if (actor != null) | ||
708 | m_groupPosition = actor.Position; | ||
709 | return m_groupPosition; | ||
710 | } | ||
672 | 711 | ||
673 | if (ParentGroup.IsAttachment) | 712 | if (ParentGroup.IsAttachment) |
674 | { | 713 | { |
@@ -677,12 +716,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
677 | return sp.AbsolutePosition; | 716 | return sp.AbsolutePosition; |
678 | } | 717 | } |
679 | 718 | ||
719 | // use root prim's group position. Physics may have updated it | ||
720 | if (ParentGroup.RootPart != this) | ||
721 | m_groupPosition = ParentGroup.RootPart.GroupPosition; | ||
680 | return m_groupPosition; | 722 | return m_groupPosition; |
681 | } | 723 | } |
682 | set | 724 | set |
683 | { | 725 | { |
684 | m_groupPosition = value; | 726 | m_groupPosition = value; |
685 | |||
686 | PhysicsActor actor = PhysActor; | 727 | PhysicsActor actor = PhysActor; |
687 | if (actor != null) | 728 | if (actor != null) |
688 | { | 729 | { |
@@ -708,16 +749,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
708 | m_log.Error("[SCENEOBJECTPART]: GROUP POSITION. " + e.Message); | 749 | m_log.Error("[SCENEOBJECTPART]: GROUP POSITION. " + e.Message); |
709 | } | 750 | } |
710 | } | 751 | } |
711 | |||
712 | // TODO if we decide to do sitting in a more SL compatible way (multiple avatars per prim), this has to be fixed, too | ||
713 | if (SitTargetAvatar != UUID.Zero) | ||
714 | { | ||
715 | ScenePresence avatar; | ||
716 | if (ParentGroup.Scene.TryGetScenePresence(SitTargetAvatar, out avatar)) | ||
717 | { | ||
718 | avatar.ParentPosition = GetWorldPosition(); | ||
719 | } | ||
720 | } | ||
721 | } | 752 | } |
722 | } | 753 | } |
723 | 754 | ||
@@ -726,7 +757,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
726 | get { return m_offsetPosition; } | 757 | get { return m_offsetPosition; } |
727 | set | 758 | set |
728 | { | 759 | { |
729 | // StoreUndoState(); | 760 | Vector3 oldpos = m_offsetPosition; |
730 | m_offsetPosition = value; | 761 | m_offsetPosition = value; |
731 | 762 | ||
732 | if (ParentGroup != null && !ParentGroup.IsDeleted) | 763 | if (ParentGroup != null && !ParentGroup.IsDeleted) |
@@ -741,7 +772,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
741 | if (ParentGroup.Scene != null) | 772 | if (ParentGroup.Scene != null) |
742 | ParentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(actor); | 773 | ParentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(actor); |
743 | } | 774 | } |
775 | |||
776 | if (!m_parentGroup.m_dupeInProgress) | ||
777 | { | ||
778 | List<ScenePresence> avs = ParentGroup.GetLinkedAvatars(); | ||
779 | foreach (ScenePresence av in avs) | ||
780 | { | ||
781 | if (av.ParentID == m_localId) | ||
782 | { | ||
783 | Vector3 offset = (m_offsetPosition - oldpos); | ||
784 | av.AbsolutePosition += offset; | ||
785 | av.SendAvatarDataToAllAgents(); | ||
786 | } | ||
787 | } | ||
788 | } | ||
744 | } | 789 | } |
790 | TriggerScriptChangedEvent(Changed.POSITION); | ||
745 | } | 791 | } |
746 | } | 792 | } |
747 | 793 | ||
@@ -790,7 +836,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
790 | 836 | ||
791 | set | 837 | set |
792 | { | 838 | { |
793 | StoreUndoState(); | 839 | // StoreUndoState(); |
794 | m_rotationOffset = value; | 840 | m_rotationOffset = value; |
795 | 841 | ||
796 | PhysicsActor actor = PhysActor; | 842 | PhysicsActor actor = PhysActor; |
@@ -878,7 +924,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
878 | get | 924 | get |
879 | { | 925 | { |
880 | PhysicsActor actor = PhysActor; | 926 | PhysicsActor actor = PhysActor; |
881 | if ((actor != null) && actor.IsPhysical) | 927 | if ((actor != null) && actor.IsPhysical && ParentGroup.RootPart == this) |
882 | { | 928 | { |
883 | m_angularVelocity = actor.RotationalVelocity; | 929 | m_angularVelocity = actor.RotationalVelocity; |
884 | } | 930 | } |
@@ -890,7 +936,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
890 | /// <summary></summary> | 936 | /// <summary></summary> |
891 | public Vector3 Acceleration | 937 | public Vector3 Acceleration |
892 | { | 938 | { |
893 | get { return m_acceleration; } | 939 | get |
940 | { | ||
941 | PhysicsActor actor = PhysActor; | ||
942 | if (actor != null) | ||
943 | { | ||
944 | m_acceleration = actor.Acceleration; | ||
945 | } | ||
946 | return m_acceleration; | ||
947 | } | ||
948 | |||
894 | set { m_acceleration = value; } | 949 | set { m_acceleration = value; } |
895 | } | 950 | } |
896 | 951 | ||
@@ -947,7 +1002,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
947 | public PrimitiveBaseShape Shape | 1002 | public PrimitiveBaseShape Shape |
948 | { | 1003 | { |
949 | get { return m_shape; } | 1004 | get { return m_shape; } |
950 | set { m_shape = value;} | 1005 | set |
1006 | { | ||
1007 | m_shape = value; | ||
1008 | } | ||
951 | } | 1009 | } |
952 | 1010 | ||
953 | /// <summary> | 1011 | /// <summary> |
@@ -960,7 +1018,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
960 | { | 1018 | { |
961 | if (m_shape != null) | 1019 | if (m_shape != null) |
962 | { | 1020 | { |
963 | StoreUndoState(); | ||
964 | 1021 | ||
965 | m_shape.Scale = value; | 1022 | m_shape.Scale = value; |
966 | 1023 | ||
@@ -987,6 +1044,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
987 | } | 1044 | } |
988 | 1045 | ||
989 | public UpdateRequired UpdateFlag { get; set; } | 1046 | public UpdateRequired UpdateFlag { get; set; } |
1047 | public bool UpdatePhysRequired { get; set; } | ||
990 | 1048 | ||
991 | /// <summary> | 1049 | /// <summary> |
992 | /// Used for media on a prim. | 1050 | /// Used for media on a prim. |
@@ -1027,10 +1085,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1027 | { | 1085 | { |
1028 | get | 1086 | get |
1029 | { | 1087 | { |
1030 | if (ParentGroup.IsAttachment) | 1088 | return GroupPosition + (m_offsetPosition * ParentGroup.RootPart.RotationOffset); |
1031 | return GroupPosition; | ||
1032 | |||
1033 | return m_offsetPosition + m_groupPosition; | ||
1034 | } | 1089 | } |
1035 | } | 1090 | } |
1036 | 1091 | ||
@@ -1208,6 +1263,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
1208 | _flags = value; | 1263 | _flags = value; |
1209 | } | 1264 | } |
1210 | } | 1265 | } |
1266 | |||
1267 | [XmlIgnore] | ||
1268 | public bool IsOccupied // KF If an av is sittingon this prim | ||
1269 | { | ||
1270 | get { return m_occupied; } | ||
1271 | set { m_occupied = value; } | ||
1272 | } | ||
1211 | 1273 | ||
1212 | /// <summary> | 1274 | /// <summary> |
1213 | /// ID of the avatar that is sat on us. If there is no such avatar then is UUID.Zero | 1275 | /// ID of the avatar that is sat on us. If there is no such avatar then is UUID.Zero |
@@ -1267,6 +1329,316 @@ namespace OpenSim.Region.Framework.Scenes | |||
1267 | set { m_collisionSoundVolume = value; } | 1329 | set { m_collisionSoundVolume = value; } |
1268 | } | 1330 | } |
1269 | 1331 | ||
1332 | public float Buoyancy | ||
1333 | { | ||
1334 | get | ||
1335 | { | ||
1336 | if (ParentGroup.RootPart == this) | ||
1337 | return m_buoyancy; | ||
1338 | |||
1339 | return ParentGroup.RootPart.Buoyancy; | ||
1340 | } | ||
1341 | set | ||
1342 | { | ||
1343 | if (ParentGroup != null && ParentGroup.RootPart != null && ParentGroup.RootPart != this) | ||
1344 | { | ||
1345 | ParentGroup.RootPart.Buoyancy = value; | ||
1346 | return; | ||
1347 | } | ||
1348 | m_buoyancy = value; | ||
1349 | if (PhysActor != null) | ||
1350 | PhysActor.Buoyancy = value; | ||
1351 | } | ||
1352 | } | ||
1353 | |||
1354 | public Vector3 Force | ||
1355 | { | ||
1356 | get | ||
1357 | { | ||
1358 | if (ParentGroup.RootPart == this) | ||
1359 | return m_force; | ||
1360 | |||
1361 | return ParentGroup.RootPart.Force; | ||
1362 | } | ||
1363 | |||
1364 | set | ||
1365 | { | ||
1366 | if (ParentGroup != null && ParentGroup.RootPart != null && ParentGroup.RootPart != this) | ||
1367 | { | ||
1368 | ParentGroup.RootPart.Force = value; | ||
1369 | return; | ||
1370 | } | ||
1371 | m_force = value; | ||
1372 | if (PhysActor != null) | ||
1373 | PhysActor.Force = value; | ||
1374 | } | ||
1375 | } | ||
1376 | |||
1377 | public Vector3 Torque | ||
1378 | { | ||
1379 | get | ||
1380 | { | ||
1381 | if (ParentGroup.RootPart == this) | ||
1382 | return m_torque; | ||
1383 | |||
1384 | return ParentGroup.RootPart.Torque; | ||
1385 | } | ||
1386 | |||
1387 | set | ||
1388 | { | ||
1389 | if (ParentGroup != null && ParentGroup.RootPart != null && ParentGroup.RootPart != this) | ||
1390 | { | ||
1391 | ParentGroup.RootPart.Torque = value; | ||
1392 | return; | ||
1393 | } | ||
1394 | m_torque = value; | ||
1395 | if (PhysActor != null) | ||
1396 | PhysActor.Torque = value; | ||
1397 | } | ||
1398 | } | ||
1399 | |||
1400 | public byte Material | ||
1401 | { | ||
1402 | get { return (byte)m_material; } | ||
1403 | set | ||
1404 | { | ||
1405 | if (value >= 0 && value <= (byte)SOPMaterialData.MaxMaterial) | ||
1406 | { | ||
1407 | bool update = false; | ||
1408 | |||
1409 | if (m_material != (Material)value) | ||
1410 | { | ||
1411 | update = true; | ||
1412 | m_material = (Material)value; | ||
1413 | } | ||
1414 | |||
1415 | if (m_friction != SOPMaterialData.friction(m_material)) | ||
1416 | { | ||
1417 | update = true; | ||
1418 | m_friction = SOPMaterialData.friction(m_material); | ||
1419 | } | ||
1420 | |||
1421 | if (m_bounce != SOPMaterialData.bounce(m_material)) | ||
1422 | { | ||
1423 | update = true; | ||
1424 | m_bounce = SOPMaterialData.bounce(m_material); | ||
1425 | } | ||
1426 | |||
1427 | if (update) | ||
1428 | { | ||
1429 | if (PhysActor != null) | ||
1430 | { | ||
1431 | PhysActor.SetMaterial((int)value); | ||
1432 | } | ||
1433 | if(ParentGroup != null) | ||
1434 | ParentGroup.HasGroupChanged = true; | ||
1435 | ScheduleFullUpdateIfNone(); | ||
1436 | UpdatePhysRequired = true; | ||
1437 | } | ||
1438 | } | ||
1439 | } | ||
1440 | } | ||
1441 | |||
1442 | // not a propriety to move to methods place later | ||
1443 | private bool HasMesh() | ||
1444 | { | ||
1445 | if (Shape != null && (Shape.SculptType == (byte)SculptType.Mesh)) | ||
1446 | return true; | ||
1447 | return false; | ||
1448 | } | ||
1449 | |||
1450 | // not a propriety to move to methods place later | ||
1451 | public byte DefaultPhysicsShapeType() | ||
1452 | { | ||
1453 | byte type; | ||
1454 | |||
1455 | if (Shape != null && (Shape.SculptType == (byte)SculptType.Mesh)) | ||
1456 | type = (byte)PhysShapeType.convex; | ||
1457 | else | ||
1458 | type = (byte)PhysShapeType.prim; | ||
1459 | |||
1460 | return type; | ||
1461 | } | ||
1462 | |||
1463 | [XmlIgnore] | ||
1464 | public bool UsesComplexCost | ||
1465 | { | ||
1466 | get | ||
1467 | { | ||
1468 | byte pst = PhysicsShapeType; | ||
1469 | if(pst == (byte) PhysShapeType.none || pst == (byte) PhysShapeType.convex || HasMesh()) | ||
1470 | return true; | ||
1471 | return false; | ||
1472 | } | ||
1473 | } | ||
1474 | |||
1475 | [XmlIgnore] | ||
1476 | public float PhysicsCost | ||
1477 | { | ||
1478 | get | ||
1479 | { | ||
1480 | if(PhysicsShapeType == (byte)PhysShapeType.none) | ||
1481 | return 0; | ||
1482 | |||
1483 | float cost = 0.1f; | ||
1484 | if (PhysActor != null) | ||
1485 | // cost += PhysActor.Cost; | ||
1486 | |||
1487 | if ((Flags & PrimFlags.Physics) != 0) | ||
1488 | cost *= (1.0f + 0.01333f * Scale.LengthSquared()); // 0.01333 == 0.04/3 | ||
1489 | return cost; | ||
1490 | } | ||
1491 | } | ||
1492 | |||
1493 | [XmlIgnore] | ||
1494 | public float StreamingCost | ||
1495 | { | ||
1496 | get | ||
1497 | { | ||
1498 | |||
1499 | |||
1500 | return 0.1f; | ||
1501 | } | ||
1502 | } | ||
1503 | |||
1504 | [XmlIgnore] | ||
1505 | public float SimulationCost | ||
1506 | { | ||
1507 | get | ||
1508 | { | ||
1509 | // ignoring scripts. Don't like considering them for this | ||
1510 | if((Flags & PrimFlags.Physics) != 0) | ||
1511 | return 1.0f; | ||
1512 | |||
1513 | return 0.5f; | ||
1514 | } | ||
1515 | } | ||
1516 | |||
1517 | public byte PhysicsShapeType | ||
1518 | { | ||
1519 | get { return m_physicsShapeType; } | ||
1520 | set | ||
1521 | { | ||
1522 | byte oldv = m_physicsShapeType; | ||
1523 | |||
1524 | if (value >= 0 && value <= (byte)PhysShapeType.convex) | ||
1525 | { | ||
1526 | if (value == (byte)PhysShapeType.none && ParentGroup != null && ParentGroup.RootPart == this) | ||
1527 | m_physicsShapeType = DefaultPhysicsShapeType(); | ||
1528 | else | ||
1529 | m_physicsShapeType = value; | ||
1530 | } | ||
1531 | else | ||
1532 | m_physicsShapeType = DefaultPhysicsShapeType(); | ||
1533 | |||
1534 | if (m_physicsShapeType != oldv && ParentGroup != null) | ||
1535 | { | ||
1536 | if (m_physicsShapeType == (byte)PhysShapeType.none) | ||
1537 | { | ||
1538 | if (PhysActor != null) | ||
1539 | { | ||
1540 | Velocity = new Vector3(0, 0, 0); | ||
1541 | Acceleration = new Vector3(0, 0, 0); | ||
1542 | if (ParentGroup.RootPart == this) | ||
1543 | AngularVelocity = new Vector3(0, 0, 0); | ||
1544 | ParentGroup.Scene.RemovePhysicalPrim(1); | ||
1545 | RemoveFromPhysics(); | ||
1546 | } | ||
1547 | } | ||
1548 | else if (PhysActor == null) | ||
1549 | ApplyPhysics((uint)Flags, VolumeDetectActive, false); | ||
1550 | else | ||
1551 | { | ||
1552 | PhysActor.PhysicsShapeType = m_physicsShapeType; | ||
1553 | if (Shape.SculptEntry) | ||
1554 | CheckSculptAndLoad(); | ||
1555 | } | ||
1556 | |||
1557 | if (ParentGroup != null) | ||
1558 | ParentGroup.HasGroupChanged = true; | ||
1559 | } | ||
1560 | |||
1561 | if (m_physicsShapeType != value) | ||
1562 | { | ||
1563 | UpdatePhysRequired = true; | ||
1564 | } | ||
1565 | } | ||
1566 | } | ||
1567 | |||
1568 | public float Density // in kg/m^3 | ||
1569 | { | ||
1570 | get { return m_density; } | ||
1571 | set | ||
1572 | { | ||
1573 | if (value >=1 && value <= 22587.0) | ||
1574 | { | ||
1575 | m_density = value; | ||
1576 | UpdatePhysRequired = true; | ||
1577 | } | ||
1578 | |||
1579 | ScheduleFullUpdateIfNone(); | ||
1580 | |||
1581 | if (ParentGroup != null) | ||
1582 | ParentGroup.HasGroupChanged = true; | ||
1583 | } | ||
1584 | } | ||
1585 | |||
1586 | public float GravityModifier | ||
1587 | { | ||
1588 | get { return m_gravitymod; } | ||
1589 | set | ||
1590 | { | ||
1591 | if( value >= -1 && value <=28.0f) | ||
1592 | { | ||
1593 | m_gravitymod = value; | ||
1594 | UpdatePhysRequired = true; | ||
1595 | } | ||
1596 | |||
1597 | ScheduleFullUpdateIfNone(); | ||
1598 | |||
1599 | if (ParentGroup != null) | ||
1600 | ParentGroup.HasGroupChanged = true; | ||
1601 | |||
1602 | } | ||
1603 | } | ||
1604 | |||
1605 | public float Friction | ||
1606 | { | ||
1607 | get { return m_friction; } | ||
1608 | set | ||
1609 | { | ||
1610 | if (value >= 0 && value <= 255.0f) | ||
1611 | { | ||
1612 | m_friction = value; | ||
1613 | UpdatePhysRequired = true; | ||
1614 | } | ||
1615 | |||
1616 | ScheduleFullUpdateIfNone(); | ||
1617 | |||
1618 | if (ParentGroup != null) | ||
1619 | ParentGroup.HasGroupChanged = true; | ||
1620 | } | ||
1621 | } | ||
1622 | |||
1623 | public float Bounciness | ||
1624 | { | ||
1625 | get { return m_bounce; } | ||
1626 | set | ||
1627 | { | ||
1628 | if (value >= 0 && value <= 1.0f) | ||
1629 | { | ||
1630 | m_bounce = value; | ||
1631 | UpdatePhysRequired = true; | ||
1632 | } | ||
1633 | |||
1634 | ScheduleFullUpdateIfNone(); | ||
1635 | |||
1636 | if (ParentGroup != null) | ||
1637 | ParentGroup.HasGroupChanged = true; | ||
1638 | } | ||
1639 | } | ||
1640 | |||
1641 | |||
1270 | #endregion Public Properties with only Get | 1642 | #endregion Public Properties with only Get |
1271 | 1643 | ||
1272 | private uint ApplyMask(uint val, bool set, uint mask) | 1644 | private uint ApplyMask(uint val, bool set, uint mask) |
@@ -1432,7 +1804,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1432 | impulse = newimpulse; | 1804 | impulse = newimpulse; |
1433 | } | 1805 | } |
1434 | 1806 | ||
1435 | ParentGroup.applyAngularImpulse(impulse); | 1807 | ParentGroup.ApplyAngularImpulse(impulse); |
1436 | } | 1808 | } |
1437 | 1809 | ||
1438 | /// <summary> | 1810 | /// <summary> |
@@ -1442,20 +1814,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
1442 | /// </summary> | 1814 | /// </summary> |
1443 | /// <param name="impulsei">Vector force</param> | 1815 | /// <param name="impulsei">Vector force</param> |
1444 | /// <param name="localGlobalTF">true for the local frame, false for the global frame</param> | 1816 | /// <param name="localGlobalTF">true for the local frame, false for the global frame</param> |
1445 | public void SetAngularImpulse(Vector3 impulsei, bool localGlobalTF) | 1817 | |
1818 | // this is actualy Set Torque.. keeping naming so not to edit lslapi also | ||
1819 | public void SetAngularImpulse(Vector3 torquei, bool localGlobalTF) | ||
1446 | { | 1820 | { |
1447 | Vector3 impulse = impulsei; | 1821 | Vector3 torque = torquei; |
1448 | 1822 | ||
1449 | if (localGlobalTF) | 1823 | if (localGlobalTF) |
1450 | { | 1824 | { |
1825 | /* | ||
1451 | Quaternion grot = GetWorldRotation(); | 1826 | Quaternion grot = GetWorldRotation(); |
1452 | Quaternion AXgrot = grot; | 1827 | Quaternion AXgrot = grot; |
1453 | Vector3 AXimpulsei = impulsei; | 1828 | Vector3 AXimpulsei = impulsei; |
1454 | Vector3 newimpulse = AXimpulsei * AXgrot; | 1829 | Vector3 newimpulse = AXimpulsei * AXgrot; |
1455 | impulse = newimpulse; | 1830 | */ |
1831 | torque *= GetWorldRotation(); | ||
1456 | } | 1832 | } |
1457 | 1833 | ||
1458 | ParentGroup.setAngularImpulse(impulse); | 1834 | Torque = torque; |
1459 | } | 1835 | } |
1460 | 1836 | ||
1461 | /// <summary> | 1837 | /// <summary> |
@@ -1463,17 +1839,23 @@ namespace OpenSim.Region.Framework.Scenes | |||
1463 | /// </summary> | 1839 | /// </summary> |
1464 | /// <param name="rootObjectFlags"></param> | 1840 | /// <param name="rootObjectFlags"></param> |
1465 | /// <param name="VolumeDetectActive"></param> | 1841 | /// <param name="VolumeDetectActive"></param> |
1466 | public void ApplyPhysics(uint rootObjectFlags, bool VolumeDetectActive) | 1842 | /// <param name="building"></param> |
1843 | |||
1844 | public void ApplyPhysics(uint _ObjectFlags, bool _VolumeDetectActive, bool building) | ||
1467 | { | 1845 | { |
1846 | VolumeDetectActive = _VolumeDetectActive; | ||
1847 | |||
1468 | if (!ParentGroup.Scene.CollidablePrims) | 1848 | if (!ParentGroup.Scene.CollidablePrims) |
1469 | return; | 1849 | return; |
1470 | 1850 | ||
1471 | // m_log.DebugFormat( | 1851 | if (PhysicsShapeType == (byte)PhysShapeType.none) |
1472 | // "[SCENE OBJECT PART]: Applying physics to {0} {1}, m_physicalPrim {2}", | 1852 | return; |
1473 | // Name, LocalId, UUID, m_physicalPrim); | 1853 | |
1854 | bool isPhysical = (_ObjectFlags & (uint) PrimFlags.Physics) != 0; | ||
1855 | bool isPhantom = (_ObjectFlags & (uint)PrimFlags.Phantom) != 0; | ||
1474 | 1856 | ||
1475 | bool isPhysical = (rootObjectFlags & (uint) PrimFlags.Physics) != 0; | 1857 | if (_VolumeDetectActive) |
1476 | bool isPhantom = (rootObjectFlags & (uint) PrimFlags.Phantom) != 0; | 1858 | isPhantom = true; |
1477 | 1859 | ||
1478 | if (IsJoint()) | 1860 | if (IsJoint()) |
1479 | { | 1861 | { |
@@ -1481,22 +1863,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1481 | } | 1863 | } |
1482 | else | 1864 | else |
1483 | { | 1865 | { |
1484 | // Special case for VolumeDetection: If VolumeDetection is set, the phantom flag is locally ignored | 1866 | if ((!isPhantom || isPhysical || _VolumeDetectActive) && !ParentGroup.IsAttachment |
1485 | if (VolumeDetectActive) | 1867 | && !(Shape.PathCurve == (byte)Extrusion.Flexible)) |
1486 | isPhantom = false; | 1868 | AddToPhysics(isPhysical, isPhantom, building, true); |
1487 | 1869 | else | |
1488 | // The only time the physics scene shouldn't know about the prim is if it's phantom or an attachment, which is phantom by definition | 1870 | PhysActor = null; // just to be sure |
1489 | // or flexible | ||
1490 | if (!isPhantom && !ParentGroup.IsAttachment && !(Shape.PathCurve == (byte)Extrusion.Flexible)) | ||
1491 | { | ||
1492 | // Added clarification.. since A rigid body is an object that you can kick around, etc. | ||
1493 | bool rigidBody = isPhysical && !isPhantom; | ||
1494 | |||
1495 | PhysicsActor pa = AddToPhysics(rigidBody); | ||
1496 | |||
1497 | if (pa != null) | ||
1498 | pa.SetVolumeDetect(VolumeDetectActive ? 1 : 0); | ||
1499 | } | ||
1500 | } | 1871 | } |
1501 | } | 1872 | } |
1502 | 1873 | ||
@@ -1548,6 +1919,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1548 | dupe.Category = Category; | 1919 | dupe.Category = Category; |
1549 | dupe.m_rezzed = m_rezzed; | 1920 | dupe.m_rezzed = m_rezzed; |
1550 | 1921 | ||
1922 | dupe.m_UndoRedo = null; | ||
1923 | dupe.m_isSelected = false; | ||
1924 | |||
1925 | dupe.IgnoreUndoUpdate = false; | ||
1926 | dupe.Undoing = false; | ||
1927 | |||
1551 | dupe.m_inventory = new SceneObjectPartInventory(dupe); | 1928 | dupe.m_inventory = new SceneObjectPartInventory(dupe); |
1552 | dupe.m_inventory.Items = (TaskInventoryDictionary)m_inventory.Items.Clone(); | 1929 | dupe.m_inventory.Items = (TaskInventoryDictionary)m_inventory.Items.Clone(); |
1553 | 1930 | ||
@@ -1563,6 +1940,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1563 | 1940 | ||
1564 | // Move afterwards ResetIDs as it clears the localID | 1941 | // Move afterwards ResetIDs as it clears the localID |
1565 | dupe.LocalId = localID; | 1942 | dupe.LocalId = localID; |
1943 | |||
1566 | // This may be wrong... it might have to be applied in SceneObjectGroup to the object that's being duplicated. | 1944 | // This may be wrong... it might have to be applied in SceneObjectGroup to the object that's being duplicated. |
1567 | dupe.LastOwnerID = OwnerID; | 1945 | dupe.LastOwnerID = OwnerID; |
1568 | 1946 | ||
@@ -1582,6 +1960,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1582 | dupe.DoPhysicsPropertyUpdate(UsePhysics, true); | 1960 | dupe.DoPhysicsPropertyUpdate(UsePhysics, true); |
1583 | } | 1961 | } |
1584 | 1962 | ||
1963 | if (dupe.PhysActor != null) | ||
1964 | dupe.PhysActor.LocalID = localID; | ||
1965 | |||
1585 | ParentGroup.Scene.EventManager.TriggerOnSceneObjectPartCopy(dupe, this, userExposed); | 1966 | ParentGroup.Scene.EventManager.TriggerOnSceneObjectPartCopy(dupe, this, userExposed); |
1586 | 1967 | ||
1587 | // m_log.DebugFormat("[SCENE OBJECT PART]: Clone of {0} {1} finished", Name, UUID); | 1968 | // m_log.DebugFormat("[SCENE OBJECT PART]: Clone of {0} {1} finished", Name, UUID); |
@@ -1701,6 +2082,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1701 | 2082 | ||
1702 | /// <summary> | 2083 | /// <summary> |
1703 | /// Do a physics propery update for this part. | 2084 | /// Do a physics propery update for this part. |
2085 | /// now also updates phantom and volume detector | ||
1704 | /// </summary> | 2086 | /// </summary> |
1705 | /// <param name="UsePhysics"></param> | 2087 | /// <param name="UsePhysics"></param> |
1706 | /// <param name="isNew"></param> | 2088 | /// <param name="isNew"></param> |
@@ -1726,61 +2108,69 @@ namespace OpenSim.Region.Framework.Scenes | |||
1726 | { | 2108 | { |
1727 | if (pa.IsPhysical) // implies UsePhysics==false for this block | 2109 | if (pa.IsPhysical) // implies UsePhysics==false for this block |
1728 | { | 2110 | { |
1729 | if (!isNew) | 2111 | if (!isNew) // implies UsePhysics==false for this block |
2112 | { | ||
1730 | ParentGroup.Scene.RemovePhysicalPrim(1); | 2113 | ParentGroup.Scene.RemovePhysicalPrim(1); |
1731 | 2114 | ||
1732 | pa.OnRequestTerseUpdate -= PhysicsRequestingTerseUpdate; | 2115 | Velocity = new Vector3(0, 0, 0); |
1733 | pa.OnOutOfBounds -= PhysicsOutOfBounds; | 2116 | Acceleration = new Vector3(0, 0, 0); |
1734 | pa.delink(); | 2117 | if (ParentGroup.RootPart == this) |
2118 | AngularVelocity = new Vector3(0, 0, 0); | ||
1735 | 2119 | ||
1736 | if (ParentGroup.Scene.PhysicsScene.SupportsNINJAJoints && (!isNew)) | 2120 | if (pa.Phantom && !VolumeDetectActive) |
1737 | { | 2121 | { |
1738 | // destroy all joints connected to this now deactivated body | 2122 | RemoveFromPhysics(); |
1739 | ParentGroup.Scene.PhysicsScene.RemoveAllJointsConnectedToActorThreadLocked(pa); | 2123 | return; |
1740 | } | 2124 | } |
1741 | 2125 | ||
1742 | // stop client-side interpolation of all joint proxy objects that have just been deleted | 2126 | pa.IsPhysical = UsePhysics; |
1743 | // this is done because RemoveAllJointsConnectedToActor invokes the OnJointDeactivated callback, | 2127 | pa.OnRequestTerseUpdate -= PhysicsRequestingTerseUpdate; |
1744 | // which stops client-side interpolation of deactivated joint proxy objects. | 2128 | pa.OnOutOfBounds -= PhysicsOutOfBounds; |
2129 | pa.delink(); | ||
2130 | if (ParentGroup.Scene.PhysicsScene.SupportsNINJAJoints) | ||
2131 | { | ||
2132 | // destroy all joints connected to this now deactivated body | ||
2133 | ParentGroup.Scene.PhysicsScene.RemoveAllJointsConnectedToActorThreadLocked(pa); | ||
2134 | } | ||
2135 | } | ||
1745 | } | 2136 | } |
1746 | 2137 | ||
1747 | if (!UsePhysics && !isNew) | 2138 | if (pa.IsPhysical != UsePhysics) |
1748 | { | 2139 | pa.IsPhysical = UsePhysics; |
1749 | // reset velocity to 0 on physics switch-off. Without that, the client thinks the | ||
1750 | // prim still has velocity and continues to interpolate its position along the old | ||
1751 | // velocity-vector. | ||
1752 | Velocity = new Vector3(0, 0, 0); | ||
1753 | Acceleration = new Vector3(0, 0, 0); | ||
1754 | AngularVelocity = new Vector3(0, 0, 0); | ||
1755 | //RotationalVelocity = new Vector3(0, 0, 0); | ||
1756 | } | ||
1757 | 2140 | ||
1758 | pa.IsPhysical = UsePhysics; | 2141 | if (UsePhysics) |
2142 | { | ||
2143 | if (ParentGroup.RootPart.KeyframeMotion != null) | ||
2144 | ParentGroup.RootPart.KeyframeMotion.Stop(); | ||
2145 | ParentGroup.RootPart.KeyframeMotion = null; | ||
2146 | ParentGroup.Scene.AddPhysicalPrim(1); | ||
1759 | 2147 | ||
1760 | // If we're not what we're supposed to be in the physics scene, recreate ourselves. | 2148 | PhysActor.OnRequestTerseUpdate += PhysicsRequestingTerseUpdate; |
1761 | //m_parentGroup.Scene.PhysicsScene.RemovePrim(PhysActor); | 2149 | PhysActor.OnOutOfBounds += PhysicsOutOfBounds; |
1762 | /// that's not wholesome. Had to make Scene public | ||
1763 | //PhysActor = null; | ||
1764 | 2150 | ||
1765 | if ((Flags & PrimFlags.Phantom) == 0) | 2151 | if (ParentID != 0 && ParentID != LocalId) |
1766 | { | ||
1767 | if (UsePhysics) | ||
1768 | { | 2152 | { |
1769 | ParentGroup.Scene.AddPhysicalPrim(1); | 2153 | PhysicsActor parentPa = ParentGroup.RootPart.PhysActor; |
1770 | 2154 | ||
1771 | pa.OnRequestTerseUpdate += PhysicsRequestingTerseUpdate; | 2155 | if (parentPa != null) |
1772 | pa.OnOutOfBounds += PhysicsOutOfBounds; | ||
1773 | if (ParentID != 0 && ParentID != LocalId) | ||
1774 | { | 2156 | { |
1775 | PhysicsActor parentPa = ParentGroup.RootPart.PhysActor; | 2157 | pa.link(parentPa); |
1776 | |||
1777 | if (parentPa != null) | ||
1778 | { | ||
1779 | pa.link(parentPa); | ||
1780 | } | ||
1781 | } | 2158 | } |
1782 | } | 2159 | } |
1783 | } | 2160 | } |
2161 | } | ||
2162 | |||
2163 | bool phan = ((Flags & PrimFlags.Phantom) != 0); | ||
2164 | if (pa.Phantom != phan) | ||
2165 | pa.Phantom = phan; | ||
2166 | |||
2167 | // some engines dont' have this check still | ||
2168 | // if (VolumeDetectActive != pa.IsVolumeDtc) | ||
2169 | { | ||
2170 | if (VolumeDetectActive) | ||
2171 | pa.SetVolumeDetect(1); | ||
2172 | else | ||
2173 | pa.SetVolumeDetect(0); | ||
1784 | } | 2174 | } |
1785 | 2175 | ||
1786 | // If this part is a sculpt then delay the physics update until we've asynchronously loaded the | 2176 | // If this part is a sculpt then delay the physics update until we've asynchronously loaded the |
@@ -1899,15 +2289,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
1899 | 2289 | ||
1900 | public Vector3 GetGeometricCenter() | 2290 | public Vector3 GetGeometricCenter() |
1901 | { | 2291 | { |
1902 | PhysicsActor pa = PhysActor; | 2292 | // this is not real geometric center but a average of positions relative to root prim acording to |
1903 | 2293 | // http://wiki.secondlife.com/wiki/llGetGeometricCenter | |
1904 | if (pa != null) | 2294 | // ignoring tortured prims details since sl also seems to ignore |
1905 | return new Vector3(pa.CenterOfMass.X, pa.CenterOfMass.Y, pa.CenterOfMass.Z); | 2295 | // so no real use in doing it on physics |
1906 | else | 2296 | if (ParentGroup.IsDeleted) |
1907 | return new Vector3(0, 0, 0); | 2297 | return new Vector3(0, 0, 0); |
2298 | |||
2299 | return ParentGroup.GetGeometricCenter(); | ||
2300 | |||
2301 | /* | ||
2302 | PhysicsActor pa = PhysActor; | ||
2303 | |||
2304 | if (pa != null) | ||
2305 | { | ||
2306 | Vector3 vtmp = pa.CenterOfMass; | ||
2307 | return vtmp; | ||
2308 | } | ||
2309 | else | ||
2310 | return new Vector3(0, 0, 0); | ||
2311 | */ | ||
1908 | } | 2312 | } |
1909 | 2313 | ||
1910 | public float GetMass() | 2314 | public float GetMass() |
1911 | { | 2315 | { |
1912 | PhysicsActor pa = PhysActor; | 2316 | PhysicsActor pa = PhysActor; |
1913 | 2317 | ||
@@ -1919,12 +2323,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1919 | 2323 | ||
1920 | public Vector3 GetForce() | 2324 | public Vector3 GetForce() |
1921 | { | 2325 | { |
1922 | PhysicsActor pa = PhysActor; | 2326 | return Force; |
1923 | |||
1924 | if (pa != null) | ||
1925 | return pa.Force; | ||
1926 | else | ||
1927 | return Vector3.Zero; | ||
1928 | } | 2327 | } |
1929 | 2328 | ||
1930 | /// <summary> | 2329 | /// <summary> |
@@ -2560,9 +2959,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
2560 | Vector3 newpos = new Vector3(pa.Position.GetBytes(), 0); | 2959 | Vector3 newpos = new Vector3(pa.Position.GetBytes(), 0); |
2561 | 2960 | ||
2562 | if (ParentGroup.Scene.TestBorderCross(newpos, Cardinals.N) | 2961 | if (ParentGroup.Scene.TestBorderCross(newpos, Cardinals.N) |
2563 | | ParentGroup.Scene.TestBorderCross(newpos, Cardinals.S) | 2962 | || ParentGroup.Scene.TestBorderCross(newpos, Cardinals.S) |
2564 | | ParentGroup.Scene.TestBorderCross(newpos, Cardinals.E) | 2963 | || ParentGroup.Scene.TestBorderCross(newpos, Cardinals.E) |
2565 | | ParentGroup.Scene.TestBorderCross(newpos, Cardinals.W)) | 2964 | || ParentGroup.Scene.TestBorderCross(newpos, Cardinals.W)) |
2566 | { | 2965 | { |
2567 | ParentGroup.AbsolutePosition = newpos; | 2966 | ParentGroup.AbsolutePosition = newpos; |
2568 | return; | 2967 | return; |
@@ -2584,17 +2983,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
2584 | //Trys to fetch sound id from prim's inventory. | 2983 | //Trys to fetch sound id from prim's inventory. |
2585 | //Prim's inventory doesn't support non script items yet | 2984 | //Prim's inventory doesn't support non script items yet |
2586 | 2985 | ||
2587 | lock (TaskInventory) | 2986 | TaskInventory.LockItemsForRead(true); |
2987 | |||
2988 | foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) | ||
2588 | { | 2989 | { |
2589 | foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) | 2990 | if (item.Value.Name == sound) |
2590 | { | 2991 | { |
2591 | if (item.Value.Name == sound) | 2992 | soundID = item.Value.ItemID; |
2592 | { | 2993 | break; |
2593 | soundID = item.Value.ItemID; | ||
2594 | break; | ||
2595 | } | ||
2596 | } | 2994 | } |
2597 | } | 2995 | } |
2996 | |||
2997 | TaskInventory.LockItemsForRead(false); | ||
2598 | } | 2998 | } |
2599 | 2999 | ||
2600 | ParentGroup.Scene.ForEachRootScenePresence(delegate(ScenePresence sp) | 3000 | ParentGroup.Scene.ForEachRootScenePresence(delegate(ScenePresence sp) |
@@ -2717,6 +3117,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
2717 | APIDTarget = Quaternion.Identity; | 3117 | APIDTarget = Quaternion.Identity; |
2718 | } | 3118 | } |
2719 | 3119 | ||
3120 | |||
3121 | |||
3122 | public void ScheduleFullUpdateIfNone() | ||
3123 | { | ||
3124 | if (ParentGroup == null) | ||
3125 | return; | ||
3126 | |||
3127 | // ??? ParentGroup.HasGroupChanged = true; | ||
3128 | |||
3129 | if (UpdateFlag != UpdateRequired.FULL) | ||
3130 | ScheduleFullUpdate(); | ||
3131 | } | ||
3132 | |||
2720 | /// <summary> | 3133 | /// <summary> |
2721 | /// Schedules this prim for a full update | 3134 | /// Schedules this prim for a full update |
2722 | /// </summary> | 3135 | /// </summary> |
@@ -2918,8 +3331,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2918 | { | 3331 | { |
2919 | const float ROTATION_TOLERANCE = 0.01f; | 3332 | const float ROTATION_TOLERANCE = 0.01f; |
2920 | const float VELOCITY_TOLERANCE = 0.001f; | 3333 | const float VELOCITY_TOLERANCE = 0.001f; |
2921 | const float POSITION_TOLERANCE = 0.05f; | 3334 | const float POSITION_TOLERANCE = 0.05f; // I don't like this, but I suppose it's necessary |
2922 | const int TIME_MS_TOLERANCE = 3000; | 3335 | const int TIME_MS_TOLERANCE = 200; //llSetPos has a 200ms delay. This should NOT be 3 seconds. |
2923 | 3336 | ||
2924 | switch (UpdateFlag) | 3337 | switch (UpdateFlag) |
2925 | { | 3338 | { |
@@ -2981,17 +3394,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
2981 | if (!UUID.TryParse(sound, out soundID)) | 3394 | if (!UUID.TryParse(sound, out soundID)) |
2982 | { | 3395 | { |
2983 | // search sound file from inventory | 3396 | // search sound file from inventory |
2984 | lock (TaskInventory) | 3397 | TaskInventory.LockItemsForRead(true); |
3398 | foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) | ||
2985 | { | 3399 | { |
2986 | foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) | 3400 | if (item.Value.Name == sound && item.Value.Type == (int)AssetType.Sound) |
2987 | { | 3401 | { |
2988 | if (item.Value.Name == sound && item.Value.Type == (int)AssetType.Sound) | 3402 | soundID = item.Value.ItemID; |
2989 | { | 3403 | break; |
2990 | soundID = item.Value.ItemID; | ||
2991 | break; | ||
2992 | } | ||
2993 | } | 3404 | } |
2994 | } | 3405 | } |
3406 | TaskInventory.LockItemsForRead(false); | ||
2995 | } | 3407 | } |
2996 | 3408 | ||
2997 | if (soundID == UUID.Zero) | 3409 | if (soundID == UUID.Zero) |
@@ -3076,10 +3488,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
3076 | 3488 | ||
3077 | public void SetBuoyancy(float fvalue) | 3489 | public void SetBuoyancy(float fvalue) |
3078 | { | 3490 | { |
3079 | PhysicsActor pa = PhysActor; | 3491 | Buoyancy = fvalue; |
3080 | 3492 | /* | |
3081 | if (pa != null) | 3493 | if (PhysActor != null) |
3082 | pa.Buoyancy = fvalue; | 3494 | { |
3495 | PhysActor.Buoyancy = fvalue; | ||
3496 | } | ||
3497 | */ | ||
3083 | } | 3498 | } |
3084 | 3499 | ||
3085 | public void SetDieAtEdge(bool p) | 3500 | public void SetDieAtEdge(bool p) |
@@ -3095,47 +3510,111 @@ namespace OpenSim.Region.Framework.Scenes | |||
3095 | PhysicsActor pa = PhysActor; | 3510 | PhysicsActor pa = PhysActor; |
3096 | 3511 | ||
3097 | if (pa != null) | 3512 | if (pa != null) |
3098 | pa.FloatOnWater = floatYN == 1; | 3513 | pa.FloatOnWater = (floatYN == 1); |
3099 | } | 3514 | } |
3100 | 3515 | ||
3101 | public void SetForce(Vector3 force) | 3516 | public void SetForce(Vector3 force) |
3102 | { | 3517 | { |
3103 | PhysicsActor pa = PhysActor; | 3518 | Force = force; |
3519 | } | ||
3104 | 3520 | ||
3105 | if (pa != null) | 3521 | public SOPVehicle sopVehicle |
3106 | pa.Force = force; | 3522 | { |
3523 | get | ||
3524 | { | ||
3525 | return m_vehicle; | ||
3526 | } | ||
3527 | set | ||
3528 | { | ||
3529 | m_vehicle = value; | ||
3530 | } | ||
3531 | } | ||
3532 | |||
3533 | |||
3534 | public int VehicleType | ||
3535 | { | ||
3536 | get | ||
3537 | { | ||
3538 | if (m_vehicle == null) | ||
3539 | return (int)Vehicle.TYPE_NONE; | ||
3540 | else | ||
3541 | return (int)m_vehicle.Type; | ||
3542 | } | ||
3543 | set | ||
3544 | { | ||
3545 | SetVehicleType(value); | ||
3546 | } | ||
3107 | } | 3547 | } |
3108 | 3548 | ||
3109 | public void SetVehicleType(int type) | 3549 | public void SetVehicleType(int type) |
3110 | { | 3550 | { |
3111 | PhysicsActor pa = PhysActor; | 3551 | m_vehicle = null; |
3552 | |||
3553 | if (type == (int)Vehicle.TYPE_NONE) | ||
3554 | { | ||
3555 | if (_parentID ==0 && PhysActor != null) | ||
3556 | PhysActor.VehicleType = (int)Vehicle.TYPE_NONE; | ||
3557 | return; | ||
3558 | } | ||
3559 | m_vehicle = new SOPVehicle(); | ||
3560 | m_vehicle.ProcessTypeChange((Vehicle)type); | ||
3561 | { | ||
3562 | if (_parentID ==0 && PhysActor != null) | ||
3563 | PhysActor.VehicleType = type; | ||
3564 | return; | ||
3565 | } | ||
3566 | } | ||
3112 | 3567 | ||
3113 | if (pa != null) | 3568 | public void SetVehicleFlags(int param, bool remove) |
3114 | pa.VehicleType = type; | 3569 | { |
3570 | if (m_vehicle == null) | ||
3571 | return; | ||
3572 | |||
3573 | m_vehicle.ProcessVehicleFlags(param, remove); | ||
3574 | |||
3575 | if (_parentID ==0 && PhysActor != null) | ||
3576 | { | ||
3577 | PhysActor.VehicleFlags(param, remove); | ||
3578 | } | ||
3115 | } | 3579 | } |
3116 | 3580 | ||
3117 | public void SetVehicleFloatParam(int param, float value) | 3581 | public void SetVehicleFloatParam(int param, float value) |
3118 | { | 3582 | { |
3119 | PhysicsActor pa = PhysActor; | 3583 | if (m_vehicle == null) |
3584 | return; | ||
3120 | 3585 | ||
3121 | if (pa != null) | 3586 | m_vehicle.ProcessFloatVehicleParam((Vehicle)param, value); |
3122 | pa.VehicleFloatParam(param, value); | 3587 | |
3588 | if (_parentID == 0 && PhysActor != null) | ||
3589 | { | ||
3590 | PhysActor.VehicleFloatParam(param, value); | ||
3591 | } | ||
3123 | } | 3592 | } |
3124 | 3593 | ||
3125 | public void SetVehicleVectorParam(int param, Vector3 value) | 3594 | public void SetVehicleVectorParam(int param, Vector3 value) |
3126 | { | 3595 | { |
3127 | PhysicsActor pa = PhysActor; | 3596 | if (m_vehicle == null) |
3597 | return; | ||
3128 | 3598 | ||
3129 | if (pa != null) | 3599 | m_vehicle.ProcessVectorVehicleParam((Vehicle)param, value); |
3130 | pa.VehicleVectorParam(param, value); | 3600 | |
3601 | if (_parentID == 0 && PhysActor != null) | ||
3602 | { | ||
3603 | PhysActor.VehicleVectorParam(param, value); | ||
3604 | } | ||
3131 | } | 3605 | } |
3132 | 3606 | ||
3133 | public void SetVehicleRotationParam(int param, Quaternion rotation) | 3607 | public void SetVehicleRotationParam(int param, Quaternion rotation) |
3134 | { | 3608 | { |
3135 | PhysicsActor pa = PhysActor; | 3609 | if (m_vehicle == null) |
3610 | return; | ||
3136 | 3611 | ||
3137 | if (pa != null) | 3612 | m_vehicle.ProcessRotationVehicleParam((Vehicle)param, rotation); |
3138 | pa.VehicleRotationParam(param, rotation); | 3613 | |
3614 | if (_parentID == 0 && PhysActor != null) | ||
3615 | { | ||
3616 | PhysActor.VehicleRotationParam(param, rotation); | ||
3617 | } | ||
3139 | } | 3618 | } |
3140 | 3619 | ||
3141 | /// <summary> | 3620 | /// <summary> |
@@ -3319,13 +3798,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
3319 | hasProfileCut = hasDimple; // is it the same thing? | 3798 | hasProfileCut = hasDimple; // is it the same thing? |
3320 | } | 3799 | } |
3321 | 3800 | ||
3322 | public void SetVehicleFlags(int param, bool remove) | ||
3323 | { | ||
3324 | if (PhysActor != null) | ||
3325 | { | ||
3326 | PhysActor.VehicleFlags(param, remove); | ||
3327 | } | ||
3328 | } | ||
3329 | 3801 | ||
3330 | public void SetGroup(UUID groupID, IClientAPI client) | 3802 | public void SetGroup(UUID groupID, IClientAPI client) |
3331 | { | 3803 | { |
@@ -3428,68 +3900,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
3428 | //ParentGroup.ScheduleGroupForFullUpdate(); | 3900 | //ParentGroup.ScheduleGroupForFullUpdate(); |
3429 | } | 3901 | } |
3430 | 3902 | ||
3431 | public void StoreUndoState() | 3903 | public void StoreUndoState(ObjectChangeType change) |
3432 | { | 3904 | { |
3433 | StoreUndoState(false); | 3905 | if (m_UndoRedo == null) |
3434 | } | 3906 | m_UndoRedo = new UndoRedoState(5); |
3435 | 3907 | ||
3436 | public void StoreUndoState(bool forGroup) | 3908 | lock (m_UndoRedo) |
3437 | { | ||
3438 | if (!Undoing) | ||
3439 | { | 3909 | { |
3440 | if (!IgnoreUndoUpdate) | 3910 | if (!Undoing && !IgnoreUndoUpdate && ParentGroup != null) // just to read better - undo is in progress, or suspended |
3441 | { | 3911 | { |
3442 | if (ParentGroup != null) | 3912 | m_UndoRedo.StoreUndo(this, change); |
3443 | { | ||
3444 | lock (m_undo) | ||
3445 | { | ||
3446 | if (m_undo.Count > 0) | ||
3447 | { | ||
3448 | UndoState last = m_undo.Peek(); | ||
3449 | if (last != null) | ||
3450 | { | ||
3451 | // TODO: May need to fix for group comparison | ||
3452 | if (last.Compare(this)) | ||
3453 | { | ||
3454 | // m_log.DebugFormat( | ||
3455 | // "[SCENE OBJECT PART]: Not storing undo for {0} {1} since current state is same as last undo state, initial stack size {2}", | ||
3456 | // Name, LocalId, m_undo.Count); | ||
3457 | |||
3458 | return; | ||
3459 | } | ||
3460 | } | ||
3461 | } | ||
3462 | |||
3463 | // m_log.DebugFormat( | ||
3464 | // "[SCENE OBJECT PART]: Storing undo state for {0} {1}, forGroup {2}, initial stack size {3}", | ||
3465 | // Name, LocalId, forGroup, m_undo.Count); | ||
3466 | |||
3467 | if (ParentGroup.GetSceneMaxUndo() > 0) | ||
3468 | { | ||
3469 | UndoState nUndo = new UndoState(this, forGroup); | ||
3470 | |||
3471 | m_undo.Push(nUndo); | ||
3472 | |||
3473 | if (m_redo.Count > 0) | ||
3474 | m_redo.Clear(); | ||
3475 | |||
3476 | // m_log.DebugFormat( | ||
3477 | // "[SCENE OBJECT PART]: Stored undo state for {0} {1}, forGroup {2}, stack size now {3}", | ||
3478 | // Name, LocalId, forGroup, m_undo.Count); | ||
3479 | } | ||
3480 | } | ||
3481 | } | ||
3482 | } | 3913 | } |
3483 | // else | ||
3484 | // { | ||
3485 | // m_log.DebugFormat("[SCENE OBJECT PART]: Ignoring undo store for {0} {1}", Name, LocalId); | ||
3486 | // } | ||
3487 | } | 3914 | } |
3488 | // else | ||
3489 | // { | ||
3490 | // m_log.DebugFormat( | ||
3491 | // "[SCENE OBJECT PART]: Ignoring undo store for {0} {1} since already undoing", Name, LocalId); | ||
3492 | // } | ||
3493 | } | 3915 | } |
3494 | 3916 | ||
3495 | /// <summary> | 3917 | /// <summary> |
@@ -3499,84 +3921,46 @@ namespace OpenSim.Region.Framework.Scenes | |||
3499 | { | 3921 | { |
3500 | get | 3922 | get |
3501 | { | 3923 | { |
3502 | lock (m_undo) | 3924 | if (m_UndoRedo == null) |
3503 | return m_undo.Count; | 3925 | return 0; |
3926 | return m_UndoRedo.Count; | ||
3504 | } | 3927 | } |
3505 | } | 3928 | } |
3506 | 3929 | ||
3507 | public void Undo() | 3930 | public void Undo() |
3508 | { | 3931 | { |
3509 | lock (m_undo) | 3932 | if (m_UndoRedo == null || Undoing || ParentGroup == null) |
3510 | { | 3933 | return; |
3511 | // m_log.DebugFormat( | ||
3512 | // "[SCENE OBJECT PART]: Handling undo request for {0} {1}, stack size {2}", | ||
3513 | // Name, LocalId, m_undo.Count); | ||
3514 | |||
3515 | if (m_undo.Count > 0) | ||
3516 | { | ||
3517 | UndoState goback = m_undo.Pop(); | ||
3518 | |||
3519 | if (goback != null) | ||
3520 | { | ||
3521 | UndoState nUndo = null; | ||
3522 | |||
3523 | if (ParentGroup.GetSceneMaxUndo() > 0) | ||
3524 | { | ||
3525 | nUndo = new UndoState(this, goback.ForGroup); | ||
3526 | } | ||
3527 | |||
3528 | goback.PlaybackState(this); | ||
3529 | |||
3530 | if (nUndo != null) | ||
3531 | m_redo.Push(nUndo); | ||
3532 | } | ||
3533 | } | ||
3534 | 3934 | ||
3535 | // m_log.DebugFormat( | 3935 | lock (m_UndoRedo) |
3536 | // "[SCENE OBJECT PART]: Handled undo request for {0} {1}, stack size now {2}", | 3936 | { |
3537 | // Name, LocalId, m_undo.Count); | 3937 | Undoing = true; |
3938 | m_UndoRedo.Undo(this); | ||
3939 | Undoing = false; | ||
3538 | } | 3940 | } |
3539 | } | 3941 | } |
3540 | 3942 | ||
3541 | public void Redo() | 3943 | public void Redo() |
3542 | { | 3944 | { |
3543 | lock (m_undo) | 3945 | if (m_UndoRedo == null || Undoing || ParentGroup == null) |
3544 | { | 3946 | return; |
3545 | // m_log.DebugFormat( | ||
3546 | // "[SCENE OBJECT PART]: Handling redo request for {0} {1}, stack size {2}", | ||
3547 | // Name, LocalId, m_redo.Count); | ||
3548 | |||
3549 | if (m_redo.Count > 0) | ||
3550 | { | ||
3551 | UndoState gofwd = m_redo.Pop(); | ||
3552 | |||
3553 | if (gofwd != null) | ||
3554 | { | ||
3555 | if (ParentGroup.GetSceneMaxUndo() > 0) | ||
3556 | { | ||
3557 | UndoState nUndo = new UndoState(this, gofwd.ForGroup); | ||
3558 | |||
3559 | m_undo.Push(nUndo); | ||
3560 | } | ||
3561 | |||
3562 | gofwd.PlayfwdState(this); | ||
3563 | } | ||
3564 | 3947 | ||
3565 | // m_log.DebugFormat( | 3948 | lock (m_UndoRedo) |
3566 | // "[SCENE OBJECT PART]: Handled redo request for {0} {1}, stack size now {2}", | 3949 | { |
3567 | // Name, LocalId, m_redo.Count); | 3950 | Undoing = true; |
3568 | } | 3951 | m_UndoRedo.Redo(this); |
3952 | Undoing = false; | ||
3569 | } | 3953 | } |
3570 | } | 3954 | } |
3571 | 3955 | ||
3572 | public void ClearUndoState() | 3956 | public void ClearUndoState() |
3573 | { | 3957 | { |
3574 | // m_log.DebugFormat("[SCENE OBJECT PART]: Clearing undo and redo stacks in {0} {1}", Name, LocalId); | 3958 | if (m_UndoRedo == null || Undoing) |
3959 | return; | ||
3575 | 3960 | ||
3576 | lock (m_undo) | 3961 | lock (m_UndoRedo) |
3577 | { | 3962 | { |
3578 | m_undo.Clear(); | 3963 | m_UndoRedo.Clear(); |
3579 | m_redo.Clear(); | ||
3580 | } | 3964 | } |
3581 | } | 3965 | } |
3582 | 3966 | ||
@@ -4206,6 +4590,27 @@ namespace OpenSim.Region.Framework.Scenes | |||
4206 | } | 4590 | } |
4207 | } | 4591 | } |
4208 | 4592 | ||
4593 | |||
4594 | public void UpdateExtraPhysics(ExtraPhysicsData physdata) | ||
4595 | { | ||
4596 | if (physdata.PhysShapeType == PhysShapeType.invalid || ParentGroup == null) | ||
4597 | return; | ||
4598 | |||
4599 | if (PhysicsShapeType != (byte)physdata.PhysShapeType) | ||
4600 | { | ||
4601 | PhysicsShapeType = (byte)physdata.PhysShapeType; | ||
4602 | |||
4603 | } | ||
4604 | |||
4605 | if(Density != physdata.Density) | ||
4606 | Density = physdata.Density; | ||
4607 | if(GravityModifier != physdata.GravitationModifier) | ||
4608 | GravityModifier = physdata.GravitationModifier; | ||
4609 | if(Friction != physdata.Friction) | ||
4610 | Friction = physdata.Friction; | ||
4611 | if(Bounciness != physdata.Bounce) | ||
4612 | Bounciness = physdata.Bounce; | ||
4613 | } | ||
4209 | /// <summary> | 4614 | /// <summary> |
4210 | /// Update the flags on this prim. This covers properties such as phantom, physics and temporary. | 4615 | /// Update the flags on this prim. This covers properties such as phantom, physics and temporary. |
4211 | /// </summary> | 4616 | /// </summary> |
@@ -4213,7 +4618,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
4213 | /// <param name="SetTemporary"></param> | 4618 | /// <param name="SetTemporary"></param> |
4214 | /// <param name="SetPhantom"></param> | 4619 | /// <param name="SetPhantom"></param> |
4215 | /// <param name="SetVD"></param> | 4620 | /// <param name="SetVD"></param> |
4216 | public void UpdatePrimFlags(bool UsePhysics, bool SetTemporary, bool SetPhantom, bool SetVD) | 4621 | public void UpdatePrimFlags(bool UsePhysics, bool SetTemporary, bool SetPhantom, bool SetVD, bool building) |
4217 | { | 4622 | { |
4218 | bool wasUsingPhysics = ((Flags & PrimFlags.Physics) != 0); | 4623 | bool wasUsingPhysics = ((Flags & PrimFlags.Physics) != 0); |
4219 | bool wasTemporary = ((Flags & PrimFlags.TemporaryOnRez) != 0); | 4624 | bool wasTemporary = ((Flags & PrimFlags.TemporaryOnRez) != 0); |
@@ -4223,219 +4628,205 @@ namespace OpenSim.Region.Framework.Scenes | |||
4223 | if ((UsePhysics == wasUsingPhysics) && (wasTemporary == SetTemporary) && (wasPhantom == SetPhantom) && (SetVD == wasVD)) | 4628 | if ((UsePhysics == wasUsingPhysics) && (wasTemporary == SetTemporary) && (wasPhantom == SetPhantom) && (SetVD == wasVD)) |
4224 | return; | 4629 | return; |
4225 | 4630 | ||
4226 | PhysicsActor pa = PhysActor; | 4631 | VolumeDetectActive = SetVD; |
4227 | 4632 | ||
4228 | // Special cases for VD. VD can only be called from a script | 4633 | // volume detector implies phantom |
4229 | // and can't be combined with changes to other states. So we can rely | 4634 | if (VolumeDetectActive) |
4230 | // that... | ||
4231 | // ... if VD is changed, all others are not. | ||
4232 | // ... if one of the others is changed, VD is not. | ||
4233 | if (SetVD) // VD is active, special logic applies | ||
4234 | { | ||
4235 | // State machine logic for VolumeDetect | ||
4236 | // More logic below | ||
4237 | bool phanReset = (SetPhantom != wasPhantom) && !SetPhantom; | ||
4238 | |||
4239 | if (phanReset) // Phantom changes from on to off switch VD off too | ||
4240 | { | ||
4241 | SetVD = false; // Switch it of for the course of this routine | ||
4242 | VolumeDetectActive = false; // and also permanently | ||
4243 | |||
4244 | if (pa != null) | ||
4245 | pa.SetVolumeDetect(0); // Let physics know about it too | ||
4246 | } | ||
4247 | else | ||
4248 | { | ||
4249 | // If volumedetect is active we don't want phantom to be applied. | ||
4250 | // If this is a new call to VD out of the state "phantom" | ||
4251 | // this will also cause the prim to be visible to physics | ||
4252 | SetPhantom = false; | ||
4253 | } | ||
4254 | } | ||
4255 | |||
4256 | if (UsePhysics && IsJoint()) | ||
4257 | { | ||
4258 | SetPhantom = true; | 4635 | SetPhantom = true; |
4259 | } | ||
4260 | 4636 | ||
4261 | if (UsePhysics) | 4637 | if (UsePhysics) |
4262 | { | ||
4263 | AddFlag(PrimFlags.Physics); | 4638 | AddFlag(PrimFlags.Physics); |
4264 | if (!wasUsingPhysics) | ||
4265 | { | ||
4266 | DoPhysicsPropertyUpdate(UsePhysics, false); | ||
4267 | |||
4268 | if (!ParentGroup.IsDeleted) | ||
4269 | { | ||
4270 | if (LocalId == ParentGroup.RootPart.LocalId) | ||
4271 | { | ||
4272 | ParentGroup.CheckSculptAndLoad(); | ||
4273 | } | ||
4274 | } | ||
4275 | } | ||
4276 | } | ||
4277 | else | 4639 | else |
4278 | { | ||
4279 | RemFlag(PrimFlags.Physics); | 4640 | RemFlag(PrimFlags.Physics); |
4280 | if (wasUsingPhysics) | ||
4281 | { | ||
4282 | DoPhysicsPropertyUpdate(UsePhysics, false); | ||
4283 | } | ||
4284 | } | ||
4285 | 4641 | ||
4286 | if (SetPhantom | 4642 | if (SetPhantom) |
4287 | || ParentGroup.IsAttachment | ||
4288 | || (Shape.PathCurve == (byte)Extrusion.Flexible)) // note: this may have been changed above in the case of joints | ||
4289 | { | ||
4290 | AddFlag(PrimFlags.Phantom); | 4643 | AddFlag(PrimFlags.Phantom); |
4644 | else | ||
4645 | RemFlag(PrimFlags.Phantom); | ||
4291 | 4646 | ||
4292 | if (PhysActor != null) | 4647 | if (SetTemporary) |
4648 | AddFlag(PrimFlags.TemporaryOnRez); | ||
4649 | else | ||
4650 | RemFlag(PrimFlags.TemporaryOnRez); | ||
4651 | |||
4652 | |||
4653 | if (ParentGroup.Scene == null) | ||
4654 | return; | ||
4655 | |||
4656 | PhysicsActor pa = PhysActor; | ||
4657 | |||
4658 | if (pa != null && building && pa.Building != building) | ||
4659 | pa.Building = building; | ||
4660 | |||
4661 | if ((SetPhantom && !UsePhysics && !SetVD) || ParentGroup.IsAttachment || PhysicsShapeType == (byte)PhysShapeType.none | ||
4662 | || (Shape.PathCurve == (byte)Extrusion.Flexible)) | ||
4663 | { | ||
4664 | if (pa != null) | ||
4293 | { | 4665 | { |
4666 | ParentGroup.Scene.RemovePhysicalPrim(1); | ||
4294 | RemoveFromPhysics(); | 4667 | RemoveFromPhysics(); |
4295 | pa = null; | ||
4296 | } | 4668 | } |
4669 | |||
4670 | Velocity = new Vector3(0, 0, 0); | ||
4671 | Acceleration = new Vector3(0, 0, 0); | ||
4672 | if (ParentGroup.RootPart == this) | ||
4673 | AngularVelocity = new Vector3(0, 0, 0); | ||
4297 | } | 4674 | } |
4298 | else // Not phantom | 4675 | else |
4299 | { | 4676 | { |
4300 | RemFlag(PrimFlags.Phantom); | 4677 | if (ParentGroup.Scene.CollidablePrims) |
4301 | |||
4302 | if (ParentGroup.Scene == null) | ||
4303 | return; | ||
4304 | |||
4305 | if (ParentGroup.Scene.CollidablePrims && pa == null) | ||
4306 | { | 4678 | { |
4307 | pa = AddToPhysics(UsePhysics); | 4679 | if (pa == null) |
4308 | |||
4309 | if (pa != null) | ||
4310 | { | 4680 | { |
4311 | pa.SetMaterial(Material); | 4681 | AddToPhysics(UsePhysics, SetPhantom, building , false); |
4312 | DoPhysicsPropertyUpdate(UsePhysics, true); | 4682 | pa = PhysActor; |
4313 | 4683 | ||
4314 | if (!ParentGroup.IsDeleted) | 4684 | if (pa != null) |
4315 | { | 4685 | { |
4316 | if (LocalId == ParentGroup.RootPart.LocalId) | 4686 | if ( |
4687 | // ((AggregateScriptEvents & scriptEvents.collision) != 0) || | ||
4688 | // ((AggregateScriptEvents & scriptEvents.collision_end) != 0) || | ||
4689 | // ((AggregateScriptEvents & scriptEvents.collision_start) != 0) || | ||
4690 | // ((AggregateScriptEvents & scriptEvents.land_collision_start) != 0) || | ||
4691 | // ((AggregateScriptEvents & scriptEvents.land_collision) != 0) || | ||
4692 | // ((AggregateScriptEvents & scriptEvents.land_collision_end) != 0) || | ||
4693 | ((AggregateScriptEvents & PhyscicsNeededSubsEvents) != 0) || (CollisionSound != UUID.Zero) | ||
4694 | // (CollisionSound != UUID.Zero) | ||
4695 | ) | ||
4317 | { | 4696 | { |
4318 | ParentGroup.CheckSculptAndLoad(); | 4697 | pa.OnCollisionUpdate += PhysicsCollision; |
4698 | pa.SubscribeEvents(1000); | ||
4319 | } | 4699 | } |
4320 | } | 4700 | } |
4321 | |||
4322 | if ( | ||
4323 | ((AggregateScriptEvents & scriptEvents.collision) != 0) || | ||
4324 | ((AggregateScriptEvents & scriptEvents.collision_end) != 0) || | ||
4325 | ((AggregateScriptEvents & scriptEvents.collision_start) != 0) || | ||
4326 | ((AggregateScriptEvents & scriptEvents.land_collision_start) != 0) || | ||
4327 | ((AggregateScriptEvents & scriptEvents.land_collision) != 0) || | ||
4328 | ((AggregateScriptEvents & scriptEvents.land_collision_end) != 0) || | ||
4329 | (CollisionSound != UUID.Zero) | ||
4330 | ) | ||
4331 | { | ||
4332 | pa.OnCollisionUpdate += PhysicsCollision; | ||
4333 | pa.SubscribeEvents(1000); | ||
4334 | } | ||
4335 | } | 4701 | } |
4336 | } | 4702 | else // it already has a physical representation |
4337 | else // it already has a physical representation | ||
4338 | { | ||
4339 | DoPhysicsPropertyUpdate(UsePhysics, false); // Update physical status. If it's phantom this will remove the prim | ||
4340 | |||
4341 | if (!ParentGroup.IsDeleted) | ||
4342 | { | 4703 | { |
4343 | if (LocalId == ParentGroup.RootPart.LocalId) | 4704 | DoPhysicsPropertyUpdate(UsePhysics, false); // Update physical status. |
4344 | { | 4705 | /* moved into DoPhysicsPropertyUpdate |
4345 | ParentGroup.CheckSculptAndLoad(); | 4706 | if(VolumeDetectActive) |
4346 | } | 4707 | pa.SetVolumeDetect(1); |
4708 | else | ||
4709 | pa.SetVolumeDetect(0); | ||
4710 | */ | ||
4711 | if (pa.Building != building) | ||
4712 | pa.Building = building; | ||
4347 | } | 4713 | } |
4348 | } | 4714 | } |
4349 | } | 4715 | } |
4350 | |||
4351 | if (SetVD) | ||
4352 | { | ||
4353 | // If the above logic worked (this is urgent candidate to unit tests!) | ||
4354 | // we now have a physicsactor. | ||
4355 | // Defensive programming calls for a check here. | ||
4356 | // Better would be throwing an exception that could be catched by a unit test as the internal | ||
4357 | // logic should make sure, this Physactor is always here. | ||
4358 | if (pa != null) | ||
4359 | { | ||
4360 | pa.SetVolumeDetect(1); | ||
4361 | AddFlag(PrimFlags.Phantom); // We set this flag also if VD is active | ||
4362 | VolumeDetectActive = true; | ||
4363 | } | ||
4364 | } | ||
4365 | else | ||
4366 | { | ||
4367 | // Remove VolumeDetect in any case. Note, it's safe to call SetVolumeDetect as often as you like | ||
4368 | // (mumbles, well, at least if you have infinte CPU powers :-)) | ||
4369 | if (pa != null) | ||
4370 | pa.SetVolumeDetect(0); | ||
4371 | |||
4372 | VolumeDetectActive = false; | ||
4373 | } | ||
4374 | |||
4375 | if (SetTemporary) | ||
4376 | { | ||
4377 | AddFlag(PrimFlags.TemporaryOnRez); | ||
4378 | } | ||
4379 | else | ||
4380 | { | ||
4381 | RemFlag(PrimFlags.TemporaryOnRez); | ||
4382 | } | ||
4383 | 4716 | ||
4384 | // m_log.Debug("Update: PHY:" + UsePhysics.ToString() + ", T:" + IsTemporary.ToString() + ", PHA:" + IsPhantom.ToString() + " S:" + CastsShadows.ToString()); | 4717 | // m_log.Debug("Update: PHY:" + UsePhysics.ToString() + ", T:" + IsTemporary.ToString() + ", PHA:" + IsPhantom.ToString() + " S:" + CastsShadows.ToString()); |
4385 | 4718 | ||
4719 | // and last in case we have a new actor and not building | ||
4720 | |||
4386 | if (ParentGroup != null) | 4721 | if (ParentGroup != null) |
4387 | { | 4722 | { |
4388 | ParentGroup.HasGroupChanged = true; | 4723 | ParentGroup.HasGroupChanged = true; |
4389 | ScheduleFullUpdate(); | 4724 | ScheduleFullUpdate(); |
4390 | } | 4725 | } |
4391 | 4726 | ||
4392 | // m_log.DebugFormat("[SCENE OBJECT PART]: Updated PrimFlags on {0} {1} to {2}", Name, LocalId, Flags); | 4727 | // m_log.DebugFormat("[SCENE OBJECT PART]: Updated PrimFlags on {0} {1} to {2}", Name, LocalId, Flags); |
4393 | } | 4728 | } |
4394 | 4729 | ||
4395 | /// <summary> | 4730 | /// <summary> |
4396 | /// Adds this part to the physics scene. | 4731 | /// Adds this part to the physics scene. |
4732 | /// and sets the PhysActor property | ||
4397 | /// </summary> | 4733 | /// </summary> |
4398 | /// <remarks>This method also sets the PhysActor property.</remarks> | 4734 | /// <param name="isPhysical">Add this prim as physical.</param> |
4399 | /// <param name="rigidBody">Add this prim with a rigid body.</param> | 4735 | /// <param name="isPhantom">Add this prim as phantom.</param> |
4400 | /// <returns> | 4736 | /// <param name="building">tells physics to delay full construction of object</param> |
4401 | /// The physics actor. null if there was a failure. | 4737 | /// <param name="applyDynamics">applies velocities, force and torque</param> |
4402 | /// </returns> | 4738 | private void AddToPhysics(bool isPhysical, bool isPhantom, bool building, bool applyDynamics) |
4403 | private PhysicsActor AddToPhysics(bool rigidBody) | 4739 | { |
4404 | { | ||
4405 | PhysicsActor pa; | 4740 | PhysicsActor pa; |
4406 | 4741 | ||
4742 | Vector3 velocity = Velocity; | ||
4743 | Vector3 rotationalVelocity = AngularVelocity;; | ||
4744 | |||
4407 | try | 4745 | try |
4408 | { | 4746 | { |
4409 | pa = ParentGroup.Scene.PhysicsScene.AddPrimShape( | 4747 | pa = ParentGroup.Scene.PhysicsScene.AddPrimShape( |
4410 | string.Format("{0}/{1}", Name, UUID), | 4748 | string.Format("{0}/{1}", Name, UUID), |
4411 | Shape, | 4749 | Shape, |
4412 | AbsolutePosition, | 4750 | AbsolutePosition, |
4413 | Scale, | 4751 | Scale, |
4414 | RotationOffset, | 4752 | GetWorldRotation(), |
4415 | rigidBody, | 4753 | isPhysical, |
4416 | m_localId); | 4754 | isPhantom, |
4755 | PhysicsShapeType, | ||
4756 | m_localId); | ||
4417 | } | 4757 | } |
4418 | catch | 4758 | catch (Exception ex) |
4419 | { | 4759 | { |
4420 | m_log.ErrorFormat("[SCENE]: caught exception meshing object {0}. Object set to phantom.", m_uuid); | 4760 | m_log.ErrorFormat("[SCENE]: AddToPhysics object {0} failed: {1}", m_uuid, ex.Message); |
4421 | pa = null; | 4761 | pa = null; |
4422 | } | 4762 | } |
4423 | 4763 | ||
4424 | // FIXME: Ideally we wouldn't set the property here to reduce situations where threads changing physical | ||
4425 | // properties can stop on each other. However, DoPhysicsPropertyUpdate() currently relies on PhysActor | ||
4426 | // being set. | ||
4427 | PhysActor = pa; | ||
4428 | |||
4429 | // Basic Physics can also return null as well as an exception catch. | ||
4430 | if (pa != null) | 4764 | if (pa != null) |
4431 | { | 4765 | { |
4432 | pa.SOPName = this.Name; // save object into the PhysActor so ODE internals know the joint/body info | 4766 | pa.SOPName = this.Name; // save object into the PhysActor so ODE internals know the joint/body info |
4433 | pa.SetMaterial(Material); | 4767 | pa.SetMaterial(Material); |
4434 | DoPhysicsPropertyUpdate(rigidBody, true); | 4768 | |
4769 | if (VolumeDetectActive) // change if not the default only | ||
4770 | pa.SetVolumeDetect(1); | ||
4771 | |||
4772 | if (m_vehicle != null && LocalId == ParentGroup.RootPart.LocalId) | ||
4773 | m_vehicle.SetVehicle(pa); | ||
4774 | |||
4775 | // we are going to tell rest of code about physics so better have this here | ||
4776 | PhysActor = pa; | ||
4777 | |||
4778 | // DoPhysicsPropertyUpdate(isPhysical, true); | ||
4779 | // lets expand it here just with what it really needs to do | ||
4780 | |||
4781 | if (isPhysical) | ||
4782 | { | ||
4783 | if (ParentGroup.RootPart.KeyframeMotion != null) | ||
4784 | ParentGroup.RootPart.KeyframeMotion.Stop(); | ||
4785 | ParentGroup.RootPart.KeyframeMotion = null; | ||
4786 | ParentGroup.Scene.AddPhysicalPrim(1); | ||
4787 | |||
4788 | pa.OnRequestTerseUpdate += PhysicsRequestingTerseUpdate; | ||
4789 | pa.OnOutOfBounds += PhysicsOutOfBounds; | ||
4790 | |||
4791 | if (ParentID != 0 && ParentID != LocalId) | ||
4792 | { | ||
4793 | PhysicsActor parentPa = ParentGroup.RootPart.PhysActor; | ||
4794 | |||
4795 | if (parentPa != null) | ||
4796 | { | ||
4797 | pa.link(parentPa); | ||
4798 | } | ||
4799 | } | ||
4800 | } | ||
4801 | |||
4802 | if (applyDynamics) | ||
4803 | // do independent of isphysical so parameters get setted (at least some) | ||
4804 | { | ||
4805 | Velocity = velocity; | ||
4806 | AngularVelocity = rotationalVelocity; | ||
4807 | pa.Velocity = velocity; | ||
4808 | pa.RotationalVelocity = rotationalVelocity; | ||
4809 | |||
4810 | // if not vehicle and root part apply force and torque | ||
4811 | if ((m_vehicle == null || m_vehicle.Type == Vehicle.TYPE_NONE) | ||
4812 | && LocalId == ParentGroup.RootPart.LocalId) | ||
4813 | { | ||
4814 | pa.Force = Force; | ||
4815 | pa.Torque = Torque; | ||
4816 | } | ||
4817 | } | ||
4818 | |||
4819 | if (Shape.SculptEntry) | ||
4820 | CheckSculptAndLoad(); | ||
4821 | else | ||
4822 | ParentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(pa); | ||
4823 | |||
4824 | if (!building) | ||
4825 | pa.Building = false; | ||
4435 | } | 4826 | } |
4436 | 4827 | ||
4437 | return pa; | 4828 | PhysActor = pa; |
4438 | } | 4829 | } |
4439 | 4830 | ||
4440 | /// <summary> | 4831 | /// <summary> |
4441 | /// This removes the part from the physics scene. | 4832 | /// This removes the part from the physics scene. |
@@ -4642,33 +5033,28 @@ namespace OpenSim.Region.Framework.Scenes | |||
4642 | } | 5033 | } |
4643 | 5034 | ||
4644 | PhysicsActor pa = PhysActor; | 5035 | PhysicsActor pa = PhysActor; |
4645 | 5036 | if (pa != null) | |
4646 | if ( | ||
4647 | ((AggregateScriptEvents & scriptEvents.collision) != 0) || | ||
4648 | ((AggregateScriptEvents & scriptEvents.collision_end) != 0) || | ||
4649 | ((AggregateScriptEvents & scriptEvents.collision_start) != 0) || | ||
4650 | ((AggregateScriptEvents & scriptEvents.land_collision_start) != 0) || | ||
4651 | ((AggregateScriptEvents & scriptEvents.land_collision) != 0) || | ||
4652 | ((AggregateScriptEvents & scriptEvents.land_collision_end) != 0) || | ||
4653 | (CollisionSound != UUID.Zero) | ||
4654 | ) | ||
4655 | { | 5037 | { |
4656 | // subscribe to physics updates. | 5038 | if ( |
4657 | if (pa != null) | 5039 | // ((AggregateScriptEvents & scriptEvents.collision) != 0) || |
5040 | // ((AggregateScriptEvents & scriptEvents.collision_end) != 0) || | ||
5041 | // ((AggregateScriptEvents & scriptEvents.collision_start) != 0) || | ||
5042 | // ((AggregateScriptEvents & scriptEvents.land_collision_start) != 0) || | ||
5043 | // ((AggregateScriptEvents & scriptEvents.land_collision) != 0) || | ||
5044 | // ((AggregateScriptEvents & scriptEvents.land_collision_end) != 0) || | ||
5045 | ((AggregateScriptEvents & PhyscicsNeededSubsEvents) != 0) || (CollisionSound != UUID.Zero) | ||
5046 | ) | ||
4658 | { | 5047 | { |
5048 | // subscribe to physics updates. | ||
4659 | pa.OnCollisionUpdate += PhysicsCollision; | 5049 | pa.OnCollisionUpdate += PhysicsCollision; |
4660 | pa.SubscribeEvents(1000); | 5050 | pa.SubscribeEvents(1000); |
4661 | } | 5051 | } |
4662 | } | 5052 | else |
4663 | else | ||
4664 | { | ||
4665 | if (pa != null) | ||
4666 | { | 5053 | { |
4667 | pa.UnSubscribeEvents(); | 5054 | pa.UnSubscribeEvents(); |
4668 | pa.OnCollisionUpdate -= PhysicsCollision; | 5055 | pa.OnCollisionUpdate -= PhysicsCollision; |
4669 | } | 5056 | } |
4670 | } | 5057 | } |
4671 | |||
4672 | //if ((GetEffectiveObjectFlags() & (uint)PrimFlags.Scripted) != 0) | 5058 | //if ((GetEffectiveObjectFlags() & (uint)PrimFlags.Scripted) != 0) |
4673 | //{ | 5059 | //{ |
4674 | // ParentGroup.Scene.EventManager.OnScriptTimerEvent += handleTimerAccounting; | 5060 | // ParentGroup.Scene.EventManager.OnScriptTimerEvent += handleTimerAccounting; |
@@ -4795,5 +5181,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
4795 | Color color = Color; | 5181 | Color color = Color; |
4796 | return new Color4(color.R, color.G, color.B, (byte)(0xFF - color.A)); | 5182 | return new Color4(color.R, color.G, color.B, (byte)(0xFF - color.A)); |
4797 | } | 5183 | } |
5184 | |||
5185 | public void ResetOwnerChangeFlag() | ||
5186 | { | ||
5187 | List<UUID> inv = Inventory.GetInventoryList(); | ||
5188 | |||
5189 | foreach (UUID itemID in inv) | ||
5190 | { | ||
5191 | TaskInventoryItem item = Inventory.GetInventoryItem(itemID); | ||
5192 | item.OwnerChanged = false; | ||
5193 | Inventory.UpdateInventoryItem(item, false, false); | ||
5194 | } | ||
5195 | } | ||
4798 | } | 5196 | } |
4799 | } | 5197 | } |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs index aacad98..36cb09a 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs | |||
@@ -48,6 +48,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
48 | private string m_inventoryFileName = String.Empty; | 48 | private string m_inventoryFileName = String.Empty; |
49 | private byte[] m_inventoryFileData = new byte[0]; | 49 | private byte[] m_inventoryFileData = new byte[0]; |
50 | private uint m_inventoryFileNameSerial = 0; | 50 | private uint m_inventoryFileNameSerial = 0; |
51 | private bool m_inventoryPrivileged = false; | ||
52 | |||
53 | private Dictionary<UUID, ArrayList> m_scriptErrors = new Dictionary<UUID, ArrayList>(); | ||
51 | 54 | ||
52 | /// <value> | 55 | /// <value> |
53 | /// The part to which the inventory belongs. | 56 | /// The part to which the inventory belongs. |
@@ -84,11 +87,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
84 | /// </value> | 87 | /// </value> |
85 | protected internal TaskInventoryDictionary Items | 88 | protected internal TaskInventoryDictionary Items |
86 | { | 89 | { |
87 | get { return m_items; } | 90 | get { |
91 | return m_items; | ||
92 | } | ||
88 | set | 93 | set |
89 | { | 94 | { |
90 | m_items = value; | 95 | m_items = value; |
91 | m_inventorySerial++; | 96 | m_inventorySerial++; |
97 | QueryScriptStates(); | ||
92 | } | 98 | } |
93 | } | 99 | } |
94 | 100 | ||
@@ -123,38 +129,45 @@ namespace OpenSim.Region.Framework.Scenes | |||
123 | public void ResetInventoryIDs() | 129 | public void ResetInventoryIDs() |
124 | { | 130 | { |
125 | if (null == m_part) | 131 | if (null == m_part) |
126 | return; | 132 | m_items.LockItemsForWrite(true); |
127 | 133 | ||
128 | lock (m_items) | 134 | if (Items.Count == 0) |
129 | { | 135 | { |
130 | if (0 == m_items.Count) | 136 | m_items.LockItemsForWrite(false); |
131 | return; | 137 | return; |
138 | } | ||
132 | 139 | ||
133 | IList<TaskInventoryItem> items = GetInventoryItems(); | 140 | IList<TaskInventoryItem> items = new List<TaskInventoryItem>(Items.Values); |
134 | m_items.Clear(); | 141 | Items.Clear(); |
135 | 142 | ||
136 | foreach (TaskInventoryItem item in items) | 143 | foreach (TaskInventoryItem item in items) |
137 | { | 144 | { |
138 | item.ResetIDs(m_part.UUID); | 145 | item.ResetIDs(m_part.UUID); |
139 | m_items.Add(item.ItemID, item); | 146 | Items.Add(item.ItemID, item); |
140 | } | ||
141 | } | 147 | } |
148 | m_items.LockItemsForWrite(false); | ||
142 | } | 149 | } |
143 | 150 | ||
144 | public void ResetObjectID() | 151 | public void ResetObjectID() |
145 | { | 152 | { |
146 | lock (Items) | 153 | m_items.LockItemsForWrite(true); |
154 | |||
155 | if (Items.Count == 0) | ||
147 | { | 156 | { |
148 | IList<TaskInventoryItem> items = new List<TaskInventoryItem>(Items.Values); | 157 | m_items.LockItemsForWrite(false); |
149 | Items.Clear(); | 158 | return; |
150 | |||
151 | foreach (TaskInventoryItem item in items) | ||
152 | { | ||
153 | item.ParentPartID = m_part.UUID; | ||
154 | item.ParentID = m_part.UUID; | ||
155 | Items.Add(item.ItemID, item); | ||
156 | } | ||
157 | } | 159 | } |
160 | |||
161 | IList<TaskInventoryItem> items = new List<TaskInventoryItem>(Items.Values); | ||
162 | Items.Clear(); | ||
163 | |||
164 | foreach (TaskInventoryItem item in items) | ||
165 | { | ||
166 | item.ParentPartID = m_part.UUID; | ||
167 | item.ParentID = m_part.UUID; | ||
168 | Items.Add(item.ItemID, item); | ||
169 | } | ||
170 | m_items.LockItemsForWrite(false); | ||
158 | } | 171 | } |
159 | 172 | ||
160 | /// <summary> | 173 | /// <summary> |
@@ -163,12 +176,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
163 | /// <param name="ownerId"></param> | 176 | /// <param name="ownerId"></param> |
164 | public void ChangeInventoryOwner(UUID ownerId) | 177 | public void ChangeInventoryOwner(UUID ownerId) |
165 | { | 178 | { |
166 | lock (Items) | 179 | m_items.LockItemsForWrite(true); |
180 | if (0 == Items.Count) | ||
167 | { | 181 | { |
168 | if (0 == Items.Count) | 182 | m_items.LockItemsForWrite(false); |
169 | { | 183 | return; |
170 | return; | ||
171 | } | ||
172 | } | 184 | } |
173 | 185 | ||
174 | HasInventoryChanged = true; | 186 | HasInventoryChanged = true; |
@@ -184,6 +196,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
184 | item.PermsGranter = UUID.Zero; | 196 | item.PermsGranter = UUID.Zero; |
185 | item.OwnerChanged = true; | 197 | item.OwnerChanged = true; |
186 | } | 198 | } |
199 | m_items.LockItemsForWrite(false); | ||
187 | } | 200 | } |
188 | 201 | ||
189 | /// <summary> | 202 | /// <summary> |
@@ -192,12 +205,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
192 | /// <param name="groupID"></param> | 205 | /// <param name="groupID"></param> |
193 | public void ChangeInventoryGroup(UUID groupID) | 206 | public void ChangeInventoryGroup(UUID groupID) |
194 | { | 207 | { |
195 | lock (Items) | 208 | m_items.LockItemsForWrite(true); |
209 | if (0 == Items.Count) | ||
196 | { | 210 | { |
197 | if (0 == Items.Count) | 211 | m_items.LockItemsForWrite(false); |
198 | { | 212 | return; |
199 | return; | ||
200 | } | ||
201 | } | 213 | } |
202 | 214 | ||
203 | // Don't let this set the HasGroupChanged flag for attachments | 215 | // Don't let this set the HasGroupChanged flag for attachments |
@@ -209,12 +221,45 @@ namespace OpenSim.Region.Framework.Scenes | |||
209 | m_part.ParentGroup.HasGroupChanged = true; | 221 | m_part.ParentGroup.HasGroupChanged = true; |
210 | } | 222 | } |
211 | 223 | ||
212 | List<TaskInventoryItem> items = GetInventoryItems(); | 224 | IList<TaskInventoryItem> items = new List<TaskInventoryItem>(Items.Values); |
213 | foreach (TaskInventoryItem item in items) | 225 | foreach (TaskInventoryItem item in items) |
214 | { | 226 | { |
215 | if (groupID != item.GroupID) | 227 | if (groupID != item.GroupID) |
228 | { | ||
216 | item.GroupID = groupID; | 229 | item.GroupID = groupID; |
230 | } | ||
231 | } | ||
232 | m_items.LockItemsForWrite(false); | ||
233 | } | ||
234 | |||
235 | private void QueryScriptStates() | ||
236 | { | ||
237 | if (m_part == null || m_part.ParentGroup == null) | ||
238 | return; | ||
239 | |||
240 | IScriptModule[] engines = m_part.ParentGroup.Scene.RequestModuleInterfaces<IScriptModule>(); | ||
241 | if (engines == null) // No engine at all | ||
242 | return; | ||
243 | |||
244 | Items.LockItemsForRead(true); | ||
245 | foreach (TaskInventoryItem item in Items.Values) | ||
246 | { | ||
247 | if (item.InvType == (int)InventoryType.LSL) | ||
248 | { | ||
249 | foreach (IScriptModule e in engines) | ||
250 | { | ||
251 | bool running; | ||
252 | |||
253 | if (e.HasScript(item.ItemID, out running)) | ||
254 | { | ||
255 | item.ScriptRunning = running; | ||
256 | break; | ||
257 | } | ||
258 | } | ||
259 | } | ||
217 | } | 260 | } |
261 | |||
262 | Items.LockItemsForRead(false); | ||
218 | } | 263 | } |
219 | 264 | ||
220 | /// <summary> | 265 | /// <summary> |
@@ -257,7 +302,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
257 | { | 302 | { |
258 | List<TaskInventoryItem> scripts = GetInventoryItems(InventoryType.LSL); | 303 | List<TaskInventoryItem> scripts = GetInventoryItems(InventoryType.LSL); |
259 | foreach (TaskInventoryItem item in scripts) | 304 | foreach (TaskInventoryItem item in scripts) |
305 | { | ||
260 | RemoveScriptInstance(item.ItemID, sceneObjectBeingDeleted); | 306 | RemoveScriptInstance(item.ItemID, sceneObjectBeingDeleted); |
307 | m_part.RemoveScriptEvents(item.ItemID); | ||
308 | } | ||
261 | } | 309 | } |
262 | 310 | ||
263 | /// <summary> | 311 | /// <summary> |
@@ -271,7 +319,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
271 | // item.Name, item.ItemID, m_part.Name, m_part.UUID, m_part.ParentGroup.Scene.RegionInfo.RegionName); | 319 | // item.Name, item.ItemID, m_part.Name, m_part.UUID, m_part.ParentGroup.Scene.RegionInfo.RegionName); |
272 | 320 | ||
273 | if (!m_part.ParentGroup.Scene.Permissions.CanRunScript(item.ItemID, m_part.UUID, item.OwnerID)) | 321 | if (!m_part.ParentGroup.Scene.Permissions.CanRunScript(item.ItemID, m_part.UUID, item.OwnerID)) |
322 | { | ||
323 | StoreScriptError(item.ItemID, "no permission"); | ||
274 | return; | 324 | return; |
325 | } | ||
275 | 326 | ||
276 | m_part.AddFlag(PrimFlags.Scripted); | 327 | m_part.AddFlag(PrimFlags.Scripted); |
277 | 328 | ||
@@ -280,14 +331,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
280 | if (stateSource == 2 && // Prim crossing | 331 | if (stateSource == 2 && // Prim crossing |
281 | m_part.ParentGroup.Scene.m_trustBinaries) | 332 | m_part.ParentGroup.Scene.m_trustBinaries) |
282 | { | 333 | { |
283 | lock (m_items) | 334 | m_items.LockItemsForWrite(true); |
284 | { | 335 | m_items[item.ItemID].PermsMask = 0; |
285 | m_items[item.ItemID].PermsMask = 0; | 336 | m_items[item.ItemID].PermsGranter = UUID.Zero; |
286 | m_items[item.ItemID].PermsGranter = UUID.Zero; | 337 | m_items.LockItemsForWrite(false); |
287 | } | ||
288 | |||
289 | m_part.ParentGroup.Scene.EventManager.TriggerRezScript( | 338 | m_part.ParentGroup.Scene.EventManager.TriggerRezScript( |
290 | m_part.LocalId, item.ItemID, String.Empty, startParam, postOnRez, engine, stateSource); | 339 | m_part.LocalId, item.ItemID, String.Empty, startParam, postOnRez, engine, stateSource); |
340 | StoreScriptErrors(item.ItemID, null); | ||
291 | m_part.ParentGroup.AddActiveScriptCount(1); | 341 | m_part.ParentGroup.AddActiveScriptCount(1); |
292 | m_part.ScheduleFullUpdate(); | 342 | m_part.ScheduleFullUpdate(); |
293 | return; | 343 | return; |
@@ -296,6 +346,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
296 | AssetBase asset = m_part.ParentGroup.Scene.AssetService.Get(item.AssetID.ToString()); | 346 | AssetBase asset = m_part.ParentGroup.Scene.AssetService.Get(item.AssetID.ToString()); |
297 | if (null == asset) | 347 | if (null == asset) |
298 | { | 348 | { |
349 | string msg = String.Format("asset ID {0} could not be found", item.AssetID); | ||
350 | StoreScriptError(item.ItemID, msg); | ||
299 | m_log.ErrorFormat( | 351 | m_log.ErrorFormat( |
300 | "[PRIM INVENTORY]: Couldn't start script {0}, {1} at {2} in {3} since asset ID {4} could not be found", | 352 | "[PRIM INVENTORY]: Couldn't start script {0}, {1} at {2} in {3} since asset ID {4} could not be found", |
301 | item.Name, item.ItemID, m_part.AbsolutePosition, | 353 | item.Name, item.ItemID, m_part.AbsolutePosition, |
@@ -306,16 +358,21 @@ namespace OpenSim.Region.Framework.Scenes | |||
306 | if (m_part.ParentGroup.m_savedScriptState != null) | 358 | if (m_part.ParentGroup.m_savedScriptState != null) |
307 | item.OldItemID = RestoreSavedScriptState(item.LoadedItemID, item.OldItemID, item.ItemID); | 359 | item.OldItemID = RestoreSavedScriptState(item.LoadedItemID, item.OldItemID, item.ItemID); |
308 | 360 | ||
309 | lock (m_items) | 361 | m_items.LockItemsForWrite(true); |
310 | { | 362 | |
311 | m_items[item.ItemID].OldItemID = item.OldItemID; | 363 | m_items[item.ItemID].OldItemID = item.OldItemID; |
312 | m_items[item.ItemID].PermsMask = 0; | 364 | m_items[item.ItemID].PermsMask = 0; |
313 | m_items[item.ItemID].PermsGranter = UUID.Zero; | 365 | m_items[item.ItemID].PermsGranter = UUID.Zero; |
314 | } | ||
315 | 366 | ||
367 | m_items.LockItemsForWrite(false); | ||
368 | |||
316 | string script = Utils.BytesToString(asset.Data); | 369 | string script = Utils.BytesToString(asset.Data); |
317 | m_part.ParentGroup.Scene.EventManager.TriggerRezScript( | 370 | m_part.ParentGroup.Scene.EventManager.TriggerRezScript( |
318 | m_part.LocalId, item.ItemID, script, startParam, postOnRez, engine, stateSource); | 371 | m_part.LocalId, item.ItemID, script, startParam, postOnRez, engine, stateSource); |
372 | StoreScriptErrors(item.ItemID, null); | ||
373 | if (!item.ScriptRunning) | ||
374 | m_part.ParentGroup.Scene.EventManager.TriggerStopScript( | ||
375 | m_part.LocalId, item.ItemID); | ||
319 | m_part.ParentGroup.AddActiveScriptCount(1); | 376 | m_part.ParentGroup.AddActiveScriptCount(1); |
320 | m_part.ScheduleFullUpdate(); | 377 | m_part.ScheduleFullUpdate(); |
321 | } | 378 | } |
@@ -386,20 +443,146 @@ namespace OpenSim.Region.Framework.Scenes | |||
386 | 443 | ||
387 | /// <summary> | 444 | /// <summary> |
388 | /// Start a script which is in this prim's inventory. | 445 | /// Start a script which is in this prim's inventory. |
446 | /// Some processing may occur in the background, but this routine returns asap. | ||
389 | /// </summary> | 447 | /// </summary> |
390 | /// <param name="itemId"> | 448 | /// <param name="itemId"> |
391 | /// A <see cref="UUID"/> | 449 | /// A <see cref="UUID"/> |
392 | /// </param> | 450 | /// </param> |
393 | public void CreateScriptInstance(UUID itemId, int startParam, bool postOnRez, string engine, int stateSource) | 451 | public void CreateScriptInstance(UUID itemId, int startParam, bool postOnRez, string engine, int stateSource) |
394 | { | 452 | { |
395 | TaskInventoryItem item = GetInventoryItem(itemId); | 453 | lock (m_scriptErrors) |
396 | if (item != null) | 454 | { |
397 | CreateScriptInstance(item, startParam, postOnRez, engine, stateSource); | 455 | // Indicate to CreateScriptInstanceInternal() we don't want it to wait for completion |
456 | m_scriptErrors.Remove(itemId); | ||
457 | } | ||
458 | CreateScriptInstanceInternal(itemId, startParam, postOnRez, engine, stateSource); | ||
459 | } | ||
460 | |||
461 | private void CreateScriptInstanceInternal(UUID itemId, int startParam, bool postOnRez, string engine, int stateSource) | ||
462 | { | ||
463 | m_items.LockItemsForRead(true); | ||
464 | if (m_items.ContainsKey(itemId)) | ||
465 | { | ||
466 | if (m_items.ContainsKey(itemId)) | ||
467 | { | ||
468 | m_items.LockItemsForRead(false); | ||
469 | CreateScriptInstance(m_items[itemId], startParam, postOnRez, engine, stateSource); | ||
470 | } | ||
471 | else | ||
472 | { | ||
473 | m_items.LockItemsForRead(false); | ||
474 | string msg = String.Format("couldn't be found for prim {0}, {1} at {2} in {3}", m_part.Name, m_part.UUID, | ||
475 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); | ||
476 | StoreScriptError(itemId, msg); | ||
477 | m_log.ErrorFormat( | ||
478 | "[PRIM INVENTORY]: " + | ||
479 | "Couldn't start script with ID {0} since it {1}", itemId, msg); | ||
480 | } | ||
481 | } | ||
398 | else | 482 | else |
483 | { | ||
484 | m_items.LockItemsForRead(false); | ||
485 | string msg = String.Format("couldn't be found for prim {0}, {1}", m_part.Name, m_part.UUID); | ||
486 | StoreScriptError(itemId, msg); | ||
399 | m_log.ErrorFormat( | 487 | m_log.ErrorFormat( |
400 | "[PRIM INVENTORY]: Couldn't start script with ID {0} since it couldn't be found for prim {1}, {2} at {3} in {4}", | 488 | "[PRIM INVENTORY]: Couldn't start script with ID {0} since it couldn't be found for prim {1}, {2} at {3} in {4}", |
401 | itemId, m_part.Name, m_part.UUID, | 489 | itemId, m_part.Name, m_part.UUID, |
402 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); | 490 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); |
491 | } | ||
492 | |||
493 | } | ||
494 | |||
495 | /// <summary> | ||
496 | /// Start a script which is in this prim's inventory and return any compilation error messages. | ||
497 | /// </summary> | ||
498 | /// <param name="itemId"> | ||
499 | /// A <see cref="UUID"/> | ||
500 | /// </param> | ||
501 | public ArrayList CreateScriptInstanceEr(UUID itemId, int startParam, bool postOnRez, string engine, int stateSource) | ||
502 | { | ||
503 | ArrayList errors; | ||
504 | |||
505 | // Indicate to CreateScriptInstanceInternal() we want it to | ||
506 | // post any compilation/loading error messages | ||
507 | lock (m_scriptErrors) | ||
508 | { | ||
509 | m_scriptErrors[itemId] = null; | ||
510 | } | ||
511 | |||
512 | // Perform compilation/loading | ||
513 | CreateScriptInstanceInternal(itemId, startParam, postOnRez, engine, stateSource); | ||
514 | |||
515 | // Wait for and retrieve any errors | ||
516 | lock (m_scriptErrors) | ||
517 | { | ||
518 | while ((errors = m_scriptErrors[itemId]) == null) | ||
519 | { | ||
520 | if (!System.Threading.Monitor.Wait(m_scriptErrors, 15000)) | ||
521 | { | ||
522 | m_log.ErrorFormat( | ||
523 | "[PRIM INVENTORY]: " + | ||
524 | "timedout waiting for script {0} errors", itemId); | ||
525 | errors = m_scriptErrors[itemId]; | ||
526 | if (errors == null) | ||
527 | { | ||
528 | errors = new ArrayList(1); | ||
529 | errors.Add("timedout waiting for errors"); | ||
530 | } | ||
531 | break; | ||
532 | } | ||
533 | } | ||
534 | m_scriptErrors.Remove(itemId); | ||
535 | } | ||
536 | return errors; | ||
537 | } | ||
538 | |||
539 | // Signal to CreateScriptInstanceEr() that compilation/loading is complete | ||
540 | private void StoreScriptErrors(UUID itemId, ArrayList errors) | ||
541 | { | ||
542 | lock (m_scriptErrors) | ||
543 | { | ||
544 | // If compilation/loading initiated via CreateScriptInstance(), | ||
545 | // it does not want the errors, so just get out | ||
546 | if (!m_scriptErrors.ContainsKey(itemId)) | ||
547 | { | ||
548 | return; | ||
549 | } | ||
550 | |||
551 | // Initiated via CreateScriptInstanceEr(), if we know what the | ||
552 | // errors are, save them and wake CreateScriptInstanceEr(). | ||
553 | if (errors != null) | ||
554 | { | ||
555 | m_scriptErrors[itemId] = errors; | ||
556 | System.Threading.Monitor.PulseAll(m_scriptErrors); | ||
557 | return; | ||
558 | } | ||
559 | } | ||
560 | |||
561 | // Initiated via CreateScriptInstanceEr() but we don't know what | ||
562 | // the errors are yet, so retrieve them from the script engine. | ||
563 | // This may involve some waiting internal to GetScriptErrors(). | ||
564 | errors = GetScriptErrors(itemId); | ||
565 | |||
566 | // Get a default non-null value to indicate success. | ||
567 | if (errors == null) | ||
568 | { | ||
569 | errors = new ArrayList(); | ||
570 | } | ||
571 | |||
572 | // Post to CreateScriptInstanceEr() and wake it up | ||
573 | lock (m_scriptErrors) | ||
574 | { | ||
575 | m_scriptErrors[itemId] = errors; | ||
576 | System.Threading.Monitor.PulseAll(m_scriptErrors); | ||
577 | } | ||
578 | } | ||
579 | |||
580 | // Like StoreScriptErrors(), but just posts a single string message | ||
581 | private void StoreScriptError(UUID itemId, string message) | ||
582 | { | ||
583 | ArrayList errors = new ArrayList(1); | ||
584 | errors.Add(message); | ||
585 | StoreScriptErrors(itemId, errors); | ||
403 | } | 586 | } |
404 | 587 | ||
405 | /// <summary> | 588 | /// <summary> |
@@ -412,15 +595,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
412 | /// </param> | 595 | /// </param> |
413 | public void RemoveScriptInstance(UUID itemId, bool sceneObjectBeingDeleted) | 596 | public void RemoveScriptInstance(UUID itemId, bool sceneObjectBeingDeleted) |
414 | { | 597 | { |
415 | bool scriptPresent = false; | 598 | if (m_items.ContainsKey(itemId)) |
416 | |||
417 | lock (m_items) | ||
418 | { | ||
419 | if (m_items.ContainsKey(itemId)) | ||
420 | scriptPresent = true; | ||
421 | } | ||
422 | |||
423 | if (scriptPresent) | ||
424 | { | 599 | { |
425 | if (!sceneObjectBeingDeleted) | 600 | if (!sceneObjectBeingDeleted) |
426 | m_part.RemoveScriptEvents(itemId); | 601 | m_part.RemoveScriptEvents(itemId); |
@@ -445,14 +620,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
445 | /// <returns></returns> | 620 | /// <returns></returns> |
446 | private bool InventoryContainsName(string name) | 621 | private bool InventoryContainsName(string name) |
447 | { | 622 | { |
448 | lock (m_items) | 623 | m_items.LockItemsForRead(true); |
624 | foreach (TaskInventoryItem item in m_items.Values) | ||
449 | { | 625 | { |
450 | foreach (TaskInventoryItem item in m_items.Values) | 626 | if (item.Name == name) |
451 | { | 627 | { |
452 | if (item.Name == name) | 628 | m_items.LockItemsForRead(false); |
453 | return true; | 629 | return true; |
454 | } | 630 | } |
455 | } | 631 | } |
632 | m_items.LockItemsForRead(false); | ||
456 | return false; | 633 | return false; |
457 | } | 634 | } |
458 | 635 | ||
@@ -494,8 +671,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
494 | /// <param name="item"></param> | 671 | /// <param name="item"></param> |
495 | public void AddInventoryItemExclusive(TaskInventoryItem item, bool allowedDrop) | 672 | public void AddInventoryItemExclusive(TaskInventoryItem item, bool allowedDrop) |
496 | { | 673 | { |
497 | List<TaskInventoryItem> il = GetInventoryItems(); | 674 | m_items.LockItemsForRead(true); |
498 | 675 | List<TaskInventoryItem> il = new List<TaskInventoryItem>(m_items.Values); | |
676 | m_items.LockItemsForRead(false); | ||
499 | foreach (TaskInventoryItem i in il) | 677 | foreach (TaskInventoryItem i in il) |
500 | { | 678 | { |
501 | if (i.Name == item.Name) | 679 | if (i.Name == item.Name) |
@@ -533,14 +711,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
533 | item.Name = name; | 711 | item.Name = name; |
534 | item.GroupID = m_part.GroupID; | 712 | item.GroupID = m_part.GroupID; |
535 | 713 | ||
536 | lock (m_items) | 714 | m_items.LockItemsForWrite(true); |
537 | m_items.Add(item.ItemID, item); | 715 | m_items.Add(item.ItemID, item); |
538 | 716 | m_items.LockItemsForWrite(false); | |
539 | if (allowedDrop) | 717 | if (allowedDrop) |
540 | m_part.TriggerScriptChangedEvent(Changed.ALLOWED_DROP); | 718 | m_part.TriggerScriptChangedEvent(Changed.ALLOWED_DROP); |
541 | else | 719 | else |
542 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); | 720 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); |
543 | 721 | ||
544 | m_inventorySerial++; | 722 | m_inventorySerial++; |
545 | //m_inventorySerial += 2; | 723 | //m_inventorySerial += 2; |
546 | HasInventoryChanged = true; | 724 | HasInventoryChanged = true; |
@@ -556,15 +734,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
556 | /// <param name="items"></param> | 734 | /// <param name="items"></param> |
557 | public void RestoreInventoryItems(ICollection<TaskInventoryItem> items) | 735 | public void RestoreInventoryItems(ICollection<TaskInventoryItem> items) |
558 | { | 736 | { |
559 | lock (m_items) | 737 | m_items.LockItemsForWrite(true); |
738 | foreach (TaskInventoryItem item in items) | ||
560 | { | 739 | { |
561 | foreach (TaskInventoryItem item in items) | 740 | m_items.Add(item.ItemID, item); |
562 | { | 741 | // m_part.TriggerScriptChangedEvent(Changed.INVENTORY); |
563 | m_items.Add(item.ItemID, item); | ||
564 | // m_part.TriggerScriptChangedEvent(Changed.INVENTORY); | ||
565 | } | ||
566 | m_inventorySerial++; | ||
567 | } | 742 | } |
743 | m_items.LockItemsForWrite(false); | ||
744 | |||
745 | m_inventorySerial++; | ||
568 | } | 746 | } |
569 | 747 | ||
570 | /// <summary> | 748 | /// <summary> |
@@ -575,10 +753,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
575 | public TaskInventoryItem GetInventoryItem(UUID itemId) | 753 | public TaskInventoryItem GetInventoryItem(UUID itemId) |
576 | { | 754 | { |
577 | TaskInventoryItem item; | 755 | TaskInventoryItem item; |
578 | 756 | m_items.LockItemsForRead(true); | |
579 | lock (m_items) | 757 | m_items.TryGetValue(itemId, out item); |
580 | m_items.TryGetValue(itemId, out item); | 758 | m_items.LockItemsForRead(false); |
581 | |||
582 | return item; | 759 | return item; |
583 | } | 760 | } |
584 | 761 | ||
@@ -594,15 +771,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
594 | { | 771 | { |
595 | List<TaskInventoryItem> items = new List<TaskInventoryItem>(); | 772 | List<TaskInventoryItem> items = new List<TaskInventoryItem>(); |
596 | 773 | ||
597 | lock (m_items) | 774 | m_items.LockItemsForRead(true); |
775 | |||
776 | foreach (TaskInventoryItem item in m_items.Values) | ||
598 | { | 777 | { |
599 | foreach (TaskInventoryItem item in m_items.Values) | 778 | if (item.Name == name) |
600 | { | 779 | items.Add(item); |
601 | if (item.Name == name) | ||
602 | items.Add(item); | ||
603 | } | ||
604 | } | 780 | } |
605 | 781 | ||
782 | m_items.LockItemsForRead(false); | ||
783 | |||
606 | return items; | 784 | return items; |
607 | } | 785 | } |
608 | 786 | ||
@@ -621,6 +799,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
621 | string xmlData = Utils.BytesToString(rezAsset.Data); | 799 | string xmlData = Utils.BytesToString(rezAsset.Data); |
622 | SceneObjectGroup group = SceneObjectSerializer.FromOriginalXmlFormat(xmlData); | 800 | SceneObjectGroup group = SceneObjectSerializer.FromOriginalXmlFormat(xmlData); |
623 | 801 | ||
802 | group.RootPart.AttachPoint = group.RootPart.Shape.State; | ||
803 | group.RootPart.AttachOffset = group.AbsolutePosition; | ||
804 | |||
624 | group.ResetIDs(); | 805 | group.ResetIDs(); |
625 | 806 | ||
626 | SceneObjectPart rootPart = group.GetPart(group.UUID); | 807 | SceneObjectPart rootPart = group.GetPart(group.UUID); |
@@ -695,8 +876,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
695 | 876 | ||
696 | public bool UpdateInventoryItem(TaskInventoryItem item, bool fireScriptEvents, bool considerChanged) | 877 | public bool UpdateInventoryItem(TaskInventoryItem item, bool fireScriptEvents, bool considerChanged) |
697 | { | 878 | { |
698 | TaskInventoryItem it = GetInventoryItem(item.ItemID); | 879 | m_items.LockItemsForWrite(true); |
699 | if (it != null) | 880 | |
881 | if (m_items.ContainsKey(item.ItemID)) | ||
700 | { | 882 | { |
701 | // m_log.DebugFormat("[PRIM INVENTORY]: Updating item {0} in {1}", item.Name, m_part.Name); | 883 | // m_log.DebugFormat("[PRIM INVENTORY]: Updating item {0} in {1}", item.Name, m_part.Name); |
702 | 884 | ||
@@ -709,14 +891,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
709 | item.GroupID = m_part.GroupID; | 891 | item.GroupID = m_part.GroupID; |
710 | 892 | ||
711 | if (item.AssetID == UUID.Zero) | 893 | if (item.AssetID == UUID.Zero) |
712 | item.AssetID = it.AssetID; | 894 | item.AssetID = m_items[item.ItemID].AssetID; |
713 | 895 | ||
714 | lock (m_items) | 896 | m_items[item.ItemID] = item; |
715 | { | 897 | m_inventorySerial++; |
716 | m_items[item.ItemID] = item; | ||
717 | m_inventorySerial++; | ||
718 | } | ||
719 | |||
720 | if (fireScriptEvents) | 898 | if (fireScriptEvents) |
721 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); | 899 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); |
722 | 900 | ||
@@ -725,7 +903,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
725 | HasInventoryChanged = true; | 903 | HasInventoryChanged = true; |
726 | m_part.ParentGroup.HasGroupChanged = true; | 904 | m_part.ParentGroup.HasGroupChanged = true; |
727 | } | 905 | } |
728 | 906 | m_items.LockItemsForWrite(false); | |
729 | return true; | 907 | return true; |
730 | } | 908 | } |
731 | else | 909 | else |
@@ -736,8 +914,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
736 | item.ItemID, m_part.Name, m_part.UUID, | 914 | item.ItemID, m_part.Name, m_part.UUID, |
737 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); | 915 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); |
738 | } | 916 | } |
739 | return false; | 917 | m_items.LockItemsForWrite(false); |
740 | 918 | ||
919 | return false; | ||
741 | } | 920 | } |
742 | 921 | ||
743 | /// <summary> | 922 | /// <summary> |
@@ -748,43 +927,59 @@ namespace OpenSim.Region.Framework.Scenes | |||
748 | /// in this prim's inventory.</returns> | 927 | /// in this prim's inventory.</returns> |
749 | public int RemoveInventoryItem(UUID itemID) | 928 | public int RemoveInventoryItem(UUID itemID) |
750 | { | 929 | { |
751 | TaskInventoryItem item = GetInventoryItem(itemID); | 930 | m_items.LockItemsForRead(true); |
752 | if (item != null) | 931 | |
932 | if (m_items.ContainsKey(itemID)) | ||
753 | { | 933 | { |
754 | int type = m_items[itemID].InvType; | 934 | int type = m_items[itemID].InvType; |
935 | m_items.LockItemsForRead(false); | ||
755 | if (type == 10) // Script | 936 | if (type == 10) // Script |
756 | { | 937 | { |
757 | m_part.RemoveScriptEvents(itemID); | ||
758 | m_part.ParentGroup.Scene.EventManager.TriggerRemoveScript(m_part.LocalId, itemID); | 938 | m_part.ParentGroup.Scene.EventManager.TriggerRemoveScript(m_part.LocalId, itemID); |
759 | } | 939 | } |
940 | m_items.LockItemsForWrite(true); | ||
760 | m_items.Remove(itemID); | 941 | m_items.Remove(itemID); |
942 | m_items.LockItemsForWrite(false); | ||
761 | m_inventorySerial++; | 943 | m_inventorySerial++; |
762 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); | 944 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); |
763 | 945 | ||
764 | HasInventoryChanged = true; | 946 | HasInventoryChanged = true; |
765 | m_part.ParentGroup.HasGroupChanged = true; | 947 | m_part.ParentGroup.HasGroupChanged = true; |
766 | 948 | ||
767 | if (!ContainsScripts()) | 949 | int scriptcount = 0; |
950 | m_items.LockItemsForRead(true); | ||
951 | foreach (TaskInventoryItem item in m_items.Values) | ||
952 | { | ||
953 | if (item.Type == 10) | ||
954 | { | ||
955 | scriptcount++; | ||
956 | } | ||
957 | } | ||
958 | m_items.LockItemsForRead(false); | ||
959 | |||
960 | |||
961 | if (scriptcount <= 0) | ||
962 | { | ||
768 | m_part.RemFlag(PrimFlags.Scripted); | 963 | m_part.RemFlag(PrimFlags.Scripted); |
964 | } | ||
769 | 965 | ||
770 | m_part.ScheduleFullUpdate(); | 966 | m_part.ScheduleFullUpdate(); |
771 | 967 | ||
772 | return type; | 968 | return type; |
773 | |||
774 | } | 969 | } |
775 | else | 970 | else |
776 | { | 971 | { |
972 | m_items.LockItemsForRead(false); | ||
777 | m_log.ErrorFormat( | 973 | m_log.ErrorFormat( |
778 | "[PRIM INVENTORY]: " + | 974 | "[PRIM INVENTORY]: " + |
779 | "Tried to remove item ID {0} from prim {1}, {2} at {3} in {4} but the item does not exist in this inventory", | 975 | "Tried to remove item ID {0} from prim {1}, {2} but the item does not exist in this inventory", |
780 | itemID, m_part.Name, m_part.UUID, | 976 | itemID, m_part.Name, m_part.UUID); |
781 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); | ||
782 | } | 977 | } |
783 | 978 | ||
784 | return -1; | 979 | return -1; |
785 | } | 980 | } |
786 | 981 | ||
787 | private bool CreateInventoryFile() | 982 | private bool CreateInventoryFileName() |
788 | { | 983 | { |
789 | // m_log.DebugFormat( | 984 | // m_log.DebugFormat( |
790 | // "[PRIM INVENTORY]: Creating inventory file for {0} {1} {2}, serial {3}", | 985 | // "[PRIM INVENTORY]: Creating inventory file for {0} {1} {2}, serial {3}", |
@@ -793,116 +988,125 @@ namespace OpenSim.Region.Framework.Scenes | |||
793 | if (m_inventoryFileName == String.Empty || | 988 | if (m_inventoryFileName == String.Empty || |
794 | m_inventoryFileNameSerial < m_inventorySerial) | 989 | m_inventoryFileNameSerial < m_inventorySerial) |
795 | { | 990 | { |
796 | // Something changed, we need to create a new file | ||
797 | m_inventoryFileName = "inventory_" + UUID.Random().ToString() + ".tmp"; | 991 | m_inventoryFileName = "inventory_" + UUID.Random().ToString() + ".tmp"; |
798 | m_inventoryFileNameSerial = m_inventorySerial; | 992 | m_inventoryFileNameSerial = m_inventorySerial; |
799 | 993 | ||
800 | InventoryStringBuilder invString = new InventoryStringBuilder(m_part.UUID, UUID.Zero); | 994 | return true; |
995 | } | ||
996 | |||
997 | return false; | ||
998 | } | ||
999 | |||
1000 | /// <summary> | ||
1001 | /// Serialize all the metadata for the items in this prim's inventory ready for sending to the client | ||
1002 | /// </summary> | ||
1003 | /// <param name="xferManager"></param> | ||
1004 | public void RequestInventoryFile(IClientAPI client, IXfer xferManager) | ||
1005 | { | ||
1006 | bool changed = CreateInventoryFileName(); | ||
1007 | |||
1008 | bool includeAssets = false; | ||
1009 | if (m_part.ParentGroup.Scene.Permissions.CanEditObjectInventory(m_part.UUID, client.AgentId)) | ||
1010 | includeAssets = true; | ||
1011 | |||
1012 | if (m_inventoryPrivileged != includeAssets) | ||
1013 | changed = true; | ||
1014 | |||
1015 | InventoryStringBuilder invString = new InventoryStringBuilder(m_part.UUID, UUID.Zero); | ||
801 | 1016 | ||
802 | lock (m_items) | 1017 | Items.LockItemsForRead(true); |
1018 | |||
1019 | if (m_inventorySerial == 0) // No inventory | ||
1020 | { | ||
1021 | client.SendTaskInventory(m_part.UUID, 0, new byte[0]); | ||
1022 | Items.LockItemsForRead(false); | ||
1023 | return; | ||
1024 | } | ||
1025 | |||
1026 | if (m_items.Count == 0) // No inventory | ||
1027 | { | ||
1028 | client.SendTaskInventory(m_part.UUID, 0, new byte[0]); | ||
1029 | Items.LockItemsForRead(false); | ||
1030 | return; | ||
1031 | } | ||
1032 | |||
1033 | if (!changed) | ||
1034 | { | ||
1035 | if (m_inventoryFileData.Length > 2) | ||
803 | { | 1036 | { |
804 | foreach (TaskInventoryItem item in m_items.Values) | 1037 | xferManager.AddNewFile(m_inventoryFileName, |
805 | { | 1038 | m_inventoryFileData); |
806 | // m_log.DebugFormat( | 1039 | client.SendTaskInventory(m_part.UUID, (short)m_inventorySerial, |
807 | // "[PRIM INVENTORY]: Adding item {0} {1} for serial {2} on prim {3} {4} {5}", | 1040 | Util.StringToBytes256(m_inventoryFileName)); |
808 | // item.Name, item.ItemID, m_inventorySerial, m_part.Name, m_part.UUID, m_part.LocalId); | ||
809 | 1041 | ||
810 | UUID ownerID = item.OwnerID; | 1042 | Items.LockItemsForRead(false); |
811 | uint everyoneMask = 0; | 1043 | return; |
812 | uint baseMask = item.BasePermissions; | 1044 | } |
813 | uint ownerMask = item.CurrentPermissions; | 1045 | } |
814 | uint groupMask = item.GroupPermissions; | ||
815 | 1046 | ||
816 | invString.AddItemStart(); | 1047 | m_inventoryPrivileged = includeAssets; |
817 | invString.AddNameValueLine("item_id", item.ItemID.ToString()); | ||
818 | invString.AddNameValueLine("parent_id", m_part.UUID.ToString()); | ||
819 | 1048 | ||
820 | invString.AddPermissionsStart(); | 1049 | foreach (TaskInventoryItem item in m_items.Values) |
1050 | { | ||
1051 | UUID ownerID = item.OwnerID; | ||
1052 | uint everyoneMask = 0; | ||
1053 | uint baseMask = item.BasePermissions; | ||
1054 | uint ownerMask = item.CurrentPermissions; | ||
1055 | uint groupMask = item.GroupPermissions; | ||
821 | 1056 | ||
822 | invString.AddNameValueLine("base_mask", Utils.UIntToHexString(baseMask)); | 1057 | invString.AddItemStart(); |
823 | invString.AddNameValueLine("owner_mask", Utils.UIntToHexString(ownerMask)); | 1058 | invString.AddNameValueLine("item_id", item.ItemID.ToString()); |
824 | invString.AddNameValueLine("group_mask", Utils.UIntToHexString(groupMask)); | 1059 | invString.AddNameValueLine("parent_id", m_part.UUID.ToString()); |
825 | invString.AddNameValueLine("everyone_mask", Utils.UIntToHexString(everyoneMask)); | ||
826 | invString.AddNameValueLine("next_owner_mask", Utils.UIntToHexString(item.NextPermissions)); | ||
827 | 1060 | ||
828 | invString.AddNameValueLine("creator_id", item.CreatorID.ToString()); | 1061 | invString.AddPermissionsStart(); |
829 | invString.AddNameValueLine("owner_id", ownerID.ToString()); | ||
830 | 1062 | ||
831 | invString.AddNameValueLine("last_owner_id", item.LastOwnerID.ToString()); | 1063 | invString.AddNameValueLine("base_mask", Utils.UIntToHexString(baseMask)); |
1064 | invString.AddNameValueLine("owner_mask", Utils.UIntToHexString(ownerMask)); | ||
1065 | invString.AddNameValueLine("group_mask", Utils.UIntToHexString(groupMask)); | ||
1066 | invString.AddNameValueLine("everyone_mask", Utils.UIntToHexString(everyoneMask)); | ||
1067 | invString.AddNameValueLine("next_owner_mask", Utils.UIntToHexString(item.NextPermissions)); | ||
832 | 1068 | ||
833 | invString.AddNameValueLine("group_id", item.GroupID.ToString()); | 1069 | invString.AddNameValueLine("creator_id", item.CreatorID.ToString()); |
834 | invString.AddSectionEnd(); | 1070 | invString.AddNameValueLine("owner_id", ownerID.ToString()); |
835 | 1071 | ||
836 | invString.AddNameValueLine("asset_id", item.AssetID.ToString()); | 1072 | invString.AddNameValueLine("last_owner_id", item.LastOwnerID.ToString()); |
837 | invString.AddNameValueLine("type", Utils.AssetTypeToString((AssetType)item.Type)); | ||
838 | invString.AddNameValueLine("inv_type", Utils.InventoryTypeToString((InventoryType)item.InvType)); | ||
839 | invString.AddNameValueLine("flags", Utils.UIntToHexString(item.Flags)); | ||
840 | 1073 | ||
841 | invString.AddSaleStart(); | 1074 | invString.AddNameValueLine("group_id", item.GroupID.ToString()); |
842 | invString.AddNameValueLine("sale_type", "not"); | 1075 | invString.AddSectionEnd(); |
843 | invString.AddNameValueLine("sale_price", "0"); | ||
844 | invString.AddSectionEnd(); | ||
845 | 1076 | ||
846 | invString.AddNameValueLine("name", item.Name + "|"); | 1077 | if (includeAssets) |
847 | invString.AddNameValueLine("desc", item.Description + "|"); | 1078 | invString.AddNameValueLine("asset_id", item.AssetID.ToString()); |
1079 | else | ||
1080 | invString.AddNameValueLine("asset_id", UUID.Zero.ToString()); | ||
1081 | invString.AddNameValueLine("type", Utils.AssetTypeToString((AssetType)item.Type)); | ||
1082 | invString.AddNameValueLine("inv_type", Utils.InventoryTypeToString((InventoryType)item.InvType)); | ||
1083 | invString.AddNameValueLine("flags", Utils.UIntToHexString(item.Flags)); | ||
848 | 1084 | ||
849 | invString.AddNameValueLine("creation_date", item.CreationDate.ToString()); | 1085 | invString.AddSaleStart(); |
850 | invString.AddSectionEnd(); | 1086 | invString.AddNameValueLine("sale_type", "not"); |
851 | } | 1087 | invString.AddNameValueLine("sale_price", "0"); |
852 | } | 1088 | invString.AddSectionEnd(); |
853 | 1089 | ||
854 | m_inventoryFileData = Utils.StringToBytes(invString.BuildString); | 1090 | invString.AddNameValueLine("name", item.Name + "|"); |
1091 | invString.AddNameValueLine("desc", item.Description + "|"); | ||
855 | 1092 | ||
856 | return true; | 1093 | invString.AddNameValueLine("creation_date", item.CreationDate.ToString()); |
1094 | invString.AddSectionEnd(); | ||
857 | } | 1095 | } |
858 | 1096 | ||
859 | // No need to recreate, the existing file is fine | 1097 | Items.LockItemsForRead(false); |
860 | return false; | ||
861 | } | ||
862 | 1098 | ||
863 | /// <summary> | 1099 | m_inventoryFileData = Utils.StringToBytes(invString.BuildString); |
864 | /// Serialize all the metadata for the items in this prim's inventory ready for sending to the client | ||
865 | /// </summary> | ||
866 | /// <param name="xferManager"></param> | ||
867 | public void RequestInventoryFile(IClientAPI client, IXfer xferManager) | ||
868 | { | ||
869 | lock (m_items) | ||
870 | { | ||
871 | // Don't send a inventory xfer name if there are no items. Doing so causes viewer 3 to crash when rezzing | ||
872 | // a new script if any previous deletion has left the prim inventory empty. | ||
873 | if (m_items.Count == 0) // No inventory | ||
874 | { | ||
875 | // m_log.DebugFormat( | ||
876 | // "[PRIM INVENTORY]: Not sending inventory data for part {0} {1} {2} for {3} since no items", | ||
877 | // m_part.Name, m_part.LocalId, m_part.UUID, client.Name); | ||
878 | |||
879 | client.SendTaskInventory(m_part.UUID, 0, new byte[0]); | ||
880 | return; | ||
881 | } | ||
882 | 1100 | ||
883 | CreateInventoryFile(); | 1101 | if (m_inventoryFileData.Length > 2) |
884 | 1102 | { | |
885 | // In principle, we should only do the rest if the inventory changed; | 1103 | xferManager.AddNewFile(m_inventoryFileName, m_inventoryFileData); |
886 | // by sending m_inventorySerial to the client, it ought to know | 1104 | client.SendTaskInventory(m_part.UUID, (short)m_inventorySerial, |
887 | // that nothing changed and that it doesn't need to request the file. | 1105 | Util.StringToBytes256(m_inventoryFileName)); |
888 | // Unfortunately, it doesn't look like the client optimizes this; | 1106 | return; |
889 | // the client seems to always come back and request the Xfer, | ||
890 | // no matter what value m_inventorySerial has. | ||
891 | // FIXME: Could probably be > 0 here rather than > 2 | ||
892 | if (m_inventoryFileData.Length > 2) | ||
893 | { | ||
894 | // Add the file for Xfer | ||
895 | // m_log.DebugFormat( | ||
896 | // "[PRIM INVENTORY]: Adding inventory file {0} (length {1}) for transfer on {2} {3} {4}", | ||
897 | // m_inventoryFileName, m_inventoryFileData.Length, m_part.Name, m_part.UUID, m_part.LocalId); | ||
898 | |||
899 | xferManager.AddNewFile(m_inventoryFileName, m_inventoryFileData); | ||
900 | } | ||
901 | |||
902 | // Tell the client we're ready to Xfer the file | ||
903 | client.SendTaskInventory(m_part.UUID, (short)m_inventorySerial, | ||
904 | Util.StringToBytes256(m_inventoryFileName)); | ||
905 | } | 1107 | } |
1108 | |||
1109 | client.SendTaskInventory(m_part.UUID, 0, new byte[0]); | ||
906 | } | 1110 | } |
907 | 1111 | ||
908 | /// <summary> | 1112 | /// <summary> |
@@ -911,13 +1115,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
911 | /// <param name="datastore"></param> | 1115 | /// <param name="datastore"></param> |
912 | public void ProcessInventoryBackup(ISimulationDataService datastore) | 1116 | public void ProcessInventoryBackup(ISimulationDataService datastore) |
913 | { | 1117 | { |
914 | if (HasInventoryChanged) | 1118 | // Removed this because linking will cause an immediate delete of the new |
915 | { | 1119 | // child prim from the database and the subsequent storing of the prim sees |
916 | HasInventoryChanged = false; | 1120 | // the inventory of it as unchanged and doesn't store it at all. The overhead |
917 | List<TaskInventoryItem> items = GetInventoryItems(); | 1121 | // of storing prim inventory needlessly is much less than the aggravation |
918 | datastore.StorePrimInventory(m_part.UUID, items); | 1122 | // of prim inventory loss. |
1123 | // if (HasInventoryChanged) | ||
1124 | // { | ||
1125 | Items.LockItemsForRead(true); | ||
1126 | datastore.StorePrimInventory(m_part.UUID, Items.Values); | ||
1127 | Items.LockItemsForRead(false); | ||
919 | 1128 | ||
920 | } | 1129 | HasInventoryChanged = false; |
1130 | // } | ||
921 | } | 1131 | } |
922 | 1132 | ||
923 | public class InventoryStringBuilder | 1133 | public class InventoryStringBuilder |
@@ -983,82 +1193,63 @@ namespace OpenSim.Region.Framework.Scenes | |||
983 | { | 1193 | { |
984 | uint mask=0x7fffffff; | 1194 | uint mask=0x7fffffff; |
985 | 1195 | ||
986 | lock (m_items) | 1196 | foreach (TaskInventoryItem item in m_items.Values) |
987 | { | 1197 | { |
988 | foreach (TaskInventoryItem item in m_items.Values) | 1198 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Copy) == 0) |
1199 | mask &= ~((uint)PermissionMask.Copy >> 13); | ||
1200 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Transfer) == 0) | ||
1201 | mask &= ~((uint)PermissionMask.Transfer >> 13); | ||
1202 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Modify) == 0) | ||
1203 | mask &= ~((uint)PermissionMask.Modify >> 13); | ||
1204 | |||
1205 | if (item.InvType == (int)InventoryType.Object) | ||
989 | { | 1206 | { |
990 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Copy) == 0) | 1207 | if ((item.CurrentPermissions & ((uint)PermissionMask.Copy >> 13)) == 0) |
991 | mask &= ~((uint)PermissionMask.Copy >> 13); | 1208 | mask &= ~((uint)PermissionMask.Copy >> 13); |
992 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Transfer) == 0) | 1209 | if ((item.CurrentPermissions & ((uint)PermissionMask.Transfer >> 13)) == 0) |
993 | mask &= ~((uint)PermissionMask.Transfer >> 13); | 1210 | mask &= ~((uint)PermissionMask.Transfer >> 13); |
994 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Modify) == 0) | 1211 | if ((item.CurrentPermissions & ((uint)PermissionMask.Modify >> 13)) == 0) |
995 | mask &= ~((uint)PermissionMask.Modify >> 13); | 1212 | mask &= ~((uint)PermissionMask.Modify >> 13); |
996 | |||
997 | if (item.InvType != (int)InventoryType.Object) | ||
998 | { | ||
999 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Copy) == 0) | ||
1000 | mask &= ~((uint)PermissionMask.Copy >> 13); | ||
1001 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Transfer) == 0) | ||
1002 | mask &= ~((uint)PermissionMask.Transfer >> 13); | ||
1003 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Modify) == 0) | ||
1004 | mask &= ~((uint)PermissionMask.Modify >> 13); | ||
1005 | } | ||
1006 | else | ||
1007 | { | ||
1008 | if ((item.CurrentPermissions & ((uint)PermissionMask.Copy >> 13)) == 0) | ||
1009 | mask &= ~((uint)PermissionMask.Copy >> 13); | ||
1010 | if ((item.CurrentPermissions & ((uint)PermissionMask.Transfer >> 13)) == 0) | ||
1011 | mask &= ~((uint)PermissionMask.Transfer >> 13); | ||
1012 | if ((item.CurrentPermissions & ((uint)PermissionMask.Modify >> 13)) == 0) | ||
1013 | mask &= ~((uint)PermissionMask.Modify >> 13); | ||
1014 | } | ||
1015 | |||
1016 | if ((item.CurrentPermissions & (uint)PermissionMask.Copy) == 0) | ||
1017 | mask &= ~(uint)PermissionMask.Copy; | ||
1018 | if ((item.CurrentPermissions & (uint)PermissionMask.Transfer) == 0) | ||
1019 | mask &= ~(uint)PermissionMask.Transfer; | ||
1020 | if ((item.CurrentPermissions & (uint)PermissionMask.Modify) == 0) | ||
1021 | mask &= ~(uint)PermissionMask.Modify; | ||
1022 | } | 1213 | } |
1214 | |||
1215 | if ((item.CurrentPermissions & (uint)PermissionMask.Copy) == 0) | ||
1216 | mask &= ~(uint)PermissionMask.Copy; | ||
1217 | if ((item.CurrentPermissions & (uint)PermissionMask.Transfer) == 0) | ||
1218 | mask &= ~(uint)PermissionMask.Transfer; | ||
1219 | if ((item.CurrentPermissions & (uint)PermissionMask.Modify) == 0) | ||
1220 | mask &= ~(uint)PermissionMask.Modify; | ||
1023 | } | 1221 | } |
1024 | |||
1025 | return mask; | 1222 | return mask; |
1026 | } | 1223 | } |
1027 | 1224 | ||
1028 | public void ApplyNextOwnerPermissions() | 1225 | public void ApplyNextOwnerPermissions() |
1029 | { | 1226 | { |
1030 | lock (m_items) | 1227 | foreach (TaskInventoryItem item in m_items.Values) |
1031 | { | 1228 | { |
1032 | foreach (TaskInventoryItem item in m_items.Values) | 1229 | if (item.InvType == (int)InventoryType.Object && (item.CurrentPermissions & 7) != 0) |
1033 | { | 1230 | { |
1034 | if (item.InvType == (int)InventoryType.Object && (item.CurrentPermissions & 7) != 0) | 1231 | if ((item.CurrentPermissions & ((uint)PermissionMask.Copy >> 13)) == 0) |
1035 | { | 1232 | item.CurrentPermissions &= ~(uint)PermissionMask.Copy; |
1036 | if ((item.CurrentPermissions & ((uint)PermissionMask.Copy >> 13)) == 0) | 1233 | if ((item.CurrentPermissions & ((uint)PermissionMask.Transfer >> 13)) == 0) |
1037 | item.CurrentPermissions &= ~(uint)PermissionMask.Copy; | 1234 | item.CurrentPermissions &= ~(uint)PermissionMask.Transfer; |
1038 | if ((item.CurrentPermissions & ((uint)PermissionMask.Transfer >> 13)) == 0) | 1235 | if ((item.CurrentPermissions & ((uint)PermissionMask.Modify >> 13)) == 0) |
1039 | item.CurrentPermissions &= ~(uint)PermissionMask.Transfer; | 1236 | item.CurrentPermissions &= ~(uint)PermissionMask.Modify; |
1040 | if ((item.CurrentPermissions & ((uint)PermissionMask.Modify >> 13)) == 0) | ||
1041 | item.CurrentPermissions &= ~(uint)PermissionMask.Modify; | ||
1042 | } | ||
1043 | item.CurrentPermissions &= item.NextPermissions; | ||
1044 | item.BasePermissions &= item.NextPermissions; | ||
1045 | item.EveryonePermissions &= item.NextPermissions; | ||
1046 | item.OwnerChanged = true; | ||
1047 | item.PermsMask = 0; | ||
1048 | item.PermsGranter = UUID.Zero; | ||
1049 | } | 1237 | } |
1238 | item.OwnerChanged = true; | ||
1239 | item.CurrentPermissions &= item.NextPermissions; | ||
1240 | item.BasePermissions &= item.NextPermissions; | ||
1241 | item.EveryonePermissions &= item.NextPermissions; | ||
1242 | item.PermsMask = 0; | ||
1243 | item.PermsGranter = UUID.Zero; | ||
1050 | } | 1244 | } |
1051 | } | 1245 | } |
1052 | 1246 | ||
1053 | public void ApplyGodPermissions(uint perms) | 1247 | public void ApplyGodPermissions(uint perms) |
1054 | { | 1248 | { |
1055 | lock (m_items) | 1249 | foreach (TaskInventoryItem item in m_items.Values) |
1056 | { | 1250 | { |
1057 | foreach (TaskInventoryItem item in m_items.Values) | 1251 | item.CurrentPermissions = perms; |
1058 | { | 1252 | item.BasePermissions = perms; |
1059 | item.CurrentPermissions = perms; | ||
1060 | item.BasePermissions = perms; | ||
1061 | } | ||
1062 | } | 1253 | } |
1063 | 1254 | ||
1064 | m_inventorySerial++; | 1255 | m_inventorySerial++; |
@@ -1071,14 +1262,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1071 | /// <returns></returns> | 1262 | /// <returns></returns> |
1072 | public bool ContainsScripts() | 1263 | public bool ContainsScripts() |
1073 | { | 1264 | { |
1074 | lock (m_items) | 1265 | foreach (TaskInventoryItem item in m_items.Values) |
1075 | { | 1266 | { |
1076 | foreach (TaskInventoryItem item in m_items.Values) | 1267 | if (item.InvType == (int)InventoryType.LSL) |
1077 | { | 1268 | { |
1078 | if (item.InvType == (int)InventoryType.LSL) | 1269 | return true; |
1079 | { | ||
1080 | return true; | ||
1081 | } | ||
1082 | } | 1270 | } |
1083 | } | 1271 | } |
1084 | 1272 | ||
@@ -1092,17 +1280,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
1092 | public int ScriptCount() | 1280 | public int ScriptCount() |
1093 | { | 1281 | { |
1094 | int count = 0; | 1282 | int count = 0; |
1095 | lock (m_items) | 1283 | Items.LockItemsForRead(true); |
1284 | foreach (TaskInventoryItem item in m_items.Values) | ||
1096 | { | 1285 | { |
1097 | foreach (TaskInventoryItem item in m_items.Values) | 1286 | if (item.InvType == (int)InventoryType.LSL) |
1098 | { | 1287 | { |
1099 | if (item.InvType == (int)InventoryType.LSL) | 1288 | count++; |
1100 | { | ||
1101 | count++; | ||
1102 | } | ||
1103 | } | 1289 | } |
1104 | } | 1290 | } |
1105 | 1291 | Items.LockItemsForRead(false); | |
1106 | return count; | 1292 | return count; |
1107 | } | 1293 | } |
1108 | /// <summary> | 1294 | /// <summary> |
@@ -1138,11 +1324,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1138 | { | 1324 | { |
1139 | List<UUID> ret = new List<UUID>(); | 1325 | List<UUID> ret = new List<UUID>(); |
1140 | 1326 | ||
1141 | lock (m_items) | 1327 | foreach (TaskInventoryItem item in m_items.Values) |
1142 | { | 1328 | ret.Add(item.ItemID); |
1143 | foreach (TaskInventoryItem item in m_items.Values) | ||
1144 | ret.Add(item.ItemID); | ||
1145 | } | ||
1146 | 1329 | ||
1147 | return ret; | 1330 | return ret; |
1148 | } | 1331 | } |
@@ -1151,8 +1334,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1151 | { | 1334 | { |
1152 | List<TaskInventoryItem> ret = new List<TaskInventoryItem>(); | 1335 | List<TaskInventoryItem> ret = new List<TaskInventoryItem>(); |
1153 | 1336 | ||
1154 | lock (m_items) | 1337 | Items.LockItemsForRead(true); |
1155 | ret = new List<TaskInventoryItem>(m_items.Values); | 1338 | ret = new List<TaskInventoryItem>(m_items.Values); |
1339 | Items.LockItemsForRead(false); | ||
1156 | 1340 | ||
1157 | return ret; | 1341 | return ret; |
1158 | } | 1342 | } |
@@ -1161,18 +1345,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
1161 | { | 1345 | { |
1162 | List<TaskInventoryItem> ret = new List<TaskInventoryItem>(); | 1346 | List<TaskInventoryItem> ret = new List<TaskInventoryItem>(); |
1163 | 1347 | ||
1164 | lock (m_items) | 1348 | Items.LockItemsForRead(true); |
1165 | { | 1349 | |
1166 | foreach (TaskInventoryItem item in m_items.Values) | 1350 | foreach (TaskInventoryItem item in m_items.Values) |
1167 | if (item.InvType == (int)type) | 1351 | if (item.InvType == (int)type) |
1168 | ret.Add(item); | 1352 | ret.Add(item); |
1169 | } | 1353 | |
1354 | Items.LockItemsForRead(false); | ||
1170 | 1355 | ||
1171 | return ret; | 1356 | return ret; |
1172 | } | 1357 | } |
1173 | 1358 | ||
1174 | public Dictionary<UUID, string> GetScriptStates() | 1359 | public Dictionary<UUID, string> GetScriptStates() |
1175 | { | 1360 | { |
1361 | return GetScriptStates(false); | ||
1362 | } | ||
1363 | |||
1364 | public Dictionary<UUID, string> GetScriptStates(bool oldIDs) | ||
1365 | { | ||
1176 | Dictionary<UUID, string> ret = new Dictionary<UUID, string>(); | 1366 | Dictionary<UUID, string> ret = new Dictionary<UUID, string>(); |
1177 | 1367 | ||
1178 | if (m_part.ParentGroup.Scene == null) // Group not in a scene | 1368 | if (m_part.ParentGroup.Scene == null) // Group not in a scene |
@@ -1194,14 +1384,21 @@ namespace OpenSim.Region.Framework.Scenes | |||
1194 | string n = e.GetXMLState(item.ItemID); | 1384 | string n = e.GetXMLState(item.ItemID); |
1195 | if (n != String.Empty) | 1385 | if (n != String.Empty) |
1196 | { | 1386 | { |
1197 | if (!ret.ContainsKey(item.ItemID)) | 1387 | if (oldIDs) |
1198 | ret[item.ItemID] = n; | 1388 | { |
1389 | if (!ret.ContainsKey(item.OldItemID)) | ||
1390 | ret[item.OldItemID] = n; | ||
1391 | } | ||
1392 | else | ||
1393 | { | ||
1394 | if (!ret.ContainsKey(item.ItemID)) | ||
1395 | ret[item.ItemID] = n; | ||
1396 | } | ||
1199 | break; | 1397 | break; |
1200 | } | 1398 | } |
1201 | } | 1399 | } |
1202 | } | 1400 | } |
1203 | } | 1401 | } |
1204 | |||
1205 | return ret; | 1402 | return ret; |
1206 | } | 1403 | } |
1207 | 1404 | ||
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index e8178ce..ebfc1bd 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -92,7 +92,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
92 | /// rotation, prim cut, prim twist, prim taper, and prim shear. See mantis | 92 | /// rotation, prim cut, prim twist, prim taper, and prim shear. See mantis |
93 | /// issue #1716 | 93 | /// issue #1716 |
94 | /// </summary> | 94 | /// </summary> |
95 | public static readonly Vector3 SIT_TARGET_ADJUSTMENT = new Vector3(0.0f, 0.0f, 0.418f); | 95 | public static readonly Vector3 SIT_TARGET_ADJUSTMENT = new Vector3(0.0f, 0.0f, 0.4f); |
96 | 96 | ||
97 | /// <summary> | 97 | /// <summary> |
98 | /// Movement updates for agents in neighboring regions are sent directly to clients. | 98 | /// Movement updates for agents in neighboring regions are sent directly to clients. |
@@ -169,6 +169,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
169 | // private int m_lastColCount = -1; //KF: Look for Collision chnages | 169 | // private int m_lastColCount = -1; //KF: Look for Collision chnages |
170 | // private int m_updateCount = 0; //KF: Update Anims for a while | 170 | // private int m_updateCount = 0; //KF: Update Anims for a while |
171 | // private static readonly int UPDATE_COUNT = 10; // how many frames to update for | 171 | // private static readonly int UPDATE_COUNT = 10; // how many frames to update for |
172 | private List<uint> m_lastColliders = new List<uint>(); | ||
172 | 173 | ||
173 | private TeleportFlags m_teleportFlags; | 174 | private TeleportFlags m_teleportFlags; |
174 | public TeleportFlags TeleportFlags | 175 | public TeleportFlags TeleportFlags |
@@ -230,6 +231,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
230 | //private int m_moveToPositionStateStatus; | 231 | //private int m_moveToPositionStateStatus; |
231 | //***************************************************** | 232 | //***************************************************** |
232 | 233 | ||
234 | private bool m_collisionEventFlag = false; | ||
235 | private object m_collisionEventLock = new Object(); | ||
236 | |||
237 | private int m_movementAnimationUpdateCounter = 0; | ||
238 | |||
239 | private Vector3 m_prevSitOffset; | ||
240 | |||
233 | protected AvatarAppearance m_appearance; | 241 | protected AvatarAppearance m_appearance; |
234 | 242 | ||
235 | public AvatarAppearance Appearance | 243 | public AvatarAppearance Appearance |
@@ -569,6 +577,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
569 | /// </summary> | 577 | /// </summary> |
570 | public uint ParentID { get; set; } | 578 | public uint ParentID { get; set; } |
571 | 579 | ||
580 | public UUID ParentUUID | ||
581 | { | ||
582 | get { return m_parentUUID; } | ||
583 | set { m_parentUUID = value; } | ||
584 | } | ||
585 | private UUID m_parentUUID = UUID.Zero; | ||
586 | |||
572 | /// <summary> | 587 | /// <summary> |
573 | /// If the avatar is sitting, the prim that it's sitting on. If not sitting then null. | 588 | /// If the avatar is sitting, the prim that it's sitting on. If not sitting then null. |
574 | /// </summary> | 589 | /// </summary> |
@@ -729,6 +744,27 @@ namespace OpenSim.Region.Framework.Scenes | |||
729 | Appearance = appearance; | 744 | Appearance = appearance; |
730 | } | 745 | } |
731 | 746 | ||
747 | private void RegionHeartbeatEnd(Scene scene) | ||
748 | { | ||
749 | if (IsChildAgent) | ||
750 | return; | ||
751 | |||
752 | m_movementAnimationUpdateCounter ++; | ||
753 | if (m_movementAnimationUpdateCounter >= 2) | ||
754 | { | ||
755 | m_movementAnimationUpdateCounter = 0; | ||
756 | if (Animator != null) | ||
757 | { | ||
758 | if(ParentID == 0) // skip it if sitting | ||
759 | Animator.UpdateMovementAnimations(); | ||
760 | } | ||
761 | else | ||
762 | { | ||
763 | m_scene.EventManager.OnRegionHeartbeatEnd -= RegionHeartbeatEnd; | ||
764 | } | ||
765 | } | ||
766 | } | ||
767 | |||
732 | public void RegisterToEvents() | 768 | public void RegisterToEvents() |
733 | { | 769 | { |
734 | ControllingClient.OnCompleteMovementToRegion += CompleteMovement; | 770 | ControllingClient.OnCompleteMovementToRegion += CompleteMovement; |
@@ -798,10 +834,38 @@ namespace OpenSim.Region.Framework.Scenes | |||
798 | "[SCENE]: Upgrading child to root agent for {0} in {1}", | 834 | "[SCENE]: Upgrading child to root agent for {0} in {1}", |
799 | Name, m_scene.RegionInfo.RegionName); | 835 | Name, m_scene.RegionInfo.RegionName); |
800 | 836 | ||
801 | //m_log.DebugFormat("[SCENE]: known regions in {0}: {1}", Scene.RegionInfo.RegionName, KnownChildRegionHandles.Count); | ||
802 | |||
803 | bool wasChild = IsChildAgent; | 837 | bool wasChild = IsChildAgent; |
804 | IsChildAgent = false; | 838 | |
839 | if (ParentUUID != UUID.Zero) | ||
840 | { | ||
841 | m_log.DebugFormat("[SCENE PRESENCE]: Sitting avatar back on prim {0}", ParentUUID); | ||
842 | SceneObjectPart part = m_scene.GetSceneObjectPart(ParentUUID); | ||
843 | if (part == null) | ||
844 | { | ||
845 | m_log.ErrorFormat("[SCENE PRESENCE]: Can't find prim {0} to sit on", ParentUUID); | ||
846 | } | ||
847 | else | ||
848 | { | ||
849 | part.ParentGroup.AddAvatar(UUID); | ||
850 | if (part.SitTargetPosition != Vector3.Zero) | ||
851 | part.SitTargetAvatar = UUID; | ||
852 | ParentPosition = part.GetWorldPosition(); | ||
853 | ParentID = part.LocalId; | ||
854 | ParentPart = part; | ||
855 | m_pos = m_prevSitOffset; | ||
856 | pos = ParentPosition; | ||
857 | } | ||
858 | ParentUUID = UUID.Zero; | ||
859 | |||
860 | IsChildAgent = false; | ||
861 | |||
862 | Animator.TrySetMovementAnimation("SIT"); | ||
863 | } | ||
864 | else | ||
865 | { | ||
866 | IsChildAgent = false; | ||
867 | } | ||
868 | |||
805 | 869 | ||
806 | IGroupsModule gm = m_scene.RequestModuleInterface<IGroupsModule>(); | 870 | IGroupsModule gm = m_scene.RequestModuleInterface<IGroupsModule>(); |
807 | if (gm != null) | 871 | if (gm != null) |
@@ -811,62 +875,64 @@ namespace OpenSim.Region.Framework.Scenes | |||
811 | 875 | ||
812 | m_scene.EventManager.TriggerSetRootAgentScene(m_uuid, m_scene); | 876 | m_scene.EventManager.TriggerSetRootAgentScene(m_uuid, m_scene); |
813 | 877 | ||
814 | // Moved this from SendInitialData to ensure that Appearance is initialized | 878 | if (ParentID == 0) |
815 | // before the inventory is processed in MakeRootAgent. This fixes a race condition | ||
816 | // related to the handling of attachments | ||
817 | //m_scene.GetAvatarAppearance(ControllingClient, out Appearance); | ||
818 | if (m_scene.TestBorderCross(pos, Cardinals.E)) | ||
819 | { | 879 | { |
820 | Border crossedBorder = m_scene.GetCrossedBorder(pos, Cardinals.E); | 880 | // Moved this from SendInitialData to ensure that Appearance is initialized |
821 | pos.X = crossedBorder.BorderLine.Z - 1; | 881 | // before the inventory is processed in MakeRootAgent. This fixes a race condition |
822 | } | 882 | // related to the handling of attachments |
883 | //m_scene.GetAvatarAppearance(ControllingClient, out Appearance); | ||
884 | if (m_scene.TestBorderCross(pos, Cardinals.E)) | ||
885 | { | ||
886 | Border crossedBorder = m_scene.GetCrossedBorder(pos, Cardinals.E); | ||
887 | pos.X = crossedBorder.BorderLine.Z - 1; | ||
888 | } | ||
823 | 889 | ||
824 | if (m_scene.TestBorderCross(pos, Cardinals.N)) | 890 | if (m_scene.TestBorderCross(pos, Cardinals.N)) |
825 | { | 891 | { |
826 | Border crossedBorder = m_scene.GetCrossedBorder(pos, Cardinals.N); | 892 | Border crossedBorder = m_scene.GetCrossedBorder(pos, Cardinals.N); |
827 | pos.Y = crossedBorder.BorderLine.Z - 1; | 893 | pos.Y = crossedBorder.BorderLine.Z - 1; |
828 | } | 894 | } |
829 | 895 | ||
830 | CheckAndAdjustLandingPoint(ref pos); | 896 | CheckAndAdjustLandingPoint(ref pos); |
831 | 897 | ||
832 | if (pos.X < 0f || pos.Y < 0f || pos.Z < 0f) | 898 | if (pos.X < 0f || pos.Y < 0f || pos.Z < 0f) |
833 | { | 899 | { |
834 | m_log.WarnFormat( | 900 | m_log.WarnFormat( |
835 | "[SCENE PRESENCE]: MakeRootAgent() was given an illegal position of {0} for avatar {1}, {2}. Clamping", | 901 | "[SCENE PRESENCE]: MakeRootAgent() was given an illegal position of {0} for avatar {1}, {2}. Clamping", |
836 | pos, Name, UUID); | 902 | pos, Name, UUID); |
837 | 903 | ||
838 | if (pos.X < 0f) pos.X = 0f; | 904 | if (pos.X < 0f) pos.X = 0f; |
839 | if (pos.Y < 0f) pos.Y = 0f; | 905 | if (pos.Y < 0f) pos.Y = 0f; |
840 | if (pos.Z < 0f) pos.Z = 0f; | 906 | if (pos.Z < 0f) pos.Z = 0f; |
841 | } | 907 | } |
842 | 908 | ||
843 | float localAVHeight = 1.56f; | 909 | float localAVHeight = 1.56f; |
844 | if (Appearance.AvatarHeight > 0) | 910 | if (Appearance.AvatarHeight > 0) |
845 | localAVHeight = Appearance.AvatarHeight; | 911 | localAVHeight = Appearance.AvatarHeight; |
846 | 912 | ||
847 | float posZLimit = 0; | 913 | float posZLimit = 0; |
848 | 914 | ||
849 | if (pos.X < Constants.RegionSize && pos.Y < Constants.RegionSize) | 915 | if (pos.X < Constants.RegionSize && pos.Y < Constants.RegionSize) |
850 | posZLimit = (float)m_scene.Heightmap[(int)pos.X, (int)pos.Y]; | 916 | posZLimit = (float)m_scene.Heightmap[(int)pos.X, (int)pos.Y]; |
851 | 917 | ||
852 | float newPosZ = posZLimit + localAVHeight / 2; | 918 | float newPosZ = posZLimit + localAVHeight / 2; |
853 | if (posZLimit >= (pos.Z - (localAVHeight / 2)) && !(Single.IsInfinity(newPosZ) || Single.IsNaN(newPosZ))) | 919 | if (posZLimit >= (pos.Z - (localAVHeight / 2)) && !(Single.IsInfinity(newPosZ) || Single.IsNaN(newPosZ))) |
854 | { | 920 | { |
855 | pos.Z = newPosZ; | 921 | pos.Z = newPosZ; |
856 | } | 922 | } |
857 | AbsolutePosition = pos; | 923 | AbsolutePosition = pos; |
858 | 924 | ||
859 | AddToPhysicalScene(isFlying); | 925 | AddToPhysicalScene(isFlying); |
860 | 926 | ||
861 | if (ForceFly) | 927 | if (ForceFly) |
862 | { | 928 | { |
863 | Flying = true; | 929 | Flying = true; |
864 | } | 930 | } |
865 | else if (FlyDisabled) | 931 | else if (FlyDisabled) |
866 | { | 932 | { |
867 | Flying = false; | 933 | Flying = false; |
934 | } | ||
868 | } | 935 | } |
869 | |||
870 | // Don't send an animation pack here, since on a region crossing this will sometimes cause a flying | 936 | // Don't send an animation pack here, since on a region crossing this will sometimes cause a flying |
871 | // avatar to return to the standing position in mid-air. On login it looks like this is being sent | 937 | // avatar to return to the standing position in mid-air. On login it looks like this is being sent |
872 | // elsewhere anyway | 938 | // elsewhere anyway |
@@ -884,14 +950,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
884 | { | 950 | { |
885 | m_log.DebugFormat("[SCENE PRESENCE]: Restarting scripts in attachments..."); | 951 | m_log.DebugFormat("[SCENE PRESENCE]: Restarting scripts in attachments..."); |
886 | // Resume scripts | 952 | // Resume scripts |
887 | foreach (SceneObjectGroup sog in m_attachments) | 953 | Util.FireAndForget(delegate(object x) { |
888 | { | 954 | foreach (SceneObjectGroup sog in m_attachments) |
889 | sog.RootPart.ParentGroup.CreateScriptInstances(0, false, m_scene.DefaultScriptEngine, GetStateSource()); | 955 | { |
890 | sog.ResumeScripts(); | 956 | sog.ScheduleGroupForFullUpdate(); |
891 | } | 957 | sog.RootPart.ParentGroup.CreateScriptInstances(0, false, m_scene.DefaultScriptEngine, GetStateSource()); |
958 | sog.ResumeScripts(); | ||
959 | } | ||
960 | }); | ||
892 | } | 961 | } |
893 | } | 962 | } |
894 | 963 | ||
964 | SendAvatarDataToAllAgents(); | ||
965 | |||
895 | // send the animations of the other presences to me | 966 | // send the animations of the other presences to me |
896 | m_scene.ForEachRootScenePresence(delegate(ScenePresence presence) | 967 | m_scene.ForEachRootScenePresence(delegate(ScenePresence presence) |
897 | { | 968 | { |
@@ -905,6 +976,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
905 | MovementFlag = 0; | 976 | MovementFlag = 0; |
906 | 977 | ||
907 | m_scene.EventManager.TriggerOnMakeRootAgent(this); | 978 | m_scene.EventManager.TriggerOnMakeRootAgent(this); |
979 | |||
980 | m_scene.EventManager.OnRegionHeartbeatEnd += RegionHeartbeatEnd; | ||
908 | } | 981 | } |
909 | 982 | ||
910 | public int GetStateSource() | 983 | public int GetStateSource() |
@@ -932,6 +1005,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
932 | /// </remarks> | 1005 | /// </remarks> |
933 | public void MakeChildAgent() | 1006 | public void MakeChildAgent() |
934 | { | 1007 | { |
1008 | m_scene.EventManager.OnRegionHeartbeatEnd -= RegionHeartbeatEnd; | ||
1009 | |||
935 | m_log.DebugFormat("[SCENE PRESENCE]: Making {0} a child agent in {1}", Name, Scene.RegionInfo.RegionName); | 1010 | m_log.DebugFormat("[SCENE PRESENCE]: Making {0} a child agent in {1}", Name, Scene.RegionInfo.RegionName); |
936 | 1011 | ||
937 | // Reset these so that teleporting in and walking out isn't seen | 1012 | // Reset these so that teleporting in and walking out isn't seen |
@@ -990,7 +1065,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
990 | /// <param name="pos"></param> | 1065 | /// <param name="pos"></param> |
991 | public void Teleport(Vector3 pos) | 1066 | public void Teleport(Vector3 pos) |
992 | { | 1067 | { |
993 | TeleportWithMomentum(pos, null); | 1068 | TeleportWithMomentum(pos, Vector3.Zero); |
994 | } | 1069 | } |
995 | 1070 | ||
996 | public void TeleportWithMomentum(Vector3 pos, Vector3? v) | 1071 | public void TeleportWithMomentum(Vector3 pos, Vector3? v) |
@@ -1312,8 +1387,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
1312 | { | 1387 | { |
1313 | if (m_followCamAuto) | 1388 | if (m_followCamAuto) |
1314 | { | 1389 | { |
1315 | Vector3 posAdjusted = m_pos + HEAD_ADJUSTMENT; | 1390 | // Vector3 posAdjusted = m_pos + HEAD_ADJUSTMENT; |
1316 | m_scene.PhysicsScene.RaycastWorld(m_pos, Vector3.Normalize(CameraPosition - posAdjusted), Vector3.Distance(CameraPosition, posAdjusted) + 0.3f, RayCastCameraCallback); | 1391 | // m_scene.PhysicsScene.RaycastWorld(m_pos, Vector3.Normalize(CameraPosition - posAdjusted), Vector3.Distance(CameraPosition, posAdjusted) + 0.3f, RayCastCameraCallback); |
1392 | |||
1393 | Vector3 posAdjusted = AbsolutePosition + HEAD_ADJUSTMENT; | ||
1394 | Vector3 distTocam = CameraPosition - posAdjusted; | ||
1395 | float distTocamlen = distTocam.Length(); | ||
1396 | if (distTocamlen > 0) | ||
1397 | { | ||
1398 | distTocam *= 1.0f / distTocamlen; | ||
1399 | m_scene.PhysicsScene.RaycastWorld(posAdjusted, distTocam, distTocamlen + 0.3f, RayCastCameraCallback); | ||
1400 | } | ||
1401 | |||
1317 | } | 1402 | } |
1318 | } | 1403 | } |
1319 | 1404 | ||
@@ -1690,9 +1775,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1690 | if (pos.Z - terrainHeight < 0.2) | 1775 | if (pos.Z - terrainHeight < 0.2) |
1691 | pos.Z = terrainHeight; | 1776 | pos.Z = terrainHeight; |
1692 | 1777 | ||
1693 | m_log.DebugFormat( | 1778 | // m_log.DebugFormat( |
1694 | "[SCENE PRESENCE]: Avatar {0} set move to target {1} (terrain height {2}) in {3}", | 1779 | // "[SCENE PRESENCE]: Avatar {0} set move to target {1} (terrain height {2}) in {3}", |
1695 | Name, pos, terrainHeight, m_scene.RegionInfo.RegionName); | 1780 | // Name, pos, terrainHeight, m_scene.RegionInfo.RegionName); |
1696 | 1781 | ||
1697 | if (noFly) | 1782 | if (noFly) |
1698 | Flying = false; | 1783 | Flying = false; |
@@ -1749,8 +1834,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1749 | // m_log.DebugFormat("[SCENE PRESENCE]: StandUp() for {0}", Name); | 1834 | // m_log.DebugFormat("[SCENE PRESENCE]: StandUp() for {0}", Name); |
1750 | 1835 | ||
1751 | SitGround = false; | 1836 | SitGround = false; |
1837 | |||
1838 | /* move this down so avatar gets physical in the new position and not where it is siting | ||
1752 | if (PhysicsActor == null) | 1839 | if (PhysicsActor == null) |
1753 | AddToPhysicalScene(false); | 1840 | AddToPhysicalScene(false); |
1841 | */ | ||
1754 | 1842 | ||
1755 | if (ParentID != 0) | 1843 | if (ParentID != 0) |
1756 | { | 1844 | { |
@@ -1774,6 +1862,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1774 | if (part.SitTargetAvatar == UUID) | 1862 | if (part.SitTargetAvatar == UUID) |
1775 | part.SitTargetAvatar = UUID.Zero; | 1863 | part.SitTargetAvatar = UUID.Zero; |
1776 | 1864 | ||
1865 | part.ParentGroup.DeleteAvatar(UUID); | ||
1777 | ParentPosition = part.GetWorldPosition(); | 1866 | ParentPosition = part.GetWorldPosition(); |
1778 | ControllingClient.SendClearFollowCamProperties(part.ParentUUID); | 1867 | ControllingClient.SendClearFollowCamProperties(part.ParentUUID); |
1779 | 1868 | ||
@@ -1782,6 +1871,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
1782 | 1871 | ||
1783 | ParentID = 0; | 1872 | ParentID = 0; |
1784 | ParentPart = null; | 1873 | ParentPart = null; |
1874 | |||
1875 | if (PhysicsActor == null) | ||
1876 | AddToPhysicalScene(false); | ||
1877 | |||
1785 | SendAvatarDataToAllAgents(); | 1878 | SendAvatarDataToAllAgents(); |
1786 | m_requestedSitTargetID = 0; | 1879 | m_requestedSitTargetID = 0; |
1787 | 1880 | ||
@@ -1789,6 +1882,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1789 | part.ParentGroup.TriggerScriptChangedEvent(Changed.LINK); | 1882 | part.ParentGroup.TriggerScriptChangedEvent(Changed.LINK); |
1790 | } | 1883 | } |
1791 | 1884 | ||
1885 | else if (PhysicsActor == null) | ||
1886 | AddToPhysicalScene(false); | ||
1887 | |||
1792 | Animator.TrySetMovementAnimation("STAND"); | 1888 | Animator.TrySetMovementAnimation("STAND"); |
1793 | } | 1889 | } |
1794 | 1890 | ||
@@ -1912,7 +2008,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1912 | forceMouselook = part.GetForceMouselook(); | 2008 | forceMouselook = part.GetForceMouselook(); |
1913 | 2009 | ||
1914 | ControllingClient.SendSitResponse( | 2010 | ControllingClient.SendSitResponse( |
1915 | targetID, offset, sitOrientation, false, cameraAtOffset, cameraEyeOffset, forceMouselook); | 2011 | part.UUID, offset, sitOrientation, false, cameraAtOffset, cameraEyeOffset, forceMouselook); |
1916 | 2012 | ||
1917 | m_requestedSitTargetUUID = targetID; | 2013 | m_requestedSitTargetUUID = targetID; |
1918 | 2014 | ||
@@ -2194,14 +2290,36 @@ namespace OpenSim.Region.Framework.Scenes | |||
2194 | 2290 | ||
2195 | //Quaternion result = (sitTargetOrient * vq) * nq; | 2291 | //Quaternion result = (sitTargetOrient * vq) * nq; |
2196 | 2292 | ||
2197 | m_pos = sitTargetPos + SIT_TARGET_ADJUSTMENT; | 2293 | double x, y, z, m; |
2294 | |||
2295 | Quaternion r = sitTargetOrient; | ||
2296 | m = r.X * r.X + r.Y * r.Y + r.Z * r.Z + r.W * r.W; | ||
2297 | |||
2298 | if (Math.Abs(1.0 - m) > 0.000001) | ||
2299 | { | ||
2300 | m = 1.0 / Math.Sqrt(m); | ||
2301 | r.X *= (float)m; | ||
2302 | r.Y *= (float)m; | ||
2303 | r.Z *= (float)m; | ||
2304 | r.W *= (float)m; | ||
2305 | } | ||
2306 | |||
2307 | x = 2 * (r.X * r.Z + r.Y * r.W); | ||
2308 | y = 2 * (-r.X * r.W + r.Y * r.Z); | ||
2309 | z = -r.X * r.X - r.Y * r.Y + r.Z * r.Z + r.W * r.W; | ||
2310 | |||
2311 | Vector3 up = new Vector3((float)x, (float)y, (float)z); | ||
2312 | Vector3 sitOffset = up * Appearance.AvatarHeight * 0.02638f; | ||
2313 | m_pos = sitTargetPos + sitOffset + SIT_TARGET_ADJUSTMENT; | ||
2198 | Rotation = sitTargetOrient; | 2314 | Rotation = sitTargetOrient; |
2199 | ParentPosition = part.AbsolutePosition; | 2315 | ParentPosition = part.AbsolutePosition; |
2316 | part.ParentGroup.AddAvatar(UUID); | ||
2200 | } | 2317 | } |
2201 | else | 2318 | else |
2202 | { | 2319 | { |
2203 | m_pos -= part.AbsolutePosition; | 2320 | m_pos -= part.AbsolutePosition; |
2204 | ParentPosition = part.AbsolutePosition; | 2321 | ParentPosition = part.AbsolutePosition; |
2322 | part.ParentGroup.AddAvatar(UUID); | ||
2205 | 2323 | ||
2206 | // m_log.DebugFormat( | 2324 | // m_log.DebugFormat( |
2207 | // "[SCENE PRESENCE]: Sitting {0} at position {1} ({2} + {3}) on part {4} {5} without sit target", | 2325 | // "[SCENE PRESENCE]: Sitting {0} at position {1} ({2} + {3}) on part {4} {5} without sit target", |
@@ -2299,14 +2417,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
2299 | direc.Z *= 2.6f; | 2417 | direc.Z *= 2.6f; |
2300 | 2418 | ||
2301 | // TODO: PreJump and jump happen too quickly. Many times prejump gets ignored. | 2419 | // TODO: PreJump and jump happen too quickly. Many times prejump gets ignored. |
2302 | Animator.TrySetMovementAnimation("PREJUMP"); | 2420 | // Animator.TrySetMovementAnimation("PREJUMP"); |
2303 | Animator.TrySetMovementAnimation("JUMP"); | 2421 | // Animator.TrySetMovementAnimation("JUMP"); |
2304 | } | 2422 | } |
2305 | } | 2423 | } |
2306 | } | 2424 | } |
2307 | 2425 | ||
2308 | // TODO: Add the force instead of only setting it to support multiple forces per frame? | 2426 | // TODO: Add the force instead of only setting it to support multiple forces per frame? |
2309 | m_forceToApply = direc; | 2427 | m_forceToApply = direc; |
2428 | Animator.UpdateMovementAnimations(); | ||
2310 | } | 2429 | } |
2311 | 2430 | ||
2312 | #endregion | 2431 | #endregion |
@@ -3040,6 +3159,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
3040 | cAgent.AlwaysRun = SetAlwaysRun; | 3159 | cAgent.AlwaysRun = SetAlwaysRun; |
3041 | 3160 | ||
3042 | cAgent.Appearance = new AvatarAppearance(Appearance); | 3161 | cAgent.Appearance = new AvatarAppearance(Appearance); |
3162 | |||
3163 | cAgent.ParentPart = ParentUUID; | ||
3164 | cAgent.SitOffset = m_pos; | ||
3043 | 3165 | ||
3044 | lock (scriptedcontrols) | 3166 | lock (scriptedcontrols) |
3045 | { | 3167 | { |
@@ -3099,6 +3221,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
3099 | CameraAtAxis = cAgent.AtAxis; | 3221 | CameraAtAxis = cAgent.AtAxis; |
3100 | CameraLeftAxis = cAgent.LeftAxis; | 3222 | CameraLeftAxis = cAgent.LeftAxis; |
3101 | CameraUpAxis = cAgent.UpAxis; | 3223 | CameraUpAxis = cAgent.UpAxis; |
3224 | ParentUUID = cAgent.ParentPart; | ||
3225 | m_prevSitOffset = cAgent.SitOffset; | ||
3102 | 3226 | ||
3103 | // When we get to the point of re-computing neighbors everytime this | 3227 | // When we get to the point of re-computing neighbors everytime this |
3104 | // changes, then start using the agent's drawdistance rather than the | 3228 | // changes, then start using the agent's drawdistance rather than the |
@@ -3251,18 +3375,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
3251 | if (IsChildAgent) | 3375 | if (IsChildAgent) |
3252 | return; | 3376 | return; |
3253 | 3377 | ||
3254 | //if ((Math.Abs(Velocity.X) > 0.1e-9f) || (Math.Abs(Velocity.Y) > 0.1e-9f)) | ||
3255 | // The Physics Scene will send updates every 500 ms grep: PhysicsActor.SubscribeEvents( | ||
3256 | // as of this comment the interval is set in AddToPhysicalScene | ||
3257 | if (Animator != null) | ||
3258 | { | ||
3259 | // if (m_updateCount > 0) | ||
3260 | // { | ||
3261 | Animator.UpdateMovementAnimations(); | ||
3262 | // m_updateCount--; | ||
3263 | // } | ||
3264 | } | ||
3265 | |||
3266 | CollisionEventUpdate collisionData = (CollisionEventUpdate)e; | 3378 | CollisionEventUpdate collisionData = (CollisionEventUpdate)e; |
3267 | Dictionary<uint, ContactPoint> coldata = collisionData.m_objCollisionList; | 3379 | Dictionary<uint, ContactPoint> coldata = collisionData.m_objCollisionList; |
3268 | 3380 | ||
@@ -3305,6 +3417,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
3305 | } | 3417 | } |
3306 | } | 3418 | } |
3307 | 3419 | ||
3420 | RaiseCollisionScriptEvents(coldata); | ||
3421 | |||
3308 | if (Invulnerable) | 3422 | if (Invulnerable) |
3309 | return; | 3423 | return; |
3310 | 3424 | ||
@@ -3889,6 +4003,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
3889 | 4003 | ||
3890 | private void CheckAndAdjustLandingPoint(ref Vector3 pos) | 4004 | private void CheckAndAdjustLandingPoint(ref Vector3 pos) |
3891 | { | 4005 | { |
4006 | string reason; | ||
4007 | |||
4008 | // Honor bans | ||
4009 | if (!m_scene.TestLandRestrictions(UUID, out reason, ref pos.X, ref pos.Y)) | ||
4010 | return; | ||
4011 | |||
3892 | SceneObjectGroup telehub = null; | 4012 | SceneObjectGroup telehub = null; |
3893 | if (m_scene.RegionInfo.RegionSettings.TelehubObject != UUID.Zero && (telehub = m_scene.GetSceneObjectGroup(m_scene.RegionInfo.RegionSettings.TelehubObject)) != null) | 4013 | if (m_scene.RegionInfo.RegionSettings.TelehubObject != UUID.Zero && (telehub = m_scene.GetSceneObjectGroup(m_scene.RegionInfo.RegionSettings.TelehubObject)) != null) |
3894 | { | 4014 | { |
@@ -3928,11 +4048,173 @@ namespace OpenSim.Region.Framework.Scenes | |||
3928 | pos = land.LandData.UserLocation; | 4048 | pos = land.LandData.UserLocation; |
3929 | } | 4049 | } |
3930 | } | 4050 | } |
3931 | 4051 | ||
3932 | land.SendLandUpdateToClient(ControllingClient); | 4052 | land.SendLandUpdateToClient(ControllingClient); |
3933 | } | 4053 | } |
3934 | } | 4054 | } |
3935 | 4055 | ||
4056 | private void RaiseCollisionScriptEvents(Dictionary<uint, ContactPoint> coldata) | ||
4057 | { | ||
4058 | lock(m_collisionEventLock) | ||
4059 | { | ||
4060 | if (m_collisionEventFlag) | ||
4061 | return; | ||
4062 | m_collisionEventFlag = true; | ||
4063 | } | ||
4064 | |||
4065 | Util.FireAndForget(delegate(object x) | ||
4066 | { | ||
4067 | try | ||
4068 | { | ||
4069 | List<uint> thisHitColliders = new List<uint>(); | ||
4070 | List<uint> endedColliders = new List<uint>(); | ||
4071 | List<uint> startedColliders = new List<uint>(); | ||
4072 | |||
4073 | foreach (uint localid in coldata.Keys) | ||
4074 | { | ||
4075 | thisHitColliders.Add(localid); | ||
4076 | if (!m_lastColliders.Contains(localid)) | ||
4077 | { | ||
4078 | startedColliders.Add(localid); | ||
4079 | } | ||
4080 | //m_log.Debug("[SCENE PRESENCE]: Collided with:" + localid.ToString() + " at depth of: " + collissionswith[localid].ToString()); | ||
4081 | } | ||
4082 | |||
4083 | // calculate things that ended colliding | ||
4084 | foreach (uint localID in m_lastColliders) | ||
4085 | { | ||
4086 | if (!thisHitColliders.Contains(localID)) | ||
4087 | { | ||
4088 | endedColliders.Add(localID); | ||
4089 | } | ||
4090 | } | ||
4091 | //add the items that started colliding this time to the last colliders list. | ||
4092 | foreach (uint localID in startedColliders) | ||
4093 | { | ||
4094 | m_lastColliders.Add(localID); | ||
4095 | } | ||
4096 | // remove things that ended colliding from the last colliders list | ||
4097 | foreach (uint localID in endedColliders) | ||
4098 | { | ||
4099 | m_lastColliders.Remove(localID); | ||
4100 | } | ||
4101 | |||
4102 | // do event notification | ||
4103 | if (startedColliders.Count > 0) | ||
4104 | { | ||
4105 | ColliderArgs StartCollidingMessage = new ColliderArgs(); | ||
4106 | List<DetectedObject> colliding = new List<DetectedObject>(); | ||
4107 | foreach (uint localId in startedColliders) | ||
4108 | { | ||
4109 | if (localId == 0) | ||
4110 | continue; | ||
4111 | |||
4112 | SceneObjectPart obj = Scene.GetSceneObjectPart(localId); | ||
4113 | string data = ""; | ||
4114 | if (obj != null) | ||
4115 | { | ||
4116 | DetectedObject detobj = new DetectedObject(); | ||
4117 | detobj.keyUUID = obj.UUID; | ||
4118 | detobj.nameStr = obj.Name; | ||
4119 | detobj.ownerUUID = obj.OwnerID; | ||
4120 | detobj.posVector = obj.AbsolutePosition; | ||
4121 | detobj.rotQuat = obj.GetWorldRotation(); | ||
4122 | detobj.velVector = obj.Velocity; | ||
4123 | detobj.colliderType = 0; | ||
4124 | detobj.groupUUID = obj.GroupID; | ||
4125 | colliding.Add(detobj); | ||
4126 | } | ||
4127 | } | ||
4128 | |||
4129 | if (colliding.Count > 0) | ||
4130 | { | ||
4131 | StartCollidingMessage.Colliders = colliding; | ||
4132 | |||
4133 | foreach (SceneObjectGroup att in GetAttachments()) | ||
4134 | Scene.EventManager.TriggerScriptCollidingStart(att.LocalId, StartCollidingMessage); | ||
4135 | } | ||
4136 | } | ||
4137 | |||
4138 | if (endedColliders.Count > 0) | ||
4139 | { | ||
4140 | ColliderArgs EndCollidingMessage = new ColliderArgs(); | ||
4141 | List<DetectedObject> colliding = new List<DetectedObject>(); | ||
4142 | foreach (uint localId in endedColliders) | ||
4143 | { | ||
4144 | if (localId == 0) | ||
4145 | continue; | ||
4146 | |||
4147 | SceneObjectPart obj = Scene.GetSceneObjectPart(localId); | ||
4148 | string data = ""; | ||
4149 | if (obj != null) | ||
4150 | { | ||
4151 | DetectedObject detobj = new DetectedObject(); | ||
4152 | detobj.keyUUID = obj.UUID; | ||
4153 | detobj.nameStr = obj.Name; | ||
4154 | detobj.ownerUUID = obj.OwnerID; | ||
4155 | detobj.posVector = obj.AbsolutePosition; | ||
4156 | detobj.rotQuat = obj.GetWorldRotation(); | ||
4157 | detobj.velVector = obj.Velocity; | ||
4158 | detobj.colliderType = 0; | ||
4159 | detobj.groupUUID = obj.GroupID; | ||
4160 | colliding.Add(detobj); | ||
4161 | } | ||
4162 | } | ||
4163 | |||
4164 | if (colliding.Count > 0) | ||
4165 | { | ||
4166 | EndCollidingMessage.Colliders = colliding; | ||
4167 | |||
4168 | foreach (SceneObjectGroup att in GetAttachments()) | ||
4169 | Scene.EventManager.TriggerScriptCollidingEnd(att.LocalId, EndCollidingMessage); | ||
4170 | } | ||
4171 | } | ||
4172 | |||
4173 | if (thisHitColliders.Count > 0) | ||
4174 | { | ||
4175 | ColliderArgs CollidingMessage = new ColliderArgs(); | ||
4176 | List<DetectedObject> colliding = new List<DetectedObject>(); | ||
4177 | foreach (uint localId in thisHitColliders) | ||
4178 | { | ||
4179 | if (localId == 0) | ||
4180 | continue; | ||
4181 | |||
4182 | SceneObjectPart obj = Scene.GetSceneObjectPart(localId); | ||
4183 | string data = ""; | ||
4184 | if (obj != null) | ||
4185 | { | ||
4186 | DetectedObject detobj = new DetectedObject(); | ||
4187 | detobj.keyUUID = obj.UUID; | ||
4188 | detobj.nameStr = obj.Name; | ||
4189 | detobj.ownerUUID = obj.OwnerID; | ||
4190 | detobj.posVector = obj.AbsolutePosition; | ||
4191 | detobj.rotQuat = obj.GetWorldRotation(); | ||
4192 | detobj.velVector = obj.Velocity; | ||
4193 | detobj.colliderType = 0; | ||
4194 | detobj.groupUUID = obj.GroupID; | ||
4195 | colliding.Add(detobj); | ||
4196 | } | ||
4197 | } | ||
4198 | |||
4199 | if (colliding.Count > 0) | ||
4200 | { | ||
4201 | CollidingMessage.Colliders = colliding; | ||
4202 | |||
4203 | lock (m_attachments) | ||
4204 | { | ||
4205 | foreach (SceneObjectGroup att in m_attachments) | ||
4206 | Scene.EventManager.TriggerScriptColliding(att.LocalId, CollidingMessage); | ||
4207 | } | ||
4208 | } | ||
4209 | } | ||
4210 | } | ||
4211 | finally | ||
4212 | { | ||
4213 | m_collisionEventFlag = false; | ||
4214 | } | ||
4215 | }); | ||
4216 | } | ||
4217 | |||
3936 | private void TeleportFlagsDebug() { | 4218 | private void TeleportFlagsDebug() { |
3937 | 4219 | ||
3938 | // Some temporary debugging help to show all the TeleportFlags we have... | 4220 | // Some temporary debugging help to show all the TeleportFlags we have... |
@@ -3957,6 +4239,5 @@ namespace OpenSim.Region.Framework.Scenes | |||
3957 | m_log.InfoFormat("[SCENE PRESENCE]: TELEPORT ******************"); | 4239 | m_log.InfoFormat("[SCENE PRESENCE]: TELEPORT ******************"); |
3958 | 4240 | ||
3959 | } | 4241 | } |
3960 | |||
3961 | } | 4242 | } |
3962 | } | 4243 | } |
diff --git a/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs b/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs index e6b88a3..1cd8189 100644 --- a/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs +++ b/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs | |||
@@ -244,6 +244,12 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
244 | sr.Close(); | 244 | sr.Close(); |
245 | } | 245 | } |
246 | 246 | ||
247 | XmlNodeList keymotion = doc.GetElementsByTagName("KeyframeMotion"); | ||
248 | if (keymotion.Count > 0) | ||
249 | sceneObject.RootPart.KeyframeMotion = KeyframeMotion.FromData(sceneObject, Convert.FromBase64String(keymotion[0].InnerText)); | ||
250 | else | ||
251 | sceneObject.RootPart.KeyframeMotion = null; | ||
252 | |||
247 | // Script state may, or may not, exist. Not having any, is NOT | 253 | // Script state may, or may not, exist. Not having any, is NOT |
248 | // ever a problem. | 254 | // ever a problem. |
249 | sceneObject.LoadScriptState(doc); | 255 | sceneObject.LoadScriptState(doc); |
@@ -347,6 +353,21 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
347 | m_SOPXmlProcessors.Add("PayPrice2", ProcessPayPrice2); | 353 | m_SOPXmlProcessors.Add("PayPrice2", ProcessPayPrice2); |
348 | m_SOPXmlProcessors.Add("PayPrice3", ProcessPayPrice3); | 354 | m_SOPXmlProcessors.Add("PayPrice3", ProcessPayPrice3); |
349 | m_SOPXmlProcessors.Add("PayPrice4", ProcessPayPrice4); | 355 | m_SOPXmlProcessors.Add("PayPrice4", ProcessPayPrice4); |
356 | |||
357 | m_SOPXmlProcessors.Add("Buoyancy", ProcessBuoyancy); | ||
358 | m_SOPXmlProcessors.Add("Force", ProcessForce); | ||
359 | m_SOPXmlProcessors.Add("Torque", ProcessTorque); | ||
360 | m_SOPXmlProcessors.Add("VolumeDetectActive", ProcessVolumeDetectActive); | ||
361 | |||
362 | |||
363 | m_SOPXmlProcessors.Add("Vehicle", ProcessVehicle); | ||
364 | |||
365 | m_SOPXmlProcessors.Add("PhysicsShapeType", ProcessPhysicsShapeType); | ||
366 | m_SOPXmlProcessors.Add("Density", ProcessDensity); | ||
367 | m_SOPXmlProcessors.Add("Friction", ProcessFriction); | ||
368 | m_SOPXmlProcessors.Add("Bounce", ProcessBounce); | ||
369 | m_SOPXmlProcessors.Add("GravityModifier", ProcessGravityModifier); | ||
370 | |||
350 | #endregion | 371 | #endregion |
351 | 372 | ||
352 | #region TaskInventoryXmlProcessors initialization | 373 | #region TaskInventoryXmlProcessors initialization |
@@ -374,7 +395,7 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
374 | m_TaskInventoryXmlProcessors.Add("PermsMask", ProcessTIPermsMask); | 395 | m_TaskInventoryXmlProcessors.Add("PermsMask", ProcessTIPermsMask); |
375 | m_TaskInventoryXmlProcessors.Add("Type", ProcessTIType); | 396 | m_TaskInventoryXmlProcessors.Add("Type", ProcessTIType); |
376 | m_TaskInventoryXmlProcessors.Add("OwnerChanged", ProcessTIOwnerChanged); | 397 | m_TaskInventoryXmlProcessors.Add("OwnerChanged", ProcessTIOwnerChanged); |
377 | 398 | ||
378 | #endregion | 399 | #endregion |
379 | 400 | ||
380 | #region ShapeXmlProcessors initialization | 401 | #region ShapeXmlProcessors initialization |
@@ -569,6 +590,49 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
569 | obj.ClickAction = (byte)reader.ReadElementContentAsInt("ClickAction", String.Empty); | 590 | obj.ClickAction = (byte)reader.ReadElementContentAsInt("ClickAction", String.Empty); |
570 | } | 591 | } |
571 | 592 | ||
593 | private static void ProcessPhysicsShapeType(SceneObjectPart obj, XmlTextReader reader) | ||
594 | { | ||
595 | obj.PhysicsShapeType = (byte)reader.ReadElementContentAsInt("PhysicsShapeType", String.Empty); | ||
596 | } | ||
597 | |||
598 | private static void ProcessDensity(SceneObjectPart obj, XmlTextReader reader) | ||
599 | { | ||
600 | obj.Density = reader.ReadElementContentAsFloat("Density", String.Empty); | ||
601 | } | ||
602 | |||
603 | private static void ProcessFriction(SceneObjectPart obj, XmlTextReader reader) | ||
604 | { | ||
605 | obj.Friction = reader.ReadElementContentAsFloat("Friction", String.Empty); | ||
606 | } | ||
607 | |||
608 | private static void ProcessBounce(SceneObjectPart obj, XmlTextReader reader) | ||
609 | { | ||
610 | obj.Bounciness = reader.ReadElementContentAsFloat("Bounce", String.Empty); | ||
611 | } | ||
612 | |||
613 | private static void ProcessGravityModifier(SceneObjectPart obj, XmlTextReader reader) | ||
614 | { | ||
615 | obj.GravityModifier = reader.ReadElementContentAsFloat("GravityModifier", String.Empty); | ||
616 | } | ||
617 | |||
618 | private static void ProcessVehicle(SceneObjectPart obj, XmlTextReader reader) | ||
619 | { | ||
620 | bool errors = false; | ||
621 | SOPVehicle _vehicle = new SOPVehicle(); | ||
622 | |||
623 | _vehicle.FromXml2(reader, out errors); | ||
624 | |||
625 | if (errors) | ||
626 | { | ||
627 | obj.sopVehicle = null; | ||
628 | m_log.DebugFormat( | ||
629 | "[SceneObjectSerializer]: Parsing Vehicle for object part {0} {1} encountered errors. Please see earlier log entries.", | ||
630 | obj.Name, obj.UUID); | ||
631 | } | ||
632 | else | ||
633 | obj.sopVehicle = _vehicle; | ||
634 | } | ||
635 | |||
572 | private static void ProcessShape(SceneObjectPart obj, XmlTextReader reader) | 636 | private static void ProcessShape(SceneObjectPart obj, XmlTextReader reader) |
573 | { | 637 | { |
574 | List<string> errorNodeNames; | 638 | List<string> errorNodeNames; |
@@ -733,6 +797,25 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
733 | obj.PayPrice[4] = (int)reader.ReadElementContentAsInt("PayPrice4", String.Empty); | 797 | obj.PayPrice[4] = (int)reader.ReadElementContentAsInt("PayPrice4", String.Empty); |
734 | } | 798 | } |
735 | 799 | ||
800 | private static void ProcessBuoyancy(SceneObjectPart obj, XmlTextReader reader) | ||
801 | { | ||
802 | obj.Buoyancy = (float)reader.ReadElementContentAsFloat("Buoyancy", String.Empty); | ||
803 | } | ||
804 | |||
805 | private static void ProcessForce(SceneObjectPart obj, XmlTextReader reader) | ||
806 | { | ||
807 | obj.Force = Util.ReadVector(reader, "Force"); | ||
808 | } | ||
809 | private static void ProcessTorque(SceneObjectPart obj, XmlTextReader reader) | ||
810 | { | ||
811 | obj.Torque = Util.ReadVector(reader, "Torque"); | ||
812 | } | ||
813 | |||
814 | private static void ProcessVolumeDetectActive(SceneObjectPart obj, XmlTextReader reader) | ||
815 | { | ||
816 | obj.VolumeDetectActive = Util.ReadBoolean(reader); | ||
817 | } | ||
818 | |||
736 | #endregion | 819 | #endregion |
737 | 820 | ||
738 | #region TaskInventoryXmlProcessors | 821 | #region TaskInventoryXmlProcessors |
@@ -1120,6 +1203,16 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
1120 | }); | 1203 | }); |
1121 | 1204 | ||
1122 | writer.WriteEndElement(); | 1205 | writer.WriteEndElement(); |
1206 | |||
1207 | if (sog.RootPart.KeyframeMotion != null) | ||
1208 | { | ||
1209 | Byte[] data = sog.RootPart.KeyframeMotion.Serialize(); | ||
1210 | |||
1211 | writer.WriteStartElement(String.Empty, "KeyframeMotion", String.Empty); | ||
1212 | writer.WriteBase64(data, 0, data.Length); | ||
1213 | writer.WriteEndElement(); | ||
1214 | } | ||
1215 | |||
1123 | writer.WriteEndElement(); | 1216 | writer.WriteEndElement(); |
1124 | } | 1217 | } |
1125 | 1218 | ||
@@ -1218,6 +1311,27 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
1218 | writer.WriteElementString("PayPrice3", sop.PayPrice[3].ToString()); | 1311 | writer.WriteElementString("PayPrice3", sop.PayPrice[3].ToString()); |
1219 | writer.WriteElementString("PayPrice4", sop.PayPrice[4].ToString()); | 1312 | writer.WriteElementString("PayPrice4", sop.PayPrice[4].ToString()); |
1220 | 1313 | ||
1314 | writer.WriteElementString("Buoyancy", sop.Buoyancy.ToString()); | ||
1315 | |||
1316 | WriteVector(writer, "Force", sop.Force); | ||
1317 | WriteVector(writer, "Torque", sop.Torque); | ||
1318 | |||
1319 | writer.WriteElementString("VolumeDetectActive", sop.VolumeDetectActive.ToString().ToLower()); | ||
1320 | |||
1321 | if (sop.sopVehicle != null) | ||
1322 | sop.sopVehicle.ToXml2(writer); | ||
1323 | |||
1324 | if(sop.PhysicsShapeType != sop.DefaultPhysicsShapeType()) | ||
1325 | writer.WriteElementString("PhysicsShapeType", sop.PhysicsShapeType.ToString().ToLower()); | ||
1326 | if (sop.Density != 1000.0f) | ||
1327 | writer.WriteElementString("Density", sop.Density.ToString().ToLower()); | ||
1328 | if (sop.Friction != 0.6f) | ||
1329 | writer.WriteElementString("Friction", sop.Friction.ToString().ToLower()); | ||
1330 | if (sop.Bounciness != 0.5f) | ||
1331 | writer.WriteElementString("Bounce", sop.Bounciness.ToString().ToLower()); | ||
1332 | if (sop.GravityModifier != 1.0f) | ||
1333 | writer.WriteElementString("GravityModifier", sop.GravityModifier.ToString().ToLower()); | ||
1334 | |||
1221 | writer.WriteEndElement(); | 1335 | writer.WriteEndElement(); |
1222 | } | 1336 | } |
1223 | 1337 | ||
@@ -1487,12 +1601,6 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
1487 | { | 1601 | { |
1488 | TaskInventoryDictionary tinv = new TaskInventoryDictionary(); | 1602 | TaskInventoryDictionary tinv = new TaskInventoryDictionary(); |
1489 | 1603 | ||
1490 | if (reader.IsEmptyElement) | ||
1491 | { | ||
1492 | reader.Read(); | ||
1493 | return tinv; | ||
1494 | } | ||
1495 | |||
1496 | reader.ReadStartElement(name, String.Empty); | 1604 | reader.ReadStartElement(name, String.Empty); |
1497 | 1605 | ||
1498 | while (reader.Name == "TaskInventoryItem") | 1606 | while (reader.Name == "TaskInventoryItem") |
diff --git a/OpenSim/Region/Framework/Scenes/UndoState.cs b/OpenSim/Region/Framework/Scenes/UndoState.cs index 860172c..7bbf1bd 100644 --- a/OpenSim/Region/Framework/Scenes/UndoState.cs +++ b/OpenSim/Region/Framework/Scenes/UndoState.cs | |||
@@ -27,202 +27,307 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Reflection; | 29 | using System.Reflection; |
30 | using System.Collections.Generic; | ||
30 | using log4net; | 31 | using log4net; |
31 | using OpenMetaverse; | 32 | using OpenMetaverse; |
33 | using OpenSim.Framework; | ||
32 | using OpenSim.Region.Framework.Interfaces; | 34 | using OpenSim.Region.Framework.Interfaces; |
33 | 35 | ||
34 | namespace OpenSim.Region.Framework.Scenes | 36 | namespace OpenSim.Region.Framework.Scenes |
35 | { | 37 | { |
36 | public class UndoState | 38 | public class UndoState |
37 | { | 39 | { |
38 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 40 | const int UNDOEXPIRESECONDS = 300; // undo expire time (nice to have it came from a ini later) |
39 | |||
40 | public Vector3 Position = Vector3.Zero; | ||
41 | public Vector3 Scale = Vector3.Zero; | ||
42 | public Quaternion Rotation = Quaternion.Identity; | ||
43 | |||
44 | /// <summary> | ||
45 | /// Is this undo state for an entire group? | ||
46 | /// </summary> | ||
47 | public bool ForGroup; | ||
48 | 41 | ||
42 | public ObjectChangeData data; | ||
43 | public DateTime creationtime; | ||
49 | /// <summary> | 44 | /// <summary> |
50 | /// Constructor. | 45 | /// Constructor. |
51 | /// </summary> | 46 | /// </summary> |
52 | /// <param name="part"></param> | 47 | /// <param name="part"></param> |
53 | /// <param name="forGroup">True if the undo is for an entire group</param> | 48 | /// <param name="change">bit field with what is changed</param> |
54 | public UndoState(SceneObjectPart part, bool forGroup) | 49 | /// |
50 | public UndoState(SceneObjectPart part, ObjectChangeType change) | ||
55 | { | 51 | { |
56 | if (part.ParentID == 0) | 52 | data = new ObjectChangeData(); |
57 | { | 53 | data.change = change; |
58 | ForGroup = forGroup; | 54 | creationtime = DateTime.UtcNow; |
59 | |||
60 | // if (ForGroup) | ||
61 | Position = part.ParentGroup.AbsolutePosition; | ||
62 | // else | ||
63 | // Position = part.OffsetPosition; | ||
64 | |||
65 | // m_log.DebugFormat( | ||
66 | // "[UNDO STATE]: Storing undo position {0} for root part", Position); | ||
67 | 55 | ||
68 | Rotation = part.RotationOffset; | 56 | if (part.ParentGroup.RootPart == part) |
69 | 57 | { | |
70 | // m_log.DebugFormat( | 58 | if ((change & ObjectChangeType.Position) != 0) |
71 | // "[UNDO STATE]: Storing undo rotation {0} for root part", Rotation); | 59 | data.position = part.ParentGroup.AbsolutePosition; |
72 | 60 | if ((change & ObjectChangeType.Rotation) != 0) | |
73 | Scale = part.Shape.Scale; | 61 | data.rotation = part.RotationOffset; |
74 | 62 | if ((change & ObjectChangeType.Scale) != 0) | |
75 | // m_log.DebugFormat( | 63 | data.scale = part.Shape.Scale; |
76 | // "[UNDO STATE]: Storing undo scale {0} for root part", Scale); | ||
77 | } | 64 | } |
78 | else | 65 | else |
79 | { | 66 | { |
80 | Position = part.OffsetPosition; | 67 | if ((change & ObjectChangeType.Position) != 0) |
81 | // m_log.DebugFormat( | 68 | data.position = part.OffsetPosition; |
82 | // "[UNDO STATE]: Storing undo position {0} for child part", Position); | 69 | if ((change & ObjectChangeType.Rotation) != 0) |
70 | data.rotation = part.RotationOffset; | ||
71 | if ((change & ObjectChangeType.Scale) != 0) | ||
72 | data.scale = part.Shape.Scale; | ||
73 | } | ||
74 | } | ||
75 | /// <summary> | ||
76 | /// check if undo or redo is too old | ||
77 | /// </summary> | ||
83 | 78 | ||
84 | Rotation = part.RotationOffset; | 79 | public bool checkExpire() |
85 | // m_log.DebugFormat( | 80 | { |
86 | // "[UNDO STATE]: Storing undo rotation {0} for child part", Rotation); | 81 | TimeSpan t = DateTime.UtcNow - creationtime; |
82 | if (t.Seconds > UNDOEXPIRESECONDS) | ||
83 | return true; | ||
84 | return false; | ||
85 | } | ||
87 | 86 | ||
88 | Scale = part.Shape.Scale; | 87 | /// <summary> |
89 | // m_log.DebugFormat( | 88 | /// updates undo or redo creation time to now |
90 | // "[UNDO STATE]: Storing undo scale {0} for child part", Scale); | 89 | /// </summary> |
91 | } | 90 | public void updateExpire() |
91 | { | ||
92 | creationtime = DateTime.UtcNow; | ||
92 | } | 93 | } |
93 | 94 | ||
94 | /// <summary> | 95 | /// <summary> |
95 | /// Compare the relevant state in the given part to this state. | 96 | /// Compare the relevant state in the given part to this state. |
96 | /// </summary> | 97 | /// </summary> |
97 | /// <param name="part"></param> | 98 | /// <param name="part"></param> |
98 | /// <returns>true if both the part's position, rotation and scale match those in this undo state. False otherwise.</returns> | 99 | /// <returns>true what fiels and related data are equal, False otherwise.</returns> |
99 | public bool Compare(SceneObjectPart part) | 100 | /// |
101 | public bool Compare(SceneObjectPart part, ObjectChangeType change) | ||
100 | { | 102 | { |
103 | if (data.change != change) // if diferent targets, then they are diferent | ||
104 | return false; | ||
105 | |||
101 | if (part != null) | 106 | if (part != null) |
102 | { | 107 | { |
103 | if (part.ParentID == 0) | 108 | if (part.ParentID == 0) |
104 | return | 109 | { |
105 | Position == part.ParentGroup.AbsolutePosition | 110 | if ((change & ObjectChangeType.Position) != 0 && data.position != part.ParentGroup.AbsolutePosition) |
106 | && Rotation == part.RotationOffset | 111 | return false; |
107 | && Scale == part.Shape.Scale; | 112 | } |
108 | else | 113 | else |
109 | return | 114 | { |
110 | Position == part.OffsetPosition | 115 | if ((change & ObjectChangeType.Position) != 0 && data.position != part.OffsetPosition) |
111 | && Rotation == part.RotationOffset | 116 | return false; |
112 | && Scale == part.Shape.Scale; | 117 | } |
113 | } | 118 | |
119 | if ((change & ObjectChangeType.Rotation) != 0 && data.rotation != part.RotationOffset) | ||
120 | return false; | ||
121 | if ((change & ObjectChangeType.Rotation) != 0 && data.scale == part.Shape.Scale) | ||
122 | return false; | ||
123 | return true; | ||
114 | 124 | ||
125 | } | ||
115 | return false; | 126 | return false; |
116 | } | 127 | } |
117 | 128 | ||
118 | public void PlaybackState(SceneObjectPart part) | 129 | /// <summary> |
130 | /// executes the undo or redo to a part or its group | ||
131 | /// </summary> | ||
132 | /// <param name="part"></param> | ||
133 | /// | ||
134 | |||
135 | public void PlayState(SceneObjectPart part) | ||
119 | { | 136 | { |
120 | part.Undoing = true; | 137 | part.Undoing = true; |
121 | 138 | ||
122 | if (part.ParentID == 0) | 139 | SceneObjectGroup grp = part.ParentGroup; |
123 | { | ||
124 | // m_log.DebugFormat( | ||
125 | // "[UNDO STATE]: Undoing position to {0} for root part {1} {2}", | ||
126 | // Position, part.Name, part.LocalId); | ||
127 | 140 | ||
128 | if (Position != Vector3.Zero) | 141 | if (grp != null) |
129 | { | 142 | { |
130 | if (ForGroup) | 143 | grp.doChangeObject(part, data); |
131 | part.ParentGroup.AbsolutePosition = Position; | 144 | } |
132 | else | 145 | part.Undoing = false; |
133 | part.ParentGroup.UpdateRootPosition(Position); | 146 | } |
134 | } | 147 | } |
135 | 148 | ||
136 | // m_log.DebugFormat( | 149 | public class UndoRedoState |
137 | // "[UNDO STATE]: Undoing rotation {0} to {1} for root part {2} {3}", | 150 | { |
138 | // part.RotationOffset, Rotation, part.Name, part.LocalId); | 151 | int size; |
152 | public LinkedList<UndoState> m_redo = new LinkedList<UndoState>(); | ||
153 | public LinkedList<UndoState> m_undo = new LinkedList<UndoState>(); | ||
139 | 154 | ||
140 | if (ForGroup) | 155 | /// <summary> |
141 | part.UpdateRotation(Rotation); | 156 | /// creates a new UndoRedoState with default states memory size |
142 | else | 157 | /// </summary> |
143 | part.ParentGroup.UpdateRootRotation(Rotation); | ||
144 | 158 | ||
145 | if (Scale != Vector3.Zero) | 159 | public UndoRedoState() |
146 | { | 160 | { |
147 | // m_log.DebugFormat( | 161 | size = 5; |
148 | // "[UNDO STATE]: Undoing scale {0} to {1} for root part {2} {3}", | 162 | } |
149 | // part.Shape.Scale, Scale, part.Name, part.LocalId); | ||
150 | 163 | ||
151 | if (ForGroup) | 164 | /// <summary> |
152 | part.ParentGroup.GroupResize(Scale); | 165 | /// creates a new UndoRedoState with states memory having indicated size |
153 | else | 166 | /// </summary> |
154 | part.Resize(Scale); | 167 | /// <param name="size"></param> |
155 | } | ||
156 | 168 | ||
157 | part.ParentGroup.ScheduleGroupForTerseUpdate(); | 169 | public UndoRedoState(int _size) |
158 | } | 170 | { |
171 | if (_size < 3) | ||
172 | size = 3; | ||
159 | else | 173 | else |
160 | { | 174 | size = _size; |
161 | // Note: Updating these properties on sop automatically schedules an update if needed | 175 | } |
162 | if (Position != Vector3.Zero) | ||
163 | { | ||
164 | // m_log.DebugFormat( | ||
165 | // "[UNDO STATE]: Undoing position {0} to {1} for child part {2} {3}", | ||
166 | // part.OffsetPosition, Position, part.Name, part.LocalId); | ||
167 | 176 | ||
168 | part.OffsetPosition = Position; | 177 | /// <summary> |
169 | } | 178 | /// returns number of undo entries in memory |
179 | /// </summary> | ||
170 | 180 | ||
171 | // m_log.DebugFormat( | 181 | public int Count |
172 | // "[UNDO STATE]: Undoing rotation {0} to {1} for child part {2} {3}", | 182 | { |
173 | // part.RotationOffset, Rotation, part.Name, part.LocalId); | 183 | get { return m_undo.Count; } |
184 | } | ||
174 | 185 | ||
175 | part.UpdateRotation(Rotation); | 186 | /// <summary> |
187 | /// clears all undo and redo entries | ||
188 | /// </summary> | ||
176 | 189 | ||
177 | if (Scale != Vector3.Zero) | 190 | public void Clear() |
191 | { | ||
192 | m_undo.Clear(); | ||
193 | m_redo.Clear(); | ||
194 | } | ||
195 | |||
196 | /// <summary> | ||
197 | /// adds a new state undo to part or its group, with changes indicated by what bits | ||
198 | /// </summary> | ||
199 | /// <param name="part"></param> | ||
200 | /// <param name="change">bit field with what is changed</param> | ||
201 | |||
202 | public void StoreUndo(SceneObjectPart part, ObjectChangeType change) | ||
203 | { | ||
204 | lock (m_undo) | ||
205 | { | ||
206 | UndoState last; | ||
207 | |||
208 | if (m_redo.Count > 0) // last code seems to clear redo on every new undo | ||
178 | { | 209 | { |
179 | // m_log.DebugFormat( | 210 | m_redo.Clear(); |
180 | // "[UNDO STATE]: Undoing scale {0} to {1} for child part {2} {3}", | 211 | } |
181 | // part.Shape.Scale, Scale, part.Name, part.LocalId); | ||
182 | 212 | ||
183 | part.Resize(Scale); | 213 | if (m_undo.Count > 0) |
214 | { | ||
215 | // check expired entry | ||
216 | last = m_undo.First.Value; | ||
217 | if (last != null && last.checkExpire()) | ||
218 | m_undo.Clear(); | ||
219 | else | ||
220 | { | ||
221 | // see if we actually have a change | ||
222 | if (last != null) | ||
223 | { | ||
224 | if (last.Compare(part, change)) | ||
225 | return; | ||
226 | } | ||
227 | } | ||
184 | } | 228 | } |
185 | } | ||
186 | 229 | ||
187 | part.Undoing = false; | 230 | // limite size |
231 | while (m_undo.Count >= size) | ||
232 | m_undo.RemoveLast(); | ||
233 | |||
234 | UndoState nUndo = new UndoState(part, change); | ||
235 | m_undo.AddFirst(nUndo); | ||
236 | } | ||
188 | } | 237 | } |
189 | 238 | ||
190 | public void PlayfwdState(SceneObjectPart part) | 239 | /// <summary> |
191 | { | 240 | /// executes last state undo to part or its group |
192 | part.Undoing = true; | 241 | /// current state is pushed into redo |
242 | /// </summary> | ||
243 | /// <param name="part"></param> | ||
193 | 244 | ||
194 | if (part.ParentID == 0) | 245 | public void Undo(SceneObjectPart part) |
246 | { | ||
247 | lock (m_undo) | ||
195 | { | 248 | { |
196 | if (Position != Vector3.Zero) | 249 | UndoState nUndo; |
197 | part.ParentGroup.AbsolutePosition = Position; | ||
198 | |||
199 | if (Rotation != Quaternion.Identity) | ||
200 | part.UpdateRotation(Rotation); | ||
201 | 250 | ||
202 | if (Scale != Vector3.Zero) | 251 | // expire redo |
252 | if (m_redo.Count > 0) | ||
203 | { | 253 | { |
204 | if (ForGroup) | 254 | nUndo = m_redo.First.Value; |
205 | part.ParentGroup.GroupResize(Scale); | 255 | if (nUndo != null && nUndo.checkExpire()) |
206 | else | 256 | m_redo.Clear(); |
207 | part.Resize(Scale); | ||
208 | } | 257 | } |
209 | 258 | ||
210 | part.ParentGroup.ScheduleGroupForTerseUpdate(); | 259 | if (m_undo.Count > 0) |
260 | { | ||
261 | UndoState goback = m_undo.First.Value; | ||
262 | // check expired | ||
263 | if (goback != null && goback.checkExpire()) | ||
264 | { | ||
265 | m_undo.Clear(); | ||
266 | return; | ||
267 | } | ||
268 | |||
269 | if (goback != null) | ||
270 | { | ||
271 | m_undo.RemoveFirst(); | ||
272 | |||
273 | // redo limite size | ||
274 | while (m_redo.Count >= size) | ||
275 | m_redo.RemoveLast(); | ||
276 | |||
277 | nUndo = new UndoState(part, goback.data.change); // new value in part should it be full goback copy? | ||
278 | m_redo.AddFirst(nUndo); | ||
279 | |||
280 | goback.PlayState(part); | ||
281 | } | ||
282 | } | ||
211 | } | 283 | } |
212 | else | 284 | } |
285 | |||
286 | /// <summary> | ||
287 | /// executes last state redo to part or its group | ||
288 | /// current state is pushed into undo | ||
289 | /// </summary> | ||
290 | /// <param name="part"></param> | ||
291 | |||
292 | public void Redo(SceneObjectPart part) | ||
293 | { | ||
294 | lock (m_undo) | ||
213 | { | 295 | { |
214 | // Note: Updating these properties on sop automatically schedules an update if needed | 296 | UndoState nUndo; |
215 | if (Position != Vector3.Zero) | ||
216 | part.OffsetPosition = Position; | ||
217 | 297 | ||
218 | if (Rotation != Quaternion.Identity) | 298 | // expire undo |
219 | part.UpdateRotation(Rotation); | 299 | if (m_undo.Count > 0) |
300 | { | ||
301 | nUndo = m_undo.First.Value; | ||
302 | if (nUndo != null && nUndo.checkExpire()) | ||
303 | m_undo.Clear(); | ||
304 | } | ||
220 | 305 | ||
221 | if (Scale != Vector3.Zero) | 306 | if (m_redo.Count > 0) |
222 | part.Resize(Scale); | 307 | { |
308 | UndoState gofwd = m_redo.First.Value; | ||
309 | // check expired | ||
310 | if (gofwd != null && gofwd.checkExpire()) | ||
311 | { | ||
312 | m_redo.Clear(); | ||
313 | return; | ||
314 | } | ||
315 | |||
316 | if (gofwd != null) | ||
317 | { | ||
318 | m_redo.RemoveFirst(); | ||
319 | |||
320 | // limite undo size | ||
321 | while (m_undo.Count >= size) | ||
322 | m_undo.RemoveLast(); | ||
323 | |||
324 | nUndo = new UndoState(part, gofwd.data.change); // new value in part should it be full gofwd copy? | ||
325 | m_undo.AddFirst(nUndo); | ||
326 | |||
327 | gofwd.PlayState(part); | ||
328 | } | ||
329 | } | ||
223 | } | 330 | } |
224 | |||
225 | part.Undoing = false; | ||
226 | } | 331 | } |
227 | } | 332 | } |
228 | 333 | ||
@@ -247,4 +352,4 @@ namespace OpenSim.Region.Framework.Scenes | |||
247 | m_terrainModule.UndoTerrain(m_terrainChannel); | 352 | m_terrainModule.UndoTerrain(m_terrainChannel); |
248 | } | 353 | } |
249 | } | 354 | } |
250 | } \ No newline at end of file | 355 | } |
diff --git a/OpenSim/Region/Framework/Scenes/UuidGatherer.cs b/OpenSim/Region/Framework/Scenes/UuidGatherer.cs index efb68a2..411e421 100644 --- a/OpenSim/Region/Framework/Scenes/UuidGatherer.cs +++ b/OpenSim/Region/Framework/Scenes/UuidGatherer.cs | |||
@@ -87,10 +87,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
87 | /// <param name="assetUuids">The assets gathered</param> | 87 | /// <param name="assetUuids">The assets gathered</param> |
88 | public void GatherAssetUuids(UUID assetUuid, AssetType assetType, IDictionary<UUID, AssetType> assetUuids) | 88 | public void GatherAssetUuids(UUID assetUuid, AssetType assetType, IDictionary<UUID, AssetType> assetUuids) |
89 | { | 89 | { |
90 | // avoid infinite loops | ||
91 | if (assetUuids.ContainsKey(assetUuid)) | ||
92 | return; | ||
93 | |||
94 | try | 90 | try |
95 | { | 91 | { |
96 | assetUuids[assetUuid] = assetType; | 92 | assetUuids[assetUuid] = assetType; |