diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
18 files changed, 2422 insertions, 796 deletions
diff --git a/OpenSim/Region/Framework/Scenes/EventManager.cs b/OpenSim/Region/Framework/Scenes/EventManager.cs index 4f71915..209a0a6 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; |
@@ -788,6 +792,26 @@ namespace OpenSim.Region.Framework.Scenes | |||
788 | } | 792 | } |
789 | } | 793 | } |
790 | } | 794 | } |
795 | public void TriggerTerrainUpdate() | ||
796 | { | ||
797 | OnTerrainUpdateDelegate handlerTerrainUpdate = OnTerrainUpdate; | ||
798 | if (handlerTerrainUpdate != null) | ||
799 | { | ||
800 | foreach (OnTerrainUpdateDelegate d in handlerTerrainUpdate.GetInvocationList()) | ||
801 | { | ||
802 | try | ||
803 | { | ||
804 | d(); | ||
805 | } | ||
806 | catch (Exception e) | ||
807 | { | ||
808 | m_log.ErrorFormat( | ||
809 | "[EVENT MANAGER]: Delegate for TriggerTerrainUpdate failed - continuing. {0} {1}", | ||
810 | e.Message, e.StackTrace); | ||
811 | } | ||
812 | } | ||
813 | } | ||
814 | } | ||
791 | 815 | ||
792 | public void TriggerTerrainTick() | 816 | public void TriggerTerrainTick() |
793 | { | 817 | { |
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/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index b62023b..1746cfe 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -117,34 +117,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
117 | /// <param name="item"></param> | 117 | /// <param name="item"></param> |
118 | public bool AddInventoryItem(InventoryItemBase item) | 118 | public bool AddInventoryItem(InventoryItemBase item) |
119 | { | 119 | { |
120 | if (UUID.Zero == item.Folder) | 120 | InventoryFolderBase folder; |
121 | |||
122 | if (item.Folder == UUID.Zero) | ||
121 | { | 123 | { |
122 | InventoryFolderBase f = InventoryService.GetFolderForType(item.Owner, (AssetType)item.AssetType); | 124 | folder = InventoryService.GetFolderForType(item.Owner, (AssetType)item.AssetType); |
123 | if (f != null) | 125 | if (folder == null) |
124 | { | 126 | { |
125 | // m_log.DebugFormat( | 127 | folder = InventoryService.GetRootFolder(item.Owner); |
126 | // "[LOCAL INVENTORY SERVICES CONNECTOR]: Found folder {0} type {1} for item {2}", | 128 | |
127 | // f.Name, (AssetType)f.Type, item.Name); | 129 | if (folder == null) |
128 | |||
129 | item.Folder = f.ID; | ||
130 | } | ||
131 | else | ||
132 | { | ||
133 | f = InventoryService.GetRootFolder(item.Owner); | ||
134 | if (f != null) | ||
135 | { | ||
136 | item.Folder = f.ID; | ||
137 | } | ||
138 | else | ||
139 | { | ||
140 | m_log.WarnFormat( | ||
141 | "[AGENT INVENTORY]: Could not find root folder for {0} when trying to add item {1} with no parent folder specified", | ||
142 | item.Owner, item.Name); | ||
143 | return false; | 130 | return false; |
144 | } | ||
145 | } | 131 | } |
132 | |||
133 | item.Folder = folder.ID; | ||
146 | } | 134 | } |
147 | 135 | ||
148 | if (InventoryService.AddItem(item)) | 136 | if (InventoryService.AddItem(item)) |
149 | { | 137 | { |
150 | int userlevel = 0; | 138 | int userlevel = 0; |
@@ -264,8 +252,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
264 | 252 | ||
265 | // Update item with new asset | 253 | // Update item with new asset |
266 | item.AssetID = asset.FullID; | 254 | item.AssetID = asset.FullID; |
267 | if (group.UpdateInventoryItem(item)) | 255 | group.UpdateInventoryItem(item); |
268 | remoteClient.SendAgentAlertMessage("Script saved", false); | ||
269 | 256 | ||
270 | part.SendPropertiesToClient(remoteClient); | 257 | part.SendPropertiesToClient(remoteClient); |
271 | 258 | ||
@@ -276,12 +263,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
276 | { | 263 | { |
277 | // Needs to determine which engine was running it and use that | 264 | // Needs to determine which engine was running it and use that |
278 | // | 265 | // |
279 | part.Inventory.CreateScriptInstance(item.ItemID, 0, false, DefaultScriptEngine, 0); | 266 | errors = part.Inventory.CreateScriptInstanceEr(item.ItemID, 0, false, DefaultScriptEngine, 0); |
280 | errors = part.Inventory.GetScriptErrors(item.ItemID); | ||
281 | } | ||
282 | else | ||
283 | { | ||
284 | remoteClient.SendAgentAlertMessage("Script saved", false); | ||
285 | } | 267 | } |
286 | part.ParentGroup.ResumeScripts(); | 268 | part.ParentGroup.ResumeScripts(); |
287 | return errors; | 269 | return errors; |
@@ -345,6 +327,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
345 | 327 | ||
346 | if (UUID.Zero == transactionID) | 328 | if (UUID.Zero == transactionID) |
347 | { | 329 | { |
330 | item.Flags = (item.Flags & ~(uint)255) | (itemUpd.Flags & (uint)255); | ||
348 | item.Name = itemUpd.Name; | 331 | item.Name = itemUpd.Name; |
349 | item.Description = itemUpd.Description; | 332 | item.Description = itemUpd.Description; |
350 | if (item.NextPermissions != (itemUpd.NextPermissions & item.BasePermissions)) | 333 | if (item.NextPermissions != (itemUpd.NextPermissions & item.BasePermissions)) |
@@ -723,6 +706,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
723 | return; | 706 | return; |
724 | } | 707 | } |
725 | 708 | ||
709 | if (newName == null) newName = item.Name; | ||
710 | |||
726 | AssetBase asset = AssetService.Get(item.AssetID.ToString()); | 711 | AssetBase asset = AssetService.Get(item.AssetID.ToString()); |
727 | 712 | ||
728 | if (asset != null) | 713 | if (asset != null) |
@@ -779,6 +764,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
779 | } | 764 | } |
780 | 765 | ||
781 | /// <summary> | 766 | /// <summary> |
767 | /// Move an item within the agent's inventory, and leave a copy (used in making a new outfit) | ||
768 | /// </summary> | ||
769 | public void MoveInventoryItemsLeaveCopy(IClientAPI remoteClient, List<InventoryItemBase> items, UUID destfolder) | ||
770 | { | ||
771 | List<InventoryItemBase> moveitems = new List<InventoryItemBase>(); | ||
772 | foreach (InventoryItemBase b in items) | ||
773 | { | ||
774 | CopyInventoryItem(remoteClient, 0, remoteClient.AgentId, b.ID, b.Folder, null); | ||
775 | InventoryItemBase n = InventoryService.GetItem(b); | ||
776 | n.Folder = destfolder; | ||
777 | moveitems.Add(n); | ||
778 | remoteClient.SendInventoryItemCreateUpdate(n, 0); | ||
779 | } | ||
780 | |||
781 | MoveInventoryItem(remoteClient, moveitems); | ||
782 | } | ||
783 | |||
784 | /// <summary> | ||
782 | /// Move an item within the agent's inventory. | 785 | /// Move an item within the agent's inventory. |
783 | /// </summary> | 786 | /// </summary> |
784 | /// <param name="remoteClient"></param> | 787 | /// <param name="remoteClient"></param> |
@@ -979,25 +982,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
979 | public void RemoveTaskInventory(IClientAPI remoteClient, UUID itemID, uint localID) | 982 | public void RemoveTaskInventory(IClientAPI remoteClient, UUID itemID, uint localID) |
980 | { | 983 | { |
981 | SceneObjectPart part = GetSceneObjectPart(localID); | 984 | SceneObjectPart part = GetSceneObjectPart(localID); |
982 | if (part == null) | 985 | SceneObjectGroup group = null; |
983 | return; | 986 | if (part != null) |
987 | { | ||
988 | group = part.ParentGroup; | ||
989 | } | ||
990 | if (part != null && group != null) | ||
991 | { | ||
992 | if (!Permissions.CanEditObjectInventory(part.UUID, remoteClient.AgentId)) | ||
993 | return; | ||
984 | 994 | ||
985 | SceneObjectGroup group = part.ParentGroup; | 995 | TaskInventoryItem item = group.GetInventoryItem(localID, itemID); |
986 | if (!Permissions.CanEditObjectInventory(part.UUID, remoteClient.AgentId)) | 996 | if (item == null) |
987 | return; | 997 | return; |
988 | |||
989 | TaskInventoryItem item = group.GetInventoryItem(localID, itemID); | ||
990 | if (item == null) | ||
991 | return; | ||
992 | 998 | ||
993 | if (item.Type == 10) | 999 | if (item.Type == 10) |
994 | { | 1000 | { |
995 | part.RemoveScriptEvents(itemID); | 1001 | part.RemoveScriptEvents(itemID); |
996 | EventManager.TriggerRemoveScript(localID, itemID); | 1002 | EventManager.TriggerRemoveScript(localID, itemID); |
1003 | } | ||
1004 | |||
1005 | group.RemoveInventoryItem(localID, itemID); | ||
1006 | part.SendPropertiesToClient(remoteClient); | ||
997 | } | 1007 | } |
998 | |||
999 | group.RemoveInventoryItem(localID, itemID); | ||
1000 | part.SendPropertiesToClient(remoteClient); | ||
1001 | } | 1008 | } |
1002 | 1009 | ||
1003 | private InventoryItemBase CreateAgentInventoryItemFromTask(UUID destAgent, SceneObjectPart part, UUID itemId) | 1010 | private InventoryItemBase CreateAgentInventoryItemFromTask(UUID destAgent, SceneObjectPart part, UUID itemId) |
@@ -1098,6 +1105,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
1098 | { | 1105 | { |
1099 | SceneObjectPart part = GetSceneObjectPart(primLocalId); | 1106 | SceneObjectPart part = GetSceneObjectPart(primLocalId); |
1100 | 1107 | ||
1108 | // Can't move a null item | ||
1109 | if (itemId == UUID.Zero) | ||
1110 | return; | ||
1111 | |||
1101 | if (null == part) | 1112 | if (null == part) |
1102 | { | 1113 | { |
1103 | m_log.WarnFormat( | 1114 | m_log.WarnFormat( |
@@ -1208,6 +1219,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
1208 | if ((part.OwnerID != destPart.OwnerID) && ((srcTaskItem.CurrentPermissions & (uint)PermissionMask.Transfer) == 0)) | 1219 | if ((part.OwnerID != destPart.OwnerID) && ((srcTaskItem.CurrentPermissions & (uint)PermissionMask.Transfer) == 0)) |
1209 | return; | 1220 | return; |
1210 | 1221 | ||
1222 | bool overrideNoMod = false; | ||
1223 | if ((part.GetEffectiveObjectFlags() & (uint)PrimFlags.AllowInventoryDrop) != 0) | ||
1224 | overrideNoMod = true; | ||
1225 | |||
1211 | if (part.OwnerID != destPart.OwnerID && (part.GetEffectiveObjectFlags() & (uint)PrimFlags.AllowInventoryDrop) == 0) | 1226 | if (part.OwnerID != destPart.OwnerID && (part.GetEffectiveObjectFlags() & (uint)PrimFlags.AllowInventoryDrop) == 0) |
1212 | { | 1227 | { |
1213 | // object cannot copy items to an object owned by a different owner | 1228 | // object cannot copy items to an object owned by a different owner |
@@ -1217,7 +1232,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1217 | } | 1232 | } |
1218 | 1233 | ||
1219 | // must have both move and modify permission to put an item in an object | 1234 | // must have both move and modify permission to put an item in an object |
1220 | if ((part.OwnerMask & ((uint)PermissionMask.Move | (uint)PermissionMask.Modify)) == 0) | 1235 | if (((part.OwnerMask & (uint)PermissionMask.Modify) == 0) && (!overrideNoMod)) |
1221 | { | 1236 | { |
1222 | return; | 1237 | return; |
1223 | } | 1238 | } |
@@ -1276,6 +1291,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
1276 | 1291 | ||
1277 | public UUID MoveTaskInventoryItems(UUID destID, string category, SceneObjectPart host, List<UUID> items) | 1292 | public UUID MoveTaskInventoryItems(UUID destID, string category, SceneObjectPart host, List<UUID> items) |
1278 | { | 1293 | { |
1294 | SceneObjectPart destPart = GetSceneObjectPart(destID); | ||
1295 | if (destPart != null) // Move into a prim | ||
1296 | { | ||
1297 | foreach(UUID itemID in items) | ||
1298 | MoveTaskInventoryItem(destID, host, itemID); | ||
1299 | return destID; // Prim folder ID == prim ID | ||
1300 | } | ||
1301 | |||
1279 | InventoryFolderBase rootFolder = InventoryService.GetRootFolder(destID); | 1302 | InventoryFolderBase rootFolder = InventoryService.GetRootFolder(destID); |
1280 | 1303 | ||
1281 | UUID newFolderID = UUID.Random(); | 1304 | UUID newFolderID = UUID.Random(); |
@@ -1455,13 +1478,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1455 | { | 1478 | { |
1456 | agentTransactions.HandleTaskItemUpdateFromTransaction( | 1479 | agentTransactions.HandleTaskItemUpdateFromTransaction( |
1457 | remoteClient, part, transactionID, currentItem); | 1480 | remoteClient, part, transactionID, currentItem); |
1458 | |||
1459 | if ((InventoryType)itemInfo.InvType == InventoryType.Notecard) | ||
1460 | remoteClient.SendAgentAlertMessage("Notecard saved", false); | ||
1461 | else if ((InventoryType)itemInfo.InvType == InventoryType.LSL) | ||
1462 | remoteClient.SendAgentAlertMessage("Script saved", false); | ||
1463 | else | ||
1464 | remoteClient.SendAgentAlertMessage("Item saved", false); | ||
1465 | } | 1481 | } |
1466 | 1482 | ||
1467 | // Base ALWAYS has move | 1483 | // Base ALWAYS has move |
@@ -1602,7 +1618,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1602 | return; | 1618 | return; |
1603 | 1619 | ||
1604 | AssetBase asset = CreateAsset(itemBase.Name, itemBase.Description, (sbyte)itemBase.AssetType, | 1620 | AssetBase asset = CreateAsset(itemBase.Name, itemBase.Description, (sbyte)itemBase.AssetType, |
1605 | Encoding.ASCII.GetBytes("default\n{\n state_entry()\n {\n llSay(0, \"Script running\");\n }\n}"), | 1621 | Encoding.ASCII.GetBytes("default\n{\n state_entry()\n {\n llSay(0, \"Script running\");\n }\n\n touch_start(integer num)\n {\n }\n}"), |
1606 | remoteClient.AgentId); | 1622 | remoteClient.AgentId); |
1607 | AssetService.Store(asset); | 1623 | AssetService.Store(asset); |
1608 | 1624 | ||
@@ -1755,23 +1771,32 @@ namespace OpenSim.Region.Framework.Scenes | |||
1755 | // build a list of eligible objects | 1771 | // build a list of eligible objects |
1756 | List<uint> deleteIDs = new List<uint>(); | 1772 | List<uint> deleteIDs = new List<uint>(); |
1757 | List<SceneObjectGroup> deleteGroups = new List<SceneObjectGroup>(); | 1773 | List<SceneObjectGroup> deleteGroups = new List<SceneObjectGroup>(); |
1758 | 1774 | List<SceneObjectGroup> takeGroups = new List<SceneObjectGroup>(); | |
1759 | // Start with true for both, then remove the flags if objects | ||
1760 | // that we can't derez are part of the selection | ||
1761 | bool permissionToTake = true; | ||
1762 | bool permissionToTakeCopy = true; | ||
1763 | bool permissionToDelete = true; | ||
1764 | 1775 | ||
1765 | foreach (uint localID in localIDs) | 1776 | foreach (uint localID in localIDs) |
1766 | { | 1777 | { |
1778 | // Start with true for both, then remove the flags if objects | ||
1779 | // that we can't derez are part of the selection | ||
1780 | bool permissionToTake = true; | ||
1781 | bool permissionToTakeCopy = true; | ||
1782 | bool permissionToDelete = true; | ||
1783 | |||
1767 | // Invalid id | 1784 | // Invalid id |
1768 | SceneObjectPart part = GetSceneObjectPart(localID); | 1785 | SceneObjectPart part = GetSceneObjectPart(localID); |
1769 | if (part == null) | 1786 | if (part == null) |
1787 | { | ||
1788 | //Client still thinks the object exists, kill it | ||
1789 | deleteIDs.Add(localID); | ||
1770 | continue; | 1790 | continue; |
1791 | } | ||
1771 | 1792 | ||
1772 | // Already deleted by someone else | 1793 | // Already deleted by someone else |
1773 | if (part.ParentGroup.IsDeleted) | 1794 | if (part.ParentGroup.IsDeleted) |
1795 | { | ||
1796 | //Client still thinks the object exists, kill it | ||
1797 | deleteIDs.Add(localID); | ||
1774 | continue; | 1798 | continue; |
1799 | } | ||
1775 | 1800 | ||
1776 | // Can't delete child prims | 1801 | // Can't delete child prims |
1777 | if (part != part.ParentGroup.RootPart) | 1802 | if (part != part.ParentGroup.RootPart) |
@@ -1779,9 +1804,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1779 | 1804 | ||
1780 | SceneObjectGroup grp = part.ParentGroup; | 1805 | SceneObjectGroup grp = part.ParentGroup; |
1781 | 1806 | ||
1782 | deleteIDs.Add(localID); | ||
1783 | deleteGroups.Add(grp); | ||
1784 | |||
1785 | if (remoteClient == null) | 1807 | if (remoteClient == null) |
1786 | { | 1808 | { |
1787 | // Autoreturn has a null client. Nothing else does. So | 1809 | // Autoreturn has a null client. Nothing else does. So |
@@ -1798,83 +1820,195 @@ namespace OpenSim.Region.Framework.Scenes | |||
1798 | } | 1820 | } |
1799 | else | 1821 | else |
1800 | { | 1822 | { |
1801 | if (!Permissions.CanTakeCopyObject(grp.UUID, remoteClient.AgentId)) | 1823 | if (action == DeRezAction.TakeCopy) |
1824 | { | ||
1825 | if (!Permissions.CanTakeCopyObject(grp.UUID, remoteClient.AgentId)) | ||
1826 | permissionToTakeCopy = false; | ||
1827 | } | ||
1828 | else | ||
1829 | { | ||
1802 | permissionToTakeCopy = false; | 1830 | permissionToTakeCopy = false; |
1803 | 1831 | } | |
1804 | if (!Permissions.CanTakeObject(grp.UUID, remoteClient.AgentId)) | 1832 | if (!Permissions.CanTakeObject(grp.UUID, remoteClient.AgentId)) |
1805 | permissionToTake = false; | 1833 | permissionToTake = false; |
1806 | 1834 | ||
1807 | if (!Permissions.CanDeleteObject(grp.UUID, remoteClient.AgentId)) | 1835 | if (!Permissions.CanDeleteObject(grp.UUID, remoteClient.AgentId)) |
1808 | permissionToDelete = false; | 1836 | permissionToDelete = false; |
1809 | } | 1837 | } |
1810 | } | ||
1811 | 1838 | ||
1812 | // Handle god perms | 1839 | // Handle god perms |
1813 | if ((remoteClient != null) && Permissions.IsGod(remoteClient.AgentId)) | 1840 | if ((remoteClient != null) && Permissions.IsGod(remoteClient.AgentId)) |
1814 | { | 1841 | { |
1815 | permissionToTake = true; | 1842 | permissionToTake = true; |
1816 | permissionToTakeCopy = true; | 1843 | permissionToTakeCopy = true; |
1817 | permissionToDelete = true; | 1844 | permissionToDelete = true; |
1818 | } | 1845 | } |
1819 | 1846 | ||
1820 | // If we're re-saving, we don't even want to delete | 1847 | // If we're re-saving, we don't even want to delete |
1821 | if (action == DeRezAction.SaveToExistingUserInventoryItem) | 1848 | if (action == DeRezAction.SaveToExistingUserInventoryItem) |
1822 | permissionToDelete = false; | 1849 | permissionToDelete = false; |
1823 | 1850 | ||
1824 | // if we want to take a copy, we also don't want to delete | 1851 | // if we want to take a copy, we also don't want to delete |
1825 | // Note: after this point, the permissionToTakeCopy flag | 1852 | // Note: after this point, the permissionToTakeCopy flag |
1826 | // becomes irrelevant. It already includes the permissionToTake | 1853 | // becomes irrelevant. It already includes the permissionToTake |
1827 | // permission and after excluding no copy items here, we can | 1854 | // permission and after excluding no copy items here, we can |
1828 | // just use that. | 1855 | // just use that. |
1829 | if (action == DeRezAction.TakeCopy) | 1856 | if (action == DeRezAction.TakeCopy) |
1830 | { | 1857 | { |
1831 | // If we don't have permission, stop right here | 1858 | // If we don't have permission, stop right here |
1832 | if (!permissionToTakeCopy) | 1859 | if (!permissionToTakeCopy) |
1833 | return; | 1860 | return; |
1834 | 1861 | ||
1835 | permissionToTake = true; | 1862 | permissionToTake = true; |
1836 | // Don't delete | 1863 | // Don't delete |
1837 | permissionToDelete = false; | 1864 | permissionToDelete = false; |
1838 | } | 1865 | } |
1839 | 1866 | ||
1840 | if (action == DeRezAction.Return) | 1867 | if (action == DeRezAction.Return) |
1841 | { | ||
1842 | if (remoteClient != null) | ||
1843 | { | 1868 | { |
1844 | if (Permissions.CanReturnObjects( | 1869 | if (remoteClient != null) |
1845 | null, | ||
1846 | remoteClient.AgentId, | ||
1847 | deleteGroups)) | ||
1848 | { | 1870 | { |
1849 | permissionToTake = true; | 1871 | if (Permissions.CanReturnObjects( |
1850 | permissionToDelete = true; | 1872 | null, |
1851 | 1873 | remoteClient.AgentId, | |
1852 | foreach (SceneObjectGroup g in deleteGroups) | 1874 | deleteGroups)) |
1853 | { | 1875 | { |
1854 | AddReturn(g.OwnerID, g.Name, g.AbsolutePosition, "parcel owner return"); | 1876 | permissionToTake = true; |
1877 | permissionToDelete = true; | ||
1878 | |||
1879 | AddReturn(grp.OwnerID, grp.Name, grp.AbsolutePosition, "parcel owner return"); | ||
1855 | } | 1880 | } |
1856 | } | 1881 | } |
1882 | else // Auto return passes through here with null agent | ||
1883 | { | ||
1884 | permissionToTake = true; | ||
1885 | permissionToDelete = true; | ||
1886 | } | ||
1857 | } | 1887 | } |
1858 | else // Auto return passes through here with null agent | 1888 | |
1889 | if (permissionToTake && (!permissionToDelete)) | ||
1890 | takeGroups.Add(grp); | ||
1891 | |||
1892 | if (permissionToDelete) | ||
1859 | { | 1893 | { |
1860 | permissionToTake = true; | 1894 | if (permissionToTake) |
1861 | permissionToDelete = true; | 1895 | deleteGroups.Add(grp); |
1896 | deleteIDs.Add(grp.LocalId); | ||
1862 | } | 1897 | } |
1863 | } | 1898 | } |
1864 | 1899 | ||
1865 | if (permissionToTake) | 1900 | SendKillObject(deleteIDs); |
1901 | |||
1902 | if (deleteGroups.Count > 0) | ||
1866 | { | 1903 | { |
1904 | foreach (SceneObjectGroup g in deleteGroups) | ||
1905 | deleteIDs.Remove(g.LocalId); | ||
1906 | |||
1867 | m_asyncSceneObjectDeleter.DeleteToInventory( | 1907 | m_asyncSceneObjectDeleter.DeleteToInventory( |
1868 | action, destinationID, deleteGroups, remoteClient, | 1908 | action, destinationID, deleteGroups, remoteClient, |
1869 | permissionToDelete); | 1909 | true); |
1870 | } | 1910 | } |
1871 | else if (permissionToDelete) | 1911 | if (takeGroups.Count > 0) |
1912 | { | ||
1913 | m_asyncSceneObjectDeleter.DeleteToInventory( | ||
1914 | action, destinationID, takeGroups, remoteClient, | ||
1915 | false); | ||
1916 | } | ||
1917 | if (deleteIDs.Count > 0) | ||
1872 | { | 1918 | { |
1873 | foreach (SceneObjectGroup g in deleteGroups) | 1919 | foreach (SceneObjectGroup g in deleteGroups) |
1874 | DeleteSceneObject(g, false); | 1920 | DeleteSceneObject(g, true); |
1875 | } | 1921 | } |
1876 | } | 1922 | } |
1877 | 1923 | ||
1924 | public UUID attachObjectAssetStore(IClientAPI remoteClient, SceneObjectGroup grp, UUID AgentId, out UUID itemID) | ||
1925 | { | ||
1926 | itemID = UUID.Zero; | ||
1927 | if (grp != null) | ||
1928 | { | ||
1929 | Vector3 inventoryStoredPosition = new Vector3 | ||
1930 | (((grp.AbsolutePosition.X > (int)Constants.RegionSize) | ||
1931 | ? 250 | ||
1932 | : grp.AbsolutePosition.X) | ||
1933 | , | ||
1934 | (grp.AbsolutePosition.X > (int)Constants.RegionSize) | ||
1935 | ? 250 | ||
1936 | : grp.AbsolutePosition.X, | ||
1937 | grp.AbsolutePosition.Z); | ||
1938 | |||
1939 | Vector3 originalPosition = grp.AbsolutePosition; | ||
1940 | |||
1941 | grp.AbsolutePosition = inventoryStoredPosition; | ||
1942 | |||
1943 | string sceneObjectXml = SceneObjectSerializer.ToOriginalXmlFormat(grp); | ||
1944 | |||
1945 | grp.AbsolutePosition = originalPosition; | ||
1946 | |||
1947 | AssetBase asset = CreateAsset( | ||
1948 | grp.GetPartName(grp.LocalId), | ||
1949 | grp.GetPartDescription(grp.LocalId), | ||
1950 | (sbyte)AssetType.Object, | ||
1951 | Utils.StringToBytes(sceneObjectXml), | ||
1952 | remoteClient.AgentId); | ||
1953 | AssetService.Store(asset); | ||
1954 | |||
1955 | InventoryItemBase item = new InventoryItemBase(); | ||
1956 | item.CreatorId = grp.RootPart.CreatorID.ToString(); | ||
1957 | item.CreatorData = grp.RootPart.CreatorData; | ||
1958 | item.Owner = remoteClient.AgentId; | ||
1959 | item.ID = UUID.Random(); | ||
1960 | item.AssetID = asset.FullID; | ||
1961 | item.Description = asset.Description; | ||
1962 | item.Name = asset.Name; | ||
1963 | item.AssetType = asset.Type; | ||
1964 | item.InvType = (int)InventoryType.Object; | ||
1965 | |||
1966 | InventoryFolderBase folder = InventoryService.GetFolderForType(remoteClient.AgentId, AssetType.Object); | ||
1967 | if (folder != null) | ||
1968 | item.Folder = folder.ID; | ||
1969 | else // oopsies | ||
1970 | item.Folder = UUID.Zero; | ||
1971 | |||
1972 | // Set up base perms properly | ||
1973 | uint permsBase = (uint)(PermissionMask.Move | PermissionMask.Copy | PermissionMask.Transfer | PermissionMask.Modify); | ||
1974 | permsBase &= grp.RootPart.BaseMask; | ||
1975 | permsBase |= (uint)PermissionMask.Move; | ||
1976 | |||
1977 | // Make sure we don't lock it | ||
1978 | grp.RootPart.NextOwnerMask |= (uint)PermissionMask.Move; | ||
1979 | |||
1980 | if ((remoteClient.AgentId != grp.RootPart.OwnerID) && Permissions.PropagatePermissions()) | ||
1981 | { | ||
1982 | item.BasePermissions = permsBase & grp.RootPart.NextOwnerMask; | ||
1983 | item.CurrentPermissions = permsBase & grp.RootPart.NextOwnerMask; | ||
1984 | item.NextPermissions = permsBase & grp.RootPart.NextOwnerMask; | ||
1985 | item.EveryOnePermissions = permsBase & grp.RootPart.EveryoneMask & grp.RootPart.NextOwnerMask; | ||
1986 | item.GroupPermissions = permsBase & grp.RootPart.GroupMask & grp.RootPart.NextOwnerMask; | ||
1987 | } | ||
1988 | else | ||
1989 | { | ||
1990 | item.BasePermissions = permsBase; | ||
1991 | item.CurrentPermissions = permsBase & grp.RootPart.OwnerMask; | ||
1992 | item.NextPermissions = permsBase & grp.RootPart.NextOwnerMask; | ||
1993 | item.EveryOnePermissions = permsBase & grp.RootPart.EveryoneMask; | ||
1994 | item.GroupPermissions = permsBase & grp.RootPart.GroupMask; | ||
1995 | } | ||
1996 | item.CreationDate = Util.UnixTimeSinceEpoch(); | ||
1997 | |||
1998 | // sets itemID so client can show item as 'attached' in inventory | ||
1999 | grp.SetFromItemID(item.ID); | ||
2000 | |||
2001 | if (AddInventoryItem(item)) | ||
2002 | remoteClient.SendInventoryItemCreateUpdate(item, 0); | ||
2003 | else | ||
2004 | m_dialogModule.SendAlertToUser(remoteClient, "Operation failed"); | ||
2005 | |||
2006 | itemID = item.ID; | ||
2007 | return item.AssetID; | ||
2008 | } | ||
2009 | return UUID.Zero; | ||
2010 | } | ||
2011 | |||
1878 | /// <summary> | 2012 | /// <summary> |
1879 | /// Event Handler Rez an object into a scene | 2013 | /// Event Handler Rez an object into a scene |
1880 | /// Calls the non-void event handler | 2014 | /// Calls the non-void event handler |
@@ -2001,6 +2135,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
2001 | 2135 | ||
2002 | public void SetScriptRunning(IClientAPI controllingClient, UUID objectID, UUID itemID, bool running) | 2136 | public void SetScriptRunning(IClientAPI controllingClient, UUID objectID, UUID itemID, bool running) |
2003 | { | 2137 | { |
2138 | if (!Permissions.CanEditScript(itemID, objectID, controllingClient.AgentId)) | ||
2139 | return; | ||
2140 | |||
2004 | SceneObjectPart part = GetSceneObjectPart(objectID); | 2141 | SceneObjectPart part = GetSceneObjectPart(objectID); |
2005 | if (part == null) | 2142 | if (part == null) |
2006 | return; | 2143 | return; |
diff --git a/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs index 3355ebe..bf2e775 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.PacketHandlers.cs | |||
@@ -346,7 +346,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
346 | List<UserAccount> accounts = UserAccountService.GetUserAccounts(RegionInfo.ScopeID, query); | 346 | List<UserAccount> accounts = UserAccountService.GetUserAccounts(RegionInfo.ScopeID, query); |
347 | 347 | ||
348 | if (accounts == null) | 348 | if (accounts == null) |
349 | { | ||
350 | m_log.DebugFormat("[LLCIENT]: ProcessAvatarPickerRequest: returned null result"); | ||
349 | return; | 351 | return; |
352 | } | ||
350 | 353 | ||
351 | AvatarPickerReplyPacket replyPacket = (AvatarPickerReplyPacket) PacketPool.Instance.GetPacket(PacketType.AvatarPickerReply); | 354 | AvatarPickerReplyPacket replyPacket = (AvatarPickerReplyPacket) PacketPool.Instance.GetPacket(PacketType.AvatarPickerReply); |
352 | // TODO: don't create new blocks if recycling an old packet | 355 | // TODO: don't create new blocks if recycling an old packet |
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Permissions.cs b/OpenSim/Region/Framework/Scenes/Scene.Permissions.cs index e1fedf4..48beb9c 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Permissions.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Permissions.cs | |||
@@ -49,6 +49,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
49 | public delegate bool DuplicateObjectHandler(int objectCount, UUID objectID, UUID owner, Scene scene, Vector3 objectPosition); | 49 | public delegate bool DuplicateObjectHandler(int objectCount, UUID objectID, UUID owner, Scene scene, Vector3 objectPosition); |
50 | public delegate bool EditObjectHandler(UUID objectID, UUID editorID, Scene scene); | 50 | public delegate bool EditObjectHandler(UUID objectID, UUID editorID, Scene scene); |
51 | public delegate bool EditObjectInventoryHandler(UUID objectID, UUID editorID, Scene scene); | 51 | public delegate bool EditObjectInventoryHandler(UUID objectID, UUID editorID, Scene scene); |
52 | public delegate bool ViewObjectInventoryHandler(UUID objectID, UUID editorID, Scene scene); | ||
52 | public delegate bool MoveObjectHandler(UUID objectID, UUID moverID, Scene scene); | 53 | public delegate bool MoveObjectHandler(UUID objectID, UUID moverID, Scene scene); |
53 | public delegate bool ObjectEntryHandler(UUID objectID, bool enteringRegion, Vector3 newPoint, Scene scene); | 54 | public delegate bool ObjectEntryHandler(UUID objectID, bool enteringRegion, Vector3 newPoint, Scene scene); |
54 | public delegate bool ReturnObjectsHandler(ILandObject land, UUID user, List<SceneObjectGroup> objects, Scene scene); | 55 | public delegate bool ReturnObjectsHandler(ILandObject land, UUID user, List<SceneObjectGroup> objects, Scene scene); |
@@ -116,6 +117,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
116 | public event DuplicateObjectHandler OnDuplicateObject; | 117 | public event DuplicateObjectHandler OnDuplicateObject; |
117 | public event EditObjectHandler OnEditObject; | 118 | public event EditObjectHandler OnEditObject; |
118 | public event EditObjectInventoryHandler OnEditObjectInventory; | 119 | public event EditObjectInventoryHandler OnEditObjectInventory; |
120 | public event ViewObjectInventoryHandler OnViewObjectInventory; | ||
119 | public event MoveObjectHandler OnMoveObject; | 121 | public event MoveObjectHandler OnMoveObject; |
120 | public event ObjectEntryHandler OnObjectEntry; | 122 | public event ObjectEntryHandler OnObjectEntry; |
121 | public event ReturnObjectsHandler OnReturnObjects; | 123 | public event ReturnObjectsHandler OnReturnObjects; |
@@ -401,6 +403,21 @@ namespace OpenSim.Region.Framework.Scenes | |||
401 | return true; | 403 | return true; |
402 | } | 404 | } |
403 | 405 | ||
406 | public bool CanViewObjectInventory(UUID objectID, UUID editorID) | ||
407 | { | ||
408 | ViewObjectInventoryHandler handler = OnViewObjectInventory; | ||
409 | if (handler != null) | ||
410 | { | ||
411 | Delegate[] list = handler.GetInvocationList(); | ||
412 | foreach (ViewObjectInventoryHandler h in list) | ||
413 | { | ||
414 | if (h(objectID, editorID, m_scene) == false) | ||
415 | return false; | ||
416 | } | ||
417 | } | ||
418 | return true; | ||
419 | } | ||
420 | |||
404 | #endregion | 421 | #endregion |
405 | 422 | ||
406 | #region MOVE OBJECT | 423 | #region MOVE OBJECT |
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 6666328..c2ba893 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -95,6 +95,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
95 | // TODO: need to figure out how allow client agents but deny | 95 | // TODO: need to figure out how allow client agents but deny |
96 | // root agents when ACL denies access to root agent | 96 | // root agents when ACL denies access to root agent |
97 | public bool m_strictAccessControl = true; | 97 | public bool m_strictAccessControl = true; |
98 | public bool m_seeIntoBannedRegion = false; | ||
98 | public int MaxUndoCount = 5; | 99 | public int MaxUndoCount = 5; |
99 | // Using this for RegionReady module to prevent LoginsDisabled from changing under our feet; | 100 | // Using this for RegionReady module to prevent LoginsDisabled from changing under our feet; |
100 | public bool LoginLock = false; | 101 | public bool LoginLock = false; |
@@ -110,12 +111,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
110 | 111 | ||
111 | protected int m_splitRegionID; | 112 | protected int m_splitRegionID; |
112 | protected Timer m_restartWaitTimer = new Timer(); | 113 | protected Timer m_restartWaitTimer = new Timer(); |
114 | protected Timer m_timerWatchdog = new Timer(); | ||
113 | protected List<RegionInfo> m_regionRestartNotifyList = new List<RegionInfo>(); | 115 | protected List<RegionInfo> m_regionRestartNotifyList = new List<RegionInfo>(); |
114 | protected List<RegionInfo> m_neighbours = new List<RegionInfo>(); | 116 | protected List<RegionInfo> m_neighbours = new List<RegionInfo>(); |
115 | protected string m_simulatorVersion = "OpenSimulator Server"; | 117 | protected string m_simulatorVersion = "OpenSimulator Server"; |
116 | protected ModuleLoader m_moduleLoader; | 118 | protected ModuleLoader m_moduleLoader; |
117 | protected AgentCircuitManager m_authenticateHandler; | 119 | protected AgentCircuitManager m_authenticateHandler; |
118 | protected SceneCommunicationService m_sceneGridService; | 120 | protected SceneCommunicationService m_sceneGridService; |
121 | protected ISnmpModule m_snmpService = null; | ||
119 | 122 | ||
120 | protected ISimulationDataService m_SimulationDataService; | 123 | protected ISimulationDataService m_SimulationDataService; |
121 | protected IEstateDataService m_EstateDataService; | 124 | protected IEstateDataService m_EstateDataService; |
@@ -168,7 +171,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
168 | private int m_update_events = 1; | 171 | private int m_update_events = 1; |
169 | private int m_update_backup = 200; | 172 | private int m_update_backup = 200; |
170 | private int m_update_terrain = 50; | 173 | private int m_update_terrain = 50; |
171 | // private int m_update_land = 1; | 174 | private int m_update_land = 10; |
172 | private int m_update_coarse_locations = 50; | 175 | private int m_update_coarse_locations = 50; |
173 | 176 | ||
174 | private int agentMS; | 177 | private int agentMS; |
@@ -183,6 +186,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
183 | private int landMS; | 186 | private int landMS; |
184 | private int lastCompletedFrame; | 187 | private int lastCompletedFrame; |
185 | 188 | ||
189 | public bool CombineRegions = false; | ||
186 | /// <summary> | 190 | /// <summary> |
187 | /// Signals whether temporary objects are currently being cleaned up. Needed because this is launched | 191 | /// Signals whether temporary objects are currently being cleaned up. Needed because this is launched |
188 | /// asynchronously from the update loop. | 192 | /// asynchronously from the update loop. |
@@ -205,11 +209,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
205 | private bool m_scripts_enabled = true; | 209 | private bool m_scripts_enabled = true; |
206 | private string m_defaultScriptEngine; | 210 | private string m_defaultScriptEngine; |
207 | private int m_LastLogin; | 211 | private int m_LastLogin; |
208 | private Thread HeartbeatThread; | 212 | private Thread HeartbeatThread = null; |
209 | private volatile bool shuttingdown; | 213 | private volatile bool shuttingdown; |
210 | 214 | ||
211 | private int m_lastUpdate; | 215 | private int m_lastUpdate; |
216 | private int m_lastIncoming; | ||
217 | private int m_lastOutgoing; | ||
212 | private bool m_firstHeartbeat = true; | 218 | private bool m_firstHeartbeat = true; |
219 | private int m_hbRestarts = 0; | ||
213 | 220 | ||
214 | private object m_deleting_scene_object = new object(); | 221 | private object m_deleting_scene_object = new object(); |
215 | 222 | ||
@@ -256,6 +263,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
256 | get { return m_sceneGridService; } | 263 | get { return m_sceneGridService; } |
257 | } | 264 | } |
258 | 265 | ||
266 | public ISnmpModule SnmpService | ||
267 | { | ||
268 | get | ||
269 | { | ||
270 | if (m_snmpService == null) | ||
271 | { | ||
272 | m_snmpService = RequestModuleInterface<ISnmpModule>(); | ||
273 | } | ||
274 | |||
275 | return m_snmpService; | ||
276 | } | ||
277 | } | ||
278 | |||
259 | public ISimulationDataService SimulationDataService | 279 | public ISimulationDataService SimulationDataService |
260 | { | 280 | { |
261 | get | 281 | get |
@@ -537,6 +557,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
537 | m_EstateDataService = estateDataService; | 557 | m_EstateDataService = estateDataService; |
538 | m_regionHandle = m_regInfo.RegionHandle; | 558 | m_regionHandle = m_regInfo.RegionHandle; |
539 | m_regionName = m_regInfo.RegionName; | 559 | m_regionName = m_regInfo.RegionName; |
560 | m_lastUpdate = Util.EnvironmentTickCount(); | ||
561 | m_lastIncoming = 0; | ||
562 | m_lastOutgoing = 0; | ||
540 | 563 | ||
541 | m_asyncSceneObjectDeleter = new AsyncSceneObjectGroupDeleter(this); | 564 | m_asyncSceneObjectDeleter = new AsyncSceneObjectGroupDeleter(this); |
542 | m_asyncSceneObjectDeleter.Enabled = true; | 565 | m_asyncSceneObjectDeleter.Enabled = true; |
@@ -653,6 +676,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
653 | m_physicalPrim = startupConfig.GetBoolean("physical_prim", true); | 676 | m_physicalPrim = startupConfig.GetBoolean("physical_prim", true); |
654 | 677 | ||
655 | m_maxNonphys = startupConfig.GetFloat("NonPhysicalPrimMax", m_maxNonphys); | 678 | m_maxNonphys = startupConfig.GetFloat("NonPhysicalPrimMax", m_maxNonphys); |
679 | |||
656 | if (RegionInfo.NonphysPrimMax > 0) | 680 | if (RegionInfo.NonphysPrimMax > 0) |
657 | { | 681 | { |
658 | m_maxNonphys = RegionInfo.NonphysPrimMax; | 682 | m_maxNonphys = RegionInfo.NonphysPrimMax; |
@@ -684,6 +708,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
684 | m_persistAfter *= 10000000; | 708 | m_persistAfter *= 10000000; |
685 | 709 | ||
686 | m_defaultScriptEngine = startupConfig.GetString("DefaultScriptEngine", "XEngine"); | 710 | m_defaultScriptEngine = startupConfig.GetString("DefaultScriptEngine", "XEngine"); |
711 | m_log.InfoFormat("[SCENE]: Default script engine {0}", m_defaultScriptEngine); | ||
687 | 712 | ||
688 | IConfig packetConfig = m_config.Configs["PacketPool"]; | 713 | IConfig packetConfig = m_config.Configs["PacketPool"]; |
689 | if (packetConfig != null) | 714 | if (packetConfig != null) |
@@ -693,6 +718,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
693 | } | 718 | } |
694 | 719 | ||
695 | m_strictAccessControl = startupConfig.GetBoolean("StrictAccessControl", m_strictAccessControl); | 720 | m_strictAccessControl = startupConfig.GetBoolean("StrictAccessControl", m_strictAccessControl); |
721 | m_seeIntoBannedRegion = startupConfig.GetBoolean("SeeIntoBannedRegion", m_seeIntoBannedRegion); | ||
722 | CombineRegions = startupConfig.GetBoolean("CombineContiguousRegions", false); | ||
696 | 723 | ||
697 | m_generateMaptiles = startupConfig.GetBoolean("GenerateMaptiles", true); | 724 | m_generateMaptiles = startupConfig.GetBoolean("GenerateMaptiles", true); |
698 | if (m_generateMaptiles) | 725 | if (m_generateMaptiles) |
@@ -728,9 +755,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
728 | m_update_terrain = startupConfig.GetInt( "UpdateTerrainEveryNFrames", m_update_terrain); | 755 | m_update_terrain = startupConfig.GetInt( "UpdateTerrainEveryNFrames", m_update_terrain); |
729 | m_update_temp_cleaning = startupConfig.GetInt( "UpdateTempCleaningEveryNFrames", m_update_temp_cleaning); | 756 | m_update_temp_cleaning = startupConfig.GetInt( "UpdateTempCleaningEveryNFrames", m_update_temp_cleaning); |
730 | } | 757 | } |
731 | catch | 758 | catch (Exception e) |
732 | { | 759 | { |
733 | m_log.Warn("[SCENE]: Failed to load StartupConfig"); | 760 | m_log.Error("[SCENE]: Failed to load StartupConfig: " + e.ToString()); |
734 | } | 761 | } |
735 | 762 | ||
736 | #endregion Region Config | 763 | #endregion Region Config |
@@ -1141,7 +1168,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
1141 | //m_heartbeatTimer.Elapsed += new ElapsedEventHandler(Heartbeat); | 1168 | //m_heartbeatTimer.Elapsed += new ElapsedEventHandler(Heartbeat); |
1142 | if (HeartbeatThread != null) | 1169 | if (HeartbeatThread != null) |
1143 | { | 1170 | { |
1171 | m_hbRestarts++; | ||
1172 | if(m_hbRestarts > 10) | ||
1173 | Environment.Exit(1); | ||
1174 | m_log.ErrorFormat("[SCENE]: Restarting heartbeat thread because it hasn't reported in in region {0}", RegionInfo.RegionName); | ||
1175 | |||
1176 | //int pid = System.Diagnostics.Process.GetCurrentProcess().Id; | ||
1177 | //System.Diagnostics.Process proc = new System.Diagnostics.Process(); | ||
1178 | //proc.EnableRaisingEvents=false; | ||
1179 | //proc.StartInfo.FileName = "/bin/kill"; | ||
1180 | //proc.StartInfo.Arguments = "-QUIT " + pid.ToString(); | ||
1181 | //proc.Start(); | ||
1182 | //proc.WaitForExit(); | ||
1183 | //Thread.Sleep(1000); | ||
1184 | //Environment.Exit(1); | ||
1144 | HeartbeatThread.Abort(); | 1185 | HeartbeatThread.Abort(); |
1186 | Watchdog.AbortThread(HeartbeatThread.ManagedThreadId); | ||
1145 | HeartbeatThread = null; | 1187 | HeartbeatThread = null; |
1146 | } | 1188 | } |
1147 | m_lastUpdate = Util.EnvironmentTickCount(); | 1189 | m_lastUpdate = Util.EnvironmentTickCount(); |
@@ -1187,9 +1229,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1187 | { | 1229 | { |
1188 | while (!shuttingdown) | 1230 | while (!shuttingdown) |
1189 | Update(); | 1231 | Update(); |
1190 | |||
1191 | m_lastUpdate = Util.EnvironmentTickCount(); | ||
1192 | m_firstHeartbeat = false; | ||
1193 | } | 1232 | } |
1194 | catch (ThreadAbortException) | 1233 | catch (ThreadAbortException) |
1195 | { | 1234 | { |
@@ -1287,6 +1326,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
1287 | eventMS = Util.EnvironmentTickCountSubtract(evMS); ; | 1326 | eventMS = Util.EnvironmentTickCountSubtract(evMS); ; |
1288 | } | 1327 | } |
1289 | 1328 | ||
1329 | // if (Frame % m_update_land == 0) | ||
1330 | // { | ||
1331 | // int ldMS = Util.EnvironmentTickCount(); | ||
1332 | // UpdateLand(); | ||
1333 | // landMS = Util.EnvironmentTickCountSubtract(ldMS); | ||
1334 | // } | ||
1335 | |||
1290 | if (Frame % m_update_backup == 0) | 1336 | if (Frame % m_update_backup == 0) |
1291 | { | 1337 | { |
1292 | int backMS = Util.EnvironmentTickCount(); | 1338 | int backMS = Util.EnvironmentTickCount(); |
@@ -1394,12 +1440,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
1394 | maintc = Util.EnvironmentTickCountSubtract(maintc); | 1440 | maintc = Util.EnvironmentTickCountSubtract(maintc); |
1395 | maintc = (int)(MinFrameTime * 1000) - maintc; | 1441 | maintc = (int)(MinFrameTime * 1000) - maintc; |
1396 | 1442 | ||
1443 | |||
1444 | m_lastUpdate = Util.EnvironmentTickCount(); | ||
1445 | m_firstHeartbeat = false; | ||
1446 | |||
1397 | if (maintc > 0) | 1447 | if (maintc > 0) |
1398 | Thread.Sleep(maintc); | 1448 | Thread.Sleep(maintc); |
1399 | 1449 | ||
1400 | // Tell the watchdog that this thread is still alive | 1450 | // Tell the watchdog that this thread is still alive |
1401 | Watchdog.UpdateThread(); | 1451 | Watchdog.UpdateThread(); |
1402 | } | 1452 | } |
1403 | 1453 | ||
1404 | public void AddGroupTarget(SceneObjectGroup grp) | 1454 | public void AddGroupTarget(SceneObjectGroup grp) |
1405 | { | 1455 | { |
@@ -1415,9 +1465,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1415 | 1465 | ||
1416 | private void CheckAtTargets() | 1466 | private void CheckAtTargets() |
1417 | { | 1467 | { |
1418 | Dictionary<UUID, SceneObjectGroup>.ValueCollection objs; | 1468 | List<SceneObjectGroup> objs = new List<SceneObjectGroup>(); |
1419 | lock (m_groupsWithTargets) | 1469 | lock (m_groupsWithTargets) |
1420 | objs = m_groupsWithTargets.Values; | 1470 | objs = new List<SceneObjectGroup>(m_groupsWithTargets.Values); |
1421 | 1471 | ||
1422 | foreach (SceneObjectGroup entry in objs) | 1472 | foreach (SceneObjectGroup entry in objs) |
1423 | entry.checkAtTargets(); | 1473 | entry.checkAtTargets(); |
@@ -1499,7 +1549,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1499 | msg.fromAgentName = "Server"; | 1549 | msg.fromAgentName = "Server"; |
1500 | msg.dialog = (byte)19; // Object msg | 1550 | msg.dialog = (byte)19; // Object msg |
1501 | msg.fromGroup = false; | 1551 | msg.fromGroup = false; |
1502 | msg.offline = (byte)0; | 1552 | msg.offline = (byte)1; |
1503 | msg.ParentEstateID = RegionInfo.EstateSettings.ParentEstateID; | 1553 | msg.ParentEstateID = RegionInfo.EstateSettings.ParentEstateID; |
1504 | msg.Position = Vector3.Zero; | 1554 | msg.Position = Vector3.Zero; |
1505 | msg.RegionID = RegionInfo.RegionID.Guid; | 1555 | msg.RegionID = RegionInfo.RegionID.Guid; |
@@ -1734,14 +1784,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
1734 | /// <returns></returns> | 1784 | /// <returns></returns> |
1735 | public Vector3 GetNewRezLocation(Vector3 RayStart, Vector3 RayEnd, UUID RayTargetID, Quaternion rot, byte bypassRayCast, byte RayEndIsIntersection, bool frontFacesOnly, Vector3 scale, bool FaceCenter) | 1785 | public Vector3 GetNewRezLocation(Vector3 RayStart, Vector3 RayEnd, UUID RayTargetID, Quaternion rot, byte bypassRayCast, byte RayEndIsIntersection, bool frontFacesOnly, Vector3 scale, bool FaceCenter) |
1736 | { | 1786 | { |
1787 | |||
1788 | float wheight = (float)RegionInfo.RegionSettings.WaterHeight; | ||
1789 | Vector3 wpos = Vector3.Zero; | ||
1790 | // Check for water surface intersection from above | ||
1791 | if ( (RayStart.Z > wheight) && (RayEnd.Z < wheight) ) | ||
1792 | { | ||
1793 | float ratio = (RayStart.Z - wheight) / (RayStart.Z - RayEnd.Z); | ||
1794 | wpos.X = RayStart.X - (ratio * (RayStart.X - RayEnd.X)); | ||
1795 | wpos.Y = RayStart.Y - (ratio * (RayStart.Y - RayEnd.Y)); | ||
1796 | wpos.Z = wheight; | ||
1797 | } | ||
1798 | |||
1737 | Vector3 pos = Vector3.Zero; | 1799 | Vector3 pos = Vector3.Zero; |
1738 | if (RayEndIsIntersection == (byte)1) | 1800 | if (RayEndIsIntersection == (byte)1) |
1739 | { | 1801 | { |
1740 | pos = RayEnd; | 1802 | pos = RayEnd; |
1741 | return pos; | ||
1742 | } | 1803 | } |
1743 | 1804 | else if (RayTargetID != UUID.Zero) | |
1744 | if (RayTargetID != UUID.Zero) | ||
1745 | { | 1805 | { |
1746 | SceneObjectPart target = GetSceneObjectPart(RayTargetID); | 1806 | SceneObjectPart target = GetSceneObjectPart(RayTargetID); |
1747 | 1807 | ||
@@ -1763,7 +1823,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1763 | EntityIntersection ei = target.TestIntersectionOBB(NewRay, Quaternion.Identity, frontFacesOnly, FaceCenter); | 1823 | EntityIntersection ei = target.TestIntersectionOBB(NewRay, Quaternion.Identity, frontFacesOnly, FaceCenter); |
1764 | 1824 | ||
1765 | // Un-comment out the following line to Get Raytrace results printed to the console. | 1825 | // Un-comment out the following line to Get Raytrace results printed to the console. |
1766 | // m_log.Info("[RAYTRACERESULTS]: Hit:" + ei.HitTF.ToString() + " Point: " + ei.ipoint.ToString() + " Normal: " + ei.normal.ToString()); | 1826 | // m_log.Info("[RAYTRACERESULTS]: Hit:" + ei.HitTF.ToString() + " Point: " + ei.ipoint.ToString() + " Normal: " + ei.normal.ToString()); |
1767 | float ScaleOffset = 0.5f; | 1827 | float ScaleOffset = 0.5f; |
1768 | 1828 | ||
1769 | // If we hit something | 1829 | // If we hit something |
@@ -1786,13 +1846,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
1786 | //pos.Z -= 0.25F; | 1846 | //pos.Z -= 0.25F; |
1787 | 1847 | ||
1788 | } | 1848 | } |
1789 | |||
1790 | return pos; | ||
1791 | } | 1849 | } |
1792 | else | 1850 | else |
1793 | { | 1851 | { |
1794 | // We don't have a target here, so we're going to raytrace all the objects in the scene. | 1852 | // We don't have a target here, so we're going to raytrace all the objects in the scene. |
1795 | |||
1796 | EntityIntersection ei = m_sceneGraph.GetClosestIntersectingPrim(new Ray(AXOrigin, AXdirection), true, false); | 1853 | EntityIntersection ei = m_sceneGraph.GetClosestIntersectingPrim(new Ray(AXOrigin, AXdirection), true, false); |
1797 | 1854 | ||
1798 | // Un-comment the following line to print the raytrace results to the console. | 1855 | // Un-comment the following line to print the raytrace results to the console. |
@@ -1801,13 +1858,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1801 | if (ei.HitTF) | 1858 | if (ei.HitTF) |
1802 | { | 1859 | { |
1803 | pos = new Vector3(ei.ipoint.X, ei.ipoint.Y, ei.ipoint.Z); | 1860 | pos = new Vector3(ei.ipoint.X, ei.ipoint.Y, ei.ipoint.Z); |
1804 | } else | 1861 | } |
1862 | else | ||
1805 | { | 1863 | { |
1806 | // fall back to our stupid functionality | 1864 | // fall back to our stupid functionality |
1807 | pos = RayEnd; | 1865 | pos = RayEnd; |
1808 | } | 1866 | } |
1809 | |||
1810 | return pos; | ||
1811 | } | 1867 | } |
1812 | } | 1868 | } |
1813 | else | 1869 | else |
@@ -1818,8 +1874,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1818 | //increase height so its above the ground. | 1874 | //increase height so its above the ground. |
1819 | //should be getting the normal of the ground at the rez point and using that? | 1875 | //should be getting the normal of the ground at the rez point and using that? |
1820 | pos.Z += scale.Z / 2f; | 1876 | pos.Z += scale.Z / 2f; |
1821 | return pos; | 1877 | // return pos; |
1822 | } | 1878 | } |
1879 | |||
1880 | // check against posible water intercept | ||
1881 | if (wpos.Z > pos.Z) pos = wpos; | ||
1882 | return pos; | ||
1823 | } | 1883 | } |
1824 | 1884 | ||
1825 | 1885 | ||
@@ -1903,7 +1963,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
1903 | public bool AddRestoredSceneObject( | 1963 | public bool AddRestoredSceneObject( |
1904 | SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates) | 1964 | SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates) |
1905 | { | 1965 | { |
1906 | return m_sceneGraph.AddRestoredSceneObject(sceneObject, attachToBackup, alreadyPersisted, sendClientUpdates); | 1966 | bool result = m_sceneGraph.AddRestoredSceneObject(sceneObject, attachToBackup, alreadyPersisted, sendClientUpdates); |
1967 | if (result) | ||
1968 | sceneObject.IsDeleted = false; | ||
1969 | return result; | ||
1907 | } | 1970 | } |
1908 | 1971 | ||
1909 | /// <summary> | 1972 | /// <summary> |
@@ -1993,6 +2056,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
1993 | /// </summary> | 2056 | /// </summary> |
1994 | public void DeleteAllSceneObjects() | 2057 | public void DeleteAllSceneObjects() |
1995 | { | 2058 | { |
2059 | DeleteAllSceneObjects(false); | ||
2060 | } | ||
2061 | |||
2062 | /// <summary> | ||
2063 | /// Delete every object from the scene. This does not include attachments worn by avatars. | ||
2064 | /// </summary> | ||
2065 | public void DeleteAllSceneObjects(bool exceptNoCopy) | ||
2066 | { | ||
2067 | List<SceneObjectGroup> toReturn = new List<SceneObjectGroup>(); | ||
1996 | lock (Entities) | 2068 | lock (Entities) |
1997 | { | 2069 | { |
1998 | EntityBase[] entities = Entities.GetEntities(); | 2070 | EntityBase[] entities = Entities.GetEntities(); |
@@ -2001,11 +2073,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
2001 | if (e is SceneObjectGroup) | 2073 | if (e is SceneObjectGroup) |
2002 | { | 2074 | { |
2003 | SceneObjectGroup sog = (SceneObjectGroup)e; | 2075 | SceneObjectGroup sog = (SceneObjectGroup)e; |
2004 | if (!sog.IsAttachment) | 2076 | if (sog != null && !sog.IsAttachment) |
2005 | DeleteSceneObject((SceneObjectGroup)e, false); | 2077 | { |
2078 | if (!exceptNoCopy || ((sog.GetEffectivePermissions() & (uint)PermissionMask.Copy) != 0)) | ||
2079 | { | ||
2080 | DeleteSceneObject((SceneObjectGroup)e, false); | ||
2081 | } | ||
2082 | else | ||
2083 | { | ||
2084 | toReturn.Add((SceneObjectGroup)e); | ||
2085 | } | ||
2086 | } | ||
2006 | } | 2087 | } |
2007 | } | 2088 | } |
2008 | } | 2089 | } |
2090 | if (toReturn.Count > 0) | ||
2091 | { | ||
2092 | returnObjects(toReturn.ToArray(), UUID.Zero); | ||
2093 | } | ||
2009 | } | 2094 | } |
2010 | 2095 | ||
2011 | /// <summary> | 2096 | /// <summary> |
@@ -2053,6 +2138,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2053 | } | 2138 | } |
2054 | 2139 | ||
2055 | group.DeleteGroupFromScene(silent); | 2140 | group.DeleteGroupFromScene(silent); |
2141 | if (!silent) | ||
2142 | SendKillObject(new List<uint>() { group.LocalId }); | ||
2056 | 2143 | ||
2057 | // m_log.DebugFormat("[SCENE]: Exit DeleteSceneObject() for {0} {1}", group.Name, group.UUID); | 2144 | // m_log.DebugFormat("[SCENE]: Exit DeleteSceneObject() for {0} {1}", group.Name, group.UUID); |
2058 | } | 2145 | } |
@@ -2407,10 +2494,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
2407 | /// <returns>True if the SceneObjectGroup was added, False if it was not</returns> | 2494 | /// <returns>True if the SceneObjectGroup was added, False if it was not</returns> |
2408 | public bool AddSceneObject(SceneObjectGroup sceneObject) | 2495 | public bool AddSceneObject(SceneObjectGroup sceneObject) |
2409 | { | 2496 | { |
2497 | if (sceneObject.OwnerID == UUID.Zero) | ||
2498 | { | ||
2499 | m_log.ErrorFormat("[SCENE]: Owner ID for {0} was zero", sceneObject.UUID); | ||
2500 | return false; | ||
2501 | } | ||
2502 | |||
2410 | // If the user is banned, we won't let any of their objects | 2503 | // If the user is banned, we won't let any of their objects |
2411 | // enter. Period. | 2504 | // enter. Period. |
2412 | // | 2505 | // |
2413 | if (m_regInfo.EstateSettings.IsBanned(sceneObject.OwnerID)) | 2506 | int flags = GetUserFlags(sceneObject.OwnerID); |
2507 | if (m_regInfo.EstateSettings.IsBanned(sceneObject.OwnerID, flags)) | ||
2414 | { | 2508 | { |
2415 | m_log.InfoFormat("[INTERREGION]: Denied prim crossing for banned avatar {0}", sceneObject.OwnerID); | 2509 | m_log.InfoFormat("[INTERREGION]: Denied prim crossing for banned avatar {0}", sceneObject.OwnerID); |
2416 | 2510 | ||
@@ -2456,12 +2550,23 @@ namespace OpenSim.Region.Framework.Scenes | |||
2456 | } | 2550 | } |
2457 | else | 2551 | else |
2458 | { | 2552 | { |
2553 | m_log.DebugFormat("[SCENE]: Attachment {0} arrived and scene presence was not found, setting to temp", sceneObject.UUID); | ||
2459 | RootPrim.RemFlag(PrimFlags.TemporaryOnRez); | 2554 | RootPrim.RemFlag(PrimFlags.TemporaryOnRez); |
2460 | RootPrim.AddFlag(PrimFlags.TemporaryOnRez); | 2555 | RootPrim.AddFlag(PrimFlags.TemporaryOnRez); |
2461 | } | 2556 | } |
2557 | if (sceneObject.OwnerID == UUID.Zero) | ||
2558 | { | ||
2559 | m_log.ErrorFormat("[SCENE]: Owner ID for {0} was zero after attachment processing. BUG!", sceneObject.UUID); | ||
2560 | return false; | ||
2561 | } | ||
2462 | } | 2562 | } |
2463 | else | 2563 | else |
2464 | { | 2564 | { |
2565 | if (sceneObject.OwnerID == UUID.Zero) | ||
2566 | { | ||
2567 | m_log.ErrorFormat("[SCENE]: Owner ID for non-attachment {0} was zero", sceneObject.UUID); | ||
2568 | return false; | ||
2569 | } | ||
2465 | AddRestoredSceneObject(sceneObject, true, false); | 2570 | AddRestoredSceneObject(sceneObject, true, false); |
2466 | 2571 | ||
2467 | if (!Permissions.CanObjectEntry(sceneObject.UUID, | 2572 | if (!Permissions.CanObjectEntry(sceneObject.UUID, |
@@ -2490,6 +2595,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
2490 | return 2; // StateSource.PrimCrossing | 2595 | return 2; // StateSource.PrimCrossing |
2491 | } | 2596 | } |
2492 | 2597 | ||
2598 | public int GetUserFlags(UUID user) | ||
2599 | { | ||
2600 | //Unfortunately the SP approach means that the value is cached until region is restarted | ||
2601 | /* | ||
2602 | ScenePresence sp; | ||
2603 | if (TryGetScenePresence(user, out sp)) | ||
2604 | { | ||
2605 | return sp.UserFlags; | ||
2606 | } | ||
2607 | else | ||
2608 | { | ||
2609 | */ | ||
2610 | UserAccount uac = UserAccountService.GetUserAccount(RegionInfo.ScopeID, user); | ||
2611 | if (uac == null) | ||
2612 | return 0; | ||
2613 | return uac.UserFlags; | ||
2614 | //} | ||
2615 | } | ||
2493 | #endregion | 2616 | #endregion |
2494 | 2617 | ||
2495 | #region Add/Remove Avatar Methods | 2618 | #region Add/Remove Avatar Methods |
@@ -2504,6 +2627,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2504 | || (aCircuit.teleportFlags & (uint)Constants.TeleportFlags.ViaLogin) != 0; | 2627 | || (aCircuit.teleportFlags & (uint)Constants.TeleportFlags.ViaLogin) != 0; |
2505 | 2628 | ||
2506 | CheckHeartbeat(); | 2629 | CheckHeartbeat(); |
2630 | ScenePresence presence; | ||
2507 | 2631 | ||
2508 | ScenePresence sp = GetScenePresence(client.AgentId); | 2632 | ScenePresence sp = GetScenePresence(client.AgentId); |
2509 | 2633 | ||
@@ -2552,7 +2676,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
2552 | 2676 | ||
2553 | EventManager.TriggerOnNewClient(client); | 2677 | EventManager.TriggerOnNewClient(client); |
2554 | if (vialogin) | 2678 | if (vialogin) |
2679 | { | ||
2555 | EventManager.TriggerOnClientLogin(client); | 2680 | EventManager.TriggerOnClientLogin(client); |
2681 | // Send initial parcel data | ||
2682 | Vector3 pos = sp.AbsolutePosition; | ||
2683 | ILandObject land = LandChannel.GetLandObject(pos.X, pos.Y); | ||
2684 | land.SendLandUpdateToClient(client); | ||
2685 | } | ||
2556 | 2686 | ||
2557 | return sp; | 2687 | return sp; |
2558 | } | 2688 | } |
@@ -2642,19 +2772,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
2642 | // and the scene presence and the client, if they exist | 2772 | // and the scene presence and the client, if they exist |
2643 | try | 2773 | try |
2644 | { | 2774 | { |
2645 | // We need to wait for the client to make UDP contact first. | 2775 | ScenePresence sp = GetScenePresence(agentID); |
2646 | // It's the UDP contact that creates the scene presence | 2776 | PresenceService.LogoutAgent(sp.ControllingClient.SessionId); |
2647 | ScenePresence sp = WaitGetScenePresence(agentID); | 2777 | |
2648 | if (sp != null) | 2778 | if (sp != null) |
2649 | { | ||
2650 | PresenceService.LogoutAgent(sp.ControllingClient.SessionId); | ||
2651 | |||
2652 | sp.ControllingClient.Close(); | 2779 | sp.ControllingClient.Close(); |
2653 | } | 2780 | |
2654 | else | ||
2655 | { | ||
2656 | m_log.WarnFormat("[SCENE]: Could not find scene presence for {0}", agentID); | ||
2657 | } | ||
2658 | // BANG! SLASH! | 2781 | // BANG! SLASH! |
2659 | m_authenticateHandler.RemoveCircuit(agentID); | 2782 | m_authenticateHandler.RemoveCircuit(agentID); |
2660 | 2783 | ||
@@ -2755,6 +2878,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2755 | client.OnFetchInventory += m_asyncInventorySender.HandleFetchInventory; | 2878 | client.OnFetchInventory += m_asyncInventorySender.HandleFetchInventory; |
2756 | client.OnUpdateInventoryItem += UpdateInventoryItemAsset; | 2879 | client.OnUpdateInventoryItem += UpdateInventoryItemAsset; |
2757 | client.OnCopyInventoryItem += CopyInventoryItem; | 2880 | client.OnCopyInventoryItem += CopyInventoryItem; |
2881 | client.OnMoveItemsAndLeaveCopy += MoveInventoryItemsLeaveCopy; | ||
2758 | client.OnMoveInventoryItem += MoveInventoryItem; | 2882 | client.OnMoveInventoryItem += MoveInventoryItem; |
2759 | client.OnRemoveInventoryItem += RemoveInventoryItem; | 2883 | client.OnRemoveInventoryItem += RemoveInventoryItem; |
2760 | client.OnRemoveInventoryFolder += RemoveInventoryFolder; | 2884 | client.OnRemoveInventoryFolder += RemoveInventoryFolder; |
@@ -2930,15 +3054,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
2930 | /// </summary> | 3054 | /// </summary> |
2931 | /// <param name="agentId">The avatar's Unique ID</param> | 3055 | /// <param name="agentId">The avatar's Unique ID</param> |
2932 | /// <param name="client">The IClientAPI for the client</param> | 3056 | /// <param name="client">The IClientAPI for the client</param> |
2933 | public virtual void TeleportClientHome(UUID agentId, IClientAPI client) | 3057 | public virtual bool TeleportClientHome(UUID agentId, IClientAPI client) |
2934 | { | 3058 | { |
2935 | if (m_teleportModule != null) | 3059 | if (m_teleportModule != null) |
2936 | m_teleportModule.TeleportHome(agentId, client); | 3060 | return m_teleportModule.TeleportHome(agentId, client); |
2937 | else | 3061 | else |
2938 | { | 3062 | { |
2939 | m_log.DebugFormat("[SCENE]: Unable to teleport user home: no AgentTransferModule is active"); | 3063 | m_log.DebugFormat("[SCENE]: Unable to teleport user home: no AgentTransferModule is active"); |
2940 | client.SendTeleportFailed("Unable to perform teleports on this simulator."); | 3064 | client.SendTeleportFailed("Unable to perform teleports on this simulator."); |
2941 | } | 3065 | } |
3066 | return false; | ||
2942 | } | 3067 | } |
2943 | 3068 | ||
2944 | /// <summary> | 3069 | /// <summary> |
@@ -3030,6 +3155,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
3030 | /// <param name="flags"></param> | 3155 | /// <param name="flags"></param> |
3031 | public virtual void SetHomeRezPoint(IClientAPI remoteClient, ulong regionHandle, Vector3 position, Vector3 lookAt, uint flags) | 3156 | public virtual void SetHomeRezPoint(IClientAPI remoteClient, ulong regionHandle, Vector3 position, Vector3 lookAt, uint flags) |
3032 | { | 3157 | { |
3158 | //Add half the avatar's height so that the user doesn't fall through prims | ||
3159 | ScenePresence presence; | ||
3160 | if (TryGetScenePresence(remoteClient.AgentId, out presence)) | ||
3161 | { | ||
3162 | if (presence.Appearance != null) | ||
3163 | { | ||
3164 | position.Z = position.Z + (presence.Appearance.AvatarHeight / 2); | ||
3165 | } | ||
3166 | } | ||
3167 | |||
3033 | if (GridUserService != null && GridUserService.SetHome(remoteClient.AgentId.ToString(), RegionInfo.RegionID, position, lookAt)) | 3168 | if (GridUserService != null && GridUserService.SetHome(remoteClient.AgentId.ToString(), RegionInfo.RegionID, position, lookAt)) |
3034 | // FUBAR ALERT: this needs to be "Home position set." so the viewer saves a home-screenshot. | 3169 | // FUBAR ALERT: this needs to be "Home position set." so the viewer saves a home-screenshot. |
3035 | m_dialogModule.SendAlertToUser(remoteClient, "Home position set."); | 3170 | m_dialogModule.SendAlertToUser(remoteClient, "Home position set."); |
@@ -3098,8 +3233,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
3098 | regions.Remove(RegionInfo.RegionHandle); | 3233 | regions.Remove(RegionInfo.RegionHandle); |
3099 | m_sceneGridService.SendCloseChildAgentConnections(agentID, regions); | 3234 | m_sceneGridService.SendCloseChildAgentConnections(agentID, regions); |
3100 | } | 3235 | } |
3101 | 3236 | m_log.Debug("[Scene] Beginning ClientClosed"); | |
3102 | m_eventManager.TriggerClientClosed(agentID, this); | 3237 | m_eventManager.TriggerClientClosed(agentID, this); |
3238 | m_log.Debug("[Scene] Finished ClientClosed"); | ||
3103 | } | 3239 | } |
3104 | catch (NullReferenceException) | 3240 | catch (NullReferenceException) |
3105 | { | 3241 | { |
@@ -3151,9 +3287,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
3151 | { | 3287 | { |
3152 | m_log.ErrorFormat("[SCENE] Scene.cs:RemoveClient exception {0}{1}", e.Message, e.StackTrace); | 3288 | m_log.ErrorFormat("[SCENE] Scene.cs:RemoveClient exception {0}{1}", e.Message, e.StackTrace); |
3153 | } | 3289 | } |
3154 | 3290 | m_log.Debug("[Scene] Done. Firing RemoveCircuit"); | |
3155 | m_authenticateHandler.RemoveCircuit(avatar.ControllingClient.CircuitCode); | 3291 | m_authenticateHandler.RemoveCircuit(avatar.ControllingClient.CircuitCode); |
3156 | // CleanDroppedAttachments(); | 3292 | // CleanDroppedAttachments(); |
3293 | m_log.Debug("[Scene] The avatar has left the building"); | ||
3157 | //m_log.InfoFormat("[SCENE] Memory pre GC {0}", System.GC.GetTotalMemory(false)); | 3294 | //m_log.InfoFormat("[SCENE] Memory pre GC {0}", System.GC.GetTotalMemory(false)); |
3158 | //m_log.InfoFormat("[SCENE] Memory post GC {0}", System.GC.GetTotalMemory(true)); | 3295 | //m_log.InfoFormat("[SCENE] Memory post GC {0}", System.GC.GetTotalMemory(true)); |
3159 | } | 3296 | } |
@@ -3272,13 +3409,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
3272 | sp = null; | 3409 | sp = null; |
3273 | } | 3410 | } |
3274 | 3411 | ||
3275 | ILandObject land = LandChannel.GetLandObject(agent.startpos.X, agent.startpos.Y); | ||
3276 | 3412 | ||
3277 | //On login test land permisions | 3413 | //On login test land permisions |
3278 | if (vialogin) | 3414 | if (vialogin) |
3279 | { | 3415 | { |
3280 | if (land != null && !TestLandRestrictions(agent, land, out reason)) | 3416 | IUserAccountCacheModule cache = RequestModuleInterface<IUserAccountCacheModule>(); |
3417 | if (cache != null) | ||
3418 | cache.Remove(agent.firstname + " " + agent.lastname); | ||
3419 | if (!TestLandRestrictions(agent.AgentID, out reason, ref agent.startpos.X, ref agent.startpos.Y)) | ||
3281 | { | 3420 | { |
3421 | m_log.DebugFormat("[CONNECTION BEGIN]: Denying access to {0} due to no land access", agent.AgentID.ToString()); | ||
3282 | return false; | 3422 | return false; |
3283 | } | 3423 | } |
3284 | } | 3424 | } |
@@ -3302,8 +3442,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
3302 | 3442 | ||
3303 | try | 3443 | try |
3304 | { | 3444 | { |
3305 | if (!AuthorizeUser(agent, out reason)) | 3445 | // Always check estate if this is a login. Always |
3306 | return false; | 3446 | // check if banned regions are to be blacked out. |
3447 | if (vialogin || (!m_seeIntoBannedRegion)) | ||
3448 | { | ||
3449 | if (!AuthorizeUser(agent, out reason)) | ||
3450 | return false; | ||
3451 | } | ||
3307 | } | 3452 | } |
3308 | catch (Exception e) | 3453 | catch (Exception e) |
3309 | { | 3454 | { |
@@ -3406,6 +3551,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
3406 | } | 3551 | } |
3407 | } | 3552 | } |
3408 | // Honor parcel landing type and position. | 3553 | // Honor parcel landing type and position. |
3554 | /* | ||
3555 | ILandObject land = LandChannel.GetLandObject(agent.startpos.X, agent.startpos.Y); | ||
3409 | if (land != null) | 3556 | if (land != null) |
3410 | { | 3557 | { |
3411 | if (land.LandData.LandingType == (byte)1 && land.LandData.UserLocation != Vector3.Zero) | 3558 | if (land.LandData.LandingType == (byte)1 && land.LandData.UserLocation != Vector3.Zero) |
@@ -3413,26 +3560,34 @@ namespace OpenSim.Region.Framework.Scenes | |||
3413 | agent.startpos = land.LandData.UserLocation; | 3560 | agent.startpos = land.LandData.UserLocation; |
3414 | } | 3561 | } |
3415 | } | 3562 | } |
3563 | */// This is now handled properly in ScenePresence.MakeRootAgent | ||
3416 | } | 3564 | } |
3417 | 3565 | ||
3418 | return true; | 3566 | return true; |
3419 | } | 3567 | } |
3420 | 3568 | ||
3421 | private bool TestLandRestrictions(AgentCircuitData agent, ILandObject land, out string reason) | 3569 | private bool TestLandRestrictions(UUID agentID, out string reason, ref float posX, ref float posY) |
3422 | { | 3570 | { |
3423 | 3571 | reason = String.Empty; | |
3424 | bool banned = land.IsBannedFromLand(agent.AgentID); | 3572 | if (Permissions.IsGod(agentID)) |
3425 | bool restricted = land.IsRestrictedFromLand(agent.AgentID); | 3573 | return true; |
3574 | |||
3575 | ILandObject land = LandChannel.GetLandObject(posX, posY); | ||
3576 | if (land == null) | ||
3577 | return false; | ||
3578 | |||
3579 | bool banned = land.IsBannedFromLand(agentID); | ||
3580 | bool restricted = land.IsRestrictedFromLand(agentID); | ||
3426 | 3581 | ||
3427 | if (banned || restricted) | 3582 | if (banned || restricted) |
3428 | { | 3583 | { |
3429 | ILandObject nearestParcel = GetNearestAllowedParcel(agent.AgentID, agent.startpos.X, agent.startpos.Y); | 3584 | ILandObject nearestParcel = GetNearestAllowedParcel(agentID, posX, posY); |
3430 | if (nearestParcel != null) | 3585 | if (nearestParcel != null) |
3431 | { | 3586 | { |
3432 | //Move agent to nearest allowed | 3587 | //Move agent to nearest allowed |
3433 | Vector3 newPosition = GetParcelCenterAtGround(nearestParcel); | 3588 | Vector3 newPosition = GetParcelCenterAtGround(nearestParcel); |
3434 | agent.startpos.X = newPosition.X; | 3589 | posX = newPosition.X; |
3435 | agent.startpos.Y = newPosition.Y; | 3590 | posY = newPosition.Y; |
3436 | } | 3591 | } |
3437 | else | 3592 | else |
3438 | { | 3593 | { |
@@ -3494,7 +3649,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
3494 | 3649 | ||
3495 | if (!m_strictAccessControl) return true; | 3650 | if (!m_strictAccessControl) return true; |
3496 | if (Permissions.IsGod(agent.AgentID)) return true; | 3651 | if (Permissions.IsGod(agent.AgentID)) return true; |
3497 | 3652 | ||
3498 | if (AuthorizationService != null) | 3653 | if (AuthorizationService != null) |
3499 | { | 3654 | { |
3500 | if (!AuthorizationService.IsAuthorizedForRegion( | 3655 | if (!AuthorizationService.IsAuthorizedForRegion( |
@@ -3502,14 +3657,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
3502 | { | 3657 | { |
3503 | m_log.WarnFormat("[CONNECTION BEGIN]: Denied access to: {0} ({1} {2}) at {3} because the user does not have access to the region", | 3658 | m_log.WarnFormat("[CONNECTION BEGIN]: Denied access to: {0} ({1} {2}) at {3} because the user does not have access to the region", |
3504 | agent.AgentID, agent.firstname, agent.lastname, RegionInfo.RegionName); | 3659 | agent.AgentID, agent.firstname, agent.lastname, RegionInfo.RegionName); |
3505 | 3660 | ||
3506 | return false; | 3661 | return false; |
3507 | } | 3662 | } |
3508 | } | 3663 | } |
3509 | 3664 | ||
3510 | if (m_regInfo.EstateSettings != null) | 3665 | if (m_regInfo.EstateSettings != null) |
3511 | { | 3666 | { |
3512 | if (m_regInfo.EstateSettings.IsBanned(agent.AgentID)) | 3667 | if (m_regInfo.EstateSettings.IsBanned(agent.AgentID,0)) |
3513 | { | 3668 | { |
3514 | m_log.WarnFormat("[CONNECTION BEGIN]: Denied access to: {0} ({1} {2}) at {3} because the user is on the banlist", | 3669 | m_log.WarnFormat("[CONNECTION BEGIN]: Denied access to: {0} ({1} {2}) at {3} because the user is on the banlist", |
3515 | agent.AgentID, agent.firstname, agent.lastname, RegionInfo.RegionName); | 3670 | agent.AgentID, agent.firstname, agent.lastname, RegionInfo.RegionName); |
@@ -3701,6 +3856,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
3701 | 3856 | ||
3702 | // We have to wait until the viewer contacts this region after receiving EAC. | 3857 | // We have to wait until the viewer contacts this region after receiving EAC. |
3703 | // That calls AddNewClient, which finally creates the ScenePresence | 3858 | // That calls AddNewClient, which finally creates the ScenePresence |
3859 | int flags = GetUserFlags(cAgentData.AgentID); | ||
3860 | if (m_regInfo.EstateSettings.IsBanned(cAgentData.AgentID, flags)) | ||
3861 | { | ||
3862 | m_log.DebugFormat("[SCENE]: Denying root agent entry to {0}: banned", cAgentData.AgentID); | ||
3863 | return false; | ||
3864 | } | ||
3865 | |||
3704 | ILandObject nearestParcel = GetNearestAllowedParcel(cAgentData.AgentID, Constants.RegionSize / 2, Constants.RegionSize / 2); | 3866 | ILandObject nearestParcel = GetNearestAllowedParcel(cAgentData.AgentID, Constants.RegionSize / 2, Constants.RegionSize / 2); |
3705 | if (nearestParcel == null) | 3867 | if (nearestParcel == null) |
3706 | { | 3868 | { |
@@ -3782,12 +3944,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
3782 | return false; | 3944 | return false; |
3783 | } | 3945 | } |
3784 | 3946 | ||
3947 | public bool IncomingCloseAgent(UUID agentID) | ||
3948 | { | ||
3949 | return IncomingCloseAgent(agentID, false); | ||
3950 | } | ||
3951 | |||
3952 | public bool IncomingCloseChildAgent(UUID agentID) | ||
3953 | { | ||
3954 | return IncomingCloseAgent(agentID, true); | ||
3955 | } | ||
3956 | |||
3785 | /// <summary> | 3957 | /// <summary> |
3786 | /// Tell a single agent to disconnect from the region. | 3958 | /// Tell a single agent to disconnect from the region. |
3787 | /// </summary> | 3959 | /// </summary> |
3788 | /// <param name="regionHandle"></param> | ||
3789 | /// <param name="agentID"></param> | 3960 | /// <param name="agentID"></param> |
3790 | public bool IncomingCloseAgent(UUID agentID) | 3961 | /// <param name="childOnly"></param> |
3962 | public bool IncomingCloseAgent(UUID agentID, bool childOnly) | ||
3791 | { | 3963 | { |
3792 | //m_log.DebugFormat("[SCENE]: Processing incoming close agent for {0}", agentID); | 3964 | //m_log.DebugFormat("[SCENE]: Processing incoming close agent for {0}", agentID); |
3793 | 3965 | ||
@@ -3799,7 +3971,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
3799 | { | 3971 | { |
3800 | m_sceneGraph.removeUserCount(false); | 3972 | m_sceneGraph.removeUserCount(false); |
3801 | } | 3973 | } |
3802 | else | 3974 | else if (!childOnly) |
3803 | { | 3975 | { |
3804 | m_sceneGraph.removeUserCount(true); | 3976 | m_sceneGraph.removeUserCount(true); |
3805 | } | 3977 | } |
@@ -3815,9 +3987,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
3815 | } | 3987 | } |
3816 | else | 3988 | else |
3817 | presence.ControllingClient.SendShutdownConnectionNotice(); | 3989 | presence.ControllingClient.SendShutdownConnectionNotice(); |
3990 | presence.ControllingClient.Close(false); | ||
3991 | } | ||
3992 | else if (!childOnly) | ||
3993 | { | ||
3994 | presence.ControllingClient.Close(true); | ||
3818 | } | 3995 | } |
3819 | |||
3820 | presence.ControllingClient.Close(); | ||
3821 | return true; | 3996 | return true; |
3822 | } | 3997 | } |
3823 | 3998 | ||
@@ -4400,34 +4575,78 @@ namespace OpenSim.Region.Framework.Scenes | |||
4400 | SimulationDataService.RemoveObject(uuid, m_regInfo.RegionID); | 4575 | SimulationDataService.RemoveObject(uuid, m_regInfo.RegionID); |
4401 | } | 4576 | } |
4402 | 4577 | ||
4403 | public int GetHealth() | 4578 | public int GetHealth(out int flags, out string message) |
4404 | { | 4579 | { |
4405 | // Returns: | 4580 | // Returns: |
4406 | // 1 = sim is up and accepting http requests. The heartbeat has | 4581 | // 1 = sim is up and accepting http requests. The heartbeat has |
4407 | // stopped and the sim is probably locked up, but a remote | 4582 | // stopped and the sim is probably locked up, but a remote |
4408 | // admin restart may succeed | 4583 | // admin restart may succeed |
4409 | // | 4584 | // |
4410 | // 2 = Sim is up and the heartbeat is running. The sim is likely | 4585 | // 2 = Sim is up and the heartbeat is running. The sim is likely |
4411 | // usable for people within and logins _may_ work | 4586 | // usable for people within |
4587 | // | ||
4588 | // 3 = Sim is up and one packet thread is running. Sim is | ||
4589 | // unstable and will not accept new logins | ||
4590 | // | ||
4591 | // 4 = Sim is up and both packet threads are running. Sim is | ||
4592 | // likely usable | ||
4412 | // | 4593 | // |
4413 | // 3 = We have seen a new user enter within the past 4 minutes | 4594 | // 5 = We have seen a new user enter within the past 4 minutes |
4414 | // which can be seen as positive confirmation of sim health | 4595 | // which can be seen as positive confirmation of sim health |
4415 | // | 4596 | // |
4597 | |||
4598 | flags = 0; | ||
4599 | message = String.Empty; | ||
4600 | |||
4601 | CheckHeartbeat(); | ||
4602 | |||
4603 | if (m_firstHeartbeat || (m_lastIncoming == 0 && m_lastOutgoing == 0)) | ||
4604 | { | ||
4605 | // We're still starting | ||
4606 | // 0 means "in startup", it can't happen another way, since | ||
4607 | // to get here, we must be able to accept http connections | ||
4608 | return 0; | ||
4609 | } | ||
4610 | |||
4416 | int health=1; // Start at 1, means we're up | 4611 | int health=1; // Start at 1, means we're up |
4417 | 4612 | ||
4418 | if ((Util.EnvironmentTickCountSubtract(m_lastUpdate)) < 1000) | 4613 | if (Util.EnvironmentTickCountSubtract(m_lastUpdate) < 1000) |
4614 | { | ||
4615 | health+=1; | ||
4616 | flags |= 1; | ||
4617 | } | ||
4618 | |||
4619 | if (Util.EnvironmentTickCountSubtract(m_lastIncoming) < 1000) | ||
4620 | { | ||
4621 | health+=1; | ||
4622 | flags |= 2; | ||
4623 | } | ||
4624 | |||
4625 | if (Util.EnvironmentTickCountSubtract(m_lastOutgoing) < 1000) | ||
4626 | { | ||
4419 | health+=1; | 4627 | health+=1; |
4628 | flags |= 4; | ||
4629 | } | ||
4420 | else | 4630 | else |
4631 | { | ||
4632 | int pid = System.Diagnostics.Process.GetCurrentProcess().Id; | ||
4633 | System.Diagnostics.Process proc = new System.Diagnostics.Process(); | ||
4634 | proc.EnableRaisingEvents=false; | ||
4635 | proc.StartInfo.FileName = "/bin/kill"; | ||
4636 | proc.StartInfo.Arguments = "-QUIT " + pid.ToString(); | ||
4637 | proc.Start(); | ||
4638 | proc.WaitForExit(); | ||
4639 | Thread.Sleep(1000); | ||
4640 | Environment.Exit(1); | ||
4641 | } | ||
4642 | |||
4643 | if (flags != 7) | ||
4421 | return health; | 4644 | return health; |
4422 | 4645 | ||
4423 | // A login in the last 4 mins? We can't be doing too badly | 4646 | // A login in the last 4 mins? We can't be doing too badly |
4424 | // | 4647 | // |
4425 | if ((Util.EnvironmentTickCountSubtract(m_LastLogin)) < 240000) | 4648 | if (Util.EnvironmentTickCountSubtract(m_LastLogin) < 240000) |
4426 | health++; | 4649 | health++; |
4427 | else | ||
4428 | return health; | ||
4429 | |||
4430 | CheckHeartbeat(); | ||
4431 | 4650 | ||
4432 | return health; | 4651 | return health; |
4433 | } | 4652 | } |
@@ -4620,7 +4839,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
4620 | if (m_firstHeartbeat) | 4839 | if (m_firstHeartbeat) |
4621 | return; | 4840 | return; |
4622 | 4841 | ||
4623 | if (Util.EnvironmentTickCountSubtract(m_lastUpdate) > 2000) | 4842 | if (Util.EnvironmentTickCountSubtract(m_lastUpdate) > 5000) |
4624 | StartTimer(); | 4843 | StartTimer(); |
4625 | } | 4844 | } |
4626 | 4845 | ||
@@ -5030,6 +5249,54 @@ namespace OpenSim.Region.Framework.Scenes | |||
5030 | mapModule.GenerateMaptile(); | 5249 | mapModule.GenerateMaptile(); |
5031 | } | 5250 | } |
5032 | 5251 | ||
5252 | // public void CleanDroppedAttachments() | ||
5253 | // { | ||
5254 | // List<SceneObjectGroup> objectsToDelete = | ||
5255 | // new List<SceneObjectGroup>(); | ||
5256 | // | ||
5257 | // lock (m_cleaningAttachments) | ||
5258 | // { | ||
5259 | // ForEachSOG(delegate (SceneObjectGroup grp) | ||
5260 | // { | ||
5261 | // if (grp.RootPart.Shape.PCode == 0 && grp.RootPart.Shape.State != 0 && (!objectsToDelete.Contains(grp))) | ||
5262 | // { | ||
5263 | // UUID agentID = grp.OwnerID; | ||
5264 | // if (agentID == UUID.Zero) | ||
5265 | // { | ||
5266 | // objectsToDelete.Add(grp); | ||
5267 | // return; | ||
5268 | // } | ||
5269 | // | ||
5270 | // ScenePresence sp = GetScenePresence(agentID); | ||
5271 | // if (sp == null) | ||
5272 | // { | ||
5273 | // objectsToDelete.Add(grp); | ||
5274 | // return; | ||
5275 | // } | ||
5276 | // } | ||
5277 | // }); | ||
5278 | // } | ||
5279 | // | ||
5280 | // foreach (SceneObjectGroup grp in objectsToDelete) | ||
5281 | // { | ||
5282 | // m_log.InfoFormat("[SCENE]: Deleting dropped attachment {0} of user {1}", grp.UUID, grp.OwnerID); | ||
5283 | // DeleteSceneObject(grp, true); | ||
5284 | // } | ||
5285 | // } | ||
5286 | |||
5287 | public void ThreadAlive(int threadCode) | ||
5288 | { | ||
5289 | switch(threadCode) | ||
5290 | { | ||
5291 | case 1: // Incoming | ||
5292 | m_lastIncoming = Util.EnvironmentTickCount(); | ||
5293 | break; | ||
5294 | case 2: // Incoming | ||
5295 | m_lastOutgoing = Util.EnvironmentTickCount(); | ||
5296 | break; | ||
5297 | } | ||
5298 | } | ||
5299 | |||
5033 | // This method is called across the simulation connector to | 5300 | // This method is called across the simulation connector to |
5034 | // determine if a given agent is allowed in this region | 5301 | // determine if a given agent is allowed in this region |
5035 | // AS A ROOT AGENT. Returning false here will prevent them | 5302 | // AS A ROOT AGENT. Returning false here will prevent them |
@@ -5038,6 +5305,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
5038 | // child agent creation, thereby emulating the SL behavior. | 5305 | // child agent creation, thereby emulating the SL behavior. |
5039 | public bool QueryAccess(UUID agentID, Vector3 position, out string reason) | 5306 | public bool QueryAccess(UUID agentID, Vector3 position, out string reason) |
5040 | { | 5307 | { |
5308 | reason = "You are banned from the region"; | ||
5309 | |||
5310 | if (Permissions.IsGod(agentID)) | ||
5311 | { | ||
5312 | reason = String.Empty; | ||
5313 | return true; | ||
5314 | } | ||
5315 | |||
5041 | int num = m_sceneGraph.GetNumberOfScenePresences(); | 5316 | int num = m_sceneGraph.GetNumberOfScenePresences(); |
5042 | 5317 | ||
5043 | if (num >= RegionInfo.RegionSettings.AgentLimit) | 5318 | if (num >= RegionInfo.RegionSettings.AgentLimit) |
@@ -5049,11 +5324,82 @@ namespace OpenSim.Region.Framework.Scenes | |||
5049 | } | 5324 | } |
5050 | } | 5325 | } |
5051 | 5326 | ||
5327 | ScenePresence presence = GetScenePresence(agentID); | ||
5328 | IClientAPI client = null; | ||
5329 | AgentCircuitData aCircuit = null; | ||
5330 | |||
5331 | if (presence != null) | ||
5332 | { | ||
5333 | client = presence.ControllingClient; | ||
5334 | if (client != null) | ||
5335 | aCircuit = client.RequestClientInfo(); | ||
5336 | } | ||
5337 | |||
5338 | // We may be called before there is a presence or a client. | ||
5339 | // Fake AgentCircuitData to keep IAuthorizationModule smiling | ||
5340 | if (client == null) | ||
5341 | { | ||
5342 | aCircuit = new AgentCircuitData(); | ||
5343 | aCircuit.AgentID = agentID; | ||
5344 | aCircuit.firstname = String.Empty; | ||
5345 | aCircuit.lastname = String.Empty; | ||
5346 | } | ||
5347 | |||
5348 | try | ||
5349 | { | ||
5350 | if (!AuthorizeUser(aCircuit, out reason)) | ||
5351 | { | ||
5352 | // m_log.DebugFormat("[SCENE]: Denying access for {0}", agentID); | ||
5353 | return false; | ||
5354 | } | ||
5355 | } | ||
5356 | catch (Exception e) | ||
5357 | { | ||
5358 | m_log.DebugFormat("[SCENE]: Exception authorizing agent: {0} "+ e.StackTrace, e.Message); | ||
5359 | return false; | ||
5360 | } | ||
5361 | |||
5362 | if (position == Vector3.Zero) // Teleport | ||
5363 | { | ||
5364 | float posX = 128.0f; | ||
5365 | float posY = 128.0f; | ||
5366 | |||
5367 | if (!TestLandRestrictions(agentID, out reason, ref posX, ref posY)) | ||
5368 | { | ||
5369 | // m_log.DebugFormat("[SCENE]: Denying {0} because they are banned on all parcels", agentID); | ||
5370 | return false; | ||
5371 | } | ||
5372 | } | ||
5373 | else // Walking | ||
5374 | { | ||
5375 | ILandObject land = LandChannel.GetLandObject(position.X, position.Y); | ||
5376 | if (land == null) | ||
5377 | return false; | ||
5378 | |||
5379 | bool banned = land.IsBannedFromLand(agentID); | ||
5380 | bool restricted = land.IsRestrictedFromLand(agentID); | ||
5381 | |||
5382 | if (banned || restricted) | ||
5383 | return false; | ||
5384 | } | ||
5385 | |||
5052 | reason = String.Empty; | 5386 | reason = String.Empty; |
5053 | return true; | 5387 | return true; |
5054 | } | 5388 | } |
5055 | 5389 | ||
5056 | /// <summary> | 5390 | public void StartTimerWatchdog() |
5391 | { | ||
5392 | m_timerWatchdog.Interval = 1000; | ||
5393 | m_timerWatchdog.Elapsed += TimerWatchdog; | ||
5394 | m_timerWatchdog.AutoReset = true; | ||
5395 | m_timerWatchdog.Start(); | ||
5396 | } | ||
5397 | |||
5398 | public void TimerWatchdog(object sender, ElapsedEventArgs e) | ||
5399 | { | ||
5400 | CheckHeartbeat(); | ||
5401 | } | ||
5402 | |||
5057 | /// This method deals with movement when an avatar is automatically moving (but this is distinct from the | 5403 | /// This method deals with movement when an avatar is automatically moving (but this is distinct from the |
5058 | /// autopilot that moves an avatar to a sit target!. | 5404 | /// autopilot that moves an avatar to a sit target!. |
5059 | /// </summary> | 5405 | /// </summary> |
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs index 712e094..da3b4dd 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 d76ed3e..27833e8 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; |
@@ -176,10 +176,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
176 | } | 176 | } |
177 | } | 177 | } |
178 | 178 | ||
179 | public delegate void SendCloseChildAgentDelegate(UUID agentID, ulong regionHandle); | ||
180 | |||
179 | /// <summary> | 181 | /// <summary> |
180 | /// Closes a child agent on a given region | 182 | /// This Closes child agents on neighboring regions |
183 | /// Calls an asynchronous method to do so.. so it doesn't lag the sim. | ||
181 | /// </summary> | 184 | /// </summary> |
182 | protected void SendCloseChildAgent(UUID agentID, ulong regionHandle) | 185 | protected void SendCloseChildAgentAsync(UUID agentID, ulong regionHandle) |
183 | { | 186 | { |
184 | // let's do our best, but there's not much we can do if the neighbour doesn't accept. | 187 | // let's do our best, but there's not much we can do if the neighbour doesn't accept. |
185 | 188 | ||
@@ -188,34 +191,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
188 | Utils.LongToUInts(regionHandle, out x, out y); | 191 | Utils.LongToUInts(regionHandle, out x, out y); |
189 | 192 | ||
190 | GridRegion destination = m_scene.GridService.GetRegionByPosition(m_regionInfo.ScopeID, (int)x, (int)y); | 193 | GridRegion destination = m_scene.GridService.GetRegionByPosition(m_regionInfo.ScopeID, (int)x, (int)y); |
194 | m_scene.SimulationService.CloseChildAgent(destination, agentID); | ||
195 | } | ||
191 | 196 | ||
192 | m_log.DebugFormat( | 197 | private void SendCloseChildAgentCompleted(IAsyncResult iar) |
193 | "[INTERGRID]: Sending close agent {0} to region at {1}-{2}", | 198 | { |
194 | agentID, destination.RegionCoordX, destination.RegionCoordY); | 199 | SendCloseChildAgentDelegate icon = (SendCloseChildAgentDelegate)iar.AsyncState; |
195 | 200 | icon.EndInvoke(iar); | |
196 | m_scene.SimulationService.CloseAgent(destination, agentID); | ||
197 | } | 201 | } |
198 | 202 | ||
199 | /// <summary> | ||
200 | /// Closes a child agents in a collection of regions. Does so asynchronously | ||
201 | /// so that the caller doesn't wait. | ||
202 | /// </summary> | ||
203 | /// <param name="agentID"></param> | ||
204 | /// <param name="regionslst"></param> | ||
205 | public void SendCloseChildAgentConnections(UUID agentID, List<ulong> regionslst) | 203 | public void SendCloseChildAgentConnections(UUID agentID, List<ulong> regionslst) |
206 | { | 204 | { |
207 | Util.FireAndForget(delegate | 205 | foreach (ulong handle in regionslst) |
208 | { | 206 | { |
209 | foreach (ulong handle in regionslst) | 207 | SendCloseChildAgentDelegate d = SendCloseChildAgentAsync; |
210 | { | 208 | d.BeginInvoke(agentID, handle, |
211 | SendCloseChildAgent(agentID, handle); | 209 | SendCloseChildAgentCompleted, |
212 | } | 210 | d); |
213 | }); | 211 | } |
214 | } | 212 | } |
215 | 213 | ||
216 | public List<GridRegion> RequestNamedRegions(string name, int maxNumber) | 214 | public List<GridRegion> RequestNamedRegions(string name, int maxNumber) |
217 | { | 215 | { |
218 | return m_scene.GridService.GetRegionsByName(UUID.Zero, name, maxNumber); | 216 | return m_scene.GridService.GetRegionsByName(UUID.Zero, name, maxNumber); |
219 | } | 217 | } |
220 | } | 218 | } |
221 | } \ No newline at end of file | 219 | } |
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index a3e4b46..cd825eb 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -43,6 +43,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
43 | 43 | ||
44 | public delegate void ObjectDuplicateDelegate(EntityBase original, EntityBase clone); | 44 | public delegate void ObjectDuplicateDelegate(EntityBase original, EntityBase clone); |
45 | 45 | ||
46 | public delegate void AttachToBackupDelegate(SceneObjectGroup sog); | ||
47 | |||
48 | public delegate void DetachFromBackupDelegate(SceneObjectGroup sog); | ||
49 | |||
50 | public delegate void ChangedBackupDelegate(SceneObjectGroup sog); | ||
51 | |||
46 | public delegate void ObjectCreateDelegate(EntityBase obj); | 52 | public delegate void ObjectCreateDelegate(EntityBase obj); |
47 | 53 | ||
48 | public delegate void ObjectDeleteDelegate(EntityBase obj); | 54 | public delegate void ObjectDeleteDelegate(EntityBase obj); |
@@ -61,6 +67,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
61 | private PhysicsCrash handlerPhysicsCrash = null; | 67 | private PhysicsCrash handlerPhysicsCrash = null; |
62 | 68 | ||
63 | public event ObjectDuplicateDelegate OnObjectDuplicate; | 69 | public event ObjectDuplicateDelegate OnObjectDuplicate; |
70 | public event AttachToBackupDelegate OnAttachToBackup; | ||
71 | public event DetachFromBackupDelegate OnDetachFromBackup; | ||
72 | public event ChangedBackupDelegate OnChangeBackup; | ||
64 | public event ObjectCreateDelegate OnObjectCreate; | 73 | public event ObjectCreateDelegate OnObjectCreate; |
65 | public event ObjectDeleteDelegate OnObjectRemove; | 74 | public event ObjectDeleteDelegate OnObjectRemove; |
66 | 75 | ||
@@ -68,7 +77,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
68 | 77 | ||
69 | #region Fields | 78 | #region Fields |
70 | 79 | ||
71 | protected object m_presenceLock = new object(); | 80 | protected OpenMetaverse.ReaderWriterLockSlim m_scenePresencesLock = new OpenMetaverse.ReaderWriterLockSlim(); |
72 | protected Dictionary<UUID, ScenePresence> m_scenePresenceMap = new Dictionary<UUID, ScenePresence>(); | 81 | protected Dictionary<UUID, ScenePresence> m_scenePresenceMap = new Dictionary<UUID, ScenePresence>(); |
73 | protected List<ScenePresence> m_scenePresenceArray = new List<ScenePresence>(); | 82 | protected List<ScenePresence> m_scenePresenceArray = new List<ScenePresence>(); |
74 | 83 | ||
@@ -130,13 +139,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
130 | 139 | ||
131 | protected internal void Close() | 140 | protected internal void Close() |
132 | { | 141 | { |
133 | lock (m_presenceLock) | 142 | m_scenePresencesLock.EnterWriteLock(); |
143 | try | ||
134 | { | 144 | { |
135 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(); | 145 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(); |
136 | List<ScenePresence> newlist = new List<ScenePresence>(); | 146 | List<ScenePresence> newlist = new List<ScenePresence>(); |
137 | m_scenePresenceMap = newmap; | 147 | m_scenePresenceMap = newmap; |
138 | m_scenePresenceArray = newlist; | 148 | m_scenePresenceArray = newlist; |
139 | } | 149 | } |
150 | finally | ||
151 | { | ||
152 | m_scenePresencesLock.ExitWriteLock(); | ||
153 | } | ||
140 | 154 | ||
141 | lock (SceneObjectGroupsByFullID) | 155 | lock (SceneObjectGroupsByFullID) |
142 | SceneObjectGroupsByFullID.Clear(); | 156 | SceneObjectGroupsByFullID.Clear(); |
@@ -275,6 +289,33 @@ namespace OpenSim.Region.Framework.Scenes | |||
275 | protected internal bool AddRestoredSceneObject( | 289 | protected internal bool AddRestoredSceneObject( |
276 | SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates) | 290 | SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates) |
277 | { | 291 | { |
292 | if (!m_parentScene.CombineRegions) | ||
293 | { | ||
294 | // KF: Check for out-of-region, move inside and make static. | ||
295 | Vector3 npos = new Vector3(sceneObject.RootPart.GroupPosition.X, | ||
296 | sceneObject.RootPart.GroupPosition.Y, | ||
297 | sceneObject.RootPart.GroupPosition.Z); | ||
298 | 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 || | ||
299 | npos.X > Constants.RegionSize || | ||
300 | npos.Y > Constants.RegionSize)) | ||
301 | { | ||
302 | if (npos.X < 0.0) npos.X = 1.0f; | ||
303 | if (npos.Y < 0.0) npos.Y = 1.0f; | ||
304 | if (npos.Z < 0.0) npos.Z = 0.0f; | ||
305 | if (npos.X > Constants.RegionSize) npos.X = Constants.RegionSize - 1.0f; | ||
306 | if (npos.Y > Constants.RegionSize) npos.Y = Constants.RegionSize - 1.0f; | ||
307 | |||
308 | foreach (SceneObjectPart part in sceneObject.Parts) | ||
309 | { | ||
310 | part.GroupPosition = npos; | ||
311 | } | ||
312 | sceneObject.RootPart.Velocity = Vector3.Zero; | ||
313 | sceneObject.RootPart.AngularVelocity = Vector3.Zero; | ||
314 | sceneObject.RootPart.Acceleration = Vector3.Zero; | ||
315 | sceneObject.RootPart.Velocity = Vector3.Zero; | ||
316 | } | ||
317 | } | ||
318 | |||
278 | if (attachToBackup && (!alreadyPersisted)) | 319 | if (attachToBackup && (!alreadyPersisted)) |
279 | { | 320 | { |
280 | sceneObject.ForceInventoryPersistence(); | 321 | sceneObject.ForceInventoryPersistence(); |
@@ -492,6 +533,30 @@ namespace OpenSim.Region.Framework.Scenes | |||
492 | m_updateList[obj.UUID] = obj; | 533 | m_updateList[obj.UUID] = obj; |
493 | } | 534 | } |
494 | 535 | ||
536 | public void FireAttachToBackup(SceneObjectGroup obj) | ||
537 | { | ||
538 | if (OnAttachToBackup != null) | ||
539 | { | ||
540 | OnAttachToBackup(obj); | ||
541 | } | ||
542 | } | ||
543 | |||
544 | public void FireDetachFromBackup(SceneObjectGroup obj) | ||
545 | { | ||
546 | if (OnDetachFromBackup != null) | ||
547 | { | ||
548 | OnDetachFromBackup(obj); | ||
549 | } | ||
550 | } | ||
551 | |||
552 | public void FireChangeBackup(SceneObjectGroup obj) | ||
553 | { | ||
554 | if (OnChangeBackup != null) | ||
555 | { | ||
556 | OnChangeBackup(obj); | ||
557 | } | ||
558 | } | ||
559 | |||
495 | /// <summary> | 560 | /// <summary> |
496 | /// Process all pending updates | 561 | /// Process all pending updates |
497 | /// </summary> | 562 | /// </summary> |
@@ -609,7 +674,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
609 | 674 | ||
610 | Entities[presence.UUID] = presence; | 675 | Entities[presence.UUID] = presence; |
611 | 676 | ||
612 | lock (m_presenceLock) | 677 | m_scenePresencesLock.EnterWriteLock(); |
678 | try | ||
613 | { | 679 | { |
614 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(m_scenePresenceMap); | 680 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(m_scenePresenceMap); |
615 | List<ScenePresence> newlist = new List<ScenePresence>(m_scenePresenceArray); | 681 | List<ScenePresence> newlist = new List<ScenePresence>(m_scenePresenceArray); |
@@ -633,6 +699,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
633 | m_scenePresenceMap = newmap; | 699 | m_scenePresenceMap = newmap; |
634 | m_scenePresenceArray = newlist; | 700 | m_scenePresenceArray = newlist; |
635 | } | 701 | } |
702 | finally | ||
703 | { | ||
704 | m_scenePresencesLock.ExitWriteLock(); | ||
705 | } | ||
636 | } | 706 | } |
637 | 707 | ||
638 | /// <summary> | 708 | /// <summary> |
@@ -647,7 +717,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
647 | agentID); | 717 | agentID); |
648 | } | 718 | } |
649 | 719 | ||
650 | lock (m_presenceLock) | 720 | m_scenePresencesLock.EnterWriteLock(); |
721 | try | ||
651 | { | 722 | { |
652 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(m_scenePresenceMap); | 723 | Dictionary<UUID, ScenePresence> newmap = new Dictionary<UUID, ScenePresence>(m_scenePresenceMap); |
653 | List<ScenePresence> newlist = new List<ScenePresence>(m_scenePresenceArray); | 724 | List<ScenePresence> newlist = new List<ScenePresence>(m_scenePresenceArray); |
@@ -669,6 +740,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
669 | m_log.WarnFormat("[SCENE GRAPH]: Tried to remove non-existent scene presence with agent ID {0} from scene ScenePresences list", agentID); | 740 | m_log.WarnFormat("[SCENE GRAPH]: Tried to remove non-existent scene presence with agent ID {0} from scene ScenePresences list", agentID); |
670 | } | 741 | } |
671 | } | 742 | } |
743 | finally | ||
744 | { | ||
745 | m_scenePresencesLock.ExitWriteLock(); | ||
746 | } | ||
672 | } | 747 | } |
673 | 748 | ||
674 | protected internal void SwapRootChildAgent(bool direction_RC_CR_T_F) | 749 | protected internal void SwapRootChildAgent(bool direction_RC_CR_T_F) |
@@ -1382,8 +1457,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
1382 | { | 1457 | { |
1383 | 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)) |
1384 | { | 1459 | { |
1385 | if (m_parentScene.AttachmentsModule != null) | 1460 | // Set the new attachment point data in the object |
1386 | 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; | ||
1387 | } | 1467 | } |
1388 | else | 1468 | else |
1389 | { | 1469 | { |
@@ -1655,8 +1735,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1655 | return; | 1735 | return; |
1656 | 1736 | ||
1657 | Monitor.Enter(m_updateLock); | 1737 | Monitor.Enter(m_updateLock); |
1738 | |||
1658 | try | 1739 | try |
1659 | { | 1740 | { |
1741 | parentGroup.areUpdatesSuspended = true; | ||
1742 | |||
1660 | List<SceneObjectGroup> childGroups = new List<SceneObjectGroup>(); | 1743 | List<SceneObjectGroup> childGroups = new List<SceneObjectGroup>(); |
1661 | 1744 | ||
1662 | // We do this in reverse to get the link order of the prims correct | 1745 | // We do this in reverse to get the link order of the prims correct |
@@ -1667,9 +1750,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
1667 | // Make sure no child prim is set for sale | 1750 | // Make sure no child prim is set for sale |
1668 | // So that, on delink, no prims are unwittingly | 1751 | // So that, on delink, no prims are unwittingly |
1669 | // left for sale and sold off | 1752 | // left for sale and sold off |
1670 | child.RootPart.ObjectSaleType = 0; | 1753 | |
1671 | child.RootPart.SalePrice = 10; | 1754 | if (child != null) |
1672 | childGroups.Add(child); | 1755 | { |
1756 | child.RootPart.ObjectSaleType = 0; | ||
1757 | child.RootPart.SalePrice = 10; | ||
1758 | childGroups.Add(child); | ||
1759 | } | ||
1673 | } | 1760 | } |
1674 | 1761 | ||
1675 | foreach (SceneObjectGroup child in childGroups) | 1762 | foreach (SceneObjectGroup child in childGroups) |
@@ -1688,12 +1775,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
1688 | // occur on link to invoke this elsewhere (such as object selection) | 1775 | // occur on link to invoke this elsewhere (such as object selection) |
1689 | parentGroup.RootPart.CreateSelected = true; | 1776 | parentGroup.RootPart.CreateSelected = true; |
1690 | parentGroup.TriggerScriptChangedEvent(Changed.LINK); | 1777 | parentGroup.TriggerScriptChangedEvent(Changed.LINK); |
1691 | parentGroup.HasGroupChanged = true; | ||
1692 | parentGroup.ScheduleGroupForFullUpdate(); | ||
1693 | |||
1694 | } | 1778 | } |
1695 | finally | 1779 | finally |
1696 | { | 1780 | { |
1781 | lock (SceneObjectGroupsByLocalPartID) | ||
1782 | { | ||
1783 | foreach (SceneObjectPart part in parentGroup.Parts) | ||
1784 | SceneObjectGroupsByLocalPartID[part.LocalId] = parentGroup; | ||
1785 | } | ||
1786 | |||
1787 | parentGroup.areUpdatesSuspended = false; | ||
1788 | parentGroup.HasGroupChanged = true; | ||
1789 | parentGroup.ProcessBackup(m_parentScene.SimulationDataService, true); | ||
1790 | parentGroup.ScheduleGroupForFullUpdate(); | ||
1697 | Monitor.Exit(m_updateLock); | 1791 | Monitor.Exit(m_updateLock); |
1698 | } | 1792 | } |
1699 | } | 1793 | } |
@@ -1730,21 +1824,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
1730 | 1824 | ||
1731 | SceneObjectGroup group = part.ParentGroup; | 1825 | SceneObjectGroup group = part.ParentGroup; |
1732 | if (!affectedGroups.Contains(group)) | 1826 | if (!affectedGroups.Contains(group)) |
1827 | { | ||
1828 | group.areUpdatesSuspended = true; | ||
1733 | affectedGroups.Add(group); | 1829 | affectedGroups.Add(group); |
1830 | } | ||
1734 | } | 1831 | } |
1735 | } | 1832 | } |
1736 | } | 1833 | } |
1737 | 1834 | ||
1738 | foreach (SceneObjectPart child in childParts) | 1835 | if (childParts.Count > 0) |
1739 | { | 1836 | { |
1740 | // Unlink all child parts from their groups | 1837 | foreach (SceneObjectPart child in childParts) |
1741 | // | 1838 | { |
1742 | child.ParentGroup.DelinkFromGroup(child, true); | 1839 | // Unlink all child parts from their groups |
1743 | 1840 | // | |
1744 | // These are not in affected groups and will not be | 1841 | child.ParentGroup.DelinkFromGroup(child, true); |
1745 | // handled further. Do the honors here. | 1842 | child.ParentGroup.HasGroupChanged = true; |
1746 | child.ParentGroup.HasGroupChanged = true; | 1843 | child.ParentGroup.ScheduleGroupForFullUpdate(); |
1747 | child.ParentGroup.ScheduleGroupForFullUpdate(); | 1844 | } |
1748 | } | 1845 | } |
1749 | 1846 | ||
1750 | foreach (SceneObjectPart root in rootParts) | 1847 | foreach (SceneObjectPart root in rootParts) |
@@ -1754,56 +1851,68 @@ namespace OpenSim.Region.Framework.Scenes | |||
1754 | // However, editing linked parts and unlinking may be different | 1851 | // However, editing linked parts and unlinking may be different |
1755 | // | 1852 | // |
1756 | SceneObjectGroup group = root.ParentGroup; | 1853 | SceneObjectGroup group = root.ParentGroup; |
1854 | group.areUpdatesSuspended = true; | ||
1757 | 1855 | ||
1758 | List<SceneObjectPart> newSet = new List<SceneObjectPart>(group.Parts); | 1856 | List<SceneObjectPart> newSet = new List<SceneObjectPart>(group.Parts); |
1759 | int numChildren = newSet.Count; | 1857 | int numChildren = newSet.Count; |
1760 | 1858 | ||
1859 | if (numChildren == 1) | ||
1860 | break; | ||
1861 | |||
1761 | // If there are prims left in a link set, but the root is | 1862 | // If there are prims left in a link set, but the root is |
1762 | // slated for unlink, we need to do this | 1863 | // slated for unlink, we need to do this |
1864 | // Unlink the remaining set | ||
1763 | // | 1865 | // |
1764 | if (numChildren != 1) | 1866 | bool sendEventsToRemainder = true; |
1765 | { | 1867 | if (numChildren > 1) |
1766 | // Unlink the remaining set | 1868 | sendEventsToRemainder = false; |
1767 | // | ||
1768 | bool sendEventsToRemainder = true; | ||
1769 | if (numChildren > 1) | ||
1770 | sendEventsToRemainder = false; | ||
1771 | 1869 | ||
1772 | foreach (SceneObjectPart p in newSet) | 1870 | foreach (SceneObjectPart p in newSet) |
1871 | { | ||
1872 | if (p != group.RootPart) | ||
1773 | { | 1873 | { |
1774 | if (p != group.RootPart) | 1874 | group.DelinkFromGroup(p, sendEventsToRemainder); |
1775 | group.DelinkFromGroup(p, sendEventsToRemainder); | 1875 | if (numChildren > 2) |
1876 | { | ||
1877 | p.ParentGroup.areUpdatesSuspended = true; | ||
1878 | } | ||
1879 | else | ||
1880 | { | ||
1881 | p.ParentGroup.HasGroupChanged = true; | ||
1882 | p.ParentGroup.ScheduleGroupForFullUpdate(); | ||
1883 | } | ||
1776 | } | 1884 | } |
1885 | } | ||
1886 | |||
1887 | // If there is more than one prim remaining, we | ||
1888 | // need to re-link | ||
1889 | // | ||
1890 | if (numChildren > 2) | ||
1891 | { | ||
1892 | // Remove old root | ||
1893 | // | ||
1894 | if (newSet.Contains(root)) | ||
1895 | newSet.Remove(root); | ||
1777 | 1896 | ||
1778 | // If there is more than one prim remaining, we | 1897 | // Preserve link ordering |
1779 | // need to re-link | ||
1780 | // | 1898 | // |
1781 | if (numChildren > 2) | 1899 | newSet.Sort(delegate (SceneObjectPart a, SceneObjectPart b) |
1782 | { | 1900 | { |
1783 | // Remove old root | 1901 | return a.LinkNum.CompareTo(b.LinkNum); |
1784 | // | 1902 | }); |
1785 | if (newSet.Contains(root)) | ||
1786 | newSet.Remove(root); | ||
1787 | |||
1788 | // Preserve link ordering | ||
1789 | // | ||
1790 | newSet.Sort(delegate (SceneObjectPart a, SceneObjectPart b) | ||
1791 | { | ||
1792 | return a.LinkNum.CompareTo(b.LinkNum); | ||
1793 | }); | ||
1794 | 1903 | ||
1795 | // Determine new root | 1904 | // Determine new root |
1796 | // | 1905 | // |
1797 | SceneObjectPart newRoot = newSet[0]; | 1906 | SceneObjectPart newRoot = newSet[0]; |
1798 | newSet.RemoveAt(0); | 1907 | newSet.RemoveAt(0); |
1799 | 1908 | ||
1800 | foreach (SceneObjectPart newChild in newSet) | 1909 | foreach (SceneObjectPart newChild in newSet) |
1801 | newChild.ClearUpdateSchedule(); | 1910 | newChild.ClearUpdateSchedule(); |
1802 | 1911 | ||
1803 | LinkObjects(newRoot, newSet); | 1912 | newRoot.ParentGroup.areUpdatesSuspended = true; |
1804 | if (!affectedGroups.Contains(newRoot.ParentGroup)) | 1913 | LinkObjects(newRoot, newSet); |
1805 | affectedGroups.Add(newRoot.ParentGroup); | 1914 | if (!affectedGroups.Contains(newRoot.ParentGroup)) |
1806 | } | 1915 | affectedGroups.Add(newRoot.ParentGroup); |
1807 | } | 1916 | } |
1808 | } | 1917 | } |
1809 | 1918 | ||
@@ -1811,8 +1920,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
1811 | // | 1920 | // |
1812 | foreach (SceneObjectGroup g in affectedGroups) | 1921 | foreach (SceneObjectGroup g in affectedGroups) |
1813 | { | 1922 | { |
1923 | // Child prims that have been unlinked and deleted will | ||
1924 | // return unless the root is deleted. This will remove them | ||
1925 | // from the database. They will be rewritten immediately, | ||
1926 | // minus the rows for the unlinked child prims. | ||
1927 | m_parentScene.SimulationDataService.RemoveObject(g.UUID, m_parentScene.RegionInfo.RegionID); | ||
1814 | g.TriggerScriptChangedEvent(Changed.LINK); | 1928 | g.TriggerScriptChangedEvent(Changed.LINK); |
1815 | g.HasGroupChanged = true; // Persist | 1929 | g.HasGroupChanged = true; // Persist |
1930 | g.areUpdatesSuspended = false; | ||
1816 | g.ScheduleGroupForFullUpdate(); | 1931 | g.ScheduleGroupForFullUpdate(); |
1817 | } | 1932 | } |
1818 | } | 1933 | } |
@@ -1930,9 +2045,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1930 | child.ApplyNextOwnerPermissions(); | 2045 | child.ApplyNextOwnerPermissions(); |
1931 | } | 2046 | } |
1932 | } | 2047 | } |
1933 | |||
1934 | copy.RootPart.ObjectSaleType = 0; | ||
1935 | copy.RootPart.SalePrice = 10; | ||
1936 | } | 2048 | } |
1937 | 2049 | ||
1938 | // FIXME: This section needs to be refactored so that it just calls AddSceneObject() | 2050 | // 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 905ecc9..c7da4f4 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(); |
@@ -234,6 +230,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
234 | 230 | ||
235 | public uint GetEffectivePermissions() | 231 | public uint GetEffectivePermissions() |
236 | { | 232 | { |
233 | return GetEffectivePermissions(false); | ||
234 | } | ||
235 | |||
236 | public uint GetEffectivePermissions(bool useBase) | ||
237 | { | ||
237 | uint perms=(uint)(PermissionMask.Modify | | 238 | uint perms=(uint)(PermissionMask.Modify | |
238 | PermissionMask.Copy | | 239 | PermissionMask.Copy | |
239 | PermissionMask.Move | | 240 | PermissionMask.Move | |
@@ -245,7 +246,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
245 | for (int i = 0; i < parts.Length; i++) | 246 | for (int i = 0; i < parts.Length; i++) |
246 | { | 247 | { |
247 | SceneObjectPart part = parts[i]; | 248 | SceneObjectPart part = parts[i]; |
248 | ownerMask &= part.OwnerMask; | 249 | if (useBase) |
250 | ownerMask &= part.BaseMask; | ||
251 | else | ||
252 | ownerMask &= part.OwnerMask; | ||
249 | perms &= part.Inventory.MaskEffectivePermissions(); | 253 | perms &= part.Inventory.MaskEffectivePermissions(); |
250 | } | 254 | } |
251 | 255 | ||
@@ -385,6 +389,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
385 | 389 | ||
386 | public void ResumeScripts() | 390 | public void ResumeScripts() |
387 | { | 391 | { |
392 | if (m_scene.RegionInfo.RegionSettings.DisableScripts) | ||
393 | return; | ||
394 | |||
388 | SceneObjectPart[] parts = m_parts.GetArray(); | 395 | SceneObjectPart[] parts = m_parts.GetArray(); |
389 | for (int i = 0; i < parts.Length; i++) | 396 | for (int i = 0; i < parts.Length; i++) |
390 | parts[i].Inventory.ResumeScripts(); | 397 | parts[i].Inventory.ResumeScripts(); |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index abea788..948dca2 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; |
@@ -105,8 +106,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
105 | /// since the group's last persistent backup | 106 | /// since the group's last persistent backup |
106 | /// </summary> | 107 | /// </summary> |
107 | private bool m_hasGroupChanged = false; | 108 | private bool m_hasGroupChanged = false; |
108 | private long timeFirstChanged; | 109 | private long timeFirstChanged = 0; |
109 | private long timeLastChanged; | 110 | private long timeLastChanged = 0; |
111 | private long m_maxPersistTime = 0; | ||
112 | private long m_minPersistTime = 0; | ||
113 | private Random m_rand; | ||
114 | private bool m_suspendUpdates; | ||
115 | private List<ScenePresence> m_linkedAvatars = new List<ScenePresence>(); | ||
116 | |||
117 | public bool areUpdatesSuspended | ||
118 | { | ||
119 | get | ||
120 | { | ||
121 | return m_suspendUpdates; | ||
122 | } | ||
123 | set | ||
124 | { | ||
125 | m_suspendUpdates = value; | ||
126 | if (!value) | ||
127 | { | ||
128 | QueueForUpdateCheck(); | ||
129 | } | ||
130 | } | ||
131 | } | ||
110 | 132 | ||
111 | public bool HasGroupChanged | 133 | public bool HasGroupChanged |
112 | { | 134 | { |
@@ -114,9 +136,39 @@ namespace OpenSim.Region.Framework.Scenes | |||
114 | { | 136 | { |
115 | if (value) | 137 | if (value) |
116 | { | 138 | { |
139 | if (m_isBackedUp) | ||
140 | { | ||
141 | m_scene.SceneGraph.FireChangeBackup(this); | ||
142 | } | ||
117 | timeLastChanged = DateTime.Now.Ticks; | 143 | timeLastChanged = DateTime.Now.Ticks; |
118 | if (!m_hasGroupChanged) | 144 | if (!m_hasGroupChanged) |
119 | timeFirstChanged = DateTime.Now.Ticks; | 145 | timeFirstChanged = DateTime.Now.Ticks; |
146 | if (m_rootPart != null && m_rootPart.UUID != null && m_scene != null) | ||
147 | { | ||
148 | if (m_rand == null) | ||
149 | { | ||
150 | byte[] val = new byte[16]; | ||
151 | m_rootPart.UUID.ToBytes(val, 0); | ||
152 | m_rand = new Random(BitConverter.ToInt32(val, 0)); | ||
153 | } | ||
154 | |||
155 | if (m_scene.GetRootAgentCount() == 0) | ||
156 | { | ||
157 | //If the region is empty, this change has been made by an automated process | ||
158 | //and thus we delay the persist time by a random amount between 1.5 and 2.5. | ||
159 | |||
160 | float factor = 1.5f + (float)(m_rand.NextDouble()); | ||
161 | m_maxPersistTime = (long)((float)m_scene.m_persistAfter * factor); | ||
162 | m_minPersistTime = (long)((float)m_scene.m_dontPersistBefore * factor); | ||
163 | } | ||
164 | else | ||
165 | { | ||
166 | //If the region is not empty, we want to obey the minimum and maximum persist times | ||
167 | //but add a random factor so we stagger the object persistance a little | ||
168 | m_maxPersistTime = (long)((float)m_scene.m_persistAfter * (1.0d - (m_rand.NextDouble() / 5.0d))); //Multiply by 1.0-1.5 | ||
169 | m_minPersistTime = (long)((float)m_scene.m_dontPersistBefore * (1.0d + (m_rand.NextDouble() / 2.0d))); //Multiply by 0.8-1.0 | ||
170 | } | ||
171 | } | ||
120 | } | 172 | } |
121 | m_hasGroupChanged = value; | 173 | m_hasGroupChanged = value; |
122 | 174 | ||
@@ -131,7 +183,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 | 183 | /// 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. | 184 | /// an unlinked group currently has to be persisted to the database before we can perform an unlink operation. |
133 | /// </summary> | 185 | /// </summary> |
134 | public bool HasGroupChangedDueToDelink { get; private set; } | 186 | public bool HasGroupChangedDueToDelink { get; set; } |
135 | 187 | ||
136 | private bool isTimeToPersist() | 188 | private bool isTimeToPersist() |
137 | { | 189 | { |
@@ -141,8 +193,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
141 | return false; | 193 | return false; |
142 | if (m_scene.ShuttingDown) | 194 | if (m_scene.ShuttingDown) |
143 | return true; | 195 | return true; |
196 | |||
197 | if (m_minPersistTime == 0 || m_maxPersistTime == 0) | ||
198 | { | ||
199 | m_maxPersistTime = m_scene.m_persistAfter; | ||
200 | m_minPersistTime = m_scene.m_dontPersistBefore; | ||
201 | } | ||
202 | |||
144 | long currentTime = DateTime.Now.Ticks; | 203 | long currentTime = DateTime.Now.Ticks; |
145 | if (currentTime - timeLastChanged > m_scene.m_dontPersistBefore || currentTime - timeFirstChanged > m_scene.m_persistAfter) | 204 | |
205 | if (timeLastChanged == 0) timeLastChanged = currentTime; | ||
206 | if (timeFirstChanged == 0) timeFirstChanged = currentTime; | ||
207 | |||
208 | if (currentTime - timeLastChanged > m_minPersistTime || currentTime - timeFirstChanged > m_maxPersistTime) | ||
146 | return true; | 209 | return true; |
147 | return false; | 210 | return false; |
148 | } | 211 | } |
@@ -247,10 +310,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
247 | 310 | ||
248 | private bool m_scriptListens_atTarget; | 311 | private bool m_scriptListens_atTarget; |
249 | private bool m_scriptListens_notAtTarget; | 312 | private bool m_scriptListens_notAtTarget; |
250 | |||
251 | private bool m_scriptListens_atRotTarget; | 313 | private bool m_scriptListens_atRotTarget; |
252 | private bool m_scriptListens_notAtRotTarget; | 314 | private bool m_scriptListens_notAtRotTarget; |
253 | 315 | ||
316 | public bool m_dupeInProgress = false; | ||
254 | internal Dictionary<UUID, string> m_savedScriptState; | 317 | internal Dictionary<UUID, string> m_savedScriptState; |
255 | 318 | ||
256 | #region Properties | 319 | #region Properties |
@@ -281,6 +344,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
281 | get { return m_parts.Count; } | 344 | get { return m_parts.Count; } |
282 | } | 345 | } |
283 | 346 | ||
347 | // protected Quaternion m_rotation = Quaternion.Identity; | ||
348 | // | ||
349 | // public virtual Quaternion Rotation | ||
350 | // { | ||
351 | // get { return m_rotation; } | ||
352 | // set { | ||
353 | // m_rotation = value; | ||
354 | // } | ||
355 | // } | ||
356 | |||
284 | public Quaternion GroupRotation | 357 | public Quaternion GroupRotation |
285 | { | 358 | { |
286 | get { return m_rootPart.RotationOffset; } | 359 | get { return m_rootPart.RotationOffset; } |
@@ -389,7 +462,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
389 | m_scene.CrossPrimGroupIntoNewRegion(val, this, true); | 462 | m_scene.CrossPrimGroupIntoNewRegion(val, this, true); |
390 | } | 463 | } |
391 | } | 464 | } |
392 | 465 | ||
466 | foreach (SceneObjectPart part in m_parts.GetArray()) | ||
467 | { | ||
468 | part.IgnoreUndoUpdate = true; | ||
469 | } | ||
393 | if (RootPart.GetStatusSandbox()) | 470 | if (RootPart.GetStatusSandbox()) |
394 | { | 471 | { |
395 | if (Util.GetDistanceTo(RootPart.StatusSandboxPos, value) > 10) | 472 | if (Util.GetDistanceTo(RootPart.StatusSandboxPos, value) > 10) |
@@ -403,10 +480,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
403 | return; | 480 | return; |
404 | } | 481 | } |
405 | } | 482 | } |
406 | |||
407 | SceneObjectPart[] parts = m_parts.GetArray(); | 483 | SceneObjectPart[] parts = m_parts.GetArray(); |
408 | for (int i = 0; i < parts.Length; i++) | 484 | foreach (SceneObjectPart part in parts) |
409 | parts[i].GroupPosition = val; | 485 | { |
486 | part.GroupPosition = val; | ||
487 | if (!m_dupeInProgress) | ||
488 | { | ||
489 | part.TriggerScriptChangedEvent(Changed.POSITION); | ||
490 | } | ||
491 | } | ||
492 | if (!m_dupeInProgress) | ||
493 | { | ||
494 | foreach (ScenePresence av in m_linkedAvatars) | ||
495 | { | ||
496 | SceneObjectPart p = m_scene.GetSceneObjectPart(av.ParentID); | ||
497 | if (m_parts.TryGetValue(p.UUID, out p)) | ||
498 | { | ||
499 | Vector3 offset = p.GetWorldPosition() - av.ParentPosition; | ||
500 | av.AbsolutePosition += offset; | ||
501 | av.ParentPosition = p.GetWorldPosition(); //ParentPosition gets cleared by AbsolutePosition | ||
502 | av.SendAvatarDataToAllAgents(); | ||
503 | } | ||
504 | } | ||
505 | } | ||
410 | 506 | ||
411 | //if (m_rootPart.PhysActor != null) | 507 | //if (m_rootPart.PhysActor != null) |
412 | //{ | 508 | //{ |
@@ -565,6 +661,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
565 | /// </summary> | 661 | /// </summary> |
566 | public SceneObjectGroup() | 662 | public SceneObjectGroup() |
567 | { | 663 | { |
664 | |||
568 | } | 665 | } |
569 | 666 | ||
570 | /// <summary> | 667 | /// <summary> |
@@ -581,7 +678,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
581 | /// Constructor. This object is added to the scene later via AttachToScene() | 678 | /// Constructor. This object is added to the scene later via AttachToScene() |
582 | /// </summary> | 679 | /// </summary> |
583 | public SceneObjectGroup(UUID ownerID, Vector3 pos, Quaternion rot, PrimitiveBaseShape shape) | 680 | public SceneObjectGroup(UUID ownerID, Vector3 pos, Quaternion rot, PrimitiveBaseShape shape) |
584 | { | 681 | { |
585 | SetRootPart(new SceneObjectPart(ownerID, shape, pos, rot, Vector3.Zero)); | 682 | SetRootPart(new SceneObjectPart(ownerID, shape, pos, rot, Vector3.Zero)); |
586 | } | 683 | } |
587 | 684 | ||
@@ -629,6 +726,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
629 | /// </summary> | 726 | /// </summary> |
630 | public virtual void AttachToBackup() | 727 | public virtual void AttachToBackup() |
631 | { | 728 | { |
729 | if (IsAttachment) return; | ||
730 | m_scene.SceneGraph.FireAttachToBackup(this); | ||
731 | |||
632 | if (InSceneBackup) | 732 | if (InSceneBackup) |
633 | { | 733 | { |
634 | //m_log.DebugFormat( | 734 | //m_log.DebugFormat( |
@@ -671,6 +771,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
671 | 771 | ||
672 | ApplyPhysics(m_scene.m_physicalPrim); | 772 | ApplyPhysics(m_scene.m_physicalPrim); |
673 | 773 | ||
774 | if (RootPart.PhysActor != null) | ||
775 | RootPart.Buoyancy = RootPart.Buoyancy; | ||
776 | |||
674 | // Don't trigger the update here - otherwise some client issues occur when multiple updates are scheduled | 777 | // Don't trigger the update here - otherwise some client issues occur when multiple updates are scheduled |
675 | // for the same object with very different properties. The caller must schedule the update. | 778 | // for the same object with very different properties. The caller must schedule the update. |
676 | //ScheduleGroupForFullUpdate(); | 779 | //ScheduleGroupForFullUpdate(); |
@@ -686,6 +789,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
686 | EntityIntersection result = new EntityIntersection(); | 789 | EntityIntersection result = new EntityIntersection(); |
687 | 790 | ||
688 | SceneObjectPart[] parts = m_parts.GetArray(); | 791 | SceneObjectPart[] parts = m_parts.GetArray(); |
792 | |||
793 | // Find closest hit here | ||
794 | float idist = float.MaxValue; | ||
795 | |||
689 | for (int i = 0; i < parts.Length; i++) | 796 | for (int i = 0; i < parts.Length; i++) |
690 | { | 797 | { |
691 | SceneObjectPart part = parts[i]; | 798 | SceneObjectPart part = parts[i]; |
@@ -700,11 +807,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
700 | 807 | ||
701 | EntityIntersection inter = part.TestIntersectionOBB(hRay, parentrotation, frontFacesOnly, faceCenters); | 808 | EntityIntersection inter = part.TestIntersectionOBB(hRay, parentrotation, frontFacesOnly, faceCenters); |
702 | 809 | ||
703 | // This may need to be updated to the maximum draw distance possible.. | ||
704 | // We might (and probably will) be checking for prim creation from other sims | ||
705 | // when the camera crosses the border. | ||
706 | float idist = Constants.RegionSize; | ||
707 | |||
708 | if (inter.HitTF) | 810 | if (inter.HitTF) |
709 | { | 811 | { |
710 | // We need to find the closest prim to return to the testcaller along the ray | 812 | // We need to find the closest prim to return to the testcaller along the ray |
@@ -715,10 +817,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
715 | result.obj = part; | 817 | result.obj = part; |
716 | result.normal = inter.normal; | 818 | result.normal = inter.normal; |
717 | result.distance = inter.distance; | 819 | result.distance = inter.distance; |
820 | |||
821 | idist = inter.distance; | ||
718 | } | 822 | } |
719 | } | 823 | } |
720 | } | 824 | } |
721 | |||
722 | return result; | 825 | return result; |
723 | } | 826 | } |
724 | 827 | ||
@@ -738,17 +841,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
738 | minZ = 8192f; | 841 | minZ = 8192f; |
739 | 842 | ||
740 | SceneObjectPart[] parts = m_parts.GetArray(); | 843 | SceneObjectPart[] parts = m_parts.GetArray(); |
741 | for (int i = 0; i < parts.Length; i++) | 844 | foreach (SceneObjectPart part in parts) |
742 | { | 845 | { |
743 | SceneObjectPart part = parts[i]; | ||
744 | |||
745 | Vector3 worldPos = part.GetWorldPosition(); | 846 | Vector3 worldPos = part.GetWorldPosition(); |
746 | Vector3 offset = worldPos - AbsolutePosition; | 847 | Vector3 offset = worldPos - AbsolutePosition; |
747 | Quaternion worldRot; | 848 | Quaternion worldRot; |
748 | if (part.ParentID == 0) | 849 | if (part.ParentID == 0) |
850 | { | ||
749 | worldRot = part.RotationOffset; | 851 | worldRot = part.RotationOffset; |
852 | } | ||
750 | else | 853 | else |
854 | { | ||
751 | worldRot = part.GetWorldRotation(); | 855 | worldRot = part.GetWorldRotation(); |
856 | } | ||
752 | 857 | ||
753 | Vector3 frontTopLeft; | 858 | Vector3 frontTopLeft; |
754 | Vector3 frontTopRight; | 859 | Vector3 frontTopRight; |
@@ -760,6 +865,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
760 | Vector3 backBottomLeft; | 865 | Vector3 backBottomLeft; |
761 | Vector3 backBottomRight; | 866 | Vector3 backBottomRight; |
762 | 867 | ||
868 | // Vector3[] corners = new Vector3[8]; | ||
869 | |||
763 | Vector3 orig = Vector3.Zero; | 870 | Vector3 orig = Vector3.Zero; |
764 | 871 | ||
765 | frontTopLeft.X = orig.X - (part.Scale.X / 2); | 872 | frontTopLeft.X = orig.X - (part.Scale.X / 2); |
@@ -794,6 +901,38 @@ namespace OpenSim.Region.Framework.Scenes | |||
794 | backBottomRight.Y = orig.Y + (part.Scale.Y / 2); | 901 | backBottomRight.Y = orig.Y + (part.Scale.Y / 2); |
795 | backBottomRight.Z = orig.Z - (part.Scale.Z / 2); | 902 | backBottomRight.Z = orig.Z - (part.Scale.Z / 2); |
796 | 903 | ||
904 | |||
905 | |||
906 | //m_log.InfoFormat("pre corner 1 is {0} {1} {2}", frontTopLeft.X, frontTopLeft.Y, frontTopLeft.Z); | ||
907 | //m_log.InfoFormat("pre corner 2 is {0} {1} {2}", frontTopRight.X, frontTopRight.Y, frontTopRight.Z); | ||
908 | //m_log.InfoFormat("pre corner 3 is {0} {1} {2}", frontBottomRight.X, frontBottomRight.Y, frontBottomRight.Z); | ||
909 | //m_log.InfoFormat("pre corner 4 is {0} {1} {2}", frontBottomLeft.X, frontBottomLeft.Y, frontBottomLeft.Z); | ||
910 | //m_log.InfoFormat("pre corner 5 is {0} {1} {2}", backTopLeft.X, backTopLeft.Y, backTopLeft.Z); | ||
911 | //m_log.InfoFormat("pre corner 6 is {0} {1} {2}", backTopRight.X, backTopRight.Y, backTopRight.Z); | ||
912 | //m_log.InfoFormat("pre corner 7 is {0} {1} {2}", backBottomRight.X, backBottomRight.Y, backBottomRight.Z); | ||
913 | //m_log.InfoFormat("pre corner 8 is {0} {1} {2}", backBottomLeft.X, backBottomLeft.Y, backBottomLeft.Z); | ||
914 | |||
915 | //for (int i = 0; i < 8; i++) | ||
916 | //{ | ||
917 | // corners[i] = corners[i] * worldRot; | ||
918 | // corners[i] += offset; | ||
919 | |||
920 | // if (corners[i].X > maxX) | ||
921 | // maxX = corners[i].X; | ||
922 | // if (corners[i].X < minX) | ||
923 | // minX = corners[i].X; | ||
924 | |||
925 | // if (corners[i].Y > maxY) | ||
926 | // maxY = corners[i].Y; | ||
927 | // if (corners[i].Y < minY) | ||
928 | // minY = corners[i].Y; | ||
929 | |||
930 | // if (corners[i].Z > maxZ) | ||
931 | // maxZ = corners[i].Y; | ||
932 | // if (corners[i].Z < minZ) | ||
933 | // minZ = corners[i].Z; | ||
934 | //} | ||
935 | |||
797 | frontTopLeft = frontTopLeft * worldRot; | 936 | frontTopLeft = frontTopLeft * worldRot; |
798 | frontTopRight = frontTopRight * worldRot; | 937 | frontTopRight = frontTopRight * worldRot; |
799 | frontBottomLeft = frontBottomLeft * worldRot; | 938 | frontBottomLeft = frontBottomLeft * worldRot; |
@@ -815,6 +954,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
815 | backTopLeft += offset; | 954 | backTopLeft += offset; |
816 | backTopRight += offset; | 955 | backTopRight += offset; |
817 | 956 | ||
957 | //m_log.InfoFormat("corner 1 is {0} {1} {2}", frontTopLeft.X, frontTopLeft.Y, frontTopLeft.Z); | ||
958 | //m_log.InfoFormat("corner 2 is {0} {1} {2}", frontTopRight.X, frontTopRight.Y, frontTopRight.Z); | ||
959 | //m_log.InfoFormat("corner 3 is {0} {1} {2}", frontBottomRight.X, frontBottomRight.Y, frontBottomRight.Z); | ||
960 | //m_log.InfoFormat("corner 4 is {0} {1} {2}", frontBottomLeft.X, frontBottomLeft.Y, frontBottomLeft.Z); | ||
961 | //m_log.InfoFormat("corner 5 is {0} {1} {2}", backTopLeft.X, backTopLeft.Y, backTopLeft.Z); | ||
962 | //m_log.InfoFormat("corner 6 is {0} {1} {2}", backTopRight.X, backTopRight.Y, backTopRight.Z); | ||
963 | //m_log.InfoFormat("corner 7 is {0} {1} {2}", backBottomRight.X, backBottomRight.Y, backBottomRight.Z); | ||
964 | //m_log.InfoFormat("corner 8 is {0} {1} {2}", backBottomLeft.X, backBottomLeft.Y, backBottomLeft.Z); | ||
965 | |||
818 | if (frontTopRight.X > maxX) | 966 | if (frontTopRight.X > maxX) |
819 | maxX = frontTopRight.X; | 967 | maxX = frontTopRight.X; |
820 | if (frontTopLeft.X > maxX) | 968 | if (frontTopLeft.X > maxX) |
@@ -960,15 +1108,20 @@ namespace OpenSim.Region.Framework.Scenes | |||
960 | 1108 | ||
961 | public void SaveScriptedState(XmlTextWriter writer) | 1109 | public void SaveScriptedState(XmlTextWriter writer) |
962 | { | 1110 | { |
1111 | SaveScriptedState(writer, false); | ||
1112 | } | ||
1113 | |||
1114 | public void SaveScriptedState(XmlTextWriter writer, bool oldIDs) | ||
1115 | { | ||
963 | XmlDocument doc = new XmlDocument(); | 1116 | XmlDocument doc = new XmlDocument(); |
964 | Dictionary<UUID,string> states = new Dictionary<UUID,string>(); | 1117 | Dictionary<UUID,string> states = new Dictionary<UUID,string>(); |
965 | 1118 | ||
966 | SceneObjectPart[] parts = m_parts.GetArray(); | 1119 | SceneObjectPart[] parts = m_parts.GetArray(); |
967 | for (int i = 0; i < parts.Length; i++) | 1120 | for (int i = 0; i < parts.Length; i++) |
968 | { | 1121 | { |
969 | Dictionary<UUID, string> pstates = parts[i].Inventory.GetScriptStates(); | 1122 | Dictionary<UUID, string> pstates = parts[i].Inventory.GetScriptStates(oldIDs); |
970 | foreach (KeyValuePair<UUID, string> kvp in pstates) | 1123 | foreach (KeyValuePair<UUID, string> kvp in pstates) |
971 | states.Add(kvp.Key, kvp.Value); | 1124 | states[kvp.Key] = kvp.Value; |
972 | } | 1125 | } |
973 | 1126 | ||
974 | if (states.Count > 0) | 1127 | if (states.Count > 0) |
@@ -988,6 +1141,168 @@ namespace OpenSim.Region.Framework.Scenes | |||
988 | } | 1141 | } |
989 | 1142 | ||
990 | /// <summary> | 1143 | /// <summary> |
1144 | /// Add the avatar to this linkset (avatar is sat). | ||
1145 | /// </summary> | ||
1146 | /// <param name="agentID"></param> | ||
1147 | public void AddAvatar(UUID agentID) | ||
1148 | { | ||
1149 | ScenePresence presence; | ||
1150 | if (m_scene.TryGetScenePresence(agentID, out presence)) | ||
1151 | { | ||
1152 | if (!m_linkedAvatars.Contains(presence)) | ||
1153 | { | ||
1154 | m_linkedAvatars.Add(presence); | ||
1155 | } | ||
1156 | } | ||
1157 | } | ||
1158 | |||
1159 | /// <summary> | ||
1160 | /// Delete the avatar from this linkset (avatar is unsat). | ||
1161 | /// </summary> | ||
1162 | /// <param name="agentID"></param> | ||
1163 | public void DeleteAvatar(UUID agentID) | ||
1164 | { | ||
1165 | ScenePresence presence; | ||
1166 | if (m_scene.TryGetScenePresence(agentID, out presence)) | ||
1167 | { | ||
1168 | if (m_linkedAvatars.Contains(presence)) | ||
1169 | { | ||
1170 | m_linkedAvatars.Remove(presence); | ||
1171 | } | ||
1172 | } | ||
1173 | } | ||
1174 | |||
1175 | /// <summary> | ||
1176 | /// Returns the list of linked presences (avatars sat on this group) | ||
1177 | /// </summary> | ||
1178 | /// <param name="agentID"></param> | ||
1179 | public List<ScenePresence> GetLinkedAvatars() | ||
1180 | { | ||
1181 | return m_linkedAvatars; | ||
1182 | } | ||
1183 | |||
1184 | /// <summary> | ||
1185 | /// Attach this scene object to the given avatar. | ||
1186 | /// </summary> | ||
1187 | /// <param name="agentID"></param> | ||
1188 | /// <param name="attachmentpoint"></param> | ||
1189 | /// <param name="AttachOffset"></param> | ||
1190 | private void AttachToAgent( | ||
1191 | ScenePresence avatar, SceneObjectGroup so, uint attachmentpoint, Vector3 attachOffset, bool silent) | ||
1192 | { | ||
1193 | if (avatar != null) | ||
1194 | { | ||
1195 | // don't attach attachments to child agents | ||
1196 | if (avatar.IsChildAgent) return; | ||
1197 | |||
1198 | // Remove from database and parcel prim count | ||
1199 | m_scene.DeleteFromStorage(so.UUID); | ||
1200 | m_scene.EventManager.TriggerParcelPrimCountTainted(); | ||
1201 | |||
1202 | so.AttachedAvatar = avatar.UUID; | ||
1203 | |||
1204 | if (so.RootPart.PhysActor != null) | ||
1205 | { | ||
1206 | m_scene.PhysicsScene.RemovePrim(so.RootPart.PhysActor); | ||
1207 | so.RootPart.PhysActor = null; | ||
1208 | } | ||
1209 | |||
1210 | so.AbsolutePosition = attachOffset; | ||
1211 | so.RootPart.AttachedPos = attachOffset; | ||
1212 | so.IsAttachment = true; | ||
1213 | so.RootPart.SetParentLocalId(avatar.LocalId); | ||
1214 | so.AttachmentPoint = attachmentpoint; | ||
1215 | |||
1216 | avatar.AddAttachment(this); | ||
1217 | |||
1218 | if (!silent) | ||
1219 | { | ||
1220 | // Killing it here will cause the client to deselect it | ||
1221 | // It then reappears on the avatar, deselected | ||
1222 | // through the full update below | ||
1223 | // | ||
1224 | if (IsSelected) | ||
1225 | { | ||
1226 | m_scene.SendKillObject(new List<uint> { m_rootPart.LocalId }); | ||
1227 | } | ||
1228 | |||
1229 | IsSelected = false; // fudge.... | ||
1230 | ScheduleGroupForFullUpdate(); | ||
1231 | } | ||
1232 | } | ||
1233 | else | ||
1234 | { | ||
1235 | m_log.WarnFormat( | ||
1236 | "[SOG]: Tried to add attachment {0} to avatar with UUID {1} in region {2} but the avatar is not present", | ||
1237 | UUID, avatar.ControllingClient.AgentId, Scene.RegionInfo.RegionName); | ||
1238 | } | ||
1239 | } | ||
1240 | |||
1241 | public byte GetAttachmentPoint() | ||
1242 | { | ||
1243 | return m_rootPart.Shape.State; | ||
1244 | } | ||
1245 | |||
1246 | public void DetachToGround() | ||
1247 | { | ||
1248 | ScenePresence avatar = m_scene.GetScenePresence(AttachedAvatar); | ||
1249 | if (avatar == null) | ||
1250 | return; | ||
1251 | |||
1252 | avatar.RemoveAttachment(this); | ||
1253 | |||
1254 | Vector3 detachedpos = new Vector3(127f,127f,127f); | ||
1255 | if (avatar == null) | ||
1256 | return; | ||
1257 | |||
1258 | detachedpos = avatar.AbsolutePosition; | ||
1259 | RootPart.FromItemID = UUID.Zero; | ||
1260 | |||
1261 | AbsolutePosition = detachedpos; | ||
1262 | AttachedAvatar = UUID.Zero; | ||
1263 | |||
1264 | //SceneObjectPart[] parts = m_parts.GetArray(); | ||
1265 | //for (int i = 0; i < parts.Length; i++) | ||
1266 | // parts[i].AttachedAvatar = UUID.Zero; | ||
1267 | |||
1268 | m_rootPart.SetParentLocalId(0); | ||
1269 | AttachmentPoint = (byte)0; | ||
1270 | m_rootPart.ApplyPhysics(m_rootPart.GetEffectiveObjectFlags(), m_rootPart.VolumeDetectActive); | ||
1271 | HasGroupChanged = true; | ||
1272 | RootPart.Rezzed = DateTime.Now; | ||
1273 | RootPart.RemFlag(PrimFlags.TemporaryOnRez); | ||
1274 | AttachToBackup(); | ||
1275 | m_scene.EventManager.TriggerParcelPrimCountTainted(); | ||
1276 | m_rootPart.ScheduleFullUpdate(); | ||
1277 | m_rootPart.ClearUndoState(); | ||
1278 | } | ||
1279 | |||
1280 | public void DetachToInventoryPrep() | ||
1281 | { | ||
1282 | ScenePresence avatar = m_scene.GetScenePresence(AttachedAvatar); | ||
1283 | //Vector3 detachedpos = new Vector3(127f, 127f, 127f); | ||
1284 | if (avatar != null) | ||
1285 | { | ||
1286 | //detachedpos = avatar.AbsolutePosition; | ||
1287 | avatar.RemoveAttachment(this); | ||
1288 | } | ||
1289 | |||
1290 | AttachedAvatar = UUID.Zero; | ||
1291 | |||
1292 | /*SceneObjectPart[] parts = m_parts.GetArray(); | ||
1293 | for (int i = 0; i < parts.Length; i++) | ||
1294 | parts[i].AttachedAvatar = UUID.Zero;*/ | ||
1295 | |||
1296 | m_rootPart.SetParentLocalId(0); | ||
1297 | //m_rootPart.SetAttachmentPoint((byte)0); | ||
1298 | IsAttachment = false; | ||
1299 | AbsolutePosition = m_rootPart.AttachedPos; | ||
1300 | //m_rootPart.ApplyPhysics(m_rootPart.GetEffectiveObjectFlags(), m_scene.m_physicalPrim); | ||
1301 | //AttachToBackup(); | ||
1302 | //m_rootPart.ScheduleFullUpdate(); | ||
1303 | } | ||
1304 | |||
1305 | /// <summary> | ||
991 | /// | 1306 | /// |
992 | /// </summary> | 1307 | /// </summary> |
993 | /// <param name="part"></param> | 1308 | /// <param name="part"></param> |
@@ -1037,7 +1352,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
1037 | public void AddPart(SceneObjectPart part) | 1352 | public void AddPart(SceneObjectPart part) |
1038 | { | 1353 | { |
1039 | part.SetParent(this); | 1354 | part.SetParent(this); |
1040 | part.LinkNum = m_parts.Add(part.UUID, part); | 1355 | m_parts.Add(part.UUID, part); |
1356 | |||
1357 | part.LinkNum = m_parts.Count; | ||
1358 | |||
1041 | if (part.LinkNum == 2) | 1359 | if (part.LinkNum == 2) |
1042 | RootPart.LinkNum = 1; | 1360 | RootPart.LinkNum = 1; |
1043 | } | 1361 | } |
@@ -1145,6 +1463,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1145 | /// <param name="silent">If true then deletion is not broadcast to clients</param> | 1463 | /// <param name="silent">If true then deletion is not broadcast to clients</param> |
1146 | public void DeleteGroupFromScene(bool silent) | 1464 | public void DeleteGroupFromScene(bool silent) |
1147 | { | 1465 | { |
1466 | // We need to keep track of this state in case this group is still queued for backup. | ||
1467 | IsDeleted = true; | ||
1468 | |||
1469 | DetachFromBackup(); | ||
1470 | |||
1148 | SceneObjectPart[] parts = m_parts.GetArray(); | 1471 | SceneObjectPart[] parts = m_parts.GetArray(); |
1149 | for (int i = 0; i < parts.Length; i++) | 1472 | for (int i = 0; i < parts.Length; i++) |
1150 | { | 1473 | { |
@@ -1167,6 +1490,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1167 | } | 1490 | } |
1168 | }); | 1491 | }); |
1169 | } | 1492 | } |
1493 | |||
1494 | |||
1170 | } | 1495 | } |
1171 | 1496 | ||
1172 | public void AddScriptLPS(int count) | 1497 | public void AddScriptLPS(int count) |
@@ -1263,7 +1588,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1263 | 1588 | ||
1264 | public void SetOwnerId(UUID userId) | 1589 | public void SetOwnerId(UUID userId) |
1265 | { | 1590 | { |
1266 | ForEachPart(delegate(SceneObjectPart part) { part.OwnerID = userId; }); | 1591 | ForEachPart(delegate(SceneObjectPart part) |
1592 | { | ||
1593 | |||
1594 | part.OwnerID = userId; | ||
1595 | |||
1596 | }); | ||
1267 | } | 1597 | } |
1268 | 1598 | ||
1269 | public void ForEachPart(Action<SceneObjectPart> whatToDo) | 1599 | public void ForEachPart(Action<SceneObjectPart> whatToDo) |
@@ -1295,11 +1625,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
1295 | return; | 1625 | return; |
1296 | } | 1626 | } |
1297 | 1627 | ||
1628 | if ((RootPart.Flags & PrimFlags.TemporaryOnRez) != 0) | ||
1629 | return; | ||
1630 | |||
1298 | // Since this is the top of the section of call stack for backing up a particular scene object, don't let | 1631 | // Since this is the top of the section of call stack for backing up a particular scene object, don't let |
1299 | // any exception propogate upwards. | 1632 | // any exception propogate upwards. |
1300 | try | 1633 | try |
1301 | { | 1634 | { |
1302 | if (!m_scene.ShuttingDown) // if shutting down then there will be nothing to handle the return so leave till next restart | 1635 | if (!m_scene.ShuttingDown || // if shutting down then there will be nothing to handle the return so leave till next restart |
1636 | m_scene.LoginsDisabled || // We're starting up or doing maintenance, don't mess with things | ||
1637 | m_scene.LoadingPrims) // Land may not be valid yet | ||
1638 | |||
1303 | { | 1639 | { |
1304 | ILandObject parcel = m_scene.LandChannel.GetLandObject( | 1640 | ILandObject parcel = m_scene.LandChannel.GetLandObject( |
1305 | m_rootPart.GroupPosition.X, m_rootPart.GroupPosition.Y); | 1641 | m_rootPart.GroupPosition.X, m_rootPart.GroupPosition.Y); |
@@ -1326,6 +1662,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1326 | } | 1662 | } |
1327 | } | 1663 | } |
1328 | } | 1664 | } |
1665 | |||
1329 | } | 1666 | } |
1330 | 1667 | ||
1331 | if (m_scene.UseBackup && HasGroupChanged) | 1668 | if (m_scene.UseBackup && HasGroupChanged) |
@@ -1333,6 +1670,20 @@ namespace OpenSim.Region.Framework.Scenes | |||
1333 | // don't backup while it's selected or you're asking for changes mid stream. | 1670 | // don't backup while it's selected or you're asking for changes mid stream. |
1334 | if (isTimeToPersist() || forcedBackup) | 1671 | if (isTimeToPersist() || forcedBackup) |
1335 | { | 1672 | { |
1673 | if (m_rootPart.PhysActor != null && | ||
1674 | (!m_rootPart.PhysActor.IsPhysical)) | ||
1675 | { | ||
1676 | // Possible ghost prim | ||
1677 | if (m_rootPart.PhysActor.Position != m_rootPart.GroupPosition) | ||
1678 | { | ||
1679 | foreach (SceneObjectPart part in m_parts.GetArray()) | ||
1680 | { | ||
1681 | // Re-set physics actor positions and | ||
1682 | // orientations | ||
1683 | part.GroupPosition = m_rootPart.GroupPosition; | ||
1684 | } | ||
1685 | } | ||
1686 | } | ||
1336 | // m_log.DebugFormat( | 1687 | // m_log.DebugFormat( |
1337 | // "[SCENE]: Storing {0}, {1} in {2}", | 1688 | // "[SCENE]: Storing {0}, {1} in {2}", |
1338 | // Name, UUID, m_scene.RegionInfo.RegionName); | 1689 | // Name, UUID, m_scene.RegionInfo.RegionName); |
@@ -1416,7 +1767,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1416 | // This is only necessary when userExposed is false! | 1767 | // This is only necessary when userExposed is false! |
1417 | 1768 | ||
1418 | bool previousAttachmentStatus = dupe.IsAttachment; | 1769 | bool previousAttachmentStatus = dupe.IsAttachment; |
1419 | 1770 | ||
1420 | if (!userExposed) | 1771 | if (!userExposed) |
1421 | dupe.IsAttachment = true; | 1772 | dupe.IsAttachment = true; |
1422 | 1773 | ||
@@ -1434,11 +1785,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1434 | dupe.m_rootPart.TrimPermissions(); | 1785 | dupe.m_rootPart.TrimPermissions(); |
1435 | 1786 | ||
1436 | List<SceneObjectPart> partList = new List<SceneObjectPart>(m_parts.GetArray()); | 1787 | List<SceneObjectPart> partList = new List<SceneObjectPart>(m_parts.GetArray()); |
1437 | 1788 | ||
1438 | partList.Sort(delegate(SceneObjectPart p1, SceneObjectPart p2) | 1789 | partList.Sort(delegate(SceneObjectPart p1, SceneObjectPart p2) |
1439 | { | 1790 | { |
1440 | return p1.LinkNum.CompareTo(p2.LinkNum); | 1791 | return p1.LinkNum.CompareTo(p2.LinkNum); |
1441 | } | 1792 | } |
1442 | ); | 1793 | ); |
1443 | 1794 | ||
1444 | foreach (SceneObjectPart part in partList) | 1795 | foreach (SceneObjectPart part in partList) |
@@ -1458,7 +1809,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1458 | if (part.PhysActor != null && userExposed) | 1809 | if (part.PhysActor != null && userExposed) |
1459 | { | 1810 | { |
1460 | PrimitiveBaseShape pbs = newPart.Shape; | 1811 | PrimitiveBaseShape pbs = newPart.Shape; |
1461 | 1812 | ||
1462 | newPart.PhysActor | 1813 | newPart.PhysActor |
1463 | = m_scene.PhysicsScene.AddPrimShape( | 1814 | = m_scene.PhysicsScene.AddPrimShape( |
1464 | string.Format("{0}/{1}", newPart.Name, newPart.UUID), | 1815 | string.Format("{0}/{1}", newPart.Name, newPart.UUID), |
@@ -1468,11 +1819,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1468 | newPart.RotationOffset, | 1819 | newPart.RotationOffset, |
1469 | part.PhysActor.IsPhysical, | 1820 | part.PhysActor.IsPhysical, |
1470 | newPart.LocalId); | 1821 | newPart.LocalId); |
1471 | 1822 | ||
1472 | newPart.DoPhysicsPropertyUpdate(part.PhysActor.IsPhysical, true); | 1823 | newPart.DoPhysicsPropertyUpdate(part.PhysActor.IsPhysical, true); |
1473 | } | 1824 | } |
1474 | } | 1825 | } |
1475 | 1826 | ||
1476 | if (userExposed) | 1827 | if (userExposed) |
1477 | { | 1828 | { |
1478 | dupe.UpdateParentIDs(); | 1829 | dupe.UpdateParentIDs(); |
@@ -1587,6 +1938,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1587 | return Vector3.Zero; | 1938 | return Vector3.Zero; |
1588 | } | 1939 | } |
1589 | 1940 | ||
1941 | // This is used by both Double-Click Auto-Pilot and llMoveToTarget() in an attached object | ||
1590 | public void moveToTarget(Vector3 target, float tau) | 1942 | public void moveToTarget(Vector3 target, float tau) |
1591 | { | 1943 | { |
1592 | if (IsAttachment) | 1944 | if (IsAttachment) |
@@ -1614,10 +1966,44 @@ namespace OpenSim.Region.Framework.Scenes | |||
1614 | RootPart.PhysActor.PIDActive = false; | 1966 | RootPart.PhysActor.PIDActive = false; |
1615 | } | 1967 | } |
1616 | 1968 | ||
1969 | public void rotLookAt(Quaternion target, float strength, float damping) | ||
1970 | { | ||
1971 | SceneObjectPart rootpart = m_rootPart; | ||
1972 | if (rootpart != null) | ||
1973 | { | ||
1974 | if (IsAttachment) | ||
1975 | { | ||
1976 | /* | ||
1977 | ScenePresence avatar = m_scene.GetScenePresence(rootpart.AttachedAvatar); | ||
1978 | if (avatar != null) | ||
1979 | { | ||
1980 | Rotate the Av? | ||
1981 | } */ | ||
1982 | } | ||
1983 | else | ||
1984 | { | ||
1985 | if (rootpart.PhysActor != null) | ||
1986 | { // APID must be implemented in your physics system for this to function. | ||
1987 | rootpart.PhysActor.APIDTarget = new Quaternion(target.X, target.Y, target.Z, target.W); | ||
1988 | rootpart.PhysActor.APIDStrength = strength; | ||
1989 | rootpart.PhysActor.APIDDamping = damping; | ||
1990 | rootpart.PhysActor.APIDActive = true; | ||
1991 | } | ||
1992 | } | ||
1993 | } | ||
1994 | } | ||
1995 | |||
1617 | public void stopLookAt() | 1996 | public void stopLookAt() |
1618 | { | 1997 | { |
1619 | if (RootPart.PhysActor != null) | 1998 | SceneObjectPart rootpart = m_rootPart; |
1620 | RootPart.PhysActor.APIDActive = false; | 1999 | if (rootpart != null) |
2000 | { | ||
2001 | if (rootpart.PhysActor != null) | ||
2002 | { // APID must be implemented in your physics system for this to function. | ||
2003 | rootpart.PhysActor.APIDActive = false; | ||
2004 | } | ||
2005 | } | ||
2006 | |||
1621 | } | 2007 | } |
1622 | 2008 | ||
1623 | /// <summary> | 2009 | /// <summary> |
@@ -1675,6 +2061,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1675 | public SceneObjectPart CopyPart(SceneObjectPart part, UUID cAgentID, UUID cGroupID, bool userExposed) | 2061 | public SceneObjectPart CopyPart(SceneObjectPart part, UUID cAgentID, UUID cGroupID, bool userExposed) |
1676 | { | 2062 | { |
1677 | SceneObjectPart newPart = part.Copy(m_scene.AllocateLocalId(), OwnerID, GroupID, m_parts.Count, userExposed); | 2063 | SceneObjectPart newPart = part.Copy(m_scene.AllocateLocalId(), OwnerID, GroupID, m_parts.Count, userExposed); |
2064 | newPart.SetParent(this); | ||
2065 | |||
1678 | AddPart(newPart); | 2066 | AddPart(newPart); |
1679 | 2067 | ||
1680 | SetPartAsNonRoot(newPart); | 2068 | SetPartAsNonRoot(newPart); |
@@ -1803,11 +2191,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1803 | /// Immediately send a full update for this scene object. | 2191 | /// Immediately send a full update for this scene object. |
1804 | /// </summary> | 2192 | /// </summary> |
1805 | public void SendGroupFullUpdate() | 2193 | public void SendGroupFullUpdate() |
1806 | { | 2194 | { |
1807 | if (IsDeleted) | 2195 | if (IsDeleted) |
1808 | return; | 2196 | return; |
1809 | 2197 | ||
1810 | // m_log.DebugFormat("[SOG]: Sending immediate full group update for {0} {1}", Name, UUID); | 2198 | // m_log.DebugFormat("[SOG]: Sending immediate full group update for {0} {1}", Name, UUID); |
1811 | 2199 | ||
1812 | RootPart.SendFullUpdateToAllClients(); | 2200 | RootPart.SendFullUpdateToAllClients(); |
1813 | 2201 | ||
@@ -2008,7 +2396,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2008 | objectGroup.IsDeleted = true; | 2396 | objectGroup.IsDeleted = true; |
2009 | 2397 | ||
2010 | objectGroup.m_parts.Clear(); | 2398 | objectGroup.m_parts.Clear(); |
2011 | 2399 | ||
2012 | // Can't do this yet since backup still makes use of the root part without any synchronization | 2400 | // Can't do this yet since backup still makes use of the root part without any synchronization |
2013 | // objectGroup.m_rootPart = null; | 2401 | // objectGroup.m_rootPart = null; |
2014 | 2402 | ||
@@ -2142,6 +2530,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2142 | /// <param name="objectGroup"></param> | 2530 | /// <param name="objectGroup"></param> |
2143 | public virtual void DetachFromBackup() | 2531 | public virtual void DetachFromBackup() |
2144 | { | 2532 | { |
2533 | m_scene.SceneGraph.FireDetachFromBackup(this); | ||
2145 | if (m_isBackedUp && Scene != null) | 2534 | if (m_isBackedUp && Scene != null) |
2146 | m_scene.EventManager.OnBackup -= ProcessBackup; | 2535 | m_scene.EventManager.OnBackup -= ProcessBackup; |
2147 | 2536 | ||
@@ -2160,7 +2549,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2160 | 2549 | ||
2161 | axPos *= parentRot; | 2550 | axPos *= parentRot; |
2162 | part.OffsetPosition = axPos; | 2551 | part.OffsetPosition = axPos; |
2163 | part.GroupPosition = oldGroupPosition + part.OffsetPosition; | 2552 | Vector3 newPos = oldGroupPosition + part.OffsetPosition; |
2553 | part.GroupPosition = newPos; | ||
2164 | part.OffsetPosition = Vector3.Zero; | 2554 | part.OffsetPosition = Vector3.Zero; |
2165 | part.RotationOffset = worldRot; | 2555 | part.RotationOffset = worldRot; |
2166 | 2556 | ||
@@ -2171,7 +2561,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2171 | 2561 | ||
2172 | part.LinkNum = linkNum; | 2562 | part.LinkNum = linkNum; |
2173 | 2563 | ||
2174 | part.OffsetPosition = part.GroupPosition - AbsolutePosition; | 2564 | part.OffsetPosition = newPos - AbsolutePosition; |
2175 | 2565 | ||
2176 | Quaternion rootRotation = m_rootPart.RotationOffset; | 2566 | Quaternion rootRotation = m_rootPart.RotationOffset; |
2177 | 2567 | ||
@@ -2181,7 +2571,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2181 | 2571 | ||
2182 | parentRot = m_rootPart.RotationOffset; | 2572 | parentRot = m_rootPart.RotationOffset; |
2183 | oldRot = part.RotationOffset; | 2573 | oldRot = part.RotationOffset; |
2184 | Quaternion newRot = Quaternion.Inverse(parentRot) * oldRot; | 2574 | Quaternion newRot = Quaternion.Inverse(parentRot) * worldRot; |
2185 | part.RotationOffset = newRot; | 2575 | part.RotationOffset = newRot; |
2186 | } | 2576 | } |
2187 | 2577 | ||
@@ -2428,8 +2818,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
2428 | } | 2818 | } |
2429 | } | 2819 | } |
2430 | 2820 | ||
2821 | RootPart.UpdatePrimFlags(UsePhysics, SetTemporary, SetPhantom, SetVolumeDetect); | ||
2431 | for (int i = 0; i < parts.Length; i++) | 2822 | for (int i = 0; i < parts.Length; i++) |
2432 | parts[i].UpdatePrimFlags(UsePhysics, SetTemporary, SetPhantom, SetVolumeDetect); | 2823 | { |
2824 | if (parts[i] != RootPart) | ||
2825 | parts[i].UpdatePrimFlags(UsePhysics, SetTemporary, SetPhantom, SetVolumeDetect); | ||
2826 | } | ||
2433 | } | 2827 | } |
2434 | } | 2828 | } |
2435 | 2829 | ||
@@ -2442,6 +2836,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
2442 | } | 2836 | } |
2443 | } | 2837 | } |
2444 | 2838 | ||
2839 | |||
2840 | |||
2841 | /// <summary> | ||
2842 | /// Gets the number of parts | ||
2843 | /// </summary> | ||
2844 | /// <returns></returns> | ||
2845 | public int GetPartCount() | ||
2846 | { | ||
2847 | return Parts.Count(); | ||
2848 | } | ||
2849 | |||
2445 | /// <summary> | 2850 | /// <summary> |
2446 | /// Update the texture entry for this part | 2851 | /// Update the texture entry for this part |
2447 | /// </summary> | 2852 | /// </summary> |
@@ -2503,7 +2908,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2503 | { | 2908 | { |
2504 | // m_log.DebugFormat( | 2909 | // m_log.DebugFormat( |
2505 | // "[SCENE OBJECT GROUP]: Group resizing {0} {1} from {2} to {3}", Name, LocalId, RootPart.Scale, scale); | 2910 | // "[SCENE OBJECT GROUP]: Group resizing {0} {1} from {2} to {3}", Name, LocalId, RootPart.Scale, scale); |
2506 | |||
2507 | RootPart.StoreUndoState(true); | 2911 | RootPart.StoreUndoState(true); |
2508 | 2912 | ||
2509 | scale.X = Math.Min(scale.X, Scene.m_maxNonphys); | 2913 | scale.X = Math.Min(scale.X, Scene.m_maxNonphys); |
@@ -2604,7 +3008,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
2604 | prevScale.X *= x; | 3008 | prevScale.X *= x; |
2605 | prevScale.Y *= y; | 3009 | prevScale.Y *= y; |
2606 | prevScale.Z *= z; | 3010 | prevScale.Z *= z; |
2607 | |||
2608 | // RootPart.IgnoreUndoUpdate = true; | 3011 | // RootPart.IgnoreUndoUpdate = true; |
2609 | RootPart.Resize(prevScale); | 3012 | RootPart.Resize(prevScale); |
2610 | // RootPart.IgnoreUndoUpdate = false; | 3013 | // RootPart.IgnoreUndoUpdate = false; |
@@ -2635,7 +3038,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
2635 | } | 3038 | } |
2636 | 3039 | ||
2637 | // obPart.IgnoreUndoUpdate = false; | 3040 | // obPart.IgnoreUndoUpdate = false; |
2638 | // obPart.StoreUndoState(); | 3041 | HasGroupChanged = true; |
3042 | m_rootPart.TriggerScriptChangedEvent(Changed.SCALE); | ||
3043 | ScheduleGroupForTerseUpdate(); | ||
2639 | } | 3044 | } |
2640 | 3045 | ||
2641 | // m_log.DebugFormat( | 3046 | // m_log.DebugFormat( |
@@ -2695,9 +3100,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
2695 | { | 3100 | { |
2696 | SceneObjectPart part = GetChildPart(localID); | 3101 | SceneObjectPart part = GetChildPart(localID); |
2697 | 3102 | ||
2698 | // SceneObjectPart[] parts = m_parts.GetArray(); | 3103 | SceneObjectPart[] parts = m_parts.GetArray(); |
2699 | // for (int i = 0; i < parts.Length; i++) | 3104 | for (int i = 0; i < parts.Length; i++) |
2700 | // parts[i].StoreUndoState(); | 3105 | parts[i].StoreUndoState(); |
2701 | 3106 | ||
2702 | if (part != null) | 3107 | if (part != null) |
2703 | { | 3108 | { |
@@ -2753,10 +3158,27 @@ namespace OpenSim.Region.Framework.Scenes | |||
2753 | obPart.OffsetPosition = obPart.OffsetPosition + diff; | 3158 | obPart.OffsetPosition = obPart.OffsetPosition + diff; |
2754 | } | 3159 | } |
2755 | 3160 | ||
2756 | AbsolutePosition = newPos; | 3161 | //We have to set undoing here because otherwise an undo state will be saved |
3162 | if (!m_rootPart.Undoing) | ||
3163 | { | ||
3164 | m_rootPart.Undoing = true; | ||
3165 | AbsolutePosition = newPos; | ||
3166 | m_rootPart.Undoing = false; | ||
3167 | } | ||
3168 | else | ||
3169 | { | ||
3170 | AbsolutePosition = newPos; | ||
3171 | } | ||
2757 | 3172 | ||
2758 | HasGroupChanged = true; | 3173 | HasGroupChanged = true; |
2759 | ScheduleGroupForTerseUpdate(); | 3174 | if (m_rootPart.Undoing) |
3175 | { | ||
3176 | ScheduleGroupForFullUpdate(); | ||
3177 | } | ||
3178 | else | ||
3179 | { | ||
3180 | ScheduleGroupForTerseUpdate(); | ||
3181 | } | ||
2760 | } | 3182 | } |
2761 | 3183 | ||
2762 | #endregion | 3184 | #endregion |
@@ -2833,10 +3255,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2833 | public void UpdateSingleRotation(Quaternion rot, uint localID) | 3255 | public void UpdateSingleRotation(Quaternion rot, uint localID) |
2834 | { | 3256 | { |
2835 | SceneObjectPart part = GetChildPart(localID); | 3257 | SceneObjectPart part = GetChildPart(localID); |
2836 | |||
2837 | SceneObjectPart[] parts = m_parts.GetArray(); | 3258 | SceneObjectPart[] parts = m_parts.GetArray(); |
2838 | for (int i = 0; i < parts.Length; i++) | ||
2839 | parts[i].StoreUndoState(); | ||
2840 | 3259 | ||
2841 | if (part != null) | 3260 | if (part != null) |
2842 | { | 3261 | { |
@@ -2874,7 +3293,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
2874 | if (part.UUID == m_rootPart.UUID) | 3293 | if (part.UUID == m_rootPart.UUID) |
2875 | { | 3294 | { |
2876 | UpdateRootRotation(rot); | 3295 | UpdateRootRotation(rot); |
2877 | AbsolutePosition = pos; | 3296 | if (!m_rootPart.Undoing) |
3297 | { | ||
3298 | m_rootPart.Undoing = true; | ||
3299 | AbsolutePosition = pos; | ||
3300 | m_rootPart.Undoing = false; | ||
3301 | } | ||
3302 | else | ||
3303 | { | ||
3304 | AbsolutePosition = pos; | ||
3305 | } | ||
2878 | } | 3306 | } |
2879 | else | 3307 | else |
2880 | { | 3308 | { |
@@ -2898,9 +3326,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
2898 | 3326 | ||
2899 | Quaternion axRot = rot; | 3327 | Quaternion axRot = rot; |
2900 | Quaternion oldParentRot = m_rootPart.RotationOffset; | 3328 | Quaternion oldParentRot = m_rootPart.RotationOffset; |
2901 | |||
2902 | m_rootPart.StoreUndoState(); | 3329 | m_rootPart.StoreUndoState(); |
2903 | m_rootPart.UpdateRotation(rot); | 3330 | |
3331 | //Don't use UpdateRotation because it schedules an update prematurely | ||
3332 | m_rootPart.RotationOffset = rot; | ||
2904 | if (m_rootPart.PhysActor != null) | 3333 | if (m_rootPart.PhysActor != null) |
2905 | { | 3334 | { |
2906 | m_rootPart.PhysActor.Orientation = m_rootPart.RotationOffset; | 3335 | m_rootPart.PhysActor.Orientation = m_rootPart.RotationOffset; |
@@ -2914,15 +3343,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
2914 | if (prim.UUID != m_rootPart.UUID) | 3343 | if (prim.UUID != m_rootPart.UUID) |
2915 | { | 3344 | { |
2916 | prim.IgnoreUndoUpdate = true; | 3345 | prim.IgnoreUndoUpdate = true; |
3346 | |||
3347 | Quaternion NewRot = oldParentRot * prim.RotationOffset; | ||
3348 | NewRot = Quaternion.Inverse(axRot) * NewRot; | ||
3349 | prim.RotationOffset = NewRot; | ||
3350 | |||
2917 | Vector3 axPos = prim.OffsetPosition; | 3351 | Vector3 axPos = prim.OffsetPosition; |
3352 | |||
2918 | axPos *= oldParentRot; | 3353 | axPos *= oldParentRot; |
2919 | axPos *= Quaternion.Inverse(axRot); | 3354 | axPos *= Quaternion.Inverse(axRot); |
2920 | prim.OffsetPosition = axPos; | 3355 | prim.OffsetPosition = axPos; |
2921 | Quaternion primsRot = prim.RotationOffset; | 3356 | |
2922 | Quaternion newRot = oldParentRot * primsRot; | ||
2923 | newRot = Quaternion.Inverse(axRot) * newRot; | ||
2924 | prim.RotationOffset = newRot; | ||
2925 | prim.ScheduleTerseUpdate(); | ||
2926 | prim.IgnoreUndoUpdate = false; | 3357 | prim.IgnoreUndoUpdate = false; |
2927 | } | 3358 | } |
2928 | } | 3359 | } |
@@ -2936,8 +3367,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2936 | //// childpart.StoreUndoState(); | 3367 | //// childpart.StoreUndoState(); |
2937 | // } | 3368 | // } |
2938 | // } | 3369 | // } |
2939 | 3370 | HasGroupChanged = true; | |
2940 | m_rootPart.ScheduleTerseUpdate(); | 3371 | ScheduleGroupForFullUpdate(); |
2941 | 3372 | ||
2942 | // m_log.DebugFormat( | 3373 | // m_log.DebugFormat( |
2943 | // "[SCENE OBJECT GROUP]: Updated root rotation of {0} {1} to {2}", | 3374 | // "[SCENE OBJECT GROUP]: Updated root rotation of {0} {1} to {2}", |
@@ -3165,7 +3596,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
3165 | public float GetMass() | 3596 | public float GetMass() |
3166 | { | 3597 | { |
3167 | float retmass = 0f; | 3598 | float retmass = 0f; |
3168 | |||
3169 | SceneObjectPart[] parts = m_parts.GetArray(); | 3599 | SceneObjectPart[] parts = m_parts.GetArray(); |
3170 | for (int i = 0; i < parts.Length; i++) | 3600 | for (int i = 0; i < parts.Length; i++) |
3171 | retmass += parts[i].GetMass(); | 3601 | retmass += parts[i].GetMass(); |
@@ -3261,6 +3691,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
3261 | SetFromItemID(uuid); | 3691 | SetFromItemID(uuid); |
3262 | } | 3692 | } |
3263 | 3693 | ||
3694 | public void ResetOwnerChangeFlag() | ||
3695 | { | ||
3696 | ForEachPart(delegate(SceneObjectPart part) | ||
3697 | { | ||
3698 | part.ResetOwnerChangeFlag(); | ||
3699 | }); | ||
3700 | } | ||
3701 | |||
3264 | #endregion | 3702 | #endregion |
3265 | } | 3703 | } |
3266 | } | 3704 | } |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index b29ecc6..fd70bfd 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. |
@@ -184,6 +185,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
184 | 185 | ||
185 | public UUID FromFolderID; | 186 | public UUID FromFolderID; |
186 | 187 | ||
188 | // The following two are to hold the attachment data | ||
189 | // while an object is inworld | ||
190 | [XmlIgnore] | ||
191 | public byte AttachPoint = 0; | ||
192 | |||
193 | [XmlIgnore] | ||
194 | public Vector3 AttachOffset = Vector3.Zero; | ||
195 | |||
196 | [XmlIgnore] | ||
187 | public int STATUS_ROTATE_X; | 197 | public int STATUS_ROTATE_X; |
188 | 198 | ||
189 | public int STATUS_ROTATE_Y; | 199 | public int STATUS_ROTATE_Y; |
@@ -210,8 +220,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
210 | 220 | ||
211 | public Vector3 RotationAxis = Vector3.One; | 221 | public Vector3 RotationAxis = Vector3.One; |
212 | 222 | ||
213 | public bool VolumeDetectActive; // XmlIgnore set to avoid problems with persistance until I come to care for this | 223 | public bool VolumeDetectActive; |
214 | // Certainly this must be a persistant setting finally | ||
215 | 224 | ||
216 | public bool IsWaitingForFirstSpinUpdatePacket; | 225 | public bool IsWaitingForFirstSpinUpdatePacket; |
217 | 226 | ||
@@ -252,6 +261,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
252 | private Quaternion m_sitTargetOrientation = Quaternion.Identity; | 261 | private Quaternion m_sitTargetOrientation = Quaternion.Identity; |
253 | private Vector3 m_sitTargetPosition; | 262 | private Vector3 m_sitTargetPosition; |
254 | private string m_sitAnimation = "SIT"; | 263 | private string m_sitAnimation = "SIT"; |
264 | private bool m_occupied; // KF if any av is sitting on this prim | ||
255 | private string m_text = String.Empty; | 265 | private string m_text = String.Empty; |
256 | private string m_touchName = String.Empty; | 266 | private string m_touchName = String.Empty; |
257 | private readonly Stack<UndoState> m_undo = new Stack<UndoState>(5); | 267 | private readonly Stack<UndoState> m_undo = new Stack<UndoState>(5); |
@@ -284,6 +294,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
284 | protected Vector3 m_lastAcceleration; | 294 | protected Vector3 m_lastAcceleration; |
285 | protected Vector3 m_lastAngularVelocity; | 295 | protected Vector3 m_lastAngularVelocity; |
286 | protected int m_lastTerseSent; | 296 | protected int m_lastTerseSent; |
297 | protected float m_buoyancy = 0.0f; | ||
287 | 298 | ||
288 | /// <summary> | 299 | /// <summary> |
289 | /// Stores media texture data | 300 | /// Stores media texture data |
@@ -339,7 +350,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
339 | UUID ownerID, PrimitiveBaseShape shape, Vector3 groupPosition, | 350 | UUID ownerID, PrimitiveBaseShape shape, Vector3 groupPosition, |
340 | Quaternion rotationOffset, Vector3 offsetPosition) : this() | 351 | Quaternion rotationOffset, Vector3 offsetPosition) : this() |
341 | { | 352 | { |
342 | m_name = "Primitive"; | 353 | m_name = "Object"; |
343 | 354 | ||
344 | CreationDate = (int)Utils.DateTimeToUnixTime(Rezzed); | 355 | CreationDate = (int)Utils.DateTimeToUnixTime(Rezzed); |
345 | LastOwnerID = CreatorID = OwnerID = ownerID; | 356 | LastOwnerID = CreatorID = OwnerID = ownerID; |
@@ -379,7 +390,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
379 | private uint _ownerMask = (uint)PermissionMask.All; | 390 | private uint _ownerMask = (uint)PermissionMask.All; |
380 | private uint _groupMask = (uint)PermissionMask.None; | 391 | private uint _groupMask = (uint)PermissionMask.None; |
381 | private uint _everyoneMask = (uint)PermissionMask.None; | 392 | private uint _everyoneMask = (uint)PermissionMask.None; |
382 | private uint _nextOwnerMask = (uint)PermissionMask.All; | 393 | private uint _nextOwnerMask = (uint)(PermissionMask.Move | PermissionMask.Modify | PermissionMask.Transfer); |
383 | private PrimFlags _flags = PrimFlags.None; | 394 | private PrimFlags _flags = PrimFlags.None; |
384 | private DateTime m_expires; | 395 | private DateTime m_expires; |
385 | private DateTime m_rezzed; | 396 | private DateTime m_rezzed; |
@@ -473,12 +484,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
473 | } | 484 | } |
474 | 485 | ||
475 | /// <value> | 486 | /// <value> |
476 | /// Access should be via Inventory directly - this property temporarily remains for xml serialization purposes | 487 | /// Get the inventory list |
477 | /// </value> | 488 | /// </value> |
478 | public TaskInventoryDictionary TaskInventory | 489 | public TaskInventoryDictionary TaskInventory |
479 | { | 490 | { |
480 | get { return m_inventory.Items; } | 491 | get { |
481 | set { m_inventory.Items = value; } | 492 | return m_inventory.Items; |
493 | } | ||
494 | set { | ||
495 | m_inventory.Items = value; | ||
496 | } | ||
482 | } | 497 | } |
483 | 498 | ||
484 | /// <summary> | 499 | /// <summary> |
@@ -623,14 +638,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
623 | set { m_LoopSoundSlavePrims = value; } | 638 | set { m_LoopSoundSlavePrims = value; } |
624 | } | 639 | } |
625 | 640 | ||
626 | |||
627 | public Byte[] TextureAnimation | 641 | public Byte[] TextureAnimation |
628 | { | 642 | { |
629 | get { return m_TextureAnimation; } | 643 | get { return m_TextureAnimation; } |
630 | set { m_TextureAnimation = value; } | 644 | set { m_TextureAnimation = value; } |
631 | } | 645 | } |
632 | 646 | ||
633 | |||
634 | public Byte[] ParticleSystem | 647 | public Byte[] ParticleSystem |
635 | { | 648 | { |
636 | get { return m_particleSystem; } | 649 | get { return m_particleSystem; } |
@@ -667,9 +680,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
667 | { | 680 | { |
668 | // If this is a linkset, we don't want the physics engine mucking up our group position here. | 681 | // If this is a linkset, we don't want the physics engine mucking up our group position here. |
669 | PhysicsActor actor = PhysActor; | 682 | PhysicsActor actor = PhysActor; |
670 | if (actor != null && ParentID == 0) | 683 | if (ParentID == 0) |
671 | { | 684 | { |
672 | m_groupPosition = actor.Position; | 685 | if (actor != null) |
686 | m_groupPosition = actor.Position; | ||
687 | return m_groupPosition; | ||
673 | } | 688 | } |
674 | 689 | ||
675 | if (ParentGroup.IsAttachment) | 690 | if (ParentGroup.IsAttachment) |
@@ -679,12 +694,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
679 | return sp.AbsolutePosition; | 694 | return sp.AbsolutePosition; |
680 | } | 695 | } |
681 | 696 | ||
697 | // use root prim's group position. Physics may have updated it | ||
698 | if (ParentGroup.RootPart != this) | ||
699 | m_groupPosition = ParentGroup.RootPart.GroupPosition; | ||
682 | return m_groupPosition; | 700 | return m_groupPosition; |
683 | } | 701 | } |
684 | set | 702 | set |
685 | { | 703 | { |
686 | m_groupPosition = value; | 704 | m_groupPosition = value; |
687 | |||
688 | PhysicsActor actor = PhysActor; | 705 | PhysicsActor actor = PhysActor; |
689 | if (actor != null) | 706 | if (actor != null) |
690 | { | 707 | { |
@@ -710,16 +727,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
710 | m_log.Error("[SCENEOBJECTPART]: GROUP POSITION. " + e.Message); | 727 | m_log.Error("[SCENEOBJECTPART]: GROUP POSITION. " + e.Message); |
711 | } | 728 | } |
712 | } | 729 | } |
713 | |||
714 | // TODO if we decide to do sitting in a more SL compatible way (multiple avatars per prim), this has to be fixed, too | ||
715 | if (SitTargetAvatar != UUID.Zero) | ||
716 | { | ||
717 | ScenePresence avatar; | ||
718 | if (ParentGroup.Scene.TryGetScenePresence(SitTargetAvatar, out avatar)) | ||
719 | { | ||
720 | avatar.ParentPosition = GetWorldPosition(); | ||
721 | } | ||
722 | } | ||
723 | } | 730 | } |
724 | } | 731 | } |
725 | 732 | ||
@@ -728,7 +735,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
728 | get { return m_offsetPosition; } | 735 | get { return m_offsetPosition; } |
729 | set | 736 | set |
730 | { | 737 | { |
731 | // StoreUndoState(); | 738 | Vector3 oldpos = m_offsetPosition; |
732 | m_offsetPosition = value; | 739 | m_offsetPosition = value; |
733 | 740 | ||
734 | if (ParentGroup != null && !ParentGroup.IsDeleted) | 741 | if (ParentGroup != null && !ParentGroup.IsDeleted) |
@@ -743,7 +750,22 @@ namespace OpenSim.Region.Framework.Scenes | |||
743 | if (ParentGroup.Scene != null) | 750 | if (ParentGroup.Scene != null) |
744 | ParentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(actor); | 751 | ParentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(actor); |
745 | } | 752 | } |
753 | |||
754 | if (!m_parentGroup.m_dupeInProgress) | ||
755 | { | ||
756 | List<ScenePresence> avs = ParentGroup.GetLinkedAvatars(); | ||
757 | foreach (ScenePresence av in avs) | ||
758 | { | ||
759 | if (av.ParentID == m_localId) | ||
760 | { | ||
761 | Vector3 offset = (m_offsetPosition - oldpos); | ||
762 | av.AbsolutePosition += offset; | ||
763 | av.SendAvatarDataToAllAgents(); | ||
764 | } | ||
765 | } | ||
766 | } | ||
746 | } | 767 | } |
768 | TriggerScriptChangedEvent(Changed.POSITION); | ||
747 | } | 769 | } |
748 | } | 770 | } |
749 | 771 | ||
@@ -892,7 +914,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
892 | /// <summary></summary> | 914 | /// <summary></summary> |
893 | public Vector3 Acceleration | 915 | public Vector3 Acceleration |
894 | { | 916 | { |
895 | get { return m_acceleration; } | 917 | get |
918 | { | ||
919 | PhysicsActor actor = PhysActor; | ||
920 | if (actor != null) | ||
921 | { | ||
922 | m_acceleration = actor.Acceleration; | ||
923 | } | ||
924 | return m_acceleration; | ||
925 | } | ||
926 | |||
896 | set { m_acceleration = value; } | 927 | set { m_acceleration = value; } |
897 | } | 928 | } |
898 | 929 | ||
@@ -1043,10 +1074,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1043 | { | 1074 | { |
1044 | get | 1075 | get |
1045 | { | 1076 | { |
1046 | if (ParentGroup.IsAttachment) | 1077 | return GroupPosition + (m_offsetPosition * ParentGroup.RootPart.RotationOffset); |
1047 | return GroupPosition; | ||
1048 | |||
1049 | return m_offsetPosition + m_groupPosition; | ||
1050 | } | 1078 | } |
1051 | } | 1079 | } |
1052 | 1080 | ||
@@ -1216,6 +1244,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
1216 | _flags = value; | 1244 | _flags = value; |
1217 | } | 1245 | } |
1218 | } | 1246 | } |
1247 | |||
1248 | [XmlIgnore] | ||
1249 | public bool IsOccupied // KF If an av is sittingon this prim | ||
1250 | { | ||
1251 | get { return m_occupied; } | ||
1252 | set { m_occupied = value; } | ||
1253 | } | ||
1219 | 1254 | ||
1220 | /// <summary> | 1255 | /// <summary> |
1221 | /// ID of the avatar that is sat on us. If there is no such avatar then is UUID.Zero | 1256 | /// ID of the avatar that is sat on us. If there is no such avatar then is UUID.Zero |
@@ -1275,6 +1310,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
1275 | set { m_collisionSoundVolume = value; } | 1310 | set { m_collisionSoundVolume = value; } |
1276 | } | 1311 | } |
1277 | 1312 | ||
1313 | public float Buoyancy | ||
1314 | { | ||
1315 | get { return m_buoyancy; } | ||
1316 | set | ||
1317 | { | ||
1318 | m_buoyancy = value; | ||
1319 | if (PhysActor != null) | ||
1320 | { | ||
1321 | PhysActor.Buoyancy = value; | ||
1322 | } | ||
1323 | } | ||
1324 | } | ||
1325 | |||
1278 | #endregion Public Properties with only Get | 1326 | #endregion Public Properties with only Get |
1279 | 1327 | ||
1280 | private uint ApplyMask(uint val, bool set, uint mask) | 1328 | private uint ApplyMask(uint val, bool set, uint mask) |
@@ -1596,6 +1644,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1596 | 1644 | ||
1597 | // Move afterwards ResetIDs as it clears the localID | 1645 | // Move afterwards ResetIDs as it clears the localID |
1598 | dupe.LocalId = localID; | 1646 | dupe.LocalId = localID; |
1647 | if(dupe.PhysActor != null) | ||
1648 | dupe.PhysActor.LocalID = localID; | ||
1649 | |||
1599 | // This may be wrong... it might have to be applied in SceneObjectGroup to the object that's being duplicated. | 1650 | // This may be wrong... it might have to be applied in SceneObjectGroup to the object that's being duplicated. |
1600 | dupe.LastOwnerID = OwnerID; | 1651 | dupe.LastOwnerID = OwnerID; |
1601 | 1652 | ||
@@ -1957,19 +2008,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
1957 | public Vector3 GetWorldPosition() | 2008 | public Vector3 GetWorldPosition() |
1958 | { | 2009 | { |
1959 | Quaternion parentRot = ParentGroup.RootPart.RotationOffset; | 2010 | Quaternion parentRot = ParentGroup.RootPart.RotationOffset; |
1960 | |||
1961 | Vector3 axPos = OffsetPosition; | 2011 | Vector3 axPos = OffsetPosition; |
1962 | |||
1963 | axPos *= parentRot; | 2012 | axPos *= parentRot; |
1964 | Vector3 translationOffsetPosition = axPos; | 2013 | Vector3 translationOffsetPosition = axPos; |
1965 | 2014 | if(_parentID == 0) | |
1966 | // m_log.DebugFormat("[SCENE OBJECT PART]: Found group pos {0} for part {1}", GroupPosition, Name); | 2015 | { |
1967 | 2016 | return GroupPosition; | |
1968 | Vector3 worldPos = GroupPosition + translationOffsetPosition; | 2017 | } |
1969 | 2018 | else | |
1970 | // m_log.DebugFormat("[SCENE OBJECT PART]: Found world pos {0} for part {1}", worldPos, Name); | 2019 | { |
1971 | 2020 | return ParentGroup.AbsolutePosition + translationOffsetPosition; //KF: Fix child prim position | |
1972 | return worldPos; | 2021 | } |
1973 | } | 2022 | } |
1974 | 2023 | ||
1975 | /// <summary> | 2024 | /// <summary> |
@@ -2607,17 +2656,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
2607 | //Trys to fetch sound id from prim's inventory. | 2656 | //Trys to fetch sound id from prim's inventory. |
2608 | //Prim's inventory doesn't support non script items yet | 2657 | //Prim's inventory doesn't support non script items yet |
2609 | 2658 | ||
2610 | lock (TaskInventory) | 2659 | TaskInventory.LockItemsForRead(true); |
2660 | |||
2661 | foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) | ||
2611 | { | 2662 | { |
2612 | foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) | 2663 | if (item.Value.Name == sound) |
2613 | { | 2664 | { |
2614 | if (item.Value.Name == sound) | 2665 | soundID = item.Value.ItemID; |
2615 | { | 2666 | break; |
2616 | soundID = item.Value.ItemID; | ||
2617 | break; | ||
2618 | } | ||
2619 | } | 2667 | } |
2620 | } | 2668 | } |
2669 | |||
2670 | TaskInventory.LockItemsForRead(false); | ||
2621 | } | 2671 | } |
2622 | 2672 | ||
2623 | ParentGroup.Scene.ForEachRootScenePresence(delegate(ScenePresence sp) | 2673 | ParentGroup.Scene.ForEachRootScenePresence(delegate(ScenePresence sp) |
@@ -2700,7 +2750,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2700 | 2750 | ||
2701 | public void RotLookAt(Quaternion target, float strength, float damping) | 2751 | public void RotLookAt(Quaternion target, float strength, float damping) |
2702 | { | 2752 | { |
2703 | rotLookAt(target, strength, damping); | 2753 | m_parentGroup.rotLookAt(target, strength, damping); // This calls method in SceneObjectGroup. |
2704 | } | 2754 | } |
2705 | 2755 | ||
2706 | public void rotLookAt(Quaternion target, float strength, float damping) | 2756 | public void rotLookAt(Quaternion target, float strength, float damping) |
@@ -2926,8 +2976,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2926 | { | 2976 | { |
2927 | const float ROTATION_TOLERANCE = 0.01f; | 2977 | const float ROTATION_TOLERANCE = 0.01f; |
2928 | const float VELOCITY_TOLERANCE = 0.001f; | 2978 | const float VELOCITY_TOLERANCE = 0.001f; |
2929 | const float POSITION_TOLERANCE = 0.05f; | 2979 | const float POSITION_TOLERANCE = 0.05f; // I don't like this, but I suppose it's necessary |
2930 | const int TIME_MS_TOLERANCE = 3000; | 2980 | const int TIME_MS_TOLERANCE = 200; //llSetPos has a 200ms delay. This should NOT be 3 seconds. |
2931 | 2981 | ||
2932 | switch (UpdateFlag) | 2982 | switch (UpdateFlag) |
2933 | { | 2983 | { |
@@ -2989,17 +3039,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
2989 | if (!UUID.TryParse(sound, out soundID)) | 3039 | if (!UUID.TryParse(sound, out soundID)) |
2990 | { | 3040 | { |
2991 | // search sound file from inventory | 3041 | // search sound file from inventory |
2992 | lock (TaskInventory) | 3042 | TaskInventory.LockItemsForRead(true); |
3043 | foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) | ||
2993 | { | 3044 | { |
2994 | foreach (KeyValuePair<UUID, TaskInventoryItem> item in TaskInventory) | 3045 | if (item.Value.Name == sound && item.Value.Type == (int)AssetType.Sound) |
2995 | { | 3046 | { |
2996 | if (item.Value.Name == sound && item.Value.Type == (int)AssetType.Sound) | 3047 | soundID = item.Value.ItemID; |
2997 | { | 3048 | break; |
2998 | soundID = item.Value.ItemID; | ||
2999 | break; | ||
3000 | } | ||
3001 | } | 3049 | } |
3002 | } | 3050 | } |
3051 | TaskInventory.LockItemsForRead(false); | ||
3003 | } | 3052 | } |
3004 | 3053 | ||
3005 | if (soundID == UUID.Zero) | 3054 | if (soundID == UUID.Zero) |
@@ -3473,10 +3522,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
3473 | // TODO: May need to fix for group comparison | 3522 | // TODO: May need to fix for group comparison |
3474 | if (last.Compare(this)) | 3523 | if (last.Compare(this)) |
3475 | { | 3524 | { |
3476 | // m_log.DebugFormat( | 3525 | // m_log.DebugFormat( |
3477 | // "[SCENE OBJECT PART]: Not storing undo for {0} {1} since current state is same as last undo state, initial stack size {2}", | 3526 | // "[SCENE OBJECT PART]: Not storing undo for {0} {1} since current state is same as last undo state, initial stack size {2}", |
3478 | // Name, LocalId, m_undo.Count); | 3527 | // Name, LocalId, m_undo.Count); |
3479 | 3528 | ||
3480 | return; | 3529 | return; |
3481 | } | 3530 | } |
3482 | } | 3531 | } |
@@ -3489,29 +3538,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
3489 | if (ParentGroup.GetSceneMaxUndo() > 0) | 3538 | if (ParentGroup.GetSceneMaxUndo() > 0) |
3490 | { | 3539 | { |
3491 | UndoState nUndo = new UndoState(this, forGroup); | 3540 | UndoState nUndo = new UndoState(this, forGroup); |
3492 | 3541 | ||
3493 | m_undo.Push(nUndo); | 3542 | m_undo.Push(nUndo); |
3494 | 3543 | ||
3495 | if (m_redo.Count > 0) | 3544 | if (m_redo.Count > 0) |
3496 | m_redo.Clear(); | 3545 | m_redo.Clear(); |
3497 | 3546 | ||
3498 | // m_log.DebugFormat( | 3547 | // m_log.DebugFormat( |
3499 | // "[SCENE OBJECT PART]: Stored undo state for {0} {1}, forGroup {2}, stack size now {3}", | 3548 | // "[SCENE OBJECT PART]: Stored undo state for {0} {1}, forGroup {2}, stack size now {3}", |
3500 | // Name, LocalId, forGroup, m_undo.Count); | 3549 | // Name, LocalId, forGroup, m_undo.Count); |
3501 | } | 3550 | } |
3502 | } | 3551 | } |
3503 | } | 3552 | } |
3504 | } | 3553 | } |
3505 | // else | 3554 | // else |
3506 | // { | 3555 | // { |
3507 | // m_log.DebugFormat("[SCENE OBJECT PART]: Ignoring undo store for {0} {1}", Name, LocalId); | 3556 | // m_log.DebugFormat("[SCENE OBJECT PART]: Ignoring undo store for {0} {1}", Name, LocalId); |
3508 | // } | 3557 | // } |
3509 | } | 3558 | } |
3510 | // else | 3559 | // else |
3511 | // { | 3560 | // { |
3512 | // m_log.DebugFormat( | 3561 | // m_log.DebugFormat( |
3513 | // "[SCENE OBJECT PART]: Ignoring undo store for {0} {1} since already undoing", Name, LocalId); | 3562 | // "[SCENE OBJECT PART]: Ignoring undo store for {0} {1} since already undoing", Name, LocalId); |
3514 | // } | 3563 | // } |
3515 | } | 3564 | } |
3516 | 3565 | ||
3517 | /// <summary> | 3566 | /// <summary> |
@@ -4242,6 +4291,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
4242 | bool wasPhantom = ((Flags & PrimFlags.Phantom) != 0); | 4291 | bool wasPhantom = ((Flags & PrimFlags.Phantom) != 0); |
4243 | bool wasVD = VolumeDetectActive; | 4292 | bool wasVD = VolumeDetectActive; |
4244 | 4293 | ||
4294 | // m_log.DebugFormat("[SOP]: Old states: phys: {0} temp: {1} phan: {2} vd: {3}", wasUsingPhysics, wasTemporary, wasPhantom, wasVD); | ||
4295 | // m_log.DebugFormat("[SOP]: New states: phys: {0} temp: {1} phan: {2} vd: {3}", UsePhysics, SetTemporary, SetPhantom, SetVD); | ||
4296 | |||
4245 | if ((UsePhysics == wasUsingPhysics) && (wasTemporary == SetTemporary) && (wasPhantom == SetPhantom) && (SetVD == wasVD)) | 4297 | if ((UsePhysics == wasUsingPhysics) && (wasTemporary == SetTemporary) && (wasPhantom == SetPhantom) && (SetVD == wasVD)) |
4246 | return; | 4298 | return; |
4247 | 4299 | ||
@@ -4271,6 +4323,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
4271 | SetPhantom = false; | 4323 | SetPhantom = false; |
4272 | } | 4324 | } |
4273 | } | 4325 | } |
4326 | else if (wasVD) | ||
4327 | { | ||
4328 | // Correspondingly, if VD is turned off, also turn off phantom | ||
4329 | SetPhantom = false; | ||
4330 | } | ||
4274 | 4331 | ||
4275 | if (UsePhysics && IsJoint()) | 4332 | if (UsePhysics && IsJoint()) |
4276 | { | 4333 | { |
@@ -4765,5 +4822,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
4765 | Color color = Color; | 4822 | Color color = Color; |
4766 | return new Color4(color.R, color.G, color.B, (byte)(0xFF - color.A)); | 4823 | return new Color4(color.R, color.G, color.B, (byte)(0xFF - color.A)); |
4767 | } | 4824 | } |
4825 | |||
4826 | public void ResetOwnerChangeFlag() | ||
4827 | { | ||
4828 | List<UUID> inv = Inventory.GetInventoryList(); | ||
4829 | |||
4830 | foreach (UUID itemID in inv) | ||
4831 | { | ||
4832 | TaskInventoryItem item = Inventory.GetInventoryItem(itemID); | ||
4833 | item.OwnerChanged = false; | ||
4834 | Inventory.UpdateInventoryItem(item, false, false); | ||
4835 | } | ||
4836 | } | ||
4768 | } | 4837 | } |
4769 | } | 4838 | } |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs index daddb90..2335ad5 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> |
@@ -222,9 +267,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
222 | /// </summary> | 267 | /// </summary> |
223 | public void CreateScriptInstances(int startParam, bool postOnRez, string engine, int stateSource) | 268 | public void CreateScriptInstances(int startParam, bool postOnRez, string engine, int stateSource) |
224 | { | 269 | { |
225 | List<TaskInventoryItem> scripts = GetInventoryScripts(); | 270 | Items.LockItemsForRead(true); |
226 | foreach (TaskInventoryItem item in scripts) | 271 | IList<TaskInventoryItem> items = new List<TaskInventoryItem>(Items.Values); |
227 | CreateScriptInstance(item, startParam, postOnRez, engine, stateSource); | 272 | Items.LockItemsForRead(false); |
273 | foreach (TaskInventoryItem item in items) | ||
274 | { | ||
275 | if ((int)InventoryType.LSL == item.InvType) | ||
276 | CreateScriptInstance(item, startParam, postOnRez, engine, stateSource); | ||
277 | } | ||
228 | } | 278 | } |
229 | 279 | ||
230 | public ArrayList GetScriptErrors(UUID itemID) | 280 | public ArrayList GetScriptErrors(UUID itemID) |
@@ -255,9 +305,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
255 | /// </param> | 305 | /// </param> |
256 | public void RemoveScriptInstances(bool sceneObjectBeingDeleted) | 306 | public void RemoveScriptInstances(bool sceneObjectBeingDeleted) |
257 | { | 307 | { |
258 | List<TaskInventoryItem> scripts = GetInventoryScripts(); | 308 | Items.LockItemsForRead(true); |
259 | foreach (TaskInventoryItem item in scripts) | 309 | IList<TaskInventoryItem> items = new List<TaskInventoryItem>(Items.Values); |
260 | RemoveScriptInstance(item.ItemID, sceneObjectBeingDeleted); | 310 | Items.LockItemsForRead(false); |
311 | |||
312 | foreach (TaskInventoryItem item in items) | ||
313 | { | ||
314 | if ((int)InventoryType.LSL == item.InvType) | ||
315 | { | ||
316 | RemoveScriptInstance(item.ItemID, sceneObjectBeingDeleted); | ||
317 | m_part.RemoveScriptEvents(item.ItemID); | ||
318 | } | ||
319 | } | ||
261 | } | 320 | } |
262 | 321 | ||
263 | /// <summary> | 322 | /// <summary> |
@@ -273,7 +332,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
273 | // item.Name, item.ItemID, Name, UUID); | 332 | // item.Name, item.ItemID, Name, UUID); |
274 | 333 | ||
275 | if (!m_part.ParentGroup.Scene.Permissions.CanRunScript(item.ItemID, m_part.UUID, item.OwnerID)) | 334 | if (!m_part.ParentGroup.Scene.Permissions.CanRunScript(item.ItemID, m_part.UUID, item.OwnerID)) |
335 | { | ||
336 | StoreScriptError(item.ItemID, "no permission"); | ||
276 | return; | 337 | return; |
338 | } | ||
277 | 339 | ||
278 | m_part.AddFlag(PrimFlags.Scripted); | 340 | m_part.AddFlag(PrimFlags.Scripted); |
279 | 341 | ||
@@ -282,14 +344,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
282 | if (stateSource == 2 && // Prim crossing | 344 | if (stateSource == 2 && // Prim crossing |
283 | m_part.ParentGroup.Scene.m_trustBinaries) | 345 | m_part.ParentGroup.Scene.m_trustBinaries) |
284 | { | 346 | { |
285 | lock (m_items) | 347 | m_items.LockItemsForWrite(true); |
286 | { | 348 | m_items[item.ItemID].PermsMask = 0; |
287 | m_items[item.ItemID].PermsMask = 0; | 349 | m_items[item.ItemID].PermsGranter = UUID.Zero; |
288 | m_items[item.ItemID].PermsGranter = UUID.Zero; | 350 | m_items.LockItemsForWrite(false); |
289 | } | ||
290 | |||
291 | m_part.ParentGroup.Scene.EventManager.TriggerRezScript( | 351 | m_part.ParentGroup.Scene.EventManager.TriggerRezScript( |
292 | m_part.LocalId, item.ItemID, String.Empty, startParam, postOnRez, engine, stateSource); | 352 | m_part.LocalId, item.ItemID, String.Empty, startParam, postOnRez, engine, stateSource); |
353 | StoreScriptErrors(item.ItemID, null); | ||
293 | m_part.ParentGroup.AddActiveScriptCount(1); | 354 | m_part.ParentGroup.AddActiveScriptCount(1); |
294 | m_part.ScheduleFullUpdate(); | 355 | m_part.ScheduleFullUpdate(); |
295 | return; | 356 | return; |
@@ -298,6 +359,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
298 | AssetBase asset = m_part.ParentGroup.Scene.AssetService.Get(item.AssetID.ToString()); | 359 | AssetBase asset = m_part.ParentGroup.Scene.AssetService.Get(item.AssetID.ToString()); |
299 | if (null == asset) | 360 | if (null == asset) |
300 | { | 361 | { |
362 | string msg = String.Format("asset ID {0} could not be found", item.AssetID); | ||
363 | StoreScriptError(item.ItemID, msg); | ||
301 | m_log.ErrorFormat( | 364 | m_log.ErrorFormat( |
302 | "[PRIM INVENTORY]: " + | 365 | "[PRIM INVENTORY]: " + |
303 | "Couldn't start script {0}, {1} at {2} in {3} since asset ID {4} could not be found", | 366 | "Couldn't start script {0}, {1} at {2} in {3} since asset ID {4} could not be found", |
@@ -309,15 +372,20 @@ namespace OpenSim.Region.Framework.Scenes | |||
309 | if (m_part.ParentGroup.m_savedScriptState != null) | 372 | if (m_part.ParentGroup.m_savedScriptState != null) |
310 | RestoreSavedScriptState(item.OldItemID, item.ItemID); | 373 | RestoreSavedScriptState(item.OldItemID, item.ItemID); |
311 | 374 | ||
312 | lock (m_items) | 375 | m_items.LockItemsForWrite(true); |
313 | { | 376 | |
314 | m_items[item.ItemID].PermsMask = 0; | 377 | m_items[item.ItemID].PermsMask = 0; |
315 | m_items[item.ItemID].PermsGranter = UUID.Zero; | 378 | m_items[item.ItemID].PermsGranter = UUID.Zero; |
316 | } | 379 | |
380 | m_items.LockItemsForWrite(false); | ||
317 | 381 | ||
318 | string script = Utils.BytesToString(asset.Data); | 382 | string script = Utils.BytesToString(asset.Data); |
319 | m_part.ParentGroup.Scene.EventManager.TriggerRezScript( | 383 | m_part.ParentGroup.Scene.EventManager.TriggerRezScript( |
320 | m_part.LocalId, item.ItemID, script, startParam, postOnRez, engine, stateSource); | 384 | m_part.LocalId, item.ItemID, script, startParam, postOnRez, engine, stateSource); |
385 | StoreScriptErrors(item.ItemID, null); | ||
386 | if (!item.ScriptRunning) | ||
387 | m_part.ParentGroup.Scene.EventManager.TriggerStopScript( | ||
388 | m_part.LocalId, item.ItemID); | ||
321 | m_part.ParentGroup.AddActiveScriptCount(1); | 389 | m_part.ParentGroup.AddActiveScriptCount(1); |
322 | m_part.ScheduleFullUpdate(); | 390 | m_part.ScheduleFullUpdate(); |
323 | } | 391 | } |
@@ -383,21 +451,145 @@ namespace OpenSim.Region.Framework.Scenes | |||
383 | 451 | ||
384 | /// <summary> | 452 | /// <summary> |
385 | /// Start a script which is in this prim's inventory. | 453 | /// Start a script which is in this prim's inventory. |
454 | /// Some processing may occur in the background, but this routine returns asap. | ||
386 | /// </summary> | 455 | /// </summary> |
387 | /// <param name="itemId"> | 456 | /// <param name="itemId"> |
388 | /// A <see cref="UUID"/> | 457 | /// A <see cref="UUID"/> |
389 | /// </param> | 458 | /// </param> |
390 | public void CreateScriptInstance(UUID itemId, int startParam, bool postOnRez, string engine, int stateSource) | 459 | public void CreateScriptInstance(UUID itemId, int startParam, bool postOnRez, string engine, int stateSource) |
391 | { | 460 | { |
392 | TaskInventoryItem item = GetInventoryItem(itemId); | 461 | lock (m_scriptErrors) |
393 | if (item != null) | 462 | { |
394 | CreateScriptInstance(item, startParam, postOnRez, engine, stateSource); | 463 | // Indicate to CreateScriptInstanceInternal() we don't want it to wait for completion |
464 | m_scriptErrors.Remove(itemId); | ||
465 | } | ||
466 | CreateScriptInstanceInternal(itemId, startParam, postOnRez, engine, stateSource); | ||
467 | } | ||
468 | |||
469 | private void CreateScriptInstanceInternal(UUID itemId, int startParam, bool postOnRez, string engine, int stateSource) | ||
470 | { | ||
471 | m_items.LockItemsForRead(true); | ||
472 | if (m_items.ContainsKey(itemId)) | ||
473 | { | ||
474 | if (m_items.ContainsKey(itemId)) | ||
475 | { | ||
476 | m_items.LockItemsForRead(false); | ||
477 | CreateScriptInstance(m_items[itemId], startParam, postOnRez, engine, stateSource); | ||
478 | } | ||
479 | else | ||
480 | { | ||
481 | m_items.LockItemsForRead(false); | ||
482 | string msg = String.Format("couldn't be found for prim {0}, {1} at {2} in {3}", m_part.Name, m_part.UUID, | ||
483 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); | ||
484 | StoreScriptError(itemId, msg); | ||
485 | m_log.ErrorFormat( | ||
486 | "[PRIM INVENTORY]: " + | ||
487 | "Couldn't start script with ID {0} since it {1}", itemId, msg); | ||
488 | } | ||
489 | } | ||
395 | else | 490 | else |
491 | { | ||
492 | m_items.LockItemsForRead(false); | ||
493 | string msg = String.Format("couldn't be found for prim {0}, {1}", m_part.Name, m_part.UUID); | ||
494 | StoreScriptError(itemId, msg); | ||
396 | m_log.ErrorFormat( | 495 | m_log.ErrorFormat( |
397 | "[PRIM INVENTORY]: " + | 496 | "[PRIM INVENTORY]: " + |
398 | "Couldn't start script with ID {0} since it couldn't be found for prim {1}, {2} at {3} in {4}", | 497 | "Couldn't start script with ID {0} since it {1}", itemId, msg); |
399 | itemId, m_part.Name, m_part.UUID, | 498 | } |
400 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); | 499 | |
500 | } | ||
501 | |||
502 | /// <summary> | ||
503 | /// Start a script which is in this prim's inventory and return any compilation error messages. | ||
504 | /// </summary> | ||
505 | /// <param name="itemId"> | ||
506 | /// A <see cref="UUID"/> | ||
507 | /// </param> | ||
508 | public ArrayList CreateScriptInstanceEr(UUID itemId, int startParam, bool postOnRez, string engine, int stateSource) | ||
509 | { | ||
510 | ArrayList errors; | ||
511 | |||
512 | // Indicate to CreateScriptInstanceInternal() we want it to | ||
513 | // post any compilation/loading error messages | ||
514 | lock (m_scriptErrors) | ||
515 | { | ||
516 | m_scriptErrors[itemId] = null; | ||
517 | } | ||
518 | |||
519 | // Perform compilation/loading | ||
520 | CreateScriptInstanceInternal(itemId, startParam, postOnRez, engine, stateSource); | ||
521 | |||
522 | // Wait for and retrieve any errors | ||
523 | lock (m_scriptErrors) | ||
524 | { | ||
525 | while ((errors = m_scriptErrors[itemId]) == null) | ||
526 | { | ||
527 | if (!System.Threading.Monitor.Wait(m_scriptErrors, 15000)) | ||
528 | { | ||
529 | m_log.ErrorFormat( | ||
530 | "[PRIM INVENTORY]: " + | ||
531 | "timedout waiting for script {0} errors", itemId); | ||
532 | errors = m_scriptErrors[itemId]; | ||
533 | if (errors == null) | ||
534 | { | ||
535 | errors = new ArrayList(1); | ||
536 | errors.Add("timedout waiting for errors"); | ||
537 | } | ||
538 | break; | ||
539 | } | ||
540 | } | ||
541 | m_scriptErrors.Remove(itemId); | ||
542 | } | ||
543 | return errors; | ||
544 | } | ||
545 | |||
546 | // Signal to CreateScriptInstanceEr() that compilation/loading is complete | ||
547 | private void StoreScriptErrors(UUID itemId, ArrayList errors) | ||
548 | { | ||
549 | lock (m_scriptErrors) | ||
550 | { | ||
551 | // If compilation/loading initiated via CreateScriptInstance(), | ||
552 | // it does not want the errors, so just get out | ||
553 | if (!m_scriptErrors.ContainsKey(itemId)) | ||
554 | { | ||
555 | return; | ||
556 | } | ||
557 | |||
558 | // Initiated via CreateScriptInstanceEr(), if we know what the | ||
559 | // errors are, save them and wake CreateScriptInstanceEr(). | ||
560 | if (errors != null) | ||
561 | { | ||
562 | m_scriptErrors[itemId] = errors; | ||
563 | System.Threading.Monitor.PulseAll(m_scriptErrors); | ||
564 | return; | ||
565 | } | ||
566 | } | ||
567 | |||
568 | // Initiated via CreateScriptInstanceEr() but we don't know what | ||
569 | // the errors are yet, so retrieve them from the script engine. | ||
570 | // This may involve some waiting internal to GetScriptErrors(). | ||
571 | errors = GetScriptErrors(itemId); | ||
572 | |||
573 | // Get a default non-null value to indicate success. | ||
574 | if (errors == null) | ||
575 | { | ||
576 | errors = new ArrayList(); | ||
577 | } | ||
578 | |||
579 | // Post to CreateScriptInstanceEr() and wake it up | ||
580 | lock (m_scriptErrors) | ||
581 | { | ||
582 | m_scriptErrors[itemId] = errors; | ||
583 | System.Threading.Monitor.PulseAll(m_scriptErrors); | ||
584 | } | ||
585 | } | ||
586 | |||
587 | // Like StoreScriptErrors(), but just posts a single string message | ||
588 | private void StoreScriptError(UUID itemId, string message) | ||
589 | { | ||
590 | ArrayList errors = new ArrayList(1); | ||
591 | errors.Add(message); | ||
592 | StoreScriptErrors(itemId, errors); | ||
401 | } | 593 | } |
402 | 594 | ||
403 | /// <summary> | 595 | /// <summary> |
@@ -410,15 +602,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
410 | /// </param> | 602 | /// </param> |
411 | public void RemoveScriptInstance(UUID itemId, bool sceneObjectBeingDeleted) | 603 | public void RemoveScriptInstance(UUID itemId, bool sceneObjectBeingDeleted) |
412 | { | 604 | { |
413 | bool scriptPresent = false; | 605 | if (m_items.ContainsKey(itemId)) |
414 | |||
415 | lock (m_items) | ||
416 | { | ||
417 | if (m_items.ContainsKey(itemId)) | ||
418 | scriptPresent = true; | ||
419 | } | ||
420 | |||
421 | if (scriptPresent) | ||
422 | { | 606 | { |
423 | if (!sceneObjectBeingDeleted) | 607 | if (!sceneObjectBeingDeleted) |
424 | m_part.RemoveScriptEvents(itemId); | 608 | m_part.RemoveScriptEvents(itemId); |
@@ -443,14 +627,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
443 | /// <returns></returns> | 627 | /// <returns></returns> |
444 | private bool InventoryContainsName(string name) | 628 | private bool InventoryContainsName(string name) |
445 | { | 629 | { |
446 | lock (m_items) | 630 | m_items.LockItemsForRead(true); |
631 | foreach (TaskInventoryItem item in m_items.Values) | ||
447 | { | 632 | { |
448 | foreach (TaskInventoryItem item in m_items.Values) | 633 | if (item.Name == name) |
449 | { | 634 | { |
450 | if (item.Name == name) | 635 | m_items.LockItemsForRead(false); |
451 | return true; | 636 | return true; |
452 | } | 637 | } |
453 | } | 638 | } |
639 | m_items.LockItemsForRead(false); | ||
454 | return false; | 640 | return false; |
455 | } | 641 | } |
456 | 642 | ||
@@ -492,8 +678,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
492 | /// <param name="item"></param> | 678 | /// <param name="item"></param> |
493 | public void AddInventoryItemExclusive(TaskInventoryItem item, bool allowedDrop) | 679 | public void AddInventoryItemExclusive(TaskInventoryItem item, bool allowedDrop) |
494 | { | 680 | { |
495 | List<TaskInventoryItem> il = GetInventoryItems(); | 681 | m_items.LockItemsForRead(true); |
496 | 682 | List<TaskInventoryItem> il = new List<TaskInventoryItem>(m_items.Values); | |
683 | m_items.LockItemsForRead(false); | ||
497 | foreach (TaskInventoryItem i in il) | 684 | foreach (TaskInventoryItem i in il) |
498 | { | 685 | { |
499 | if (i.Name == item.Name) | 686 | if (i.Name == item.Name) |
@@ -531,14 +718,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
531 | item.Name = name; | 718 | item.Name = name; |
532 | item.GroupID = m_part.GroupID; | 719 | item.GroupID = m_part.GroupID; |
533 | 720 | ||
534 | lock (m_items) | 721 | m_items.LockItemsForWrite(true); |
535 | m_items.Add(item.ItemID, item); | 722 | m_items.Add(item.ItemID, item); |
536 | 723 | m_items.LockItemsForWrite(false); | |
537 | if (allowedDrop) | 724 | if (allowedDrop) |
538 | m_part.TriggerScriptChangedEvent(Changed.ALLOWED_DROP); | 725 | m_part.TriggerScriptChangedEvent(Changed.ALLOWED_DROP); |
539 | else | 726 | else |
540 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); | 727 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); |
541 | 728 | ||
542 | m_inventorySerial++; | 729 | m_inventorySerial++; |
543 | //m_inventorySerial += 2; | 730 | //m_inventorySerial += 2; |
544 | HasInventoryChanged = true; | 731 | HasInventoryChanged = true; |
@@ -554,15 +741,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
554 | /// <param name="items"></param> | 741 | /// <param name="items"></param> |
555 | public void RestoreInventoryItems(ICollection<TaskInventoryItem> items) | 742 | public void RestoreInventoryItems(ICollection<TaskInventoryItem> items) |
556 | { | 743 | { |
557 | lock (m_items) | 744 | m_items.LockItemsForWrite(true); |
745 | foreach (TaskInventoryItem item in items) | ||
558 | { | 746 | { |
559 | foreach (TaskInventoryItem item in items) | 747 | m_items.Add(item.ItemID, item); |
560 | { | 748 | // m_part.TriggerScriptChangedEvent(Changed.INVENTORY); |
561 | m_items.Add(item.ItemID, item); | ||
562 | // m_part.TriggerScriptChangedEvent(Changed.INVENTORY); | ||
563 | } | ||
564 | m_inventorySerial++; | ||
565 | } | 749 | } |
750 | m_items.LockItemsForWrite(false); | ||
751 | |||
752 | m_inventorySerial++; | ||
566 | } | 753 | } |
567 | 754 | ||
568 | /// <summary> | 755 | /// <summary> |
@@ -573,10 +760,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
573 | public TaskInventoryItem GetInventoryItem(UUID itemId) | 760 | public TaskInventoryItem GetInventoryItem(UUID itemId) |
574 | { | 761 | { |
575 | TaskInventoryItem item; | 762 | TaskInventoryItem item; |
576 | 763 | m_items.LockItemsForRead(true); | |
577 | lock (m_items) | 764 | m_items.TryGetValue(itemId, out item); |
578 | m_items.TryGetValue(itemId, out item); | 765 | m_items.LockItemsForRead(false); |
579 | |||
580 | return item; | 766 | return item; |
581 | } | 767 | } |
582 | 768 | ||
@@ -592,15 +778,16 @@ namespace OpenSim.Region.Framework.Scenes | |||
592 | { | 778 | { |
593 | IList<TaskInventoryItem> items = new List<TaskInventoryItem>(); | 779 | IList<TaskInventoryItem> items = new List<TaskInventoryItem>(); |
594 | 780 | ||
595 | lock (m_items) | 781 | m_items.LockItemsForRead(true); |
782 | |||
783 | foreach (TaskInventoryItem item in m_items.Values) | ||
596 | { | 784 | { |
597 | foreach (TaskInventoryItem item in m_items.Values) | 785 | if (item.Name == name) |
598 | { | 786 | items.Add(item); |
599 | if (item.Name == name) | ||
600 | items.Add(item); | ||
601 | } | ||
602 | } | 787 | } |
603 | 788 | ||
789 | m_items.LockItemsForRead(false); | ||
790 | |||
604 | return items; | 791 | return items; |
605 | } | 792 | } |
606 | 793 | ||
@@ -619,6 +806,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
619 | string xmlData = Utils.BytesToString(rezAsset.Data); | 806 | string xmlData = Utils.BytesToString(rezAsset.Data); |
620 | SceneObjectGroup group = SceneObjectSerializer.FromOriginalXmlFormat(xmlData); | 807 | SceneObjectGroup group = SceneObjectSerializer.FromOriginalXmlFormat(xmlData); |
621 | 808 | ||
809 | group.RootPart.AttachPoint = group.RootPart.Shape.State; | ||
810 | group.RootPart.AttachOffset = group.AbsolutePosition; | ||
811 | |||
622 | group.ResetIDs(); | 812 | group.ResetIDs(); |
623 | 813 | ||
624 | SceneObjectPart rootPart = group.GetChildPart(group.UUID); | 814 | SceneObjectPart rootPart = group.GetChildPart(group.UUID); |
@@ -693,8 +883,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
693 | 883 | ||
694 | public bool UpdateInventoryItem(TaskInventoryItem item, bool fireScriptEvents, bool considerChanged) | 884 | public bool UpdateInventoryItem(TaskInventoryItem item, bool fireScriptEvents, bool considerChanged) |
695 | { | 885 | { |
696 | TaskInventoryItem it = GetInventoryItem(item.ItemID); | 886 | m_items.LockItemsForWrite(true); |
697 | if (it != null) | 887 | |
888 | if (m_items.ContainsKey(item.ItemID)) | ||
698 | { | 889 | { |
699 | // m_log.DebugFormat("[PRIM INVENTORY]: Updating item {0} in {1}", item.Name, m_part.Name); | 890 | // m_log.DebugFormat("[PRIM INVENTORY]: Updating item {0} in {1}", item.Name, m_part.Name); |
700 | 891 | ||
@@ -707,14 +898,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
707 | item.GroupID = m_part.GroupID; | 898 | item.GroupID = m_part.GroupID; |
708 | 899 | ||
709 | if (item.AssetID == UUID.Zero) | 900 | if (item.AssetID == UUID.Zero) |
710 | item.AssetID = it.AssetID; | 901 | item.AssetID = m_items[item.ItemID].AssetID; |
711 | 902 | ||
712 | lock (m_items) | 903 | m_items[item.ItemID] = item; |
713 | { | 904 | m_inventorySerial++; |
714 | m_items[item.ItemID] = item; | ||
715 | m_inventorySerial++; | ||
716 | } | ||
717 | |||
718 | if (fireScriptEvents) | 905 | if (fireScriptEvents) |
719 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); | 906 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); |
720 | 907 | ||
@@ -723,7 +910,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
723 | HasInventoryChanged = true; | 910 | HasInventoryChanged = true; |
724 | m_part.ParentGroup.HasGroupChanged = true; | 911 | m_part.ParentGroup.HasGroupChanged = true; |
725 | } | 912 | } |
726 | 913 | m_items.LockItemsForWrite(false); | |
727 | return true; | 914 | return true; |
728 | } | 915 | } |
729 | else | 916 | else |
@@ -734,8 +921,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
734 | item.ItemID, m_part.Name, m_part.UUID, | 921 | item.ItemID, m_part.Name, m_part.UUID, |
735 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); | 922 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); |
736 | } | 923 | } |
737 | return false; | 924 | m_items.LockItemsForWrite(false); |
738 | 925 | ||
926 | return false; | ||
739 | } | 927 | } |
740 | 928 | ||
741 | /// <summary> | 929 | /// <summary> |
@@ -746,43 +934,59 @@ namespace OpenSim.Region.Framework.Scenes | |||
746 | /// in this prim's inventory.</returns> | 934 | /// in this prim's inventory.</returns> |
747 | public int RemoveInventoryItem(UUID itemID) | 935 | public int RemoveInventoryItem(UUID itemID) |
748 | { | 936 | { |
749 | TaskInventoryItem item = GetInventoryItem(itemID); | 937 | m_items.LockItemsForRead(true); |
750 | if (item != null) | 938 | |
939 | if (m_items.ContainsKey(itemID)) | ||
751 | { | 940 | { |
752 | int type = m_items[itemID].InvType; | 941 | int type = m_items[itemID].InvType; |
942 | m_items.LockItemsForRead(false); | ||
753 | if (type == 10) // Script | 943 | if (type == 10) // Script |
754 | { | 944 | { |
755 | m_part.RemoveScriptEvents(itemID); | ||
756 | m_part.ParentGroup.Scene.EventManager.TriggerRemoveScript(m_part.LocalId, itemID); | 945 | m_part.ParentGroup.Scene.EventManager.TriggerRemoveScript(m_part.LocalId, itemID); |
757 | } | 946 | } |
947 | m_items.LockItemsForWrite(true); | ||
758 | m_items.Remove(itemID); | 948 | m_items.Remove(itemID); |
949 | m_items.LockItemsForWrite(false); | ||
759 | m_inventorySerial++; | 950 | m_inventorySerial++; |
760 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); | 951 | m_part.TriggerScriptChangedEvent(Changed.INVENTORY); |
761 | 952 | ||
762 | HasInventoryChanged = true; | 953 | HasInventoryChanged = true; |
763 | m_part.ParentGroup.HasGroupChanged = true; | 954 | m_part.ParentGroup.HasGroupChanged = true; |
764 | 955 | ||
765 | if (!ContainsScripts()) | 956 | int scriptcount = 0; |
957 | m_items.LockItemsForRead(true); | ||
958 | foreach (TaskInventoryItem item in m_items.Values) | ||
959 | { | ||
960 | if (item.Type == 10) | ||
961 | { | ||
962 | scriptcount++; | ||
963 | } | ||
964 | } | ||
965 | m_items.LockItemsForRead(false); | ||
966 | |||
967 | |||
968 | if (scriptcount <= 0) | ||
969 | { | ||
766 | m_part.RemFlag(PrimFlags.Scripted); | 970 | m_part.RemFlag(PrimFlags.Scripted); |
971 | } | ||
767 | 972 | ||
768 | m_part.ScheduleFullUpdate(); | 973 | m_part.ScheduleFullUpdate(); |
769 | 974 | ||
770 | return type; | 975 | return type; |
771 | |||
772 | } | 976 | } |
773 | else | 977 | else |
774 | { | 978 | { |
979 | m_items.LockItemsForRead(false); | ||
775 | m_log.ErrorFormat( | 980 | m_log.ErrorFormat( |
776 | "[PRIM INVENTORY]: " + | 981 | "[PRIM INVENTORY]: " + |
777 | "Tried to remove item ID {0} from prim {1}, {2} at {3} in {4} but the item does not exist in this inventory", | 982 | "Tried to remove item ID {0} from prim {1}, {2} but the item does not exist in this inventory", |
778 | itemID, m_part.Name, m_part.UUID, | 983 | itemID, m_part.Name, m_part.UUID); |
779 | m_part.AbsolutePosition, m_part.ParentGroup.Scene.RegionInfo.RegionName); | ||
780 | } | 984 | } |
781 | 985 | ||
782 | return -1; | 986 | return -1; |
783 | } | 987 | } |
784 | 988 | ||
785 | private bool CreateInventoryFile() | 989 | private bool CreateInventoryFileName() |
786 | { | 990 | { |
787 | // m_log.DebugFormat( | 991 | // m_log.DebugFormat( |
788 | // "[PRIM INVENTORY]: Creating inventory file for {0} {1} {2}, serial {3}", | 992 | // "[PRIM INVENTORY]: Creating inventory file for {0} {1} {2}, serial {3}", |
@@ -791,116 +995,125 @@ namespace OpenSim.Region.Framework.Scenes | |||
791 | if (m_inventoryFileName == String.Empty || | 995 | if (m_inventoryFileName == String.Empty || |
792 | m_inventoryFileNameSerial < m_inventorySerial) | 996 | m_inventoryFileNameSerial < m_inventorySerial) |
793 | { | 997 | { |
794 | // Something changed, we need to create a new file | ||
795 | m_inventoryFileName = "inventory_" + UUID.Random().ToString() + ".tmp"; | 998 | m_inventoryFileName = "inventory_" + UUID.Random().ToString() + ".tmp"; |
796 | m_inventoryFileNameSerial = m_inventorySerial; | 999 | m_inventoryFileNameSerial = m_inventorySerial; |
797 | 1000 | ||
798 | InventoryStringBuilder invString = new InventoryStringBuilder(m_part.UUID, UUID.Zero); | 1001 | return true; |
1002 | } | ||
1003 | |||
1004 | return false; | ||
1005 | } | ||
1006 | |||
1007 | /// <summary> | ||
1008 | /// Serialize all the metadata for the items in this prim's inventory ready for sending to the client | ||
1009 | /// </summary> | ||
1010 | /// <param name="xferManager"></param> | ||
1011 | public void RequestInventoryFile(IClientAPI client, IXfer xferManager) | ||
1012 | { | ||
1013 | bool changed = CreateInventoryFileName(); | ||
1014 | |||
1015 | bool includeAssets = false; | ||
1016 | if (m_part.ParentGroup.Scene.Permissions.CanEditObjectInventory(m_part.UUID, client.AgentId)) | ||
1017 | includeAssets = true; | ||
1018 | |||
1019 | if (m_inventoryPrivileged != includeAssets) | ||
1020 | changed = true; | ||
1021 | |||
1022 | InventoryStringBuilder invString = new InventoryStringBuilder(m_part.UUID, UUID.Zero); | ||
1023 | |||
1024 | Items.LockItemsForRead(true); | ||
1025 | |||
1026 | if (m_inventorySerial == 0) // No inventory | ||
1027 | { | ||
1028 | client.SendTaskInventory(m_part.UUID, 0, new byte[0]); | ||
1029 | Items.LockItemsForRead(false); | ||
1030 | return; | ||
1031 | } | ||
799 | 1032 | ||
800 | lock (m_items) | 1033 | if (m_items.Count == 0) // No inventory |
1034 | { | ||
1035 | client.SendTaskInventory(m_part.UUID, 0, new byte[0]); | ||
1036 | Items.LockItemsForRead(false); | ||
1037 | return; | ||
1038 | } | ||
1039 | |||
1040 | if (!changed) | ||
1041 | { | ||
1042 | if (m_inventoryFileData.Length > 2) | ||
801 | { | 1043 | { |
802 | foreach (TaskInventoryItem item in m_items.Values) | 1044 | xferManager.AddNewFile(m_inventoryFileName, |
803 | { | 1045 | m_inventoryFileData); |
804 | // m_log.DebugFormat( | 1046 | client.SendTaskInventory(m_part.UUID, (short)m_inventorySerial, |
805 | // "[PRIM INVENTORY]: Adding item {0} {1} for serial {2} on prim {3} {4} {5}", | 1047 | Util.StringToBytes256(m_inventoryFileName)); |
806 | // item.Name, item.ItemID, m_inventorySerial, m_part.Name, m_part.UUID, m_part.LocalId); | ||
807 | 1048 | ||
808 | UUID ownerID = item.OwnerID; | 1049 | Items.LockItemsForRead(false); |
809 | uint everyoneMask = 0; | 1050 | return; |
810 | uint baseMask = item.BasePermissions; | 1051 | } |
811 | uint ownerMask = item.CurrentPermissions; | 1052 | } |
812 | uint groupMask = item.GroupPermissions; | ||
813 | 1053 | ||
814 | invString.AddItemStart(); | 1054 | m_inventoryPrivileged = includeAssets; |
815 | invString.AddNameValueLine("item_id", item.ItemID.ToString()); | ||
816 | invString.AddNameValueLine("parent_id", m_part.UUID.ToString()); | ||
817 | 1055 | ||
818 | invString.AddPermissionsStart(); | 1056 | foreach (TaskInventoryItem item in m_items.Values) |
1057 | { | ||
1058 | UUID ownerID = item.OwnerID; | ||
1059 | uint everyoneMask = 0; | ||
1060 | uint baseMask = item.BasePermissions; | ||
1061 | uint ownerMask = item.CurrentPermissions; | ||
1062 | uint groupMask = item.GroupPermissions; | ||
819 | 1063 | ||
820 | invString.AddNameValueLine("base_mask", Utils.UIntToHexString(baseMask)); | 1064 | invString.AddItemStart(); |
821 | invString.AddNameValueLine("owner_mask", Utils.UIntToHexString(ownerMask)); | 1065 | invString.AddNameValueLine("item_id", item.ItemID.ToString()); |
822 | invString.AddNameValueLine("group_mask", Utils.UIntToHexString(groupMask)); | 1066 | invString.AddNameValueLine("parent_id", m_part.UUID.ToString()); |
823 | invString.AddNameValueLine("everyone_mask", Utils.UIntToHexString(everyoneMask)); | ||
824 | invString.AddNameValueLine("next_owner_mask", Utils.UIntToHexString(item.NextPermissions)); | ||
825 | 1067 | ||
826 | invString.AddNameValueLine("creator_id", item.CreatorID.ToString()); | 1068 | invString.AddPermissionsStart(); |
827 | invString.AddNameValueLine("owner_id", ownerID.ToString()); | ||
828 | 1069 | ||
829 | invString.AddNameValueLine("last_owner_id", item.LastOwnerID.ToString()); | 1070 | invString.AddNameValueLine("base_mask", Utils.UIntToHexString(baseMask)); |
1071 | invString.AddNameValueLine("owner_mask", Utils.UIntToHexString(ownerMask)); | ||
1072 | invString.AddNameValueLine("group_mask", Utils.UIntToHexString(groupMask)); | ||
1073 | invString.AddNameValueLine("everyone_mask", Utils.UIntToHexString(everyoneMask)); | ||
1074 | invString.AddNameValueLine("next_owner_mask", Utils.UIntToHexString(item.NextPermissions)); | ||
830 | 1075 | ||
831 | invString.AddNameValueLine("group_id", item.GroupID.ToString()); | 1076 | invString.AddNameValueLine("creator_id", item.CreatorID.ToString()); |
832 | invString.AddSectionEnd(); | 1077 | invString.AddNameValueLine("owner_id", ownerID.ToString()); |
833 | 1078 | ||
834 | invString.AddNameValueLine("asset_id", item.AssetID.ToString()); | 1079 | invString.AddNameValueLine("last_owner_id", item.LastOwnerID.ToString()); |
835 | invString.AddNameValueLine("type", Utils.AssetTypeToString((AssetType)item.Type)); | ||
836 | invString.AddNameValueLine("inv_type", Utils.InventoryTypeToString((InventoryType)item.InvType)); | ||
837 | invString.AddNameValueLine("flags", Utils.UIntToHexString(item.Flags)); | ||
838 | 1080 | ||
839 | invString.AddSaleStart(); | 1081 | invString.AddNameValueLine("group_id", item.GroupID.ToString()); |
840 | invString.AddNameValueLine("sale_type", "not"); | 1082 | invString.AddSectionEnd(); |
841 | invString.AddNameValueLine("sale_price", "0"); | ||
842 | invString.AddSectionEnd(); | ||
843 | 1083 | ||
844 | invString.AddNameValueLine("name", item.Name + "|"); | 1084 | if (includeAssets) |
845 | invString.AddNameValueLine("desc", item.Description + "|"); | 1085 | invString.AddNameValueLine("asset_id", item.AssetID.ToString()); |
1086 | else | ||
1087 | invString.AddNameValueLine("asset_id", UUID.Zero.ToString()); | ||
1088 | invString.AddNameValueLine("type", Utils.AssetTypeToString((AssetType)item.Type)); | ||
1089 | invString.AddNameValueLine("inv_type", Utils.InventoryTypeToString((InventoryType)item.InvType)); | ||
1090 | invString.AddNameValueLine("flags", Utils.UIntToHexString(item.Flags)); | ||
846 | 1091 | ||
847 | invString.AddNameValueLine("creation_date", item.CreationDate.ToString()); | 1092 | invString.AddSaleStart(); |
848 | invString.AddSectionEnd(); | 1093 | invString.AddNameValueLine("sale_type", "not"); |
849 | } | 1094 | invString.AddNameValueLine("sale_price", "0"); |
850 | } | 1095 | invString.AddSectionEnd(); |
851 | 1096 | ||
852 | m_inventoryFileData = Utils.StringToBytes(invString.BuildString); | 1097 | invString.AddNameValueLine("name", item.Name + "|"); |
1098 | invString.AddNameValueLine("desc", item.Description + "|"); | ||
853 | 1099 | ||
854 | return true; | 1100 | invString.AddNameValueLine("creation_date", item.CreationDate.ToString()); |
1101 | invString.AddSectionEnd(); | ||
855 | } | 1102 | } |
856 | 1103 | ||
857 | // No need to recreate, the existing file is fine | 1104 | Items.LockItemsForRead(false); |
858 | return false; | ||
859 | } | ||
860 | 1105 | ||
861 | /// <summary> | 1106 | m_inventoryFileData = Utils.StringToBytes(invString.BuildString); |
862 | /// Serialize all the metadata for the items in this prim's inventory ready for sending to the client | ||
863 | /// </summary> | ||
864 | /// <param name="xferManager"></param> | ||
865 | public void RequestInventoryFile(IClientAPI client, IXfer xferManager) | ||
866 | { | ||
867 | lock (m_items) | ||
868 | { | ||
869 | // Don't send a inventory xfer name if there are no items. Doing so causes viewer 3 to crash when rezzing | ||
870 | // a new script if any previous deletion has left the prim inventory empty. | ||
871 | if (m_items.Count == 0) // No inventory | ||
872 | { | ||
873 | // m_log.DebugFormat( | ||
874 | // "[PRIM INVENTORY]: Not sending inventory data for part {0} {1} {2} for {3} since no items", | ||
875 | // m_part.Name, m_part.LocalId, m_part.UUID, client.Name); | ||
876 | 1107 | ||
877 | client.SendTaskInventory(m_part.UUID, 0, new byte[0]); | 1108 | if (m_inventoryFileData.Length > 2) |
878 | return; | 1109 | { |
879 | } | 1110 | xferManager.AddNewFile(m_inventoryFileName, m_inventoryFileData); |
880 | 1111 | client.SendTaskInventory(m_part.UUID, (short)m_inventorySerial, | |
881 | CreateInventoryFile(); | 1112 | Util.StringToBytes256(m_inventoryFileName)); |
882 | 1113 | return; | |
883 | // In principle, we should only do the rest if the inventory changed; | ||
884 | // by sending m_inventorySerial to the client, it ought to know | ||
885 | // that nothing changed and that it doesn't need to request the file. | ||
886 | // Unfortunately, it doesn't look like the client optimizes this; | ||
887 | // the client seems to always come back and request the Xfer, | ||
888 | // no matter what value m_inventorySerial has. | ||
889 | // FIXME: Could probably be > 0 here rather than > 2 | ||
890 | if (m_inventoryFileData.Length > 2) | ||
891 | { | ||
892 | // Add the file for Xfer | ||
893 | // m_log.DebugFormat( | ||
894 | // "[PRIM INVENTORY]: Adding inventory file {0} (length {1}) for transfer on {2} {3} {4}", | ||
895 | // m_inventoryFileName, m_inventoryFileData.Length, m_part.Name, m_part.UUID, m_part.LocalId); | ||
896 | |||
897 | xferManager.AddNewFile(m_inventoryFileName, m_inventoryFileData); | ||
898 | } | ||
899 | |||
900 | // Tell the client we're ready to Xfer the file | ||
901 | client.SendTaskInventory(m_part.UUID, (short)m_inventorySerial, | ||
902 | Util.StringToBytes256(m_inventoryFileName)); | ||
903 | } | 1114 | } |
1115 | |||
1116 | client.SendTaskInventory(m_part.UUID, 0, new byte[0]); | ||
904 | } | 1117 | } |
905 | 1118 | ||
906 | /// <summary> | 1119 | /// <summary> |
@@ -909,13 +1122,19 @@ namespace OpenSim.Region.Framework.Scenes | |||
909 | /// <param name="datastore"></param> | 1122 | /// <param name="datastore"></param> |
910 | public void ProcessInventoryBackup(ISimulationDataService datastore) | 1123 | public void ProcessInventoryBackup(ISimulationDataService datastore) |
911 | { | 1124 | { |
912 | if (HasInventoryChanged) | 1125 | // Removed this because linking will cause an immediate delete of the new |
913 | { | 1126 | // child prim from the database and the subsequent storing of the prim sees |
914 | HasInventoryChanged = false; | 1127 | // the inventory of it as unchanged and doesn't store it at all. The overhead |
915 | List<TaskInventoryItem> items = GetInventoryItems(); | 1128 | // of storing prim inventory needlessly is much less than the aggravation |
916 | datastore.StorePrimInventory(m_part.UUID, items); | 1129 | // of prim inventory loss. |
1130 | // if (HasInventoryChanged) | ||
1131 | // { | ||
1132 | Items.LockItemsForRead(true); | ||
1133 | datastore.StorePrimInventory(m_part.UUID, Items.Values); | ||
1134 | Items.LockItemsForRead(false); | ||
917 | 1135 | ||
918 | } | 1136 | HasInventoryChanged = false; |
1137 | // } | ||
919 | } | 1138 | } |
920 | 1139 | ||
921 | public class InventoryStringBuilder | 1140 | public class InventoryStringBuilder |
@@ -981,82 +1200,63 @@ namespace OpenSim.Region.Framework.Scenes | |||
981 | { | 1200 | { |
982 | uint mask=0x7fffffff; | 1201 | uint mask=0x7fffffff; |
983 | 1202 | ||
984 | lock (m_items) | 1203 | foreach (TaskInventoryItem item in m_items.Values) |
985 | { | 1204 | { |
986 | foreach (TaskInventoryItem item in m_items.Values) | 1205 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Copy) == 0) |
1206 | mask &= ~((uint)PermissionMask.Copy >> 13); | ||
1207 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Transfer) == 0) | ||
1208 | mask &= ~((uint)PermissionMask.Transfer >> 13); | ||
1209 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Modify) == 0) | ||
1210 | mask &= ~((uint)PermissionMask.Modify >> 13); | ||
1211 | |||
1212 | if (item.InvType == (int)InventoryType.Object) | ||
987 | { | 1213 | { |
988 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Copy) == 0) | 1214 | if ((item.CurrentPermissions & ((uint)PermissionMask.Copy >> 13)) == 0) |
989 | mask &= ~((uint)PermissionMask.Copy >> 13); | 1215 | mask &= ~((uint)PermissionMask.Copy >> 13); |
990 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Transfer) == 0) | 1216 | if ((item.CurrentPermissions & ((uint)PermissionMask.Transfer >> 13)) == 0) |
991 | mask &= ~((uint)PermissionMask.Transfer >> 13); | 1217 | mask &= ~((uint)PermissionMask.Transfer >> 13); |
992 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Modify) == 0) | 1218 | if ((item.CurrentPermissions & ((uint)PermissionMask.Modify >> 13)) == 0) |
993 | mask &= ~((uint)PermissionMask.Modify >> 13); | 1219 | mask &= ~((uint)PermissionMask.Modify >> 13); |
994 | |||
995 | if (item.InvType != (int)InventoryType.Object) | ||
996 | { | ||
997 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Copy) == 0) | ||
998 | mask &= ~((uint)PermissionMask.Copy >> 13); | ||
999 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Transfer) == 0) | ||
1000 | mask &= ~((uint)PermissionMask.Transfer >> 13); | ||
1001 | if ((item.CurrentPermissions & item.NextPermissions & (uint)PermissionMask.Modify) == 0) | ||
1002 | mask &= ~((uint)PermissionMask.Modify >> 13); | ||
1003 | } | ||
1004 | else | ||
1005 | { | ||
1006 | if ((item.CurrentPermissions & ((uint)PermissionMask.Copy >> 13)) == 0) | ||
1007 | mask &= ~((uint)PermissionMask.Copy >> 13); | ||
1008 | if ((item.CurrentPermissions & ((uint)PermissionMask.Transfer >> 13)) == 0) | ||
1009 | mask &= ~((uint)PermissionMask.Transfer >> 13); | ||
1010 | if ((item.CurrentPermissions & ((uint)PermissionMask.Modify >> 13)) == 0) | ||
1011 | mask &= ~((uint)PermissionMask.Modify >> 13); | ||
1012 | } | ||
1013 | |||
1014 | if ((item.CurrentPermissions & (uint)PermissionMask.Copy) == 0) | ||
1015 | mask &= ~(uint)PermissionMask.Copy; | ||
1016 | if ((item.CurrentPermissions & (uint)PermissionMask.Transfer) == 0) | ||
1017 | mask &= ~(uint)PermissionMask.Transfer; | ||
1018 | if ((item.CurrentPermissions & (uint)PermissionMask.Modify) == 0) | ||
1019 | mask &= ~(uint)PermissionMask.Modify; | ||
1020 | } | 1220 | } |
1221 | |||
1222 | if ((item.CurrentPermissions & (uint)PermissionMask.Copy) == 0) | ||
1223 | mask &= ~(uint)PermissionMask.Copy; | ||
1224 | if ((item.CurrentPermissions & (uint)PermissionMask.Transfer) == 0) | ||
1225 | mask &= ~(uint)PermissionMask.Transfer; | ||
1226 | if ((item.CurrentPermissions & (uint)PermissionMask.Modify) == 0) | ||
1227 | mask &= ~(uint)PermissionMask.Modify; | ||
1021 | } | 1228 | } |
1022 | |||
1023 | return mask; | 1229 | return mask; |
1024 | } | 1230 | } |
1025 | 1231 | ||
1026 | public void ApplyNextOwnerPermissions() | 1232 | public void ApplyNextOwnerPermissions() |
1027 | { | 1233 | { |
1028 | lock (m_items) | 1234 | foreach (TaskInventoryItem item in m_items.Values) |
1029 | { | 1235 | { |
1030 | foreach (TaskInventoryItem item in m_items.Values) | 1236 | if (item.InvType == (int)InventoryType.Object && (item.CurrentPermissions & 7) != 0) |
1031 | { | 1237 | { |
1032 | if (item.InvType == (int)InventoryType.Object && (item.CurrentPermissions & 7) != 0) | 1238 | if ((item.CurrentPermissions & ((uint)PermissionMask.Copy >> 13)) == 0) |
1033 | { | 1239 | item.CurrentPermissions &= ~(uint)PermissionMask.Copy; |
1034 | if ((item.CurrentPermissions & ((uint)PermissionMask.Copy >> 13)) == 0) | 1240 | if ((item.CurrentPermissions & ((uint)PermissionMask.Transfer >> 13)) == 0) |
1035 | item.CurrentPermissions &= ~(uint)PermissionMask.Copy; | 1241 | item.CurrentPermissions &= ~(uint)PermissionMask.Transfer; |
1036 | if ((item.CurrentPermissions & ((uint)PermissionMask.Transfer >> 13)) == 0) | 1242 | if ((item.CurrentPermissions & ((uint)PermissionMask.Modify >> 13)) == 0) |
1037 | item.CurrentPermissions &= ~(uint)PermissionMask.Transfer; | 1243 | item.CurrentPermissions &= ~(uint)PermissionMask.Modify; |
1038 | if ((item.CurrentPermissions & ((uint)PermissionMask.Modify >> 13)) == 0) | ||
1039 | item.CurrentPermissions &= ~(uint)PermissionMask.Modify; | ||
1040 | } | ||
1041 | item.CurrentPermissions &= item.NextPermissions; | ||
1042 | item.BasePermissions &= item.NextPermissions; | ||
1043 | item.EveryonePermissions &= item.NextPermissions; | ||
1044 | item.OwnerChanged = true; | ||
1045 | item.PermsMask = 0; | ||
1046 | item.PermsGranter = UUID.Zero; | ||
1047 | } | 1244 | } |
1245 | item.OwnerChanged = true; | ||
1246 | item.CurrentPermissions &= item.NextPermissions; | ||
1247 | item.BasePermissions &= item.NextPermissions; | ||
1248 | item.EveryonePermissions &= item.NextPermissions; | ||
1249 | item.PermsMask = 0; | ||
1250 | item.PermsGranter = UUID.Zero; | ||
1048 | } | 1251 | } |
1049 | } | 1252 | } |
1050 | 1253 | ||
1051 | public void ApplyGodPermissions(uint perms) | 1254 | public void ApplyGodPermissions(uint perms) |
1052 | { | 1255 | { |
1053 | lock (m_items) | 1256 | foreach (TaskInventoryItem item in m_items.Values) |
1054 | { | 1257 | { |
1055 | foreach (TaskInventoryItem item in m_items.Values) | 1258 | item.CurrentPermissions = perms; |
1056 | { | 1259 | item.BasePermissions = perms; |
1057 | item.CurrentPermissions = perms; | ||
1058 | item.BasePermissions = perms; | ||
1059 | } | ||
1060 | } | 1260 | } |
1061 | 1261 | ||
1062 | m_inventorySerial++; | 1262 | m_inventorySerial++; |
@@ -1069,17 +1269,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
1069 | /// <returns></returns> | 1269 | /// <returns></returns> |
1070 | public bool ContainsScripts() | 1270 | public bool ContainsScripts() |
1071 | { | 1271 | { |
1072 | lock (m_items) | 1272 | foreach (TaskInventoryItem item in m_items.Values) |
1073 | { | 1273 | { |
1074 | foreach (TaskInventoryItem item in m_items.Values) | 1274 | if (item.InvType == (int)InventoryType.LSL) |
1075 | { | 1275 | { |
1076 | if (item.InvType == (int)InventoryType.LSL) | 1276 | return true; |
1077 | { | ||
1078 | return true; | ||
1079 | } | ||
1080 | } | 1277 | } |
1081 | } | 1278 | } |
1082 | |||
1083 | return false; | 1279 | return false; |
1084 | } | 1280 | } |
1085 | 1281 | ||
@@ -1087,11 +1283,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1087 | { | 1283 | { |
1088 | List<UUID> ret = new List<UUID>(); | 1284 | List<UUID> ret = new List<UUID>(); |
1089 | 1285 | ||
1090 | lock (m_items) | 1286 | foreach (TaskInventoryItem item in m_items.Values) |
1091 | { | 1287 | ret.Add(item.ItemID); |
1092 | foreach (TaskInventoryItem item in m_items.Values) | ||
1093 | ret.Add(item.ItemID); | ||
1094 | } | ||
1095 | 1288 | ||
1096 | return ret; | 1289 | return ret; |
1097 | } | 1290 | } |
@@ -1122,6 +1315,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1122 | 1315 | ||
1123 | public Dictionary<UUID, string> GetScriptStates() | 1316 | public Dictionary<UUID, string> GetScriptStates() |
1124 | { | 1317 | { |
1318 | return GetScriptStates(false); | ||
1319 | } | ||
1320 | |||
1321 | public Dictionary<UUID, string> GetScriptStates(bool oldIDs) | ||
1322 | { | ||
1125 | Dictionary<UUID, string> ret = new Dictionary<UUID, string>(); | 1323 | Dictionary<UUID, string> ret = new Dictionary<UUID, string>(); |
1126 | 1324 | ||
1127 | if (m_part.ParentGroup.Scene == null) // Group not in a scene | 1325 | if (m_part.ParentGroup.Scene == null) // Group not in a scene |
@@ -1132,25 +1330,35 @@ namespace OpenSim.Region.Framework.Scenes | |||
1132 | if (engines.Length == 0) // No engine at all | 1330 | if (engines.Length == 0) // No engine at all |
1133 | return ret; | 1331 | return ret; |
1134 | 1332 | ||
1135 | List<TaskInventoryItem> scripts = GetInventoryScripts(); | 1333 | Items.LockItemsForRead(true); |
1136 | 1334 | foreach (TaskInventoryItem item in m_items.Values) | |
1137 | foreach (TaskInventoryItem item in scripts) | ||
1138 | { | 1335 | { |
1139 | foreach (IScriptModule e in engines) | 1336 | if (item.InvType == (int)InventoryType.LSL) |
1140 | { | 1337 | { |
1141 | if (e != null) | 1338 | foreach (IScriptModule e in engines) |
1142 | { | 1339 | { |
1143 | string n = e.GetXMLState(item.ItemID); | 1340 | if (e != null) |
1144 | if (n != String.Empty) | ||
1145 | { | 1341 | { |
1146 | if (!ret.ContainsKey(item.ItemID)) | 1342 | string n = e.GetXMLState(item.ItemID); |
1147 | ret[item.ItemID] = n; | 1343 | if (n != String.Empty) |
1148 | break; | 1344 | { |
1345 | if (oldIDs) | ||
1346 | { | ||
1347 | if (!ret.ContainsKey(item.OldItemID)) | ||
1348 | ret[item.OldItemID] = n; | ||
1349 | } | ||
1350 | else | ||
1351 | { | ||
1352 | if (!ret.ContainsKey(item.ItemID)) | ||
1353 | ret[item.ItemID] = n; | ||
1354 | } | ||
1355 | break; | ||
1356 | } | ||
1149 | } | 1357 | } |
1150 | } | 1358 | } |
1151 | } | 1359 | } |
1152 | } | 1360 | } |
1153 | 1361 | Items.LockItemsForRead(false); | |
1154 | return ret; | 1362 | return ret; |
1155 | } | 1363 | } |
1156 | 1364 | ||
@@ -1160,21 +1368,27 @@ namespace OpenSim.Region.Framework.Scenes | |||
1160 | if (engines.Length == 0) | 1368 | if (engines.Length == 0) |
1161 | return; | 1369 | return; |
1162 | 1370 | ||
1163 | List<TaskInventoryItem> scripts = GetInventoryScripts(); | ||
1164 | 1371 | ||
1165 | foreach (TaskInventoryItem item in scripts) | 1372 | Items.LockItemsForRead(true); |
1373 | |||
1374 | foreach (TaskInventoryItem item in m_items.Values) | ||
1166 | { | 1375 | { |
1167 | foreach (IScriptModule engine in engines) | 1376 | if (item.InvType == (int)InventoryType.LSL) |
1168 | { | 1377 | { |
1169 | if (engine != null) | 1378 | foreach (IScriptModule engine in engines) |
1170 | { | 1379 | { |
1171 | if (item.OwnerChanged) | 1380 | if (engine != null) |
1172 | engine.PostScriptEvent(item.ItemID, "changed", new Object[] { (int)Changed.OWNER }); | 1381 | { |
1173 | item.OwnerChanged = false; | 1382 | if (item.OwnerChanged) |
1174 | engine.ResumeScript(item.ItemID); | 1383 | engine.PostScriptEvent(item.ItemID, "changed", new Object[] { (int)Changed.OWNER }); |
1384 | item.OwnerChanged = false; | ||
1385 | engine.ResumeScript(item.ItemID); | ||
1386 | } | ||
1175 | } | 1387 | } |
1176 | } | 1388 | } |
1177 | } | 1389 | } |
1390 | |||
1391 | Items.LockItemsForRead(false); | ||
1178 | } | 1392 | } |
1179 | } | 1393 | } |
1180 | } | 1394 | } |
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 9cad3fe..f5b37d3 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -118,7 +118,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
118 | /// TODO: For some reason, we effectively have a list both here and in Appearance. Need to work out if this is | 118 | /// TODO: For some reason, we effectively have a list both here and in Appearance. Need to work out if this is |
119 | /// necessary. | 119 | /// necessary. |
120 | /// </remarks> | 120 | /// </remarks> |
121 | protected List<SceneObjectGroup> m_attachments = new List<SceneObjectGroup>(); | 121 | private List<SceneObjectGroup> m_attachments = new List<SceneObjectGroup>(); |
122 | 122 | ||
123 | public Object AttachmentsSyncLock { get; private set; } | 123 | public Object AttachmentsSyncLock { get; private set; } |
124 | 124 | ||
@@ -167,6 +167,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
167 | // private int m_lastColCount = -1; //KF: Look for Collision chnages | 167 | // private int m_lastColCount = -1; //KF: Look for Collision chnages |
168 | // private int m_updateCount = 0; //KF: Update Anims for a while | 168 | // private int m_updateCount = 0; //KF: Update Anims for a while |
169 | // private static readonly int UPDATE_COUNT = 10; // how many frames to update for | 169 | // private static readonly int UPDATE_COUNT = 10; // how many frames to update for |
170 | private List<uint> m_lastColliders = new List<uint>(); | ||
170 | 171 | ||
171 | private TeleportFlags m_teleportFlags; | 172 | private TeleportFlags m_teleportFlags; |
172 | public TeleportFlags TeleportFlags | 173 | public TeleportFlags TeleportFlags |
@@ -228,6 +229,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
228 | //private int m_moveToPositionStateStatus; | 229 | //private int m_moveToPositionStateStatus; |
229 | //***************************************************** | 230 | //***************************************************** |
230 | 231 | ||
232 | private bool m_collisionEventFlag = false; | ||
233 | private object m_collisionEventLock = new Object(); | ||
234 | |||
231 | protected AvatarAppearance m_appearance; | 235 | protected AvatarAppearance m_appearance; |
232 | 236 | ||
233 | public AvatarAppearance Appearance | 237 | public AvatarAppearance Appearance |
@@ -550,8 +554,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
550 | } | 554 | } |
551 | } | 555 | } |
552 | 556 | ||
553 | m_pos = value; | 557 | // Don't update while sitting |
554 | ParentPosition = Vector3.Zero; | 558 | if (ParentID == 0) |
559 | { | ||
560 | m_pos = value; | ||
561 | ParentPosition = Vector3.Zero; | ||
562 | } | ||
555 | 563 | ||
556 | //m_log.DebugFormat( | 564 | //m_log.DebugFormat( |
557 | // "[ENTITY BASE]: In {0} set AbsolutePosition of {1} to {2}", | 565 | // "[ENTITY BASE]: In {0} set AbsolutePosition of {1} to {2}", |
@@ -566,6 +574,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
566 | public Vector3 OffsetPosition | 574 | public Vector3 OffsetPosition |
567 | { | 575 | { |
568 | get { return m_pos; } | 576 | get { return m_pos; } |
577 | set | ||
578 | { | ||
579 | // There is no offset position when not seated | ||
580 | if (ParentID == 0) | ||
581 | return; | ||
582 | m_pos = value; | ||
583 | } | ||
569 | } | 584 | } |
570 | 585 | ||
571 | /// <summary> | 586 | /// <summary> |
@@ -879,6 +894,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
879 | pos.Y = crossedBorder.BorderLine.Z - 1; | 894 | pos.Y = crossedBorder.BorderLine.Z - 1; |
880 | } | 895 | } |
881 | 896 | ||
897 | CheckAndAdjustLandingPoint(ref pos); | ||
898 | |||
882 | if (pos.X < 0f || pos.Y < 0f || pos.Z < 0f) | 899 | if (pos.X < 0f || pos.Y < 0f || pos.Z < 0f) |
883 | { | 900 | { |
884 | m_log.WarnFormat( | 901 | m_log.WarnFormat( |
@@ -1043,6 +1060,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1043 | bool isFlying = Flying; | 1060 | bool isFlying = Flying; |
1044 | RemoveFromPhysicalScene(); | 1061 | RemoveFromPhysicalScene(); |
1045 | Velocity = Vector3.Zero; | 1062 | Velocity = Vector3.Zero; |
1063 | CheckLandingPoint(ref pos); | ||
1046 | AbsolutePosition = pos; | 1064 | AbsolutePosition = pos; |
1047 | AddToPhysicalScene(isFlying); | 1065 | AddToPhysicalScene(isFlying); |
1048 | 1066 | ||
@@ -1053,6 +1071,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1053 | { | 1071 | { |
1054 | bool isFlying = Flying; | 1072 | bool isFlying = Flying; |
1055 | RemoveFromPhysicalScene(); | 1073 | RemoveFromPhysicalScene(); |
1074 | CheckLandingPoint(ref pos); | ||
1056 | AbsolutePosition = pos; | 1075 | AbsolutePosition = pos; |
1057 | AddToPhysicalScene(isFlying); | 1076 | AddToPhysicalScene(isFlying); |
1058 | 1077 | ||
@@ -1818,6 +1837,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1818 | if (part.SitTargetAvatar == UUID) | 1837 | if (part.SitTargetAvatar == UUID) |
1819 | part.SitTargetAvatar = UUID.Zero; | 1838 | part.SitTargetAvatar = UUID.Zero; |
1820 | 1839 | ||
1840 | part.ParentGroup.DeleteAvatar(UUID); | ||
1821 | ParentPosition = part.GetWorldPosition(); | 1841 | ParentPosition = part.GetWorldPosition(); |
1822 | ControllingClient.SendClearFollowCamProperties(part.ParentUUID); | 1842 | ControllingClient.SendClearFollowCamProperties(part.ParentUUID); |
1823 | } | 1843 | } |
@@ -2241,11 +2261,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
2241 | m_pos = sitTargetPos + SIT_TARGET_ADJUSTMENT; | 2261 | m_pos = sitTargetPos + SIT_TARGET_ADJUSTMENT; |
2242 | Rotation = sitTargetOrient; | 2262 | Rotation = sitTargetOrient; |
2243 | ParentPosition = part.AbsolutePosition; | 2263 | ParentPosition = part.AbsolutePosition; |
2264 | part.ParentGroup.AddAvatar(UUID); | ||
2244 | } | 2265 | } |
2245 | else | 2266 | else |
2246 | { | 2267 | { |
2247 | m_pos -= part.AbsolutePosition; | 2268 | m_pos -= part.AbsolutePosition; |
2248 | ParentPosition = part.AbsolutePosition; | 2269 | ParentPosition = part.AbsolutePosition; |
2270 | part.ParentGroup.AddAvatar(UUID); | ||
2249 | 2271 | ||
2250 | // m_log.DebugFormat( | 2272 | // m_log.DebugFormat( |
2251 | // "[SCENE PRESENCE]: Sitting {0} at position {1} ({2} + {3}) on part {4} {5} without sit target", | 2273 | // "[SCENE PRESENCE]: Sitting {0} at position {1} ({2} + {3}) on part {4} {5} without sit target", |
@@ -2744,6 +2766,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
2744 | if (IsChildAgent) | 2766 | if (IsChildAgent) |
2745 | return; | 2767 | return; |
2746 | 2768 | ||
2769 | if (ParentID != 0) | ||
2770 | return; | ||
2771 | |||
2747 | Vector3 pos2 = AbsolutePosition; | 2772 | Vector3 pos2 = AbsolutePosition; |
2748 | Vector3 vel = Velocity; | 2773 | Vector3 vel = Velocity; |
2749 | int neighbor = 0; | 2774 | int neighbor = 0; |
@@ -3104,30 +3129,28 @@ namespace OpenSim.Region.Framework.Scenes | |||
3104 | catch { } | 3129 | catch { } |
3105 | 3130 | ||
3106 | // Attachment objects | 3131 | // Attachment objects |
3107 | lock (m_attachments) | 3132 | List<SceneObjectGroup> attachments = GetAttachments(); |
3133 | if (attachments.Count > 0) | ||
3108 | { | 3134 | { |
3109 | if (m_attachments.Count > 0) | 3135 | cAgent.AttachmentObjects = new List<ISceneObject>(); |
3110 | { | 3136 | cAgent.AttachmentObjectStates = new List<string>(); |
3111 | cAgent.AttachmentObjects = new List<ISceneObject>(); | 3137 | // IScriptModule se = m_scene.RequestModuleInterface<IScriptModule>(); |
3112 | cAgent.AttachmentObjectStates = new List<string>(); | 3138 | InTransitScriptStates.Clear(); |
3113 | // IScriptModule se = m_scene.RequestModuleInterface<IScriptModule>(); | ||
3114 | InTransitScriptStates.Clear(); | ||
3115 | 3139 | ||
3116 | foreach (SceneObjectGroup sog in m_attachments) | 3140 | foreach (SceneObjectGroup sog in attachments) |
3117 | { | 3141 | { |
3118 | // We need to make a copy and pass that copy | 3142 | // We need to make a copy and pass that copy |
3119 | // because of transfers withn the same sim | 3143 | // because of transfers withn the same sim |
3120 | ISceneObject clone = sog.CloneForNewScene(); | 3144 | ISceneObject clone = sog.CloneForNewScene(); |
3121 | // Attachment module assumes that GroupPosition holds the offsets...! | 3145 | // Attachment module assumes that GroupPosition holds the offsets...! |
3122 | ((SceneObjectGroup)clone).RootPart.GroupPosition = sog.RootPart.AttachedPos; | 3146 | ((SceneObjectGroup)clone).RootPart.GroupPosition = sog.RootPart.AttachedPos; |
3123 | ((SceneObjectGroup)clone).IsAttachment = false; | 3147 | ((SceneObjectGroup)clone).IsAttachment = false; |
3124 | cAgent.AttachmentObjects.Add(clone); | 3148 | cAgent.AttachmentObjects.Add(clone); |
3125 | string state = sog.GetStateSnapshot(); | 3149 | string state = sog.GetStateSnapshot(); |
3126 | cAgent.AttachmentObjectStates.Add(state); | 3150 | cAgent.AttachmentObjectStates.Add(state); |
3127 | InTransitScriptStates.Add(state); | 3151 | InTransitScriptStates.Add(state); |
3128 | // Let's remove the scripts of the original object here | 3152 | // Let's remove the scripts of the original object here |
3129 | sog.RemoveScriptInstances(true); | 3153 | sog.RemoveScriptInstances(true); |
3130 | } | ||
3131 | } | 3154 | } |
3132 | } | 3155 | } |
3133 | } | 3156 | } |
@@ -3350,6 +3373,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
3350 | } | 3373 | } |
3351 | } | 3374 | } |
3352 | 3375 | ||
3376 | RaiseCollisionScriptEvents(coldata); | ||
3377 | |||
3353 | if (Invulnerable) | 3378 | if (Invulnerable) |
3354 | return; | 3379 | return; |
3355 | 3380 | ||
@@ -3535,26 +3560,29 @@ namespace OpenSim.Region.Framework.Scenes | |||
3535 | /// <param name="args">The arguments for the event</param> | 3560 | /// <param name="args">The arguments for the event</param> |
3536 | public void SendScriptEventToAttachments(string eventName, Object[] args) | 3561 | public void SendScriptEventToAttachments(string eventName, Object[] args) |
3537 | { | 3562 | { |
3538 | if (m_scriptEngines.Length == 0) | 3563 | Util.FireAndForget(delegate(object x) |
3539 | return; | ||
3540 | |||
3541 | lock (m_attachments) | ||
3542 | { | 3564 | { |
3543 | foreach (SceneObjectGroup grp in m_attachments) | 3565 | if (m_scriptEngines.Length == 0) |
3566 | return; | ||
3567 | |||
3568 | lock (m_attachments) | ||
3544 | { | 3569 | { |
3545 | // 16384 is CHANGED_ANIMATION | 3570 | foreach (SceneObjectGroup grp in m_attachments) |
3546 | // | ||
3547 | // Send this to all attachment root prims | ||
3548 | // | ||
3549 | foreach (IScriptModule m in m_scriptEngines) | ||
3550 | { | 3571 | { |
3551 | if (m == null) // No script engine loaded | 3572 | // 16384 is CHANGED_ANIMATION |
3552 | continue; | 3573 | // |
3574 | // Send this to all attachment root prims | ||
3575 | // | ||
3576 | foreach (IScriptModule m in m_scriptEngines) | ||
3577 | { | ||
3578 | if (m == null) // No script engine loaded | ||
3579 | continue; | ||
3553 | 3580 | ||
3554 | m.PostObjectEvent(grp.RootPart.UUID, "changed", new Object[] { (int)Changed.ANIMATION }); | 3581 | m.PostObjectEvent(grp.RootPart.UUID, "changed", new Object[] { (int)Changed.ANIMATION }); |
3582 | } | ||
3555 | } | 3583 | } |
3556 | } | 3584 | } |
3557 | } | 3585 | }); |
3558 | } | 3586 | } |
3559 | 3587 | ||
3560 | internal void PushForce(Vector3 impulse) | 3588 | internal void PushForce(Vector3 impulse) |
@@ -3786,5 +3814,221 @@ namespace OpenSim.Region.Framework.Scenes | |||
3786 | m_reprioritization_called = false; | 3814 | m_reprioritization_called = false; |
3787 | } | 3815 | } |
3788 | } | 3816 | } |
3817 | |||
3818 | private void CheckLandingPoint(ref Vector3 pos) | ||
3819 | { | ||
3820 | // Never constrain lures | ||
3821 | if ((TeleportFlags & TeleportFlags.ViaLure) != 0) | ||
3822 | return; | ||
3823 | |||
3824 | if (m_scene.RegionInfo.EstateSettings.AllowDirectTeleport) | ||
3825 | return; | ||
3826 | |||
3827 | ILandObject land = m_scene.LandChannel.GetLandObject(pos.X, pos.Y); | ||
3828 | |||
3829 | if (land.LandData.LandingType == (byte)LandingType.LandingPoint && | ||
3830 | land.LandData.UserLocation != Vector3.Zero && | ||
3831 | land.LandData.OwnerID != m_uuid && | ||
3832 | (!m_scene.Permissions.IsGod(m_uuid)) && | ||
3833 | (!m_scene.RegionInfo.EstateSettings.IsEstateManager(m_uuid))) | ||
3834 | { | ||
3835 | float curr = Vector3.Distance(AbsolutePosition, pos); | ||
3836 | if (Vector3.Distance(land.LandData.UserLocation, pos) < curr) | ||
3837 | pos = land.LandData.UserLocation; | ||
3838 | else | ||
3839 | ControllingClient.SendAlertMessage("Can't teleport closer to destination"); | ||
3840 | } | ||
3841 | } | ||
3842 | |||
3843 | private void CheckAndAdjustLandingPoint(ref Vector3 pos) | ||
3844 | { | ||
3845 | ILandObject land = m_scene.LandChannel.GetLandObject(pos.X, pos.Y); | ||
3846 | if (land != null) | ||
3847 | { | ||
3848 | // If we come in via login, landmark or map, we want to | ||
3849 | // honor landing points. If we come in via Lure, we want | ||
3850 | // to ignore them. | ||
3851 | if ((m_teleportFlags & (TeleportFlags.ViaLogin | TeleportFlags.ViaRegionID)) == (TeleportFlags.ViaLogin | TeleportFlags.ViaRegionID) || | ||
3852 | (m_teleportFlags & TeleportFlags.ViaLandmark) != 0 || | ||
3853 | (m_teleportFlags & TeleportFlags.ViaLocation) != 0) | ||
3854 | { | ||
3855 | // Don't restrict gods, estate managers, or land owners to | ||
3856 | // the TP point. This behaviour mimics agni. | ||
3857 | if (land.LandData.LandingType == (byte)LandingType.LandingPoint && | ||
3858 | land.LandData.UserLocation != Vector3.Zero && | ||
3859 | GodLevel < 200 && | ||
3860 | ((land.LandData.OwnerID != m_uuid && | ||
3861 | (!m_scene.Permissions.IsGod(m_uuid)) && | ||
3862 | (!m_scene.RegionInfo.EstateSettings.IsEstateManager(m_uuid))) || (m_teleportFlags & TeleportFlags.ViaLocation) != 0)) | ||
3863 | { | ||
3864 | pos = land.LandData.UserLocation; | ||
3865 | } | ||
3866 | } | ||
3867 | |||
3868 | land.SendLandUpdateToClient(ControllingClient); | ||
3869 | } | ||
3870 | } | ||
3871 | |||
3872 | private void RaiseCollisionScriptEvents(Dictionary<uint, ContactPoint> coldata) | ||
3873 | { | ||
3874 | lock(m_collisionEventLock) | ||
3875 | { | ||
3876 | if (m_collisionEventFlag) | ||
3877 | return; | ||
3878 | m_collisionEventFlag = true; | ||
3879 | } | ||
3880 | |||
3881 | Util.FireAndForget(delegate(object x) | ||
3882 | { | ||
3883 | try | ||
3884 | { | ||
3885 | List<uint> thisHitColliders = new List<uint>(); | ||
3886 | List<uint> endedColliders = new List<uint>(); | ||
3887 | List<uint> startedColliders = new List<uint>(); | ||
3888 | |||
3889 | foreach (uint localid in coldata.Keys) | ||
3890 | { | ||
3891 | thisHitColliders.Add(localid); | ||
3892 | if (!m_lastColliders.Contains(localid)) | ||
3893 | { | ||
3894 | startedColliders.Add(localid); | ||
3895 | } | ||
3896 | //m_log.Debug("[SCENE PRESENCE]: Collided with:" + localid.ToString() + " at depth of: " + collissionswith[localid].ToString()); | ||
3897 | } | ||
3898 | |||
3899 | // calculate things that ended colliding | ||
3900 | foreach (uint localID in m_lastColliders) | ||
3901 | { | ||
3902 | if (!thisHitColliders.Contains(localID)) | ||
3903 | { | ||
3904 | endedColliders.Add(localID); | ||
3905 | } | ||
3906 | } | ||
3907 | //add the items that started colliding this time to the last colliders list. | ||
3908 | foreach (uint localID in startedColliders) | ||
3909 | { | ||
3910 | m_lastColliders.Add(localID); | ||
3911 | } | ||
3912 | // remove things that ended colliding from the last colliders list | ||
3913 | foreach (uint localID in endedColliders) | ||
3914 | { | ||
3915 | m_lastColliders.Remove(localID); | ||
3916 | } | ||
3917 | |||
3918 | // do event notification | ||
3919 | if (startedColliders.Count > 0) | ||
3920 | { | ||
3921 | ColliderArgs StartCollidingMessage = new ColliderArgs(); | ||
3922 | List<DetectedObject> colliding = new List<DetectedObject>(); | ||
3923 | foreach (uint localId in startedColliders) | ||
3924 | { | ||
3925 | if (localId == 0) | ||
3926 | continue; | ||
3927 | |||
3928 | SceneObjectPart obj = Scene.GetSceneObjectPart(localId); | ||
3929 | string data = ""; | ||
3930 | if (obj != null) | ||
3931 | { | ||
3932 | DetectedObject detobj = new DetectedObject(); | ||
3933 | detobj.keyUUID = obj.UUID; | ||
3934 | detobj.nameStr = obj.Name; | ||
3935 | detobj.ownerUUID = obj.OwnerID; | ||
3936 | detobj.posVector = obj.AbsolutePosition; | ||
3937 | detobj.rotQuat = obj.GetWorldRotation(); | ||
3938 | detobj.velVector = obj.Velocity; | ||
3939 | detobj.colliderType = 0; | ||
3940 | detobj.groupUUID = obj.GroupID; | ||
3941 | colliding.Add(detobj); | ||
3942 | } | ||
3943 | } | ||
3944 | |||
3945 | if (colliding.Count > 0) | ||
3946 | { | ||
3947 | StartCollidingMessage.Colliders = colliding; | ||
3948 | |||
3949 | foreach (SceneObjectGroup att in GetAttachments()) | ||
3950 | Scene.EventManager.TriggerScriptCollidingStart(att.LocalId, StartCollidingMessage); | ||
3951 | } | ||
3952 | } | ||
3953 | |||
3954 | if (endedColliders.Count > 0) | ||
3955 | { | ||
3956 | ColliderArgs EndCollidingMessage = new ColliderArgs(); | ||
3957 | List<DetectedObject> colliding = new List<DetectedObject>(); | ||
3958 | foreach (uint localId in endedColliders) | ||
3959 | { | ||
3960 | if (localId == 0) | ||
3961 | continue; | ||
3962 | |||
3963 | SceneObjectPart obj = Scene.GetSceneObjectPart(localId); | ||
3964 | string data = ""; | ||
3965 | if (obj != null) | ||
3966 | { | ||
3967 | DetectedObject detobj = new DetectedObject(); | ||
3968 | detobj.keyUUID = obj.UUID; | ||
3969 | detobj.nameStr = obj.Name; | ||
3970 | detobj.ownerUUID = obj.OwnerID; | ||
3971 | detobj.posVector = obj.AbsolutePosition; | ||
3972 | detobj.rotQuat = obj.GetWorldRotation(); | ||
3973 | detobj.velVector = obj.Velocity; | ||
3974 | detobj.colliderType = 0; | ||
3975 | detobj.groupUUID = obj.GroupID; | ||
3976 | colliding.Add(detobj); | ||
3977 | } | ||
3978 | } | ||
3979 | |||
3980 | if (colliding.Count > 0) | ||
3981 | { | ||
3982 | EndCollidingMessage.Colliders = colliding; | ||
3983 | |||
3984 | foreach (SceneObjectGroup att in GetAttachments()) | ||
3985 | Scene.EventManager.TriggerScriptCollidingEnd(att.LocalId, EndCollidingMessage); | ||
3986 | } | ||
3987 | } | ||
3988 | |||
3989 | if (thisHitColliders.Count > 0) | ||
3990 | { | ||
3991 | ColliderArgs CollidingMessage = new ColliderArgs(); | ||
3992 | List<DetectedObject> colliding = new List<DetectedObject>(); | ||
3993 | foreach (uint localId in thisHitColliders) | ||
3994 | { | ||
3995 | if (localId == 0) | ||
3996 | continue; | ||
3997 | |||
3998 | SceneObjectPart obj = Scene.GetSceneObjectPart(localId); | ||
3999 | string data = ""; | ||
4000 | if (obj != null) | ||
4001 | { | ||
4002 | DetectedObject detobj = new DetectedObject(); | ||
4003 | detobj.keyUUID = obj.UUID; | ||
4004 | detobj.nameStr = obj.Name; | ||
4005 | detobj.ownerUUID = obj.OwnerID; | ||
4006 | detobj.posVector = obj.AbsolutePosition; | ||
4007 | detobj.rotQuat = obj.GetWorldRotation(); | ||
4008 | detobj.velVector = obj.Velocity; | ||
4009 | detobj.colliderType = 0; | ||
4010 | detobj.groupUUID = obj.GroupID; | ||
4011 | colliding.Add(detobj); | ||
4012 | } | ||
4013 | } | ||
4014 | |||
4015 | if (colliding.Count > 0) | ||
4016 | { | ||
4017 | CollidingMessage.Colliders = colliding; | ||
4018 | |||
4019 | lock (m_attachments) | ||
4020 | { | ||
4021 | foreach (SceneObjectGroup att in m_attachments) | ||
4022 | Scene.EventManager.TriggerScriptColliding(att.LocalId, CollidingMessage); | ||
4023 | } | ||
4024 | } | ||
4025 | } | ||
4026 | } | ||
4027 | finally | ||
4028 | { | ||
4029 | m_collisionEventFlag = false; | ||
4030 | } | ||
4031 | }); | ||
4032 | } | ||
3789 | } | 4033 | } |
3790 | } | 4034 | } |
diff --git a/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs b/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs index 60cc788..5f2f7d8 100644 --- a/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs +++ b/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs | |||
@@ -345,6 +345,9 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
345 | m_SOPXmlProcessors.Add("PayPrice2", ProcessPayPrice2); | 345 | m_SOPXmlProcessors.Add("PayPrice2", ProcessPayPrice2); |
346 | m_SOPXmlProcessors.Add("PayPrice3", ProcessPayPrice3); | 346 | m_SOPXmlProcessors.Add("PayPrice3", ProcessPayPrice3); |
347 | m_SOPXmlProcessors.Add("PayPrice4", ProcessPayPrice4); | 347 | m_SOPXmlProcessors.Add("PayPrice4", ProcessPayPrice4); |
348 | |||
349 | m_SOPXmlProcessors.Add("Buoyancy", ProcessBuoyancy); | ||
350 | m_SOPXmlProcessors.Add("VolumeDetectActive", ProcessVolumeDetectActive); | ||
348 | #endregion | 351 | #endregion |
349 | 352 | ||
350 | #region TaskInventoryXmlProcessors initialization | 353 | #region TaskInventoryXmlProcessors initialization |
@@ -729,6 +732,16 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
729 | obj.PayPrice[4] = (int)reader.ReadElementContentAsInt("PayPrice4", String.Empty); | 732 | obj.PayPrice[4] = (int)reader.ReadElementContentAsInt("PayPrice4", String.Empty); |
730 | } | 733 | } |
731 | 734 | ||
735 | private static void ProcessBuoyancy(SceneObjectPart obj, XmlTextReader reader) | ||
736 | { | ||
737 | obj.Buoyancy = (int)reader.ReadElementContentAsFloat("Buoyancy", String.Empty); | ||
738 | } | ||
739 | |||
740 | private static void ProcessVolumeDetectActive(SceneObjectPart obj, XmlTextReader reader) | ||
741 | { | ||
742 | obj.VolumeDetectActive = Util.ReadBoolean(reader); | ||
743 | } | ||
744 | |||
732 | #endregion | 745 | #endregion |
733 | 746 | ||
734 | #region TaskInventoryXmlProcessors | 747 | #region TaskInventoryXmlProcessors |
@@ -1212,6 +1225,9 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
1212 | writer.WriteElementString("PayPrice3", sop.PayPrice[3].ToString()); | 1225 | writer.WriteElementString("PayPrice3", sop.PayPrice[3].ToString()); |
1213 | writer.WriteElementString("PayPrice4", sop.PayPrice[4].ToString()); | 1226 | writer.WriteElementString("PayPrice4", sop.PayPrice[4].ToString()); |
1214 | 1227 | ||
1228 | writer.WriteElementString("Buoyancy", sop.Buoyancy.ToString()); | ||
1229 | writer.WriteElementString("VolumeDetectActive", sop.VolumeDetectActive.ToString().ToLower()); | ||
1230 | |||
1215 | writer.WriteEndElement(); | 1231 | writer.WriteEndElement(); |
1216 | } | 1232 | } |
1217 | 1233 | ||
@@ -1496,12 +1512,6 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
1496 | { | 1512 | { |
1497 | TaskInventoryDictionary tinv = new TaskInventoryDictionary(); | 1513 | TaskInventoryDictionary tinv = new TaskInventoryDictionary(); |
1498 | 1514 | ||
1499 | if (reader.IsEmptyElement) | ||
1500 | { | ||
1501 | reader.Read(); | ||
1502 | return tinv; | ||
1503 | } | ||
1504 | |||
1505 | reader.ReadStartElement(name, String.Empty); | 1515 | reader.ReadStartElement(name, String.Empty); |
1506 | 1516 | ||
1507 | while (reader.Name == "TaskInventoryItem") | 1517 | while (reader.Name == "TaskInventoryItem") |
@@ -1544,12 +1554,6 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
1544 | 1554 | ||
1545 | PrimitiveBaseShape shape = new PrimitiveBaseShape(); | 1555 | PrimitiveBaseShape shape = new PrimitiveBaseShape(); |
1546 | 1556 | ||
1547 | if (reader.IsEmptyElement) | ||
1548 | { | ||
1549 | reader.Read(); | ||
1550 | return shape; | ||
1551 | } | ||
1552 | |||
1553 | reader.ReadStartElement(name, String.Empty); // Shape | 1557 | reader.ReadStartElement(name, String.Empty); // Shape |
1554 | 1558 | ||
1555 | string nodeName = string.Empty; | 1559 | string nodeName = string.Empty; |
diff --git a/OpenSim/Region/Framework/Scenes/UndoState.cs b/OpenSim/Region/Framework/Scenes/UndoState.cs index 860172c..5ed3c79 100644 --- a/OpenSim/Region/Framework/Scenes/UndoState.cs +++ b/OpenSim/Region/Framework/Scenes/UndoState.cs | |||
@@ -30,12 +30,27 @@ using System.Reflection; | |||
30 | using log4net; | 30 | using log4net; |
31 | using OpenMetaverse; | 31 | using OpenMetaverse; |
32 | using OpenSim.Region.Framework.Interfaces; | 32 | using OpenSim.Region.Framework.Interfaces; |
33 | using System; | ||
33 | 34 | ||
34 | namespace OpenSim.Region.Framework.Scenes | 35 | namespace OpenSim.Region.Framework.Scenes |
35 | { | 36 | { |
37 | [Flags] | ||
38 | public enum UndoType | ||
39 | { | ||
40 | STATE_PRIM_POSITION = 1, | ||
41 | STATE_PRIM_ROTATION = 2, | ||
42 | STATE_PRIM_SCALE = 4, | ||
43 | STATE_PRIM_ALL = 7, | ||
44 | STATE_GROUP_POSITION = 8, | ||
45 | STATE_GROUP_ROTATION = 16, | ||
46 | STATE_GROUP_SCALE = 32, | ||
47 | STATE_GROUP_ALL = 56, | ||
48 | STATE_ALL = 63 | ||
49 | } | ||
50 | |||
36 | public class UndoState | 51 | public class UndoState |
37 | { | 52 | { |
38 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 53 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
39 | 54 | ||
40 | public Vector3 Position = Vector3.Zero; | 55 | public Vector3 Position = Vector3.Zero; |
41 | public Vector3 Scale = Vector3.Zero; | 56 | public Vector3 Scale = Vector3.Zero; |
@@ -57,37 +72,37 @@ namespace OpenSim.Region.Framework.Scenes | |||
57 | { | 72 | { |
58 | ForGroup = forGroup; | 73 | ForGroup = forGroup; |
59 | 74 | ||
60 | // if (ForGroup) | 75 | // if (ForGroup) |
61 | Position = part.ParentGroup.AbsolutePosition; | 76 | Position = part.ParentGroup.AbsolutePosition; |
62 | // else | 77 | // else |
63 | // Position = part.OffsetPosition; | 78 | // Position = part.OffsetPosition; |
64 | 79 | ||
65 | // m_log.DebugFormat( | 80 | // m_log.DebugFormat( |
66 | // "[UNDO STATE]: Storing undo position {0} for root part", Position); | 81 | // "[UNDO STATE]: Storing undo position {0} for root part", Position); |
67 | 82 | ||
68 | Rotation = part.RotationOffset; | 83 | Rotation = part.RotationOffset; |
69 | 84 | ||
70 | // m_log.DebugFormat( | 85 | // m_log.DebugFormat( |
71 | // "[UNDO STATE]: Storing undo rotation {0} for root part", Rotation); | 86 | // "[UNDO STATE]: Storing undo rotation {0} for root part", Rotation); |
72 | 87 | ||
73 | Scale = part.Shape.Scale; | 88 | Scale = part.Shape.Scale; |
74 | 89 | ||
75 | // m_log.DebugFormat( | 90 | // m_log.DebugFormat( |
76 | // "[UNDO STATE]: Storing undo scale {0} for root part", Scale); | 91 | // "[UNDO STATE]: Storing undo scale {0} for root part", Scale); |
77 | } | 92 | } |
78 | else | 93 | else |
79 | { | 94 | { |
80 | Position = part.OffsetPosition; | 95 | Position = part.OffsetPosition; |
81 | // m_log.DebugFormat( | 96 | // m_log.DebugFormat( |
82 | // "[UNDO STATE]: Storing undo position {0} for child part", Position); | 97 | // "[UNDO STATE]: Storing undo position {0} for child part", Position); |
83 | 98 | ||
84 | Rotation = part.RotationOffset; | 99 | Rotation = part.RotationOffset; |
85 | // m_log.DebugFormat( | 100 | // m_log.DebugFormat( |
86 | // "[UNDO STATE]: Storing undo rotation {0} for child part", Rotation); | 101 | // "[UNDO STATE]: Storing undo rotation {0} for child part", Rotation); |
87 | 102 | ||
88 | Scale = part.Shape.Scale; | 103 | Scale = part.Shape.Scale; |
89 | // m_log.DebugFormat( | 104 | // m_log.DebugFormat( |
90 | // "[UNDO STATE]: Storing undo scale {0} for child part", Scale); | 105 | // "[UNDO STATE]: Storing undo scale {0} for child part", Scale); |
91 | } | 106 | } |
92 | } | 107 | } |
93 | 108 | ||
@@ -121,9 +136,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
121 | 136 | ||
122 | if (part.ParentID == 0) | 137 | if (part.ParentID == 0) |
123 | { | 138 | { |
124 | // m_log.DebugFormat( | 139 | // m_log.DebugFormat( |
125 | // "[UNDO STATE]: Undoing position to {0} for root part {1} {2}", | 140 | // "[UNDO STATE]: Undoing position to {0} for root part {1} {2}", |
126 | // Position, part.Name, part.LocalId); | 141 | // Position, part.Name, part.LocalId); |
127 | 142 | ||
128 | if (Position != Vector3.Zero) | 143 | if (Position != Vector3.Zero) |
129 | { | 144 | { |
@@ -133,9 +148,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
133 | part.ParentGroup.UpdateRootPosition(Position); | 148 | part.ParentGroup.UpdateRootPosition(Position); |
134 | } | 149 | } |
135 | 150 | ||
136 | // m_log.DebugFormat( | 151 | // m_log.DebugFormat( |
137 | // "[UNDO STATE]: Undoing rotation {0} to {1} for root part {2} {3}", | 152 | // "[UNDO STATE]: Undoing rotation {0} to {1} for root part {2} {3}", |
138 | // part.RotationOffset, Rotation, part.Name, part.LocalId); | 153 | // part.RotationOffset, Rotation, part.Name, part.LocalId); |
139 | 154 | ||
140 | if (ForGroup) | 155 | if (ForGroup) |
141 | part.UpdateRotation(Rotation); | 156 | part.UpdateRotation(Rotation); |
@@ -144,9 +159,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
144 | 159 | ||
145 | if (Scale != Vector3.Zero) | 160 | if (Scale != Vector3.Zero) |
146 | { | 161 | { |
147 | // m_log.DebugFormat( | 162 | // m_log.DebugFormat( |
148 | // "[UNDO STATE]: Undoing scale {0} to {1} for root part {2} {3}", | 163 | // "[UNDO STATE]: Undoing scale {0} to {1} for root part {2} {3}", |
149 | // part.Shape.Scale, Scale, part.Name, part.LocalId); | 164 | // part.Shape.Scale, Scale, part.Name, part.LocalId); |
150 | 165 | ||
151 | if (ForGroup) | 166 | if (ForGroup) |
152 | part.ParentGroup.GroupResize(Scale); | 167 | part.ParentGroup.GroupResize(Scale); |
@@ -161,24 +176,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
161 | // Note: Updating these properties on sop automatically schedules an update if needed | 176 | // Note: Updating these properties on sop automatically schedules an update if needed |
162 | if (Position != Vector3.Zero) | 177 | if (Position != Vector3.Zero) |
163 | { | 178 | { |
164 | // m_log.DebugFormat( | 179 | // m_log.DebugFormat( |
165 | // "[UNDO STATE]: Undoing position {0} to {1} for child part {2} {3}", | 180 | // "[UNDO STATE]: Undoing position {0} to {1} for child part {2} {3}", |
166 | // part.OffsetPosition, Position, part.Name, part.LocalId); | 181 | // part.OffsetPosition, Position, part.Name, part.LocalId); |
167 | 182 | ||
168 | part.OffsetPosition = Position; | 183 | part.OffsetPosition = Position; |
169 | } | 184 | } |
170 | 185 | ||
171 | // m_log.DebugFormat( | 186 | // m_log.DebugFormat( |
172 | // "[UNDO STATE]: Undoing rotation {0} to {1} for child part {2} {3}", | 187 | // "[UNDO STATE]: Undoing rotation {0} to {1} for child part {2} {3}", |
173 | // part.RotationOffset, Rotation, part.Name, part.LocalId); | 188 | // part.RotationOffset, Rotation, part.Name, part.LocalId); |
174 | 189 | ||
175 | part.UpdateRotation(Rotation); | 190 | part.UpdateRotation(Rotation); |
176 | 191 | ||
177 | if (Scale != Vector3.Zero) | 192 | if (Scale != Vector3.Zero) |
178 | { | 193 | { |
179 | // m_log.DebugFormat( | 194 | // m_log.DebugFormat( |
180 | // "[UNDO STATE]: Undoing scale {0} to {1} for child part {2} {3}", | 195 | // "[UNDO STATE]: Undoing scale {0} to {1} for child part {2} {3}", |
181 | // part.Shape.Scale, Scale, part.Name, part.LocalId); | 196 | // part.Shape.Scale, Scale, part.Name, part.LocalId); |
182 | 197 | ||
183 | part.Resize(Scale); | 198 | part.Resize(Scale); |
184 | } | 199 | } |
@@ -247,4 +262,4 @@ namespace OpenSim.Region.Framework.Scenes | |||
247 | m_terrainModule.UndoTerrain(m_terrainChannel); | 262 | m_terrainModule.UndoTerrain(m_terrainChannel); |
248 | } | 263 | } |
249 | } | 264 | } |
250 | } \ No newline at end of file | 265 | } |
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; |