aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectPart.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs227
1 files changed, 148 insertions, 79 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index 42cc1ce..d7435c6 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.
@@ -177,6 +178,15 @@ namespace OpenSim.Region.Framework.Scenes
177 178
178 public UUID FromFolderID; 179 public UUID FromFolderID;
179 180
181 // The following two are to hold the attachment data
182 // while an object is inworld
183 [XmlIgnore]
184 public byte AttachPoint = 0;
185
186 [XmlIgnore]
187 public Vector3 AttachOffset = Vector3.Zero;
188
189 [XmlIgnore]
180 public int STATUS_ROTATE_X; 190 public int STATUS_ROTATE_X;
181 191
182 public int STATUS_ROTATE_Y; 192 public int STATUS_ROTATE_Y;
@@ -246,6 +256,7 @@ namespace OpenSim.Region.Framework.Scenes
246 private Quaternion m_sitTargetOrientation = Quaternion.Identity; 256 private Quaternion m_sitTargetOrientation = Quaternion.Identity;
247 private Vector3 m_sitTargetPosition; 257 private Vector3 m_sitTargetPosition;
248 private string m_sitAnimation = "SIT"; 258 private string m_sitAnimation = "SIT";
259 private bool m_occupied; // KF if any av is sitting on this prim
249 private string m_text = String.Empty; 260 private string m_text = String.Empty;
250 private string m_touchName = String.Empty; 261 private string m_touchName = String.Empty;
251 private readonly Stack<UndoState> m_undo = new Stack<UndoState>(5); 262 private readonly Stack<UndoState> m_undo = new Stack<UndoState>(5);
@@ -289,6 +300,7 @@ namespace OpenSim.Region.Framework.Scenes
289 protected Vector3 m_lastAcceleration; 300 protected Vector3 m_lastAcceleration;
290 protected Vector3 m_lastAngularVelocity; 301 protected Vector3 m_lastAngularVelocity;
291 protected int m_lastTerseSent; 302 protected int m_lastTerseSent;
303 protected float m_buoyancy = 0.0f;
292 304
293 /// <summary> 305 /// <summary>
294 /// Stores media texture data 306 /// Stores media texture data
@@ -341,7 +353,7 @@ namespace OpenSim.Region.Framework.Scenes
341 UUID ownerID, PrimitiveBaseShape shape, Vector3 groupPosition, 353 UUID ownerID, PrimitiveBaseShape shape, Vector3 groupPosition,
342 Quaternion rotationOffset, Vector3 offsetPosition) 354 Quaternion rotationOffset, Vector3 offsetPosition)
343 { 355 {
344 m_name = "Primitive"; 356 m_name = "Object";
345 357
346 Rezzed = DateTime.UtcNow; 358 Rezzed = DateTime.UtcNow;
347 _creationDate = (int)Utils.DateTimeToUnixTime(Rezzed); 359 _creationDate = (int)Utils.DateTimeToUnixTime(Rezzed);
@@ -396,7 +408,7 @@ namespace OpenSim.Region.Framework.Scenes
396 private uint _ownerMask = (uint)PermissionMask.All; 408 private uint _ownerMask = (uint)PermissionMask.All;
397 private uint _groupMask = (uint)PermissionMask.None; 409 private uint _groupMask = (uint)PermissionMask.None;
398 private uint _everyoneMask = (uint)PermissionMask.None; 410 private uint _everyoneMask = (uint)PermissionMask.None;
399 private uint _nextOwnerMask = (uint)PermissionMask.All; 411 private uint _nextOwnerMask = (uint)(PermissionMask.Move | PermissionMask.Modify | PermissionMask.Transfer);
400 private PrimFlags _flags = PrimFlags.None; 412 private PrimFlags _flags = PrimFlags.None;
401 private DateTime m_expires; 413 private DateTime m_expires;
402 private DateTime m_rezzed; 414 private DateTime m_rezzed;
@@ -495,12 +507,16 @@ namespace OpenSim.Region.Framework.Scenes
495 } 507 }
496 508
497 /// <value> 509 /// <value>
498 /// Access should be via Inventory directly - this property temporarily remains for xml serialization purposes 510 /// Get the inventory list
499 /// </value> 511 /// </value>
500 public TaskInventoryDictionary TaskInventory 512 public TaskInventoryDictionary TaskInventory
501 { 513 {
502 get { return m_inventory.Items; } 514 get {
503 set { m_inventory.Items = value; } 515 return m_inventory.Items;
516 }
517 set {
518 m_inventory.Items = value;
519 }
504 } 520 }
505 521
506 /// <summary> 522 /// <summary>
@@ -641,14 +657,12 @@ namespace OpenSim.Region.Framework.Scenes
641 set { m_LoopSoundSlavePrims = value; } 657 set { m_LoopSoundSlavePrims = value; }
642 } 658 }
643 659
644
645 public Byte[] TextureAnimation 660 public Byte[] TextureAnimation
646 { 661 {
647 get { return m_TextureAnimation; } 662 get { return m_TextureAnimation; }
648 set { m_TextureAnimation = value; } 663 set { m_TextureAnimation = value; }
649 } 664 }
650 665
651
652 public Byte[] ParticleSystem 666 public Byte[] ParticleSystem
653 { 667 {
654 get { return m_particleSystem; } 668 get { return m_particleSystem; }
@@ -685,9 +699,11 @@ namespace OpenSim.Region.Framework.Scenes
685 { 699 {
686 // If this is a linkset, we don't want the physics engine mucking up our group position here. 700 // If this is a linkset, we don't want the physics engine mucking up our group position here.
687 PhysicsActor actor = PhysActor; 701 PhysicsActor actor = PhysActor;
688 if (actor != null && _parentID == 0) 702 if (_parentID == 0)
689 { 703 {
690 m_groupPosition = actor.Position; 704 if (actor != null)
705 m_groupPosition = actor.Position;
706 return m_groupPosition;
691 } 707 }
692 708
693 if (m_parentGroup.IsAttachment) 709 if (m_parentGroup.IsAttachment)
@@ -697,12 +713,14 @@ namespace OpenSim.Region.Framework.Scenes
697 return sp.AbsolutePosition; 713 return sp.AbsolutePosition;
698 } 714 }
699 715
716 // use root prim's group position. Physics may have updated it
717 if (ParentGroup.RootPart != this)
718 m_groupPosition = ParentGroup.RootPart.GroupPosition;
700 return m_groupPosition; 719 return m_groupPosition;
701 } 720 }
702 set 721 set
703 { 722 {
704 m_groupPosition = value; 723 m_groupPosition = value;
705
706 PhysicsActor actor = PhysActor; 724 PhysicsActor actor = PhysActor;
707 if (actor != null) 725 if (actor != null)
708 { 726 {
@@ -722,22 +740,13 @@ namespace OpenSim.Region.Framework.Scenes
722 740
723 // Tell the physics engines that this prim changed. 741 // Tell the physics engines that this prim changed.
724 m_parentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(actor); 742 m_parentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(actor);
743
725 } 744 }
726 catch (Exception e) 745 catch (Exception e)
727 { 746 {
728 m_log.Error("[SCENEOBJECTPART]: GROUP POSITION. " + e.Message); 747 m_log.Error("[SCENEOBJECTPART]: GROUP POSITION. " + e.Message);
729 } 748 }
730 } 749 }
731
732 // TODO if we decide to do sitting in a more SL compatible way (multiple avatars per prim), this has to be fixed, too
733 if (m_sitTargetAvatar != UUID.Zero)
734 {
735 ScenePresence avatar;
736 if (m_parentGroup.Scene.TryGetScenePresence(m_sitTargetAvatar, out avatar))
737 {
738 avatar.ParentPosition = GetWorldPosition();
739 }
740 }
741 } 750 }
742 } 751 }
743 752
@@ -746,7 +755,7 @@ namespace OpenSim.Region.Framework.Scenes
746 get { return m_offsetPosition; } 755 get { return m_offsetPosition; }
747 set 756 set
748 { 757 {
749// StoreUndoState(); 758 Vector3 oldpos = m_offsetPosition;
750 m_offsetPosition = value; 759 m_offsetPosition = value;
751 760
752 if (ParentGroup != null && !ParentGroup.IsDeleted) 761 if (ParentGroup != null && !ParentGroup.IsDeleted)
@@ -761,7 +770,22 @@ namespace OpenSim.Region.Framework.Scenes
761 if (m_parentGroup.Scene != null) 770 if (m_parentGroup.Scene != null)
762 m_parentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(actor); 771 m_parentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(actor);
763 } 772 }
773
774 if (!m_parentGroup.m_dupeInProgress)
775 {
776 List<ScenePresence> avs = ParentGroup.GetLinkedAvatars();
777 foreach (ScenePresence av in avs)
778 {
779 if (av.LinkedPrim == m_uuid)
780 {
781 Vector3 offset = (m_offsetPosition - oldpos);
782 av.AbsolutePosition += offset;
783 av.SendAvatarDataToAllAgents();
784 }
785 }
786 }
764 } 787 }
788 TriggerScriptChangedEvent(Changed.POSITION);
765 } 789 }
766 } 790 }
767 791
@@ -888,7 +912,16 @@ namespace OpenSim.Region.Framework.Scenes
888 /// <summary></summary> 912 /// <summary></summary>
889 public Vector3 Acceleration 913 public Vector3 Acceleration
890 { 914 {
891 get { return m_acceleration; } 915 get
916 {
917 PhysicsActor actor = PhysActor;
918 if (actor != null)
919 {
920 m_acceleration = actor.Acceleration;
921 }
922 return m_acceleration;
923 }
924
892 set { m_acceleration = value; } 925 set { m_acceleration = value; }
893 } 926 }
894 927
@@ -1219,6 +1252,13 @@ namespace OpenSim.Region.Framework.Scenes
1219 _flags = value; 1252 _flags = value;
1220 } 1253 }
1221 } 1254 }
1255
1256 [XmlIgnore]
1257 public bool IsOccupied // KF If an av is sittingon this prim
1258 {
1259 get { return m_occupied; }
1260 set { m_occupied = value; }
1261 }
1222 1262
1223 1263
1224 public UUID SitTargetAvatar 1264 public UUID SitTargetAvatar
@@ -1277,6 +1317,19 @@ namespace OpenSim.Region.Framework.Scenes
1277 set { m_collisionSoundVolume = value; } 1317 set { m_collisionSoundVolume = value; }
1278 } 1318 }
1279 1319
1320 public float Buoyancy
1321 {
1322 get { return m_buoyancy; }
1323 set
1324 {
1325 m_buoyancy = value;
1326 if (PhysActor != null)
1327 {
1328 PhysActor.Buoyancy = value;
1329 }
1330 }
1331 }
1332
1280 #endregion Public Properties with only Get 1333 #endregion Public Properties with only Get
1281 1334
1282 private uint ApplyMask(uint val, bool set, uint mask) 1335 private uint ApplyMask(uint val, bool set, uint mask)
@@ -1649,6 +1702,9 @@ namespace OpenSim.Region.Framework.Scenes
1649 1702
1650 // Move afterwards ResetIDs as it clears the localID 1703 // Move afterwards ResetIDs as it clears the localID
1651 dupe.LocalId = localID; 1704 dupe.LocalId = localID;
1705 if(dupe.PhysActor != null)
1706 dupe.PhysActor.LocalID = localID;
1707
1652 // This may be wrong... it might have to be applied in SceneObjectGroup to the object that's being duplicated. 1708 // This may be wrong... it might have to be applied in SceneObjectGroup to the object that's being duplicated.
1653 dupe._lastOwnerID = OwnerID; 1709 dupe._lastOwnerID = OwnerID;
1654 1710
@@ -2015,19 +2071,17 @@ namespace OpenSim.Region.Framework.Scenes
2015 public Vector3 GetWorldPosition() 2071 public Vector3 GetWorldPosition()
2016 { 2072 {
2017 Quaternion parentRot = ParentGroup.RootPart.RotationOffset; 2073 Quaternion parentRot = ParentGroup.RootPart.RotationOffset;
2018
2019 Vector3 axPos = OffsetPosition; 2074 Vector3 axPos = OffsetPosition;
2020
2021 axPos *= parentRot; 2075 axPos *= parentRot;
2022 Vector3 translationOffsetPosition = axPos; 2076 Vector3 translationOffsetPosition = axPos;
2023 2077 if(_parentID == 0)
2024// m_log.DebugFormat("[SCENE OBJECT PART]: Found group pos {0} for part {1}", GroupPosition, Name); 2078 {
2025 2079 return GroupPosition;
2026 Vector3 worldPos = GroupPosition + translationOffsetPosition; 2080 }
2027 2081 else
2028// m_log.DebugFormat("[SCENE OBJECT PART]: Found world pos {0} for part {1}", worldPos, Name); 2082 {
2029 2083 return ParentGroup.AbsolutePosition + translationOffsetPosition; //KF: Fix child prim position
2030 return worldPos; 2084 }
2031 } 2085 }
2032 2086
2033 /// <summary> 2087 /// <summary>
@@ -2667,17 +2721,18 @@ namespace OpenSim.Region.Framework.Scenes
2667 //Trys to fetch sound id from prim's inventory. 2721 //Trys to fetch sound id from prim's inventory.
2668 //Prim's inventory doesn't support non script items yet 2722 //Prim's inventory doesn't support non script items yet
2669 2723
2670 lock (TaskInventory) 2724 TaskInventory.LockItemsForRead(true);
2725
2726 foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory)
2671 { 2727 {
2672 foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) 2728 if (item.Value.Name == sound)
2673 { 2729 {
2674 if (item.Value.Name == sound) 2730 soundID = item.Value.ItemID;
2675 { 2731 break;
2676 soundID = item.Value.ItemID;
2677 break;
2678 }
2679 } 2732 }
2680 } 2733 }
2734
2735 TaskInventory.LockItemsForRead(false);
2681 } 2736 }
2682 2737
2683 m_parentGroup.Scene.ForEachScenePresence(delegate(ScenePresence sp) 2738 m_parentGroup.Scene.ForEachScenePresence(delegate(ScenePresence sp)
@@ -2762,7 +2817,7 @@ namespace OpenSim.Region.Framework.Scenes
2762 2817
2763 public void RotLookAt(Quaternion target, float strength, float damping) 2818 public void RotLookAt(Quaternion target, float strength, float damping)
2764 { 2819 {
2765 rotLookAt(target, strength, damping); 2820 m_parentGroup.rotLookAt(target, strength, damping); // This calls method in SceneObjectGroup.
2766 } 2821 }
2767 2822
2768 public void rotLookAt(Quaternion target, float strength, float damping) 2823 public void rotLookAt(Quaternion target, float strength, float damping)
@@ -3008,8 +3063,8 @@ namespace OpenSim.Region.Framework.Scenes
3008 { 3063 {
3009 const float ROTATION_TOLERANCE = 0.01f; 3064 const float ROTATION_TOLERANCE = 0.01f;
3010 const float VELOCITY_TOLERANCE = 0.001f; 3065 const float VELOCITY_TOLERANCE = 0.001f;
3011 const float POSITION_TOLERANCE = 0.05f; 3066 const float POSITION_TOLERANCE = 0.05f; // I don't like this, but I suppose it's necessary
3012 const int TIME_MS_TOLERANCE = 3000; 3067 const int TIME_MS_TOLERANCE = 200; //llSetPos has a 200ms delay. This should NOT be 3 seconds.
3013 3068
3014 if (m_updateFlag == 1) 3069 if (m_updateFlag == 1)
3015 { 3070 {
@@ -3023,7 +3078,7 @@ namespace OpenSim.Region.Framework.Scenes
3023 Environment.TickCount - m_lastTerseSent > TIME_MS_TOLERANCE) 3078 Environment.TickCount - m_lastTerseSent > TIME_MS_TOLERANCE)
3024 { 3079 {
3025 AddTerseUpdateToAllAvatars(); 3080 AddTerseUpdateToAllAvatars();
3026 ClearUpdateSchedule(); 3081
3027 3082
3028 // This causes the Scene to 'poll' physical objects every couple of frames 3083 // This causes the Scene to 'poll' physical objects every couple of frames
3029 // bad, so it's been replaced by an event driven method. 3084 // bad, so it's been replaced by an event driven method.
@@ -3041,16 +3096,18 @@ namespace OpenSim.Region.Framework.Scenes
3041 m_lastAngularVelocity = AngularVelocity; 3096 m_lastAngularVelocity = AngularVelocity;
3042 m_lastTerseSent = Environment.TickCount; 3097 m_lastTerseSent = Environment.TickCount;
3043 } 3098 }
3099 //Moved this outside of the if clause so updates don't get blocked.. *sigh*
3100 m_updateFlag = 0; //Why were we calling a function to do this? Inefficient! *screams*
3044 } 3101 }
3045 else 3102 else
3046 { 3103 {
3047 if (m_updateFlag == 2) // is a new prim, just created/reloaded or has major changes 3104 if (m_updateFlag == 2) // is a new prim, just created/reloaded or has major changes
3048 { 3105 {
3049 AddFullUpdateToAllAvatars(); 3106 AddFullUpdateToAllAvatars();
3050 ClearUpdateSchedule(); 3107 m_updateFlag = 0; //Same here
3051 } 3108 }
3052 } 3109 }
3053 ClearUpdateSchedule(); 3110 m_updateFlag = 0;
3054 } 3111 }
3055 3112
3056 /// <summary> 3113 /// <summary>
@@ -3078,17 +3135,16 @@ namespace OpenSim.Region.Framework.Scenes
3078 if (!UUID.TryParse(sound, out soundID)) 3135 if (!UUID.TryParse(sound, out soundID))
3079 { 3136 {
3080 // search sound file from inventory 3137 // search sound file from inventory
3081 lock (TaskInventory) 3138 TaskInventory.LockItemsForRead(true);
3139 foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory)
3082 { 3140 {
3083 foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) 3141 if (item.Value.Name == sound && item.Value.Type == (int)AssetType.Sound)
3084 { 3142 {
3085 if (item.Value.Name == sound && item.Value.Type == (int)AssetType.Sound) 3143 soundID = item.Value.ItemID;
3086 { 3144 break;
3087 soundID = item.Value.ItemID;
3088 break;
3089 }
3090 } 3145 }
3091 } 3146 }
3147 TaskInventory.LockItemsForRead(false);
3092 } 3148 }
3093 3149
3094 if (soundID == UUID.Zero) 3150 if (soundID == UUID.Zero)
@@ -3499,7 +3555,7 @@ namespace OpenSim.Region.Framework.Scenes
3499 3555
3500 public void StopLookAt() 3556 public void StopLookAt()
3501 { 3557 {
3502 m_parentGroup.stopLookAt(); 3558 m_parentGroup.stopLookAt(); // This calls method in SceneObjectGroup.
3503 3559
3504 m_parentGroup.ScheduleGroupForTerseUpdate(); 3560 m_parentGroup.ScheduleGroupForTerseUpdate();
3505 } 3561 }
@@ -3550,45 +3606,45 @@ namespace OpenSim.Region.Framework.Scenes
3550 // TODO: May need to fix for group comparison 3606 // TODO: May need to fix for group comparison
3551 if (last.Compare(this)) 3607 if (last.Compare(this))
3552 { 3608 {
3553 // m_log.DebugFormat( 3609 // m_log.DebugFormat(
3554 // "[SCENE OBJECT PART]: Not storing undo for {0} {1} since current state is same as last undo state, initial stack size {2}", 3610 // "[SCENE OBJECT PART]: Not storing undo for {0} {1} since current state is same as last undo state, initial stack size {2}",
3555 // Name, LocalId, m_undo.Count); 3611 // Name, LocalId, m_undo.Count);
3556 3612
3557 return; 3613 return;
3558 } 3614 }
3559 } 3615 }
3560 } 3616 }
3561 3617
3562 // m_log.DebugFormat( 3618 // m_log.DebugFormat(
3563 // "[SCENE OBJECT PART]: Storing undo state for {0} {1}, forGroup {2}, initial stack size {3}", 3619 // "[SCENE OBJECT PART]: Storing undo state for {0} {1}, forGroup {2}, initial stack size {3}",
3564 // Name, LocalId, forGroup, m_undo.Count); 3620 // Name, LocalId, forGroup, m_undo.Count);
3565 3621
3566 if (m_parentGroup.GetSceneMaxUndo() > 0) 3622 if (m_parentGroup.GetSceneMaxUndo() > 0)
3567 { 3623 {
3568 UndoState nUndo = new UndoState(this, forGroup); 3624 UndoState nUndo = new UndoState(this, forGroup);
3569 3625
3570 m_undo.Push(nUndo); 3626 m_undo.Push(nUndo);
3571 3627
3572 if (m_redo.Count > 0) 3628 if (m_redo.Count > 0)
3573 m_redo.Clear(); 3629 m_redo.Clear();
3574 3630
3575 // m_log.DebugFormat( 3631 // m_log.DebugFormat(
3576 // "[SCENE OBJECT PART]: Stored undo state for {0} {1}, forGroup {2}, stack size now {3}", 3632 // "[SCENE OBJECT PART]: Stored undo state for {0} {1}, forGroup {2}, stack size now {3}",
3577 // Name, LocalId, forGroup, m_undo.Count); 3633 // Name, LocalId, forGroup, m_undo.Count);
3578 } 3634 }
3579 } 3635 }
3580 } 3636 }
3581 } 3637 }
3582// else 3638 // else
3583// { 3639 // {
3584// m_log.DebugFormat("[SCENE OBJECT PART]: Ignoring undo store for {0} {1}", Name, LocalId); 3640 // m_log.DebugFormat("[SCENE OBJECT PART]: Ignoring undo store for {0} {1}", Name, LocalId);
3585// } 3641 // }
3586 } 3642 }
3587// else 3643 // else
3588// { 3644 // {
3589// m_log.DebugFormat( 3645 // m_log.DebugFormat(
3590// "[SCENE OBJECT PART]: Ignoring undo store for {0} {1} since already undoing", Name, LocalId); 3646 // "[SCENE OBJECT PART]: Ignoring undo store for {0} {1} since already undoing", Name, LocalId);
3591// } 3647 // }
3592 } 3648 }
3593 3649
3594 /// <summary> 3650 /// <summary>
@@ -4635,8 +4691,9 @@ namespace OpenSim.Region.Framework.Scenes
4635 { 4691 {
4636 m_shape.TextureEntry = textureEntry; 4692 m_shape.TextureEntry = textureEntry;
4637 TriggerScriptChangedEvent(Changed.TEXTURE); 4693 TriggerScriptChangedEvent(Changed.TEXTURE);
4638 4694 m_updateFlag = 1;
4639 ParentGroup.HasGroupChanged = true; 4695 ParentGroup.HasGroupChanged = true;
4696
4640 //This is madness.. 4697 //This is madness..
4641 //ParentGroup.ScheduleGroupForFullUpdate(); 4698 //ParentGroup.ScheduleGroupForFullUpdate();
4642 //This is sparta 4699 //This is sparta
@@ -4833,5 +4890,17 @@ namespace OpenSim.Region.Framework.Scenes
4833 Color color = Color; 4890 Color color = Color;
4834 return new Color4(color.R, color.G, color.B, (byte)(0xFF - color.A)); 4891 return new Color4(color.R, color.G, color.B, (byte)(0xFF - color.A));
4835 } 4892 }
4893
4894 public void ResetOwnerChangeFlag()
4895 {
4896 List<UUID> inv = Inventory.GetInventoryList();
4897
4898 foreach (UUID itemID in inv)
4899 {
4900 TaskInventoryItem item = Inventory.GetInventoryItem(itemID);
4901 item.OwnerChanged = false;
4902 Inventory.UpdateInventoryItem(item, false, false);
4903 }
4904 }
4836 } 4905 }
4837} 4906}