aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug where approximately half the time, attachments would rez only their ↵Justin Clark-Casey (justincc)2010-03-031-7/+37
| | | | | | | | root prim until right clicked (or otherwise updated). The root cause of this problem was that multiple ObjectUpdates were being sent on attachment which differed enough to confuse the client. Sometimes these would eliminate each other and sometimes not, depending on whether the scheduler looked at the queued updates. The solution here is to only schedule the ObjectUpdate once the attachment code has done all it needs to do.
* Changed asset CreatorID to a stringJohn Hurliman2010-02-221-1/+1
|
* * Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman2010-02-221-13/+11
| | | | CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
* Merge branch 'master' into presence-refactorMelanie2010-02-151-0/+3
|\
| * Plug a small holeMelanie2010-02-141-0/+3
| |
* | Merge branch 'master' into presence-refactorMelanie2010-02-081-3/+15
|\ \ | |/ | | | | | | This was a large, heavily conflicted merge and things MAY have got broken. Please check!
| * Don't try to start attachment scripts or send updates if the attachment ↵Justin Clark-Casey (justincc)2010-02-011-2/+12
| | | | | | | | itself has been unsuccessful
| * Fix a problem where llDie() calls were sometimes leaving dead objects behind.Justin Clark-Casey (justincc)2010-01-251-1/+3
| | | | | | | | | | | | | | | | | | | | When an object was deleted, the remove script instance call was aggregating the scripting events as normal. This would queue a full update of the prim before the viewer was notifed of the deletion of that prim (QuitPacket) On some occasions, the QuitPacket would be sent before the full update was dequeued and sent. In principle, you would think that a viewer would ignore updates for deleted prims. But it appears that in the Linden viewer (1.23.5), a prim update that arrives after the prim was deleted instead makes the deleted prim persist in the viewer. Such prims have no properties and cannot be removed from the viewer except by a relog. This change stops the prim event aggregation call if it's being deleted anyway, hence removing the spurious viewer-confusing update.
* | * HGScene is no more.Diva Canto2010-01-301-506/+13
| | | | | | | | * Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module
* | Several more buglets removed.Diva Canto2010-01-131-2/+2
| |
* | Fixed a couple of bugs with Appearance. Appearance is all good now.Diva Canto2010-01-111-2/+2
| |
* | OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2010-01-111-1/+1
| |
* | Remove all references to master avatar, replacing with estate owner whereMelanie2010-01-101-6/+0
| | | | | | | | | | appropriate. This changes the behavior of the REST plugins and RemoteAdmin's region creation process.
* | * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-101-7/+3
| | | | | | | | | | * HG is seriously broken here * Compiles. Untested.
* | * Finished SimulationServiceConnectorDiva Canto2010-01-071-2/+8
| | | | | | | | | | * Started rerouting calls to UserService. * Compiles. May run.
* | Merge branch 'master' into presence-refactorMelanie2010-01-041-0/+7
|\ \ | |/
| * When rezzing a no-copy object on a no-rez parcel, the object vanishes fromMelanie2010-01-041-0/+7
| | | | | | | | | | inventory until relog. This patch corrects this and puts the item back into inventory.
* | The Library Service is now working. UserProfileCacheService.LibraryRoot is ↵Diva Canto2010-01-011-5/+7
|/ | | | obsolete. Didn't delete it yet to avoid merge conflicts later -- want to stay out of core as much as possible.
* Add a data path for error messagesroot2009-12-221-6/+12
| | | | | | Committed from my other box where git is not configured properly Signed-off-by: Melanie <melanie@t-data.com>
* Allow terrain heightmaps to be loaded directly from URIs via the remote ↵Justin Clark-Casey (justincc)2009-12-041-0/+6
| | | | | | | | admin plugin See http://opensimulator.org/mantis/view.php?id=4418 Thanks StrawberryFride See
* Change default destination of deleted items to the trash folder. EverythingMelanie2009-12-021-3/+12
| | | | else still goes to L&F
* undo previous changesdahlia2009-11-131-14/+0
| | | | | add a GetGroupByPrim() method to Scene.cs delete a redundant method
* Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2009-11-091-4/+1
|\
| * Changing the AssetBase constructors to avoid initializing assets with an ↵John Hurliman2009-11-051-4/+1
| | | | | | | | unknown asset type, and log an error if it ever does happen
* | * for iars, allow item names/folders including "/" to be escaped using "\/"Justin Clark-Casey (justincc)2009-11-091-1/+0
|/ | | | | * also, "\" has to be escaped as "\\" * add item name unit test for escaped characters
* Backport the fixes to WebFetchInventoryDescendents to the UDPMelanie2009-11-041-1/+7
| | | | | | | InventoryDescendents packet. Testing has shown that UDP inventory now works flawlessly and, unlike CAPS inventory, doesn't download the entire agent inventory on start. Neither does it incessantly re-request folder NULL_KEY. Therefore, I have disabled CAPS inventory.
* Merge branch 'master' into vehiclesMelanie2009-10-221-16/+5
|\
| * * Change Util.FireAndForget to use ThreadPool.UnsafeQueueUserWorkItem(). ↵John Hurliman2009-10-191-16/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids .NET remoting and a managed->unmanaged->managed jump. Overall, a night and day performance difference * Initialize the LLClientView prim full update queue to the number of prims in the scene for a big performance boost * Reordered some comparisons on hot code paths for a minor speed boost * Removed an unnecessary call to the expensive DateTime.Now function (if you *have* to get the current time as opposed to Environment.TickCount, always use DateTime.UtcNow) * Don't fire the queue empty callback for the Resend category * Run the outgoing packet handler thread loop for each client synchronously. It seems like more time was being spent doing the execution asynchronously, and it made deadlocks very difficult to track down * Rewrote some expensive math in LandObject.cs * Optimized EntityManager to only lock on operations that need locking, and use TryGetValue() where possible * Only update the attachment database when an object is attached or detached * Other small misc. performance improvements
* | Merge branch 'master' into vehiclesMelanie2009-10-151-3/+3
|\ \ | |/
| * * Replaced (possibly broken?) math for calculating the unix timestamp in ↵John Hurliman2009-10-141-3/+3
| | | | | | | | | | | | | | MySQLAssetData with Utils.DateTimeToUnixTime() * Disabled UpdateAccessTime() function since it was only writing zeros anyways. This gave me a significant performance improvement for startup times and avatar logins in standalone mode * Load attachments asynchronously so avatars with lots of attachments don't have to race the timeout clock to login
* | Merge branch 'master' into vehiclesMelanie2009-10-151-2/+7
|\ \ | |/
| * * Fixes http://opensimulator.org/mantis/view.php?id=4225Diva Canto2009-10-121-2/+7
| | | | | | | | | | * Fixes http://opensimulator.org/mantis/view.php?id=3959 * Allows for viewing inventory textures outside home grid
* | Merge branch 'master' into vehiclesMelanie2009-10-081-0/+1
|\ \ | |/
| * * One more debug message on FetchInventoryDescendantsDiva Canto2009-10-061-0/+1
| | | | | | | | * More streams close on finally
* | Merge branch 'master' into vehiclesMelanie2009-10-011-1/+1
|\ \ | |/
| * Formatting cleanup.Jeff Ames2009-10-011-1/+1
| |
* | Commit initial version of KittoFlora's vehicle changesopensim2009-09-301-1/+1
|/
* Change the type value for given folders to -1. Prevents inventory blowupsMelanie2009-09-131-1/+1
|
* * Fixes a 'take object from mega region' and rez it in a regular region.. ↵Teravus Ovares (Dan Olivares)2009-09-081-1/+35
| | | | and have it appear 5 regions over bug by limiting the stored position in the asset to Constants.RegionSize. The stored position in the asset gets overwritten anyway by the rezzing routine, but at least this way, there's no chance of the objects border crossing before the rezzing routine finishes.
* Baad git, baad baad git.Melanie2009-09-011-1/+1
|
* Experimental. Set attachment flag early on rezzing from inventory.Melanie2009-09-011-0/+3
|
* minor: formatting and commentsJustin Clark-Casey (justincc)2009-08-281-1/+3
|
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-221-13/+5
| | | | | | folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
* Fixes GetItem and GetFolder for SQLite. Turns out some methods were no-op in ↵Diva Canto2009-08-191-2/+2
| | | | | | | SQlite. Fixes most grief in http://opensimulator.org/mantis/view.php?id=4035 http://opensimulator.org/mantis/view.php?id=4027
* Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto2009-08-191-27/+4
| | | | operation. Moving a batch of items is a 1-time operation. Made it async anyway, so that the viewer doesn't wait in case the DB layer is dumb (which is the case currently).
* A better purge of trash folder.Diva Canto2009-08-191-7/+24
|
* jhurliman's patch in http://opensimulator.org/mantis/view.php?id=4024Diva Canto2009-08-181-12/+23
|
* IAvatarFactory.UpdateDatabase gets the assetID and not the object's inworld ↵Diva Canto2009-08-161-1/+3
| | | | UUID.
* Making attachments work again. Tons of debug more. This needs more testing ↵Diva Canto2009-08-161-1/+3
| | | | and a lot of cleaning.
* Changed FromAssetID to FromItemIDDiva Canto2009-08-151-4/+4
|