aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-540/+793
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-227/+711
|
* Fixed: the AvatarEnteringNewParcel event wasn't triggered in some casesOren Hurvitz2013-01-041-0/+6
| | | | If an avatar moved between regions: A -> B -> A, then when returning to region A the AvatarEnteringNewParcel wasn't triggered. This happened because the ScenePresence in region A still remembered its previous 'currentParcelUUID', so it appeared as if the avatar didn't change parcels. Now, however, when a ScenePresence becomes a child presence we clear its 'currentParcelUUID'.
* Implemented Return Objects when it's invoked from the Top Colliders or Top ↵Oren Hurvitz2013-01-041-5/+55
| | | | Scripts dialogs
* Fix bug where loading an OAR with a deeded parcel would always set the ↵Justin Clark-Casey (justincc)2012-11-241-2/+3
| | | | | | | | | parcel owner ID to the estate owner even if the group UUID was present. Aims to address http://opensimulator.org/mantis/view.php?id=6355 As part of this work, an incomplete IXGroupsData was added which currently only allows store/fetch/delete of group records (i.e. no membership data etc) This is subject to change and currently only an in-memory storage implementation exists for regression test purposes.
* Another 10 modules' directives moved from .addin.xmlDiva Canto2012-11-121-0/+2
|
* Refactor: Move Dwell reply to a module that can be disabled. The prior,Melanie2012-10-211-12/+0
| | | | hardcoded approach disabled the use of non-core dwell tracking modules.
* SQLite DB: some values of land data will be not saved / loadedPixelTomsen2012-10-211-0/+1
| | | | | | http://opensimulator.org/mantis/view.php?id=6370 Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* Fix: invinite loading for Viewer3 : parcelinfo request of traffic-value ↵PixelTomsen2012-10-201-0/+12
| | | | | | (implementation of dwell-value in LandData + eventhandler, return always 0); source-formatting of LandData Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* Implement optional name and description on http stream handlers so that we ↵Justin Clark-Casey (justincc)2012-05-031-14/+19
| | | | | | can relate a slow request to what the handler actually does and the agent it serves, if applicable. This is most useful for capabilities where the url is not self-describing.
* Try to resolve some problems with viewers crashing after hitting parcel ↵Justin Clark-Casey (justincc)2012-02-231-6/+21
| | | | | | | | | | banlines or freezing on the banline. This involves 1) On forcible teleport, call m_scene.RequestTeleportLocation() rather than ScenePresence.Teleport() - only EntityTransferModule now should call SP.Teleport() 2) When avatar is being forcibly moved due to banlines, use a 'stop movement' tolerance of 0.2 to requested position rather than 1 This prevents the avatar sometimes being stuck to banlines until they teleport somewhere else. This aims to fix some problems in http://opensimulator.org/mantis/view.php?id=5822
* Revert "Check ban list for a particular parcel only when an avatar moves ↵Melanie2012-02-051-17/+0
| | | | | | into it." This reverts commit 8923ad755d97d5ddb4a29cb6f543b53195f0b461.
* Check ban list for a particular parcel only when an avatar moves into it.Melanie2012-02-051-0/+17
| | | | | This restores functionality remove in the last commit without reintroducing the performance penalty.
* Replace ParcelAccessEntry with a new struct, LandAccessEntry, which moreMelanie2012-02-021-2/+2
| | | | | | accurately reflects the data sent by the viewer. Add times bans and the expiration of timed bans. Warning: Contains a Migration (and nuts)
* Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)2011-12-051-2/+2
| | | | | | | | of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
* remove mono compiler warningsJustin Clark-Casey (justincc)2011-08-231-1/+1
|
* Do a partial fix/implementation of OSSL osNpcMoveTo()Justin Clark-Casey (justincc)2011-08-031-37/+32
| | | | | | Avatar moves and stops. However, will stop in mid stride. And if the move to position is in the air, avatar will continue to make vain and quite hilarious attempts to take off (but never doing so). Clearly more work is needed.
* Minor doc change to see if this provokes a good panda buildJustin Clark-Casey (justincc)2011-05-141-2/+5
|
* When loading an OAR that doesn't have parcels, create a default parcelOren Hurvitz2011-05-141-8/+11
|
* Improve previous ILandObject method doc.Justin Clark-Casey (justincc)2011-04-061-0/+12
| | | | For test code, take a part name prefix when creating objects, so that these can be more easily identified in the logs
* properly refresh object owner list when refresh button is hit on land parcel ↵Justin Clark-Casey (justincc)2011-04-051-8/+9
| | | | object tab
* remove now unused individual LandData prim counts.Justin Clark-Casey (justincc)2011-04-051-28/+11
| | | | | 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.
* If the prim count gets an object with invalid bounds, don't try to count it.Justin Clark-Casey (justincc)2011-03-311-3/+3
| | | | This appears to be the more probable explanation for some failures seen. Either we're counting attachments which are temporarily out of bounds (shouldn't be due to the IsAttachment) check or we're counting scene objects which have out of bounds co-ordinates (seems more likely)
* Put in temporary logging message to find out if scene objects are requesting ↵Justin Clark-Casey (justincc)2011-03-311-4/+5
| | | | land objects for co-ordinates outside the region
* Start using IPrimCounts populated by PrimCountModule instead of LandData ↵Justin Clark-Casey (justincc)2011-03-251-1/+1
| | | | | | | counts populated by LandManagementModule. In order to pass ILandObject into IClientAPI.SendLandProperties(), had to push ILandObject and IPrimCounts into OpenSim.Framework from OpenSim.Region.Framework.Interfaces, in order to avoid ci Counts are showing odd behaviour at the moment, this will be addressed shortly.
* Add ILandObject.IPrimCounts for the new prim count module.Justin Clark-Casey (justincc)2011-03-251-2/+10
| | | | Not functional yet, but tests now act against this object rather than interrogating the module directly
* Add generic EventManager.OnObjectAddedToScene and get PrimCountModule to ↵Justin Clark-Casey (justincc)2011-03-231-0/+4
| | | | | | | listen for that rather than EventManager.OnParcelPrimCountAdd OnParcelPrimCountAdd had the wrong semantics for the PrimCountModule - it was invoked for every entity in the scene, not just new ones, which would screw up the untainted count. Extend automated test for this scenario.
* Add an initial confidence-building TestAddObject() for prim counts.Justin Clark-Casey (justincc)2011-03-221-13/+16
|
* Merge branch 'master' of melanie@opensimulator.org:/var/git/opensimMelanie2011-01-281-2/+14
|\
| * Put confirmation on "land clear" command to avoid nasty accidentsJustin Clark-Casey (justincc)2011-01-271-2/+14
| |
* | Thank you, Goetz, for a patch to fix prim count display in cut regions.Melanie2011-01-281-4/+4
|/
* When an oar is loaded, do not create a default parcel before loading the ↵Justin Clark-Casey (justincc)2011-01-271-8/+15
| | | | | | | | 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).
* Show local IDs in "land show" output.Justin Clark-Casey (justincc)2011-01-271-5/+6
| | | | Also properly insert region name in "land clear" command
* Add "land clear" commandJustin Clark-Casey (justincc)2011-01-271-3/+13
| | | | This clears all parcels from the currently selected region and replaces them with the single region spanning default parcel owned by the estate owner
* Fix OAR parcel loading so that old parcels are replaced by the new instead ↵Justin Clark-Casey (justincc)2011-01-271-0/+19
| | | | | | of merged. The --merge switch will still merge the old and new land parcelling.
* remove unused CreateBaseLand()Justin Clark-Casey (justincc)2011-01-271-9/+0
|
* Implement command "land show". This shows all the parcels on the currently ↵Justin Clark-Casey (justincc)2011-01-261-15/+82
| | | | | | selected region/s This is useful for diagnostics. The command is "land show" rather than "show land" because it's implemented as a module specific subcommand.
* Fix scoping for prim region crossingsMelanie2011-01-031-1/+1
|
* Implement Scope ID lookup on GetLandData. Stacked regions were not handledMelanie2011-01-031-34/+34
| | | | properly
* Revamp the viewer -> banlist packet processing so fix a number of bugs.Melanie2010-12-131-10/+24
| | | | | | | 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.
* Fix parcel bans to work only on the avatars they're supposed to work on ↵Melanie2010-11-091-14/+15
| | | | instead of pushing all avatars, even the ones that are allowed.
* Formatting cleanup.Jeff Ames2010-09-121-60/+55
|
* First pass at cleaning up thread safety in EntityManager and SceneGraphJohn Hurliman2010-09-101-1/+2
|
* Reflect the ParcelPropertiesUpdateRequest into Scene.EventManager, becauseMelanie Thielker2010-09-061-3/+11
| | | | modules need to see it (Search!) even if it comes in via CAPS
* Remove "Dwell" support from core and replace it with calls to methodsMelanie Thielker2010-09-051-13/+0
| | | | on IDwellModule
* Implements parcel media setting persistence and packet / CAPS handlingJonathan Freedman2010-08-301-2/+63
| | | | | | properly for the new media settings. Signed-off-by: Melanie <melanie@t-data.com>
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2010-08-131-6/+6
|
* Correct display of landmark about info. Also correct region maturity ratingMelanie Thielker2010-08-071-1/+5
| | | | | in LM info. Maturity is NOT the parcel's setting, that is only for the image and text. Parcel maturity is governed by region maturity.
* Implements three new OSSL functions for parcel management: osParcelJoin ↵OpenSim Master2010-05-131-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.
* Also remove sale and search flags on god owner change.Melanie2010-05-071-0/+1
|