Skip to content

Commit

Permalink
Remove textures vertical offset. Fix for area enabling parallax.
Browse files Browse the repository at this point in the history
  • Loading branch information
RealBadAngel committed Jun 20, 2015
1 parent a31d08b commit 53efe2e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
8 changes: 4 additions & 4 deletions client/shaders/nodes_shader/opengl_fragment.glsl
Expand Up @@ -8,7 +8,7 @@ uniform vec3 eyePosition;

varying vec3 vPosition;
varying vec3 worldPosition;
varying float generate_heightmaps;
varying float area_enable_parallax;

varying vec3 eyeVec;
varying vec3 tsEyeVec;
Expand Down Expand Up @@ -95,7 +95,7 @@ void main (void)
vec3 eyeRay = normalize(tsEyeVec);
#if PARALLAX_OCCLUSION_MODE == 0
// Parallax occlusion with slope information
if (normalTexturePresent) {
if (normalTexturePresent && area_enable_parallax > 0.0) {
const float scale = PARALLAX_OCCLUSION_SCALE / PARALLAX_OCCLUSION_ITERATIONS;
const float bias = PARALLAX_OCCLUSION_BIAS / PARALLAX_OCCLUSION_ITERATIONS;
for(int i = 0; i < PARALLAX_OCCLUSION_ITERATIONS; i++) {
Expand All @@ -106,12 +106,12 @@ void main (void)
#endif
#if PARALLAX_OCCLUSION_MODE == 1
// Relief mapping
if (normalTexturePresent) {
if (normalTexturePresent && area_enable_parallax > 0.0) {
vec2 ds = eyeRay.xy * PARALLAX_OCCLUSION_SCALE;
float dist = find_intersection(uv, ds);
uv += dist * ds;
#endif
} else if (generate_heightmaps > 0.0) {
} else if (area_enable_parallax > 0.0) {
vec2 ds = eyeRay.xy * PARALLAX_OCCLUSION_SCALE;
float dist = find_intersectionRGB(uv, ds);
uv += dist * ds;
Expand Down
20 changes: 12 additions & 8 deletions client/shaders/nodes_shader/opengl_vertex.glsl
Expand Up @@ -14,7 +14,7 @@ varying vec3 eyeVec;
varying vec3 lightVec;
varying vec3 tsEyeVec;
varying vec3 tsLightVec;
varying float generate_heightmaps;
varying float area_enable_parallax;

const float e = 2.718281828459;
const float BS = 10.0;
Expand All @@ -35,12 +35,16 @@ float smoothTriangleWave(float x)
void main(void)
{
gl_TexCoord[0] = gl_MultiTexCoord0;
gl_TexCoord[0].y += 0.008;

//TODO: make offset depending on view angle and parallax uv displacement
//thats for textures that doesnt align vertically, like dirt with grass
//gl_TexCoord[0].y += 0.008;

//Allow parallax/relief mapping only for certain kind of nodes
//Variable is also used to control area of the effect
#if ((DRAW_TYPE == NDT_NORMAL || DRAW_TYPE == NDT_LIQUID || DRAW_TYPE == NDT_FLOWINGLIQUID) && GENERATE_NORMALMAPS)
generate_heightmaps = 1.0;
area_enable_parallax = 1.0;
#else
generate_heightmaps = 0.0;
area_enable_parallax = 0.0;
#endif

#if ((MATERIAL_TYPE == TILE_MATERIAL_LIQUID_TRANSPARENT || MATERIAL_TYPE == TILE_MATERIAL_LIQUID_OPAQUE) && ENABLE_WAVING_WATER)
Expand Down Expand Up @@ -89,9 +93,9 @@ void main(void)
worldPosition = (mWorld * gl_Vertex).xyz;

// Don't generate heightmaps when too far from the eye
float dist = distance (worldPosition, eyePosition);
if (dist > 100.00) {
generate_heightmaps = 0.0;
float dist = distance (vec3(0.0, 0.0 ,0.0), vPosition);
if (dist > 100.0) {
area_enable_parallax = 0.0;
}

vec3 sunPosition = vec3 (0.0, eyePosition.y * BS + 900.0, 0.0);
Expand Down

0 comments on commit 53efe2e

Please sign in to comment.