2023-01-05 13:25:55 +01:00
/**************************************************************************/
/* collision_shape_2d.cpp */
/**************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
/* 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-02-10 02:10:30 +01:00
# include "collision_shape_2d.h"
2017-08-19 01:02:56 +02:00
2014-02-10 02:10:30 +01:00
# include "collision_object_2d.h"
2022-05-08 00:31:40 +02:00
# include "scene/2d/area_2d.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"
void CollisionShape2D : : _shape_changed ( ) {
2022-08-13 23:21:24 +02:00
queue_redraw ( ) ;
2014-02-10 02:10:30 +01:00
}
2018-01-11 21:05:42 +01:00
void CollisionShape2D : : _update_in_shape_owner ( bool p_xform_only ) {
2023-06-07 18:43:47 +02:00
collision_object - > shape_owner_set_transform ( owner_id , get_transform ( ) ) ;
2020-05-14 16:41:43 +02:00
if ( p_xform_only ) {
2018-01-11 21:05:42 +01:00
return ;
2020-05-14 16:41:43 +02:00
}
2023-06-07 18:43:47 +02:00
collision_object - > shape_owner_set_disabled ( owner_id , disabled ) ;
collision_object - > shape_owner_set_one_way_collision ( owner_id , one_way_collision ) ;
collision_object - > shape_owner_set_one_way_collision_margin ( owner_id , one_way_collision_margin ) ;
2018-01-11 21:05:42 +01:00
}
2022-09-21 15:01:43 +02:00
Color CollisionShape2D : : _get_default_debug_color ( ) const {
SceneTree * st = SceneTree : : get_singleton ( ) ;
return st ? st - > get_debug_collisions_color ( ) : Color ( ) ;
}
2014-02-10 02:10:30 +01:00
void CollisionShape2D : : _notification ( int p_what ) {
switch ( p_what ) {
2017-06-24 04:30:43 +02:00
case NOTIFICATION_PARENTED : {
2023-06-07 18:43:47 +02:00
collision_object = Object : : cast_to < CollisionObject2D > ( get_parent ( ) ) ;
if ( collision_object ) {
owner_id = collision_object - > create_shape_owner ( this ) ;
2017-06-24 04:30:43 +02:00
if ( shape . is_valid ( ) ) {
2023-06-07 18:43:47 +02:00
collision_object - > shape_owner_add_shape ( owner_id , shape ) ;
2017-06-24 04:30:43 +02:00
}
2018-01-11 21:05:42 +01:00
_update_in_shape_owner ( ) ;
2017-06-24 04:30:43 +02:00
}
2018-01-11 21:05:42 +01:00
} break ;
2022-02-15 18:06:48 +01:00
2018-01-11 21:05:42 +01:00
case NOTIFICATION_ENTER_TREE : {
2023-06-07 18:43:47 +02:00
if ( collision_object ) {
2018-01-11 21:05:42 +01:00
_update_in_shape_owner ( ) ;
}
2014-09-22 05:50:48 +02:00
} break ;
2022-02-15 18:06:48 +01:00
2014-02-10 02:10:30 +01:00
case NOTIFICATION_LOCAL_TRANSFORM_CHANGED : {
2023-06-07 18:43:47 +02:00
if ( collision_object ) {
2018-01-11 21:05:42 +01:00
_update_in_shape_owner ( true ) ;
2015-09-16 03:07:03 +02:00
}
} break ;
2022-02-15 18:06:48 +01:00
2017-06-24 04:30:43 +02:00
case NOTIFICATION_UNPARENTED : {
2023-06-07 18:43:47 +02:00
if ( collision_object ) {
collision_object - > remove_shape_owner ( owner_id ) ;
2017-06-24 04:30:43 +02:00
}
owner_id = 0 ;
2023-06-07 18:43:47 +02:00
collision_object = nullptr ;
2019-07-12 23:46:22 +02:00
} break ;
2022-02-15 18:06:48 +01:00
2014-02-10 02:10:30 +01:00
case NOTIFICATION_DRAW : {
2021-10-22 13:44:38 +02:00
ERR_FAIL_COND ( ! is_inside_tree ( ) ) ;
2017-08-19 01:02:56 +02:00
if ( ! Engine : : get_singleton ( ) - > is_editor_hint ( ) & & ! get_tree ( ) - > is_debugging_collisions_hint ( ) ) {
2015-09-19 04:10:58 +02:00
break ;
2015-09-20 18:03:46 +02:00
}
2015-09-19 04:10:58 +02:00
2015-09-23 02:30:08 +02:00
if ( ! shape . is_valid ( ) ) {
break ;
}
2014-02-10 02:10:30 +01:00
rect = Rect2 ( ) ;
2022-09-21 15:01:43 +02:00
Color draw_col = debug_color ;
2017-06-24 04:30:43 +02:00
if ( disabled ) {
2018-08-21 17:47:31 +02:00
float g = draw_col . get_v ( ) ;
2017-06-24 04:30:43 +02:00
draw_col . r = g ;
draw_col . g = g ;
draw_col . b = g ;
2020-08-31 06:20:13 +02:00
draw_col . a * = 0.5 ;
2017-06-24 04:30:43 +02:00
}
2015-09-20 18:03:46 +02:00
shape - > draw ( get_canvas_item ( ) , draw_col ) ;
2014-02-10 02:10:30 +01:00
2015-09-20 18:03:46 +02:00
rect = shape - > get_rect ( ) ;
2014-02-10 02:10:30 +01:00
rect = rect . grow ( 3 ) ;
2017-06-24 04:30:43 +02:00
if ( one_way_collision ) {
2019-07-12 23:46:22 +02:00
// Draw an arrow indicating the one-way collision direction
2022-09-21 15:01:43 +02:00
draw_col = debug_color . inverted ( ) ;
2019-07-12 23:46:22 +02:00
if ( disabled ) {
draw_col = draw_col . darkened ( 0.25 ) ;
}
2017-06-24 04:30:43 +02:00
Vector2 line_to ( 0 , 20 ) ;
2019-06-25 03:24:07 +02:00
draw_line ( Vector2 ( ) , line_to , draw_col , 2 ) ;
2021-01-30 00:22:12 +01:00
real_t tsize = 8 ;
2022-01-11 16:27:39 +01:00
Vector < Vector2 > pts {
line_to + Vector2 ( 0 , tsize ) ,
line_to + Vector2 ( Math_SQRT12 * tsize , 0 ) ,
line_to + Vector2 ( - Math_SQRT12 * tsize , 0 )
} ;
Vector < Color > cols { draw_col , draw_col , draw_col } ;
2017-06-24 04:30:43 +02:00
2019-07-12 23:46:22 +02:00
draw_primitive ( pts , cols , Vector < Vector2 > ( ) ) ;
2017-06-24 04:30:43 +02:00
}
2014-03-15 06:58:53 +01:00
} break ;
2014-02-10 02:10:30 +01:00
}
}
void CollisionShape2D : : set_shape ( const Ref < Shape2D > & p_shape ) {
2021-01-11 17:04:08 +01:00
if ( p_shape = = shape ) {
return ;
}
2020-05-14 16:41:43 +02:00
if ( shape . is_valid ( ) ) {
2020-02-21 18:28:45 +01:00
shape - > disconnect ( " changed " , callable_mp ( this , & CollisionShape2D : : _shape_changed ) ) ;
2020-05-14 16:41:43 +02:00
}
2014-02-10 02:10:30 +01:00
shape = p_shape ;
2022-08-13 23:21:24 +02:00
queue_redraw ( ) ;
2023-06-07 18:43:47 +02:00
if ( collision_object ) {
collision_object - > shape_owner_clear_shapes ( owner_id ) ;
2017-06-24 04:30:43 +02:00
if ( shape . is_valid ( ) ) {
2023-06-07 18:43:47 +02:00
collision_object - > shape_owner_add_shape ( owner_id , shape ) ;
2015-09-16 03:07:03 +02:00
}
2021-01-11 17:04:08 +01:00
_update_in_shape_owner ( ) ;
2015-09-16 03:07:03 +02:00
}
2017-06-24 04:30:43 +02:00
2020-05-14 16:41:43 +02:00
if ( shape . is_valid ( ) ) {
2020-02-21 18:28:45 +01:00
shape - > connect ( " changed " , callable_mp ( this , & CollisionShape2D : : _shape_changed ) ) ;
2020-05-14 16:41:43 +02:00
}
2014-02-10 02:10:30 +01:00
2020-10-29 11:01:28 +01:00
update_configuration_warnings ( ) ;
2014-02-10 02:10:30 +01:00
}
Ref < Shape2D > CollisionShape2D : : get_shape ( ) const {
return shape ;
}
2017-12-27 09:28:02 +01:00
bool CollisionShape2D : : _edit_is_selected_on_click ( const Point2 & p_point , double p_tolerance ) const {
2020-05-14 16:41:43 +02:00
if ( ! shape . is_valid ( ) ) {
2017-12-27 09:28:02 +01:00
return false ;
2020-05-14 16:41:43 +02:00
}
2017-12-27 09:28:02 +01:00
return shape - > _edit_is_selected_on_click ( p_point , p_tolerance ) ;
}
2022-09-19 17:43:15 +02:00
PackedStringArray CollisionShape2D : : get_configuration_warnings ( ) const {
PackedStringArray warnings = Node : : get_configuration_warnings ( ) ;
2020-10-29 11:01:28 +01:00
2023-06-07 18:43:47 +02:00
CollisionObject2D * col_object = Object : : cast_to < CollisionObject2D > ( get_parent ( ) ) ;
if ( col_object = = nullptr ) {
2022-08-25 19:35:52 +02:00
warnings . push_back ( RTR ( " CollisionShape2D only serves to provide a collision shape to a CollisionObject2D derived node. Please only use it as a child of Area2D, StaticBody2D, RigidBody2D, CharacterBody2D, etc. to give them a shape. " ) ) ;
2015-09-16 03:07:03 +02:00
}
2017-06-24 04:30:43 +02:00
if ( ! shape . is_valid ( ) ) {
2022-03-28 15:24:14 +02:00
warnings . push_back ( RTR ( " A shape must be provided for CollisionShape2D to function. Please create a shape resource for it! " ) ) ;
2017-06-24 04:30:43 +02:00
}
2023-06-07 18:43:47 +02:00
if ( one_way_collision & & Object : : cast_to < Area2D > ( col_object ) ) {
warnings . push_back ( RTR ( " The One Way Collision property will be ignored when the collision object is an Area2D. " ) ) ;
2022-05-08 00:31:40 +02:00
}
2020-10-29 11:01:28 +01:00
2020-07-03 14:45:17 +02:00
Ref < ConvexPolygonShape2D > convex = shape ;
Ref < ConcavePolygonShape2D > concave = shape ;
if ( convex . is_valid ( ) | | concave . is_valid ( ) ) {
2022-03-28 15:24:14 +02:00
warnings . push_back ( RTR ( " Polygon-based shapes are not meant be used nor edited directly through the CollisionShape2D node. Please use the CollisionPolygon2D node instead. " ) ) ;
2020-07-03 14:45:17 +02:00
}
2020-10-29 11:01:28 +01:00
return warnings ;
2014-02-10 02:10:30 +01:00
}
2017-06-24 04:30:43 +02:00
void CollisionShape2D : : set_disabled ( bool p_disabled ) {
disabled = p_disabled ;
2022-08-13 23:21:24 +02:00
queue_redraw ( ) ;
2023-06-07 18:43:47 +02:00
if ( collision_object ) {
collision_object - > shape_owner_set_disabled ( owner_id , p_disabled ) ;
2017-06-24 04:30:43 +02:00
}
2015-09-16 03:07:03 +02:00
}
2017-06-24 04:30:43 +02:00
bool CollisionShape2D : : is_disabled ( ) const {
return disabled ;
2015-09-16 03:07:03 +02:00
}
2017-06-24 04:30:43 +02:00
void CollisionShape2D : : set_one_way_collision ( bool p_enable ) {
one_way_collision = p_enable ;
2022-08-13 23:21:24 +02:00
queue_redraw ( ) ;
2023-06-07 18:43:47 +02:00
if ( collision_object ) {
collision_object - > shape_owner_set_one_way_collision ( owner_id , p_enable ) ;
2016-05-17 23:27:15 +02:00
}
2022-05-08 00:31:40 +02:00
update_configuration_warnings ( ) ;
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 CollisionShape2D : : is_one_way_collision_enabled ( ) const {
return one_way_collision ;
2016-05-17 23:27:15 +02:00
}
2021-01-30 00:22:12 +01:00
void CollisionShape2D : : set_one_way_collision_margin ( real_t p_margin ) {
2019-01-18 18:15:05 +01:00
one_way_collision_margin = p_margin ;
2023-06-07 18:43:47 +02:00
if ( collision_object ) {
collision_object - > shape_owner_set_one_way_collision_margin ( owner_id , one_way_collision_margin ) ;
2019-01-18 18:15:05 +01:00
}
}
2021-01-30 00:22:12 +01:00
real_t CollisionShape2D : : get_one_way_collision_margin ( ) const {
2019-01-18 18:15:05 +01:00
return one_way_collision_margin ;
}
2022-09-21 15:01:43 +02:00
void CollisionShape2D : : set_debug_color ( const Color & p_color ) {
debug_color = p_color ;
queue_redraw ( ) ;
}
Color CollisionShape2D : : get_debug_color ( ) const {
return debug_color ;
}
bool CollisionShape2D : : _property_can_revert ( const StringName & p_name ) const {
if ( p_name = = " debug_color " ) {
return true ;
}
return false ;
}
bool CollisionShape2D : : _property_get_revert ( const StringName & p_name , Variant & r_property ) const {
if ( p_name = = " debug_color " ) {
r_property = _get_default_debug_color ( ) ;
return true ;
}
return false ;
}
void CollisionShape2D : : _validate_property ( PropertyInfo & p_property ) const {
if ( p_property . name = = " debug_color " ) {
if ( debug_color = = _get_default_debug_color ( ) ) {
p_property . usage = PROPERTY_USAGE_DEFAULT & ~ PROPERTY_USAGE_STORAGE ;
} else {
p_property . usage = PROPERTY_USAGE_DEFAULT ;
}
}
}
2014-02-10 02:10:30 +01:00
void CollisionShape2D : : _bind_methods ( ) {
2017-08-09 13:19:41 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_shape " , " shape " ) , & CollisionShape2D : : set_shape ) ;
ClassDB : : bind_method ( D_METHOD ( " get_shape " ) , & CollisionShape2D : : get_shape ) ;
2017-06-24 04:30:43 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_disabled " , " disabled " ) , & CollisionShape2D : : set_disabled ) ;
ClassDB : : bind_method ( D_METHOD ( " is_disabled " ) , & CollisionShape2D : : is_disabled ) ;
ClassDB : : bind_method ( D_METHOD ( " set_one_way_collision " , " enabled " ) , & CollisionShape2D : : set_one_way_collision ) ;
ClassDB : : bind_method ( D_METHOD ( " is_one_way_collision_enabled " ) , & CollisionShape2D : : is_one_way_collision_enabled ) ;
2019-01-18 18:15:05 +01:00
ClassDB : : bind_method ( D_METHOD ( " set_one_way_collision_margin " , " margin " ) , & CollisionShape2D : : set_one_way_collision_margin ) ;
ClassDB : : bind_method ( D_METHOD ( " get_one_way_collision_margin " ) , & CollisionShape2D : : get_one_way_collision_margin ) ;
2022-09-21 15:01:43 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_debug_color " , " color " ) , & CollisionShape2D : : set_debug_color ) ;
ClassDB : : bind_method ( D_METHOD ( " get_debug_color " ) , & CollisionShape2D : : get_debug_color ) ;
2015-09-16 03:07:03 +02:00
2018-11-08 15:30:02 +01:00
ADD_PROPERTY ( PropertyInfo ( Variant : : OBJECT , " shape " , PROPERTY_HINT_RESOURCE_TYPE , " Shape2D " ) , " set_shape " , " get_shape " ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " disabled " ) , " set_disabled " , " is_disabled " ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " one_way_collision " ) , " set_one_way_collision " , " is_one_way_collision_enabled " ) ;
2021-12-03 01:09:19 +01:00
ADD_PROPERTY ( PropertyInfo ( Variant : : FLOAT , " one_way_collision_margin " , PROPERTY_HINT_RANGE , " 0,128,0.1,suffix:px " ) , " set_one_way_collision_margin " , " get_one_way_collision_margin " ) ;
2022-09-21 15:01:43 +02:00
ADD_PROPERTY ( PropertyInfo ( Variant : : COLOR , " debug_color " ) , " set_debug_color " , " get_debug_color " ) ;
// Default value depends on a project setting, override for doc generation purposes.
ADD_PROPERTY_DEFAULT ( " debug_color " , Color ( ) ) ;
2014-02-10 02:10:30 +01:00
}
CollisionShape2D : : CollisionShape2D ( ) {
2015-09-16 03:07:03 +02:00
set_notify_local_transform ( true ) ;
2023-01-26 13:17:26 +01:00
set_hide_clip_children ( true ) ;
2022-09-21 15:01:43 +02:00
debug_color = _get_default_debug_color ( ) ;
2014-02-10 02:10:30 +01:00
}