summaryrefslogtreecommitdiffstats
path: root/src/extras/shaders/es2/light.inc.frag
blob: 726340d7e3d7015b7fd18432f9b095dd9449255a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
const int MAX_LIGHTS = 8;
const int TYPE_POINT = 0;
const int TYPE_DIRECTIONAL = 1;
const int TYPE_SPOT = 2;
struct Light {
    int type;
    FP vec3 position;
    FP vec3 color;
    FP float intensity;
    FP vec3 direction;
    FP vec3 attenuation;
    FP float cutOffAngle;
};
uniform Light lights[MAX_LIGHTS];
uniform int lightCount;

void addLightAdsModelNormalMapped(const in FP vec3 vpos,
                                  const in FP vec3 n,
                                  const in FP vec3 eye,
                                  const in FP float shininess,
                                  const in FP mat3 tangentMatrix,
                                  const in Light light,
                                  inout FP vec3 diffuseColor,
                                  inout FP vec3 specularColor)
{
    FP vec3 snormal = normalize( vec3( tangentMatrix[0][2], tangentMatrix[1][2], tangentMatrix[2][2] ) );

    FP vec3 s, ts;
    FP float att = 1.0;
    if ( light.type != TYPE_DIRECTIONAL ) {
        s = light.position - vpos;
        if ( dot(snormal, s) < 0.0 )
            att = 0.0;
        else {
            ts = normalize( tangentMatrix * s );
            if (length( light.attenuation ) != 0.0) {
                FP float dist = length(s);
                att = 1.0 / (light.attenuation.x + light.attenuation.y * dist + light.attenuation.z * dist * dist);
            }
            s = normalize( s );
            if ( light.type == TYPE_SPOT ) {
                if ( degrees(acos(dot(-s, normalize(light.direction))) ) > light.cutOffAngle)
                    att = 0.0;
            }
        }
    } else {
        if ( dot(snormal, -light.direction) > 0.0 )
            s = normalize( tangentMatrix * -light.direction );
        else
            att = 0.0;
    }

    FP float diffuse = max( dot( ts, n ), 0.0 );

    FP float specular = 0.0;
    if (diffuse > 0.0 && shininess > 0.0 && att > 0.0) {
        FP vec3 r = reflect( -ts, n );
        FP vec3 v = normalize( tangentMatrix * ( eye - vpos ) );
        FP float normFactor = ( shininess + 2.0 ) / 2.0;
        specular = normFactor * pow( max( dot( r, v ), 0.0 ), shininess );
    }

    diffuseColor += att * light.intensity * diffuse * light.color;
    specularColor += att * light.intensity * specular * light.color;
}

void adsModelNormalMapped(const in FP vec3 vpos, const in FP vec3 vnormal, const in FP vec3 eye, const in FP float shininess,
                          const in FP mat3 tangentMatrix,
                          out FP vec3 diffuseColor, out FP vec3 specularColor)
{
    diffuseColor = vec3(0.0);
    specularColor = vec3(0.0);
    if (lightCount < 1) return;

    FP vec3 n = normalize( vnormal );
    addLightAdsModelNormalMapped(vpos, n, eye, shininess, tangentMatrix, lights[0], diffuseColor, specularColor);
    if (lightCount < 2) return;

    addLightAdsModelNormalMapped(vpos, n, eye, shininess, tangentMatrix, lights[1], diffuseColor, specularColor);
    if (lightCount < 3) return;

    addLightAdsModelNormalMapped(vpos, n, eye, shininess, tangentMatrix, lights[2], diffuseColor, specularColor);
    if (lightCount < 4) return;

    addLightAdsModelNormalMapped(vpos, n, eye, shininess, tangentMatrix, lights[3], diffuseColor, specularColor);
    if (lightCount < 5) return;

    addLightAdsModelNormalMapped(vpos, n, eye, shininess, tangentMatrix, lights[4], diffuseColor, specularColor);
    if (lightCount < 6) return;

    addLightAdsModelNormalMapped(vpos, n, eye, shininess, tangentMatrix, lights[5], diffuseColor, specularColor);
    if (lightCount < 7) return;

    addLightAdsModelNormalMapped(vpos, n, eye, shininess, tangentMatrix, lights[6], diffuseColor, specularColor);
    if (lightCount < 8) return;

    addLightAdsModelNormalMapped(vpos, n, eye, shininess, tangentMatrix, lights[7], diffuseColor, specularColor);
}

