aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/RegionCombinerModule (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-04-05remove now unused individual LandData prim counts.Justin Clark-Casey (justincc)1-5/+0
However, the calls to the land management module to record prims need to remain, since they were also being used to return owner object lists, etc. This is probably why prim counts were being done there in the first place.
2011-01-27When an oar is loaded, do not create a default parcel before loading the ↵Justin Clark-Casey (justincc)1-2/+2
parcels from the OAR. The region spanning parcel shouldn't exist in this situation. If it does, when the land data is loaded it is repersisted with a local ID which comes after the ones loaded via the oar, which obliterates the oar loaded one. Resaving the data we just loaded from the database is somewhat odd in itself (though this makes sense from the way that OAR loading was already using the same event).
2011-01-27Fix OAR parcel loading so that old parcels are replaced by the new instead ↵Justin Clark-Casey (justincc)1-0/+5
of merged. The --merge switch will still merge the old and new land parcelling.
2010-12-13Revamp the viewer -> banlist packet processing so fix a number of bugs.Melanie2-3/+3
Remove the too coarse CanEditParcel method in favor of a CanEditParcelProperties method that takes a GroupPowers argument to specify what action is to be taken. Also, make the method to set parcel data much more granular. Permissions in a deeded setting should now work.
2010-09-12Formatting cleanup.Jeff Ames2-5/+5
2010-07-30remove gods event subscription to gods module from sceneJustin Clark-Casey (justincc)1-4/+15
2010-07-30move attachment subscription events into AttachmentsModule from scene.Justin Clark-Casey (justincc)1-3/+4
restored to some heavy casting in order to preserve RegionCombinerModule semantics, pending better events.
2010-06-08Refactor SendCoarseLocations for better performance. Instead of computing ↵Dan Lake1-1/+3
list of all locations fresh for every scene presence on every frame, we will instead compute the list once every 50 frames and send to all connected presences at that time. Also, we only add 60 items to the list when there are more than 60 presences in the scene. For 1000 users, this change yields a 99.8% reduction in list processing and a 98% reduction in network bandwidth for coarse locations.
2010-05-13Implements three new OSSL functions for parcel management: osParcelJoin ↵OpenSim Master1-0/+10
joins parcels in an area, osParcelSubdivide splits parcels in an area, osParcelSetDetails sets parcel name, description, owner and group owner. Join and Subdivide methods in LandChannel are exposed.
2010-03-19Cleaned up access to scenepresences in scenegraph. GetScenePresences and ↵Dan Lake1-12/+13
GetAvatars have been removed to consolidate locking and iteration within SceneGraph. All callers which used these to then iterate over presences have been refactored to instead pass their delegates to Scene.ForEachScenePresence(Action<ScenePresence>).
2010-03-18Unify a previous refactor of object return with the older solution. WeMelanie2-10/+4
really don't need two methods doing the same thing, but differently.
2009-12-29* Attempts to resolve the megaregion terrain edit rebound.Teravus Ovares (Dan Olivares)1-0/+82
* It does this by tweaking the throttles on child agent connection to a megaregion and multiplying the land throttle by 50. (various bit and byte magic ensue) * While, I doubt this will cause terrain crater sized potholes.. since it actually increases the bandwidth available for land in child regions when MegaRegions area active, more testing would be good. * This, in theory, also shouldn't cause missing objects in child regions.. because all objects are in the root region anyway. As I said, more testing would be good.
2009-11-25minor: add doc to a few parcel methodsJustin Clark-Casey (justincc)1-0/+1
2009-11-23Formatting cleanup.Jeff Ames1-2/+2
2009-11-11* Thanks to a little help from jhurliman, jradford, diva, mono's brajkovic, ↵Teravus Ovares (Dan Olivares)2-13/+5
miguel, and the fabulous bug reports by our community members.. The workaround fix for the "ERROR:metadata.c:3211:mono_metadata_token_from_dor: code should not be reached" bug in the RegionCombinerModule.
2009-11-11* Fix resources file mappingTeravus Ovares (Dan Olivares)1-2/+2
2009-11-10* Update namespace in the regioncombinermodule.Teravus Ovares (Dan Olivares)8-8/+9
2009-11-10* Move RegionCombinerModule to it's own projectTeravus Ovares (Dan Olivares)9-0/+1781
* Moves the mono_metadata_token_from_dor message to a different module on loading.