Project

General

Profile

Download (8.06 KB) Statistics
| Branch: | Revision:

library / src / main / res / raw / main_vertex_shader.glsl @ 6f2d931d

1 d333eb6b Leszek Koltunski
//////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2016 Leszek Koltunski                                                          //
3
//                                                                                          //
4
// This file is part of Distorted.                                                          //
5
//                                                                                          //
6
// Distorted is free software: you can redistribute it and/or modify                        //
7
// it under the terms of the GNU General Public License as published by                     //
8
// the Free Software Foundation, either version 2 of the License, or                        //
9
// (at your option) any later version.                                                      //
10
//                                                                                          //
11
// Distorted is distributed in the hope that it will be useful,                             //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                           //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                            //
14
// GNU General Public License for more details.                                             //
15
//                                                                                          //
16
// You should have received a copy of the GNU General Public License                        // 
17
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                       //
18
//////////////////////////////////////////////////////////////////////////////////////////////
19
20 341151fc Leszek Koltunski
precision highp float;
21 c1a38ba3 Leszek Koltunski
precision highp int;
22 2e7ad49f Leszek Koltunski
23 94f6d472 Leszek Koltunski
in vec3 a_Position;                  // Per-vertex position.
24
in vec3 a_Normal;                    // Per-vertex normal vector.
25 6f2d931d Leszek Koltunski
in vec3 a_Inflate;                   // This vector describes the direction this vertex needs to go when we 'inflate' the whole mesh.
26
                                     // If the mesh is locally smooth, this is equal to the normal vector. Otherwise (on sharp edges) - no.
27 94f6d472 Leszek Koltunski
in vec2 a_TexCoordinate;             // Per-vertex texture coordinate.
28 6f2d931d Leszek Koltunski
29 94f6d472 Leszek Koltunski
out vec3 v_Position;                 //
30 3fc9327a Leszek Koltunski
out vec3 v_endPosition;              // for Transform Feedback only
31 94f6d472 Leszek Koltunski
out vec3 v_Normal;                   //
32
out vec2 v_TexCoordinate;            //
33 5e331bc8 Leszek Koltunski
34 f6cac1f6 Leszek Koltunski
uniform vec3 u_objD;                 // half of object width x half of object height X half the depth;
35
                                     // point (0,0,0) is the center of the object
36 6a06a912 Leszek Koltunski
37 bfe2c61b Leszek Koltunski
uniform mat4 u_MVPMatrix;            // the combined model/view/projection matrix.
38
uniform mat4 u_MVMatrix;             // the combined model/view matrix.
39 6a06a912 Leszek Koltunski
40
#if NUM_VERTEX>0
41 ad33f883 Leszek Koltunski
uniform int vNumEffects;             // total number of vertex effects
42 15aa7d94 Leszek Koltunski
uniform int vName[NUM_VERTEX];       // their names.
43 f6cac1f6 Leszek Koltunski
uniform vec4 vUniforms[3*NUM_VERTEX];// i-th effect is 3 consecutive vec4's: [3*i], [3*i+1], [3*i+2].
44
                                     // The first vec4 is the Interpolated values,
45
                                     // next is half cache half Center, the third -  the Region.
