aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-05-22Add regression test for in-range chat between neighbouring regions from east ↵Justin Clark-Casey (justincc)1-1/+4
to west.
2014-05-22Fixed a problem with detaching attachments in situations where the user's ↵Diva Canto1-1/+3
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.
2014-05-20minor: Comment out currently unused log setup in TerrainCompressorJustin Clark-Casey (justincc)1-1/+1
2014-05-20minor: Remove some unused fields in ScenePresenceJustin Clark-Casey (justincc)1-3/+0
2014-05-20minor: remove compiler warning in SceneObjectPartInventoryJustin Clark-Casey (justincc)1-1/+1
2014-05-20Fix issue where avatar and script chat could sometimes be heard from ↵Justin Clark-Casey (justincc)1-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
2014-05-19Tell QueryAccess explicitly whether the user is coming in via Teleport or ↵Oren Hurvitz1-2/+2
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.
2014-05-19Return more specific error messages if an attempt to enter a region fails ↵Oren Hurvitz1-2/+13
due to permissions (in QueryAccess and IsAuthorizedForRegion)
2014-05-18Don't trigger ItemUploaded when no item has been uploaded.Diva Canto1-6/+9
2014-05-18Don't fetch assets from the server when doing simple inventory operations ↵Diva Canto1-51/+28
like copy-paste items in inventory.
2014-05-14On ScenePresence.MakeChildAgent(), reset the m_originRegionID as this is ↵Justin Clark-Casey (justincc)1-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.
2014-05-14Remove a race where the client's SP.CompleteMovement() thread could attempt ↵Justin Clark-Casey (justincc)1-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
2014-05-12minor: Add some method doc to IMessageTransferModuleJustin Clark-Casey (justincc)1-0/+18
2014-05-12For XmlRpcGroups (Flotsam) module, when MessageOnlineUsersOnly = true, ↵Justin Clark-Casey (justincc)1-0/+2
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.
2014-05-06Console commands for Estate MgmtDev Random1-0/+3
2014-05-06Fix avatars going to corner of region when they are sitting on a child prim ↵Vegaslon1-1/+1
and the prim is deleted.
2014-05-06When moving an item from a prim to a user's inventory, don't delete the item ↵Oren Hurvitz1-4/+25
from the prim until it was successfully copied to the user
2014-05-06Show more meaningful error messages when failed to move an item from a prim ↵Oren Hurvitz2-24/+46
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.)
2014-05-06Show more meaningful error messages when failed to give an item to another userOren Hurvitz2-14/+35
2014-05-04Makes it possible to support grids in which all the simulators share all ↵Diva Canto1-4/+11
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.
2014-04-29minor: convert back some tabs to spaces that got into ScenePresence via ↵Justin Clark-Casey (justincc)1-4/+4
recent patch bc969a6b
2014-04-29Restore terrain height and flying adjustments that were eliminated from ↵Justin Clark-Casey (justincc)1-28/+28
non-megaregion paths in ScenePresence.MoveToTarget() by recent patch bc969a6b
2014-04-25Add missing [Test] decorator to actually get the basic scene creation test ↵Justin Clark-Casey (justincc)1-0/+1
from 2227f51b to run
2014-04-25Add basic regression test for creating a var regionJustin Clark-Casey (justincc)1-0/+15
2014-04-25Add basic sanity regression test for creating a scene.Justin Clark-Casey (justincc)1-0/+7
2014-04-25Fix issue where terrain height values > 327 caused chaotic spiked terrain.Justin Clark-Casey (justincc)1-2/+2
Per http://wiki.secondlife.com/wiki/Tips_for_Creating_Heightfields_and_Details_on_Terrain_RAW_Files#Notes_for_Creating_Height_Field_Maps_for_Second_Life terrain heights up to 508 are possible on the LL grid (and were available on previous releases of OpenSimulator). The obvious way to allow both this and equivalent -z values, is to rewiden the internal terrain height storage from short to int. The memory tradeoff is most noticeable on the maximum 8192x8192 var region (equiv to 1024 normal regions), where it adds 128mb to resident use (128k on a normal region) This is still better than the double used in previous releases. This does not affect physics or data storage since they already use float and double respectively. This may not be the final solution if we actually want to sacrifice -z, >327 or something else. Relates to http://opensimulator.org/mantis/view.php?id=7076
2014-04-24Fixes a long-standing bug related to god-mode change ownership of objects ↵Diva Canto2-4/+6
permissive, where the permissions of the children prims' inventory items were not changed. As a consequence, we couldn't control some of the objects imported via HG and OARs even in god mode.
2014-04-23Fix regression test break on previous commit 328bc3bJustin Clark-Casey (justincc)1-15/+16
2014-04-23Adjust avatar sit positioning on a target to pretty much exactly match that ↵Justin Clark-Casey (justincc)1-14/+26
of the LL grid. This uses an offset of 0.05 on the up vector of the sit orientation, after extensive analysis on http://opensimulator.org/mantis/view.php?id=7096 and https://wiki.secondlife.com/wiki/Talk:LlSitTarget This supersedes the previous adjustment in 5b73b9c4 which had been wrongly applied. The maximum change is about 0.1 with a maximum height avatar. This patch is all Aleric's work - I am applying manually in order to add these additional notes
2014-04-23Eliminated many warningsOren Hurvitz5-2/+12
2014-04-22Fixed KeyframeMotion to work with very slow movement.Oren Hurvitz1-25/+33
Previously, if the movement speed was below 0.05/sec then it didn't work correctly. Fixes http://opensimulator.org/mantis/view.php?id=7117
2014-04-21Possible solution for #7120 and #7051lillith_xue1-23/+32
Signed-off-by: Robert Adams <misterblue@misterblue.com>
2014-04-20Fixed: the parcel flag "Allow Scripts from Group" should only check if the ↵Oren Hurvitz1-19/+8
parcel has a Group set; it doesn't have to be *deeded* to the group Also some cleanup of the use of Group ID's (with no change to functionality).
2014-04-12BulletSim: reduce the terrain collison margin to be the same as otherRobert Adams1-3/+3
objects in the world. This was originally changed in an attempt to make vehicles work better but the effect was not that large and it causes avatars to float above the terrain.
2014-04-09Fixed: when teleporting between grids, the avatar name wasn't always updated.Oren Hurvitz1-6/+67
When an avatar is in their home grid, their name appears as "First Last". In other grids the name appears as "First.Last @grid.example.com". However, viewers have a bug and they don't always show the new name. We use a trick (changing the Group Title briefly) in order to make the viewers show the new name. This is only done after a Hypergrid teleport.
2014-04-09In teleports, pass the source region to the destination (similar to an HTTP ↵Oren Hurvitz2-6/+9
referrer)
2014-04-07When sending QueryAccess to a region, also send the user's Home URIOren Hurvitz1-2/+3
2014-04-07Refactored: use Scene.GetAgentHomeURI() to get the Home URI of a userOren Hurvitz1-0/+12
2014-04-05Don't re-retrieve sit part in SP.HandleAgentSit() when we already have it ↵Justin Clark-Casey (justincc)1-2/+1
(this time with the right code change)
2014-04-04fixed object-collision issue after uncheck phantom-flagtglion1-0/+2
Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
2014-04-03Fix sp.AbsolutePosition when agent is sitting on a child prim, which in ↵Justin Clark-Casey (justincc)2-4/+64
turns fixes llDetectedPos(), llGetLinkPrimitiveParams() and similar functions. Add regression test for this case. In relation to http://opensimulator.org/mantis/view.php?id=7043
2014-04-02Fix problem with floating avatar by passing avatar size informationRobert Adams1-3/+7
to the physics engine. This operation was accidentally removed while in the middle of improving the computation of the avatar height. This is a temp fix until the real solution is added.
2014-04-03Remove redundant part.SitTargetAvatar setting from SP.MakeRootAgent as ↵Justin Clark-Casey (justincc)1-2/+0
part.AddSittingAvatar already does this.
2014-04-03refactor: Use m_sittingAvatars to maintain the list of sitting avatars ↵Justin Clark-Casey (justincc)5-76/+28
instead of two independent structures that do exactly the same thing m_sittingAvatars code also already properly handles locking to avoid races.
2014-04-03Don't clear avsToCross in SOG.AbsolutePosition.set(), this is unnecessary ↵Justin Clark-Casey (justincc)1-6/+1
since the structure is local and never reused after the clear
2014-04-03Fix bug where crossing to a neighbouring region and back again would trigger ↵Justin Clark-Casey (justincc)4-8/+138
an exception, and a second recross would stop the user moving until relog Also fixes an issue where sitting avatar counts became inaccurate after any cross. Part of the problem was due to cloning code using MemberwiseClone() but not resetting certain collection structures. Adds regression test for this case. In relation to http://opensimulator.org/mantis/view.php?id=7050
2014-04-02Made GetScenePresence() case-insensitive when searching by user name. This ↵Oren Hurvitz1-1/+2
makes it easier to use console commands such as "show appearance".
2014-04-02Removing warning from SceneObjectLinkingTests.TestLinkDelink2SceneObjects() ↵Justin Clark-Casey (justincc)1-0/+1
by actually checking whether delinked grp3 is not null
2014-04-02Console command to rename EstateDev Random1-0/+4
2014-04-02minor: disable logging in recently added scene object crossing tests and ↵Justin Clark-Casey (justincc)1-6/+2
remove some unnecessary test config