2023-01-05 13:25:55 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* texture_region_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. */
|
|
|
|
/**************************************************************************/
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2016-06-03 22:04:44 +02:00
|
|
|
#ifndef TEXTURE_REGION_EDITOR_PLUGIN_H
|
|
|
|
#define TEXTURE_REGION_EDITOR_PLUGIN_H
|
2015-09-28 05:06:06 +02:00
|
|
|
|
|
|
|
#include "canvas_item_editor_plugin.h"
|
2022-11-11 20:12:48 +01:00
|
|
|
#include "editor/editor_inspector.h"
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/editor_plugin.h"
|
2020-03-26 22:49:16 +01:00
|
|
|
#include "scene/2d/sprite_2d.h"
|
2019-01-21 19:52:57 +01:00
|
|
|
#include "scene/3d/sprite_3d.h"
|
2022-11-19 12:45:49 +01:00
|
|
|
#include "scene/gui/dialogs.h"
|
2017-10-24 07:59:04 +02:00
|
|
|
#include "scene/gui/nine_patch_rect.h"
|
2016-06-04 18:40:53 +02:00
|
|
|
#include "scene/resources/style_box.h"
|
2016-06-10 12:31:38 +02:00
|
|
|
#include "scene/resources/texture.h"
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2022-01-19 19:59:12 +01:00
|
|
|
class ViewPanner;
|
2022-11-11 20:12:48 +01:00
|
|
|
class OptionButton;
|
2022-01-19 19:59:12 +01:00
|
|
|
|
2022-05-24 00:35:01 +02:00
|
|
|
class TextureRegionEditor : public AcceptDialog {
|
|
|
|
GDCLASS(TextureRegionEditor, AcceptDialog);
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2016-06-14 04:54:58 +02:00
|
|
|
enum SnapMode {
|
|
|
|
SNAP_NONE,
|
|
|
|
SNAP_PIXEL,
|
|
|
|
SNAP_GRID,
|
|
|
|
SNAP_AUTOSLICE
|
|
|
|
};
|
|
|
|
|
2016-06-03 22:04:44 +02:00
|
|
|
friend class TextureRegionEditorPlugin;
|
2022-04-04 15:06:57 +02:00
|
|
|
OptionButton *snap_mode_button = nullptr;
|
|
|
|
Button *zoom_in = nullptr;
|
|
|
|
Button *zoom_reset = nullptr;
|
|
|
|
Button *zoom_out = nullptr;
|
|
|
|
HBoxContainer *hb_grid = nullptr; //For showing/hiding the grid controls when changing the SnapMode
|
|
|
|
SpinBox *sb_step_y = nullptr;
|
|
|
|
SpinBox *sb_step_x = nullptr;
|
|
|
|
SpinBox *sb_off_y = nullptr;
|
|
|
|
SpinBox *sb_off_x = nullptr;
|
|
|
|
SpinBox *sb_sep_y = nullptr;
|
|
|
|
SpinBox *sb_sep_x = nullptr;
|
|
|
|
Panel *edit_draw = nullptr;
|
|
|
|
|
|
|
|
VScrollBar *vscroll = nullptr;
|
|
|
|
HScrollBar *hscroll = nullptr;
|
|
|
|
|
2015-09-28 05:06:06 +02:00
|
|
|
Vector2 draw_ofs;
|
2022-05-26 03:59:16 +02:00
|
|
|
float draw_zoom = 0.0;
|
|
|
|
bool updating_scroll = false;
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2022-05-26 03:59:16 +02:00
|
|
|
int snap_mode = 0;
|
2015-09-28 05:06:06 +02:00
|
|
|
Vector2 snap_offset;
|
|
|
|
Vector2 snap_step;
|
2016-06-14 04:54:58 +02:00
|
|
|
Vector2 snap_separation;
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
Sprite2D *node_sprite_2d = nullptr;
|
|
|
|
Sprite3D *node_sprite_3d = nullptr;
|
|
|
|
NinePatchRect *node_ninepatch = nullptr;
|
2016-06-20 03:16:41 +02:00
|
|
|
Ref<StyleBoxTexture> obj_styleBox;
|
|
|
|
Ref<AtlasTexture> atlas_tex;
|
2016-06-04 18:40:53 +02:00
|
|
|
|
2022-10-23 17:35:29 +02:00
|
|
|
Ref<CanvasTexture> preview_tex;
|
|
|
|
|
2015-09-28 05:06:06 +02:00
|
|
|
Rect2 rect;
|
|
|
|
Rect2 rect_prev;
|
2022-05-02 16:28:25 +02:00
|
|
|
float prev_margin = 0.0f;
|
2022-05-26 03:59:16 +02:00
|
|
|
int edited_margin = 0;
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<RID, List<Rect2>> cache_map;
|
2016-06-14 04:54:58 +02:00
|
|
|
List<Rect2> autoslice_cache;
|
2022-05-26 03:59:16 +02:00
|
|
|
bool autoslice_is_dirty = false;
|
2016-06-03 22:04:44 +02:00
|
|
|
|
2022-05-26 03:59:16 +02:00
|
|
|
bool drag = false;
|
2022-05-02 16:28:25 +02:00
|
|
|
bool creating = false;
|
2015-09-28 05:06:06 +02:00
|
|
|
Vector2 drag_from;
|
2022-05-26 03:59:16 +02:00
|
|
|
int drag_index = 0;
|
|
|
|
bool request_center = false;
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2022-01-19 19:59:12 +01:00
|
|
|
Ref<ViewPanner> panner;
|
2023-01-19 17:50:51 +01:00
|
|
|
void _pan_callback(Vector2 p_scroll_vec, Ref<InputEvent> p_event);
|
|
|
|
void _zoom_callback(float p_zoom_factor, Vector2 p_origin, Ref<InputEvent> p_event);
|
2022-01-19 19:59:12 +01:00
|
|
|
|
2016-06-14 04:54:58 +02:00
|
|
|
void _set_snap_mode(int p_mode);
|
2015-09-28 05:06:06 +02:00
|
|
|
void _set_snap_off_x(float p_val);
|
|
|
|
void _set_snap_off_y(float p_val);
|
|
|
|
void _set_snap_step_x(float p_val);
|
|
|
|
void _set_snap_step_y(float p_val);
|
2016-06-14 04:54:58 +02:00
|
|
|
void _set_snap_sep_x(float p_val);
|
|
|
|
void _set_snap_sep_y(float p_val);
|
2019-03-16 14:29:32 +01:00
|
|
|
void _zoom_on_position(float p_zoom, Point2 p_position = Point2());
|
2016-06-14 04:54:58 +02:00
|
|
|
void _zoom_in();
|
|
|
|
void _zoom_reset();
|
|
|
|
void _zoom_out();
|
2018-11-24 05:38:26 +01:00
|
|
|
void apply_rect(const Rect2 &p_rect);
|
|
|
|
void _update_rect();
|
2017-12-24 20:00:30 +01:00
|
|
|
void _update_autoslice();
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2021-02-10 21:18:45 +01:00
|
|
|
void _texture_changed();
|
|
|
|
|
2015-09-28 05:06:06 +02:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
2016-06-04 18:40:53 +02:00
|
|
|
void _node_removed(Object *p_obj);
|
2015-09-28 05:06:06 +02:00
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
Vector2 snap_point(Vector2 p_target) const;
|
|
|
|
|
|
|
|
public:
|
2016-06-03 22:04:44 +02:00
|
|
|
void _edit_region();
|
2015-09-28 05:06:06 +02:00
|
|
|
void _region_draw();
|
2017-05-20 17:38:03 +02:00
|
|
|
void _region_input(const Ref<InputEvent> &p_input);
|
2015-09-28 05:06:06 +02:00
|
|
|
void _scroll_changed(float);
|
2018-05-17 23:02:16 +02:00
|
|
|
bool is_stylebox();
|
|
|
|
bool is_atlas_texture();
|
|
|
|
bool is_ninepatch();
|
2021-08-12 23:10:45 +02:00
|
|
|
Sprite2D *get_sprite_2d();
|
2019-01-21 19:52:57 +01:00
|
|
|
Sprite3D *get_sprite_3d();
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2016-06-04 18:40:53 +02:00
|
|
|
void edit(Object *p_obj);
|
2022-01-27 10:36:51 +01:00
|
|
|
TextureRegionEditor();
|
2015-09-28 05:06:06 +02:00
|
|
|
};
|
|
|
|
|
2022-05-24 00:35:01 +02:00
|
|
|
//
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2022-05-24 00:35:01 +02:00
|
|
|
class EditorInspectorPluginTextureRegion : public EditorInspectorPlugin {
|
|
|
|
GDCLASS(EditorInspectorPluginTextureRegion, EditorInspectorPlugin);
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2022-05-24 00:35:01 +02:00
|
|
|
TextureRegionEditor *texture_region_editor = nullptr;
|
|
|
|
|
|
|
|
void _region_edit(Object *p_object);
|
2019-07-13 20:55:32 +02:00
|
|
|
|
2022-05-24 00:35:01 +02:00
|
|
|
public:
|
|
|
|
virtual bool can_handle(Object *p_object) override;
|
2023-01-31 19:08:46 +01:00
|
|
|
virtual bool parse_property(Object *p_object, const Variant::Type p_type, const String &p_path, const PropertyHint p_hint, const String &p_hint_text, const BitField<PropertyUsageFlags> p_usage, const bool p_wide) override;
|
2022-05-24 00:35:01 +02:00
|
|
|
|
|
|
|
EditorInspectorPluginTextureRegion();
|
|
|
|
};
|
|
|
|
|
|
|
|
class TextureRegionEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(TextureRegionEditorPlugin, EditorPlugin);
|
2019-07-13 20:55:32 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual String get_name() const override { return "TextureRegion"; }
|
2015-09-28 05:06:06 +02:00
|
|
|
|
2022-01-27 10:36:51 +01:00
|
|
|
TextureRegionEditorPlugin();
|
2015-09-28 05:06:06 +02:00
|
|
|
};
|
|
|
|
|
2016-06-03 22:04:44 +02:00
|
|
|
#endif // TEXTURE_REGION_EDITOR_PLUGIN_H
|