aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-08-23remove mono compiler warningsJustin Clark-Casey (justincc)3-3/+2
2011-08-14WorldMap: Added map item for Land-for-Sale. Implemented backlist item ↵Snoopy Pfeffer1-19/+187
timeouts (default 10 minutes; see also new config file setting BlacklistTimeout) and removing backlisted neigboring regions that have been restarted from the blacklist.
2011-08-13Fix a bug preventing region modules from creating trees at anything but the ↵Aaron Duffy1-3/+3
default scale.
2011-08-12If a map request to a server fails, always close the outbound connection.Justin Clark-Casey (justincc)1-1/+5
This probably doesn't help with the current memory leak.
2011-08-12minor: change login enable/disable messages in last commit so that they ↵Justin Clark-Casey (justincc)1-2/+2
occur after the setting has been made
2011-08-12minor: On "login disable/enable" always tell the user the final login ↵Justin Clark-Casey (justincc)1-4/+2
status, rather than remaining silent if it was already on/off
2011-08-11minor: a little bit of log message correction/commenting outJustin Clark-Casey (justincc)1-1/+1
2011-08-06rename TestHelper => TestHelpers for consistencyJustin Clark-Casey (justincc)4-20/+20
2011-08-06rename test SceneSetupHelpers -> SceneHelpers for consistencyJustin Clark-Casey (justincc)4-26/+26
2011-08-03Do a partial fix/implementation of OSSL osNpcMoveTo()Justin Clark-Casey (justincc)1-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.
2011-08-02remove ancient late 2008 cruft that handles the situation where the ↵Justin Clark-Casey (justincc)1-10/+1
GetRegionsByName used to not be implemented/returned null. It's impossible that anybody is still running this since the infrastructure has changed massively since that time.
2011-07-23Fixed serverside_object_permission default value conflictionMakopoppo1-1/+1
2011-07-22Generate the initial maptile asynchronouslyOren Hurvitz1-4/+6
Signed-off-by: Melanie <melanie@t-data.com>
2011-07-18use standard sdk stack in terrain model rather than OpenSim.Framework.UndoStack.Justin Clark-Casey (justincc)1-1/+1
remove OpenSim.Framework.UndoStack
2011-07-02If a user has the rights to edit a parcel's properties, then also allow them ↵Justin Clark-Casey (justincc)1-4/+4
always to enter that parcel. This is patch http://opensimulator.org/mantis/view.php?id=5567 Thanks Snoopy!
2011-07-01Make default serverside_object_permissions = true since this better matches ↵Justin Clark-Casey (justincc)1-1/+1
user expectations. It also matches the default setting in the OpenSim.ini.example file
2011-06-24Tell hypergridders when their teleports fail because of the 4096 limit ↵Justin Clark-Casey (justincc)1-1/+3
rather than just saying "destination not found" Instead of performing the 4096 check when the region is linked (and subsequently removing the link), leave the link in place and perform the check in the entity transfer module This allows us to explicitly tell the hypergridder why the teleport failed (region out of range). It also allows people on regions that are within range (on a large source grid) to teleport. The Check4096 config parameter in the [GridService] section is replaced by a max_distance paramter in a new [EntityTransfer] section in OpenSimDefaults.ini Since the parameter is in OpenSimDefaults.ini no action needs to be taken unless you want to increase this limit. It could also be decreased. The check is being made in the base entity transfer module, since I believe the viewer problem occurs both on extremely large grids and while hypergridding.
2011-06-14tweak messages. Make verbose inventory item save message give the item name ↵Justin Clark-Casey (justincc)1-2/+2
as well as item id and asset id
2011-06-13match water color for warp3d map tiler and adjust lightingMichael Cerquoni aka Nebadon Izumi1-5/+7
2011-06-12A few bug fixes on map V2. Zoom level weirdness still there.Diva Canto1-6/+12
2011-06-12First pass at making the V2 map work. Standalones only for now. There are ↵Diva Canto1-4/+4
some issues with the zoom level -- TBD.
2011-06-103rd way of reseting the HG Map. This time, don't use the grid service; ↵Diva Canto1-1/+3
instead keep track of which map blocks each client has seen in the region, and reset exactly those when the client closes.
2011-06-10Save the sun's position in OARsOren Hurvitz2-0/+5
2011-06-09The map breakage is actually at 2048!Diva Canto1-3/+3
2011-06-08Consistency fix on the last commit.Diva Canto1-1/+1
2011-06-08Fixed a compilation problem. Also added a lengthy comment on the Map hack, ↵Diva Canto1-35/+48
so that it never goes unnoticed again.
2011-06-08Reverting the [HG]MapModule to its buggy behavior above 4096. Ppl seem to ↵Diva Canto1-5/+15
prefer the color blue, and I have given up trying to make things work above 4096. Revert "Improved reuse on the WorldMap/WorldMapModule.cs" This reverts commit d473d9975e70366d0fd16276c9bafd5ec269dcd9.
2011-05-30Improved reuse on the WorldMap/WorldMapModule.csDiva Canto1-15/+5
2011-05-27Make sure culture is en-US when saving archive related xml.Justin Clark-Casey (justincc)1-0/+4
This might resolve http://opensimulator.org/mantis/view.php?id=5475
2011-05-26Add --noassets option for "save iar"Justin Clark-Casey (justincc)1-1/+1
Like "save oar", this saves an iar without assets This can be useful for backup when you know the required assets will still be present (e.g. you're backing up the assets db separately). This also bumps the iar format version to 0.3 and 1.2 respectively. 0.3 is backward compatible with previous opensim versions 1.2 is used if the --profile switch is specified. It is only compatible with 0.7.1 presently.
2011-05-26Bump OAR file format version up to 0.7 for this development cycle.Justin Clark-Casey (justincc)1-2/+2
This adds a <assets_included>true|false</assets_included> element to the oar control file, though this is not used on reloading at this time. This addition is backward compatible with previous opensim releases
2011-05-26Add a --noassets option to "save oar".Justin Clark-Casey (justincc)3-37/+143
This switch stops any assets being saved in the oar. This can be useful if you're using OAR to backup regions and you know you'll always have the original asset database available.
2011-05-21Fixed permissions bug related to friends in PermissionsModule. Added ↵Diva Canto1-15/+26
FriendsData[] GetFriends(string principalID) to IFriendsData and FriendInfo[] GetFriends(string PrincipalID) to IFriendsService. Refactored some more in the FriendsModule. Made client get notification of local friends permissions upon HGLogin. HG Friends object permissions work.
2011-05-21Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)4-4/+0
OpenSim.Tests.Common instead
2011-05-14refactor: remove thisObject argument from ILandObject.Get*MaxPrimCount() ↵Justin Clark-Casey (justincc)1-7/+8
instance methods since it didn't make sense to use anything other than the instance themselves.
2011-05-14Minor doc change to see if this provokes a good panda buildJustin Clark-Casey (justincc)1-2/+5
2011-05-14When loading an OAR that doesn't have parcels, create a default parcelOren Hurvitz3-12/+20
2011-05-14Swapped the two restart command descriptions each otherMakopoppo1-2/+2
2011-05-09Changed the Access flag on HGMap to 255 (does not exist) and clarified the ↵Diva Canto1-1/+1
other value 254 too. Meanings taken from libomv.
2011-05-09Fixes gray tiles around +/-4 when user clicks on an empty tile. Affects ↵Diva Canto1-1/+1
regions above 4096 primarily.
2011-05-09Fixes gray tiles on map search for viewers 1.Diva Canto2-5/+9
2011-05-08The map is seriously broken. This doesn't fix it, but at least provides one ↵Diva Canto1-4/+4
more piece of data that seems to be required -- agent flags, which seem to be different in Viewer 2. WARNING: changes IClientAPI.
2011-05-06add descriptive explanations for region restart functionalityJustin Clark-Casey (justincc)1-6/+13
2011-04-23Added MaxAgents configuration option to RegionConfig.ini allowing region ↵E. Allen Soard1-1/+4
hosters to setup regions maintaining more control over system resources.
2011-04-18bump oar version number to 0.6.Justin Clark-Casey (justincc)1-1/+1
This commit contains no data changes - the version bump is to establish a version at which the control file must come first in the archive.
2011-04-18Add regression test to check that OARs start with the control file.Justin Clark-Casey (justincc)2-9/+18
2011-04-15get rid of all traces of the now used mock service infrastructureJustin Clark-Casey (justincc)1-1/+1
2011-04-13Add a regression test for rezzing a single object into a scene from user ↵Justin Clark-Casey (justincc)1-0/+4
inventory
2011-04-12Implemented terrain save-tile command. Does the opposite of load-tile. For ↵Diva Canto7-0/+132
now, only saves to .png.
2011-04-06Signal prim count taint if the AbsolutePosition of a scene object changes.Justin Clark-Casey (justincc)1-4/+26
This updates prim counts correctly if an object is moved by something other than an avatar (e.g. scripts, region modules) Create TestMoveOwnerObject() regression test for this case.