aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/World/Terrain/Tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-061-0/+1
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* * Apply http://opensimulator.org/mantis/view.php?id=2468Justin Clarke Casey2008-10-271-10/+30
| | | | | | | * This time there are accompanying changes to the unit test to adapt it to the changes * Thanks tglion
* * Temporarily revert terrain changes in r6976 and reinstate unit test from ↵Justin Clarke Casey2008-10-271-28/+28
| | | | | | | | | r6977. * If a change is going to affect a unit test, then please could we change the unit test at the same time? Otherwise this will never get done * It also seems a bad idea to disable tests which start failing unless there's a very good reason
* Disable terrain brush test until someone with terrain-fu can lookMelanie Thielker2008-10-251-28/+28
| | | | | | | at it and determine the new test parameters needed for the terrain brush with strength support
* * Apply http://opensimulator.org/mantis/view.php?id=1207Justin Clarke Casey2008-10-071-8/+19
| | | | | | | * 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-19/+8
|
* Mantis#1207. Thank you, TGlion for a patch that addresses:Charles Krinke2008-10-061-8/+19
| | | | | | | | | | 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)
* From: mike pitman <pitman@us.ibm.com>Dr Scofield2008-09-161-2/+2
| | | | | | | | | | | | | | | | | | 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.
* Add copyright notices.Jeff Ames2008-05-201-2/+29
| | | | | Fix spelling typo (Thanks ChrisDown for pointing this out)
* Update svn properties. Minor formatting cleanup.Jeff Ames2008-05-011-58/+58
|
* * Adding unit test support to Environment for modules.Adam Frisby2008-05-011-0/+59
* Written some unit tests for Terrain Module as an example.