void addLightAdsModel(const in FP vec3 vpos,
                      const in FP vec3 n,
                      const in FP vec3 eye,
                      const in FP float shininess,
                      const in Light light,
                      inout FP vec3 diffuseColor,
                      inout FP vec3 specularColor)
{
    FP vec3 s;

    FP float att = 1.0;
    if ( light.type != TYPE_DIRECTIONAL ) {
        s = light.position - vpos;
        if (length( light.attenuation ) != 0.0) {
            FP float dist = length(s);
            att = 1.0 / (light.attenuation.x + light.attenuation.y * dist + light.attenuation.z * dist * dist);
        }
        s = normalize( s );
        if ( light.type == TYPE_SPOT ) {
            if ( degrees(acos(dot(-s, normalize(light.direction))) ) > light.cutOffAngle)
                att = 0.0;
        }
    } else {
        s = normalize( -light.direction );
    }

    FP float diffuse = max( dot( s, n ), 0.0 );
    FP float specular = 0.0;

    if (diffuse > 0.0 && shininess > 0.0 && att > 0.0) {
        FP vec3 r = reflect( -s, n );
        FP vec3 v = normalize( eye - vpos );
        FP float normFactor = ( shininess + 2.0 ) / 2.0;
        specular = normFactor * pow( max( dot( r, v ), 0.0 ), shininess );
    }

    diffuseColor += att * light.intensity * diffuse * light.color;
    specularColor += att * light.intensity * specular * light.color;
}


void adsModel(const in FP vec3 vpos, const in FP vec3 vnormal, const in FP vec3 eye, const in FP float shininess,
              out FP vec3 diffuseColor, out FP vec3 specularColor)
{
    diffuseColor = vec3(0.0);
    specularColor = vec3(0.0);
    if (lightCount < 1) return;

    FP vec3 n = normalize( vnormal );
    addLightAdsModel(vpos, n, eye, shininess, lights[0], diffuseColor, specularColor);
    if (lightCount < 2) return;

    addLightAdsModel(vpos, n, eye, shininess, lights[1], diffuseColor, specularColor);
    if (lightCount < 3) return;

    addLightAdsModel(vpos, n, eye, shininess, lights[2], diffuseColor, specularColor);
    if (lightCount < 4) return;

    addLightAdsModel(vpos, n, eye, shininess, lights[3], diffuseColor, specularColor);
    if (lightCount < 5) return;

    addLightAdsModel(vpos, n, eye, shininess, lights[4], diffuseColor, specularColor);
    if (lightCount < 6) return;

    addLightAdsModel(vpos, n, eye, shininess, lights[5], diffuseColor, specularColor);
    if (lightCount < 7) return;

    addLightAdsModel(vpos, n, eye, shininess, lights[6], diffuseColor, specularColor);
    if (lightCount < 8) return;

    addLightAdsModel(vpos, n, eye, shininess, lights[7], diffuseColor, specularColor);
}

void addLightAdModel(const in FP vec3 vpos,
                     const in FP vec3 n,
                     const in Light light,
                     inout FP vec3 diffuseColor)
{
    FP vec3 s;
    FP float att = 1.0;
    if ( light.type != TYPE_DIRECTIONAL ) {
        s = light.position - vpos;
        if (length( light.attenuation ) != 0.0) {
            FP float dist = length(s);
            att = 1.0 / (light.attenuation.x + light.attenuation.y * dist + light.attenuation.z * dist * dist);
        }
        s = normalize( s );
        if ( light.type == TYPE_SPOT ) {
            if ( degrees(acos(dot(-s, normalize(light.direction))) ) > light.cutOffAngle)
                att = 0.0;
        }
    } else {
        s = normalize( -light.direction );
    }

    FP float diffuse = max( dot( s, n ), 0.0 );

    diffuseColor += att * light.intensity * diffuse * light.color;
}

void adModel(const in FP vec3 vpos, const in FP vec3 vnormal, out FP vec3 diffuseColor)
{
    diffuseColor = vec3(0.0);
    if (lightCount < 1) return;

    FP vec3 n = normalize( vnormal );
    addLightAdModel(vpos, n, lights[0], diffuseColor);
    if (lightCount < 2) return;

    addLightAdModel(vpos, n, lights[1], diffuseColor);
    if (lightCount < 3) return;

    addLightAdModel(vpos, n, lights[2], diffuseColor);
    if (lightCount < 4) return;

    addLightAdModel(vpos, n, lights[3], diffuseColor);
    if (lightCount < 5) return;

    addLightAdModel(vpos, n, lights[4], diffuseColor);
    if (lightCount < 6) return;

    addLightAdModel(vpos, n, lights[5], diffuseColor);
    if (lightCount < 7) return;

    addLightAdModel(vpos, n, lights[6], diffuseColor);
    if (lightCount < 8) return;

    addLightAdModel(vpos, n, lights[7], diffuseColor);
}