aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* When sending group notices through group messaging, allow the agent ID to ↵Justin Clark-Casey (justincc)2014-03-121-1/+6
| | | | | | | | use for fetching group data to be different from im.fromAgentID This is because xmlrpcgroups currently always checks visibility for the requesting agent ID (unlike Groups v2, which can accept UUID.Zero) But group notice IMs have a from agent which is the group rather than the sending agent. Further addresses http://opensimulator.org/mantis/view.php?id=7037
* Change terrain update sending to be triggered by frame tick ratherRobert Adams2014-03-101-11/+1
| | | | | | | | | than everytime terrain is changed. The TerrainModule now hooks the frame event and, if terrain has changed, sends terrain updates to the clients. This polling pattern replaces the previous push on change pattern and will make it easier to do per client throttling and per scene presence terrain update ordering.
* Don't start KeyframeMotion timers until all the regions are ready. This ↵Oren Hurvitz2014-03-111-2/+28
| | | | prevents problems in megaregions (prims that think they've crossed over to other regions).
* Send group notices through the same messaging module mechanism used to send ↵Justin Clark-Casey (justincc)2014-03-111-1/+20
| | | | | | | | group chat to avoid timeout issues when sending messages to large groups. Only implementing for XmlRpcGroups initially to test. May require MessageOnlineUsersOnly = true in [Groups] to be effective. In relation to http://opensimulator.org/mantis/view.php?id=7037
* Don't request a terse update after local teleport - this will be done by the ↵Justin Clark-Casey (justincc)2014-03-051-6/+0
| | | | main frame loop anyway and has the potential to race that thread.
* If an avatar is sitting, send out position updates to clients for any ↵Justin Clark-Casey (justincc)2014-03-052-4/+14
| | | | | | | | change, not just those outside the usual tolerances. This is to allow small adjustments of less than 0.05m in functions such as llSetPrimitiveLinkParams() to work This is another fix for http://opensimulator.org/mantis/view.php?id=7044 Extends regression test for this case.
* Make Scene.DefaultDrawDistance to be the max of the region size and theRobert Adams2014-02-231-1/+3
| | | | user setting. Seems this parameter has many side effects.
* Fix problem of hurricane speed winds. Thanks Vegaslon.Robert Adams2014-02-221-1/+1
|
* add newRegion parameter to CrossAgentToNewRegion event and trigger the event ↵dahlia2014-02-202-4/+3
| | | | after crossing thread is invoked
* add EventManager event OnCrossAgentToNewRegiondahlia2014-02-192-0/+25
|
* varregion: make scene default draw distance to be the maximum size of theRobert Adams2014-02-191-1/+8
| | | | | | region. This is a temp fix for the use of draw distance to compute child regions. Eventually must use the draw distance from the viewer for the computation.
* Repair check for if in region position (I mean || is kinda like &&).Robert Adams2014-02-151-1/+1
|
* Properly restore position on crossing failure for mega-regions.Robert Adams2014-02-153-17/+37
| | | | | Fix odd "cannot cross into banned parcel" viewer error message when crossing into non-existant region. Proper permission failure messages are now returned.
* Rewrite of mega-region code to use new form of border checking.Robert Adams2014-02-154-295/+31
| | | | | | | This commit eliminates all of the 'border' class and list code and replaces it with testing if in the current region. Impacts: can make a mega-region out of varregions of the same size; and mega-region combinations must be rectangular (not square but rectangular)
* Don't request group information in SP.MakeRootAgent() if the presence ↵Justin Clark-Casey (justincc)2014-02-141-8/+10
| | | | | | | belongs to no group (UUID.Zero) This was trigger the XmlRpcGroups errors described in http://opensimulator.org/mantis/view.php?id=6986 Introduced in commit 5b73b9c4 (Wed Dec 11 01:39:56 2013)
* varregion: Send large region patches for wind and clouds.Robert Adams2014-02-111-3/+1
|
* Fix raw32 terrain heightmap reader so it estimates terrain size fromRobert Adams2014-02-031-0/+4
| | | | | | the size of the input stream. This is required since the raw heightmap format (.r32) does not contain any size information. The estimation relies on terrain being square.
* Implement terrain merging in TerrainChannel.Robert Adams2014-02-023-1/+76
| | | | | | Modify archiver to use terrain merging when loading oars. This makes displacement AND rotation properly work on terrain when loading oars. Especially useful when loading legacy region oars into large varregions.
* Overload INPCModule.CreateNPC() to allow agentID to be specified. Note: this ↵dahlia2014-02-011-0/+26
| | | | is intended for use in region modules and is not exposed to scripts.
* In UuidGatherer, gather materials referenced in the prim's TextureEntryOren Hurvitz2014-02-011-2/+15
| | | | Signed-off-by: dahlia <dahlia@nomail>
* Merge branch 'master' into varregionRobert Adams2014-01-281-16/+31
|\
| * Reinsert attachments list taking code in SP.MakeRootAgent()Justin Clark-Casey (justincc)2014-01-271-14/+30
| | | | | | | | Locking attachments then launching script instances on a separate thread will not work, attachments will simply be unlocked and vulnerable to race conditions.
| * refactor: Remove identical part.ParentGroup.AddAvatar(UUID); calls which ↵Justin Clark-Casey (justincc)2014-01-271-2/+1
| | | | | | | | occur no matter which branch of the conditional is executed
* | Merge branch 'master' into varregionRobert Adams2014-01-215-47/+222
|\ \ | |/
| * Add back code to UuidGatherer to retrieve UUIDs for materials stored in ↵dahlia2014-01-201-0/+73
| | | | | | | | DynAttrs. This is unfortunately still necessary until a better solution for handling existing legacy materials can be implemented
| * Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2014-01-201-0/+7
| |\
| | * Clean up orphaned json stores. This can happen when an object isMic Bowman2014-01-201-0/+7
| | | | | | | | | | | | | | | | | | removed, when a script is removed, or when a script is reset. Also added a stats command to track the number of json stores used by a region. Will probably add some more commands later.
| * | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-202-15/+154
| |\ \ | | |/ | |/|
| | * Stop exceptions being generated on agent connection if a telehub object has ↵Justin Clark-Casey (justincc)2014-01-202-15/+154
| | | | | | | | | | | | been deleted or has no spawn points.
| * | Materials module: a) Store materials as assets; b) Finalized it (removed the ↵Oren Hurvitz2014-01-202-97/+53
| | | | | | | | | | | | | | | | | | "Demo" label; removed most of the logging); c) Enabled by default Changed UuidGatherer to use 'sbyte' to identify assets instead of 'AssetType'. This lets UuidGatherer handle Materials, which are defined in a different enum from 'AssetType'.
* | | varregion: add --noterrain and --noparcel to 'load oar'.Robert Adams2014-01-191-18/+8
| | | | | | | | | | | | | | | --noterrain suppresses the loading of the terrain from the oar. --noparcels suppresses the loading of parcel information from the oar.
* | | varregion: add --displacement parameter to 'load oar'.Robert Adams2014-01-192-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | Adds displacment to all objects and terrain loaded from the oar. As an example, if you have a 512x512 region and an old 256x256 oar, doing load oar --displacement "<128,128,0>" oarFile.oar will load the object (and terrain) into the middle of the 512x512 region. If displacement is not specified, 'load oar' works like it always has. If you have a 5
* | | Merge branch 'master' into varregionRobert Adams2014-01-195-209/+114
|\ \ \ | |/ /
| * | minor: reinsert some method doc back into IEntityTransferModuleJustin Clark-Casey (justincc)2014-01-171-0/+20
| | |
| * | Reorder checks in SP.CompleteMovement() to fix test failuresJustin Clark-Casey (justincc)2014-01-161-36/+33
| | |
| * | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-162-57/+68
| |\ \ | | |/
| | * Actually put IsChildAgent = true inside the lock, otherwise there is still a ↵Justin Clark-Casey (justincc)2014-01-161-1/+3
| | | | | | | | | | | | small window for race conditions on duplicate CompleteMovement calls
| | * Prevent duplicate invocations or race dontision in SP.CompleteMovement()Justin Clark-Casey (justincc)2014-01-162-56/+65
| | | | | | | | | | | | | | | This can happen under poor network conditions if a viewer repeats the message send If this happens, physics actors can get orphaned, which unecessarily raises physics frame times
| * | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-162-123/+0
| |\ \ | | |/
| | * Remove old IInterRegionComms and references. This hasn't been used since ↵Justin Clark-Casey (justincc)2014-01-162-123/+0
| | | | | | | | | | | | 2009 and was superseded by ISimulationService
* | | Add J2K decoder routine that converts directly to an image.Robert Adams2014-01-191-1/+9
| | |
* | | varregion: remove unnecessary border checking code in ScenePresence.Robert Adams2014-01-111-0/+6
| | |
* | | Merge branch 'master' into varregionRobert Adams2014-01-115-76/+99
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs OpenSim/Region/Framework/Scenes/SceneBase.cs OpenSim/Services/Interfaces/IGridService.cs OpenSim/Services/LLLoginService/LLLoginResponse.cs (conflicts were debug statements that are commented out in master branch)
| * | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-101-5/+5
| |\ \ | | |/
| | * When moving the root prim of an attachment: a) Change the attach position; ↵Oren Hurvitz2014-01-101-5/+5
| | | | | | | | | | | | b) Move the other prims in the reverse direction to compensate
| * | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-104-71/+92
| |\ \ | | |/
| | * Refactored: use a single function to apply an object's folded permissions to ↵Oren Hurvitz2014-01-102-14/+14
| | | | | | | | | | | | its main permissions
| | * Refactored setting permissions when rezzing items: use the same function ↵Oren Hurvitz2014-01-103-57/+78
| | | | | | | | | | | | | | | | | | when rezzing from user inventory and prim inventory. Also, fixed a bug: when rezzing a coalesced object from a prim's inventory, apply the coalesced object's name and description only to the first sub-object; not to all the objects in the coalescence. (This was already done correctly when rezzing from a user's inventory.)
| * | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-081-0/+2
| |\ \ | | |/
| | * If an agent is sitting, then do send the rotation in the agent update ↵Justin Clark-Casey (justincc)2014-01-081-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | instead of zeroing it to resolve mouselook camera problems Addresses http://opensimulator.org/mantis/view.php?id=6892 Thanks to tglion for this spot. This resolves a recent regression from 17b32b764acd815400d9eb903aaec6dcebd60ac7