]> git.tdb.fi Git - libs/gl.git/blob - source/program.cpp
Add an overload of bind_attribute that takes a VertexComponent
[libs/gl.git] / source / program.cpp
1 #include <algorithm>
2 #include <cstring>
3 #include <msp/core/hash.h>
4 #include <msp/core/maputils.h>
5 #include <msp/gl/extensions/arb_shader_objects.h>
6 #include <msp/gl/extensions/arb_uniform_buffer_object.h>
7 #include <msp/gl/extensions/arb_vertex_shader.h>
8 #include <msp/gl/extensions/ext_gpu_shader4.h>
9 #include <msp/strings/format.h>
10 #include "buffer.h"
11 #include "error.h"
12 #include "misc.h"
13 #include "program.h"
14 #include "shader.h"
15
16 using namespace std;
17
18 namespace Msp {
19 namespace GL {
20
21 Program::Program()
22 {
23         init();
24 }
25
26 Program::Program(const ProgramBuilder::StandardFeatures &features)
27 {
28         init();
29
30         ProgramBuilder builder(features);
31         builder.add_shaders(*this);
32         if(!features.transform)
33                 link();
34 }
35
36 Program::Program(const string &vert, const string &frag)
37 {
38         init();
39
40         attach_shader_owned(new VertexShader(vert));
41         attach_shader_owned(new FragmentShader(frag));
42         link();
43 }
44
45 void Program::init()
46 {
47         static Require _req(ARB_shader_objects);
48
49         linked = false;
50         id = glCreateProgram();
51 }
52
53 Program::~Program()
54 {
55         for(ShaderList::iterator i=owned_data.begin(); i!=owned_data.end(); ++i)
56                 delete *i;
57         glDeleteProgram(id);
58 }
59
60 void Program::attach_shader(Shader &shader)
61 {
62         if(find(shaders.begin(), shaders.end(), &shader)==shaders.end())
63         {
64                 glAttachShader(id, shader.get_id());
65                 shaders.push_back(&shader);
66         }
67 }
68
69 void Program::attach_shader_owned(Shader *shader)
70 {
71         attach_shader(*shader);
72         if(find(owned_data.begin(), owned_data.end(), shader)==owned_data.end())
73                 owned_data.push_back(shader);
74 }
75
76 void Program::detach_shader(Shader &shader)
77 {
78         ShaderList::iterator i = remove(shaders.begin(), shaders.end(), &shader);
79         if(i!=shaders.end())
80         {
81                 shaders.erase(i, shaders.end());
82                 glDetachShader(id, shader.get_id());
83         }
84 }
85
86 void Program::bind_attribute(unsigned index, const string &name)
87 {
88         static Require _req(ARB_vertex_shader);
89         glBindAttribLocation(id, index, name.c_str());
90 }
91
92 void Program::bind_attribute(VertexComponent comp, const string &name)
93 {
94         bind_attribute(get_component_type(comp), name);
95 }
96
97 void Program::bind_fragment_data(unsigned index, const string &name)
98 {
99         static Require _req(EXT_gpu_shader4);
100         glBindFragDataLocation(id, index, name.c_str());
101 }
102
103 void Program::link()
104 {
105         for(ShaderList::iterator i=shaders.begin(); i!=shaders.end(); ++i)
106                 if(!(*i)->is_compiled())
107                         (*i)->compile();
108
109         uniforms.clear();
110         legacy_vars = false;
111
112         glLinkProgram(id);
113         linked = get_program_i(id, GL_LINK_STATUS);
114         if(!linked)
115                 throw compile_error(get_info_log());
116
117         unsigned count = get_program_i(id, GL_ACTIVE_UNIFORMS);
118         vector<UniformInfo *> uniforms_by_index(count);
119         for(unsigned i=0; i<count; ++i)
120         {
121                 char name[128];
122                 int len = 0;
123                 int size;
124                 GLenum type;
125                 glGetActiveUniform(id, i, sizeof(name), &len, &size, &type, name);
126                 if(len && strncmp(name, "gl_", 3))
127                 {
128                         /* Some implementations report the first element of a uniform array,
129                         others report just the name of an array. */
130                         if(len>3 && !strcmp(name+len-3, "[0]"))
131                                 name[len-3] = 0;
132
133                         UniformInfo &info = uniforms[name];
134                         info.block = 0;
135                         info.name = name;
136                         info.size = size;
137                         info.array_stride = 0;
138                         info.matrix_stride = 0;
139                         info.type = type;
140                         uniforms_by_index[i] = &info;
141                 }
142                 else
143                         legacy_vars = true;
144         }
145
146         count = get_program_i(id, GL_ACTIVE_ATTRIBUTES);
147         for(unsigned i=0; i<count; ++i)
148         {
149                 char name[128];
150                 int len = 0;
151                 int size;
152                 GLenum type;
153                 glGetActiveAttrib(id, i, sizeof(name), &len, &size, &type, name);
154                 if(len && !strncmp(name, "gl_", 3))
155                         legacy_vars = true;
156         }
157
158         if(ARB_uniform_buffer_object)
159         {
160                 count = get_program_i(id, GL_ACTIVE_UNIFORM_BLOCKS);
161                 for(unsigned i=0; i<count; ++i)
162                 {
163                         char name[128];
164                         int len;
165                         glGetActiveUniformBlockName(id, i, sizeof(name), &len, name);
166                         UniformBlockInfo &info = uniform_blocks[name];
167                         info.name = name;
168
169                         int value;
170                         glGetActiveUniformBlockiv(id, i, GL_UNIFORM_BLOCK_DATA_SIZE, &value);
171                         info.data_size = value;
172
173                         glGetActiveUniformBlockiv(id, i, GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS, &value);
174                         vector<int> indices(value);
175                         glGetActiveUniformBlockiv(id, i, GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES, &indices[0]);
176                         for(vector<int>::iterator j=indices.begin(); j!=indices.end(); ++j)
177                         {
178                                 if(!uniforms_by_index[*j])
179                                         throw logic_error("Program::link");
180                                 info.uniforms.push_back(uniforms_by_index[*j]);
181                                 uniforms_by_index[*j]->block = &info;
182                         }
183
184                         vector<unsigned> indices2(indices.begin(), indices.end());
185                         vector<int> values(indices.size());
186                         glGetActiveUniformsiv(id, indices.size(), &indices2[0], GL_UNIFORM_OFFSET, &values[0]);
187                         for(unsigned j=0; j<indices.size(); ++j)
188                                 uniforms_by_index[indices[j]]->location = values[j];
189
190                         indices2.clear();
191                         for(vector<int>::iterator j=indices.begin(); j!=indices.end(); ++j)
192                                 if(uniforms_by_index[*j]->size>1)
193                                         indices2.push_back(*j);
194                         if(!indices2.empty())
195                         {
196                                 glGetActiveUniformsiv(id, indices2.size(), &indices2[0], GL_UNIFORM_ARRAY_STRIDE, &values[0]);
197                                 for(unsigned j=0; j<indices2.size(); ++j)
198                                         uniforms_by_index[indices[j]]->array_stride = values[j];
199                         }
200
201                         indices2.clear();
202                         for(vector<int>::iterator j=indices.begin(); j!=indices.end(); ++j)
203                         {
204                                 GLenum t = uniforms_by_index[*j]->type;
205                                 if(t==GL_FLOAT_MAT4 || t==GL_FLOAT_MAT3 || t==GL_FLOAT_MAT2 ||
206                                         t==GL_FLOAT_MAT2x3 || t==GL_FLOAT_MAT2x4 || t==GL_FLOAT_MAT3x2 ||
207                                         t==GL_FLOAT_MAT3x4 || t==GL_FLOAT_MAT4x2 || t==GL_FLOAT_MAT4x3)
208                                         indices2.push_back(*j);
209                         }
210                         if(!indices2.empty())
211                         {
212                                 glGetActiveUniformsiv(id, indices2.size(), &indices2[0], GL_UNIFORM_MATRIX_STRIDE, &values[0]);
213                                 for(unsigned j=0; j<indices2.size(); ++j)
214                                         uniforms_by_index[indices[j]]->matrix_stride = values[j];
215                         }
216
217                         sort(info.uniforms.begin(), info.uniforms.end(), uniform_location_compare);
218                         info.layout_hash = compute_layout_hash(info.uniforms);
219                         info.bind_point = info.layout_hash%BufferRange::get_n_uniform_buffer_bindings();
220                         glUniformBlockBinding(id, i, info.bind_point);
221                 }
222         }
223
224         vector<const UniformInfo *> blockless_uniforms;
225         for(UniformMap::iterator i=uniforms.begin(); i!=uniforms.end(); ++i)
226                 if(!i->second.block)
227                 {
228                         i->second.location = glGetUniformLocation(id, i->second.name.c_str());
229                         blockless_uniforms.push_back(&i->second);
230                 }
231
232         uniform_layout_hash = compute_layout_hash(blockless_uniforms);
233 }
234
235 unsigned Program::compute_layout_hash(const vector<const UniformInfo *> &uniforms)
236 {
237         string layout_descriptor;
238         for(vector<const UniformInfo *>::const_iterator i = uniforms.begin(); i!=uniforms.end(); ++i)
239                 layout_descriptor += format("%d:%s:%x:%d\n", (*i)->location, (*i)->name, (*i)->type, (*i)->size);
240         return hash32(layout_descriptor);
241 }
242
243 bool Program::uniform_location_compare(const UniformInfo *uni1, const UniformInfo *uni2)
244 {
245         return uni1->location<uni2->location;
246 }
247
248 string Program::get_info_log() const
249 {
250         GLsizei len = get_program_i(id, GL_INFO_LOG_LENGTH);
251         char *buf = new char[len+1];
252         glGetProgramInfoLog(id, len+1, &len, buf);
253         string log(buf, len);
254         delete[] buf;
255         return log;
256 }
257
258 const Program::UniformBlockInfo &Program::get_uniform_block_info(const string &name) const
259 {
260         return get_item(uniform_blocks, name);
261 }
262
263 const Program::UniformInfo &Program::get_uniform_info(const string &name) const
264 {
265         return get_item(uniforms, name);
266 }
267
268 int Program::get_uniform_location(const string &n) const
269 {
270         UniformMap::const_iterator i = uniforms.find(n);
271         if(i==uniforms.end())
272         {
273                 if(n[n.size()-1]==']')
274                 {
275                         string::size_type open_bracket = n.rfind('[');
276                         if(open_bracket!=string::npos)
277                         {
278                                 /* The requested name looks like an array.  glGetActiveUniform only
279                                 gives us the first element of the array, so try to look that up and
280                                 add an offset. */
281                                 unsigned offset = lexical_cast<unsigned>(n.substr(open_bracket+1, n.size()-2-open_bracket));
282                                 i = uniforms.find(n.substr(0, open_bracket));
283                                 if(i!=uniforms.end() && !i->second.block && offset<i->second.size)
284                                         return i->second.location+offset;
285                         }
286                 }
287                 return -1;
288         }
289
290         return i->second.block ? -1 : i->second.location;
291 }
292
293 void Program::bind() const
294 {
295         if(!linked)
296                 throw invalid_operation("Program::bind");
297
298         if(!set_current(this))
299                 return;
300
301         glUseProgram(id);
302 }
303
304 void Program::unbind()
305 {
306         if(!set_current(0))
307                 return;
308
309         glUseProgram(0);
310 }
311
312
313 Program::Loader::Loader(Program &p):
314         DataFile::ObjectLoader<Program>(p)
315 {
316         add("attribute",       &Loader::attribute);
317         add("fragment_shader", &Loader::fragment_shader);
318         add("standard",        &Loader::standard);
319         add("vertex_shader",   &Loader::vertex_shader);
320 }
321
322 void Program::Loader::finish()
323 {
324         obj.link();
325 }
326
327 void Program::Loader::attribute(unsigned i, const string &n)
328 {
329         obj.bind_attribute(i, n);
330 }
331
332 void Program::Loader::fragment_shader(const string &src)
333 {
334         obj.attach_shader_owned(new FragmentShader(src));
335 }
336
337 void Program::Loader::standard()
338 {
339         ProgramBuilder::StandardFeatures feat;
340         load_sub(feat);
341         ProgramBuilder builder(feat);
342         builder.add_shaders(obj);
343 }
344
345 void Program::Loader::vertex_shader(const string &src)
346 {
347         obj.attach_shader_owned(new VertexShader(src));
348 }
349
350 } // namespace GL
351 } // namespace Msp