2012-12-09 17:49:28 +00:00
|
|
|
#include "private.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include "../tools.h"
|
|
|
|
#include "../renderer.h"
|
|
|
|
|
|
|
|
/******************** Definition ********************/
|
|
|
|
static void _validateDefinition(TerrainDefinition* definition)
|
|
|
|
{
|
|
|
|
noiseValidate(definition->_height_noise);
|
|
|
|
|
|
|
|
/* Get minimal and maximal height */
|
2013-01-27 19:57:43 +00:00
|
|
|
noiseGetRange(definition->_height_noise, &definition->_min_height, &definition->_max_height);
|
|
|
|
definition->_min_height *= definition->height;
|
|
|
|
definition->_max_height *= definition->height;
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static TerrainDefinition* _createDefinition()
|
|
|
|
{
|
|
|
|
TerrainDefinition* definition = malloc(sizeof(TerrainDefinition));
|
|
|
|
|
|
|
|
definition->height = 0.0;
|
|
|
|
definition->scaling = 1.0;
|
|
|
|
definition->shadow_smoothing = 0.0;
|
2013-01-10 15:41:14 +00:00
|
|
|
|
2013-01-14 13:28:42 +00:00
|
|
|
definition->height_map = terrainHeightMapCreate(definition);
|
2013-01-10 15:41:14 +00:00
|
|
|
|
2012-12-09 17:49:28 +00:00
|
|
|
definition->_height_noise = noiseCreateGenerator();
|
|
|
|
|
|
|
|
terrainAutoPreset(definition, TERRAIN_PRESET_STANDARD);
|
|
|
|
|
|
|
|
return definition;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _deleteDefinition(TerrainDefinition* definition)
|
|
|
|
{
|
2013-01-10 15:41:14 +00:00
|
|
|
terrainHeightmapDelete(definition->height_map);
|
2012-12-09 17:49:28 +00:00
|
|
|
noiseDeleteGenerator(definition->_height_noise);
|
|
|
|
free(definition);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _copyDefinition(TerrainDefinition* source, TerrainDefinition* destination)
|
|
|
|
{
|
|
|
|
destination->height = source->height;
|
|
|
|
destination->scaling = source->scaling;
|
|
|
|
destination->shadow_smoothing = source->shadow_smoothing;
|
|
|
|
|
2013-01-10 15:41:14 +00:00
|
|
|
terrainHeightmapCopy(source->height_map, destination->height_map);
|
|
|
|
|
2012-12-24 11:24:27 +00:00
|
|
|
noiseCopy(source->_height_noise, destination->_height_noise);
|
|
|
|
|
2012-12-09 17:49:28 +00:00
|
|
|
_validateDefinition(destination);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _saveDefinition(PackStream* stream, TerrainDefinition* definition)
|
|
|
|
{
|
|
|
|
packWriteDouble(stream, &definition->height);
|
|
|
|
packWriteDouble(stream, &definition->scaling);
|
|
|
|
packWriteDouble(stream, &definition->shadow_smoothing);
|
2013-01-10 15:41:14 +00:00
|
|
|
terrainHeightmapSave(stream, definition->height_map);
|
2012-12-24 11:24:27 +00:00
|
|
|
noiseSaveGenerator(stream, definition->_height_noise);
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void _loadDefinition(PackStream* stream, TerrainDefinition* definition)
|
|
|
|
{
|
|
|
|
packReadDouble(stream, &definition->height);
|
|
|
|
packReadDouble(stream, &definition->scaling);
|
|
|
|
packReadDouble(stream, &definition->shadow_smoothing);
|
2013-01-10 15:41:14 +00:00
|
|
|
terrainHeightmapLoad(stream, definition->height_map);
|
2012-12-24 11:24:27 +00:00
|
|
|
noiseLoadGenerator(stream, definition->_height_noise);
|
2012-12-09 17:49:28 +00:00
|
|
|
|
|
|
|
_validateDefinition(definition);
|
|
|
|
}
|
|
|
|
|
|
|
|
StandardDefinition TerrainDefinitionClass = {
|
|
|
|
(FuncObjectCreate)_createDefinition,
|
|
|
|
(FuncObjectDelete)_deleteDefinition,
|
|
|
|
(FuncObjectCopy)_copyDefinition,
|
|
|
|
(FuncObjectValidate)_validateDefinition,
|
|
|
|
(FuncObjectSave)_saveDefinition,
|
|
|
|
(FuncObjectLoad)_loadDefinition
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************** Binding ********************/
|
2013-01-14 12:08:38 +00:00
|
|
|
static double _fakeGetHeight(Renderer* renderer, double x, double z, int with_painting)
|
2012-12-09 17:49:28 +00:00
|
|
|
{
|
|
|
|
UNUSED(renderer);
|
|
|
|
UNUSED(x);
|
|
|
|
UNUSED(z);
|
2013-01-14 12:08:38 +00:00
|
|
|
UNUSED(with_painting);
|
2012-12-09 17:49:28 +00:00
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
2013-01-14 12:08:38 +00:00
|
|
|
static double _getHeight(Renderer* renderer, double x, double z, int with_painting)
|
2012-12-09 17:49:28 +00:00
|
|
|
{
|
2013-01-14 12:08:38 +00:00
|
|
|
double height;
|
2012-12-09 17:49:28 +00:00
|
|
|
TerrainDefinition* definition = renderer->terrain->definition;
|
2012-12-10 22:05:53 +00:00
|
|
|
x /= definition->scaling;
|
|
|
|
z /= definition->scaling;
|
|
|
|
|
2013-01-14 12:08:38 +00:00
|
|
|
if (!with_painting || !terrainHeightmapGetHeight(definition->height_map, x, z, &height))
|
|
|
|
{
|
|
|
|
height = noiseGet2DTotal(definition->_height_noise, x, z);
|
|
|
|
}
|
2012-12-10 22:05:53 +00:00
|
|
|
|
2013-01-14 12:08:38 +00:00
|
|
|
return height * definition->height * definition->scaling;
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static Color _fakeGetFinalColor(Renderer* renderer, Vector3 location, double precision)
|
|
|
|
{
|
|
|
|
return COLOR_GREEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Color _getFinalColor(Renderer* renderer, Vector3 location, double precision)
|
|
|
|
{
|
|
|
|
Color color;
|
|
|
|
|
|
|
|
color = renderer->applyTextures(renderer, location, precision);
|
|
|
|
|
|
|
|
/* TODO Factorize this in scenery renderer */
|
|
|
|
color = renderer->atmosphere->applyAerialPerspective(renderer, location, color);
|
2013-01-22 20:50:37 +00:00
|
|
|
color = renderer->clouds->getColor(renderer, color, renderer->camera_location, location);
|
2012-12-09 17:49:28 +00:00
|
|
|
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2013-01-14 12:08:38 +00:00
|
|
|
static RayCastingResult _fakeCastRay(Renderer* renderer, Vector3 start, Vector3 direction)
|
2012-12-09 17:49:28 +00:00
|
|
|
{
|
|
|
|
UNUSED(renderer);
|
|
|
|
UNUSED(start);
|
|
|
|
UNUSED(direction);
|
|
|
|
|
|
|
|
RayCastingResult result;
|
|
|
|
result.hit = 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-01-14 12:08:38 +00:00
|
|
|
static RayCastingResult _castRay(Renderer* renderer, Vector3 start, Vector3 direction)
|
2012-12-09 17:49:28 +00:00
|
|
|
{
|
|
|
|
RayCastingResult result;
|
|
|
|
TerrainDefinition* definition = renderer->terrain->definition;
|
|
|
|
Vector3 inc_vector;
|
|
|
|
double inc_value, inc_base, inc_factor, height, diff, lastdiff, length;
|
|
|
|
|
|
|
|
direction = v3Normalize(direction);
|
|
|
|
inc_factor = (double)renderer->render_quality;
|
|
|
|
inc_base = 1.0;
|
|
|
|
inc_value = inc_base / inc_factor;
|
2013-01-14 12:08:38 +00:00
|
|
|
lastdiff = start.y - _getHeight(renderer, start.x, start.z, 1);
|
2012-12-09 17:49:28 +00:00
|
|
|
|
|
|
|
length = 0.0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
inc_vector = v3Scale(direction, inc_value);
|
|
|
|
length += v3Norm(inc_vector);
|
|
|
|
start = v3Add(start, inc_vector);
|
2013-01-14 12:08:38 +00:00
|
|
|
height = _getHeight(renderer, start.x, start.z, 1);
|
2012-12-09 17:49:28 +00:00
|
|
|
diff = start.y - height;
|
|
|
|
if (diff < 0.0)
|
|
|
|
{
|
|
|
|
if (fabs(diff - lastdiff) > 0.00001)
|
|
|
|
{
|
|
|
|
start = v3Add(start, v3Scale(inc_vector, -diff / (diff - lastdiff)));
|
2013-01-14 12:08:38 +00:00
|
|
|
start.y = _getHeight(renderer, start.x, start.z, 1);
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
start.y = height;
|
|
|
|
}
|
|
|
|
result.hit = 1;
|
|
|
|
result.hit_location = start;
|
|
|
|
result.hit_color = _getFinalColor(renderer, start, renderer->getPrecision(renderer, result.hit_location));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (diff < inc_base / inc_factor)
|
|
|
|
{
|
|
|
|
inc_value = inc_base / inc_factor;
|
|
|
|
}
|
|
|
|
else if (diff > inc_base)
|
|
|
|
{
|
|
|
|
inc_value = inc_base;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
inc_value = diff;
|
|
|
|
}
|
|
|
|
lastdiff = diff;
|
|
|
|
} while (length < 50.0 && start.y <= definition->_max_height);
|
|
|
|
|
|
|
|
result.hit = 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-01-22 20:50:37 +00:00
|
|
|
static int _alterLight(Renderer* renderer, LightDefinition* light, Vector3 location)
|
2012-12-09 17:49:28 +00:00
|
|
|
{
|
|
|
|
TerrainDefinition* definition = renderer->terrain->definition;
|
|
|
|
Vector3 inc_vector, direction_to_light;
|
|
|
|
double inc_value, inc_base, inc_factor, height, diff, light_factor, smoothing, length;
|
|
|
|
|
|
|
|
direction_to_light = v3Scale(light->direction, -1.0);
|
|
|
|
if ((fabs(direction_to_light.x) < 0.0001 && fabs(direction_to_light.z) < 0.0001) || definition->height < 0.001)
|
|
|
|
{
|
2013-01-20 15:07:45 +00:00
|
|
|
return 0;
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
else if (direction_to_light.y < 0.05)
|
|
|
|
{
|
2013-01-20 15:07:45 +00:00
|
|
|
light->color = COLOR_BLACK;
|
|
|
|
return 1;
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
else if (direction_to_light.y < 0.0000)
|
|
|
|
{
|
2013-01-20 15:07:45 +00:00
|
|
|
light->color.r *= (0.05 + direction_to_light.y) / 0.05;
|
|
|
|
light->color.g *= (0.05 + direction_to_light.y) / 0.05;
|
|
|
|
light->color.b *= (0.05 + direction_to_light.y) / 0.05;
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inc_factor = (double)renderer->render_quality;
|
|
|
|
inc_base = definition->height / definition->scaling;
|
|
|
|
inc_value = inc_base / inc_factor;
|
|
|
|
smoothing = definition->shadow_smoothing;
|
|
|
|
|
|
|
|
light_factor = 1.0;
|
|
|
|
length = 0.0;
|
|
|
|
diff = 0.0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
inc_vector = v3Scale(direction_to_light, inc_value);
|
|
|
|
length += v3Norm(inc_vector);
|
|
|
|
location = v3Add(location, inc_vector);
|
2013-01-14 12:08:38 +00:00
|
|
|
height = _getHeight(renderer, location.x, location.z, 1);
|
2012-12-09 17:49:28 +00:00
|
|
|
diff = location.y - height;
|
|
|
|
if (diff < 0.0)
|
|
|
|
{
|
|
|
|
if (length * smoothing > 0.000001)
|
|
|
|
{
|
|
|
|
light_factor += diff * v3Norm(inc_vector) / (length * smoothing);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
light_factor = 0.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (diff < inc_base / inc_factor)
|
|
|
|
{
|
|
|
|
inc_value = inc_base / inc_factor;
|
|
|
|
}
|
|
|
|
else if (diff > inc_base)
|
|
|
|
{
|
|
|
|
inc_value = inc_base;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
inc_value = diff;
|
|
|
|
}
|
|
|
|
} while (light_factor > 0.0 && length < (10.0 * inc_factor) && location.y <= definition->_max_height);
|
|
|
|
|
|
|
|
if (light_factor <= 0.0)
|
|
|
|
{
|
2013-01-20 15:07:45 +00:00
|
|
|
light->color = COLOR_BLACK;
|
|
|
|
return 1;
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-20 15:07:45 +00:00
|
|
|
light->color.r *= light_factor;
|
|
|
|
light->color.g *= light_factor;
|
|
|
|
light->color.b *= light_factor;
|
2012-12-09 17:49:28 +00:00
|
|
|
|
2013-01-20 15:07:45 +00:00
|
|
|
return 1;
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-14 12:08:38 +00:00
|
|
|
/******************** Public tools ********************/
|
|
|
|
double terrainGetGridHeight(TerrainDefinition* definition, int x, int z, int with_painting)
|
|
|
|
{
|
|
|
|
double height;
|
|
|
|
|
|
|
|
if (!with_painting || !terrainHeightmapGetHeight(definition->height_map, (double)x, (double)z, &height))
|
|
|
|
{
|
|
|
|
height = noiseGet2DTotal(definition->_height_noise, (double)x, (double)z);
|
|
|
|
}
|
|
|
|
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
2012-12-09 17:49:28 +00:00
|
|
|
/******************** Renderer ********************/
|
|
|
|
static TerrainRenderer* _createRenderer()
|
|
|
|
{
|
|
|
|
TerrainRenderer* result;
|
|
|
|
|
|
|
|
result = malloc(sizeof(TerrainRenderer));
|
|
|
|
result->definition = TerrainDefinitionClass.create();
|
|
|
|
|
|
|
|
result->castRay = _fakeCastRay;
|
|
|
|
result->getHeight = _fakeGetHeight;
|
|
|
|
result->getFinalColor = _fakeGetFinalColor;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _deleteRenderer(TerrainRenderer* renderer)
|
|
|
|
{
|
|
|
|
TerrainDefinitionClass.destroy(renderer->definition);
|
|
|
|
free(renderer);
|
|
|
|
}
|
|
|
|
|
2013-01-20 15:07:45 +00:00
|
|
|
static void _bindRenderer(Renderer* renderer, TerrainDefinition* definition)
|
2012-12-09 17:49:28 +00:00
|
|
|
{
|
2013-01-20 15:07:45 +00:00
|
|
|
TerrainDefinitionClass.copy(definition, renderer->terrain->definition);
|
|
|
|
|
|
|
|
renderer->terrain->castRay = _castRay;
|
|
|
|
renderer->terrain->getHeight = _getHeight;
|
|
|
|
renderer->terrain->getFinalColor = _getFinalColor;
|
2012-12-09 17:49:28 +00:00
|
|
|
|
2013-01-20 15:07:45 +00:00
|
|
|
lightingManagerRegisterFilter(renderer->lighting, (FuncLightingAlterLight)_alterLight, renderer);
|
2012-12-09 17:49:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StandardRenderer TerrainRendererClass = {
|
|
|
|
(FuncObjectCreate)_createRenderer,
|
|
|
|
(FuncObjectDelete)_deleteRenderer,
|
|
|
|
(FuncObjectBind)_bindRenderer
|
|
|
|
};
|