2013-11-10 20:14:10 +00:00
|
|
|
#include "BaseTestCase.h"
|
2013-11-10 16:03:07 +00:00
|
|
|
|
|
|
|
#include <cmath>
|
2013-11-10 20:14:10 +00:00
|
|
|
#include "NoiseGenerator.h"
|
2013-11-17 21:36:18 +00:00
|
|
|
#include "TerrainDefinition.h"
|
|
|
|
#include "TerrainHeightMap.h"
|
|
|
|
#include "TerrainHeightMapBrush.h"
|
2013-11-10 16:03:07 +00:00
|
|
|
|
|
|
|
/* Noise sin period is defined at 20.0 */
|
|
|
|
#define X_FACTOR (M_PI / 10.0)
|
|
|
|
|
|
|
|
static double _noise1dMock(double x)
|
|
|
|
{
|
|
|
|
return sin(x * X_FACTOR) * 0.5 + 0.5;
|
|
|
|
}
|
|
|
|
|
2013-11-10 20:14:10 +00:00
|
|
|
static double _noise2dMock(double x, double)
|
2013-11-10 16:03:07 +00:00
|
|
|
{
|
|
|
|
return sin(x * X_FACTOR) * 0.5 + 0.5;
|
|
|
|
}
|
|
|
|
|
2013-11-10 20:14:10 +00:00
|
|
|
static double _noise3dMock(double x, double, double)
|
2013-11-10 16:03:07 +00:00
|
|
|
{
|
|
|
|
return sin(x * X_FACTOR) * 0.5 + 0.5;
|
|
|
|
}
|
|
|
|
|
2013-11-10 20:14:10 +00:00
|
|
|
class TerrainPainting_Test : public BaseTestCase {
|
|
|
|
protected:
|
|
|
|
virtual void SetUp() {
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain = new TerrainDefinition(NULL);
|
2013-11-10 20:14:10 +00:00
|
|
|
terrain->height = 3.0;
|
|
|
|
terrain->scaling = 1.0;
|
|
|
|
terrain->_height_noise->clearLevels();
|
|
|
|
NoiseLevel level = {1.0, 2.0, -1.0, 0.0, 0.0, 0.0};
|
|
|
|
terrain->_height_noise->addLevel(level, 0);
|
|
|
|
terrain->_height_noise->setCustomFunction(_noise1dMock, _noise2dMock, _noise3dMock);
|
|
|
|
}
|
2013-11-10 16:03:07 +00:00
|
|
|
|
2013-11-10 20:14:10 +00:00
|
|
|
virtual void TearDown()
|
|
|
|
{
|
2013-11-17 21:36:18 +00:00
|
|
|
delete terrain;
|
2013-11-10 20:14:10 +00:00
|
|
|
}
|
2013-11-10 16:03:07 +00:00
|
|
|
|
2013-11-10 20:14:10 +00:00
|
|
|
TerrainDefinition* terrain;
|
|
|
|
};
|
2013-11-10 16:03:07 +00:00
|
|
|
|
2013-11-10 20:14:10 +00:00
|
|
|
TEST_F(TerrainPainting_Test, grid)
|
|
|
|
{
|
2013-11-10 16:03:07 +00:00
|
|
|
/* Test base grid */
|
2013-11-17 21:36:18 +00:00
|
|
|
EXPECT_DOUBLE_EQ(0.0, terrain->getGridHeight(0, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(0.0, terrain->getGridHeight(0, 1, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(0.0, terrain->getGridHeight(0, 0, 1));
|
|
|
|
EXPECT_DOUBLE_EQ(sin(1.0 * X_FACTOR), terrain->getGridHeight(1, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(sin(2.0 * X_FACTOR), terrain->getGridHeight(2, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(sin(3.0 * X_FACTOR), terrain->getGridHeight(3, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(sin(4.0 * X_FACTOR), terrain->getGridHeight(4, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(1.0, terrain->getGridHeight(5, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(sin(4.0 * X_FACTOR), terrain->getGridHeight(6, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(-sin(1.0 * X_FACTOR), terrain->getGridHeight(-1, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(0.0, terrain->getGridHeight(10, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(-1.0, terrain->getGridHeight(15, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(0.0, terrain->getGridHeight(20, 0, 0));
|
|
|
|
EXPECT_DOUBLE_EQ(-1.0, terrain->getGridHeight(-5, 0, 0));
|
2013-11-10 16:03:07 +00:00
|
|
|
|
|
|
|
/* Test interpolated result */
|
2013-11-17 21:36:18 +00:00
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(0.0, 0.0, 0, 0), 0.0);
|
|
|
|
EXPECT_DOUBLE_IN_RANGE(terrain->getInterpolatedHeight(0.5, 0.0, 0, 0), 0.1564, 0.1566);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(1.0, 0.0, 0, 0), sin(1.0 * X_FACTOR));
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(0.0, 0.0, 1, 0), 0.0);
|
|
|
|
EXPECT_DOUBLE_IN_RANGE(terrain->getInterpolatedHeight(0.5, 0.0, 1, 0), 3.0 * 0.1564, 3.0 * 0.1566);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(1.0, 0.0, 1, 0), 3.0 * sin(1.0 * X_FACTOR));
|
2013-11-10 16:03:07 +00:00
|
|
|
|
|
|
|
/* Test scaling */
|
|
|
|
terrain->scaling = 2.0;
|
2013-11-17 21:36:18 +00:00
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(0, 0, 0), 0.0);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(1, 0, 0), sin(1.0 * X_FACTOR));
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(2, 0, 0), sin(2.0 * X_FACTOR));
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(3, 0, 0), sin(3.0 * X_FACTOR));
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(0, 0, 0, 0), 0.0);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(1, 0, 0, 0), sin(0.5 * X_FACTOR));
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(2, 0, 0, 0), sin(1.0 * X_FACTOR));
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(3, 0, 0, 0), sin(1.5 * X_FACTOR));
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(0, 0, 1, 0), 0.0);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(1, 0, 1, 0), 6.0 * sin(0.5 * X_FACTOR));
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(2, 0, 1, 0), 6.0 * sin(1.0 * X_FACTOR));
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getInterpolatedHeight(3, 0, 1, 0), 6.0 * sin(1.5 * X_FACTOR));
|
2013-11-10 16:03:07 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 21:36:18 +00:00
|
|
|
static void _checkBrushResultSides(TerrainDefinition* terrain, TerrainHeightMapBrush*, double center, double midhard, double hard, double midsoft, double soft, double exter, double neg_midhard, double neg_hard, double neg_midsoft, double neg_soft, double neg_exter)
|
2013-11-10 16:03:07 +00:00
|
|
|
{
|
2013-11-17 21:36:18 +00:00
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(0, 0, 1), center);
|
|
|
|
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(1, 0, 1), midhard);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(2, 0, 1), hard);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(3, 0, 1), midsoft);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(4, 0, 1), soft);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(5, 0, 1), exter);
|
|
|
|
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(-1, 0, 1), neg_midhard);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(-2, 0, 1), neg_hard);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(-3, 0, 1), neg_midsoft);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(-4, 0, 1), neg_soft);
|
|
|
|
EXPECT_DOUBLE_EQ(terrain->getGridHeight(-5, 0, 1), neg_exter);
|
2013-11-10 16:03:07 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 21:36:18 +00:00
|
|
|
static void _checkBrushResult(TerrainDefinition* terrain, TerrainHeightMapBrush* brush, double center, double midhard, double hard, double midsoft, double soft, double exter, int mirror)
|
2013-11-10 16:03:07 +00:00
|
|
|
{
|
|
|
|
if (mirror)
|
|
|
|
{
|
|
|
|
_checkBrushResultSides(terrain, brush, center, midhard, hard, midsoft, soft, exter, -midhard, -hard, -midsoft, -soft, -exter);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_checkBrushResultSides(terrain, brush, center, midhard, hard, midsoft, soft, exter, midhard, hard, midsoft, soft, exter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-10 20:14:10 +00:00
|
|
|
TEST_F(TerrainPainting_Test, brush_flatten)
|
2013-11-10 16:03:07 +00:00
|
|
|
{
|
|
|
|
/* Set up */
|
2013-11-17 21:36:18 +00:00
|
|
|
TerrainHeightMapBrush brush(0.0, 0.0, 2.0, 2.0, 4.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
terrain->height = 1.0;
|
|
|
|
terrain->scaling = 1.0;
|
2013-11-10 20:14:10 +00:00
|
|
|
terrain->_height_noise->forceValue(0.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
|
|
|
|
/* Test flattening center at 0.5 */
|
|
|
|
_checkBrushResult(terrain, &brush, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush, 0.5, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 0.5, 0.5, 0.5, 0.25, 0.0, 0.0, 0);
|
|
|
|
|
|
|
|
/* Test brush strength */
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->clearPainting();
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush, 0.5, 0.01);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 0.005, 0.005, 0.005, 0.0025, 0.0, 0.0, 0);
|
|
|
|
|
|
|
|
/* Test cumulative effect */
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush, 0.5, 0.01);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 0.00995, 0.00995, 0.00995, 0.0049875, 0.0, 0.0, 0);
|
|
|
|
|
|
|
|
/* Test with height modifier */
|
|
|
|
terrain->height = 10.0;
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->clearPainting();
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush, 0.5, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 0.05, 0.05, 0.05, 0.025, 0.0, 0.0, 0);
|
|
|
|
|
|
|
|
/* Test with scaling modifier */
|
|
|
|
terrain->height = 10.0;
|
|
|
|
terrain->scaling = 2.0;
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->clearPainting();
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush, 0.5, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 0.05, 0.05, 0.05, 0.025, 0.0, 0.0, 0);
|
|
|
|
}
|
|
|
|
|
2013-11-10 20:14:10 +00:00
|
|
|
TEST_F(TerrainPainting_Test, brush_reset)
|
2013-11-10 16:03:07 +00:00
|
|
|
{
|
|
|
|
/* Set up */
|
2013-11-17 21:36:18 +00:00
|
|
|
TerrainHeightMapBrush brush(0.0, 0.0, 2.0, 2.0, 4.0);
|
|
|
|
TerrainHeightMapBrush brush_full(0.0, 0.0, 4.0, 0.0, 4.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
terrain->height = 1.0;
|
|
|
|
terrain->scaling = 1.0;
|
2013-11-10 20:14:10 +00:00
|
|
|
terrain->_height_noise->forceValue(1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
|
|
|
|
/* Test resetting at center */
|
|
|
|
_checkBrushResult(terrain, &brush, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush_full, 2.0, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushReset(brush, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.0, 1.0, 1.0, 1.5, 2.0, 1.0, 0);
|
|
|
|
|
|
|
|
/* Test brush strength */
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->clearPainting();
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush_full, 2.0, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushReset(brush, 0.1);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.9, 1.9, 1.9, 1.95, 2.0, 1.0, 0);
|
|
|
|
|
|
|
|
/* Test cumulative effect */
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushReset(brush, 0.1);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.81, 1.81, 1.81, 1.9025, 2.0, 1.0, 0);
|
|
|
|
|
|
|
|
/* Test with height modifier */
|
|
|
|
terrain->height = 10.0;
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->clearPainting();
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush_full, 2.0, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.1, 1.1, 1.1, 1.1, 1.1, 1.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushReset(brush, 0.1);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.099, 1.099, 1.099, 1.0995, 1.1, 1.0, 0);
|
|
|
|
|
|
|
|
/* Test with scaling modifier */
|
|
|
|
terrain->height = 10.0;
|
|
|
|
terrain->scaling = 2.0;
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->clearPainting();
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush_full, 2.0, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.1, 1.1, 1.1, 1.1, 1.1, 1.0, 0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushReset(brush, 0.1);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResult(terrain, &brush, 1.099, 1.099, 1.099, 1.0995, 1.1, 1.0, 0);
|
2013-11-10 20:14:10 +00:00
|
|
|
}
|
2013-11-10 16:03:07 +00:00
|
|
|
|
2013-11-10 20:14:10 +00:00
|
|
|
TEST_F(TerrainPainting_Test, brush_reset_basevalue)
|
|
|
|
{
|
|
|
|
/* Set up */
|
2013-11-17 21:36:18 +00:00
|
|
|
TerrainHeightMapBrush brush(0.0, 0.0, 2.0, 2.0, 4.0);
|
|
|
|
TerrainHeightMapBrush brush_full(0.0, 0.0, 4.0, 0.0, 4.0);
|
2013-11-10 20:14:10 +00:00
|
|
|
terrain->height = 1.0;
|
|
|
|
terrain->scaling = 1.0;
|
2013-11-10 16:03:07 +00:00
|
|
|
|
|
|
|
/* Test with scaling and the sinusoid setup (to test the basevalue sampling) */
|
|
|
|
terrain->height = 1.0;
|
|
|
|
terrain->scaling = 2.0;
|
|
|
|
_checkBrushResult(terrain, &brush, 0.0, 0.309016994375, 0.587785252292, 0.809016994375, 0.951056516295, 1.0, 1);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushFlatten(brush_full, 2.0, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResultSides(terrain, &brush, 2.0, 2.0, 2.0, 2.0, 2.0, 1.0, 2.0, 2.0, 2.0, 2.0, -1.0);
|
2013-11-17 21:36:18 +00:00
|
|
|
terrain->height_map->brushReset(brush, 1.0);
|
2013-11-10 16:03:07 +00:00
|
|
|
_checkBrushResultSides(terrain, &brush, 0.0, 0.309016994375, 0.587785252292, 2.0 - (2.0 - 0.809016994375) * 0.5, 2.0, 1.0, -0.309016994375, -0.587785252292, 2.0 - (2.0 + 0.809016994375) * 0.5, 2.0, -1.0);
|
|
|
|
}
|