2023-01-05 13:25:55 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* gpu_particles_2d_editor_plugin.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
#ifndef GPU_PARTICLES_2D_EDITOR_PLUGIN_H
|
|
|
|
#define GPU_PARTICLES_2D_EDITOR_PLUGIN_H
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/editor_plugin.h"
|
2015-04-18 19:38:54 +02:00
|
|
|
#include "scene/2d/collision_polygon_2d.h"
|
2020-03-27 08:44:44 +01:00
|
|
|
#include "scene/2d/gpu_particles_2d.h"
|
2016-03-14 20:05:20 +01:00
|
|
|
#include "scene/gui/box_container.h"
|
2022-02-12 02:46:22 +01:00
|
|
|
#include "scene/gui/spin_box.h"
|
|
|
|
|
2022-11-11 20:12:48 +01:00
|
|
|
class CheckBox;
|
|
|
|
class ConfirmationDialog;
|
2022-02-12 02:46:22 +01:00
|
|
|
class EditorFileDialog;
|
2022-11-11 20:12:48 +01:00
|
|
|
class MenuButton;
|
|
|
|
class OptionButton;
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2020-03-27 08:44:44 +01:00
|
|
|
class GPUParticles2DEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(GPUParticles2DEditorPlugin, EditorPlugin);
|
2015-04-18 19:38:54 +02:00
|
|
|
|
|
|
|
enum {
|
2017-06-21 21:25:45 +02:00
|
|
|
MENU_GENERATE_VISIBILITY_RECT,
|
2015-04-18 19:38:54 +02:00
|
|
|
MENU_LOAD_EMISSION_MASK,
|
2018-09-27 13:05:57 +02:00
|
|
|
MENU_CLEAR_EMISSION_MASK,
|
2019-06-22 07:33:11 +02:00
|
|
|
MENU_OPTION_CONVERT_TO_CPU_PARTICLES,
|
|
|
|
MENU_RESTART
|
2015-04-18 19:38:54 +02:00
|
|
|
};
|
|
|
|
|
2017-06-21 21:25:45 +02:00
|
|
|
enum EmissionMode {
|
|
|
|
EMISSION_MODE_SOLID,
|
|
|
|
EMISSION_MODE_BORDER,
|
|
|
|
EMISSION_MODE_BORDER_DIRECTED
|
|
|
|
};
|
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
GPUParticles2D *particles = nullptr;
|
2021-11-17 10:58:52 +01:00
|
|
|
List<GPUParticles2D *> selected_particles;
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
EditorFileDialog *file = nullptr;
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
HBoxContainer *toolbar = nullptr;
|
|
|
|
MenuButton *menu = nullptr;
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
SpinBox *epoints = nullptr;
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
ConfirmationDialog *generate_visibility_rect = nullptr;
|
|
|
|
SpinBox *generate_seconds = nullptr;
|
2017-06-21 21:25:45 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
ConfirmationDialog *emission_mask = nullptr;
|
|
|
|
OptionButton *emission_mask_mode = nullptr;
|
|
|
|
CheckBox *emission_colors = nullptr;
|
2017-06-21 21:25:45 +02:00
|
|
|
|
|
|
|
String source_emission_file;
|
|
|
|
|
2015-04-18 19:38:54 +02:00
|
|
|
void _file_selected(const String &p_file);
|
|
|
|
void _menu_callback(int p_idx);
|
2017-06-21 21:25:45 +02:00
|
|
|
void _generate_visibility_rect();
|
|
|
|
void _generate_emission_mask();
|
2021-11-17 10:58:52 +01:00
|
|
|
void _selection_changed();
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2015-04-18 19:38:54 +02:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual String get_name() const override { return "GPUParticles2D"; }
|
|
|
|
bool has_main_screen() const override { return false; }
|
|
|
|
virtual void edit(Object *p_object) override;
|
|
|
|
virtual bool handles(Object *p_object) const override;
|
|
|
|
virtual void make_visible(bool p_visible) override;
|
2015-04-18 19:38:54 +02:00
|
|
|
|
2022-01-27 10:36:51 +01:00
|
|
|
GPUParticles2DEditorPlugin();
|
2020-03-27 08:44:44 +01:00
|
|
|
~GPUParticles2DEditorPlugin();
|
2015-04-18 19:38:54 +02:00
|
|
|
};
|
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
#endif // GPU_PARTICLES_2D_EDITOR_PLUGIN_H
|