46 341c803d Leszek Koltunski
47
//////////////////////////////////////////////////////////////////////////////////////////////
48
// HELPER FUNCTIONS
49
//////////////////////////////////////////////////////////////////////////////////////////////
50 9420f2fe Leszek Koltunski
// The trick below is the if-less version of the
51 341c803d Leszek Koltunski
//
52
// t = dx<0.0 ? (u_objD.x-v.x) / (u_objD.x-ux) : (u_objD.x+v.x) / (u_objD.x+ux);
53
// h = dy<0.0 ? (u_objD.y-v.y) / (u_objD.y-uy) : (u_objD.y+v.y) / (u_objD.y+uy);
54
// d = min(t,h);
55
//
56
// float d = min(-ps.x/(sign(ps.x)*u_objD.x+p.x),-ps.y/(sign(ps.y)*u_objD.y+p.y))+1.0;
57
//
58
// We still have to avoid division by 0 when p.x = +- u_objD.x or p.y = +- u_objD.y (i.e on the edge of the Object)
59
// We do that by first multiplying the above 'float d' with sign(denominator1*denominator2)^2.
60
//
61
//////////////////////////////////////////////////////////////////////////////////////////////
62
// return degree of the point as defined by the bitmap rectangle
63
64
float degree_bitmap(in vec2 S, in vec2 PS)
65
  {
66
  vec2 A = sign(PS)*u_objD.xy + S;
67
68 369ee56a Leszek Koltunski
  vec2 signA = sign(A);                           //
69
  vec2 signA_SQ = signA*signA;                    // div = PS/A if A!=0, 0 otherwise.
70 20af7b69 Leszek Koltunski
  vec2 div = signA_SQ*PS/(A-(vec2(1,1)-signA_SQ));//
71 369ee56a Leszek Koltunski
72
  return 1.0-max(div.x,div.y);
73 341c803d Leszek Koltunski
  }
74
75
//////////////////////////////////////////////////////////////////////////////////////////////
76 9420f2fe Leszek Koltunski
// Return degree of the point as defined by the Region. Currently only supports circular regions.
77
//
78 73af5285 Leszek Koltunski
// Let us first introduce some notation.
79 9420f2fe Leszek Koltunski
// Let 'PS' be the vector from point P (the current vertex) to point S (the center of the effect).
80
// Let region.xy be the vector from point S to point O (the center point of the region circle)
81
// Let region.z be the radius of the region circle.
82 73af5285 Leszek Koltunski
// (This all should work regardless if S is inside or outside of the circle).
83
//
84
// Then, the degree of a point with respect to a given (circular!) Region is defined by:
85 9420f2fe Leszek Koltunski
//
86
// If P is outside the circle, return 0.
87 73af5285 Leszek Koltunski
// Otherwise, let X be the point where the halfline SP meets the region circle - then return |PX|/||SX|,
88 9420f2fe Leszek Koltunski
// aka the 'degree' of point P.
89
//
90 ff8ad0a7 Leszek Koltunski
// We solve the triangle OPX.
91 9420f2fe Leszek Koltunski
// We know the lengths |PO|, |OX| and the angle OPX, because cos(OPX) = cos(180-OPS) = -cos(OPS) = -PS*PO/(|PS|*|PO|)
92
// then from the law of cosines PX^2 + PO^2 - 2*PX*PO*cos(OPX) = OX^2 so PX = -a + sqrt(a^2 + OX^2 - PO^2)
93
// where a = PS*PO/|PS| but we are really looking for d = |PX|/(|PX|+|PS|) = 1/(1+ (|PS|/|PX|) ) and
94
// |PX|/|PS| = -b + sqrt(b^2 + (OX^2-PO^2)/PS^2) where b=PS*PO/|PS|^2 which can be computed with only one sqrt.
95 341c803d Leszek Koltunski
96 4fde55a0 Leszek Koltunski
float degree_region(in vec4 region, in vec2 PS)
97 341c803d Leszek Koltunski
  {
98
  vec2 PO  = PS + region.xy;
99
  float D = region.z*region.z-dot(PO,PO);      // D = |OX|^2 - |PO|^2
100 9420f2fe Leszek Koltunski
101
  if( D<=0.0 ) return 0.0;
102
103 341c803d Leszek Koltunski
  float ps_sq = dot(PS,PS);
104 20af7b69 Leszek Koltunski
  float one_over_ps_sq = 1.0/(ps_sq-(sign(ps_sq)-1.0));  // return 1.0 if ps_sq = 0.0
105
                                                         // Important: if we want to write
106
                                                         // b = 1/a if a!=0, b=1 otherwise
107
                                                         // we need to write that as
108
                                                         // b = 1 / ( a-(sign(a)-1) )
109
                                                         // [ and NOT 1 / ( a + 1 - sign(a) ) ]
110
                                                         // because the latter, if 0<a<2^-24,
111
                                                         // will suffer from round-off error and in this case
112
                                                         // a + 1.0 = 1.0 !! so 1 / (a+1-sign(a)) = 1/0 !
113 7c227ed2 Leszek Koltunski
  float DOT  = dot(PS,PO)*one_over_ps_sq;
114 341c803d Leszek Koltunski
115 9420f2fe Leszek Koltunski
  return 1.0 / (1.0 + 1.0/(sqrt(DOT*DOT+D*one_over_ps_sq)-DOT));
116 341c803d Leszek Koltunski
  }
