2016-06-18 12:46:12 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* polygon_2d.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 12:46:12 +00:00
|
|
|
/*************************************************************************/
|
2020-01-01 10:16:22 +00:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2016-06-18 12:46:12 +00: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-04 23:50:27 +00:00
|
|
|
|
2014-07-07 20:44:21 +00:00
|
|
|
#include "polygon_2d.h"
|
2018-08-16 12:36:36 +00:00
|
|
|
|
2017-12-27 08:28:02 +00:00
|
|
|
#include "core/math/geometry.h"
|
2018-05-03 20:29:15 +00:00
|
|
|
#include "skeleton_2d.h"
|
2018-08-16 12:36:36 +00:00
|
|
|
|
2017-11-07 07:58:35 +00:00
|
|
|
Dictionary Polygon2D::_edit_get_state() const {
|
|
|
|
Dictionary state = Node2D::_edit_get_state();
|
|
|
|
state["offset"] = offset;
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Polygon2D::_edit_set_state(const Dictionary &p_state) {
|
|
|
|
Node2D::_edit_set_state(p_state);
|
|
|
|
set_offset(p_state["offset"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Polygon2D::_edit_set_pivot(const Point2 &p_pivot) {
|
|
|
|
set_position(get_transform().xform(p_pivot));
|
|
|
|
set_offset(get_offset() - p_pivot);
|
|
|
|
}
|
|
|
|
|
|
|
|
Point2 Polygon2D::_edit_get_pivot() const {
|
|
|
|
return Vector2();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Polygon2D::_edit_use_pivot() const {
|
|
|
|
return true;
|
|
|
|
}
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-11-07 07:58:35 +00:00
|
|
|
Rect2 Polygon2D::_edit_get_rect() const {
|
2017-03-05 15:44:50 +00:00
|
|
|
if (rect_cache_dirty) {
|
|
|
|
int l = polygon.size();
|
2017-01-07 21:25:37 +00:00
|
|
|
PoolVector<Vector2>::Read r = polygon.read();
|
2017-03-05 15:44:50 +00:00
|
|
|
item_rect = Rect2();
|
|
|
|
for (int i = 0; i < l; i++) {
|
2014-07-07 20:44:21 +00:00
|
|
|
Vector2 pos = r[i] + offset;
|
2017-03-05 15:44:50 +00:00
|
|
|
if (i == 0)
|
2017-06-03 22:25:13 +00:00
|
|
|
item_rect.position = pos;
|
2014-07-07 20:44:21 +00:00
|
|
|
else
|
|
|
|
item_rect.expand_to(pos);
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
rect_cache_dirty = false;
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return item_rect;
|
|
|
|
}
|
|
|
|
|
2018-03-08 20:35:41 +00:00
|
|
|
bool Polygon2D::_edit_use_rect() const {
|
2019-07-08 09:35:52 +00:00
|
|
|
return polygon.size() > 0;
|
2018-03-08 20:35:41 +00:00
|
|
|
}
|
|
|
|
|
2017-12-27 08:28:02 +00:00
|
|
|
bool Polygon2D::_edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const {
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
Vector<Vector2> polygon2d = Variant(polygon);
|
|
|
|
if (internal_vertices > 0) {
|
|
|
|
polygon2d.resize(polygon2d.size() - internal_vertices);
|
|
|
|
}
|
|
|
|
return Geometry::is_point_in_polygon(p_point - get_offset(), polygon2d);
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
2019-02-16 23:08:17 +00:00
|
|
|
void Polygon2D::_skeleton_bone_setup_changed() {
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2014-07-07 20:44:21 +00:00
|
|
|
void Polygon2D::_notification(int p_what) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
switch (p_what) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
case NOTIFICATION_DRAW: {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (polygon.size() < 3)
|
2014-07-07 20:44:21 +00:00
|
|
|
return;
|
|
|
|
|
2018-05-03 20:29:15 +00:00
|
|
|
Skeleton2D *skeleton_node = NULL;
|
|
|
|
if (has_node(skeleton)) {
|
|
|
|
skeleton_node = Object::cast_to<Skeleton2D>(get_node(skeleton));
|
|
|
|
}
|
|
|
|
|
2019-02-16 23:08:17 +00:00
|
|
|
ObjectID new_skeleton_id = 0;
|
|
|
|
|
|
|
|
if (skeleton_node) {
|
2018-05-03 20:29:15 +00:00
|
|
|
VS::get_singleton()->canvas_item_attach_skeleton(get_canvas_item(), skeleton_node->get_skeleton());
|
2019-02-16 23:08:17 +00:00
|
|
|
new_skeleton_id = skeleton_node->get_instance_id();
|
|
|
|
} else {
|
2018-05-03 20:29:15 +00:00
|
|
|
VS::get_singleton()->canvas_item_attach_skeleton(get_canvas_item(), RID());
|
2019-02-16 23:08:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (new_skeleton_id != current_skeleton_id) {
|
|
|
|
Object *old_skeleton = ObjectDB::get_instance(current_skeleton_id);
|
|
|
|
if (old_skeleton) {
|
|
|
|
old_skeleton->disconnect("bone_setup_changed", this, "_skeleton_bone_setup_changed");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skeleton_node) {
|
|
|
|
skeleton_node->connect("bone_setup_changed", this, "_skeleton_bone_setup_changed");
|
|
|
|
}
|
|
|
|
|
|
|
|
current_skeleton_id = new_skeleton_id;
|
|
|
|
}
|
2018-05-03 20:29:15 +00:00
|
|
|
|
2014-07-07 20:44:21 +00:00
|
|
|
Vector<Vector2> points;
|
|
|
|
Vector<Vector2> uvs;
|
2018-05-03 20:29:15 +00:00
|
|
|
Vector<int> bones;
|
|
|
|
Vector<float> weights;
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
int len = polygon.size();
|
|
|
|
if ((invert || polygons.size() == 0) && internal_vertices > 0) {
|
|
|
|
//if no polygons are around, internal vertices must not be drawn, else let them be
|
|
|
|
len -= internal_vertices;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len <= 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
points.resize(len);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
PoolVector<Vector2>::Read polyr = polygon.read();
|
|
|
|
for (int i = 0; i < len; i++) {
|
2018-07-25 01:11:03 +00:00
|
|
|
points.write[i] = polyr[i] + offset;
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (invert) {
|
|
|
|
|
|
|
|
Rect2 bounds;
|
2017-03-05 15:44:50 +00:00
|
|
|
int highest_idx = -1;
|
|
|
|
float highest_y = -1e20;
|
|
|
|
float sum = 0;
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
|
if (i == 0)
|
2017-06-03 22:25:13 +00:00
|
|
|
bounds.position = points[i];
|
2014-07-07 20:44:21 +00:00
|
|
|
else
|
|
|
|
bounds.expand_to(points[i]);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (points[i].y > highest_y) {
|
|
|
|
highest_idx = i;
|
|
|
|
highest_y = points[i].y;
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
int ni = (i + 1) % len;
|
|
|
|
sum += (points[ni].x - points[i].x) * (points[ni].y + points[i].y);
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bounds = bounds.grow(invert_border);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector2 ep[7] = {
|
|
|
|
Vector2(points[highest_idx].x, points[highest_idx].y + invert_border),
|
2017-06-03 22:25:13 +00:00
|
|
|
Vector2(bounds.position + bounds.size),
|
|
|
|
Vector2(bounds.position + Vector2(bounds.size.x, 0)),
|
|
|
|
Vector2(bounds.position),
|
|
|
|
Vector2(bounds.position + Vector2(0, bounds.size.y)),
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector2(points[highest_idx].x - CMP_EPSILON, points[highest_idx].y + invert_border),
|
|
|
|
Vector2(points[highest_idx].x - CMP_EPSILON, points[highest_idx].y),
|
2014-07-07 20:44:21 +00:00
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (sum > 0) {
|
|
|
|
SWAP(ep[1], ep[4]);
|
|
|
|
SWAP(ep[2], ep[3]);
|
|
|
|
SWAP(ep[5], ep[0]);
|
2018-07-25 01:11:03 +00:00
|
|
|
SWAP(ep[6], points.write[highest_idx]);
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
points.resize(points.size() + 7);
|
|
|
|
for (int i = points.size() - 1; i >= highest_idx + 7; i--) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2018-07-25 01:11:03 +00:00
|
|
|
points.write[i] = points[i - 7];
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 7; i++) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2018-07-25 01:11:03 +00:00
|
|
|
points.write[highest_idx + i + 1] = ep[i];
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
len = points.size();
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (texture.is_valid()) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Transform2D texmat(tex_rot, tex_ofs);
|
2014-07-07 20:44:21 +00:00
|
|
|
texmat.scale(tex_scale);
|
2017-08-21 19:15:36 +00:00
|
|
|
Size2 tex_size = texture->get_size();
|
2019-01-08 22:10:24 +00:00
|
|
|
|
|
|
|
uvs.resize(len);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (points.size() == uv.size()) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-01-07 21:25:37 +00:00
|
|
|
PoolVector<Vector2>::Read uvr = uv.read();
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < len; i++) {
|
2018-07-25 01:11:03 +00:00
|
|
|
uvs.write[i] = texmat.xform(uvr[i]) / tex_size;
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < len; i++) {
|
2018-07-25 01:11:03 +00:00
|
|
|
uvs.write[i] = texmat.xform(points[i]) / tex_size;
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-23 12:35:43 +00:00
|
|
|
if (skeleton_node && !invert && bone_weights.size()) {
|
2018-05-03 20:29:15 +00:00
|
|
|
//a skeleton is set! fill indices and weights
|
2019-01-08 22:10:24 +00:00
|
|
|
int vc = len;
|
2018-05-03 20:29:15 +00:00
|
|
|
bones.resize(vc * 4);
|
|
|
|
weights.resize(vc * 4);
|
|
|
|
|
|
|
|
int *bonesw = bones.ptrw();
|
|
|
|
float *weightsw = weights.ptrw();
|
|
|
|
|
|
|
|
for (int i = 0; i < vc * 4; i++) {
|
|
|
|
bonesw[i] = 0;
|
|
|
|
weightsw[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < bone_weights.size(); i++) {
|
|
|
|
if (bone_weights[i].weights.size() != points.size()) {
|
|
|
|
continue; //different number of vertices, sorry not using.
|
|
|
|
}
|
|
|
|
if (!skeleton_node->has_node(bone_weights[i].path)) {
|
|
|
|
continue; //node does not exist
|
|
|
|
}
|
|
|
|
Bone2D *bone = Object::cast_to<Bone2D>(skeleton_node->get_node(bone_weights[i].path));
|
|
|
|
if (!bone) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bone_index = bone->get_index_in_skeleton();
|
|
|
|
PoolVector<float>::Read r = bone_weights[i].weights.read();
|
|
|
|
for (int j = 0; j < vc; j++) {
|
|
|
|
if (r[j] == 0.0)
|
|
|
|
continue; //weight is unpainted, skip
|
|
|
|
//find an index with a weight
|
|
|
|
for (int k = 0; k < 4; k++) {
|
|
|
|
if (weightsw[j * 4 + k] < r[j]) {
|
|
|
|
//this is less than this weight, insert weight!
|
|
|
|
for (int l = 3; l > k; l--) {
|
|
|
|
weightsw[j * 4 + l] = weightsw[j * 4 + l - 1];
|
|
|
|
bonesw[j * 4 + l] = bonesw[j * 4 + l - 1];
|
|
|
|
}
|
|
|
|
weightsw[j * 4 + k] = r[j];
|
|
|
|
bonesw[j * 4 + k] = bone_index;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//normalize the weights
|
|
|
|
for (int i = 0; i < vc; i++) {
|
|
|
|
float tw = 0;
|
|
|
|
for (int j = 0; j < 4; j++) {
|
|
|
|
tw += weightsw[i * 4 + j];
|
|
|
|
}
|
|
|
|
if (tw == 0)
|
|
|
|
continue; //unpainted, do nothing
|
|
|
|
|
|
|
|
//normalize
|
|
|
|
for (int j = 0; j < 4; j++) {
|
|
|
|
weightsw[i * 4 + j] /= tw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-07 20:44:21 +00:00
|
|
|
Vector<Color> colors;
|
2019-01-08 22:10:24 +00:00
|
|
|
if (vertex_colors.size() == points.size()) {
|
|
|
|
colors.resize(len);
|
2017-03-05 15:44:50 +00:00
|
|
|
PoolVector<Color>::Read color_r = vertex_colors.read();
|
2019-01-08 22:10:24 +00:00
|
|
|
for (int i = 0; i < len; i++) {
|
2018-07-25 01:11:03 +00:00
|
|
|
colors.write[i] = color_r[i];
|
2016-05-23 01:40:45 +00:00
|
|
|
}
|
2019-01-08 22:10:24 +00:00
|
|
|
} else {
|
|
|
|
colors.push_back(color);
|
2016-05-23 01:40:45 +00:00
|
|
|
}
|
|
|
|
|
2017-08-19 16:14:04 +00:00
|
|
|
// Vector<int> indices = Geometry::triangulate_polygon(points);
|
|
|
|
// VS::get_singleton()->canvas_item_add_triangle_array(get_canvas_item(), indices, points, colors, uvs, texture.is_valid() ? texture->get_rid() : RID());
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
if (invert || polygons.size() == 0) {
|
2018-05-03 20:29:15 +00:00
|
|
|
Vector<int> indices = Geometry::triangulate_polygon(points);
|
2019-03-02 15:04:24 +00:00
|
|
|
if (indices.size()) {
|
2019-11-24 10:00:02 +00:00
|
|
|
VS::get_singleton()->canvas_item_add_triangle_array(get_canvas_item(), indices, points, colors, uvs, bones, weights, texture.is_valid() ? texture->get_rid() : RID(), -1, RID(), antialiased);
|
2019-03-02 15:04:24 +00:00
|
|
|
}
|
2018-02-25 15:06:30 +00:00
|
|
|
} else {
|
2019-01-08 22:10:24 +00:00
|
|
|
//draw individual polygons
|
|
|
|
Vector<int> total_indices;
|
|
|
|
for (int i = 0; i < polygons.size(); i++) {
|
|
|
|
PoolVector<int> src_indices = polygons[i];
|
|
|
|
int ic = src_indices.size();
|
|
|
|
if (ic < 3)
|
|
|
|
continue;
|
|
|
|
PoolVector<int>::Read r = src_indices.read();
|
|
|
|
|
|
|
|
Vector<Vector2> tmp_points;
|
|
|
|
tmp_points.resize(ic);
|
|
|
|
|
|
|
|
for (int j = 0; j < ic; j++) {
|
|
|
|
int idx = r[j];
|
|
|
|
ERR_CONTINUE(idx < 0 || idx >= points.size());
|
|
|
|
tmp_points.write[j] = points[r[j]];
|
|
|
|
}
|
|
|
|
Vector<int> indices = Geometry::triangulate_polygon(tmp_points);
|
|
|
|
int ic2 = indices.size();
|
|
|
|
const int *r2 = indices.ptr();
|
|
|
|
|
|
|
|
int bic = total_indices.size();
|
|
|
|
total_indices.resize(bic + ic2);
|
|
|
|
int *w2 = total_indices.ptrw();
|
|
|
|
|
|
|
|
for (int j = 0; j < ic2; j++) {
|
|
|
|
w2[j + bic] = r[r2[j]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (total_indices.size()) {
|
2019-11-24 10:00:02 +00:00
|
|
|
VS::get_singleton()->canvas_item_add_triangle_array(get_canvas_item(), total_indices, points, colors, uvs, bones, weights, texture.is_valid() ? texture->get_rid() : RID(), -1, RID(), antialiased);
|
2019-01-08 22:10:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
2018-02-25 15:06:30 +00:00
|
|
|
//use splits
|
|
|
|
Vector<int> loop;
|
|
|
|
int sc = splits.size();
|
|
|
|
PoolVector<int>::Read r = splits.read();
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
|
|
|
|
print_line("has splits, amount " + itos(splits.size()));
|
2018-02-25 15:06:30 +00:00
|
|
|
Vector<Vector<int> > loops;
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
// find a point that can be used to begin, must not be in a split, and have to the left and right the same one
|
|
|
|
// like this one -> x---o
|
|
|
|
// \ / \ .
|
|
|
|
// o---o
|
|
|
|
int base_point = -1;
|
|
|
|
{
|
|
|
|
int current_point = -1;
|
|
|
|
int base_point_prev_split = -1;
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < points.size(); i++) {
|
|
|
|
|
|
|
|
//find if this point is in a split
|
|
|
|
int split_index = -1;
|
|
|
|
bool has_prev_split = false;
|
|
|
|
int min_dist_to_end = 0x7FFFFFFF;
|
|
|
|
|
|
|
|
for (int j = 0; j < sc; j += 2) {
|
|
|
|
|
|
|
|
int split_pos = -1;
|
|
|
|
int split_end = -1;
|
|
|
|
|
|
|
|
if (r[j + 0] == i) { //found split in first point
|
|
|
|
split_pos = r[j + 0];
|
|
|
|
split_end = r[j + 1];
|
|
|
|
} else if (r[j + 1] == i) { //found split in second point
|
|
|
|
split_pos = r[j + 1];
|
|
|
|
split_end = r[j + 0];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (split_pos == split_end) {
|
|
|
|
continue; //either nothing found or begin == end, this not a split in either case
|
|
|
|
}
|
|
|
|
|
|
|
|
if (j == base_point_prev_split) {
|
|
|
|
has_prev_split = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//compute distance from split pos to split end in current traversal direction
|
|
|
|
int dist_to_end = split_end > split_pos ? split_end - split_pos : (last - split_pos + split_end);
|
|
|
|
|
|
|
|
if (dist_to_end < min_dist_to_end) {
|
|
|
|
//always keep the valid split with the least distance to the loop
|
|
|
|
min_dist_to_end = dist_to_end;
|
|
|
|
split_index = j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (split_index == -1) {
|
|
|
|
current_point = i; //no split here, we are testing this point
|
|
|
|
} else if (has_prev_split) {
|
|
|
|
base_point = current_point; // there is a split and it contains the previous visited split, success
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
//invalidate current point and keep split
|
|
|
|
current_point = -1;
|
|
|
|
base_point_prev_split = split_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print_line("found base point: " + itos(base_point));
|
2018-02-25 15:06:30 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
if (base_point != -1) {
|
2018-02-25 15:06:30 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
int point = base_point;
|
|
|
|
int last = base_point;
|
|
|
|
//go through all the points, find splits
|
2018-02-25 15:06:30 +00:00
|
|
|
do {
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
int split;
|
|
|
|
int last_dist_to_end = -1; //maximum valid distance to end
|
2018-02-25 15:06:30 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
do {
|
2018-02-25 15:06:30 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
loop.push_back(point); //push current point
|
|
|
|
|
|
|
|
split = -1;
|
|
|
|
int end = -1;
|
|
|
|
|
|
|
|
int max_dist_to_end = 0;
|
|
|
|
|
|
|
|
//find if this point is in a split
|
|
|
|
for (int j = 0; j < sc; j += 2) {
|
|
|
|
|
|
|
|
int split_pos = -1;
|
|
|
|
int split_end = -1;
|
|
|
|
|
|
|
|
if (r[j + 0] == point) { //match first split index
|
|
|
|
split_pos = r[j + 0];
|
|
|
|
split_end = r[j + 1];
|
|
|
|
} else if (r[j + 1] == point) { //match second split index
|
|
|
|
split_pos = r[j + 1];
|
|
|
|
split_end = r[j + 0];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (split_pos == split_end) {
|
|
|
|
continue; //either nothing found or begin == end, this not a split in either case
|
|
|
|
}
|
|
|
|
|
|
|
|
//compute distance from split pos to split end
|
|
|
|
int dist_to_end = split_end > split_pos ? split_end - split_pos : (points.size() - split_pos + split_end);
|
|
|
|
|
|
|
|
if (last_dist_to_end != -1 && dist_to_end >= last_dist_to_end) {
|
|
|
|
//distance must be shorter than in last iteration, means we've tested this before so ignore
|
|
|
|
continue;
|
|
|
|
} else if (dist_to_end > max_dist_to_end) {
|
|
|
|
//always keep the valid point with the most distance (as long as it's valid)
|
|
|
|
max_dist_to_end = dist_to_end;
|
|
|
|
split = split_pos;
|
|
|
|
end = split_end;
|
2018-02-25 15:06:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
if (split != -1) {
|
|
|
|
//found a split!
|
|
|
|
int from = end;
|
|
|
|
|
|
|
|
//add points until last is reached
|
|
|
|
while (true) {
|
|
|
|
//find if point is in a split
|
|
|
|
loop.push_back(from);
|
|
|
|
|
|
|
|
if (from == last) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
from++;
|
|
|
|
if (from >= points.size()) { //wrap if reached end
|
|
|
|
from = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (from == loop[0]) {
|
|
|
|
break; //end because we reached split source
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
loops.push_back(loop); //done with this loop
|
|
|
|
loop.clear();
|
|
|
|
|
|
|
|
last_dist_to_end = max_dist_to_end;
|
|
|
|
last = end; //algorithm can safely finish in this split point
|
2018-02-25 15:06:30 +00:00
|
|
|
}
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
} while (split != -1);
|
|
|
|
|
|
|
|
} while (point != last);
|
2018-02-25 15:06:30 +00:00
|
|
|
}
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
if (loop.size() >=2 ) { //points remained
|
|
|
|
//points remain
|
|
|
|
loop.push_back(last); //no splits found, use last
|
2018-02-25 15:06:30 +00:00
|
|
|
loops.push_back(loop);
|
|
|
|
}
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
print_line("total loops: " + itos(loops.size()));
|
2018-02-25 15:06:30 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
if (loops.size()) { //loops found
|
|
|
|
Vector<int> indices;
|
|
|
|
|
|
|
|
for (int i = 0; i < loops.size(); i++) {
|
|
|
|
Vector<int> loop = loops[i];
|
|
|
|
Vector<Vector2> vertices;
|
|
|
|
vertices.resize(loop.size());
|
|
|
|
for (int j = 0; j < vertices.size(); j++) {
|
|
|
|
vertices.write[j] = points[loop[j]];
|
|
|
|
}
|
|
|
|
Vector<int> sub_indices = Geometry::triangulate_polygon(vertices);
|
|
|
|
int from = indices.size();
|
|
|
|
indices.resize(from + sub_indices.size());
|
|
|
|
for (int j = 0; j < sub_indices.size(); j++) {
|
|
|
|
indices.write[from + j] = loop[sub_indices[j]];
|
|
|
|
}
|
2018-02-25 15:06:30 +00:00
|
|
|
}
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
VS::get_singleton()->canvas_item_add_triangle_array(get_canvas_item(), indices, points, colors, uvs, bones, weights, texture.is_valid() ? texture->get_rid() : RID());
|
|
|
|
}
|
|
|
|
#endif
|
2018-02-25 15:06:30 +00:00
|
|
|
}
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_polygon(const PoolVector<Vector2> &p_polygon) {
|
|
|
|
polygon = p_polygon;
|
|
|
|
rect_cache_dirty = true;
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
PoolVector<Vector2> Polygon2D::get_polygon() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return polygon;
|
|
|
|
}
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
void Polygon2D::set_internal_vertex_count(int p_count) {
|
|
|
|
|
|
|
|
internal_vertices = p_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Polygon2D::get_internal_vertex_count() const {
|
|
|
|
return internal_vertices;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_uv(const PoolVector<Vector2> &p_uv) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
uv = p_uv;
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
PoolVector<Vector2> Polygon2D::get_uv() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return uv;
|
|
|
|
}
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
void Polygon2D::set_polygons(const Array &p_polygons) {
|
2018-02-25 15:06:30 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
polygons = p_polygons;
|
2018-02-25 15:06:30 +00:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
Array Polygon2D::get_polygons() const {
|
2018-02-25 15:06:30 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
return polygons;
|
2018-02-25 15:06:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_color(const Color &p_color) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
color = p_color;
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
Color Polygon2D::get_color() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_vertex_colors(const PoolVector<Color> &p_colors) {
|
2016-05-23 01:40:45 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
vertex_colors = p_colors;
|
2016-05-23 01:40:45 +00:00
|
|
|
update();
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
PoolVector<Color> Polygon2D::get_vertex_colors() const {
|
2016-05-23 01:40:45 +00:00
|
|
|
|
|
|
|
return vertex_colors;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_texture(const Ref<Texture> &p_texture) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
texture = p_texture;
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2015-04-29 01:05:01 +00:00
|
|
|
/*if (texture.is_valid()) {
|
2014-07-07 20:44:21 +00:00
|
|
|
uint32_t flags=texture->get_flags();
|
|
|
|
flags&=~Texture::FLAG_REPEAT;
|
|
|
|
if (tex_tile)
|
|
|
|
flags|=Texture::FLAG_REPEAT;
|
|
|
|
|
|
|
|
texture->set_flags(flags);
|
2015-04-29 01:05:01 +00:00
|
|
|
}*/
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
Ref<Texture> Polygon2D::get_texture() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_texture_offset(const Vector2 &p_offset) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
tex_ofs = p_offset;
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector2 Polygon2D::get_texture_offset() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return tex_ofs;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_texture_rotation(float p_rot) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
tex_rot = p_rot;
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
float Polygon2D::get_texture_rotation() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return tex_rot;
|
|
|
|
}
|
|
|
|
|
2017-11-10 10:07:52 +00:00
|
|
|
void Polygon2D::set_texture_rotation_degrees(float p_rot) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
set_texture_rotation(Math::deg2rad(p_rot));
|
|
|
|
}
|
2017-11-10 10:07:52 +00:00
|
|
|
float Polygon2D::get_texture_rotation_degrees() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return Math::rad2deg(get_texture_rotation());
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_texture_scale(const Size2 &p_scale) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
tex_scale = p_scale;
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
Size2 Polygon2D::get_texture_scale() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return tex_scale;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_invert(bool p_invert) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
invert = p_invert;
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
bool Polygon2D::get_invert() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return invert;
|
|
|
|
}
|
|
|
|
|
2017-08-19 16:14:04 +00:00
|
|
|
void Polygon2D::set_antialiased(bool p_antialiased) {
|
|
|
|
|
|
|
|
antialiased = p_antialiased;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
bool Polygon2D::get_antialiased() const {
|
|
|
|
|
|
|
|
return antialiased;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_invert_border(float p_invert_border) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
invert_border = p_invert_border;
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
float Polygon2D::get_invert_border() const {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
|
|
|
return invert_border;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Polygon2D::set_offset(const Vector2 &p_offset) {
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
offset = p_offset;
|
|
|
|
rect_cache_dirty = true;
|
2014-07-07 20:44:21 +00:00
|
|
|
update();
|
2017-11-07 07:58:35 +00:00
|
|
|
_change_notify("offset");
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Vector2 Polygon2D::get_offset() const {
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
2018-05-02 14:00:35 +00:00
|
|
|
void Polygon2D::add_bone(const NodePath &p_path, const PoolVector<float> &p_weights) {
|
|
|
|
|
|
|
|
Bone bone;
|
|
|
|
bone.path = p_path;
|
|
|
|
bone.weights = p_weights;
|
|
|
|
bone_weights.push_back(bone);
|
|
|
|
}
|
|
|
|
int Polygon2D::get_bone_count() const {
|
|
|
|
return bone_weights.size();
|
|
|
|
}
|
|
|
|
NodePath Polygon2D::get_bone_path(int p_index) const {
|
|
|
|
ERR_FAIL_INDEX_V(p_index, bone_weights.size(), NodePath());
|
|
|
|
return bone_weights[p_index].path;
|
|
|
|
}
|
|
|
|
PoolVector<float> Polygon2D::get_bone_weights(int p_index) const {
|
|
|
|
|
|
|
|
ERR_FAIL_INDEX_V(p_index, bone_weights.size(), PoolVector<float>());
|
|
|
|
return bone_weights[p_index].weights;
|
|
|
|
}
|
|
|
|
void Polygon2D::erase_bone(int p_idx) {
|
|
|
|
|
|
|
|
ERR_FAIL_INDEX(p_idx, bone_weights.size());
|
|
|
|
bone_weights.remove(p_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Polygon2D::clear_bones() {
|
|
|
|
bone_weights.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Polygon2D::set_bone_weights(int p_index, const PoolVector<float> &p_weights) {
|
|
|
|
ERR_FAIL_INDEX(p_index, bone_weights.size());
|
2018-07-25 01:11:03 +00:00
|
|
|
bone_weights.write[p_index].weights = p_weights;
|
2018-05-02 14:00:35 +00:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
void Polygon2D::set_bone_path(int p_index, const NodePath &p_path) {
|
|
|
|
ERR_FAIL_INDEX(p_index, bone_weights.size());
|
2018-07-25 01:11:03 +00:00
|
|
|
bone_weights.write[p_index].path = p_path;
|
2018-05-02 14:00:35 +00:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
Array Polygon2D::_get_bones() const {
|
|
|
|
Array bones;
|
|
|
|
for (int i = 0; i < get_bone_count(); i++) {
|
|
|
|
bones.push_back(get_bone_path(i));
|
|
|
|
bones.push_back(get_bone_weights(i));
|
|
|
|
}
|
|
|
|
return bones;
|
|
|
|
}
|
|
|
|
void Polygon2D::_set_bones(const Array &p_bones) {
|
|
|
|
|
|
|
|
ERR_FAIL_COND(p_bones.size() & 1);
|
|
|
|
clear_bones();
|
|
|
|
for (int i = 0; i < p_bones.size(); i += 2) {
|
|
|
|
add_bone(p_bones[i], p_bones[i + 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Polygon2D::set_skeleton(const NodePath &p_skeleton) {
|
2018-05-03 20:29:15 +00:00
|
|
|
if (skeleton == p_skeleton)
|
|
|
|
return;
|
2018-05-02 14:00:35 +00:00
|
|
|
skeleton = p_skeleton;
|
|
|
|
update();
|
|
|
|
}
|
2018-05-03 20:29:15 +00:00
|
|
|
|
2018-05-02 14:00:35 +00:00
|
|
|
NodePath Polygon2D::get_skeleton() const {
|
|
|
|
return skeleton;
|
|
|
|
}
|
|
|
|
|
2014-07-07 20:44:21 +00:00
|
|
|
void Polygon2D::_bind_methods() {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_polygon", "polygon"), &Polygon2D::set_polygon);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_polygon"), &Polygon2D::get_polygon);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_uv", "uv"), &Polygon2D::set_uv);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_uv"), &Polygon2D::get_uv);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_color", "color"), &Polygon2D::set_color);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_color"), &Polygon2D::get_color);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_polygons", "polygons"), &Polygon2D::set_polygons);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_polygons"), &Polygon2D::get_polygons);
|
2018-02-25 15:06:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_vertex_colors", "vertex_colors"), &Polygon2D::set_vertex_colors);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_vertex_colors"), &Polygon2D::get_vertex_colors);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_texture", "texture"), &Polygon2D::set_texture);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_texture"), &Polygon2D::get_texture);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_texture_offset", "texture_offset"), &Polygon2D::set_texture_offset);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_texture_offset"), &Polygon2D::get_texture_offset);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_texture_rotation", "texture_rotation"), &Polygon2D::set_texture_rotation);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_texture_rotation"), &Polygon2D::get_texture_rotation);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-11-10 10:07:52 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_texture_rotation_degrees", "texture_rotation"), &Polygon2D::set_texture_rotation_degrees);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_texture_rotation_degrees"), &Polygon2D::get_texture_rotation_degrees);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_texture_scale", "texture_scale"), &Polygon2D::set_texture_scale);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_texture_scale"), &Polygon2D::get_texture_scale);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_invert", "invert"), &Polygon2D::set_invert);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_invert"), &Polygon2D::get_invert);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-08-19 16:14:04 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_antialiased", "antialiased"), &Polygon2D::set_antialiased);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_antialiased"), &Polygon2D::get_antialiased);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_invert_border", "invert_border"), &Polygon2D::set_invert_border);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_invert_border"), &Polygon2D::get_invert_border);
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_offset", "offset"), &Polygon2D::set_offset);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_offset"), &Polygon2D::get_offset);
|
2017-01-04 04:16:14 +00:00
|
|
|
|
2018-05-02 14:00:35 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("add_bone", "path", "weights"), &Polygon2D::add_bone);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_bone_count"), &Polygon2D::get_bone_count);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_bone_path", "index"), &Polygon2D::get_bone_path);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_bone_weights", "index"), &Polygon2D::get_bone_weights);
|
|
|
|
ClassDB::bind_method(D_METHOD("erase_bone", "index"), &Polygon2D::erase_bone);
|
|
|
|
ClassDB::bind_method(D_METHOD("clear_bones"), &Polygon2D::clear_bones);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_bone_path", "index", "path"), &Polygon2D::set_bone_path);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_bone_weights", "index", "weights"), &Polygon2D::set_bone_weights);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_skeleton", "skeleton"), &Polygon2D::set_skeleton);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_skeleton"), &Polygon2D::get_skeleton);
|
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_internal_vertex_count", "internal_vertex_count"), &Polygon2D::set_internal_vertex_count);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_internal_vertex_count"), &Polygon2D::get_internal_vertex_count);
|
|
|
|
|
2018-05-02 14:00:35 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_set_bones", "bones"), &Polygon2D::_set_bones);
|
|
|
|
ClassDB::bind_method(D_METHOD("_get_bones"), &Polygon2D::_get_bones);
|
|
|
|
|
2019-02-16 23:08:17 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_skeleton_bone_setup_changed"), &Polygon2D::_skeleton_bone_setup_changed);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "color"), "set_color", "get_color");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "offset"), "set_offset", "get_offset");
|
2017-08-19 16:14:04 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "antialiased"), "set_antialiased", "get_antialiased");
|
2017-03-05 15:44:50 +00:00
|
|
|
ADD_GROUP("Texture", "");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_texture", "get_texture");
|
|
|
|
ADD_GROUP("Texture", "texture_");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "texture_offset"), "set_texture_offset", "get_texture_offset");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "texture_scale"), "set_texture_scale", "get_texture_scale");
|
2019-09-30 15:13:57 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "texture_rotation_degrees", PROPERTY_HINT_RANGE, "-360,360,0.1,or_lesser,or_greater"), "set_texture_rotation_degrees", "get_texture_rotation_degrees");
|
2018-01-11 22:35:12 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "texture_rotation", PROPERTY_HINT_NONE, "", 0), "set_texture_rotation", "get_texture_rotation");
|
2018-05-02 14:00:35 +00:00
|
|
|
ADD_GROUP("Skeleton", "");
|
2018-06-27 23:50:25 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH, "skeleton", PROPERTY_HINT_NODE_PATH_VALID_TYPES, "Skeleton2D"), "set_skeleton", "get_skeleton");
|
2014-07-07 20:44:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ADD_GROUP("Invert", "invert_");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "invert_enable"), "set_invert", "get_invert");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "invert_border", PROPERTY_HINT_RANGE, "0.1,16384,0.1"), "set_invert_border", "get_invert_border");
|
2018-05-02 14:00:35 +00:00
|
|
|
|
2019-01-08 22:10:24 +00:00
|
|
|
ADD_GROUP("Data", "");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::POOL_VECTOR2_ARRAY, "polygon"), "set_polygon", "get_polygon");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::POOL_VECTOR2_ARRAY, "uv"), "set_uv", "get_uv");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::POOL_COLOR_ARRAY, "vertex_colors"), "set_vertex_colors", "get_vertex_colors");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "polygons"), "set_polygons", "get_polygons");
|
2018-05-02 14:00:35 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "bones", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR), "_set_bones", "_get_bones");
|
2019-01-08 22:10:24 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "internal_vertex_count", PROPERTY_HINT_RANGE, "0,1000"), "set_internal_vertex_count", "get_internal_vertex_count");
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Polygon2D::Polygon2D() {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
invert = 0;
|
|
|
|
invert_border = 100;
|
2017-08-19 16:14:04 +00:00
|
|
|
antialiased = false;
|
2017-03-05 15:44:50 +00:00
|
|
|
tex_rot = 0;
|
|
|
|
tex_tile = true;
|
|
|
|
tex_scale = Vector2(1, 1);
|
|
|
|
color = Color(1, 1, 1);
|
|
|
|
rect_cache_dirty = true;
|
2019-01-08 22:10:24 +00:00
|
|
|
internal_vertices = 0;
|
2019-02-16 23:08:17 +00:00
|
|
|
current_skeleton_id = 0;
|
2014-07-07 20:44:21 +00:00
|
|
|
}
|