aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Serialization/CoalescedSceneObjectsSerializer.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-09missed a few..UbitUmarov1-1/+0
2018-01-08fall back to a obsolete property since several monos in use (include our ↵UbitUmarov1-1/+1
own) do not suporte the proper .net4.0 one
2018-01-05 a few more xml thingsUbitUmarov1-0/+3
2018-01-04disable some XmlResolverUbitUmarov1-0/+1
2017-07-13replace the wrong libOMV user modifiable Utils.EnUSCulture by our own no ↵UbitUmarov1-6/+6
User modifiable Culture.FormatProvider, and also for internal coerence. We do use the libomv on other code paths, so that must be fixed
2017-07-13add more missing en-us culture on scene serializer writesUbitUmarov1-6/+6
2017-01-05Massive tab and trailing space cleanupMelanie Thielker1-30/+30
2015-08-11Better handling of invalid XML: a) prevent infinite loop on EOF; b) better ↵Oren Hurvitz1-4/+2
logging If the XML was truncated for some reason then ExecuteReadProcessors() would get into an infinite loop, using high CPU. Now it detects EOF (and several other error cases) and aborts. The rest of the changes just improve logging of XML in case of errors, so that we can see what the bad XML is.
2014-03-24Fixed parsing of coalesced objects if the XML starts with an XML Declaration ↵Oren Hurvitz1-44/+45
("<xml ...>") Resolves http://opensimulator.org/mantis/view.php?id=6944
2013-02-08If a component of a coalesced object fails to deserialization, do not add a ↵Justin Clark-Casey (justincc)1-4/+18
null where the object should be. This prevents a later load IAR failure. This code is currently only used by IAR loading.
2012-05-23Fix bug where an avatar that had an object they owned attached through ↵Justin Clark-Casey (justincc)1-2/+18
llAttachToAvatar() or osForceAttachToAvatar() would wrongly have next permissions come into play when they detached that object and rezzed it in scene. This is because the attachments module code was setting the 'object slam' bit by using PermissionMask.All Solution here is to route the attachment item creation call through the existing inventory code in BasicInventoryAccessModule rather than copy/pasted code in AttachmentsModule itself.
2011-04-21Alter uuid gather so that it properly analyzes coalesced objects.Justin Clark-Casey (justincc)1-18/+29
This should correct save all the assets required for the items within the coalesced objects in an IAR. This should also correctly gather the items on hypergrid takes.
2011-04-15Make all the objects in a coalescence reappears after being loaded from an ↵Justin Clark-Casey (justincc)1-6/+41
IAR. This still doesn't work proprerly since some required textures/contained item assets might be missing. From pure code inspection, it looks like the uuid gatherer may get most asset uuids because the scene object serializer naively pulls non-root parts from all contained scene objects into one mega-object. However, root part uuids may well still be missing, and there may be other odd artifacts from this bug. It appears that storing the size of the coalescence and the offsets is redundant, since one can work out this information from the position data already in the scene object groups.
2011-04-13refactor: move code to obtain the coalescence size and object offsets into ↵Justin Clark-Casey (justincc)1-15/+12
CoalescedSceneObjects from the serializer.
2011-04-13Add coalesced scene objects class and serializer. This is currently only ↵Justin Clark-Casey (justincc)1-0/+117
used by the TestRezCoalescedObject() regression test. This structure matches the existing one for SceneObjects and will allow code to be reused by the uuid gatherer, other tests, etc. Test is not yet fully implemented due to a bug in rezzing coalesced objects where they all get the same name as the item. Only one object should get the same name as the item, which appears to be the one selected last when the the objects were coalesced in the first place. This bug will be addressed shortly.