aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandObject.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Warnings--onefang2019-06-041-2/+1
|
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-131/+755
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-126/+198
|
* Fix bug where loading an OAR with a deeded parcel would always set the ↵Justin Clark-Casey (justincc)2012-11-241-5/+8
| | | | | | | | | 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.
* Move OpenSim.Data.RegionFlags -> OpenSim.Framework.RegionFlags to make it ↵Justin Clark-Casey (justincc)2012-10-091-0/+1
| | | | easier for other code to use (e.g. LSL_Api) without having to reference OpenSim.Data just for this.
* refactor: Rename EstateSettings.IsEstateManager() to ↵Justin Clark-Casey (justincc)2012-04-171-2/+2
| | | | | | | EstateSettings.IsEstateManagerOrOwner() to reflect what it actually does. This makes it consistent with other parts of OpenSimulator that are treating ESTATE_MANAGER and ESTATE_OWNER as different entities. As per opensim-dev mailing list.
* Do not timeout group member cache entry, as long as there are frequent group ↵Snoopy Pfeffer2012-04-101-0/+3
| | | | membership requests. These are caused by movements within the parcel boundaries.
* Revert last commitSnoopy Pfeffer2012-04-051-22/+25
|
* Group based access restrictions to parcels require group membership, but not ↵Snoopy Pfeffer2012-04-051-25/+22
| | | | that this group is active for that user.
* Little bug fix in HasGroupAccess, to properly store the case "true" in the ↵Snoopy Pfeffer2012-04-051-5/+2
| | | | cache.
* Simplify group access checks and break them out into a separate method.Melanie2012-04-051-57/+49
| | | | | | | Use existing cache if the avatar is within the region and use an ExpiringCache to cache status if the avatar is not in the region. The 30 second delay now applies to scripted objects ony and only when the owner is not present.
* Implements group based access restrictions for parcels of land. Because of ↵Snoopy Pfeffer2012-04-051-1/+57
| | | | caching there can be a delay of up to 30 seconds until the access rights are effectively changed for a user.
* Change a false false to be truly true - or is this statement false?Melanie2012-03-221-1/+1
| | | | Fixes perms boo-boo
* Rework Diva's patch to simplify itMelanie2012-03-221-14/+19
|
* Revert "Simple build permissions feature. NOTE: EXPERIMENTAL, DISABLED BY ↵Melanie2012-03-221-37/+4
| | | | | | DEFAULT. Turns out that this can't be expressed by cascading Permission modules, so I did it as per this patch." This reverts commit 6146e7ef258b10888ad7464b72b75cca701e02c9.
* Simple build permissions feature. NOTE: EXPERIMENTAL, DISABLED BY DEFAULT. ↵Diva Canto2012-03-221-4/+37
| | | | Turns out that this can't be expressed by cascading Permission modules, so I did it as per this patch.
* Fix:Fly setting for Parcel dosen't work ↵PixelTomsen2012-02-191-1/+2
| | | | | | http://opensimulator.org/mantis/view.php?id=5887 Signed-off-by: nebadon <michael@osgrid.org>
* Revert my two quick fixes for the lag issue and put in the real fix, whichMelanie2012-02-051-1/+2
| | | | | is to only write to the database if data was changed. I was writing to the db on every step of every avatar. Sure to give us lag, that.
* Revert "Remove checks on ban list expiry on every move. To be re-added on ↵Melanie2012-02-051-4/+4
| | | | | | parcel" This reverts commit 35f14a262dfa3d9199f554154a63f5f532460f56.
* Revert "Check ban list for a particular parcel only when an avatar moves ↵Melanie2012-02-051-0/+4
| | | | | | into it." This reverts commit 8923ad755d97d5ddb4a29cb6f543b53195f0b461.
* Check ban list for a particular parcel only when an avatar moves into it.Melanie2012-02-051-4/+0
| | | | | This restores functionality remove in the last commit without reintroducing the performance penalty.
* Remove checks on ban list expiry on every move. To be re-added on parcelMelanie2012-02-051-4/+4
| | | | | boundary crossing only as soon as I'm properly awake. This should fix recent performance issues
* Replace ParcelAccessEntry with a new struct, LandAccessEntry, which moreMelanie2012-02-021-24/+60
| | | | | | accurately reflects the data sent by the viewer. Add times bans and the expiration of timed bans. Warning: Contains a Migration (and nuts)
* llGetParcelMusicURL implementation ↵Pixel Tomsen2012-01-251-1/+10
| | | | | | http://wiki.secondlife.com/wiki/LlGetParcelMusicURL Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* Rename ForEachAvatar back to ForEachScenePresence. The other changesDan Lake2011-11-031-1/+1
| | | | | | from previous commit which sort out which iterator is used are left intact. A discussion is needed as to what constitutes an avatar vs a ScenePresence.
* Renamed ForEachRootScenePresence to ForEachAvatar. Cleaned up calls toDan Lake2011-11-031-1/+1
| | | | | | | | | | | | | | the 3 iteration functions so more of them are using the correct iteration for the action they are performing. The 3 iterators that seem to fit all actions within OpenSim at this time are: ForEachAvatar: Perform an action on all avatars (root presences) ForEachClient: Perform an action on all clients (root or child clients) ForEachRootClient: Perform an action on all clients that have an avatar There are still a dozen places or so calling the old ForEachScenePresence that will take a little more refactoring to eliminate.
* Added new ForEachRootScenePresence to Scene since almost every delegate ↵Dan Lake2011-10-271-4/+1
| | | | passed to ForEachScenePresence checks for !IsChildAgent first. It consolidates child and root handling for coming refactors.
* If a user has the rights to edit a parcel's properties, then also allow them ↵Justin Clark-Casey (justincc)2011-07-021-4/+4
| | | | | | | always to enter that parcel. This is patch http://opensimulator.org/mantis/view.php?id=5567 Thanks Snoopy!
* refactor: remove thisObject argument from ILandObject.Get*MaxPrimCount() ↵Justin Clark-Casey (justincc)2011-05-141-7/+8
| | | | instance methods since it didn't make sense to use anything other than the instance themselves.
* Add method doc to some land bitmap methods in ILandObject.Justin Clark-Casey (justincc)2011-04-061-13/+1
| | | | Also changes prim count tests to use the correct upper region bounds, though the method actually ignores the overage.
* properly refresh object owner list when refresh button is hit on land parcel ↵Justin Clark-Casey (justincc)2011-04-051-1/+5
| | | | object tab
* remove now unused individual LandData prim counts.Justin Clark-Casey (justincc)2011-04-051-67/+16
| | | | | 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.
* 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-1/+3
| | | | Not functional yet, but tests now act against this object rather than interrogating the module directly
* Thank you, Goetz, for a patch to fix prim count display in cut regions.Melanie2011-01-281-5/+19
|
* Implement command "land show". This shows all the parcels on the currently ↵Justin Clark-Casey (justincc)2011-01-261-2/+38
| | | | | | 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.
* Fixes mantis #5343Diva Canto2011-01-231-0/+1
|
* Fix a small bug in ban list handlingMelanie2010-12-131-0/+2
|
* Revamp the viewer -> banlist packet processing so fix a number of bugs.Melanie2010-12-131-57/+143
| | | | | | | 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.
* Formatting cleanup.Jeff Ames2010-09-121-7/+7
|
* Implements parcel media setting persistence and packet / CAPS handlingJonathan Freedman2010-08-301-0/+7
| | | | | | properly for the new media settings. Signed-off-by: Melanie <melanie@t-data.com>
* Allow gods and estate managers/owners to be unaffected by parcel bansMelanie Thielker2010-07-291-0/+6
|
* Remove getting the object capacity from the money module. It is now setMelanie Thielker2010-07-141-2/+2
| | | | directly from the Region Info (and the region ini file)
* Ensure the show in search flag is cleared on ownership change. Also, whenMelanie2010-05-061-1/+4
| | | | | land is reclaimed, reset it's for sale flags so it can't be bought again right away.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJohn Hurliman2010-03-191-1/+1
|\
| * Unify a previous refactor of object return with the older solution. WeMelanie2010-03-181-1/+1
| | | | | | | | really don't need two methods doing the same thing, but differently.
* | Cleaned up access to scenepresences in scenegraph. GetScenePresences and ↵Dan Lake2010-03-191-12/+14
|/ | | | 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>).
* Formatting cleanup. Add copyright notices.Jeff Ames2010-03-101-1/+1
|
* - parcel blocking, region crossing blocking, teleport blockingunknown2010-03-091-3/+6
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Formatting cleanup.Jeff Ames2009-11-231-1/+1
|