aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Terrain/TerrainModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Fixed 'flatten area' brush, so it now has a 'force' instead of instantly ↵Adam Frisby2008-03-141-141/+8
| | | | | | | | | | | flattening the selected area. * Noise, and Noise-Area brushes now use Perlin noise, more closely simulating the method LL uses officially. * TerrainModule has been cleaned up slightly. * TerrainUtil class has several new functions related to seeded noise generation. * Extracted ITerrainEffect, ITerrainFloodEffect, ITerrainLoader, ITerrainPaintableEffect, TerrainChannel to seperate files.
* * Fix for Smooth Area Flood Brush, now doesn't flood the entire sim.Adam Frisby2008-03-121-1/+1
|
* * Updated Terrain ModuleAdam Frisby2008-03-121-3/+3
| | | | | | * Terrain Area-of-Effect brushes now should work properly. * Updated the scale / effect of various brushes. Small & Medium brushes should now actually do something.
* * Fix to the OlsenSphere brush to make it more powerful.Adam Frisby2008-03-091-0/+1
| | | | | * W.I.P: Hydraulic Erosion (Spherical) paintbrush - code is all there, but some work is required on the initial parameters to get it to function correctly. Replaces the smooth brush when `newbrushes` is switched on.
* * New terrainmodule paint brush "Olsen Erosion"Adam Frisby2008-03-091-0/+1
| | | | | | * Implements the Optimised Erosion routine defined by Jacob Olsen in the paper 'Procedural Terrain Generation' (http://www.oddlabs.com/download/terrain_generation.pdf) * Replaces the 'flatten' brush when 'newbrushes' is enabled.
* * Small optimisation on Weathering paint brush.Adam Frisby2008-03-081-0/+10
| | | | | * Added "script terrain newbrushes <true|false>" to enable experimental terraforming brushes. Presently the 'revert' brush is replaced with the Weathering brush, when enabled.
* * Slight tweak for the above.Adam Frisby2008-03-081-0/+1
|
* * By popular demand, implemented "script terrain fill <val>"Adam Frisby2008-03-081-0/+6
|
* * Implemented 'Revert' channel in Terrain Module.Adam Frisby2008-03-081-0/+20
| | | | | | * Added Revert Area, flood brush. * Added Revert Sphere, paint brush.
* * Made a change to the loading mechanism to fix it's operation.Adam Frisby2008-03-081-1/+6
|
* * Default terrain is now a little more interesting than a flat 0m plane.Adam Frisby2008-03-081-0/+11
|
* * Fix for exception in landmanager crash.Adam Frisby2008-03-061-2/+0
|
* * Disabled ancient TerrainEngine.Adam Frisby2008-03-061-7/+87
| | | | | | | * Enabled new TerrainModule. (The king is dead, long live the king!) * Use the console command: "script terrain save file.r32" / "script terrain load file.r32" to load/save terrain. Now uses the extension to determine file format. * MANY of the old terrain features do not have a replacement function in the new module yet, this needs to be corrected, but has not been done so far. This being said, the new module is faster and more efficient and should be a good replacement.
* * New Terrain Module (disabled, search for 'usingTerrainModule = false' to ↵Adam Frisby2008-03-051-4/+36
| | | | | | | | | | | reenable) * *Much* faster terraforming (woot!) * New "Brushes" design, so you can create custom terraforming brushes then apply those inplace of the standard tools. (ie an Erode Brush for example) * New specialised "Flood Brushes" to do large area effects, ie, raise-area, now takes a bitmap rather than repeats the ordinary raise brush a thousand times. * New modular file Load/Save systems -- write importers/exporters for multiple formats without having to hard code the whole thing in. * Coming soon - effects system, ie the old Erosion functions, etc. for one-shot effects.
* * Removed and sorted using clauses in a number of files.Adam Frisby2008-03-031-15/+64
| | | | | | | | | | * Cleaned up ITerrainChannel * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Paint Brushes * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Fill Brushes * Implemented Export functionality for RAW32 terrain loader * Implemented Import/Export for SLRAW terrain loader * Implemented Export for JPEG terrain loader
* * Committing file loaders - forgot yesterday.Adam Frisby2008-02-271-2/+3
|
* make trunk compile again. I think Adam forgot to check in some filesSean Dague2008-02-261-2/+2
|
* * Implemented - Terragen File Format Loader for new Terrain Module.Adam Frisby2008-02-261-0/+35
|
* * Hooked up replacment TerrainModule, raising land will now be weird as both ↵Adam Frisby2008-02-261-5/+87
| | | | modules are technically active. Beta software, yada yada yada. Will disable one of them by the end of the day.
* * Reimplementing Terrain as Region ModulesAdam Frisby2008-02-261-0/+10
| | | | | | | | | * New method involves interfaces for ** Terrain Paint Brushes (ie raise brush, lower brush, etc) ** Terrain Flood Brushes (ie raise area, lower area, etc) ** Terrain Effects (ie erosion, etc) [= W.I.P, not committed] * Provided sample implementation for Raise Paint and Raise Area brushes.
* Minor cleanup.Jeff Ames2008-02-201-7/+1
|
* Update svn properties.Jeff Ames2008-02-151-132/+132
|
* * Removed some catch-all-ignores from UDPServer in an attempt to look for #305.Adam Frisby2008-02-141-0/+132
* Minor work towards abstracting terrain.