2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* particles_editor_plugin.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* 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
|
|
|
/*************************************************************************/
|
2019-01-01 12:53:14 +01:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef PARTICLES_EDITOR_PLUGIN_H
|
|
|
|
#define PARTICLES_EDITOR_PLUGIN_H
|
|
|
|
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/editor_node.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "editor/editor_plugin.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene/3d/particles.h"
|
|
|
|
#include "scene/gui/spin_box.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
2017-04-07 04:36:37 +02:00
|
|
|
|
2018-07-07 01:21:13 +02:00
|
|
|
class ParticlesEditorBase : public Control {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-07 01:21:13 +02:00
|
|
|
GDCLASS(ParticlesEditorBase, Control)
|
2018-09-04 11:30:04 +02:00
|
|
|
|
2018-07-07 01:21:13 +02:00
|
|
|
protected:
|
|
|
|
Spatial *base_node;
|
2014-02-10 02:10:30 +01:00
|
|
|
Panel *panel;
|
2014-07-10 04:55:03 +02:00
|
|
|
MenuButton *options;
|
|
|
|
HBoxContainer *particles_editor_hb;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-06-06 14:44:38 +02:00
|
|
|
EditorFileDialog *emission_file_dialog;
|
2014-02-10 02:10:30 +01:00
|
|
|
SceneTreeDialog *emission_tree_dialog;
|
|
|
|
|
|
|
|
ConfirmationDialog *err_dialog;
|
|
|
|
|
|
|
|
ConfirmationDialog *emission_dialog;
|
|
|
|
SpinBox *emission_amount;
|
|
|
|
OptionButton *emission_fill;
|
|
|
|
|
2018-07-07 01:21:13 +02:00
|
|
|
PoolVector<Face3> geometry;
|
|
|
|
|
|
|
|
bool _generate(PoolVector<Vector3> &points, PoolVector<Vector3> &normals);
|
|
|
|
virtual void _generate_emission_points() = 0;
|
|
|
|
void _node_selected(const NodePath &p_path);
|
|
|
|
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
ParticlesEditorBase();
|
|
|
|
};
|
|
|
|
|
|
|
|
class ParticlesEditor : public ParticlesEditorBase {
|
|
|
|
|
|
|
|
GDCLASS(ParticlesEditor, ParticlesEditorBase);
|
|
|
|
|
2017-04-09 03:38:11 +02:00
|
|
|
ConfirmationDialog *generate_aabb;
|
|
|
|
SpinBox *generate_seconds;
|
2018-07-07 01:21:13 +02:00
|
|
|
Particles *node;
|
2017-04-09 03:38:11 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
enum Menu {
|
|
|
|
|
|
|
|
MENU_OPTION_GENERATE_AABB,
|
|
|
|
MENU_OPTION_CREATE_EMISSION_VOLUME_FROM_NODE,
|
|
|
|
MENU_OPTION_CREATE_EMISSION_VOLUME_FROM_MESH,
|
|
|
|
MENU_OPTION_CLEAR_EMISSION_VOLUME,
|
2018-07-07 14:04:22 +02:00
|
|
|
MENU_OPTION_CONVERT_TO_CPU_PARTICLES,
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2017-04-09 03:38:11 +02:00
|
|
|
void _generate_aabb();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _menu_option(int);
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
friend class ParticlesEditorPlugin;
|
2014-07-10 04:55:03 +02:00
|
|
|
|
2018-07-07 01:21:13 +02:00
|
|
|
virtual void _generate_emission_points();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
|
|
|
void _notification(int p_notification);
|
|
|
|
void _node_removed(Node *p_node);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
public:
|
2014-02-10 02:10:30 +01:00
|
|
|
void edit(Particles *p_particles);
|
|
|
|
ParticlesEditor();
|
|
|
|
};
|
|
|
|
|
|
|
|
class ParticlesEditorPlugin : public EditorPlugin {
|
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
GDCLASS(ParticlesEditorPlugin, EditorPlugin);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ParticlesEditor *particles_editor;
|
|
|
|
EditorNode *editor;
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String get_name() const { return "Particles"; }
|
|
|
|
bool has_main_screen() const { return false; }
|
2017-08-12 18:52:50 +02:00
|
|
|
virtual void edit(Object *p_object);
|
|
|
|
virtual bool handles(Object *p_object) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual void make_visible(bool p_visible);
|
|
|
|
|
|
|
|
ParticlesEditorPlugin(EditorNode *p_node);
|
|
|
|
~ParticlesEditorPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PARTICLES_EDITOR_PLUGIN_H
|