2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* collision_polygon_2d_editor_plugin.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* 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) */
|
2016-06-18 14:46:12 +02: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. */
|
|
|
|
/*************************************************************************/
|
2014-09-17 02:19:54 +02:00
|
|
|
#include "collision_polygon_2d_editor_plugin.h"
|
|
|
|
|
|
|
|
#include "canvas_item_editor_plugin.h"
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/editor_settings.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "os/file_access.h"
|
2015-03-02 04:54:10 +01:00
|
|
|
|
2014-09-17 02:19:54 +02:00
|
|
|
void CollisionPolygon2DEditor::_notification(int p_what) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
switch (p_what) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
case NOTIFICATION_READY: {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
button_create->set_icon(get_icon("Edit", "EditorIcons"));
|
|
|
|
button_edit->set_icon(get_icon("MovePoint", "EditorIcons"));
|
2014-09-17 02:19:54 +02:00
|
|
|
button_edit->set_pressed(true);
|
2017-03-05 16:44:50 +01:00
|
|
|
get_tree()->connect("node_removed", this, "_node_removed");
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
} break;
|
|
|
|
case NOTIFICATION_FIXED_PROCESS: {
|
|
|
|
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void CollisionPolygon2DEditor::_node_removed(Node *p_node) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_node == node) {
|
|
|
|
node = NULL;
|
2014-09-17 02:19:54 +02:00
|
|
|
hide();
|
2014-11-02 15:31:01 +01:00
|
|
|
canvas_item_editor->get_viewport_control()->update();
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CollisionPolygon2DEditor::_menu_option(int p_option) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
switch (p_option) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
case MODE_CREATE: {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
mode = MODE_CREATE;
|
2014-09-17 02:19:54 +02:00
|
|
|
button_create->set_pressed(true);
|
|
|
|
button_edit->set_pressed(false);
|
|
|
|
} break;
|
|
|
|
case MODE_EDIT: {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
mode = MODE_EDIT;
|
2014-09-17 02:19:54 +02:00
|
|
|
button_create->set_pressed(false);
|
|
|
|
button_edit->set_pressed(true);
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CollisionPolygon2DEditor::_wip_close() {
|
|
|
|
|
2016-05-04 03:25:37 +02:00
|
|
|
undo_redo->create_action(TTR("Create Poly"));
|
2017-03-05 16:44:50 +01:00
|
|
|
undo_redo->add_undo_method(node, "set_polygon", node->get_polygon());
|
|
|
|
undo_redo->add_do_method(node, "set_polygon", wip);
|
|
|
|
undo_redo->add_do_method(canvas_item_editor->get_viewport_control(), "update");
|
|
|
|
undo_redo->add_undo_method(canvas_item_editor->get_viewport_control(), "update");
|
2014-09-17 02:19:54 +02:00
|
|
|
undo_redo->commit_action();
|
|
|
|
wip.clear();
|
2017-03-05 16:44:50 +01:00
|
|
|
wip_active = false;
|
|
|
|
mode = MODE_EDIT;
|
2014-09-17 02:19:54 +02:00
|
|
|
button_edit->set_pressed(true);
|
|
|
|
button_create->set_pressed(false);
|
2017-03-05 16:44:50 +01:00
|
|
|
edited_point = -1;
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool CollisionPolygon2DEditor::forward_gui_input(const InputEvent &p_event) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2014-11-02 15:31:01 +01:00
|
|
|
if (!node)
|
|
|
|
return false;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
switch (p_event.type) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
case InputEvent::MOUSE_BUTTON: {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const InputEventMouseButton &mb = p_event.mouse_button;
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D xform = canvas_item_editor->get_canvas_transform() * node->get_global_transform();
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector2 gpoint = Point2(mb.x, mb.y);
|
2014-09-17 02:19:54 +02:00
|
|
|
Vector2 cpoint = canvas_item_editor->get_canvas_transform().affine_inverse().xform(gpoint);
|
2017-03-05 16:44:50 +01:00
|
|
|
cpoint = canvas_item_editor->snap_point(cpoint);
|
2014-09-17 02:19:54 +02:00
|
|
|
cpoint = node->get_global_transform().affine_inverse().xform(cpoint);
|
|
|
|
|
|
|
|
Vector<Vector2> poly = node->get_polygon();
|
|
|
|
|
|
|
|
//first check if a point is to be added (segment split)
|
2017-03-05 16:44:50 +01:00
|
|
|
real_t grab_treshold = EDITOR_DEF("editors/poly_editor/point_grab_radius", 8);
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
switch (mode) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
case MODE_CREATE: {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (mb.button_index == BUTTON_LEFT && mb.pressed) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
if (!wip_active) {
|
|
|
|
|
|
|
|
wip.clear();
|
2017-03-05 16:44:50 +01:00
|
|
|
wip.push_back(cpoint);
|
|
|
|
wip_active = true;
|
|
|
|
edited_point_pos = cpoint;
|
2014-09-17 02:19:54 +02:00
|
|
|
canvas_item_editor->get_viewport_control()->update();
|
2017-03-05 16:44:50 +01:00
|
|
|
edited_point = 1;
|
2014-09-17 02:19:54 +02:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (wip.size() > 1 && xform.xform(wip[0]).distance_to(gpoint) < grab_treshold) {
|
2014-09-17 02:19:54 +02:00
|
|
|
//wip closed
|
|
|
|
_wip_close();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
wip.push_back(cpoint);
|
|
|
|
edited_point = wip.size();
|
2014-09-17 02:19:54 +02:00
|
|
|
canvas_item_editor->get_viewport_control()->update();
|
|
|
|
return true;
|
|
|
|
|
|
|
|
//add wip point
|
|
|
|
}
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
} else if (mb.button_index == BUTTON_RIGHT && mb.pressed && wip_active) {
|
2014-09-17 02:19:54 +02:00
|
|
|
_wip_close();
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case MODE_EDIT: {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (mb.button_index == BUTTON_LEFT) {
|
2014-09-17 02:19:54 +02:00
|
|
|
if (mb.pressed) {
|
|
|
|
|
|
|
|
if (mb.mod.control) {
|
|
|
|
|
|
|
|
if (poly.size() < 3) {
|
|
|
|
|
2016-05-04 03:25:37 +02:00
|
|
|
undo_redo->create_action(TTR("Edit Poly"));
|
2017-03-05 16:44:50 +01:00
|
|
|
undo_redo->add_undo_method(node, "set_polygon", poly);
|
2014-09-17 02:19:54 +02:00
|
|
|
poly.push_back(cpoint);
|
2017-03-05 16:44:50 +01:00
|
|
|
undo_redo->add_do_method(node, "set_polygon", poly);
|
|
|
|
undo_redo->add_do_method(canvas_item_editor->get_viewport_control(), "update");
|
|
|
|
undo_redo->add_undo_method(canvas_item_editor->get_viewport_control(), "update");
|
2014-09-17 02:19:54 +02:00
|
|
|
undo_redo->commit_action();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//search edges
|
2017-03-05 16:44:50 +01:00
|
|
|
int closest_idx = -1;
|
2014-09-17 02:19:54 +02:00
|
|
|
Vector2 closest_pos;
|
2017-03-05 16:44:50 +01:00
|
|
|
real_t closest_dist = 1e10;
|
|
|
|
for (int i = 0; i < poly.size(); i++) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector2 points[2] = { xform.xform(poly[i]),
|
|
|
|
xform.xform(poly[(i + 1) % poly.size()]) };
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector2 cp = Geometry::get_closest_point_to_segment_2d(gpoint, points);
|
|
|
|
if (cp.distance_squared_to(points[0]) < CMP_EPSILON2 || cp.distance_squared_to(points[1]) < CMP_EPSILON2)
|
2014-09-17 02:19:54 +02:00
|
|
|
continue; //not valid to reuse point
|
|
|
|
|
|
|
|
real_t d = cp.distance_to(gpoint);
|
2017-03-05 16:44:50 +01:00
|
|
|
if (d < closest_dist && d < grab_treshold) {
|
|
|
|
closest_dist = d;
|
|
|
|
closest_pos = cp;
|
|
|
|
closest_idx = i;
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (closest_idx >= 0) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
pre_move_edit = poly;
|
|
|
|
poly.insert(closest_idx + 1, xform.affine_inverse().xform(closest_pos));
|
|
|
|
edited_point = closest_idx + 1;
|
|
|
|
edited_point_pos = xform.affine_inverse().xform(closest_pos);
|
2014-09-17 02:19:54 +02:00
|
|
|
node->set_polygon(poly);
|
|
|
|
canvas_item_editor->get_viewport_control()->update();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
|
|
|
//look for points to move
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int closest_idx = -1;
|
2014-09-17 02:19:54 +02:00
|
|
|
Vector2 closest_pos;
|
2017-03-05 16:44:50 +01:00
|
|
|
real_t closest_dist = 1e10;
|
|
|
|
for (int i = 0; i < poly.size(); i++) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector2 cp = xform.xform(poly[i]);
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
real_t d = cp.distance_to(gpoint);
|
2017-03-05 16:44:50 +01:00
|
|
|
if (d < closest_dist && d < grab_treshold) {
|
|
|
|
closest_dist = d;
|
|
|
|
closest_pos = cp;
|
|
|
|
closest_idx = i;
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (closest_idx >= 0) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
pre_move_edit = poly;
|
|
|
|
edited_point = closest_idx;
|
|
|
|
edited_point_pos = xform.affine_inverse().xform(closest_pos);
|
2014-09-17 02:19:54 +02:00
|
|
|
canvas_item_editor->get_viewport_control()->update();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (edited_point != -1) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
//apply
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_INDEX_V(edited_point, poly.size(), false);
|
|
|
|
poly[edited_point] = edited_point_pos;
|
2016-05-04 03:25:37 +02:00
|
|
|
undo_redo->create_action(TTR("Edit Poly"));
|
2017-03-05 16:44:50 +01:00
|
|
|
undo_redo->add_do_method(node, "set_polygon", poly);
|
|
|
|
undo_redo->add_undo_method(node, "set_polygon", pre_move_edit);
|
|
|
|
undo_redo->add_do_method(canvas_item_editor->get_viewport_control(), "update");
|
|
|
|
undo_redo->add_undo_method(canvas_item_editor->get_viewport_control(), "update");
|
2014-09-17 02:19:54 +02:00
|
|
|
undo_redo->commit_action();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
edited_point = -1;
|
2014-09-17 02:19:54 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
} else if (mb.button_index == BUTTON_RIGHT && mb.pressed && edited_point == -1) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int closest_idx = -1;
|
2014-09-17 02:19:54 +02:00
|
|
|
Vector2 closest_pos;
|
2017-03-05 16:44:50 +01:00
|
|
|
real_t closest_dist = 1e10;
|
|
|
|
for (int i = 0; i < poly.size(); i++) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector2 cp = xform.xform(poly[i]);
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
real_t d = cp.distance_to(gpoint);
|
2017-03-05 16:44:50 +01:00
|
|
|
if (d < closest_dist && d < grab_treshold) {
|
|
|
|
closest_dist = d;
|
|
|
|
closest_pos = cp;
|
|
|
|
closest_idx = i;
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (closest_idx >= 0) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2016-05-04 03:25:37 +02:00
|
|
|
undo_redo->create_action(TTR("Edit Poly (Remove Point)"));
|
2017-03-05 16:44:50 +01:00
|
|
|
undo_redo->add_undo_method(node, "set_polygon", poly);
|
2014-09-17 02:19:54 +02:00
|
|
|
poly.remove(closest_idx);
|
2017-03-05 16:44:50 +01:00
|
|
|
undo_redo->add_do_method(node, "set_polygon", poly);
|
|
|
|
undo_redo->add_do_method(canvas_item_editor->get_viewport_control(), "update");
|
|
|
|
undo_redo->add_undo_method(canvas_item_editor->get_viewport_control(), "update");
|
2014-09-17 02:19:54 +02:00
|
|
|
undo_redo->commit_action();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
case InputEvent::MOUSE_MOTION: {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const InputEventMouseMotion &mm = p_event.mouse_motion;
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (edited_point != -1 && (wip_active || mm.button_mask & BUTTON_MASK_LEFT)) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector2 gpoint = Point2(mm.x, mm.y);
|
2014-09-17 02:19:54 +02:00
|
|
|
Vector2 cpoint = canvas_item_editor->get_canvas_transform().affine_inverse().xform(gpoint);
|
2017-03-05 16:44:50 +01:00
|
|
|
cpoint = canvas_item_editor->snap_point(cpoint);
|
2014-09-17 02:19:54 +02:00
|
|
|
edited_point_pos = node->get_global_transform().affine_inverse().xform(cpoint);
|
|
|
|
|
|
|
|
canvas_item_editor->get_viewport_control()->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void CollisionPolygon2DEditor::_canvas_draw() {
|
|
|
|
|
|
|
|
if (!node)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Control *vpc = canvas_item_editor->get_viewport_control();
|
|
|
|
|
|
|
|
Vector<Vector2> poly;
|
|
|
|
|
|
|
|
if (wip_active)
|
2017-03-05 16:44:50 +01:00
|
|
|
poly = wip;
|
2014-09-17 02:19:54 +02:00
|
|
|
else
|
2017-03-05 16:44:50 +01:00
|
|
|
poly = node->get_polygon();
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D xform = canvas_item_editor->get_canvas_transform() * node->get_global_transform();
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<Texture> handle = get_icon("EditorHandle", "EditorIcons");
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < poly.size(); i++) {
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector2 p, p2;
|
|
|
|
p = i == edited_point ? edited_point_pos : poly[i];
|
|
|
|
if ((wip_active && i == poly.size() - 1) || (((i + 1) % poly.size()) == edited_point))
|
|
|
|
p2 = edited_point_pos;
|
2014-09-17 02:19:54 +02:00
|
|
|
else
|
2017-03-05 16:44:50 +01:00
|
|
|
p2 = poly[(i + 1) % poly.size()];
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
Vector2 point = xform.xform(p);
|
|
|
|
Vector2 next_point = xform.xform(p2);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Color col = Color(1, 0.3, 0.1, 0.8);
|
|
|
|
vpc->draw_line(point, next_point, col, 2);
|
|
|
|
vpc->draw_texture(handle, point - handle->get_size() * 0.5);
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CollisionPolygon2DEditor::edit(Node *p_collision_polygon) {
|
|
|
|
|
|
|
|
if (!canvas_item_editor) {
|
2017-03-05 16:44:50 +01:00
|
|
|
canvas_item_editor = CanvasItemEditor::get_singleton();
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (p_collision_polygon) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
node = p_collision_polygon->cast_to<CollisionPolygon2D>();
|
|
|
|
if (!canvas_item_editor->get_viewport_control()->is_connected("draw", this, "_canvas_draw"))
|
|
|
|
canvas_item_editor->get_viewport_control()->connect("draw", this, "_canvas_draw");
|
2014-09-17 02:19:54 +02:00
|
|
|
wip.clear();
|
2017-03-05 16:44:50 +01:00
|
|
|
wip_active = false;
|
|
|
|
edited_point = -1;
|
2015-03-09 06:34:56 +01:00
|
|
|
canvas_item_editor->get_viewport_control()->update();
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
} else {
|
2017-03-05 16:44:50 +01:00
|
|
|
node = NULL;
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (canvas_item_editor->get_viewport_control()->is_connected("draw", this, "_canvas_draw"))
|
|
|
|
canvas_item_editor->get_viewport_control()->disconnect("draw", this, "_canvas_draw");
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CollisionPolygon2DEditor::_bind_methods() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("_menu_option"), &CollisionPolygon2DEditor::_menu_option);
|
|
|
|
ClassDB::bind_method(D_METHOD("_canvas_draw"), &CollisionPolygon2DEditor::_canvas_draw);
|
|
|
|
ClassDB::bind_method(D_METHOD("_node_removed"), &CollisionPolygon2DEditor::_node_removed);
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CollisionPolygon2DEditor::CollisionPolygon2DEditor(EditorNode *p_editor) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
node = NULL;
|
|
|
|
canvas_item_editor = NULL;
|
|
|
|
editor = p_editor;
|
2014-09-17 02:19:54 +02:00
|
|
|
undo_redo = editor->get_undo_redo();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
add_child(memnew(VSeparator));
|
|
|
|
button_create = memnew(ToolButton);
|
2014-09-17 02:19:54 +02:00
|
|
|
add_child(button_create);
|
2017-03-05 16:44:50 +01:00
|
|
|
button_create->connect("pressed", this, "_menu_option", varray(MODE_CREATE));
|
2014-09-17 02:19:54 +02:00
|
|
|
button_create->set_toggle_mode(true);
|
2016-05-21 01:18:35 +02:00
|
|
|
button_create->set_tooltip(TTR("Create a new polygon from scratch."));
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
button_edit = memnew(ToolButton);
|
2014-09-17 02:19:54 +02:00
|
|
|
add_child(button_edit);
|
2017-03-05 16:44:50 +01:00
|
|
|
button_edit->connect("pressed", this, "_menu_option", varray(MODE_EDIT));
|
2014-09-17 02:19:54 +02:00
|
|
|
button_edit->set_toggle_mode(true);
|
2015-01-03 20:52:37 +01:00
|
|
|
button_edit->set_tooltip("Edit existing polygon:\nLMB: Move Point.\nCtrl+LMB: Split Segment.\nRMB: Erase Point.");
|
2014-09-17 02:19:54 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
//add_constant_override("separation",0);
|
2014-09-17 02:19:54 +02:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
options = memnew( MenuButton );
|
|
|
|
add_child(options);
|
|
|
|
options->set_area_as_parent_rect();
|
2016-05-21 01:18:35 +02:00
|
|
|
options->set_text("Polygon");
|
|
|
|
//options->get_popup()->add_item("Parse BBCode",PARSE_BBCODE);
|
2017-01-08 22:18:54 +01:00
|
|
|
options->get_popup()->connect("id_pressed", this,"_menu_option");
|
2014-09-17 02:19:54 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
mode = MODE_EDIT;
|
2017-03-05 16:44:50 +01:00
|
|
|
wip_active = false;
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CollisionPolygon2DEditorPlugin::edit(Object *p_object) {
|
|
|
|
|
|
|
|
collision_polygon_editor->edit(p_object->cast_to<Node>());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CollisionPolygon2DEditorPlugin::handles(Object *p_object) const {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
return p_object->is_class("CollisionPolygon2D");
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CollisionPolygon2DEditorPlugin::make_visible(bool p_visible) {
|
|
|
|
|
|
|
|
if (p_visible) {
|
|
|
|
collision_polygon_editor->show();
|
|
|
|
} else {
|
|
|
|
|
|
|
|
collision_polygon_editor->hide();
|
|
|
|
collision_polygon_editor->edit(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CollisionPolygon2DEditorPlugin::CollisionPolygon2DEditorPlugin(EditorNode *p_node) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
editor = p_node;
|
|
|
|
collision_polygon_editor = memnew(CollisionPolygon2DEditor(p_node));
|
2014-09-17 02:19:54 +02:00
|
|
|
CanvasItemEditor::get_singleton()->add_control_to_menu_panel(collision_polygon_editor);
|
|
|
|
|
|
|
|
collision_polygon_editor->hide();
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
CollisionPolygon2DEditorPlugin::~CollisionPolygon2DEditorPlugin() {
|
2014-09-17 02:19:54 +02:00
|
|
|
}
|