aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/World (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Minor formatting cleanup.Jeff Ames2008-09-162-2/+2
|
* From: mike pitman <pitman@us.ibm.com>Dr Scofield2008-09-167-8/+17
| | | | | | | | | | | | | | | | | | New patch (terrainedit2.patch) is attached that passes unit tests ( and in fact supplies the new unit test to pass..:) The previous failure was due to the change of the brush size to be linear instead of exponential, and the fact that the test parameters were assuming the exponentional brush size. This patch also removes dependency on 'duration' argument for adjustment step size. This should address the widely differing reports of instability with terrain editing. Note: 'doing this right' implies ultimately reading the parameters from the ini file, which this patch does not do.
* reverting r6302Dr Scofield2008-09-153-6/+3
|
* From: mike pitman <pitman@us.ibm.com>Dr Scofield2008-09-153-3/+6
| | | | | | | | | | | | | fixes the terrain spikes, and is the result of mostly a tuning operation on the smooth and flatten tools. I dug in and found that the spikes apparently result from smooth's overly aggressive iteration steps toward the average curvature, which leads to an instability that blows up the heights. I introduced a scaling factor to dampen the 'duration' parameter which tames progress and seems to keep things stable.
* Remove the cruft of accessing a private member of another module's classMelanie Thielker2008-09-132-0/+15
| | | | | | | from DataSnapshot and replace it with a best practices approach, making it much less dependent on the land module's internal structure and types.
* * Patch http://opensimulator.org/mantis/view.php?id=2167Justin Clarke Casey2008-09-121-0/+1
| | | | | | | * Force ClickAction persistence even if other object properties are not edited * Thanks nlin!
* Update svn properties, minor formatting cleanup.Jeff Ames2008-09-101-1/+1
| | | | | Fix unreachable code due to typo in llDetectedGroup.
* * Adds OnGenericMessage and SendGenericMessage functionality to IClientAPI.Adam Frisby2008-09-091-1/+7
| | | | | * Please don't break the build. *fingers crossed*
* Update svn properties, formatting cleanup.Jeff Ames2008-09-093-7/+7
|
* fix: warnings from libomvDr Scofield2008-09-081-0/+4
|
* Mantis #2142Melanie Thielker2008-09-071-1/+1
| | | | | | | Thank you, HomerHorwitz, for a patch that fixes landmark teleport and about landmarks with the new OMV types.
* Mantis #2133Melanie Thielker2008-09-064-6/+6
| | | | | | | Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-0626-458/+447
| | | | | | | * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
* clean up and fixing a typo.Dr Scofield2008-09-031-1/+1
|
* Mantis #2072Melanie Thielker2008-09-011-1/+14
| | | | | | | Griefer protection! When running without serverside permissions, let only the owner edit attachments. Having everyone able to do it just isn't right.
* * Oops, add landmarks to region archive loading/savingJustin Clarke Casey2008-08-302-1/+9
| | | | | | * Hopefully this will resolve mantis 2049
* Update svn properties, formatting cleanup.Jeff Ames2008-08-286-30/+26
|
* * On loading archives, report an error if an asset does not have the ↵Justin Clarke Casey2008-08-262-45/+61
| | | | expected filename format
* * This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares2008-08-251-0/+10
| | | | | | | | currently on Forge in a nice, friendly modular format. * There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain.. * Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)
* Implements 80% of object buy (prim vendor). You can't buy the object yet,Melanie Thielker2008-08-241-1/+4
| | | | | | | and the for sale setting doesn't survive a sim restart, but this is most of the plumbing.
* * Homer's amazing terrain MapTileRenderer. Thanks Homer!Teravus Ovares2008-08-225-182/+704
| | | | | | | | | | | | | * By default, texture rendering is on. This may be affected by using secure assets since your region hasn't registered with the gridserver before it asks for texture assets. It might also be affected by a slow asset server, so consider this release experimental. * Defined interface IMapTileTerrainRenderer. * Extracted "old" shaded maptile terrain rendering into ShadedMapTileRenderer; streamlined it a bit and added "highlight" rendering to its "shadow" rendering. * Added "new" terrain-texture based maptile terrain rendering (TexturedMapTileRenderer); made TerrainUtil.InterpolatedNoise public * Adapted MapImageModule to allow switching between those two by configuration * Added configuration option to OpenSim.ini.example
* Mantis #2003 - thank you, SachaMagne, for a patch that implementsMelanie Thielker2008-08-201-0/+10
| | | | | | | | | | | the first part of gesture persistence. ---------------------------------------------------------- Attachments no longer vanish on walking crossing. Teleport is still problematic, but will now be blocked with message "Inconsistent attachment state" rather than losing the attachment. Detach to be able to TP in that case.
* Mantis #1999Melanie Thielker2008-08-191-0/+3
| | | | | | Allow the sim owner to add estate managers to any estate on the sim
* Update svn properties, formatting cleanup.Jeff Ames2008-08-191-46/+18
|
* * maptile - just flatten it.. we'll worry about projection later.. Teravus Ovares2008-08-181-4/+7
|
* * Slightly better implementation of prim volume drawing on the maptile using ↵Teravus Ovares2008-08-181-10/+177
| | | | projection of an oriented bounding box. This isn't quite right yet. Experimental. It takes about 3 times longer then the previous version, however produces better results.
* * Maptile prim volume drawing change from manually drawing the rectangles ↵Teravus Ovares2008-08-181-20/+65
| | | | | | | using Bitmap.setpixel to a drawing2d graphics context. * Z-sort the prim volumes before drawing.
* * Text/comment cleanup in MapImageModuleTeravus Ovares2008-08-181-30/+6
|
* Fix another compiler warning, based on a patch submitted by Leaf. (bug #1978)Jeff Ames2008-08-181-76/+78
|
* Formatting cleanup.Jeff Ames2008-08-1829-329/+287
|
* * Turned on the MapImageModule as opposed to the code in Scene for ↵Teravus Ovares2008-08-171-3/+409
| | | | | | | | | generating the map image. Copied the code in Scene into the MapImageModule, made a few tweaks to get it to work with the module's interface. * Refactored a few things in Scene to make maptile saving easier to understand. * Added comments to describe the 'clever code' assetcache update without the gridasset being updated so as to lessen possible confusion in patches in the future. * If the MapImageModule isn't loaded, default to the code in Scene still.
* Patch for Adam: Add two new permissions options to Opensim.ini.exampleMelanie Thielker2008-08-171-3/+7
| | | | | | and the permissions module
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-171-11/+15
|
* Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-162-1/+131
| | | | | | | | | | | | | | | | | | | | | | | Places touched: - Added two events for in-packets to LLCLientView: RegionHandleRequest and ParcelInfoRequest - Added sending of two out-packets to LLCLientView: RegionIDAndHandleReply and ParcelInfoReply. - Scene handles the RegionHandleRequest, LandManagementModule the ParcelInfoRequest - Added inter-region request for LandData by RegionHandle and local position. This was implemented as XML-RPC request. The returned LandData isn't complete, it only contains the data necessary for answering the ParcelInfoRequest - Added new CAPS (0009) for RemoteParcelRequest and some methods for LandData handling to LandManagementModule - Added methods for fake parcelID creation and parsing to Util - Fixed missing implementation of interface methods. - Added new file: OpenSim/Framework/Communications/Capabilities/LLSDRemoteParcelResponse.cs NOTE: This is part of the patch, too. Due to the many places touched, I would consider this patch as experimental.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-162-6/+6
|
* Reshuffle to eliminate prim owner lookups unless gridgods are enabledMelanie Thielker2008-08-161-4/+7
|
* Guard against a null ref in the permissions module when a profileMelanie Thielker2008-08-161-2/+5
| | | | | | fetch fails.
* Refactor a lot of direct calls to OGS1 to use the cached version instead.Melanie Thielker2008-08-161-1/+3
| | | | | | | Scripts can now no longer DOS the user server and there are a lot fewer gratuitious lookups of user profile data.
* Perils of copypaste. Missing references.Melanie Thielker2008-08-151-1/+2
|
* Fix repeated user profile info lookups. Redirect those lookups to cache.Melanie Thielker2008-08-151-2/+3
|
* Plumb the user flags all the way through to the profile. userFlags inMelanie Thielker2008-08-151-1/+1
| | | | | | | | the database is now intepreted as follows: low byte = user flags. Next byte, low nibble: Deternines the text (Resident, Lifetime, etc) shown. No customn text support yet.
* Fix up master avatar handling for estate owners. Introduces a newMelanie Thielker2008-08-154-10/+29
| | | | | | | | | hierarchical rights structure. MasterAvatar: Owner of the region server (may be null), net gods (users with GodLevel 200), Estate owner (from database). Look at Opensim.ini.example to enable net gods. Estate owner will default to master avatar.
* Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames2008-08-152-8/+8
|
* From: Richard Alimi <ralimi@us.ibm.com>Dr Scofield2008-08-153-12/+91
| | | | | | | | | | | | | | | | | | The following patch makes some enhancements to loading/saving the Xml2 format. - Add streamed version of functionality for saving prims to Xml2 format. The streamed version (optionally) allows for saving the prims whose positions appear within a particular bounding box. - Expose stream versions of LoadPrimsFromXml2 and SavePrimsToXml2 in the Scene class - Extend loading from Xml2 (the streamed version) to optionally start scripts for the loaded scene objects)
* Refactor: Make the tree creation function take a UUID for the ownerMelanie Thielker2008-08-141-5/+12
| | | | | | Change the tree populator module to supply a sensible value
* Make the estate owner work. Changes permissions checks to allow theMelanie Thielker2008-08-142-9/+11
| | | | | | | estate owner user the ability to add and remove estate managers, and have EM rights outside of that.
* Make the estate owner UUID from the database have the same rightsMelanie Thielker2008-08-131-1/+7
| | | | | | as the region master avatar, unless it's LLUUID.Zero (the default).
* * if the user uuid is present, preserve ownership information when loading ↵Justin Clarke Casey2008-08-091-10/+43
| | | | | | | | an archive * if the uuid isn't present, ownership is given to the region's master avatar
* De-coupling the IClientAPI interface and ClientManager class from theMike Mazur2008-08-081-1/+1
| | | | | | | libsl/libomv Packet, as other client stacks could use other data types to pass packets around. Starting with InPacket() here, more to come.
* Minor formatting cleanup.Jeff Ames2008-08-074-13/+13
|