117
118
//////////////////////////////////////////////////////////////////////////////////////////////
119
// return min(degree_bitmap,degree_region). Just like degree_region, currently only supports circles.
120
121 4fde55a0 Leszek Koltunski
float degree(in vec4 region, in vec2 S, in vec2 PS)
122 341c803d Leszek Koltunski
  {
123
  vec2 PO  = PS + region.xy;
124
  float D = region.z*region.z-dot(PO,PO);      // D = |OX|^2 - |PO|^2
125 9420f2fe Leszek Koltunski
126
  if( D<=0.0 ) return 0.0;
127
128 341c803d Leszek Koltunski
  vec2 A = sign(PS)*u_objD.xy + S;
129 369ee56a Leszek Koltunski
  vec2 signA = sign(A);
130
  vec2 signA_SQ = signA*signA;
131 20af7b69 Leszek Koltunski
  vec2 div = signA_SQ*PS/(A-(vec2(1,1)-signA_SQ));
132 369ee56a Leszek Koltunski
  float E = 1.0-max(div.x,div.y);
133
134 341c803d Leszek Koltunski
  float ps_sq = dot(PS,PS);
135 20af7b69 Leszek Koltunski
  float one_over_ps_sq = 1.0/(ps_sq-(sign(ps_sq)-1.0));  // return 1.0 if ps_sq = 0.0
136 7c227ed2 Leszek Koltunski
  float DOT  = dot(PS,PO)*one_over_ps_sq;
137 341c803d Leszek Koltunski
138 9420f2fe Leszek Koltunski
  return min(1.0/(1.0 + 1.0/(sqrt(DOT*DOT+D*one_over_ps_sq)-DOT)),E);
139 341c803d Leszek Koltunski
  }
140
141 81a0b906 leszek
#endif  // NUM_VERTEX>0
142
143 6a06a912 Leszek Koltunski
//////////////////////////////////////////////////////////////////////////////////////////////
144 b2dc3c19 Leszek Koltunski
145
void main()
146
  {
147 a8537f43 Leszek Koltunski
  vec3 v = 2.0*u_objD*a_Position;
148
  vec3 n = a_Normal;
149 6a06a912 Leszek Koltunski
150
#if NUM_VERTEX>0
151 7cd24173 leszek
  int effect=0;
152 b2b83871 Leszek Koltunski
153 6a06a912 Leszek Koltunski
  for(int i=0; i<vNumEffects; i++)
154
    {
155 7cd24173 leszek
    // ENABLED EFFECTS WILL BE INSERTED HERE
156 b2b83871 Leszek Koltunski
157 7cd24173 leszek
    effect+=3;
158 6a06a912 Leszek Koltunski
    }
159
#endif
160 f80337b5 leszek
   
161 a8537f43 Leszek Koltunski
  v_Position      = v;
162 3fc9327a Leszek Koltunski
  v_endPosition   = v + (0.3*u_objD.x)*n;
163 2dacdeb2 Leszek Koltunski
  v_TexCoordinate = a_TexCoordinate;
164 f80337b5 leszek
  v_Normal        = normalize(vec3(u_MVMatrix*vec4(n,0.0)));
165 3fc9327a Leszek Koltunski
  gl_Position     = u_MVPMatrix*vec4(v,1.0);
166 d333eb6b Leszek Koltunski
  }