Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/scene/2d/polygon_2d.cpp
9896 views
1
/**************************************************************************/
2
/* polygon_2d.cpp */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#include "polygon_2d.h"
32
33
#include "core/math/geometry_2d.h"
34
#ifndef NAVIGATION_2D_DISABLED
35
#include "scene/resources/2d/navigation_mesh_source_geometry_data_2d.h"
36
#include "scene/resources/2d/navigation_polygon.h"
37
#include "servers/navigation_server_2d.h"
38
#endif // NAVIGATION_2D_DISABLED
39
#include "skeleton_2d.h"
40
41
#ifndef NAVIGATION_2D_DISABLED
42
Callable Polygon2D::_navmesh_source_geometry_parsing_callback;
43
RID Polygon2D::_navmesh_source_geometry_parser;
44
#endif // NAVIGATION_2D_DISABLED
45
46
#ifdef TOOLS_ENABLED
47
Dictionary Polygon2D::_edit_get_state() const {
48
Dictionary state = Node2D::_edit_get_state();
49
state["offset"] = offset;
50
return state;
51
}
52
53
void Polygon2D::_edit_set_state(const Dictionary &p_state) {
54
Node2D::_edit_set_state(p_state);
55
set_offset(p_state["offset"]);
56
}
57
58
void Polygon2D::_edit_set_pivot(const Point2 &p_pivot) {
59
set_position(get_transform().xform(p_pivot));
60
set_offset(get_offset() - p_pivot);
61
}
62
63
Point2 Polygon2D::_edit_get_pivot() const {
64
return Vector2();
65
}
66
67
bool Polygon2D::_edit_use_pivot() const {
68
return true;
69
}
70
#endif // TOOLS_ENABLED
71
72
#ifdef DEBUG_ENABLED
73
Rect2 Polygon2D::_edit_get_rect() const {
74
if (rect_cache_dirty) {
75
int l = polygon.size();
76
const Vector2 *r = polygon.ptr();
77
item_rect = Rect2();
78
for (int i = 0; i < l; i++) {
79
Vector2 pos = r[i] + offset;
80
if (i == 0) {
81
item_rect.position = pos;
82
} else {
83
item_rect.expand_to(pos);
84
}
85
}
86
rect_cache_dirty = false;
87
}
88
89
return item_rect;
90
}
91
92
bool Polygon2D::_edit_use_rect() const {
93
return polygon.size() > 0;
94
}
95
96
bool Polygon2D::_edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const {
97
Vector<Vector2> polygon2d = Variant(polygon);
98
if (internal_vertices > 0) {
99
polygon2d.resize(MAX(polygon2d.size() - internal_vertices, 0));
100
}
101
return Geometry2D::is_point_in_polygon(p_point - get_offset(), polygon2d);
102
}
103
#endif // DEBUG_ENABLED
104
105
void Polygon2D::_skeleton_bone_setup_changed() {
106
queue_redraw();
107
}
108
109
void Polygon2D::_notification(int p_what) {
110
if (p_what == NOTIFICATION_TRANSFORM_CHANGED && !Engine::get_singleton()->is_editor_hint()) {
111
return; // Mesh recreation for NOTIFICATION_TRANSFORM_CHANGED is only needed in editor.
112
}
113
114
switch (p_what) {
115
case NOTIFICATION_TRANSFORM_CHANGED:
116
case NOTIFICATION_DRAW: {
117
if (polygon.size() < 3) {
118
return;
119
}
120
121
Skeleton2D *skeleton_node = nullptr;
122
if (has_node(skeleton)) {
123
skeleton_node = Object::cast_to<Skeleton2D>(get_node(skeleton));
124
}
125
126
ObjectID new_skeleton_id;
127
128
if (skeleton_node && !invert && bone_weights.size()) {
129
RS::get_singleton()->canvas_item_attach_skeleton(get_canvas_item(), skeleton_node->get_skeleton());
130
new_skeleton_id = skeleton_node->get_instance_id();
131
} else {
132
RS::get_singleton()->canvas_item_attach_skeleton(get_canvas_item(), RID());
133
}
134
135
if (new_skeleton_id != current_skeleton_id) {
136
Object *old_skeleton = ObjectDB::get_instance(current_skeleton_id);
137
if (old_skeleton) {
138
old_skeleton->disconnect("bone_setup_changed", callable_mp(this, &Polygon2D::_skeleton_bone_setup_changed));
139
}
140
141
if (skeleton_node) {
142
skeleton_node->connect("bone_setup_changed", callable_mp(this, &Polygon2D::_skeleton_bone_setup_changed));
143
}
144
145
current_skeleton_id = new_skeleton_id;
146
}
147
148
Vector<Vector2> points;
149
Vector<Vector2> uvs;
150
Vector<int> bones;
151
Vector<float> weights;
152
153
int len = polygon.size();
154
if ((invert || polygons.is_empty()) && internal_vertices > 0) {
155
//if no polygons are around, internal vertices must not be drawn, else let them be
156
len -= internal_vertices;
157
}
158
159
if (len <= 0) {
160
return;
161
}
162
points.resize(len);
163
164
{
165
const Vector2 *polyr = polygon.ptr();
166
for (int i = 0; i < len; i++) {
167
points.write[i] = polyr[i] + offset;
168
}
169
}
170
171
if (invert) {
172
Rect2 bounds;
173
int highest_idx = -1;
174
real_t highest_y = -1e20;
175
real_t sum = 0.0;
176
177
for (int i = 0; i < len; i++) {
178
if (i == 0) {
179
bounds.position = points[i];
180
} else {
181
bounds.expand_to(points[i]);
182
}
183
if (points[i].y > highest_y) {
184
highest_idx = i;
185
highest_y = points[i].y;
186
}
187
int ni = (i + 1) % len;
188
sum += (points[ni].x - points[i].x) * (points[ni].y + points[i].y);
189
}
190
191
bounds = bounds.grow(invert_border);
192
193
Vector2 ep[7] = {
194
Vector2(points[highest_idx].x, points[highest_idx].y + invert_border),
195
Vector2(bounds.position + bounds.size),
196
Vector2(bounds.position + Vector2(bounds.size.x, 0)),
197
Vector2(bounds.position),
198
Vector2(bounds.position + Vector2(0, bounds.size.y)),
199
Vector2(points[highest_idx].x - CMP_EPSILON, points[highest_idx].y + invert_border),
200
Vector2(points[highest_idx].x - CMP_EPSILON, points[highest_idx].y),
201
};
202
203
if (sum > 0) {
204
SWAP(ep[1], ep[4]);
205
SWAP(ep[2], ep[3]);
206
SWAP(ep[5], ep[0]);
207
SWAP(ep[6], points.write[highest_idx]);
208
}
209
210
points.resize(points.size() + 7);
211
for (int i = points.size() - 1; i >= highest_idx + 7; i--) {
212
points.write[i] = points[i - 7];
213
}
214
215
for (int i = 0; i < 7; i++) {
216
points.write[highest_idx + i + 1] = ep[i];
217
}
218
219
len = points.size();
220
}
221
222
if (texture.is_valid()) {
223
Transform2D texmat(tex_rot, tex_ofs);
224
texmat.scale(tex_scale);
225
Size2 tex_size = texture->get_size();
226
227
uvs.resize(len);
228
229
if (points.size() == uv.size()) {
230
const Vector2 *uvr = uv.ptr();
231
232
for (int i = 0; i < len; i++) {
233
uvs.write[i] = texmat.xform(uvr[i]) / tex_size;
234
}
235
236
} else {
237
for (int i = 0; i < len; i++) {
238
uvs.write[i] = texmat.xform(points[i]) / tex_size;
239
}
240
}
241
}
242
243
if (skeleton_node && !invert && bone_weights.size()) {
244
//a skeleton is set! fill indices and weights
245
int vc = len;
246
bones.resize(vc * 4);
247
weights.resize(vc * 4);
248
249
int *bonesw = bones.ptrw();
250
float *weightsw = weights.ptrw();
251
252
for (int i = 0; i < vc * 4; i++) {
253
bonesw[i] = 0;
254
weightsw[i] = 0;
255
}
256
257
for (int i = 0; i < bone_weights.size(); i++) {
258
if (bone_weights[i].weights.size() != points.size()) {
259
continue; //different number of vertices, sorry not using.
260
}
261
if (!skeleton_node->has_node(bone_weights[i].path)) {
262
continue; //node does not exist
263
}
264
Bone2D *bone = Object::cast_to<Bone2D>(skeleton_node->get_node(bone_weights[i].path));
265
if (!bone) {
266
continue;
267
}
268
269
int bone_index = bone->get_index_in_skeleton();
270
const float *r = bone_weights[i].weights.ptr();
271
for (int j = 0; j < vc; j++) {
272
if (r[j] == 0.0) {
273
continue; //weight is unpainted, skip
274
}
275
//find an index with a weight
276
for (int k = 0; k < 4; k++) {
277
if (weightsw[j * 4 + k] < r[j]) {
278
//this is less than this weight, insert weight!
279
for (int l = 3; l > k; l--) {
280
weightsw[j * 4 + l] = weightsw[j * 4 + l - 1];
281
bonesw[j * 4 + l] = bonesw[j * 4 + l - 1];
282
}
283
weightsw[j * 4 + k] = r[j];
284
bonesw[j * 4 + k] = bone_index;
285
break;
286
}
287
}
288
}
289
}
290
291
//normalize the weights
292
for (int i = 0; i < vc; i++) {
293
real_t tw = 0.0;
294
for (int j = 0; j < 4; j++) {
295
tw += weightsw[i * 4 + j];
296
}
297
if (tw == 0) {
298
continue; //unpainted, do nothing
299
}
300
301
//normalize
302
for (int j = 0; j < 4; j++) {
303
weightsw[i * 4 + j] /= tw;
304
}
305
}
306
}
307
308
Vector<Color> colors;
309
colors.resize(len);
310
311
if (vertex_colors.size() == points.size()) {
312
const Color *color_r = vertex_colors.ptr();
313
for (int i = 0; i < len; i++) {
314
colors.write[i] = color_r[i];
315
}
316
} else {
317
for (int i = 0; i < len; i++) {
318
colors.write[i] = color;
319
}
320
}
321
322
Vector<int> index_array;
323
324
if (invert || polygons.is_empty()) {
325
index_array = Geometry2D::triangulate_polygon(points);
326
} else {
327
//draw individual polygons
328
for (int i = 0; i < polygons.size(); i++) {
329
Vector<int> src_indices = polygons[i];
330
int ic = src_indices.size();
331
if (ic < 3) {
332
continue;
333
}
334
const int *r = src_indices.ptr();
335
336
Vector<Vector2> tmp_points;
337
tmp_points.resize(ic);
338
339
for (int j = 0; j < ic; j++) {
340
int idx = r[j];
341
ERR_CONTINUE(idx < 0 || idx >= points.size());
342
tmp_points.write[j] = points[r[j]];
343
}
344
Vector<int> indices = Geometry2D::triangulate_polygon(tmp_points);
345
int ic2 = indices.size();
346
const int *r2 = indices.ptr();
347
348
int bic = index_array.size();
349
index_array.resize(bic + ic2);
350
int *w2 = index_array.ptrw();
351
352
for (int j = 0; j < ic2; j++) {
353
w2[j + bic] = r[r2[j]];
354
}
355
}
356
}
357
358
RS::get_singleton()->mesh_clear(mesh);
359
360
if (index_array.size()) {
361
Array arr;
362
arr.resize(RS::ARRAY_MAX);
363
arr[RS::ARRAY_VERTEX] = points;
364
if (uvs.size() == points.size()) {
365
arr[RS::ARRAY_TEX_UV] = uvs;
366
}
367
if (colors.size() == points.size()) {
368
arr[RS::ARRAY_COLOR] = colors;
369
}
370
371
if (bones.size() == points.size() * 4) {
372
arr[RS::ARRAY_BONES] = bones;
373
arr[RS::ARRAY_WEIGHTS] = weights;
374
}
375
376
arr[RS::ARRAY_INDEX] = index_array;
377
378
RS::SurfaceData sd;
379
380
if (skeleton_node) {
381
// Compute transform between mesh and skeleton for runtime AABB compute.
382
const Transform2D mesh_transform = get_global_transform();
383
const Transform2D skeleton_transform = skeleton_node->get_global_transform();
384
const Transform2D mesh_to_sk2d = skeleton_transform.affine_inverse() * mesh_transform;
385
386
// Convert 2d transform to 3d.
387
sd.mesh_to_skeleton_xform.basis.rows[0][0] = mesh_to_sk2d.columns[0][0];
388
sd.mesh_to_skeleton_xform.basis.rows[1][0] = mesh_to_sk2d.columns[0][1];
389
sd.mesh_to_skeleton_xform.origin.x = mesh_to_sk2d.get_origin().x;
390
391
sd.mesh_to_skeleton_xform.basis.rows[0][1] = mesh_to_sk2d.columns[1][0];
392
sd.mesh_to_skeleton_xform.basis.rows[1][1] = mesh_to_sk2d.columns[1][1];
393
sd.mesh_to_skeleton_xform.origin.y = mesh_to_sk2d.get_origin().y;
394
}
395
396
Error err = RS::get_singleton()->mesh_create_surface_data_from_arrays(&sd, RS::PRIMITIVE_TRIANGLES, arr, Array(), Dictionary(), RS::ARRAY_FLAG_USE_2D_VERTICES);
397
if (err != OK) {
398
return;
399
}
400
401
RS::get_singleton()->mesh_add_surface(mesh, sd);
402
RS::get_singleton()->canvas_item_add_mesh(get_canvas_item(), mesh, Transform2D(), Color(1, 1, 1), texture.is_valid() ? texture->get_rid() : RID());
403
}
404
405
} break;
406
}
407
}
408
409
void Polygon2D::set_polygon(const Vector<Vector2> &p_polygon) {
410
polygon = p_polygon;
411
rect_cache_dirty = true;
412
queue_redraw();
413
}
414
415
Vector<Vector2> Polygon2D::get_polygon() const {
416
return polygon;
417
}
418
419
void Polygon2D::set_internal_vertex_count(int p_count) {
420
internal_vertices = p_count;
421
}
422
423
int Polygon2D::get_internal_vertex_count() const {
424
return internal_vertices;
425
}
426
427
void Polygon2D::set_uv(const Vector<Vector2> &p_uv) {
428
uv = p_uv;
429
queue_redraw();
430
}
431
432
Vector<Vector2> Polygon2D::get_uv() const {
433
return uv;
434
}
435
436
void Polygon2D::set_polygons(const Array &p_polygons) {
437
polygons = p_polygons;
438
queue_redraw();
439
}
440
441
Array Polygon2D::get_polygons() const {
442
return polygons;
443
}
444
445
void Polygon2D::set_color(const Color &p_color) {
446
color = p_color;
447
queue_redraw();
448
}
449
450
Color Polygon2D::get_color() const {
451
return color;
452
}
453
454
void Polygon2D::set_vertex_colors(const Vector<Color> &p_colors) {
455
vertex_colors = p_colors;
456
queue_redraw();
457
}
458
459
Vector<Color> Polygon2D::get_vertex_colors() const {
460
return vertex_colors;
461
}
462
463
void Polygon2D::set_texture(const Ref<Texture2D> &p_texture) {
464
texture = p_texture;
465
queue_redraw();
466
}
467
468
Ref<Texture2D> Polygon2D::get_texture() const {
469
return texture;
470
}
471
472
void Polygon2D::set_texture_offset(const Vector2 &p_offset) {
473
tex_ofs = p_offset;
474
queue_redraw();
475
}
476
477
Vector2 Polygon2D::get_texture_offset() const {
478
return tex_ofs;
479
}
480
481
void Polygon2D::set_texture_rotation(real_t p_rot) {
482
tex_rot = p_rot;
483
queue_redraw();
484
}
485
486
real_t Polygon2D::get_texture_rotation() const {
487
return tex_rot;
488
}
489
490
void Polygon2D::set_texture_scale(const Size2 &p_scale) {
491
tex_scale = p_scale;
492
queue_redraw();
493
}
494
495
Size2 Polygon2D::get_texture_scale() const {
496
return tex_scale;
497
}
498
499
void Polygon2D::set_invert(bool p_invert) {
500
invert = p_invert;
501
queue_redraw();
502
}
503
504
bool Polygon2D::get_invert() const {
505
return invert;
506
}
507
508
void Polygon2D::set_antialiased(bool p_antialiased) {
509
antialiased = p_antialiased;
510
queue_redraw();
511
}
512
513
bool Polygon2D::get_antialiased() const {
514
return antialiased;
515
}
516
517
void Polygon2D::set_invert_border(real_t p_invert_border) {
518
invert_border = p_invert_border;
519
queue_redraw();
520
}
521
522
real_t Polygon2D::get_invert_border() const {
523
return invert_border;
524
}
525
526
void Polygon2D::set_offset(const Vector2 &p_offset) {
527
offset = p_offset;
528
rect_cache_dirty = true;
529
queue_redraw();
530
}
531
532
Vector2 Polygon2D::get_offset() const {
533
return offset;
534
}
535
536
void Polygon2D::add_bone(const NodePath &p_path, const Vector<float> &p_weights) {
537
Bone bone;
538
bone.path = p_path;
539
bone.weights = p_weights;
540
bone_weights.push_back(bone);
541
}
542
543
int Polygon2D::get_bone_count() const {
544
return bone_weights.size();
545
}
546
547
NodePath Polygon2D::get_bone_path(int p_index) const {
548
ERR_FAIL_INDEX_V(p_index, bone_weights.size(), NodePath());
549
return bone_weights[p_index].path;
550
}
551
552
Vector<float> Polygon2D::get_bone_weights(int p_index) const {
553
ERR_FAIL_INDEX_V(p_index, bone_weights.size(), Vector<float>());
554
return bone_weights[p_index].weights;
555
}
556
557
void Polygon2D::erase_bone(int p_idx) {
558
ERR_FAIL_INDEX(p_idx, bone_weights.size());
559
bone_weights.remove_at(p_idx);
560
}
561
562
void Polygon2D::clear_bones() {
563
bone_weights.clear();
564
}
565
566
void Polygon2D::set_bone_weights(int p_index, const Vector<float> &p_weights) {
567
ERR_FAIL_INDEX(p_index, bone_weights.size());
568
bone_weights.write[p_index].weights = p_weights;
569
queue_redraw();
570
}
571
572
void Polygon2D::set_bone_path(int p_index, const NodePath &p_path) {
573
ERR_FAIL_INDEX(p_index, bone_weights.size());
574
bone_weights.write[p_index].path = p_path;
575
queue_redraw();
576
}
577
578
Array Polygon2D::_get_bones() const {
579
Array bones;
580
for (int i = 0; i < get_bone_count(); i++) {
581
// Convert path property to String to avoid errors due to invalid node path in editor,
582
// because it's relative to the Skeleton2D node and not Polygon2D.
583
bones.push_back(String(get_bone_path(i)));
584
bones.push_back(get_bone_weights(i));
585
}
586
return bones;
587
}
588
589
void Polygon2D::_set_bones(const Array &p_bones) {
590
ERR_FAIL_COND(p_bones.size() & 1);
591
clear_bones();
592
for (int i = 0; i < p_bones.size(); i += 2) {
593
// Convert back from String to NodePath.
594
add_bone(NodePath(p_bones[i]), p_bones[i + 1]);
595
}
596
}
597
598
void Polygon2D::set_skeleton(const NodePath &p_skeleton) {
599
if (skeleton == p_skeleton) {
600
return;
601
}
602
skeleton = p_skeleton;
603
queue_redraw();
604
}
605
606
NodePath Polygon2D::get_skeleton() const {
607
return skeleton;
608
}
609
610
#ifndef NAVIGATION_2D_DISABLED
611
void Polygon2D::navmesh_parse_init() {
612
ERR_FAIL_NULL(NavigationServer2D::get_singleton());
613
if (!_navmesh_source_geometry_parser.is_valid()) {
614
_navmesh_source_geometry_parsing_callback = callable_mp_static(&Polygon2D::navmesh_parse_source_geometry);
615
_navmesh_source_geometry_parser = NavigationServer2D::get_singleton()->source_geometry_parser_create();
616
NavigationServer2D::get_singleton()->source_geometry_parser_set_callback(_navmesh_source_geometry_parser, _navmesh_source_geometry_parsing_callback);
617
}
618
}
619
620
void Polygon2D::navmesh_parse_source_geometry(const Ref<NavigationPolygon> &p_navigation_mesh, Ref<NavigationMeshSourceGeometryData2D> p_source_geometry_data, Node *p_node) {
621
Polygon2D *polygon_2d = Object::cast_to<Polygon2D>(p_node);
622
623
if (polygon_2d == nullptr) {
624
return;
625
}
626
627
NavigationPolygon::ParsedGeometryType parsed_geometry_type = p_navigation_mesh->get_parsed_geometry_type();
628
629
if (parsed_geometry_type == NavigationPolygon::PARSED_GEOMETRY_MESH_INSTANCES || parsed_geometry_type == NavigationPolygon::PARSED_GEOMETRY_BOTH) {
630
const Transform2D polygon_2d_xform = p_source_geometry_data->root_node_transform * polygon_2d->get_global_transform();
631
632
Vector<Vector2> shape_outline = polygon_2d->get_polygon();
633
for (int i = 0; i < shape_outline.size(); i++) {
634
shape_outline.write[i] = polygon_2d_xform.xform(shape_outline[i]);
635
}
636
637
p_source_geometry_data->add_obstruction_outline(shape_outline);
638
}
639
}
640
#endif // NAVIGATION_2D_DISABLED
641
642
void Polygon2D::_bind_methods() {
643
ClassDB::bind_method(D_METHOD("set_polygon", "polygon"), &Polygon2D::set_polygon);
644
ClassDB::bind_method(D_METHOD("get_polygon"), &Polygon2D::get_polygon);
645
646
ClassDB::bind_method(D_METHOD("set_uv", "uv"), &Polygon2D::set_uv);
647
ClassDB::bind_method(D_METHOD("get_uv"), &Polygon2D::get_uv);
648
649
ClassDB::bind_method(D_METHOD("set_color", "color"), &Polygon2D::set_color);
650
ClassDB::bind_method(D_METHOD("get_color"), &Polygon2D::get_color);
651
652
ClassDB::bind_method(D_METHOD("set_polygons", "polygons"), &Polygon2D::set_polygons);
653
ClassDB::bind_method(D_METHOD("get_polygons"), &Polygon2D::get_polygons);
654
655
ClassDB::bind_method(D_METHOD("set_vertex_colors", "vertex_colors"), &Polygon2D::set_vertex_colors);
656
ClassDB::bind_method(D_METHOD("get_vertex_colors"), &Polygon2D::get_vertex_colors);
657
658
ClassDB::bind_method(D_METHOD("set_texture", "texture"), &Polygon2D::set_texture);
659
ClassDB::bind_method(D_METHOD("get_texture"), &Polygon2D::get_texture);
660
661
ClassDB::bind_method(D_METHOD("set_texture_offset", "texture_offset"), &Polygon2D::set_texture_offset);
662
ClassDB::bind_method(D_METHOD("get_texture_offset"), &Polygon2D::get_texture_offset);
663
664
ClassDB::bind_method(D_METHOD("set_texture_rotation", "texture_rotation"), &Polygon2D::set_texture_rotation);
665
ClassDB::bind_method(D_METHOD("get_texture_rotation"), &Polygon2D::get_texture_rotation);
666
667
ClassDB::bind_method(D_METHOD("set_texture_scale", "texture_scale"), &Polygon2D::set_texture_scale);
668
ClassDB::bind_method(D_METHOD("get_texture_scale"), &Polygon2D::get_texture_scale);
669
670
ClassDB::bind_method(D_METHOD("set_invert_enabled", "invert"), &Polygon2D::set_invert);
671
ClassDB::bind_method(D_METHOD("get_invert_enabled"), &Polygon2D::get_invert);
672
673
ClassDB::bind_method(D_METHOD("set_antialiased", "antialiased"), &Polygon2D::set_antialiased);
674
ClassDB::bind_method(D_METHOD("get_antialiased"), &Polygon2D::get_antialiased);
675
676
ClassDB::bind_method(D_METHOD("set_invert_border", "invert_border"), &Polygon2D::set_invert_border);
677
ClassDB::bind_method(D_METHOD("get_invert_border"), &Polygon2D::get_invert_border);
678
679
ClassDB::bind_method(D_METHOD("set_offset", "offset"), &Polygon2D::set_offset);
680
ClassDB::bind_method(D_METHOD("get_offset"), &Polygon2D::get_offset);
681
682
ClassDB::bind_method(D_METHOD("add_bone", "path", "weights"), &Polygon2D::add_bone);
683
ClassDB::bind_method(D_METHOD("get_bone_count"), &Polygon2D::get_bone_count);
684
ClassDB::bind_method(D_METHOD("get_bone_path", "index"), &Polygon2D::get_bone_path);
685
ClassDB::bind_method(D_METHOD("get_bone_weights", "index"), &Polygon2D::get_bone_weights);
686
ClassDB::bind_method(D_METHOD("erase_bone", "index"), &Polygon2D::erase_bone);
687
ClassDB::bind_method(D_METHOD("clear_bones"), &Polygon2D::clear_bones);
688
ClassDB::bind_method(D_METHOD("set_bone_path", "index", "path"), &Polygon2D::set_bone_path);
689
ClassDB::bind_method(D_METHOD("set_bone_weights", "index", "weights"), &Polygon2D::set_bone_weights);
690
691
ClassDB::bind_method(D_METHOD("set_skeleton", "skeleton"), &Polygon2D::set_skeleton);
692
ClassDB::bind_method(D_METHOD("get_skeleton"), &Polygon2D::get_skeleton);
693
694
ClassDB::bind_method(D_METHOD("set_internal_vertex_count", "internal_vertex_count"), &Polygon2D::set_internal_vertex_count);
695
ClassDB::bind_method(D_METHOD("get_internal_vertex_count"), &Polygon2D::get_internal_vertex_count);
696
697
ClassDB::bind_method(D_METHOD("_set_bones", "bones"), &Polygon2D::_set_bones);
698
ClassDB::bind_method(D_METHOD("_get_bones"), &Polygon2D::_get_bones);
699
700
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "color"), "set_color", "get_color");
701
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "offset"), "set_offset", "get_offset");
702
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "antialiased"), "set_antialiased", "get_antialiased");
703
704
ADD_GROUP("Texture", "texture_");
705
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE, "Texture2D"), "set_texture", "get_texture");
706
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "texture_offset", PROPERTY_HINT_NONE, "suffix:px"), "set_texture_offset", "get_texture_offset");
707
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "texture_scale", PROPERTY_HINT_LINK), "set_texture_scale", "get_texture_scale");
708
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "texture_rotation", PROPERTY_HINT_RANGE, "-360,360,0.1,or_less,or_greater,radians_as_degrees"), "set_texture_rotation", "get_texture_rotation");
709
710
ADD_GROUP("Skeleton", "");
711
ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH, "skeleton", PROPERTY_HINT_NODE_PATH_VALID_TYPES, "Skeleton2D"), "set_skeleton", "get_skeleton");
712
713
ADD_GROUP("Invert", "invert_");
714
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "invert_enabled", PROPERTY_HINT_GROUP_ENABLE), "set_invert_enabled", "get_invert_enabled");
715
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "invert_border", PROPERTY_HINT_RANGE, "0.1,16384,0.1,suffix:px"), "set_invert_border", "get_invert_border");
716
717
ADD_GROUP("Data", "");
718
ADD_PROPERTY(PropertyInfo(Variant::PACKED_VECTOR2_ARRAY, "polygon"), "set_polygon", "get_polygon");
719
ADD_PROPERTY(PropertyInfo(Variant::PACKED_VECTOR2_ARRAY, "uv"), "set_uv", "get_uv");
720
ADD_PROPERTY(PropertyInfo(Variant::PACKED_COLOR_ARRAY, "vertex_colors"), "set_vertex_colors", "get_vertex_colors");
721
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "polygons", PROPERTY_HINT_TYPE_STRING, "PackedInt32Array"), "set_polygons", "get_polygons");
722
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "bones", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR | PROPERTY_USAGE_INTERNAL), "_set_bones", "_get_bones");
723
ADD_PROPERTY(PropertyInfo(Variant::INT, "internal_vertex_count", PROPERTY_HINT_RANGE, "0,1000"), "set_internal_vertex_count", "get_internal_vertex_count");
724
}
725
726
Polygon2D::Polygon2D() {
727
mesh = RS::get_singleton()->mesh_create();
728
}
729
730
Polygon2D::~Polygon2D() {
731
// This will free the internally-allocated mesh instance, if allocated.
732
ERR_FAIL_NULL(RenderingServer::get_singleton());
733
RS::get_singleton()->canvas_item_attach_skeleton(get_canvas_item(), RID());
734
RS::get_singleton()->free(mesh);
735
}
736
737