2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* shader.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "shader.h"
|
|
|
|
#include "os/file_access.h"
|
|
|
|
#include "scene/scene_string_names.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "servers/visual_server.h"
|
|
|
|
#include "texture.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Shader::Mode Shader::get_mode() const {
|
|
|
|
|
2015-06-07 03:06:58 +02:00
|
|
|
return mode;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void Shader::set_code(const String &p_code) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
VisualServer::get_singleton()->shader_set_code(shader, p_code);
|
|
|
|
params_cache_dirty = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
emit_signal(SceneStringNames::get_singleton()->changed);
|
|
|
|
}
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
String Shader::get_code() const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
return VisualServer::get_singleton()->shader_get_code(shader);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Shader::get_param_list(List<PropertyInfo> *p_params) const {
|
|
|
|
|
|
|
|
List<PropertyInfo> local;
|
2017-03-05 16:44:50 +01:00
|
|
|
VisualServer::get_singleton()->shader_get_param_list(shader, &local);
|
2014-02-10 02:10:30 +01:00
|
|
|
params_cache.clear();
|
2017-03-05 16:44:50 +01:00
|
|
|
params_cache_dirty = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (List<PropertyInfo>::Element *E = local.front(); E; E = E->next()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
PropertyInfo pi = E->get();
|
|
|
|
pi.name = "shader_param/" + pi.name;
|
|
|
|
params_cache[pi.name] = E->get().name;
|
2014-02-10 02:10:30 +01:00
|
|
|
if (p_params) {
|
|
|
|
|
|
|
|
//small little hack
|
2017-03-05 16:44:50 +01:00
|
|
|
if (pi.type == Variant::_RID)
|
|
|
|
pi.type = Variant::OBJECT;
|
2014-02-10 02:10:30 +01:00
|
|
|
p_params->push_back(pi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RID Shader::get_rid() const {
|
|
|
|
|
|
|
|
return shader;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void Shader::set_default_texture_param(const StringName &p_param, const Ref<Texture> &p_texture) {
|
2014-12-21 15:42:44 +01:00
|
|
|
|
2015-01-07 05:45:46 +01:00
|
|
|
if (p_texture.is_valid()) {
|
2017-03-05 16:44:50 +01:00
|
|
|
default_textures[p_param] = p_texture;
|
|
|
|
VS::get_singleton()->shader_set_default_texture_param(shader, p_param, p_texture->get_rid());
|
2015-01-07 05:45:46 +01:00
|
|
|
} else {
|
2014-12-21 15:42:44 +01:00
|
|
|
default_textures.erase(p_param);
|
2017-03-05 16:44:50 +01:00
|
|
|
VS::get_singleton()->shader_set_default_texture_param(shader, p_param, RID());
|
2015-01-07 05:45:46 +01:00
|
|
|
}
|
2014-12-21 15:42:44 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<Texture> Shader::get_default_texture_param(const StringName &p_param) const {
|
2014-12-21 15:42:44 +01:00
|
|
|
|
|
|
|
if (default_textures.has(p_param))
|
|
|
|
return default_textures[p_param];
|
|
|
|
else
|
|
|
|
return Ref<Texture>();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void Shader::get_default_texture_param_list(List<StringName> *r_textures) const {
|
2014-12-21 15:42:44 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (const Map<StringName, Ref<Texture> >::Element *E = default_textures.front(); E; E = E->next()) {
|
2014-12-21 15:42:44 +01:00
|
|
|
|
|
|
|
r_textures->push_back(E->key());
|
|
|
|
}
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
bool Shader::has_param(const StringName &p_param) const {
|
2014-12-21 15:42:44 +01:00
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
return params_cache.has(p_param);
|
|
|
|
}
|
2014-12-21 15:42:44 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void Shader::_bind_methods() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("get_mode"), &Shader::get_mode);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_code", "code"), &Shader::set_code);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_code"), &Shader::get_code);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_default_texture_param", "param", "texture:Texture"), &Shader::set_default_texture_param);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_default_texture_param:Texture", "param"), &Shader::get_default_texture_param);
|
2014-12-21 15:42:44 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("has_param", "name"), &Shader::has_param);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
//ClassDB::bind_method(D_METHOD("get_param_list"),&Shader::get_fragment_code);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::STRING, "code", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR), "set_code", "get_code");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
BIND_CONSTANT(MODE_SPATIAL);
|
|
|
|
BIND_CONSTANT(MODE_CANVAS_ITEM);
|
|
|
|
BIND_CONSTANT(MODE_PARTICLES);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2015-01-03 20:52:37 +01:00
|
|
|
Shader::Shader(Mode p_mode) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
mode = p_mode;
|
2015-01-03 20:52:37 +01:00
|
|
|
shader = VisualServer::get_singleton()->shader_create(VS::ShaderMode(p_mode));
|
2017-03-05 16:44:50 +01:00
|
|
|
params_cache_dirty = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Shader::~Shader() {
|
|
|
|
|
|
|
|
VisualServer::get_singleton()->free(shader);
|
|
|
|
}
|