aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/World/Terrain/TerrainModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Fixes a small bug where load-oar fails due to whitespace in region name.Sean Dague2009-01-051-3/+3
| | | | | From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* Prevent exception in terrain module if just the word terrain is entered at ↵idb2008-12-261-0/+5
| | | | the console. Fixes Mantis #2915
* Update svn properties, minor formatting cleanup.Jeff Ames2008-12-111-1/+1
|
* * Apply terrain flip patch from http://opensimulator.org/mantis/view.php?id=2315Justin Clarke Casey2008-12-091-0/+46
| | | | | | | | | * This allows terrain to be flipped on the x or y axis with the command "terrain flip x" (or y) * See terrain help from the command prompt * This is in anticipation of change the way around in which terrain raw files are imported to match that of Second Life (to reduce user confusion and improve useability) * Thanks jonc!
* Refactor: Scene.ExternalChecks -> Scene.Permissions. Also make allMelanie Thielker2008-11-211-4/+4
| | | | | | the internals of the permissions module adapter sane
* Allow gods to terraform without limits. Respect the Allow Others ToMelanie Thielker2008-11-111-6/+7
| | | | | | Terraform flag in land.
* Check for terrain size=256x256 on "terrain load <file>". This fixesHomer Horwitz2008-10-151-0/+13
| | | | | | (the rest of) Mantis#1813.
* * Apply http://opensimulator.org/mantis/view.php?id=1207Justin Clarke Casey2008-10-071-25/+72
| | | | | | | * Implmements llModifyLand() and a check for the "Allow others to terraform flag" * Thanks tglion!
* Revert r6697 patch as the build fails.Charles Krinke2008-10-061-72/+25
|
* Mantis#1207. Thank you, TGlion for a patch that addresses:Charles Krinke2008-10-061-25/+72
| | | | | | | | | | Implementation of llModifyLand() and There is a bug on permission-check of land-terraforming: x an y-coordinates are interchanged on function-call ExternalChecksCanTerraformLand. Correct: x is west, and y is north. 2) Missing check of "Other allow to terraform-flag" (Parcel.ParcelFlags.AllowTerraform)
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-3/+3
| | | | | | | * 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.
* Formatting cleanup.Jeff Ames2008-08-181-8/+8
|
* *Added CommandIntentions that is used to describe a console commands hazard. ↵mingchen2008-07-251-12/+12
| | | | | | | HAZARDOUS if it modifies the simulator, NON_HAZARDOUS if it does a command that doesn't modify the simulator but does a background command such as a forced backup, and STATISTICAL if it returns debug or more information. *This is useful for implementing a protection system from unwanted script execution or for application modules needing to know what a command does.
* Patch #9147Melanie Thielker2008-07-141-2/+2
| | | | | | | Patch #4 of the region settings series. Partial functionality of the new storage system. More patches to follow.
* * On client login, send only one terrain patch at a time (with pauses) ↵Justin Clarke Casey2008-07-031-3/+9
| | | | | | | | | instead of 4 at a time * Certain terrains which are fine went patches are sent singly cause a libsecondlife failure when patches are sent in batches * See http://opensimulator.org/mantis/view.php?id=1662 for more details
* * Allow terrains to be loaded and saved from streams as well as directly to ↵Justin Clarke Casey2008-06-291-0/+61
| | | | | | | | and from files * Should be making use of this in the next revisions
* Minor formatting cleanup.Jeff Ames2008-06-251-4/+1
|
* Mantis#1543. Thank you kindly, Jonc for a patch that:Charles Krinke2008-06-191-3/+78
| | | | | | Implements terrain bake from Region/Estate dialog and respects estate settings during terraforming
* * Enables maptile display in grid mode for simulators that are not on the ↵Teravus Ovares2008-06-141-1/+3
| | | | | | | | | same instance. * Only generates a new maptile after a refresh interval * Maptile names have the UnixTimeSinceEpoch that they were generated and the regionUUID they're from, so you can know which ones are no longer necessary. * Updates RegionInfo, so backup your /bin/Region/*.xml files.
* * Fixed a slight issue with the LLRAW exporter.Adam Frisby2008-05-281-1/+2
| | | | | | * Linden uses a neutral height channel of 128.0 on their multiplier. OpenSim was using a neutral of 127.0 - this has been changed to 128.0, this may cause files exported to the .RAW format to look slightly different when loaded back in - it is highly recommended to use the R32 format instead which avoids these sorts of issues. * Made a tweak to the Terrain Plugin loading process.
* * Added new InstallPlugin interface to ITerrainModule.Adam Frisby2008-05-271-10/+21
| | | | | * This is to allow other region modules to install Terrain Effects.
* *Added all the permission checks to the sceneexternalchecks and modified ↵mingchen2008-05-081-1/+1
| | | | | | | permission module to follow this. *This makes permission checking much more modular; allows restrictive and granting module to be made without modifying the existing permission module
* * Refactor: Break out permissions code into a separate region PermissionsModuleJustin Clarke Casey2008-05-051-1/+1
|
* * Updating some file locations.Adam Frisby2008-05-041-1/+1
|
* * Cleaned up code in Terrain, Tree and Map modules.Adam Frisby2008-05-031-4/+2
| | | | | | | * Fixed a bug with Terragen loader where it would do bad things on a non 256x256 sized terrain. Now loads the array correctly. * Moved MapImageModule.cs to Modules/World/WorldMap * Changed Location.RegionHandle to use Helpers.GetUlong instead of doing it ourselves.
* * Rolled back a few changes.Adam Frisby2008-05-011-3/+3
|
* * Spring cleaning on Region.Environment. Adam Frisby2008-05-011-3/+3
| | | | | | | * Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
* Update svn properties. Minor formatting cleanup.Jeff Ames2008-05-011-735/+735
|
* * Cruft removal step #1. Cleaning Modules directory.Adam Frisby2008-04-301-4/+3
|
* * Commiting a bunch of missed files.Adam Frisby2008-04-301-0/+737