2017-01-16 08:04:19 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* material_editor_plugin.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2017-01-16 08:04:19 +01:00
|
|
|
/*************************************************************************/
|
2018-01-01 14:40:08 +01:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2017-01-16 08:04:19 +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. */
|
|
|
|
/*************************************************************************/
|
2017-08-26 17:46:49 +02:00
|
|
|
|
2016-05-23 22:10:26 +02:00
|
|
|
#include "material_editor_plugin.h"
|
|
|
|
|
2018-09-04 11:30:04 +02:00
|
|
|
#include "scene/resources/particles_material.h"
|
2017-09-22 14:20:28 +02:00
|
|
|
|
|
|
|
String SpatialMaterialConversionPlugin::converts_to() const {
|
|
|
|
|
|
|
|
return "ShaderMaterial";
|
|
|
|
}
|
|
|
|
bool SpatialMaterialConversionPlugin::handles(const Ref<Resource> &p_resource) const {
|
|
|
|
|
|
|
|
Ref<SpatialMaterial> mat = p_resource;
|
|
|
|
return mat.is_valid();
|
|
|
|
}
|
2018-08-26 12:25:41 +02:00
|
|
|
Ref<Resource> SpatialMaterialConversionPlugin::convert(const Ref<Resource> &p_resource) const {
|
2017-09-22 14:20:28 +02:00
|
|
|
|
|
|
|
Ref<SpatialMaterial> mat = p_resource;
|
|
|
|
ERR_FAIL_COND_V(!mat.is_valid(), Ref<Resource>());
|
|
|
|
|
|
|
|
Ref<ShaderMaterial> smat;
|
|
|
|
smat.instance();
|
|
|
|
|
|
|
|
Ref<Shader> shader;
|
|
|
|
shader.instance();
|
|
|
|
|
|
|
|
String code = VS::get_singleton()->shader_get_code(mat->get_shader_rid());
|
|
|
|
|
|
|
|
shader->set_code(code);
|
|
|
|
|
|
|
|
smat->set_shader(shader);
|
|
|
|
|
|
|
|
List<PropertyInfo> params;
|
|
|
|
VS::get_singleton()->shader_get_param_list(mat->get_shader_rid(), ¶ms);
|
|
|
|
|
|
|
|
for (List<PropertyInfo>::Element *E = params.front(); E; E = E->next()) {
|
2017-10-16 11:14:39 +02:00
|
|
|
|
|
|
|
// Texture parameter has to be treated specially since SpatialMaterial saved it
|
|
|
|
// as RID but ShaderMaterial needs Texture itself
|
|
|
|
Ref<Texture> texture = mat->get_texture_by_name(E->get().name);
|
|
|
|
if (texture.is_valid()) {
|
|
|
|
smat->set_shader_param(E->get().name, texture);
|
|
|
|
} else {
|
|
|
|
Variant value = VS::get_singleton()->material_get_param(mat->get_rid(), E->get().name);
|
|
|
|
smat->set_shader_param(E->get().name, value);
|
|
|
|
}
|
2017-09-22 14:20:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
smat->set_render_priority(mat->get_render_priority());
|
|
|
|
return smat;
|
|
|
|
}
|
2017-10-12 13:12:50 +02:00
|
|
|
|
|
|
|
String ParticlesMaterialConversionPlugin::converts_to() const {
|
|
|
|
|
|
|
|
return "ShaderMaterial";
|
|
|
|
}
|
|
|
|
bool ParticlesMaterialConversionPlugin::handles(const Ref<Resource> &p_resource) const {
|
|
|
|
|
|
|
|
Ref<ParticlesMaterial> mat = p_resource;
|
|
|
|
return mat.is_valid();
|
|
|
|
}
|
2018-08-26 12:25:41 +02:00
|
|
|
Ref<Resource> ParticlesMaterialConversionPlugin::convert(const Ref<Resource> &p_resource) const {
|
2017-10-12 13:12:50 +02:00
|
|
|
|
|
|
|
Ref<ParticlesMaterial> mat = p_resource;
|
|
|
|
ERR_FAIL_COND_V(!mat.is_valid(), Ref<Resource>());
|
|
|
|
|
|
|
|
Ref<ShaderMaterial> smat;
|
|
|
|
smat.instance();
|
|
|
|
|
|
|
|
Ref<Shader> shader;
|
|
|
|
shader.instance();
|
|
|
|
|
|
|
|
String code = VS::get_singleton()->shader_get_code(mat->get_shader_rid());
|
|
|
|
|
|
|
|
shader->set_code(code);
|
|
|
|
|
|
|
|
smat->set_shader(shader);
|
|
|
|
|
|
|
|
List<PropertyInfo> params;
|
|
|
|
VS::get_singleton()->shader_get_param_list(mat->get_shader_rid(), ¶ms);
|
|
|
|
|
|
|
|
for (List<PropertyInfo>::Element *E = params.front(); E; E = E->next()) {
|
|
|
|
Variant value = VS::get_singleton()->material_get_param(mat->get_rid(), E->get().name);
|
|
|
|
smat->set_shader_param(E->get().name, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
smat->set_render_priority(mat->get_render_priority());
|
|
|
|
return smat;
|
|
|
|
}
|
2017-11-14 19:44:51 +01:00
|
|
|
|
|
|
|
String CanvasItemMaterialConversionPlugin::converts_to() const {
|
|
|
|
|
|
|
|
return "ShaderMaterial";
|
|
|
|
}
|
|
|
|
bool CanvasItemMaterialConversionPlugin::handles(const Ref<Resource> &p_resource) const {
|
|
|
|
|
|
|
|
Ref<CanvasItemMaterial> mat = p_resource;
|
|
|
|
return mat.is_valid();
|
|
|
|
}
|
2018-08-26 12:25:41 +02:00
|
|
|
Ref<Resource> CanvasItemMaterialConversionPlugin::convert(const Ref<Resource> &p_resource) const {
|
2017-11-14 19:44:51 +01:00
|
|
|
|
|
|
|
Ref<CanvasItemMaterial> mat = p_resource;
|
|
|
|
ERR_FAIL_COND_V(!mat.is_valid(), Ref<Resource>());
|
|
|
|
|
|
|
|
Ref<ShaderMaterial> smat;
|
|
|
|
smat.instance();
|
|
|
|
|
|
|
|
Ref<Shader> shader;
|
|
|
|
shader.instance();
|
|
|
|
|
|
|
|
String code = VS::get_singleton()->shader_get_code(mat->get_shader_rid());
|
|
|
|
|
|
|
|
shader->set_code(code);
|
|
|
|
|
|
|
|
smat->set_shader(shader);
|
|
|
|
|
|
|
|
List<PropertyInfo> params;
|
|
|
|
VS::get_singleton()->shader_get_param_list(mat->get_shader_rid(), ¶ms);
|
|
|
|
|
|
|
|
for (List<PropertyInfo>::Element *E = params.front(); E; E = E->next()) {
|
|
|
|
Variant value = VS::get_singleton()->material_get_param(mat->get_rid(), E->get().name);
|
|
|
|
smat->set_shader_param(E->get().name, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
smat->set_render_priority(mat->get_render_priority());
|
|
|
|
return smat;
|
|
|
|
}
|