aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Relicense AgentPreferences files to BSD and OpenSimulatorCinder2015-06-132-48/+48
| | | | Signed-off-by: Diva Canto <diva@metaverseink.com>
* Support for Linden AgentPreferences capability and friends ↵Cinder2015-06-133-5/+272
| | | | | | (UpdateAgentLanguage and UpdateAgentInformation) and Mantis #7157 Signed-off-by: Diva Canto <diva@metaverseink.com>
* SceneObjectPart.UpdateLookAt() now uses corrected libomv quaternion functions.dahlia2015-06-101-16/+6
|
* Address Mantis 7592 (http://opensimulator.org/mantis/view.php?id=7592) byRobert Adams2015-06-061-25/+49
| | | | | | | | disabling terrain patch sending by view distance for legacy sized regions. The problem seems to be that people expect adjacent legacy sized regions to just display like they always have. Limiting displayed terrain is complicated by the camera position not being updated in child regions.
* Typo FixH-H-H2015-06-051-1/+1
| | | | Signed-off-by: Diva Canto <diva@metaverseink.com>
* More on mantis #7567. Two things:Diva Canto2015-06-051-0/+8
| | | | | - Increase the inventory cache timeout to 20 secs, so that the items will still be there when they are needed by the sim for rezzing - Before rezzing attachs, make a call to GetMultipleItems so to fetch them all at the same time
* The only purpose of this commit is to remove an erroneous comment. It turns ↵Diva Canto2015-06-051-4/+2
| | | | out that rezzing the attachments is necessary in modern viewers too. Proof: commenting the lines below the comment results in no attachments seen in the avatar.
* Mantis #7536. This may alleviate the side effects of broken SceneObjects ↵Diva Canto2015-06-041-15/+20
| | | | XML. It doesn't (can't) fix the cause.
* Mantis #7567: added an 8-sec expiring item cache to the inventory network ↵Diva Canto2015-06-031-1/+1
| | | | | | | | connector. This fixed the problem on my local test grid and generally made things faster. This cache has been needed for a while... there are many parts in the code where the sim gets an item multiple times in a short amount of time (rezzing attachs and objects, for example). Other minor changes: - added the scene as a parameter to the constructor od FetchInvDescHandler, so that I could see in which scene the handler was being called - brought linked items in linked folders back to being prefetched
* Correct constant RCERR_CAST_TIME_EXCEEDED.Magnuz Binder2015-06-011-1/+1
| | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* Add a new os function "osGetGender()"dahlia2015-05-293-0/+51
|
* llListRandomize() wasn't very randomCinder2015-05-271-6/+7
| | | | Signed-off-by: Diva Canto <diva@metaverseink.com>
* Attachments Module. Fix detach event not being fired until the next time the ↵AliciaRaven2015-05-261-0/+5
| | | | | | | | object is attached. Not an ideal fix but this allows scripts such as AOs to remove animations when detached etc. The pause added does not affect other avatars or the scene in general and only pauses the avatar performing the detach for an extra 2 milliseconds. Signed-off-by: Diva Canto <diva@metaverseink.com>
* Fix mesh cache race condition in llCastRay V3.Magnuz Binder2015-05-231-2/+4
| | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* Use own mesh cache in llCastRay V3 after throttling.Magnuz Binder2015-05-221-39/+104
| | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* Throttle llCastRay V3.Magnuz Binder2015-05-221-2/+90
| | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* Merge branch 'master' into mosesMelanie Thielker2015-05-202-2/+41
|\ | | | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/Scene.cs
| * New values returned by llGetEnvTalun2015-05-202-2/+40
| | | | | | | | | | | | | | | | Implements recent changes to llGetEnv region_cpu_ratio hardcoded to 1 region_product_sku hardcoded to OpenSim Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* | Removing duplicate definitionMichael Heilmann2015-05-191-2/+0
| |
* | Merging Opensim upstream before generating patchMichael Heilmann2015-05-1950-687/+3036
|\ \ | |/
| * resolve possible nullref when sending appearance packet. Thanks to zadark ↵dahlia2015-05-131-0/+1
| | | | | | | | for pointing this out.
| * Adding back command to clear region's user cacheBlueWall2015-05-131-7/+22
| |
| * Enable grab feature (Ctrl+Drag) for non-physical link-sets and add code to ↵AliciaRaven2015-05-131-6/+24
| | | | | | | | | | | | | | | | handle spin (Ctrl+Shift+Drag) This patch fixes permission issues with dragging scripted objects. As on LL grid, scripted prims can not be dragged. Also after dragging, the group was not marked as updated. This meant that after the region was restarted the group would revert to its original position. This version fixes issues where scripts in child prims were not detected and also blocks grab for attachments. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
| * Patch llCastRay fully simplified to V3.Magnuz Binder2015-05-121-212/+217
| |
| * Knocked off a few compiler warnings regarding unused variables.Diva Canto2015-05-107-7/+0
| |
| * Constrain 'terrain modify' to selected RegionDev Random2015-05-091-8/+17
| | | | | | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
| * Another major overhaul of inventory downloading, this time pertaining to ↵Diva Canto2015-05-084-0/+46
| | | | | | | | inventory links. Added yet another function to IInventoryService to get multiple items at once, so that fetching collections of linked items is done once per folder instead of once per item.
| * Major change in the way inventory is downloaded: added a method throughout ↵Diva Canto2015-05-076-3/+56
| | | | | | | | IIventoryService that fetches sets of folders at once. Also added folder id in the InventoryCollection data structure, so that we don't need to go to inventory server again just for that. This reduces the chatter between sims and inventory server by... a lot. On my tests, this reduces initial inventory download down to 30% of what it currently is.
| * Minor whitespace removalMichael Cerquoni2015-05-071-1/+0
| |
| * Add 'terrain modify noise' and code cleanupDev Random2015-05-075-291/+113
| | | | | | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
| * 'terrain modify' command for area-of-effect operationsDev Random2015-05-0610-143/+1266
| | | | | | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
| * Attempt at fixing mantis #7054. The two inventory threads are stepping on ↵Diva Canto2015-05-051-2/+3
| | | | | | | | each other's feet. This needs real-world testing, as I'm not sure of all the consequences of reducing the number of worker threads to 1.
| * Refactored some code that is used in two different dlls related to SOP ↵Diva Canto2015-05-053-208/+139
| | | | | | | | rewriting. Also added some unit tests that relate to mantis #7514
| * Revert "Patch llCastRay fully-simplified to V2." for further review.Michael Cerquoni2015-05-041-15/+14
| | | | | | | | This reverts commit c96ee68953eb31fc2ad6d1df9b7a4bb19c584e17.
| * fix a minor whitespace issueMichael Cerquoni2015-05-041-1/+0
| |
| * Adding the command <dobackup>to opensim console which requires a region name ↵H-H-H2015-05-041-2/+40
| | | | | | | | | | | | as an argument and will do an oar of that region if the autobackup module is enabled Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
| * Missing constants for llGetObjectDetailsTalun2015-05-042-0/+33
| | | | | | | | | | | | | | | | | | OBJECT_BODY_SHAPE_TYPE OBJECT_HOVER_HEIGHT OBJECT_LAST_OWNER_ID OBJECT_RENDER_WEIGHT Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
| * Implement llGetGeometricCenter correctly.Magnuz Binder2015-05-041-1/+20
| | | | | | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
| * Patch llCastRay fully-simplified to V2.Magnuz Binder2015-05-041-14/+15
| | | | | | | | Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
| * Implement llCastRay fully, simplified.Magnuz Binder2015-05-031-1/+759
| |
| * Only send parcel layer data around the point of interest. Can be disabledRobert Adams2015-05-031-5/+79
| | | | | | | | | | by setting [LandManagement]LimitParcelLayerUpdateDistance=false New parameters added to OpenSimDefaults for the distance and enablement.
| * lock collision mesh cache when accessingdahlia2015-05-031-3/+9
| |
| * Make Meshmerizer mesh cache static so it can be shared across class instancesdahlia2015-05-031-1/+2
| |
| * Mantis #7514Diva Canto2015-05-021-2/+2
| | | | | | | | I think this is it -- a bug introduced back in October, where the prefix and name space were being added twice on HG asset posts bu simulators.
| * Updated all occurrences of AssemblyVersion("0.8.1.*") to ↵Diva Canto2015-04-2920-20/+20
| | | | | | | | AssemblyVersion("0.8.2.*")
| * Added in all metrics for Phase 1 except for Time Dilation.Steven Zielinski2015-04-292-9/+218
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Test Plan: Tested on local opensim and firestorm. Not tested with JSON stats reporter. Reviewers: rlouden Reviewed By: rlouden Differential Revision: http://cr.irl.ucf.edu/D269 Signed-off-by: Diva Canto <diva@metaverseink.com>
| * Revert "Enable grab feature (Ctrl+Drag) for non-physical link-sets and add ↵BlueWall2015-04-281-24/+6
| | | | | | | | | | | | code to handle spin (Ctrl+Shift+Drag)" We found that linksets can move if the root prim is unscripted. Will revert this until a fix can be implemented.
| * Revert "Revert "Fix the click to buy prim dialog not being displayed with ↵BlueWall2015-04-281-1/+1
| | | | | | | | | | | | alpha viewers after recent changes to viewer code by LL."" This brings back the fix for recent viewer click to buy prim dialog which was reverted after some reports of objects being altered when touched.
| * Revert "Fix the click to buy prim dialog not being displayed with alpha ↵BlueWall2015-04-271-1/+1
| | | | | | | | | | | | | | | | viewers after recent changes to viewer code by LL." See: http://opensimulator.org/mantis/view.php?id=7426#c28089 Reverting this commit due to unwanted effects.
| * Fix the click to buy prim dialog not being displayed with alpha viewers ↵AliciaRaven2015-04-251-1/+1
| | | | | | | | | | | | | | | | after recent changes to viewer code by LL. Recent viewer changes by linden lab now require more information when requesting prim tooltip data. The object properties must now be sent when the viewer requests the object family properties used to display the tool tip. Thanks to Liru for finding the viewer commit that broke this feature in OS. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>