aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-11-28varregion: add ITerrainChannel.GetHeightAtXYZ() for eventual mesh terrain.Robert Adams1-1/+13
Implementation of same in TerrainChannel.cs. Check for bounds in TerrainChannel[x,y] to prevent array access exceptions.
2013-11-28varregion: many replacements of in-place arithmetic with calls toRobert Adams1-2/+2
the Util functions for converting world addresses to region addresses and converting region handles to locations.
2013-11-23Revert "Fix issue where sitting on non-root linked prims would send camera ↵Justin Clark-Casey (justincc)1-7/+2
to wrong position in third-person and mouselook" Reverting to place on separate branch This reverts commit ff4e7de7769b7eaa1b4fd3917e59f362b708226a.
2013-11-23Revert "Add line accidentally left out of recent non-root prim sit fix"Justin Clark-Casey (justincc)1-2/+0
Reverting to place on new branch This reverts commit ed1029712a85206430fee1d4897d473517728dab.
2013-11-23Revert "Fix non-root prim sit positions for prims where a sit target has ↵Justin Clark-Casey (justincc)1-1/+1
been specified as well." Revert to place on separate branch for now This reverts commit 70e651a8d1d0c2a48c4f26cd1c70bee098c11a57.
2013-11-23Revert "Refix fix for sitting on non-root linked prims with explicit sit ↵Justin Clark-Casey (justincc)1-1/+1
targets." This reverts commit 78649eb0999a5f97cc541c94ec98d1d06ed957cb.
2013-11-23Revert "fix avatar rotation when sitting on a linked part"Justin Clark-Casey (justincc)1-1/+1
Reverting for now to place on separate branch This reverts commit 65304260af283211443a2872c46f6609d3e45649.
2013-11-23fix avatar rotation when sitting on a linked partJustin Clark-Casey (justincc)1-1/+1
Need to take into account rotation of linked prim now that we are always specifying sits wrt the root prim
2013-11-23Refix fix for sitting on non-root linked prims with explicit sit targets.Justin Clark-Casey (justincc)1-1/+1
I forgot that m_post is being set inconsistently between non-explicit and explicit ragets
2013-11-23Fix non-root prim sit positions for prims where a sit target has been ↵Justin Clark-Casey (justincc)1-1/+1
specified as well.
2013-11-23Add line accidentally left out of recent non-root prim sit fixJustin Clark-Casey (justincc)1-0/+2
Original commit is ff4e7de7
2013-11-23Fix issue where sitting on non-root linked prims would send camera to wrong ↵Justin Clark-Casey (justincc)1-2/+7
position in third-person and mouselook We now specify sits as offsets from the root prim, as the viewer expects.
2013-11-15refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)2-3/+3
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
2013-11-13Fix bug where removing a physical linkset would only decrement the Active ↵Justin Clark-Casey (justincc)2-2/+73
Objects statistic by 1 instead of by the number of prims removed. Unlike LL, OpenSimulator currently uses this stat to record the number of prims in the physics simulation, even when they are at rest. Added regression test for this case.
2013-11-08varregion: elimination of Constants.RegionSize from all over OpenSimulator.Robert Adams5-39/+51
Routines in Util to compute region world coordinates from region coordinates as well as the conversion to and from region handles. These routines have replaced a lot of math scattered throughout the simulator. Should be no functional changes.
2013-11-04varregion: remove uses of region size constant. In particular, update sceneRobert Adams2-9/+9
to check for border crossings based on the size of the region.
2013-11-03varregion: send the proper terrain patch layer code for large terrain.Robert Adams1-23/+21
Code cleanups.
2013-11-01varregion: push TerrainData implementation up and down the database storage ↵Robert Adams2-8/+23
stack. Implement both LoadTerrain and StoreTerrain for all DBs. Move all database blob serialization/deserialization into TerrainData.
2013-10-31varregion: fix problem of X/Y dimensions swapped and incorrect terrainRobert Adams2-28/+27
compression base computation. Complete replacement of float[] for terrain heightmap with TerrainData instance.
2013-10-17After finishing to edit an attachment, let other avatars see the changes. ↵Oren Hurvitz2-8/+4
(The changes weren't visible before because updates to attachments aren't sent while the attachment is selected.)
2013-10-16varregion: move the compressed heighmap compression factor fromRobert Adams2-19/+7
Constants into TerrainData. Save compression factor with the terrain blob in the database.
2013-10-15Fixed rezzing coalesced objects from a prim's inventoryOren Hurvitz2-68/+152
Previously only the first object in the Coalesced Object was rezzed. Now all the objects are rezzed.
2013-10-07varregion: plug in TerrainData class and modify TerrainModule and ↵Robert Adams3-124/+82
LLClientView to use same. This passes a terrain info class around rather than passing a one dimensional array thus allowing variable regions. Update the database storage for variable region sizes. This should be downward compatible (same format for 256x256 regions).
2013-10-07varregion: remove scattered use of Constants.RegionSize by having routines ↵Robert Adams1-2/+2
reference RegionInfo.RegionWorldLoc?.
2013-10-07varregion: add new TerrainData and TerrainCompressor routines. ↵Robert Adams1-0/+958
TerrainCompressor needed to replace the one in libopenmetaverse that doesn't know about the larger terrain packets.
2013-09-28varregion: serious rework of TerrainChannel:Robert Adams2-93/+191
-- addition of varaible region size in X and Y -- internal storage of heightmap changed from double[] to short[] -- helper routines for handling internal structure while keeping existing API -- to and from XML that adds region size information (for downward compatibility, output in the legacy XML format if X and Y are 256) Updated and commented Constants.RegionSize but didn't change the name for compatibility.
2013-09-28VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams4-18/+18
count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.
2013-09-27minor: Disable logging left active on regression test ↵Justin Clark-Casey (justincc)1-1/+1
TestSameSimulatorIsolatedRegionsV2()
2013-09-27refactor: Rename Scene.AddNewClient() to AddNewAgent() to make it obvious in ↵Justin Clark-Casey (justincc)4-12/+12
the code that this is symmetric with CloseAgent()
2013-09-27refactor: rename Scene.IncomingCloseAgent() to CloseAgent() in order to make ↵Justin Clark-Casey (justincc)4-29/+17
it clear that all non-clientstack callers should be using this rather than RemoveClient() in order to step through the ScenePresence state machine properly. Adds IScene.CloseAgent() to replace RemoveClient()
2013-09-25varregion: serious rework of TerrainChannel:Robert Adams2-93/+191
-- addition of varaible region size in X and Y -- internal storage of heightmap changed from double[] to short[] -- helper routines for handling internal structure while keeping existing API -- to and from XML that adds region size information (for downward compatibility, output in the legacy XML format if X and Y are 256) Updated and commented Constants.RegionSize but didn't change the name for compatibility.
2013-09-25VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams4-18/+18
count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.
2013-09-26minor: Add scene name to baked textures in cache log messageJustin Clark-Casey (justincc)1-1/+1
2013-09-25Reinsert client.SceneAgent checks into ↵Justin Clark-Casey (justincc)1-0/+3
LLUDPServer.HandleCompleteMovementIntoRegion() to fix race condition regression in commit 7dbc93c (Wed Sep 18 21:41:51 2013 +0100) This check is necessary to close a race condition where the CompleteAgentMovement processing could proceed when the UseCircuitCode thread had added the client to the client manager but before the ScenePresence had registered to process the CompleteAgentMovement message. This is most probably why the message appeared to get lost on a proportion of entity transfers. A better long term solution may be to set the IClientAPI.SceneAgent property before the client is added to the manager.
2013-09-22Preserve attachment point & position when attachment is rezzed in worldAleric Inglewood2-0/+21
Patch taken from http://opensimulator.org/mantis/view.php?id=4905 originally by Greg C. Fixed to apply to r/23314 commit ba9daf849e7c8db48e7c03e7cdedb77776b2052f (cherry picked from commit 4ff9fbca441110cc2b93edc7286e0e9339e61cbe)
2013-09-20Lock around read/write of ScenePresence.m_originRegionID to make sure that ↵Justin Clark-Casey (justincc)1-5/+33
all threads are seeing the latest value and not a cached one. There is a possibilty that some V2 teleport failures are due to the viewer triggered CompleteMovement thread not seeing the change of m_originRegionID by the UpdateAgent thread.
2013-09-20Change some message log levels in Scene.IncomingUpdateChildAgent() for ↵Justin Clark-Casey (justincc)1-3/+3
debugging purposes
2013-09-19UUID Gatherer: find assets used in Light Projection, Particle Systems, and ↵Oren Hurvitz1-1/+14
Collision Sounds.
2013-09-19For debug purposes, allow simulators to force use of earlier SIMULATION/0.1 ↵Justin Clark-Casey (justincc)1-1/+1
teleport protocol even if SIMULATION/0.2 is available. This is specified in the MaxOutgoingTransferVersion attribute of [EntityTransfer] in OpenSim.ini, see OpenSimDefaults.ini for more details. Default remains "SIMULATION/0.2" Primarily for http://opensimulator.org/mantis/view.php?id=6755
2013-09-19minor: Make SP.MakeRootAgent() private - no external code has any business ↵Justin Clark-Casey (justincc)1-1/+1
calling this method
2013-09-19minor: Make log message at top of ScenePresence.CompleteMovement info level ↵Justin Clark-Casey (justincc)1-5/+5
and comment out later log message in ScenePresence.MakeRootAgent() Need an info message since this is currently important in detecting teleport issue when not at debug log level. CompleteMovement message occurs before MakeRootAgent() one did
2013-09-19Revert "Also check user authorization if looking to upgrade from a child to ↵Justin Clark-Casey (justincc)1-13/+0
a root agent." This reverts commit c7ded0618c303f8c24a91c83c2129292beebe466. This proves not to be necessary - the necessary checks are already being done via QueryAccess() before cross or teleport
2013-09-19Create regression TestCrossOnSameSimulatorNoRootDestPerm() to check that ↵Justin Clark-Casey (justincc)2-1/+88
avatars are not allowed to cross into a neighbour where they are not authorized, even if a child agent was allowed.
2013-09-18minor: correct method name in commentJustin Clark-Casey (justincc)1-1/+1
2013-09-18refactor: rename *ChildAgentDataUpdate() methods to *UpdateChildAgent()Justin Clark-Casey (justincc)2-6/+7
verb-noun is consistent with other similar methods
2013-09-18minor: Make log message when Scene.IncomingChildAgentDateUpdate() more ↵Justin Clark-Casey (justincc)2-4/+12
explicit that there is a problem if it still finds the agent to be a child if the sender wanted to wait till it became root Add some comments about the mssage sequence, though much more data is at http://opensimulator.org/wiki/Teleports
2013-09-16Reinsert comments about possible race conditions when sending bulk inventory ↵Justin Clark-Casey (justincc)1-0/+3
updates on non-flag clothing editing
2013-09-11BulletSim: remove chatty debug message from previous commit.Robert Adams1-3/+3
2013-09-11BulletSim: add position and rotation update for child prim physics update ↵Robert Adams1-0/+20
events. Normally, physics engines do not return updates for child prims so, under normal operation, this code should never execute. Will only be used when using flexible linkset linkages.
2013-09-09Change collision logic in SceneObjectPart so land_collision will happen.Robert Adams1-6/+3
The previous logic would generate land_collision_start and land_collision_end but would not generate the land_collision itself.