aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add regression test for in-range chat between neighbouring regions from east ↵Justin Clark-Casey (justincc)2014-05-223-1/+163
| | | | to west.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2014-05-2215-86/+196
|\
| * Allow map searches for regions that contain the characters "!+|"Oren Hurvitz2014-05-211-20/+24
| | | | | | | | These characters are used as placeholders for other characters: ": /". But we should search first for the exact string the user entered, and only if that fails then replace the characters and search again.
| * minor: Comment out currently unused log setup in TerrainCompressorJustin Clark-Casey (justincc)2014-05-201-1/+1
| |
| * minor: Remove some unused fields in ScenePresenceJustin Clark-Casey (justincc)2014-05-201-3/+0
| |
| * minor: remove compiler warning in SceneObjectPartInventoryJustin Clark-Casey (justincc)2014-05-201-1/+1
| |
| * Fix issue where avatar and script chat could sometimes be heard from ↵Justin Clark-Casey (justincc)2014-05-201-3/+8
| | | | | | | | | | | | | | | | | | | | anywhere in neighbouring regions. This was due to a silent uint overflow in ScenePresence.UpdateChildAgent() corrupting child agent positions when the child agent was in a region with a greater x or y map co-ord than the root agent region Probably introduced in beeec1c. This still will not function properly with very high region map co-ords (in the millions) but other parts of the code don't handle this properly anyway. Looks to address http://opensimulator.org/mantis/view.php?id=7163
| * On verbose groups messaging logging, count all operations in reported time ↵Justin Clark-Casey (justincc)2014-05-191-3/+3
| | | | | | | | when sending group messages, not just those after get group members and get presence status, as applicable
| * Split verbose groups messaging logging into its own setting separate from ↵Justin Clark-Casey (justincc)2014-05-191-23/+77
| | | | | | | | | | | | | | | | | | that of the groups module. This is to allow us to get useful information on messaging without being overwhelmed by the rest of groups debug. Enabled with [Groups] DebugMessagingEnabled = true in config (default false) Or "debug groups messaging verbose true|false on the console" (similar to existing groups setting). Done for both xmlrpc and V2 groups.
| * Fix recent regression from 77e7bbc where an attachment on a received group ↵Justin Clark-Casey (justincc)2014-05-193-4/+27
| | | | | | | | | | | | | | | | notice with XmlRpcGroups messaging did not appear in the user's inventory. This was because the "session ID" when the message template was copied was always replaced with the group ID, whereas a notice requires this to be the notice ID. Instead just copy the "session ID" as is - other callers already have this set properly so replacing with group ID was redundant anyway. Relates to http://opensimulator.org/mantis/view.php?id=7037
| * Tell QueryAccess explicitly whether the user is coming in via Teleport or ↵Oren Hurvitz2014-05-194-9/+9
| | | | | | | | | | | | Cross, because the permission checks are different. Previously we used a heuristic of checking if the entry position is 0 to differentiate between Teleport and Cross, but that doesn't work anymore since we've started providing the precise entry position for cross, too. That's required in order to ensure that the user is allowed to enter the parcel that he's walking into.
| * Return more specific error messages if an attempt to enter a region fails ↵Oren Hurvitz2014-05-193-16/+35
| | | | | | | | due to permissions (in QueryAccess and IsAuthorizedForRegion)
| * Better error-handling and logging in case User Profile requests failOren Hurvitz2014-05-191-0/+9
| |
| * When can't rez, show only one error message; not two. And show more specific ↵Oren Hurvitz2014-05-192-3/+2
| | | | | | | | error messages.
* | Fixed a problem with detaching attachments in situations where the user's ↵Diva Canto2014-05-224-9/+44
|/ | | | asset server is not the same as the simulator's asset server. Unfortunately this still continues to be wasteful -- new assets are created every time an attachment is detached, but the process of storing the new asset goes through the InventoryAccess module, which does all sorts of checks regarding the users' inventory.
* Don't trigger ItemUploaded when no item has been uploaded.Diva Canto2014-05-181-6/+9
|
* Don't fetch assets from the server when doing simple inventory operations ↵Diva Canto2014-05-182-52/+29
| | | | like copy-paste items in inventory.
* BulletSim: adjust avatar step up parameters to better walk up smallRobert Adams2014-05-172-4/+4
| | | | | staircases. This change is required because of the change in the avatar default shape from the capsule to the rectangle.
* On ScenePresence.MakeChildAgent(), reset the m_originRegionID as this is ↵Justin Clark-Casey (justincc)2014-05-141-0/+5
| | | | | | currently being used as a flag to orchestrate destination simulator threads on teleport. If not reset, it's possible that teleports back and forth between simulators may not restart scripts in attachments.
* Remove a race where the client's SP.CompleteMovement() thread could attempt ↵Justin Clark-Casey (justincc)2014-05-141-3/+6
| | | | | | | to restart attachment scripts before the source simulator's SP.UpdateAgent() thread had added them. This commit changes the order of code so that attachments are re-added before the CompleteMovement() thread is released. Relates to http://opensimulator.org/mantis/view.php?id=7148
* minor: Clean up and make consistent some log file messages in ↵Justin Clark-Casey (justincc)2014-05-141-6/+11
| | | | EstateManagementModule relating to RAW file uploading.
* minor: Add some method doc to IMessageTransferModuleJustin Clark-Casey (justincc)2014-05-121-0/+18
|
* Make offline IM delivery to URL (pre recent Addons code) have a 10 second ↵Justin Clark-Casey (justincc)2014-05-121-1/+1
| | | | | | rather than infinite timeout. This both signals a problem with the URL and eventually frees the thread, rather than hanging indefinitely with no information.
* For XmlRpcGroups (Flotsam) module, when MessageOnlineUsersOnly = true, ↵Justin Clark-Casey (justincc)2014-05-124-20/+35
| | | | | | | | handle notices to offline users directly as known undeliverable messages rather than discarding or attempting delivery. Offline notices can still be controlled with the [Messaging] ForwardOfflineGroupMessages setting. Looks to address more of http://opensimulator.org/mantis/view.php?id=7037 Only for Flotsam now for testing, but if approach works should be possible with core offline notices as well.
* Add send group notice regression test for when MessageOnlineUsersOnly=trueJustin Clark-Casey (justincc)2014-05-121-0/+71
|
* Eliminate subsequently unused scene finding in UndeliveredMessage() method ↵Justin Clark-Casey (justincc)2014-05-121-4/+0
| | | | of xmlrpc and core offline IM modules
* minor: eliminate unused UUID in xmlrpc ↵Justin Clark-Casey (justincc)2014-05-121-2/+0
| | | | GroupsMessagingModule.ProcessMessageFromGroupSession()
* This little sucker had evaded my attention forever. As a consequence some ↵Diva Canto2014-05-091-10/+28
| | | | assets associated with foreign users were being missed.
* Finished implementing redirects in GetTexture.Diva Canto2014-05-071-3/+6
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2014-05-0718-77/+389
|\
| * Revert "fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()"Justin Clark-Casey (justincc)2014-05-061-79/+99
| | | | | | | | | | | | | | There is a problem here with infinite recursion, but this patch loses the 'hunting' behaviour where the code will attempt multiple lookups if the avatar is teleporting rapidly around different simulators. This patch only does a single lookup before giving up. This reverts commit cecb446e0e91ede0b05ea9cf40c1313782241f3d.
| * Console commands for Estate MgmtDev Random2014-05-063-0/+179
| |
| * new version of patch to add default-user switch new version :qw :wq updated ↵Matt Lehmann2014-05-061-0/+2
| | | | | | | | version of default user switch for load oar :q :q
| * updated version of default user switch for load oar :q :qMatt Lehmann2014-05-063-6/+43
| |
| * fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()Kunta Kinte2014-05-061-99/+79
| |
| * Fix avatars going to corner of region when they are sitting on a child prim ↵Vegaslon2014-05-061-1/+1
| | | | | | | | and the prim is deleted.
| * Change llUnSit to be able to unsit any avatar that is currently sat on the ↵Vegaslon2014-05-061-1/+2
| | | | | | | | object, not just avatars sitting on the sittarget in the object containing the script. or when the object is owned by the parcel, land group or estate owner.
| * Mantis 7146 The lsl function llGetMassMKS is not implementedTalun2014-05-063-0/+13
| | | | | | | | | | This patch implements llGetMassMKS as it is described in the wiki http://wiki.secondlife.com/wiki/LlGetMassMKS
| * Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2014-05-069-63/+143
| |\
| | * When moving an item from a prim to a user's inventory, don't delete the item ↵Oren Hurvitz2014-05-061-4/+25
| | | | | | | | | | | | from the prim until it was successfully copied to the user
| | * Show more meaningful error messages when failed to move an item from a prim ↵Oren Hurvitz2014-05-064-29/+56
| | | | | | | | | | | | | | | | | | to a user's inventory. Also, actually show the error to the user in more cases. (Previously, sometimes the operation failed without telling the user anything.)
| | * Show more meaningful error messages when failed to give an item to another userOren Hurvitz2014-05-065-27/+56
| | |
| | * - When sending the "My Suitcase" folder to the client, always claim it has ↵Oren Hurvitz2014-05-061-1/+4
| | | | | | | | | | | | Folder Type 8. (Previously we had used Folder Type -1 in one place, and LLClientView didn't even bother changing Folder Type 100 to anything else.)
| | * Added range-checking for the parameters to PRIM_POINT_LIGHT (used in ↵Oren Hurvitz2014-05-061-3/+3
| | | | | | | | | | | | llSetLinkPrimitiveParamsFast() )
| * | minor: Comment out Cacheitems debug log lines for nowJustin Clark-Casey (justincc)2014-05-021-6/+6
| |/
* | Makes it possible to support grids in which all the simulators share all ↵Diva Canto2014-05-042-22/+93
|/ | | | | | | | central services of a Robust server EXCEPT assets. In other words, grids where the simulators' assets are kept in one DB and the users' inventory assets are kept on another. When users rez items from inventory or take objects from world, an HG-like asset copy takes place between the 2 servers, the world asset server and the user's asset server. This makes the simulators independent of the central asset server. Note that this an advanced configuration and requires some security strengthening coming up.
* Mantis 7144 missing ATTACH_AVATAR_CENTER constantTalun2014-05-011-0/+2
| | | | This patch adds ATTACH_AVATAR_CENTER and ATTACH_NECK
* Fix issue where only one of multiple attachments on the same attachpoint for ↵Justin Clark-Casey (justincc)2014-05-014-7/+74
| | | | | | | | NPCs would be seen by other viewers. It appears that at least Singularity 1.8.5 (but probably others) rely on attachment FromItemIDs being different to display more than one. This commit resolves this by generating random IDs instead of always using UUID.Zero for NPCs. Resolves http://opensimulator.org/mantis/view.php?id=7110
* Change XEngine to call StateChange rather than RemoveScript on state changesMelanie2014-04-301-1/+1
|
* Add the "StateChange" function to the async comand manager to differentiateMelanie2014-04-301-1/+23
| | | | between state changes and script exit/reset.