2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* collision_polygon_2d.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) */
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. */
/*************************************************************************/
# include "collision_polygon_2d.h"
2017-04-28 18:29:15 +02:00
2014-02-10 02:10:30 +01:00
# include "collision_object_2d.h"
2017-08-19 01:02:56 +02:00
# include "engine.h"
2014-02-10 02:10:30 +01:00
# include "scene/resources/concave_polygon_shape_2d.h"
# include "scene/resources/convex_polygon_shape_2d.h"
2017-04-28 18:29:15 +02:00
# include "thirdparty/misc/triangulator.h"
2017-06-24 04:30:43 +02:00
void CollisionPolygon2D : : _build_polygon ( ) {
2014-02-10 02:10:30 +01:00
2017-06-24 04:30:43 +02:00
parent - > shape_owner_clear_shapes ( owner_id ) ;
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
if ( polygon . size ( ) = = 0 )
2014-02-10 02:10:30 +01:00
return ;
2017-03-05 16:44:50 +01:00
bool solids = build_mode = = BUILD_SOLIDS ;
2014-02-10 02:10:30 +01:00
if ( solids ) {
//here comes the sun, lalalala
//decompose concave into multiple convex polygons and add them
2017-03-05 16:44:50 +01:00
Vector < Vector < Vector2 > > decomp = _decompose_in_convex ( ) ;
for ( int i = 0 ; i < decomp . size ( ) ; i + + ) {
Ref < ConvexPolygonShape2D > convex = memnew ( ConvexPolygonShape2D ) ;
2014-02-10 02:10:30 +01:00
convex - > set_points ( decomp [ i ] ) ;
2017-06-24 04:30:43 +02:00
parent - > shape_owner_add_shape ( owner_id , convex ) ;
2015-09-16 03:07:03 +02:00
}
2014-02-10 02:10:30 +01:00
} else {
2017-03-05 16:44:50 +01:00
Ref < ConcavePolygonShape2D > concave = memnew ( ConcavePolygonShape2D ) ;
2014-02-10 02:10:30 +01:00
2017-01-07 22:25:37 +01:00
PoolVector < Vector2 > segments ;
2017-03-05 16:44:50 +01:00
segments . resize ( polygon . size ( ) * 2 ) ;
PoolVector < Vector2 > : : Write w = segments . write ( ) ;
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < polygon . size ( ) ; i + + ) {
w [ ( i < < 1 ) + 0 ] = polygon [ i ] ;
w [ ( i < < 1 ) + 1 ] = polygon [ ( i + 1 ) % polygon . size ( ) ] ;
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
w = PoolVector < Vector2 > : : Write ( ) ;
2014-02-10 02:10:30 +01:00
concave - > set_segments ( segments ) ;
2017-06-24 04:30:43 +02:00
parent - > shape_owner_add_shape ( owner_id , concave ) ;
2014-02-10 02:10:30 +01:00
}
}
2017-03-05 16:44:50 +01:00
Vector < Vector < Vector2 > > CollisionPolygon2D : : _decompose_in_convex ( ) {
2016-01-01 00:23:34 +01:00
2017-03-05 16:44:50 +01:00
Vector < Vector < Vector2 > > decomp ;
2016-01-01 00:23:34 +01:00
#if 0
//fast but imprecise triangulator, gave us problems
decomp = Geometry : : decompose_polygon ( polygon ) ;
# else
2017-03-05 16:44:50 +01:00
List < TriangulatorPoly > in_poly , out_poly ;
2016-01-01 00:23:34 +01:00
TriangulatorPoly inp ;
inp . Init ( polygon . size ( ) ) ;
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < polygon . size ( ) ; i + + ) {
inp . GetPoint ( i ) = polygon [ i ] ;
2016-01-01 00:23:34 +01:00
}
inp . SetOrientation ( TRIANGULATOR_CCW ) ;
in_poly . push_back ( inp ) ;
TriangulatorPartition tpart ;
2017-03-05 16:44:50 +01:00
if ( tpart . ConvexPartition_HM ( & in_poly , & out_poly ) = = 0 ) { //failed!
2016-01-01 00:23:34 +01:00
ERR_PRINT ( " Convex decomposing failed! " ) ;
return decomp ;
}
decomp . resize ( out_poly . size ( ) ) ;
2017-03-05 16:44:50 +01:00
int idx = 0 ;
2016-01-01 00:23:34 +01:00
2017-03-05 16:44:50 +01:00
for ( List < TriangulatorPoly > : : Element * I = out_poly . front ( ) ; I ; I = I - > next ( ) ) {
2016-01-01 00:23:34 +01:00
2017-03-05 16:44:50 +01:00
TriangulatorPoly & tp = I - > get ( ) ;
2016-01-01 00:23:34 +01:00
decomp [ idx ] . resize ( tp . GetNumPoints ( ) ) ;
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < tp . GetNumPoints ( ) ; i + + ) {
2016-01-01 00:23:34 +01:00
2017-03-05 16:44:50 +01:00
decomp [ idx ] [ i ] = tp . GetPoint ( i ) ;
2016-01-01 00:23:34 +01:00
}
idx + + ;
}
# endif
return decomp ;
}
2014-02-10 02:10:30 +01:00
void CollisionPolygon2D : : _notification ( int p_what ) {
2017-03-05 16:44:50 +01:00
switch ( p_what ) {
2017-06-24 04:30:43 +02:00
case NOTIFICATION_PARENTED : {
parent = get_parent ( ) - > cast_to < CollisionObject2D > ( ) ;
if ( parent ) {
owner_id = parent - > create_shape_owner ( this ) ;
_build_polygon ( ) ;
parent - > shape_owner_set_transform ( owner_id , get_transform ( ) ) ;
parent - > shape_owner_set_disabled ( owner_id , disabled ) ;
parent - > shape_owner_set_one_way_collision ( owner_id , one_way_collision ) ;
}
2017-08-19 01:02:56 +02:00
/*if (Engine::get_singleton()->is_editor_hint()) {
2015-12-12 12:11:36 +01:00
//display above all else
set_z_as_relative ( false ) ;
2017-03-05 16:44:50 +01:00
set_z ( VS : : CANVAS_ITEM_Z_MAX - 1 ) ;
2017-06-24 04:30:43 +02:00
} */
2015-12-12 12:11:36 +01:00
2015-09-16 03:07:03 +02:00
} break ;
2014-02-10 02:10:30 +01:00
case NOTIFICATION_LOCAL_TRANSFORM_CHANGED : {
2017-06-24 04:30:43 +02:00
if ( parent ) {
parent - > shape_owner_set_transform ( owner_id , get_transform ( ) ) ;
2015-09-16 03:07:03 +02:00
}
2014-02-10 02:10:30 +01:00
} break ;
2017-06-24 04:30:43 +02:00
case NOTIFICATION_UNPARENTED : {
if ( parent ) {
parent - > remove_shape_owner ( owner_id ) ;
}
owner_id = 0 ;
parent = NULL ;
} break ;
2014-02-10 02:10:30 +01:00
case NOTIFICATION_DRAW : {
2015-09-20 18:03:46 +02:00
2017-08-19 01:02:56 +02:00
if ( ! Engine : : get_singleton ( ) - > is_editor_hint ( ) & & ! get_tree ( ) - > is_debugging_collisions_hint ( ) ) {
2015-09-20 18:03:46 +02:00
break ;
}
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < polygon . size ( ) ; i + + ) {
2014-02-10 02:10:30 +01:00
Vector2 p = polygon [ i ] ;
2017-03-05 16:44:50 +01:00
Vector2 n = polygon [ ( i + 1 ) % polygon . size ( ) ] ;
draw_line ( p , n , Color ( 0.9 , 0.2 , 0.0 , 0.8 ) , 3 ) ;
2014-02-10 02:10:30 +01:00
}
2016-01-11 03:09:05 +01:00
# define DEBUG_DECOMPOSE
2017-03-05 16:44:50 +01:00
# if defined(TOOLS_ENABLED) && defined(DEBUG_DECOMPOSE)
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
Vector < Vector < Vector2 > > decomp = _decompose_in_convex ( ) ;
2016-01-01 00:23:34 +01:00
2017-03-05 16:44:50 +01:00
Color c ( 0.4 , 0.9 , 0.1 ) ;
for ( int i = 0 ; i < decomp . size ( ) ; i + + ) {
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
c . set_hsv ( Math : : fmod ( c . get_h ( ) + 0.738 , 1 ) , c . get_s ( ) , c . get_v ( ) , 0.5 ) ;
draw_colored_polygon ( decomp [ i ] , c ) ;
2014-02-10 02:10:30 +01:00
}
2015-09-20 18:03:46 +02:00
# else
2017-03-05 16:44:50 +01:00
draw_colored_polygon ( polygon , get_tree ( ) - > get_debug_collisions_color ( ) ) ;
2014-02-10 02:10:30 +01:00
# endif
2015-09-20 18:03:46 +02:00
2017-06-24 04:30:43 +02:00
if ( one_way_collision ) {
Color dcol = get_tree ( ) - > get_debug_collisions_color ( ) ; //0.9,0.2,0.2,0.4);
dcol . a = 1.0 ;
Vector2 line_to ( 0 , 20 ) ;
draw_line ( Vector2 ( ) , line_to , dcol , 3 ) ;
Vector < Vector2 > pts ;
float tsize = 8 ;
pts . push_back ( line_to + ( Vector2 ( 0 , tsize ) ) ) ;
pts . push_back ( line_to + ( Vector2 ( 0.707 * tsize , 0 ) ) ) ;
pts . push_back ( line_to + ( Vector2 ( - 0.707 * tsize , 0 ) ) ) ;
Vector < Color > cols ;
for ( int i = 0 ; i < 3 ; i + + )
cols . push_back ( dcol ) ;
draw_primitive ( pts , cols , Vector < Vector2 > ( ) ) ; //small arrow
}
2015-03-23 15:31:03 +01:00
} break ;
2014-02-10 02:10:30 +01:00
}
}
2017-03-05 16:44:50 +01:00
void CollisionPolygon2D : : set_polygon ( const Vector < Point2 > & p_polygon ) {
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
polygon = p_polygon ;
2014-02-10 02:10:30 +01:00
2017-06-24 04:30:43 +02:00
{
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < polygon . size ( ) ; i + + ) {
if ( i = = 0 )
aabb = Rect2 ( polygon [ i ] , Size2 ( ) ) ;
2015-09-16 03:07:03 +02:00
else
aabb . expand_to ( polygon [ i ] ) ;
}
2017-03-05 16:44:50 +01:00
if ( aabb = = Rect2 ( ) ) {
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
aabb = Rect2 ( - 10 , - 10 , 20 , 20 ) ;
2015-09-16 03:07:03 +02:00
} else {
2017-06-04 00:25:13 +02:00
aabb . position - = aabb . size * 0.3 ;
2017-03-05 16:44:50 +01:00
aabb . size + = aabb . size * 0.6 ;
2015-09-16 03:07:03 +02:00
}
2017-06-24 04:30:43 +02:00
}
if ( parent ) {
_build_polygon ( ) ;
2014-02-10 02:10:30 +01:00
}
update ( ) ;
2017-01-22 14:09:41 +01:00
update_configuration_warning ( ) ;
2014-02-10 02:10:30 +01:00
}
Vector < Point2 > CollisionPolygon2D : : get_polygon ( ) const {
return polygon ;
}
void CollisionPolygon2D : : set_build_mode ( BuildMode p_mode ) {
2017-03-05 16:44:50 +01:00
ERR_FAIL_INDEX ( p_mode , 2 ) ;
build_mode = p_mode ;
2017-06-24 04:30:43 +02:00
if ( parent ) {
_build_polygon ( ) ;
}
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
CollisionPolygon2D : : BuildMode CollisionPolygon2D : : get_build_mode ( ) const {
2014-02-10 02:10:30 +01:00
return build_mode ;
}
Rect2 CollisionPolygon2D : : get_item_rect ( ) const {
return aabb ;
}
2017-06-24 04:30:43 +02:00
String CollisionPolygon2D : : get_configuration_warning ( ) const {
2014-12-20 19:30:06 +01:00
2017-06-24 04:30:43 +02:00
if ( ! get_parent ( ) - > cast_to < CollisionObject2D > ( ) ) {
return TTR ( " CollisionPolygon2D only serves to provide a collision shape to a CollisionObject2D derived node. Please only use it as a child of Area2D, StaticBody2D, RigidBody2D, KinematicBody2D, etc. to give them a shape. " ) ;
2015-09-16 03:07:03 +02:00
}
2014-12-20 19:30:06 +01:00
2017-06-24 04:30:43 +02:00
if ( polygon . empty ( ) ) {
return TTR ( " An empty CollisionPolygon2D has no effect on collision. " ) ;
}
2014-12-20 19:30:06 +01:00
2017-06-24 04:30:43 +02:00
return String ( ) ;
2014-12-20 19:30:06 +01:00
}
2017-06-24 04:30:43 +02:00
void CollisionPolygon2D : : set_disabled ( bool p_disabled ) {
disabled = p_disabled ;
update ( ) ;
if ( parent ) {
parent - > shape_owner_set_disabled ( owner_id , p_disabled ) ;
}
2015-09-16 03:07:03 +02:00
}
2017-06-24 04:30:43 +02:00
bool CollisionPolygon2D : : is_disabled ( ) const {
return disabled ;
2015-09-16 03:07:03 +02:00
}
2017-06-24 04:30:43 +02:00
void CollisionPolygon2D : : set_one_way_collision ( bool p_enable ) {
one_way_collision = p_enable ;
update ( ) ;
if ( parent ) {
parent - > shape_owner_set_one_way_collision ( owner_id , p_enable ) ;
2016-05-17 23:27:15 +02:00
}
2017-06-24 04:30:43 +02:00
}
2016-05-17 23:27:15 +02:00
2017-06-24 04:30:43 +02:00
bool CollisionPolygon2D : : is_one_way_collision_enabled ( ) const {
2016-05-17 23:27:15 +02:00
2017-06-24 04:30:43 +02:00
return one_way_collision ;
2016-05-17 23:27:15 +02:00
}
2014-02-10 02:10:30 +01:00
void CollisionPolygon2D : : _bind_methods ( ) {
2017-03-05 16:44:50 +01:00
ClassDB : : bind_method ( D_METHOD ( " set_polygon " , " polygon " ) , & CollisionPolygon2D : : set_polygon ) ;
ClassDB : : bind_method ( D_METHOD ( " get_polygon " ) , & CollisionPolygon2D : : get_polygon ) ;
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
ClassDB : : bind_method ( D_METHOD ( " set_build_mode " , " build_mode " ) , & CollisionPolygon2D : : set_build_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " get_build_mode " ) , & CollisionPolygon2D : : get_build_mode ) ;
2017-06-24 04:30:43 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_disabled " , " disabled " ) , & CollisionPolygon2D : : set_disabled ) ;
ClassDB : : bind_method ( D_METHOD ( " is_disabled " ) , & CollisionPolygon2D : : is_disabled ) ;
ClassDB : : bind_method ( D_METHOD ( " set_one_way_collision " , " enabled " ) , & CollisionPolygon2D : : set_one_way_collision ) ;
ClassDB : : bind_method ( D_METHOD ( " is_one_way_collision_enabled " ) , & CollisionPolygon2D : : is_one_way_collision_enabled ) ;
2015-09-16 03:07:03 +02:00
2017-03-05 16:44:50 +01:00
ADD_PROPERTY ( PropertyInfo ( Variant : : INT , " build_mode " , PROPERTY_HINT_ENUM , " Solids,Segments " ) , " set_build_mode " , " get_build_mode " ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : POOL_VECTOR2_ARRAY , " polygon " ) , " set_polygon " , " get_polygon " ) ;
2017-06-24 04:30:43 +02:00
ADD_PROPERTYNZ ( PropertyInfo ( Variant : : BOOL , " disabled " ) , " set_disabled " , " is_disabled " ) ;
ADD_PROPERTYNZ ( PropertyInfo ( Variant : : BOOL , " one_way_collision " ) , " set_one_way_collision " , " is_one_way_collision_enabled " ) ;
2014-02-10 02:10:30 +01:00
}
CollisionPolygon2D : : CollisionPolygon2D ( ) {
2017-03-05 16:44:50 +01:00
aabb = Rect2 ( - 10 , - 10 , 20 , 20 ) ;
build_mode = BUILD_SOLIDS ;
2015-09-16 03:07:03 +02:00
set_notify_local_transform ( true ) ;
2017-06-24 04:30:43 +02:00
parent = NULL ;
owner_id = 0 ;
disabled = false ;
one_way_collision = false ;
2014-02-10 02:10:30 +01:00
}