2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* canvas_item_editor_plugin.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#ifndef CONTROL_EDITOR_PLUGIN_H
|
|
|
|
#define CONTROL_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"
|
|
|
|
#include "scene/2d/canvas_item.h"
|
|
|
|
#include "scene/gui/box_container.h"
|
2016-10-25 21:27:24 +02:00
|
|
|
#include "scene/gui/button_group.h"
|
|
|
|
#include "scene/gui/check_box.h"
|
|
|
|
#include "scene/gui/label.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene/gui/panel_container.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/gui/spin_box.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2016-10-25 21:27:24 +02:00
|
|
|
class CanvasItemEditorViewport;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
class CanvasItemEditorSelectedItem : public Object {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(CanvasItemEditorSelectedItem, Object);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
public:
|
|
|
|
Variant undo_state;
|
|
|
|
Vector2 undo_pivot;
|
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D prev_xform;
|
2014-02-10 02:10:30 +01:00
|
|
|
float prev_rot;
|
|
|
|
Rect2 prev_rect;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
CanvasItemEditorSelectedItem() { prev_rot = 0; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class CanvasItemEditor : public VBoxContainer {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(CanvasItemEditor, VBoxContainer);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
EditorNode *editor;
|
|
|
|
|
|
|
|
enum Tool {
|
|
|
|
|
|
|
|
TOOL_SELECT,
|
2015-12-13 21:16:13 +01:00
|
|
|
TOOL_LIST_SELECT,
|
2014-02-10 02:10:30 +01:00
|
|
|
TOOL_MOVE,
|
|
|
|
TOOL_ROTATE,
|
2015-12-28 13:38:15 +01:00
|
|
|
TOOL_EDIT_PIVOT,
|
2014-05-02 13:39:12 +02:00
|
|
|
TOOL_PAN,
|
2014-02-10 02:10:30 +01:00
|
|
|
TOOL_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
enum MenuOption {
|
|
|
|
SNAP_USE,
|
2015-02-15 09:00:55 +01:00
|
|
|
SNAP_SHOW_GRID,
|
|
|
|
SNAP_USE_ROTATION,
|
2015-02-20 13:21:59 +01:00
|
|
|
SNAP_RELATIVE,
|
2014-02-10 02:10:30 +01:00
|
|
|
SNAP_CONFIGURE,
|
|
|
|
SNAP_USE_PIXEL,
|
|
|
|
ZOOM_IN,
|
|
|
|
ZOOM_OUT,
|
|
|
|
ZOOM_RESET,
|
|
|
|
ZOOM_SET,
|
|
|
|
LOCK_SELECTED,
|
|
|
|
UNLOCK_SELECTED,
|
|
|
|
GROUP_SELECTED,
|
|
|
|
UNGROUP_SELECTED,
|
|
|
|
ALIGN_HORIZONTAL,
|
|
|
|
ALIGN_VERTICAL,
|
2015-08-24 06:00:39 +02:00
|
|
|
ANCHOR_ALIGN_TOP_LEFT,
|
|
|
|
ANCHOR_ALIGN_TOP_RIGHT,
|
|
|
|
ANCHOR_ALIGN_BOTTOM_LEFT,
|
|
|
|
ANCHOR_ALIGN_BOTTOM_RIGHT,
|
|
|
|
ANCHOR_ALIGN_CENTER_LEFT,
|
|
|
|
ANCHOR_ALIGN_CENTER_RIGHT,
|
|
|
|
ANCHOR_ALIGN_CENTER_TOP,
|
|
|
|
ANCHOR_ALIGN_CENTER_BOTTOM,
|
|
|
|
ANCHOR_ALIGN_CENTER,
|
|
|
|
ANCHOR_ALIGN_TOP_WIDE,
|
|
|
|
ANCHOR_ALIGN_LEFT_WIDE,
|
|
|
|
ANCHOR_ALIGN_RIGHT_WIDE,
|
|
|
|
ANCHOR_ALIGN_BOTTOM_WIDE,
|
|
|
|
ANCHOR_ALIGN_VCENTER_WIDE,
|
|
|
|
ANCHOR_ALIGN_HCENTER_WIDE,
|
|
|
|
ANCHOR_ALIGN_WIDE,
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
SPACE_HORIZONTAL,
|
|
|
|
SPACE_VERTICAL,
|
|
|
|
EXPAND_TO_PARENT,
|
|
|
|
ANIM_INSERT_KEY,
|
|
|
|
ANIM_INSERT_KEY_EXISTING,
|
|
|
|
ANIM_INSERT_POS,
|
|
|
|
ANIM_INSERT_ROT,
|
|
|
|
ANIM_INSERT_SCALE,
|
|
|
|
ANIM_COPY_POSE,
|
|
|
|
ANIM_PASTE_POSE,
|
2014-05-03 19:36:59 +02:00
|
|
|
ANIM_CLEAR_POSE,
|
|
|
|
VIEW_CENTER_TO_SELECTION,
|
|
|
|
VIEW_FRAME_TO_SELECTION,
|
2014-07-06 16:49:27 +02:00
|
|
|
SKELETON_MAKE_BONES,
|
|
|
|
SKELETON_CLEAR_BONES,
|
2016-09-07 11:10:00 +02:00
|
|
|
SKELETON_SHOW_BONES,
|
2014-07-06 16:49:27 +02:00
|
|
|
SKELETON_SET_IK_CHAIN,
|
|
|
|
SKELETON_CLEAR_IK_CHAIN
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
enum DragType {
|
|
|
|
DRAG_NONE,
|
|
|
|
DRAG_LEFT,
|
|
|
|
DRAG_TOP_LEFT,
|
|
|
|
DRAG_TOP,
|
|
|
|
DRAG_TOP_RIGHT,
|
|
|
|
DRAG_RIGHT,
|
|
|
|
DRAG_BOTTOM_RIGHT,
|
|
|
|
DRAG_BOTTOM,
|
|
|
|
DRAG_BOTTOM_LEFT,
|
|
|
|
DRAG_ALL,
|
|
|
|
DRAG_ROTATE,
|
|
|
|
DRAG_PIVOT,
|
2017-03-23 00:47:51 +01:00
|
|
|
DRAG_NODE_2D,
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-05-09 09:11:24 +02:00
|
|
|
enum KeyMoveMODE {
|
|
|
|
MOVE_VIEW_BASE,
|
|
|
|
MOVE_LOCAL_BASE,
|
|
|
|
MOVE_LOCAL_WITH_ROT
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
EditorSelection *editor_selection;
|
2015-11-04 22:39:07 +01:00
|
|
|
bool additive_selection;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Tool tool;
|
|
|
|
bool first_update;
|
|
|
|
Control *viewport;
|
|
|
|
|
|
|
|
bool can_move_pivot;
|
|
|
|
|
|
|
|
HScrollBar *h_scroll;
|
|
|
|
VScrollBar *v_scroll;
|
|
|
|
HBoxContainer *hb;
|
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D transform;
|
2014-02-10 02:10:30 +01:00
|
|
|
float zoom;
|
2015-02-15 09:00:55 +01:00
|
|
|
Vector2 snap_offset;
|
|
|
|
Vector2 snap_step;
|
|
|
|
float snap_rotation_step;
|
|
|
|
float snap_rotation_offset;
|
|
|
|
bool snap_grid;
|
|
|
|
bool snap_show_grid;
|
|
|
|
bool snap_rotation;
|
2015-02-20 13:21:59 +01:00
|
|
|
bool snap_relative;
|
2015-02-15 09:00:55 +01:00
|
|
|
bool snap_pixel;
|
2016-09-07 11:10:00 +02:00
|
|
|
bool skeleton_show_bones;
|
2014-02-10 02:10:30 +01:00
|
|
|
bool box_selecting;
|
|
|
|
Point2 box_selecting_to;
|
|
|
|
bool key_pos;
|
|
|
|
bool key_rot;
|
|
|
|
bool key_scale;
|
|
|
|
|
|
|
|
void _tool_select(int p_index);
|
|
|
|
|
|
|
|
MenuOption last_option;
|
|
|
|
|
2015-11-04 22:39:07 +01:00
|
|
|
struct _SelectResult {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
CanvasItem *item;
|
2015-11-04 22:39:07 +01:00
|
|
|
float z;
|
|
|
|
bool has_z;
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ bool operator<(const _SelectResult &p_rr) const {
|
2015-11-04 22:39:07 +01:00
|
|
|
return has_z && p_rr.has_z ? p_rr.z < z : p_rr.has_z;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Vector<_SelectResult> selection_results;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct LockList {
|
|
|
|
Point2 pos;
|
|
|
|
bool lock;
|
|
|
|
bool group;
|
2017-03-05 16:44:50 +01:00
|
|
|
LockList() {
|
|
|
|
lock = false;
|
|
|
|
group = false;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
List<LockList> lock_list;
|
|
|
|
|
2014-07-06 16:49:27 +02:00
|
|
|
struct BoneList {
|
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D xform;
|
2014-07-06 16:49:27 +02:00
|
|
|
Vector2 from;
|
|
|
|
Vector2 to;
|
|
|
|
ObjectID bone;
|
2015-04-21 00:38:02 +02:00
|
|
|
uint64_t last_pass;
|
2014-07-06 16:49:27 +02:00
|
|
|
};
|
|
|
|
|
2015-04-21 00:38:02 +02:00
|
|
|
uint64_t bone_last_frame;
|
2017-03-05 16:44:50 +01:00
|
|
|
Map<ObjectID, BoneList> bone_list;
|
2015-04-21 00:38:02 +02:00
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D bone_orig_xform;
|
2014-07-06 16:49:27 +02:00
|
|
|
|
|
|
|
struct BoneIK {
|
|
|
|
|
|
|
|
Variant orig_state;
|
|
|
|
Vector2 pos;
|
|
|
|
float len;
|
|
|
|
Node2D *node;
|
|
|
|
};
|
|
|
|
|
|
|
|
List<BoneIK> bone_ik_list;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct PoseClipboard {
|
|
|
|
|
|
|
|
Vector2 pos;
|
|
|
|
Vector2 scale;
|
|
|
|
float rot;
|
|
|
|
ObjectID id;
|
|
|
|
};
|
|
|
|
|
|
|
|
List<PoseClipboard> pose_clipboard;
|
|
|
|
|
|
|
|
ToolButton *select_button;
|
2015-12-13 21:16:13 +01:00
|
|
|
ToolButton *list_select_button;
|
2014-02-10 02:10:30 +01:00
|
|
|
ToolButton *move_button;
|
|
|
|
ToolButton *rotate_button;
|
|
|
|
|
2015-12-28 13:38:15 +01:00
|
|
|
ToolButton *pivot_button;
|
2014-05-02 13:39:12 +02:00
|
|
|
ToolButton *pan_button;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
ToolButton *lock_button;
|
|
|
|
ToolButton *unlock_button;
|
|
|
|
|
|
|
|
ToolButton *group_button;
|
|
|
|
ToolButton *ungroup_button;
|
|
|
|
|
|
|
|
MenuButton *edit_menu;
|
2016-09-07 11:10:00 +02:00
|
|
|
PopupMenu *skeleton_menu;
|
2014-02-10 02:10:30 +01:00
|
|
|
MenuButton *view_menu;
|
2014-07-06 16:49:27 +02:00
|
|
|
HBoxContainer *animation_hb;
|
2014-02-10 02:10:30 +01:00
|
|
|
MenuButton *animation_menu;
|
2015-08-24 06:00:39 +02:00
|
|
|
MenuButton *anchor_menu;
|
2014-07-06 16:49:27 +02:00
|
|
|
|
|
|
|
Button *key_loc_button;
|
|
|
|
Button *key_rot_button;
|
|
|
|
Button *key_scale_button;
|
|
|
|
Button *key_insert_button;
|
|
|
|
|
2015-11-04 22:39:07 +01:00
|
|
|
PopupMenu *selection_menu;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
//PopupMenu *popup;
|
|
|
|
DragType drag;
|
|
|
|
Point2 drag_from;
|
|
|
|
Point2 drag_point_from;
|
|
|
|
bool updating_value_dialog;
|
|
|
|
Point2 display_rotate_from;
|
|
|
|
Point2 display_rotate_to;
|
|
|
|
#if 0
|
|
|
|
struct EditInfo {
|
|
|
|
|
|
|
|
Variant undo_state;
|
|
|
|
|
|
|
|
Matrix32 prev_xform;
|
|
|
|
float prev_rot;
|
|
|
|
Rect2 prev_rect;
|
|
|
|
EditInfo() { prev_rot=0; }
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef Map<CanvasItem*,EditInfo> CanvasItemMap;
|
|
|
|
CanvasItemMap canvas_items;
|
|
|
|
#endif
|
|
|
|
Ref<StyleBoxTexture> select_sb;
|
|
|
|
Ref<Texture> select_handle;
|
|
|
|
|
|
|
|
int handle_len;
|
2016-04-07 12:59:50 +02:00
|
|
|
bool _is_part_of_subscene(CanvasItem *p_item);
|
2017-03-05 16:44:50 +01:00
|
|
|
CanvasItem *_select_canvas_item_at_pos(const Point2 &p_pos, Node *p_node, const Transform2D &p_parent_xform, const Transform2D &p_canvas_xform);
|
|
|
|
void _find_canvas_items_at_pos(const Point2 &p_pos, Node *p_node, const Transform2D &p_parent_xform, const Transform2D &p_canvas_xform, Vector<_SelectResult> &r_items);
|
|
|
|
void _find_canvas_items_at_rect(const Rect2 &p_rect, Node *p_node, const Transform2D &p_parent_xform, const Transform2D &p_canvas_xform, List<CanvasItem *> *r_items);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool _select(CanvasItem *item, Point2 p_click_pos, bool p_append, bool p_drag = true);
|
2015-11-04 22:39:07 +01:00
|
|
|
|
2015-02-15 09:00:55 +01:00
|
|
|
ConfirmationDialog *snap_dialog;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
AcceptDialog *value_dialog;
|
|
|
|
Label *dialog_label;
|
|
|
|
SpinBox *dialog_val;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
CanvasItem *ref_item;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _edit_set_pivot(const Vector2 &mouse_pos);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _add_canvas_item(CanvasItem *p_canvas_item);
|
|
|
|
void _remove_canvas_item(CanvasItem *p_canvas_item);
|
|
|
|
void _clear_canvas_items();
|
|
|
|
void _visibility_changed(ObjectID p_canvas_item);
|
2017-03-05 16:44:50 +01:00
|
|
|
void _key_move(const Vector2 &p_dir, bool p_snap, KeyMoveMODE p_move_mode);
|
|
|
|
void _list_select(const InputEventMouseButton &b);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
DragType _find_drag_type(const Transform2D &p_xform, const Rect2 &p_local_rect, const Point2 &p_click, Vector2 &r_point);
|
2017-03-23 00:47:51 +01:00
|
|
|
void _prepare_drag(const Point2 &p_click_pos);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _popup_callback(int p_op);
|
|
|
|
bool updating_scroll;
|
|
|
|
void _update_scroll(float);
|
|
|
|
void _update_scrollbars();
|
2017-03-05 16:44:50 +01:00
|
|
|
void incbeg(float &beg, float &end, float inc, float minsize, bool p_symmetric);
|
|
|
|
void incend(float &beg, float &end, float inc, float minsize, bool p_symmetric);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _append_canvas_item(CanvasItem *p_item);
|
|
|
|
void _dialog_value_changed(double);
|
2015-02-15 09:00:55 +01:00
|
|
|
void _snap_changed();
|
2015-11-04 22:39:07 +01:00
|
|
|
void _selection_result_pressed(int);
|
|
|
|
void _selection_menu_hide();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
UndoRedo *undo_redo;
|
|
|
|
|
|
|
|
Point2 _find_topleftmost_point();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _find_canvas_items_span(Node *p_node, Rect2 &r_rect, const Transform2D &p_xform);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Object *_get_editor_data(Object *p_what);
|
|
|
|
|
|
|
|
CanvasItem *get_single_item();
|
|
|
|
int get_item_count();
|
2016-01-09 12:35:57 +01:00
|
|
|
void _keying_changed();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _unhandled_key_input(const InputEvent &p_ev);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _viewport_gui_input(const InputEvent &p_event);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _viewport_draw();
|
2014-12-28 23:37:25 +01:00
|
|
|
|
2016-07-28 21:37:52 +02:00
|
|
|
void _focus_selection(int p_op);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _set_anchor(Control::AnchorType p_left, Control::AnchorType p_top, Control::AnchorType p_right, Control::AnchorType p_bottom);
|
2015-08-24 06:00:39 +02:00
|
|
|
|
2014-12-28 23:37:25 +01:00
|
|
|
HSplitContainer *palette_split;
|
2015-01-12 00:52:42 +01:00
|
|
|
VSplitContainer *bottom_split;
|
2014-12-28 23:37:25 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
friend class CanvasItemEditorPlugin;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
protected:
|
2014-02-10 02:10:30 +01:00
|
|
|
void _notification(int p_what);
|
|
|
|
|
|
|
|
void _node_removed(Node *p_node);
|
|
|
|
static void _bind_methods();
|
|
|
|
void end_drag();
|
2017-03-05 16:44:50 +01:00
|
|
|
void box_selection_start(Point2 &click);
|
2014-02-10 02:10:30 +01:00
|
|
|
bool box_selection_end();
|
|
|
|
|
|
|
|
HBoxContainer *get_panel_hb() { return hb; }
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct compare_items_x {
|
2017-03-05 16:44:50 +01:00
|
|
|
bool operator()(const CanvasItem *a, const CanvasItem *b) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
return a->get_global_transform().elements[2].x < b->get_global_transform().elements[2].x;
|
|
|
|
}
|
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct compare_items_y {
|
2017-03-05 16:44:50 +01:00
|
|
|
bool operator()(const CanvasItem *a, const CanvasItem *b) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
return a->get_global_transform().elements[2].y < b->get_global_transform().elements[2].y;
|
|
|
|
}
|
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct proj_vector2_x {
|
2017-03-05 16:44:50 +01:00
|
|
|
float get(const Vector2 &v) { return v.x; }
|
|
|
|
void set(Vector2 &v, float f) { v.x = f; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct proj_vector2_y {
|
2017-03-05 16:44:50 +01:00
|
|
|
float get(const Vector2 &v) { return v.y; }
|
|
|
|
void set(Vector2 &v, float f) { v.y = f; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
template <class P, class C>
|
|
|
|
void space_selected_items();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
static CanvasItemEditor *singleton;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2015-02-15 09:00:55 +01:00
|
|
|
Vector2 snap_point(Vector2 p_target, Vector2 p_start = Vector2(0, 0)) const;
|
|
|
|
float snap_angle(float p_target, float p_start = 0) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D get_canvas_transform() const { return transform; }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
static CanvasItemEditor *get_singleton() { return singleton; }
|
|
|
|
Dictionary get_state() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_state(const Dictionary &p_state);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void add_control_to_menu_panel(Control *p_control);
|
|
|
|
|
2014-12-28 23:37:25 +01:00
|
|
|
HSplitContainer *get_palette_split();
|
2015-01-12 00:52:42 +01:00
|
|
|
VSplitContainer *get_bottom_split();
|
2014-12-28 23:37:25 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Control *get_viewport_control() { return viewport; }
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool get_remove_list(List<Node *> *p_list);
|
|
|
|
void set_undo_redo(UndoRedo *p_undo_redo) { undo_redo = p_undo_redo; }
|
2014-02-10 02:10:30 +01:00
|
|
|
void edit(CanvasItem *p_canvas_item);
|
2016-07-28 21:37:52 +02:00
|
|
|
|
|
|
|
void focus_selection();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
CanvasItemEditor(EditorNode *p_editor);
|
|
|
|
};
|
|
|
|
|
|
|
|
class CanvasItemEditorPlugin : public EditorPlugin {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(CanvasItemEditorPlugin, EditorPlugin);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
CanvasItemEditor *canvas_item_editor;
|
|
|
|
EditorNode *editor;
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String get_name() const { return "2D"; }
|
|
|
|
bool has_main_screen() const { return true; }
|
|
|
|
virtual void edit(Object *p_object);
|
|
|
|
virtual bool handles(Object *p_object) const;
|
|
|
|
virtual void make_visible(bool p_visible);
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual bool get_remove_list(List<Node *> *p_list) { return canvas_item_editor->get_remove_list(p_list); }
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual Dictionary get_state() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_state(const Dictionary &p_state);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
CanvasItemEditor *get_canvas_item_editor() { return canvas_item_editor; }
|
|
|
|
|
|
|
|
CanvasItemEditorPlugin(EditorNode *p_node);
|
|
|
|
~CanvasItemEditorPlugin();
|
|
|
|
};
|
|
|
|
|
2017-01-25 15:41:19 +01:00
|
|
|
class CanvasItemEditorViewport : public Control {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(CanvasItemEditorViewport, Control);
|
2016-10-25 21:27:24 +02:00
|
|
|
|
|
|
|
String default_type;
|
|
|
|
Vector<String> types;
|
|
|
|
|
|
|
|
Vector<String> selected_files;
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *target_node;
|
2016-10-25 21:27:24 +02:00
|
|
|
Point2 drop_pos;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
EditorNode *editor;
|
|
|
|
EditorData *editor_data;
|
|
|
|
CanvasItemEditor *canvas;
|
|
|
|
Node2D *preview;
|
|
|
|
AcceptDialog *accept;
|
|
|
|
WindowDialog *selector;
|
|
|
|
Label *selector_label;
|
|
|
|
Label *label;
|
|
|
|
Label *label_desc;
|
|
|
|
VBoxContainer *btn_group;
|
2017-01-10 05:04:31 +01:00
|
|
|
Ref<ButtonGroup> button_group;
|
2016-10-25 21:27:24 +02:00
|
|
|
|
|
|
|
void _on_mouse_exit();
|
2017-03-05 16:44:50 +01:00
|
|
|
void _on_select_type(Object *selected);
|
2016-10-25 21:27:24 +02:00
|
|
|
void _on_change_type();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _create_preview(const Vector<String> &files) const;
|
2016-10-25 21:27:24 +02:00
|
|
|
void _remove_preview();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool _cyclical_dependency_exists(const String &p_target_scene_path, Node *p_desired_node);
|
|
|
|
void _create_nodes(Node *parent, Node *child, String &path, const Point2 &p_point);
|
|
|
|
bool _create_instance(Node *parent, String &path, const Point2 &p_point);
|
2016-10-25 21:27:24 +02:00
|
|
|
void _perform_drop_data();
|
|
|
|
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
|
|
|
|
public:
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual bool can_drop_data(const Point2 &p_point, const Variant &p_data) const;
|
|
|
|
virtual void drop_data(const Point2 &p_point, const Variant &p_data);
|
2016-10-25 21:27:24 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
CanvasItemEditorViewport(EditorNode *p_node, CanvasItemEditor *p_canvas);
|
2016-10-25 21:27:24 +02:00
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#endif
|