2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* particles_editor_plugin.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-08 00:11:42 +02:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
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. */
|
|
|
|
/*************************************************************************/
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "particles_editor_plugin.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "editor/plugins/spatial_editor_plugin.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "io/resource_loader.h"
|
|
|
|
|
|
|
|
void ParticlesEditor::_node_removed(Node *p_node) {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
if (p_node == node) {
|
|
|
|
node = NULL;
|
2014-02-10 02:10:30 +01:00
|
|
|
hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
void ParticlesEditor::_resource_seleted(const String &p_res) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
//print_line("selected resource path: "+p_res);
|
|
|
|
}
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
void ParticlesEditor::_node_selected(const NodePath &p_path) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Node *sel = get_node(p_path);
|
|
|
|
if (!sel)
|
|
|
|
return;
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
VisualInstance *vi = Object::cast_to<VisualInstance>(sel);
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!vi) {
|
|
|
|
|
2016-05-04 03:25:37 +02:00
|
|
|
err_dialog->set_text(TTR("Node does not contain geometry."));
|
2015-04-08 19:02:13 +02:00
|
|
|
err_dialog->popup_centered_minsize();
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
geometry = vi->get_faces(VisualInstance::FACES_SOLID);
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
if (geometry.size() == 0) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-04 03:25:37 +02:00
|
|
|
err_dialog->set_text(TTR("Node does not contain geometry (faces)."));
|
2015-04-08 19:02:13 +02:00
|
|
|
err_dialog->popup_centered_minsize();
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Transform geom_xform = node->get_global_transform().affine_inverse() * vi->get_global_transform();
|
|
|
|
|
|
|
|
int gc = geometry.size();
|
2017-01-07 22:25:37 +01:00
|
|
|
PoolVector<Face3>::Write w = geometry.write();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
for (int i = 0; i < gc; i++) {
|
|
|
|
for (int j = 0; j < 3; j++) {
|
|
|
|
w[i].vertex[j] = geom_xform.xform(w[i].vertex[j]);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-07 22:25:37 +01:00
|
|
|
w = PoolVector<Face3>::Write();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
emission_dialog->popup_centered(Size2(300, 130));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
void ParticlesEditor::_populate() {
|
|
|
|
|
|
|
|
if(!node)
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
if (node->get_particles().is_null())
|
|
|
|
return;
|
|
|
|
|
|
|
|
node->get_particles()->set_instance_count(populate_amount->get_text().to_int());
|
|
|
|
node->populate_parent(populate_rotate_random->get_val(),populate_tilt_random->get_val(),populate_scale_random->get_text().to_double(),populate_scale->get_text().to_double());
|
|
|
|
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ParticlesEditor::_notification(int p_notification) {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
if (p_notification == NOTIFICATION_ENTER_TREE) {
|
|
|
|
options->set_icon(options->get_popup()->get_icon("Particles", "EditorIcons"));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ParticlesEditor::_menu_option(int p_option) {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
switch (p_option) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
case MENU_OPTION_GENERATE_AABB: {
|
2017-04-09 03:38:11 +02:00
|
|
|
generate_aabb->popup_centered_minsize();
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
case MENU_OPTION_CREATE_EMISSION_VOLUME_FROM_MESH: {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
Ref<ParticlesMaterial> material = node->get_process_material();
|
|
|
|
if (material.is_null()) {
|
|
|
|
EditorNode::get_singleton()->show_warning(TTR("A processor material of type 'ParticlesMaterial' is required."));
|
|
|
|
return;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
emission_file_dialog->popup_centered_ratio();
|
|
|
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case MENU_OPTION_CREATE_EMISSION_VOLUME_FROM_NODE: {
|
2017-04-07 04:36:37 +02:00
|
|
|
Ref<ParticlesMaterial> material = node->get_process_material();
|
|
|
|
if (material.is_null()) {
|
|
|
|
EditorNode::get_singleton()->show_warning(TTR("A processor material of type 'ParticlesMaterial' is required."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/*
|
2014-02-10 02:10:30 +01:00
|
|
|
Node *root = get_scene()->get_root_node();
|
|
|
|
ERR_FAIL_COND(!root);
|
2017-08-24 22:58:51 +02:00
|
|
|
EditorNode *en = Object::cast_to<EditorNode>(root);
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_FAIL_COND(!en);
|
|
|
|
Node * node = en->get_edited_scene();
|
|
|
|
*/
|
|
|
|
emission_tree_dialog->popup_centered_ratio();
|
|
|
|
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-09 03:38:11 +02:00
|
|
|
void ParticlesEditor::_generate_aabb() {
|
|
|
|
|
|
|
|
float time = generate_seconds->get_value();
|
|
|
|
|
|
|
|
float running = 0.0;
|
|
|
|
|
|
|
|
EditorProgress ep("gen_aabb", TTR("Generating AABB"), int(time));
|
|
|
|
|
2017-11-17 03:09:00 +01:00
|
|
|
AABB rect;
|
2017-04-09 03:38:11 +02:00
|
|
|
while (running < time) {
|
|
|
|
|
|
|
|
uint64_t ticks = OS::get_singleton()->get_ticks_usec();
|
|
|
|
ep.step("Generating..", int(running), true);
|
|
|
|
OS::get_singleton()->delay_usec(1000);
|
|
|
|
|
2017-11-17 03:09:00 +01:00
|
|
|
AABB capture = node->capture_aabb();
|
|
|
|
if (rect == AABB())
|
2017-04-09 03:38:11 +02:00
|
|
|
rect = capture;
|
|
|
|
else
|
|
|
|
rect.merge_with(capture);
|
|
|
|
|
|
|
|
running += (OS::get_singleton()->get_ticks_usec() - ticks) / 1000000.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
node->set_visibility_aabb(rect);
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ParticlesEditor::edit(Particles *p_particles) {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
node = p_particles;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ParticlesEditor::_generate_emission_points() {
|
|
|
|
|
|
|
|
/// hacer codigo aca
|
2017-04-07 04:36:37 +02:00
|
|
|
PoolVector<float> points;
|
|
|
|
bool use_normals = emission_fill->get_selected() == 1;
|
|
|
|
PoolVector<float> normals;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
if (emission_fill->get_selected() < 2) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
float area_accum = 0;
|
|
|
|
Map<float, int> triangle_area_map;
|
|
|
|
print_line("geometry size: " + itos(geometry.size()));
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
for (int i = 0; i < geometry.size(); i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-14 18:03:38 +01:00
|
|
|
float area = geometry[i].get_area();
|
2017-04-07 04:36:37 +02:00
|
|
|
if (area < CMP_EPSILON)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
2017-04-07 04:36:37 +02:00
|
|
|
triangle_area_map[area_accum] = i;
|
|
|
|
area_accum += area;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
if (!triangle_area_map.size() || area_accum == 0) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-04 03:25:37 +02:00
|
|
|
err_dialog->set_text(TTR("Faces contain no area!"));
|
2015-04-08 19:02:13 +02:00
|
|
|
err_dialog->popup_centered_minsize();
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
int emissor_count = emission_amount->get_value();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
for (int i = 0; i < emissor_count; i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
float areapos = Math::random(0.0f, area_accum);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
Map<float, int>::Element *E = triangle_area_map.find_closest(areapos);
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_FAIL_COND(!E)
|
|
|
|
int index = E->get();
|
2017-04-07 04:36:37 +02:00
|
|
|
ERR_FAIL_INDEX(index, geometry.size());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
// ok FINALLY get face
|
|
|
|
Face3 face = geometry[index];
|
|
|
|
//now compute some position inside the face...
|
|
|
|
|
|
|
|
Vector3 pos = face.get_random_point_inside();
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
points.push_back(pos.x);
|
|
|
|
points.push_back(pos.y);
|
|
|
|
points.push_back(pos.z);
|
|
|
|
|
|
|
|
if (use_normals) {
|
|
|
|
Vector3 normal = face.get_plane().normal;
|
|
|
|
normals.push_back(normal.x);
|
|
|
|
normals.push_back(normal.y);
|
|
|
|
normals.push_back(normal.z);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
|
|
|
int gcount = geometry.size();
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
if (gcount == 0) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-19 00:08:12 +02:00
|
|
|
err_dialog->set_text(TTR("No faces!"));
|
2015-04-08 19:02:13 +02:00
|
|
|
err_dialog->popup_centered_minsize();
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-07 22:25:37 +01:00
|
|
|
PoolVector<Face3>::Read r = geometry.read();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-11-17 03:09:00 +01:00
|
|
|
AABB aabb;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
for (int i = 0; i < gcount; i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
for (int j = 0; j < 3; j++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
if (i == 0 && j == 0)
|
2017-06-06 20:33:51 +02:00
|
|
|
aabb.position = r[i].vertex[j];
|
2014-02-10 02:10:30 +01:00
|
|
|
else
|
|
|
|
aabb.expand_to(r[i].vertex[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
int emissor_count = emission_amount->get_value();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
for (int i = 0; i < emissor_count; i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
int attempts = 5;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
for (int j = 0; j < attempts; j++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Vector3 dir;
|
2017-04-07 04:36:37 +02:00
|
|
|
dir[Math::rand() % 3] = 1.0;
|
2017-08-21 21:15:36 +02:00
|
|
|
Vector3 ofs = (Vector3(1, 1, 1) - dir) * Vector3(Math::randf(), Math::randf(), Math::randf()) * aabb.size + aabb.position;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Vector3 ofsv = ofs + aabb.size * dir;
|
|
|
|
|
|
|
|
//space it a little
|
|
|
|
ofs -= dir;
|
|
|
|
ofsv += dir;
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
float max = -1e7, min = 1e7;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
for (int k = 0; k < gcount; k++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
const Face3 &f3 = r[k];
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Vector3 res;
|
2017-04-07 04:36:37 +02:00
|
|
|
if (f3.intersects_segment(ofs, ofsv, &res)) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
res -= ofs;
|
2014-02-10 02:10:30 +01:00
|
|
|
float d = dir.dot(res);
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
if (d < min)
|
|
|
|
min = d;
|
|
|
|
if (d > max)
|
|
|
|
max = d;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
if (max < min)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue; //lost attempt
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
float val = min + (max - min) * Math::randf();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Vector3 point = ofs + dir * val;
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
points.push_back(point.x);
|
|
|
|
points.push_back(point.y);
|
|
|
|
points.push_back(point.z);
|
2014-02-10 02:10:30 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
int point_count = points.size() / 3;
|
|
|
|
|
|
|
|
int w = 2048;
|
|
|
|
int h = (point_count / 2048) + 1;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
PoolVector<uint8_t> point_img;
|
|
|
|
point_img.resize(w * h * 3 * sizeof(float));
|
|
|
|
|
|
|
|
{
|
|
|
|
PoolVector<uint8_t>::Write iw = point_img.write();
|
|
|
|
zeromem(iw.ptr(), w * h * 3 * sizeof(float));
|
|
|
|
PoolVector<float>::Read r = points.read();
|
|
|
|
copymem(iw.ptr(), r.ptr(), point_count * sizeof(float) * 3);
|
|
|
|
}
|
|
|
|
|
2017-05-17 12:36:47 +02:00
|
|
|
Ref<Image> image = memnew(Image(w, h, false, Image::FORMAT_RGBF, point_img));
|
2017-04-07 04:36:37 +02:00
|
|
|
|
|
|
|
Ref<ImageTexture> tex;
|
|
|
|
tex.instance();
|
|
|
|
tex->create_from_image(image, Texture::FLAG_FILTER);
|
|
|
|
|
|
|
|
Ref<ParticlesMaterial> material = node->get_process_material();
|
|
|
|
ERR_FAIL_COND(material.is_null());
|
|
|
|
|
|
|
|
if (use_normals) {
|
|
|
|
|
|
|
|
material->set_emission_shape(ParticlesMaterial::EMISSION_SHAPE_DIRECTED_POINTS);
|
|
|
|
material->set_emission_point_count(point_count);
|
|
|
|
material->set_emission_point_texture(tex);
|
|
|
|
|
|
|
|
PoolVector<uint8_t> point_img2;
|
|
|
|
point_img2.resize(w * h * 3 * sizeof(float));
|
|
|
|
|
|
|
|
{
|
|
|
|
PoolVector<uint8_t>::Write iw = point_img2.write();
|
|
|
|
zeromem(iw.ptr(), w * h * 3 * sizeof(float));
|
|
|
|
PoolVector<float>::Read r = normals.read();
|
|
|
|
copymem(iw.ptr(), r.ptr(), point_count * sizeof(float) * 3);
|
|
|
|
}
|
|
|
|
|
2017-05-17 12:36:47 +02:00
|
|
|
Ref<Image> image2 = memnew(Image(w, h, false, Image::FORMAT_RGBF, point_img2));
|
2017-04-07 04:36:37 +02:00
|
|
|
|
|
|
|
Ref<ImageTexture> tex2;
|
|
|
|
tex2.instance();
|
|
|
|
tex2->create_from_image(image2, Texture::FLAG_FILTER);
|
|
|
|
|
|
|
|
material->set_emission_normal_texture(tex2);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
material->set_emission_shape(ParticlesMaterial::EMISSION_SHAPE_POINTS);
|
|
|
|
material->set_emission_point_count(point_count);
|
|
|
|
material->set_emission_point_texture(tex);
|
|
|
|
}
|
|
|
|
|
|
|
|
//print_line("point count: "+itos(points.size()));
|
|
|
|
//node->set_emission_points(points);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ParticlesEditor::_bind_methods() {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
ClassDB::bind_method("_menu_option", &ParticlesEditor::_menu_option);
|
|
|
|
ClassDB::bind_method("_resource_seleted", &ParticlesEditor::_resource_seleted);
|
|
|
|
ClassDB::bind_method("_node_selected", &ParticlesEditor::_node_selected);
|
|
|
|
ClassDB::bind_method("_generate_emission_points", &ParticlesEditor::_generate_emission_points);
|
2017-04-09 03:38:11 +02:00
|
|
|
ClassDB::bind_method("_generate_aabb", &ParticlesEditor::_generate_aabb);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
//ClassDB::bind_method("_populate",&ParticlesEditor::_populate);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ParticlesEditor::ParticlesEditor() {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
particles_editor_hb = memnew(HBoxContainer);
|
2014-07-10 04:55:03 +02:00
|
|
|
SpatialEditor::get_singleton()->add_control_to_menu_panel(particles_editor_hb);
|
2017-04-07 04:36:37 +02:00
|
|
|
options = memnew(MenuButton);
|
2014-07-10 04:55:03 +02:00
|
|
|
particles_editor_hb->add_child(options);
|
|
|
|
particles_editor_hb->hide();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-08-23 22:25:14 +02:00
|
|
|
options->set_text(TTR("Particles"));
|
2017-04-07 04:36:37 +02:00
|
|
|
options->get_popup()->add_item(TTR("Generate AABB"), MENU_OPTION_GENERATE_AABB);
|
2014-02-10 02:10:30 +01:00
|
|
|
options->get_popup()->add_separator();
|
2017-04-07 04:36:37 +02:00
|
|
|
options->get_popup()->add_item(TTR("Create Emission Points From Mesh"), MENU_OPTION_CREATE_EMISSION_VOLUME_FROM_MESH);
|
|
|
|
options->get_popup()->add_item(TTR("Create Emission Points From Node"), MENU_OPTION_CREATE_EMISSION_VOLUME_FROM_NODE);
|
|
|
|
// options->get_popup()->add_item(TTR("Clear Emitter"), MENU_OPTION_CLEAR_EMISSION_VOLUME);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
options->get_popup()->connect("id_pressed", this, "_menu_option");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
emission_dialog = memnew(ConfirmationDialog);
|
2016-05-04 03:25:37 +02:00
|
|
|
emission_dialog->set_title(TTR("Create Emitter"));
|
2014-02-10 02:10:30 +01:00
|
|
|
add_child(emission_dialog);
|
2017-04-07 04:36:37 +02:00
|
|
|
VBoxContainer *emd_vb = memnew(VBoxContainer);
|
|
|
|
emission_dialog->add_child(emd_vb);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
emission_amount = memnew(SpinBox);
|
2014-02-10 02:10:30 +01:00
|
|
|
emission_amount->set_min(1);
|
2017-04-07 04:36:37 +02:00
|
|
|
emission_amount->set_max(100000);
|
|
|
|
emission_amount->set_value(512);
|
|
|
|
emd_vb->add_margin_child(TTR("Emission Points:"), emission_amount);
|
|
|
|
|
|
|
|
emission_fill = memnew(OptionButton);
|
|
|
|
emission_fill->add_item(TTR("Surface Points"));
|
|
|
|
emission_fill->add_item(TTR("Surface Points+Normal (Directed)"));
|
2016-05-04 03:25:37 +02:00
|
|
|
emission_fill->add_item(TTR("Volume"));
|
2017-04-07 04:36:37 +02:00
|
|
|
emd_vb->add_margin_child(TTR("Emission Source: "), emission_fill);
|
|
|
|
|
|
|
|
emission_dialog->get_ok()->set_text(TTR("Create"));
|
|
|
|
emission_dialog->connect("confirmed", this, "_generate_emission_points");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
err_dialog = memnew(ConfirmationDialog);
|
2014-02-10 02:10:30 +01:00
|
|
|
//err_dialog->get_cancel()->hide();
|
|
|
|
add_child(err_dialog);
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
emission_file_dialog = memnew(EditorFileDialog);
|
2014-02-10 02:10:30 +01:00
|
|
|
add_child(emission_file_dialog);
|
2017-04-07 04:36:37 +02:00
|
|
|
emission_file_dialog->connect("file_selected", this, "_resource_seleted");
|
|
|
|
emission_tree_dialog = memnew(SceneTreeDialog);
|
2014-02-10 02:10:30 +01:00
|
|
|
add_child(emission_tree_dialog);
|
2017-04-07 04:36:37 +02:00
|
|
|
emission_tree_dialog->connect("selected", this, "_node_selected");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
List<String> extensions;
|
2017-04-07 04:36:37 +02:00
|
|
|
ResourceLoader::get_recognized_extensions_for_type("Mesh", &extensions);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
emission_file_dialog->clear_filters();
|
2017-04-07 04:36:37 +02:00
|
|
|
for (int i = 0; i < extensions.size(); i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
emission_file_dialog->add_filter("*." + extensions[i] + " ; " + extensions[i].to_upper());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2015-06-06 14:44:38 +02:00
|
|
|
emission_file_dialog->set_mode(EditorFileDialog::MODE_OPEN_FILE);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 03:38:11 +02:00
|
|
|
generate_aabb = memnew(ConfirmationDialog);
|
|
|
|
generate_aabb->set_title(TTR("Generate Visibility AABB"));
|
|
|
|
VBoxContainer *genvb = memnew(VBoxContainer);
|
|
|
|
generate_aabb->add_child(genvb);
|
|
|
|
generate_seconds = memnew(SpinBox);
|
|
|
|
genvb->add_margin_child(TTR("Generation Time (sec):"), generate_seconds);
|
|
|
|
generate_seconds->set_min(0.1);
|
|
|
|
generate_seconds->set_max(25);
|
|
|
|
generate_seconds->set_value(2);
|
|
|
|
|
|
|
|
add_child(generate_aabb);
|
|
|
|
|
|
|
|
generate_aabb->connect("confirmed", this, "_generate_aabb");
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
//options->set_anchor(MARGIN_LEFT,Control::ANCHOR_END);
|
|
|
|
//options->set_anchor(MARGIN_RIGHT,Control::ANCHOR_END);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ParticlesEditorPlugin::edit(Object *p_object) {
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
particles_editor->edit(Object::cast_to<Particles>(p_object));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ParticlesEditorPlugin::handles(Object *p_object) const {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
return p_object->is_class("Particles");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ParticlesEditorPlugin::make_visible(bool p_visible) {
|
|
|
|
|
|
|
|
if (p_visible) {
|
|
|
|
particles_editor->show();
|
2014-07-10 04:55:03 +02:00
|
|
|
particles_editor->particles_editor_hb->show();
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
2014-07-10 04:55:03 +02:00
|
|
|
particles_editor->particles_editor_hb->hide();
|
2014-02-10 02:10:30 +01:00
|
|
|
particles_editor->hide();
|
|
|
|
particles_editor->edit(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ParticlesEditorPlugin::ParticlesEditorPlugin(EditorNode *p_node) {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
editor = p_node;
|
|
|
|
particles_editor = memnew(ParticlesEditor);
|
2014-02-10 02:10:30 +01:00
|
|
|
editor->get_viewport()->add_child(particles_editor);
|
|
|
|
|
|
|
|
particles_editor->hide();
|
|
|
|
}
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
ParticlesEditorPlugin::~ParticlesEditorPlugin() {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|