2016-06-18 14:46:12 +02:00
/*************************************************************************/
/* collision_polygon.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
2017-08-27 14:16:55 +02:00
/* https://godotengine.org */
2016-06-18 14:46:12 +02:00
/*************************************************************************/
2022-01-13 09:45:09 +01:00
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 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. */
/*************************************************************************/
2018-01-05 00:50:27 +01:00
2014-09-17 02:19:54 +02:00
# include "collision_polygon.h"
# include "collision_object.h"
# include "scene/resources/concave_polygon_shape.h"
# include "scene/resources/convex_polygon_shape.h"
2017-07-15 06:23:10 +02:00
void CollisionPolygon : : _build_polygon ( ) {
2021-05-05 12:44:11 +02:00
if ( ! parent ) {
2015-09-16 03:07:03 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2014-09-17 02:19:54 +02:00
2017-07-15 06:23:10 +02:00
parent - > shape_owner_clear_shapes ( owner_id ) ;
2014-09-17 02:19:54 +02:00
2021-05-05 12:44:11 +02:00
if ( polygon . size ( ) = = 0 ) {
2014-09-17 02:19:54 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2014-09-17 02:19:54 +02:00
2021-05-04 14:20:36 +02:00
Vector < Vector < Vector2 > > decomp = Geometry : : decompose_polygon_in_convex ( polygon ) ;
2021-05-05 12:44:11 +02:00
if ( decomp . size ( ) = = 0 ) {
2014-09-17 02:19:54 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2014-09-17 02:19:54 +02:00
2017-07-15 06:23:10 +02:00
//here comes the sun, lalalala
//decompose concave into multiple convex polygons and add them
for ( int i = 0 ; i < decomp . size ( ) ; i + + ) {
Ref < ConvexPolygonShape > convex = memnew ( ConvexPolygonShape ) ;
PoolVector < Vector3 > cp ;
int cs = decomp [ i ] . size ( ) ;
cp . resize ( cs * 2 ) ;
{
PoolVector < Vector3 > : : Write w = cp . write ( ) ;
int idx = 0 ;
for ( int j = 0 ; j < cs ; j + + ) {
Vector2 d = decomp [ i ] [ j ] ;
w [ idx + + ] = Vector3 ( d . x , d . y , depth * 0.5 ) ;
w [ idx + + ] = Vector3 ( d . x , d . y , - depth * 0.5 ) ;
2014-09-17 02:19:54 +02:00
}
}
2017-07-15 06:23:10 +02:00
convex - > set_points ( cp ) ;
2021-02-09 20:37:12 +01:00
convex - > set_margin ( margin ) ;
2017-07-15 06:23:10 +02:00
parent - > shape_owner_add_shape ( owner_id , convex ) ;
parent - > shape_owner_set_disabled ( owner_id , disabled ) ;
2014-09-17 02:19:54 +02:00
}
2015-09-16 03:07:03 +02:00
}
2018-01-11 21:05:42 +01:00
void CollisionPolygon : : _update_in_shape_owner ( bool p_xform_only ) {
parent - > shape_owner_set_transform ( owner_id , get_transform ( ) ) ;
2021-05-05 12:44:11 +02:00
if ( p_xform_only ) {
2018-01-11 21:05:42 +01:00
return ;
2021-05-05 12:44:11 +02:00
}
2018-01-11 21:05:42 +01:00
parent - > shape_owner_set_disabled ( owner_id , disabled ) ;
}
2014-09-17 02:19:54 +02:00
void CollisionPolygon : : _notification ( int p_what ) {
2017-03-05 16:44:50 +01:00
switch ( p_what ) {
2017-07-15 06:23:10 +02:00
case NOTIFICATION_PARENTED : {
2017-08-24 22:58:51 +02:00
parent = Object : : cast_to < CollisionObject > ( get_parent ( ) ) ;
2017-07-15 06:23:10 +02:00
if ( parent ) {
owner_id = parent - > create_shape_owner ( this ) ;
_build_polygon ( ) ;
2018-01-11 21:05:42 +01:00
_update_in_shape_owner ( ) ;
2015-09-16 03:07:03 +02:00
}
} break ;
2018-01-11 21:05:42 +01:00
case NOTIFICATION_ENTER_TREE : {
if ( parent ) {
_update_in_shape_owner ( ) ;
}
} break ;
2015-09-16 03:07:03 +02:00
case NOTIFICATION_LOCAL_TRANSFORM_CHANGED : {
2017-07-15 06:23:10 +02:00
if ( parent ) {
2018-01-11 21:05:42 +01:00
_update_in_shape_owner ( true ) ;
2014-09-17 02:19:54 +02:00
}
2017-07-15 06:23:10 +02:00
} break ;
case NOTIFICATION_UNPARENTED : {
if ( parent ) {
parent - > remove_shape_owner ( owner_id ) ;
2014-09-17 02:19:54 +02:00
}
2017-07-15 06:23:10 +02:00
owner_id = 0 ;
2021-05-04 16:00:45 +02:00
parent = nullptr ;
2014-09-17 02:19:54 +02:00
} break ;
}
}
2017-03-05 16:44:50 +01:00
void CollisionPolygon : : set_polygon ( const Vector < Point2 > & p_polygon ) {
polygon = p_polygon ;
2017-07-15 06:23:10 +02:00
if ( parent ) {
_build_polygon ( ) ;
2014-09-17 02:19:54 +02:00
}
2017-07-15 06:23:10 +02:00
update_configuration_warning ( ) ;
2014-09-17 02:19:54 +02:00
update_gizmo ( ) ;
}
Vector < Point2 > CollisionPolygon : : get_polygon ( ) const {
return polygon ;
}
2017-11-17 03:09:00 +01:00
AABB CollisionPolygon : : get_item_rect ( ) const {
2014-09-17 02:19:54 +02:00
return aabb ;
}
void CollisionPolygon : : set_depth ( float p_depth ) {
2017-03-05 16:44:50 +01:00
depth = p_depth ;
2017-07-15 06:23:10 +02:00
_build_polygon ( ) ;
2014-09-17 02:19:54 +02:00
update_gizmo ( ) ;
}
float CollisionPolygon : : get_depth ( ) const {
return depth ;
}
2017-07-15 06:23:10 +02:00
void CollisionPolygon : : set_disabled ( bool p_disabled ) {
disabled = p_disabled ;
2019-08-21 15:27:02 +02:00
update_gizmo ( ) ;
2017-07-15 06:23:10 +02:00
if ( parent ) {
parent - > shape_owner_set_disabled ( owner_id , p_disabled ) ;
}
}
bool CollisionPolygon : : is_disabled ( ) const {
return disabled ;
}
2021-02-09 20:37:12 +01:00
real_t CollisionPolygon : : get_margin ( ) const {
return margin ;
}
void CollisionPolygon : : set_margin ( real_t p_margin ) {
margin = p_margin ;
if ( parent ) {
_build_polygon ( ) ;
}
}
2016-05-17 23:27:15 +02:00
String CollisionPolygon : : get_configuration_warning ( ) const {
2020-03-22 09:31:09 +01:00
String warning = Spatial : : get_configuration_warning ( ) ;
2017-08-24 22:58:51 +02:00
if ( ! Object : : cast_to < CollisionObject > ( get_parent ( ) ) ) {
2020-03-22 09:31:09 +01:00
if ( warning ! = String ( ) ) {
warning + = " \n \n " ;
}
warning + = TTR ( " CollisionPolygon only serves to provide a collision shape to a CollisionObject derived node. Please only use it as a child of Area, StaticBody, RigidBody, KinematicBody, etc. to give them a shape. " ) ;
2016-05-17 23:27:15 +02:00
}
if ( polygon . empty ( ) ) {
2020-03-22 09:31:09 +01:00
if ( warning ! = String ( ) ) {
warning + = " \n \n " ;
}
warning + = TTR ( " An empty CollisionPolygon has no effect on collision. " ) ;
2016-05-17 23:27:15 +02:00
}
2020-03-22 09:31:09 +01:00
return warning ;
2016-05-17 23:27:15 +02:00
}
2014-09-17 02:19:54 +02:00
2018-04-28 02:52:15 +02:00
bool CollisionPolygon : : _is_editable_3d_polygon ( ) const {
return true ;
}
2014-09-17 02:19:54 +02:00
void CollisionPolygon : : _bind_methods ( ) {
2017-03-05 16:44:50 +01:00
ClassDB : : bind_method ( D_METHOD ( " set_depth " , " depth " ) , & CollisionPolygon : : set_depth ) ;
ClassDB : : bind_method ( D_METHOD ( " get_depth " ) , & CollisionPolygon : : get_depth ) ;
2014-09-17 02:19:54 +02:00
2017-03-05 16:44:50 +01:00
ClassDB : : bind_method ( D_METHOD ( " set_polygon " , " polygon " ) , & CollisionPolygon : : set_polygon ) ;
ClassDB : : bind_method ( D_METHOD ( " get_polygon " ) , & CollisionPolygon : : get_polygon ) ;
2015-09-16 03:07:03 +02:00
2017-07-15 06:23:10 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_disabled " , " disabled " ) , & CollisionPolygon : : set_disabled ) ;
ClassDB : : bind_method ( D_METHOD ( " is_disabled " ) , & CollisionPolygon : : is_disabled ) ;
2014-09-17 02:19:54 +02:00
2021-02-09 20:37:12 +01:00
ClassDB : : bind_method ( D_METHOD ( " set_margin " , " margin " ) , & CollisionPolygon : : set_margin ) ;
ClassDB : : bind_method ( D_METHOD ( " get_margin " ) , & CollisionPolygon : : get_margin ) ;
2018-04-28 02:52:15 +02:00
ClassDB : : bind_method ( D_METHOD ( " _is_editable_3d_polygon " ) , & CollisionPolygon : : _is_editable_3d_polygon ) ;
2017-03-05 16:44:50 +01:00
ADD_PROPERTY ( PropertyInfo ( Variant : : REAL , " depth " ) , " set_depth " , " get_depth " ) ;
2017-07-15 06:23:10 +02:00
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " disabled " ) , " set_disabled " , " is_disabled " ) ;
2017-03-05 16:44:50 +01:00
ADD_PROPERTY ( PropertyInfo ( Variant : : POOL_VECTOR2_ARRAY , " polygon " ) , " set_polygon " , " get_polygon " ) ;
2021-02-09 20:37:12 +01:00
ADD_PROPERTY ( PropertyInfo ( Variant : : REAL , " margin " , PROPERTY_HINT_RANGE , " 0.001,10,0.001 " ) , " set_margin " , " get_margin " ) ;
2014-09-17 02:19:54 +02:00
}
CollisionPolygon : : CollisionPolygon ( ) {
2017-11-17 03:09:00 +01:00
aabb = AABB ( Vector3 ( - 1 , - 1 , - 1 ) , Vector3 ( 2 , 2 , 2 ) ) ;
2017-03-05 16:44:50 +01:00
depth = 1.0 ;
2017-07-15 06:23:10 +02:00
set_notify_local_transform ( true ) ;
2021-05-04 16:00:45 +02:00
parent = nullptr ;
2017-07-15 06:23:10 +02:00
owner_id = 0 ;
disabled = false ;
2014-09-17 02:19:54 +02:00
}