5 #include "effect_chain.h"
10 GLint get_uniform_location(GLuint glsl_program_num, const std::string &prefix, const std::string &key)
12 std::string name = prefix + "_" + key;
13 return glGetUniformLocation(glsl_program_num, name.c_str());
16 void set_uniform_int(GLuint glsl_program_num, const std::string &prefix, const std::string &key, int value)
18 GLint location = get_uniform_location(glsl_program_num, prefix, key);
23 glUniform1i(location, value);
27 void set_uniform_float(GLuint glsl_program_num, const std::string &prefix, const std::string &key, float value)
29 GLint location = get_uniform_location(glsl_program_num, prefix, key);
34 glUniform1f(location, value);
38 void set_uniform_float_array(GLuint glsl_program_num, const std::string &prefix, const std::string &key, const float *values, size_t num_values)
40 GLint location = get_uniform_location(glsl_program_num, prefix, key);
45 glUniform1fv(location, num_values, values);
49 void set_uniform_vec2(GLuint glsl_program_num, const std::string &prefix, const std::string &key, const float *values)
51 GLint location = get_uniform_location(glsl_program_num, prefix, key);
56 glUniform2fv(location, 1, values);
60 void set_uniform_vec3(GLuint glsl_program_num, const std::string &prefix, const std::string &key, const float *values)
62 GLint location = get_uniform_location(glsl_program_num, prefix, key);
67 glUniform3fv(location, 1, values);
71 void set_uniform_vec4_array(GLuint glsl_program_num, const std::string &prefix, const std::string &key, const float *values, size_t num_values)
73 GLint location = get_uniform_location(glsl_program_num, prefix, key);
78 glUniform4fv(location, num_values, values);
82 void set_uniform_mat3(GLuint glsl_program_num, const std::string &prefix, const std::string &key, const Matrix3x3 matrix)
84 GLint location = get_uniform_location(glsl_program_num, prefix, key);
90 // Convert to float (GLSL has no double matrices).
92 for (unsigned i = 0; i < 9; ++i) {
93 matrixf[i] = matrix[i];
96 glUniformMatrix3fv(location, 1, GL_FALSE, matrixf);
100 bool Effect::set_int(const std::string &key, int value)
102 if (params_int.count(key) == 0) {
105 *params_int[key] = value;
109 bool Effect::set_float(const std::string &key, float value)
111 if (params_float.count(key) == 0) {
114 *params_float[key] = value;
118 bool Effect::set_vec2(const std::string &key, const float *values)
120 if (params_vec2.count(key) == 0) {
123 memcpy(params_vec2[key], values, sizeof(float) * 2);
127 bool Effect::set_vec3(const std::string &key, const float *values)
129 if (params_vec3.count(key) == 0) {
132 memcpy(params_vec3[key], values, sizeof(float) * 3);
136 void Effect::register_int(const std::string &key, int *value)
138 assert(params_int.count(key) == 0);
139 params_int[key] = value;
142 void Effect::register_float(const std::string &key, float *value)
144 assert(params_float.count(key) == 0);
145 params_float[key] = value;
148 void Effect::register_vec2(const std::string &key, float *values)
150 assert(params_vec2.count(key) == 0);
151 params_vec2[key] = values;
154 void Effect::register_vec3(const std::string &key, float *values)
156 assert(params_vec3.count(key) == 0);
157 params_vec3[key] = values;
160 void Effect::register_1d_texture(const std::string &key, float *values, size_t size)
162 assert(params_tex_1d.count(key) == 0);
167 tex.needs_update = false;
168 glGenTextures(1, &tex.texture_num);
170 glBindTexture(GL_TEXTURE_1D, tex.texture_num);
172 glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
174 glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
176 glTexImage1D(GL_TEXTURE_1D, 0, GL_LUMINANCE16F_ARB, size, 0, GL_LUMINANCE, GL_FLOAT, values);
179 params_tex_1d[key] = tex;
182 void Effect::invalidate_1d_texture(const std::string &key)
184 assert(params_tex_1d.count(key) != 0);
185 params_tex_1d[key].needs_update = true;
188 // Output convenience uniforms for each parameter.
189 // These will be filled in per-frame.
190 std::string Effect::output_convenience_uniforms() const
192 std::string output = "";
193 for (std::map<std::string, float*>::const_iterator it = params_float.begin();
194 it != params_float.end();
197 sprintf(buf, "uniform float PREFIX(%s);\n", it->first.c_str());
200 for (std::map<std::string, float*>::const_iterator it = params_vec2.begin();
201 it != params_vec2.end();
204 sprintf(buf, "uniform vec2 PREFIX(%s);\n", it->first.c_str());
207 for (std::map<std::string, float*>::const_iterator it = params_vec3.begin();
208 it != params_vec3.end();
211 sprintf(buf, "uniform vec3 PREFIX(%s);\n", it->first.c_str());
214 for (std::map<std::string, Texture1D>::const_iterator it = params_tex_1d.begin();
215 it != params_tex_1d.end();
218 sprintf(buf, "uniform sampler1D PREFIX(%s);\n", it->first.c_str());
224 void Effect::set_gl_state(GLuint glsl_program_num, const std::string& prefix, unsigned *sampler_num)
226 for (std::map<std::string, float*>::const_iterator it = params_float.begin();
227 it != params_float.end();
229 set_uniform_float(glsl_program_num, prefix, it->first, *it->second);
231 for (std::map<std::string, float*>::const_iterator it = params_vec2.begin();
232 it != params_vec2.end();
234 set_uniform_vec2(glsl_program_num, prefix, it->first, it->second);
236 for (std::map<std::string, float*>::const_iterator it = params_vec3.begin();
237 it != params_vec3.end();
239 set_uniform_vec3(glsl_program_num, prefix, it->first, it->second);
242 for (std::map<std::string, Texture1D>::iterator it = params_tex_1d.begin();
243 it != params_tex_1d.end();
245 glActiveTexture(GL_TEXTURE0 + *sampler_num);
247 glBindTexture(GL_TEXTURE_1D, it->second.texture_num);
250 if (it->second.needs_update) {
251 glTexImage1D(GL_TEXTURE_1D, 0, GL_LUMINANCE16F_ARB, it->second.size, 0, GL_LUMINANCE, GL_FLOAT, it->second.values);
253 it->second.needs_update = false;
256 set_uniform_int(glsl_program_num, prefix, it->first, *sampler_num);
261 void Effect::clear_gl_state() {}