]> git.tdb.fi Git - libs/gl.git/blob - source/programbuilder.cpp
Inline variables which are simple aliases, even if not optimizing
[libs/gl.git] / source / programbuilder.cpp
1 #include <algorithm>
2 #include <cstring>
3 #include <msp/strings/format.h>
4 #include "extension.h"
5 #include "program.h"
6 #include "programbuilder.h"
7 #include "shader.h"
8 #include "vertexformat.h"
9
10 using namespace std;
11
12 namespace Msp {
13 namespace GL {
14
15 /*
16 Naming conventions:
17   n_*        Normalized vector
18   l_*        Lighting component
19
20   obj_*      Object space
21   eye_*      Eye space
22   tbn_*      Tangent-Binormal-Normal space
23   shd_*      Shadow space
24   env_*      Environment space
25   *_dir      Direction vector
26
27   zzz_*      Wildcard space, resolved by the builder
28              All wildcard spaces within an expression must match
29
30   xxx_yyy_*  Matrix that transforms between yyy to xxx
31              The vector is on the side of its designated space, result will be
32              in the other space
33   *_matrix   A matrix (duh)
34   *_rmatrix  A mat4 that works with a row vector
35
36   rgb_*      Color with rgb components only
37   color_*    Color with rgba components
38 */
39
40 /* The array are stored in reverse order, so that variables always come after
41 anything that might need them. */
42 const ProgramBuilder::VariableDefinition ProgramBuilder::standard_variables[] =
43 {
44         { FRAGMENT, "gl_FragColor", "vec4", "frag_color", "g" },
45         { FRAGMENT, "frag_color", "vec4", "color_base", "!t" },
46         { FRAGMENT, "frag_color", "vec4", "tex_sample", "!l!s!mt" },
47         { FRAGMENT, "frag_color", "vec4", "tex_sample*color_base", "l|s|mt" },
48         { FRAGMENT, "color_base", "vec4", "vec4(1.0)", "!l!s!m" },
49         { FRAGMENT, "color_base", "vec4", "color", "!l!sm" },
50         { FRAGMENT, "color_base", "vec4", "vec4(vec3(l_shadow), 1.0)", "!ls!m" },
51         { FRAGMENT, "color_base", "vec4", "color*vec4(vec3(l_shadow), 1.0)", "!lsm" },
52         { FRAGMENT, "color_base", "vec4", "vec4(rgb_light_env, 1.0)", "l!m" },
53         { FRAGMENT, "color_base", "vec4", "vec4(rgb_light_env, material.diffuse.a)", "lm" },
54         { FRAGMENT, "rgb_light_env", "vec3", "rgb_light_full+reflect_sample.rgb*reflectivity", "e" },
55         { FRAGMENT, "rgb_light_env", "vec3", "rgb_light_full", "!e" },
56         { FRAGMENT, "rgb_light_full", "vec3", "rgb_light_shadow+ambient_product_diffuse.rgb", "m" },
57         { FRAGMENT, "rgb_light_full", "vec3", "rgb_light_shadow", "!m" },
58         { FRAGMENT, "ambient_product_diffuse", "vec4", "gl_FrontLightModelProduct.sceneColor", "g" },
59         { FRAGMENT, "ambient_product_diffuse", "vec4", "ambient_color*material.diffuse", "!g" },
60         { FRAGMENT, "rgb_light_shadow", "vec3", "rgb_light*l_shadow", "s" },
61         { FRAGMENT, "rgb_light_shadow", "vec3", "rgb_light", "!s" },
62         { FRAGMENT, "rgb_light", "vec3", "vec3(l_diffuse)", "!m!p" },
63         { FRAGMENT, "rgb_light", "vec3", "vec3(l_diffuse+l_specular)", "!mp" },
64         { FRAGMENT, "rgb_light", "vec3", "l_diffuse*light_product_diffuse.rgb", "m!p" },
65         { FRAGMENT, "rgb_light", "vec3", "l_diffuse*light_product_diffuse.rgb+l_specular*light_product_specular.rgb", "mp" },
66         { FRAGMENT, "light_product_diffuse", "vec4", "gl_FrontLightProduct[0].diffuse", "g" },
67         { FRAGMENT, "light_product_diffuse", "vec4", "light_sources[0].diffuse*material.diffuse", "!g" },
68         { FRAGMENT, "light_product_specular", "vec4", "gl_FrontLightProduct[0].specular", "g" },
69         { FRAGMENT, "light_product_specular", "vec4", "light_sources[0].specular*material.specular", "!g" },
70         { FRAGMENT, "reflect_sample", "vec4", "textureCube(environment, env_reflect_dir)", 0 },
71         { FRAGMENT, "env_reflect_dir", "vec3", "env_eye_matrix*eye_reflect_dir", 0 },
72         { FRAGMENT, "eye_reflect_dir", "vec3", "eye_tbn_matrix*tbn_reflect_dir", "n" },
73         { FRAGMENT, "zzz_reflect_dir", "vec3", "reflect(zzz_incident_dir, n_zzz_normal)", 0 },
74         { FRAGMENT, "l_shadow", "float", "mix(1.0, shadow_sample, shadow_darkness)", 0 },
75         { FRAGMENT, "shadow_sample", "float", "shadow2D(shadow, shd_vertex).r", 0 },
76         { FRAGMENT, "l_diffuse", "float", "max(dot(n_zzz_normal, n_zzz_light_dir), 0.0)", 0 },
77         { FRAGMENT, "l_specular", "float", "pow(max(dot(n_zzz_half_vec, n_zzz_normal), 0.0), material.shininess)", 0 },
78         { FRAGMENT, "n_zzz_half_vec", "vec3", "normalize(zzz_light_dir-zzz_incident_dir)", 0 },
79         { FRAGMENT, "n_zzz_light_dir", "vec3", "normalize(zzz_light_dir)", 0 },
80         { FRAGMENT, "n_tbn_normal", "vec3", "normal_sample*2.0-1.0", "n" },
81         { FRAGMENT, "n_eye_normal", "vec3", "normalize(eye_normal)", "!n" },
82         { FRAGMENT, "normal_sample", "vec3", "texture2D(normalmap, texture_coord).xyz", 0 },
83         { FRAGMENT, "tex_sample", "vec4", "texture2D(texture, texture_coord)", 0 },
84
85         { VERTEX, "gl_Position", "vec4", "projection_matrix*eye_vertex", 0 },
86         { VERTEX, "shd_vertex", "vec3", "vec3(dot(eye_vertex, gl_EyePlaneS[shadow_unit]), dot(eye_vertex, gl_EyePlaneT[shadow_unit]), dot(eye_vertex, gl_EyePlaneR[shadow_unit]))", "g" },
87         { VERTEX, "shd_vertex", "vec3", "(shd_eye_matrix*eye_vertex).xyz", "!g" },
88         { VERTEX, "tbn_light_dir", "vec3", "eye_light_dir*eye_tbn_matrix", 0 },
89         { VERTEX, "eye_light_dir", "vec3", "normalize(eye_light_position.xyz-eye_vertex.xyz*eye_light_position.w)", 0 },
90         { VERTEX, "eye_light_position", "vec4", "light_sources[0].position", 0 },
91         { VERTEX, "tbn_incident_dir", "vec3", "eye_incident_dir*eye_tbn_matrix", 0 },
92         { VERTEX, "eye_incident_dir", "vec3", "normalize(eye_vertex.xyz)", 0 },
93         { VERTEX, "eye_tbn_matrix", "mat3", "mat3(eye_tangent, eye_binormal, eye_normal)", 0 },
94         { VERTEX, "eye_vertex", "vec4", "eye_obj_matrix*vertex", 0 },
95         { VERTEX, "eye_normal", "vec3", "eye_obj_normal_matrix*normal", 0 },
96         { VERTEX, "eye_tangent", "vec3", "eye_obj_normal_matrix*tangent", 0 },
97         { VERTEX, "eye_binormal", "vec3", "eye_obj_normal_matrix*binormal", 0 },
98         { VERTEX, "texture_coord", "vec2", "texcoord.xy", 0 },
99
100         { ATTRIBUTE, "vertex", "vec4", "gl_Vertex", 0 },
101         { ATTRIBUTE, "texcoord", "vec4", "gl_MultiTexCoord0", 0 },
102         { ATTRIBUTE, "color", "vec4", "gl_Color", 0 },
103         { ATTRIBUTE, "normal", "vec3", "gl_Normal", 0 },
104         { ATTRIBUTE, "tangent", "vec3", 0, 0 },
105         { ATTRIBUTE, "binormal", "vec3", 0, 0 },
106
107         { UNIFORM, "shadow_unit", "int", 0, 0 },
108         { UNIFORM, "texture", "sampler2D", 0, 0 },
109         { UNIFORM, "shadow", "sampler2DShadow", 0, 0 },
110         { UNIFORM, "shadow_darkness", "float", 0, 0 },
111         { UNIFORM, "normalmap", "sampler2D", 0, 0 },
112         { UNIFORM, "environment", "samplerCube", 0, 0 },
113         { UNIFORM, "env_eye_matrix", "mat3", 0, 0 },
114         { UNIFORM, "reflectivity", "float", 0, 0 },
115         { UNIFORM, "eye_obj_matrix", "mat4", "gl_ModelViewMatrix", 0 },
116         { UNIFORM, "eye_obj_normal_matrix", "mat3", "gl_NormalMatrix", 0 },
117         { UNIFORM, "projection_matrix", "mat4", "gl_ProjectionMatrix", 0 },
118         { UNIFORM, "shd_eye_matrix", "mat4", 0, 0 },
119         { UNIFORM, "light_sources", "struct { vec4 position; vec4 diffuse; vec4 specular; } %s[2]", "gl_LightSource", 0 },
120         { UNIFORM, "ambient_color", "vec4", 0, 0 },
121         { UNIFORM, "material", "struct { vec4 ambient; vec4 diffuse; vec4 specular; float shininess; }", "gl_FrontMaterial", 0 },
122
123         // Terminator entry
124         { NO_SCOPE, 0, 0, 0, 0 }
125 };
126
127 ProgramBuilder::ProgramBuilder(const StandardFeatures &f):
128         features(f),
129         feature_flags(features.create_flags()),
130         optimize(true)
131 {
132         if(!features.custom.empty())
133         {
134                 const char *whitespace = " \t\n";
135                 string::size_type start = 0;
136                 while(1)
137                 {
138                         start = features.custom.find_first_not_of(whitespace, start);
139                         if(start==string::npos)
140                                 break;
141
142                         string::size_type semicolon = features.custom.find(';', start);
143                         if(semicolon==start)
144                         {
145                                 ++start;
146                                 continue;
147                         }
148                         else if(semicolon==string::npos)
149                                 throw invalid_variable_definition(features.custom.substr(start));
150
151                         string::size_type equals = features.custom.find('=', start);
152                         if(equals>semicolon)
153                                 equals = string::npos;
154
155                         VariableDefinition var;
156                         string::size_type decl_end = min(equals, semicolon);
157                         for(unsigned i=0;; ++i)
158                         {
159                                 string::size_type word_end = features.custom.find_first_of(whitespace, start);
160                                 word_end = min(word_end, decl_end);
161                                 features.custom[word_end] = 0;
162
163                                 const char *word = &features.custom[start];
164                                 if(i==0)
165                                 {
166                                         if(!strcmp(word, "uniform"))
167                                                 var.scope = UNIFORM;
168                                         else if(!strcmp(word, "attribute"))
169                                                 var.scope = ATTRIBUTE;
170                                         else if(!strcmp(word, "vertex"))
171                                                 var.scope = VERTEX;
172                                         else if(!strcmp(word, "fragment"))
173                                                 var.scope = FRAGMENT;
174                                         else
175                                                 throw invalid_variable_definition(word);
176                                 }
177                                 else if(i==1)
178                                         var.type = word;
179                                 else if(i==2)
180                                         var.name = word;
181
182                                 start = features.custom.find_first_not_of(whitespace, word_end+1);
183                                 if(start>=decl_end)
184                                         break;
185                         }
186
187                         if(equals!=string::npos)
188                         {
189                                 start = features.custom.find_first_not_of(whitespace, equals+1);
190                                 if(start>=semicolon)
191                                         throw invalid_variable_definition("no expression");
192                                 features.custom[semicolon] = 0;
193                                 var.expression = &features.custom[start];
194                         }
195                         else
196                                 var.expression = 0;
197
198                         var.flags = 0;
199                         for(const VariableDefinition *j=standard_variables; j->name; ++j)
200                                 if(!strcmp(var.name, j->name))
201                                         var.flags = "o";
202
203                         custom_variables.push_front(var);
204
205                         start = semicolon+1;
206                 }
207         }
208 }
209
210 void ProgramBuilder::set_optimize(bool o)
211 {
212         optimize = o;
213 }
214
215 Program *ProgramBuilder::create_program() const
216 {
217         Program *prog = new Program;
218         add_shaders(*prog);
219         return prog;
220 }
221
222 void ProgramBuilder::add_shaders(Program &prog) const
223 {
224         list<ShaderVariable> variables;
225         list<ShaderVariable *> resolved_vars;
226
227         variables.push_front(ShaderVariable("gl_Position"));
228         variables.push_front(ShaderVariable(features.legacy ? "gl_FragColor" : "frag_color"));
229
230         list<VariableDefinition>::const_iterator next_custom = custom_variables.begin();
231         for(const VariableDefinition *i=standard_variables; i->name; )
232         {
233                 const VariableDefinition *def = 0;
234                 if(next_custom!=custom_variables.end() && (!strcmp(next_custom->name, i->name) || !next_custom->flags))
235                 {
236                         def = &*next_custom;
237                         ++next_custom;
238                 }
239                 else
240                 {
241                         def = i;
242                         ++i;
243
244                         // Skip over anything that isn't used with the supplied flags
245                         if(def->flags && !evaluate_flags(def->flags))
246                                 continue;
247                 }
248
249                 // See if this variable can satisfy any unresolved variables
250                 ShaderVariable *last_resolved = 0;
251                 for(list<ShaderVariable>::iterator j=variables.begin(); j!=variables.end(); ++j)
252                 {
253                         if(j->variable)
254                                 continue;
255
256                         if(!name_match(def->name, j->resolved_name.c_str()))
257                                 continue;
258
259                         if(last_resolved)
260                         {
261                                 /* We've already resolved a non-fuzzy variable in this iteration.
262                                 If there are multiple variables that can be resolved, they refer
263                                 to the same variable. */
264                                 j->resolve(*last_resolved);
265                                 continue;
266                         }
267
268                         j->resolve(*def);
269                         resolved_vars.push_front(&*j);
270                         if(!j->fuzzy_space)
271                                 last_resolved = &*j;
272
273                         if(!def->expression)
274                                 continue;
275
276                         vector<string> identifiers = extract_identifiers(def->expression);
277                         for(vector<string>::const_iterator k=identifiers.begin(); k!=identifiers.end(); ++k)
278                         {
279                                 // Use an existing variable if possible, but only if it's not fuzzy
280                                 ShaderVariable *var = 0;
281                                 for(list<ShaderVariable>::iterator l=variables.begin(); (!var && l!=variables.end()); ++l)
282                                         if(!l->fuzzy_space && l->resolved_name==*k)
283                                                 var = &*l;
284
285                                 if(!var)
286                                 {
287                                         variables.push_back(ShaderVariable(*k));
288                                         var = &variables.back();
289                                 }
290                                 j->add_reference(*var);
291                         }
292                 }
293         }
294
295         for(list<ShaderVariable *>::const_iterator i=resolved_vars.begin(); i!=resolved_vars.end(); ++i)
296                 (*i)->check_inline(features.legacy, !optimize);
297
298         prog.attach_shader_owned(new VertexShader(create_source(resolved_vars, VERTEX)));
299         prog.attach_shader_owned(new FragmentShader(create_source(resolved_vars, FRAGMENT)));
300
301         if(!features.legacy)
302         {
303                 prog.bind_fragment_data(0, "frag_color");
304                 prog.bind_attribute(VERTEX4, "vertex");
305                 if(features.lighting)
306                         prog.bind_attribute(NORMAL3, "normal");
307                 else if(features.material)
308                         prog.bind_attribute(COLOR4_FLOAT, "color");
309                 if(features.texture || features.normalmap)
310                         prog.bind_attribute(TEXCOORD4, "texcoord");
311         }
312         if(features.normalmap)
313         {
314                 prog.bind_attribute(get_component_type(TANGENT3), "tangent");
315                 prog.bind_attribute(get_component_type(BINORMAL3), "binormal");
316         }
317 }
318
319 string ProgramBuilder::create_source(const list<ShaderVariable *> &variables, VariableScope scope) const
320 {
321         string source;
322
323         if(!features.legacy)
324                 source += "#version 130\n";
325
326         for(list<ShaderVariable *>::const_iterator i=variables.begin(); i!=variables.end(); ++i)
327                 if((*i)->variable->scope==UNIFORM && (*i)->is_referenced_from(scope) && !(*i)->inlined)
328                 {
329                         if(strchr((*i)->variable->type, '%'))
330                                 source += format("uniform %s;\n", format((*i)->variable->type, (*i)->resolved_name));
331                         else
332                                 source += format("uniform %s %s;\n", (*i)->variable->type, (*i)->resolved_name);
333                 }
334
335         if(scope==VERTEX)
336         {
337                 const char *qualifier = (features.legacy ? "attribute" : "in");
338                 for(list<ShaderVariable *>::const_iterator i=variables.begin(); i!=variables.end(); ++i)
339                         if((*i)->variable->scope==ATTRIBUTE && !(*i)->inlined)
340                                 source += format("%s %s %s;\n", qualifier, (*i)->variable->type, (*i)->resolved_name);
341         }
342
343         /* Any variables defined in vertex scope but referenced from fragment scope
344         should be exported as varyings over the interface. */
345         list<ShaderVariable *> varyings;
346         for(list<ShaderVariable *>::const_iterator i=variables.begin(); i!=variables.end(); ++i)
347                 if(((*i)->variable->scope==VERTEX || (*i)->variable->scope==ATTRIBUTE) && (*i)->is_referenced_from(FRAGMENT))
348                 {
349                         varyings.push_back(*i);
350                         const char *qualifier;
351                         if(!features.legacy)
352                                 qualifier = (scope==VERTEX ? "out" : "in");
353                         else
354                                 qualifier = "varying";
355                         source += format("%s %s v_%s;\n", qualifier, (*i)->variable->type, (*i)->resolved_name);
356                 }
357
358         for(list<ShaderVariable *>::const_iterator i=variables.begin(); i!=variables.end(); ++i)
359                 if((*i)->referenced_by.empty() && (*i)->resolved_name.compare(0, 3, "gl_"))
360                         source += format("out %s %s;\n", (*i)->variable->type, (*i)->resolved_name);
361
362         source += "void main()\n{\n";
363
364         for(list<ShaderVariable *>::const_iterator i=variables.begin(); i!=variables.end(); ++i)
365                 if((*i)->variable->scope==scope && !(*i)->inlined)
366                 {
367                         source += '\t';
368                         if(!(*i)->referenced_by.empty())
369                         {
370                                 source += (*i)->variable->type;
371                                 source += ' ';
372                         }
373                         source += format("%s = %s;\n", (*i)->resolved_name, (*i)->get_expression());
374                 }
375
376         if(scope==VERTEX)
377         {
378                 for(list<ShaderVariable *>::const_iterator i=varyings.begin(); i!=varyings.end(); ++i)
379                 {
380                         if((*i)->inlined)
381                                 source += format("\tv_%s = %s;\n", (*i)->resolved_name, (*i)->get_expression());
382                         else
383                                 source += format("\tv_%s = %s;\n", (*i)->resolved_name, (*i)->resolved_name);
384                 }
385         }
386
387         source += '}';
388
389         return source;
390 }
391
392 bool ProgramBuilder::evaluate_flags(const char *flags) const
393 {
394         if(!flags)
395                 return true;
396
397         bool cond = true;
398         char oper = '&';
399         for(const char *i=flags; *i; ++i)
400         {
401                 if(*i>='a' && *i<='z')
402                 {
403                         bool found = (feature_flags.find(*i)!=string::npos);
404                         if(oper=='|')
405                                 cond = (cond || found);
406                         else if(oper=='!')
407                                 cond = (cond && !found);
408                         else if(oper=='&')
409                                 cond = (cond && found);
410                         oper = '&';
411                 }
412                 else
413                         oper = *i;
414         }
415
416         return cond;
417 }
418
419 ProgramBuilder::MatchLevel ProgramBuilder::name_match(const char *n1, const char *n2, const char **space)
420 {
421         int i = 0;
422         int zzz = -1;
423         int zside = 0;
424         while(*n1 && *n2)
425         {
426                 if(*n1==*n2 || *n1=='z' || *n2=='z')
427                 {
428                         if(*n1!=*n2)
429                         {
430                                 int side = (*n1=='z' ? 1 : 2);
431                                 if(zzz<0)
432                                 {
433                                         zzz = i;
434                                         zside = side;
435                                         if(space)
436                                         {
437                                                 if(*n1=='z')
438                                                         *space = n2;
439                                                 else
440                                                         *space = n1;
441                                         }
442                                 }
443                                 else if(i>=zzz+3 || side!=zside)
444                                         return NO_MATCH;
445                         }
446                 }
447                 else
448                         return NO_MATCH;
449                 ++n1;
450                 ++n2;
451                 ++i;
452         }
453         return (!*n1 && !*n2) ? zzz>=0 ? FUZZY : EXACT : NO_MATCH;
454 }
455
456 bool ProgramBuilder::parse_identifier(const char *ptr, unsigned &start, unsigned &length)
457 {
458         bool found = false;
459         bool member = false;
460         for(const char *i=ptr;; ++i)
461         {
462                 if(!found)
463                 {
464                         if(!*i)
465                                 return false;
466                         if(isalpha(*i) || *i=='_')
467                         {
468                                 if(!member)
469                                 {
470                                         start = i-ptr;
471                                         found = true;
472                                 }
473                         }
474                         else if(*i=='.')
475                                 member = true;
476                         else
477                                 member = false;
478                 }
479                 else
480                 {
481                         if(!isalnum(*i) && *i!='_')
482                         {
483                                 length = i-(ptr+start);
484                                 return true;
485                         }
486                 }
487         }
488 }
489
490 vector<string> ProgramBuilder::extract_identifiers(const char *expression)
491 {
492         vector<string> result;
493         const char *ptr = expression;
494         unsigned start = 0;
495         unsigned length = 0;
496         while(parse_identifier(ptr, start, length))
497         {
498                 result.push_back(string(ptr+start, length));
499                 ptr += start+length;
500         }
501         return result;
502 }
503
504 string ProgramBuilder::replace_identifiers(const char *expression, const map<string, string> &replace_map)
505 {
506         string result;
507         const char *ptr = expression;
508         unsigned start = 0;
509         unsigned length = 0;
510         while(parse_identifier(ptr, start, length))
511         {
512                 result.append(ptr, start);
513                 string identifier(ptr+start, length);
514                 map<string, string>::const_iterator i = replace_map.find(identifier);
515                 if(i!=replace_map.end())
516                         result += i->second;
517                 else
518                         result += identifier;
519                 ptr += start+length;
520         }
521         result += ptr;
522         return result;
523 }
524
525
526 ProgramBuilder::StandardFeatures::StandardFeatures():
527         texture(false),
528         material(false),
529         lighting(false),
530         specular(false),
531         normalmap(false),
532         shadow(false),
533         reflection(false),
534         legacy(!(get_glsl_version()>=Version(1, 30)))
535 { }
536
537 string ProgramBuilder::StandardFeatures::create_flags() const
538 {
539         string flags;
540         if(texture)
541                 flags += 't';
542         if(material)
543                 flags += 'm';
544         if(lighting)
545         {
546                 flags += 'l';
547                 if(specular)
548                         flags += 'p';
549                 if(normalmap)
550                         flags += 'n';
551         }
552         if(shadow)
553                 flags += 's';
554         if(reflection)
555                 flags += 'e';
556         if(legacy)
557                 flags += 'g';
558
559         return flags;
560 }
561
562
563 ProgramBuilder::ShaderVariable::ShaderVariable(const std::string &n):
564         name(n),
565         variable(0),
566         resolved_name(n),
567         fuzzy_space(name.find("zzz")!=string::npos),
568         inlined(false),
569         inline_parens(false)
570 { }
571
572 void ProgramBuilder::ShaderVariable::resolve(const VariableDefinition &var)
573 {
574         variable = &var;
575         const char *space = 0;
576         if(name_match(var.name, resolved_name.c_str(), &space)==FUZZY)
577                 resolve_space(string(space, 3));
578
579 }
580
581 void ProgramBuilder::ShaderVariable::resolve(ShaderVariable &var)
582 {
583         for(list<ShaderVariable *>::iterator i=referenced_by.begin(); i!=referenced_by.end(); ++i)
584                 (*i)->update_reference(*this, var);
585         var.referenced_by.insert(var.referenced_by.end(), referenced_by.begin(), referenced_by.end());
586 }
587
588 void ProgramBuilder::ShaderVariable::resolve_space(const string &space)
589 {
590         if(fuzzy_space)
591         {
592                 resolved_space = space;
593
594                 string::size_type zzz = resolved_name.find("zzz");
595                 resolved_name.replace(zzz, 3, resolved_space);
596                 fuzzy_space = false;
597
598                 // Resolving the space could have affected other variables that use this one
599                 for(list<ShaderVariable *>::iterator i=referenced_by.begin(); i!=referenced_by.end(); ++i)
600                         (*i)->resolve_space(space);
601         }
602
603         for(list<ShaderVariable *>::iterator i=referenced_vars.begin(); i!=referenced_vars.end(); ++i)
604                 if((*i)->fuzzy_space)
605                         (*i)->resolve_space(space);
606 }
607
608 void ProgramBuilder::ShaderVariable::add_reference(ShaderVariable &var)
609 {
610         referenced_vars.push_back(&var);
611         var.referenced_by.push_back(this);
612         if(var.fuzzy_space && !resolved_space.empty())
613                 var.resolve_space(resolved_space);
614 }
615
616 void ProgramBuilder::ShaderVariable::update_reference(ShaderVariable &from, ShaderVariable &to)
617 {
618         replace(referenced_vars.begin(), referenced_vars.end(), &from, &to);
619         replace(referenced_by.begin(), referenced_by.end(), &from, &to);
620         if(from.fuzzy_space && !to.fuzzy_space && !to.resolved_space.empty())
621                 resolve_space(to.resolved_space);
622 }
623
624 void ProgramBuilder::ShaderVariable::check_inline(bool allow_legacy, bool trivial_only)
625 {
626         if(variable->expression)
627         {
628                 if(!allow_legacy && !strncmp(variable->expression, "gl_", 3))
629                         return;
630
631                 // Never inline goal variables
632                 unsigned total_refs = referenced_by.size();
633                 if(!total_refs)
634                         return;
635
636                 // Inline an expression consisting of a single identifier
637                 unsigned start, length;
638                 if(parse_identifier(variable->expression, start, length))
639                         if(start==0 && variable->expression[length]==0)
640                         {
641                                 inlined = true;
642                                 return;
643                         }
644
645                 if(trivial_only)
646                         return;
647
648                 unsigned in_scope_refs = 0;
649                 for(list<ShaderVariable *>::const_iterator i=referenced_by.begin(); i!=referenced_by.end(); ++i)
650                         if((*i)->variable->scope==variable->scope)
651                                 ++in_scope_refs;
652
653                 /* Inline if there's only one ref, or if all refs are in other scopes.
654                 In the latter case, the actual inlining will happen in the interface
655                 variable assignment. */
656                 if(total_refs==1 || in_scope_refs==0)
657                 {
658                         inlined = true;
659                         unsigned level = 0;
660                         for(const char *c=variable->expression; (!inline_parens && *c); ++c)
661                         {
662                                 if(*c=='(')
663                                         ++level;
664                                 else if(*c==')')
665                                         --level;
666                                 else if(level==0 && !isalnum(*c) && *c!='_' && *c!='.')
667                                         inline_parens = true;
668                         }
669                 }
670         }
671 }
672
673 bool ProgramBuilder::ShaderVariable::is_referenced_from(VariableScope scope) const
674 {
675         for(list<ShaderVariable *>::const_iterator i=referenced_by.begin(); i!=referenced_by.end(); ++i)
676                 if((*i)->variable->scope==scope)
677                         return true;
678         return false;
679 }
680
681 string ProgramBuilder::ShaderVariable::get_expression() const
682 {
683         map<string, string> replace_map;
684         for(list<ShaderVariable *>::const_iterator i=referenced_vars.begin(); i!=referenced_vars.end(); ++i)
685                 if((*i)->variable)
686                 {
687                         string replacement = (*i)->resolved_name;
688                         if(variable->scope==FRAGMENT && ((*i)->variable->scope==VERTEX || (*i)->variable->scope==ATTRIBUTE))
689                                 replacement = "v_"+replacement;
690                         else if((*i)->inlined)
691                         {
692                                 replacement = (*i)->get_expression();
693                                 if((*i)->inline_parens)
694                                         replacement = "("+replacement+")";
695                         }
696                         if(replacement!=(*i)->name)
697                                 replace_map[(*i)->name] = replacement;
698                 }
699
700         if(replace_map.empty())
701                 return variable->expression;
702         else
703                 return replace_identifiers(variable->expression, replace_map);
704 }
705
706
707 ProgramBuilder::StandardFeatures::Loader::Loader(StandardFeatures &f):
708         DataFile::ObjectLoader<StandardFeatures>(f)
709 {
710         add("custom",    &StandardFeatures::custom);
711         add("lighting",  &StandardFeatures::lighting);
712         add("material",  &StandardFeatures::material);
713         add("normalmap", &StandardFeatures::normalmap);
714         add("reflection", &StandardFeatures::reflection);
715         add("shadow",    &StandardFeatures::shadow);
716         add("specular",  &StandardFeatures::specular);
717         add("texture",   &StandardFeatures::texture);
718 }
719
720 } // namespace GL
721 } // namespace Msp