2023-01-10 15:26:54 +01:00
/**************************************************************************/
/* collision_shape.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
2017-07-15 06:23:10 +02:00
# include "collision_shape.h"
2020-10-02 09:51:45 +02:00
2021-01-23 21:32:59 +01:00
# include "core/math/quick_hull.h"
# include "mesh_instance.h"
# include "physics_body.h"
2017-07-15 06:23:10 +02:00
# include "scene/resources/box_shape.h"
# include "scene/resources/capsule_shape.h"
# include "scene/resources/concave_polygon_shape.h"
# include "scene/resources/convex_polygon_shape.h"
# include "scene/resources/plane_shape.h"
# include "scene/resources/ray_shape.h"
# include "scene/resources/sphere_shape.h"
# include "servers/visual_server.h"
void CollisionShape : : make_convex_from_brothers ( ) {
Node * p = get_parent ( ) ;
2021-05-05 12:44:11 +02:00
if ( ! p ) {
2017-07-15 06:23:10 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2017-07-15 06:23:10 +02:00
for ( int i = 0 ; i < p - > get_child_count ( ) ; i + + ) {
Node * n = p - > get_child ( i ) ;
2017-09-06 23:50:18 +02:00
MeshInstance * mi = Object : : cast_to < MeshInstance > ( n ) ;
if ( mi ) {
2017-07-15 06:23:10 +02:00
Ref < Mesh > m = mi - > get_mesh ( ) ;
if ( m . is_valid ( ) ) {
Ref < Shape > s = m - > create_convex_shape ( ) ;
set_shape ( s ) ;
}
}
}
}
2018-01-11 21:05:42 +01:00
void CollisionShape : : _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 ) ;
}
2017-07-15 06:23:10 +02:00
void CollisionShape : : _notification ( int p_what ) {
switch ( p_what ) {
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 ) ;
if ( shape . is_valid ( ) ) {
parent - > shape_owner_add_shape ( owner_id , shape ) ;
}
2021-02-06 02:41:16 +01:00
_update_in_shape_owner ( ) ;
2017-07-15 06:23:10 +02:00
}
} break ;
case NOTIFICATION_ENTER_TREE : {
2018-01-11 21:05:42 +01:00
if ( parent ) {
_update_in_shape_owner ( ) ;
}
2017-07-15 06:23:10 +02:00
} break ;
case NOTIFICATION_LOCAL_TRANSFORM_CHANGED : {
if ( parent ) {
2018-01-11 21:05:42 +01:00
_update_in_shape_owner ( true ) ;
2017-07-15 06:23:10 +02:00
}
} break ;
case NOTIFICATION_UNPARENTED : {
if ( parent ) {
parent - > remove_shape_owner ( owner_id ) ;
}
owner_id = 0 ;
2021-05-04 16:00:45 +02:00
parent = nullptr ;
2017-07-15 06:23:10 +02:00
} break ;
}
}
void CollisionShape : : resource_changed ( RES res ) {
update_gizmo ( ) ;
}
String CollisionShape : : get_configuration_warning ( ) const {
2020-03-22 09:31:09 +01:00
String warning = Spatial : : get_configuration_warning ( ) ;
2020-10-02 09:51:45 +02:00
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 ( " CollisionShape 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. " ) ;
2017-07-15 06:23:10 +02:00
}
if ( ! shape . is_valid ( ) ) {
2020-03-22 09:31:09 +01:00
if ( warning ! = String ( ) ) {
warning + = " \n \n " ;
}
warning + = TTR ( " A shape must be provided for CollisionShape to function. Please create a shape resource for it. " ) ;
2020-10-02 09:51:45 +02:00
} else {
if ( shape - > is_class ( " PlaneShape " ) ) {
if ( warning ! = String ( ) ) {
warning + = " \n \n " ;
}
warning + = TTR ( " Plane shapes don't work well and will be removed in future versions. Please don't use them. " ) ;
2020-03-22 09:31:09 +01:00
}
2019-03-04 14:12:03 +01:00
2020-10-02 09:51:45 +02:00
if ( Object : : cast_to < RigidBody > ( get_parent ( ) ) & &
Object : : cast_to < ConcavePolygonShape > ( * shape ) & &
Object : : cast_to < RigidBody > ( get_parent ( ) ) - > get_mode ( ) ! = RigidBody : : MODE_STATIC ) {
if ( warning ! = String ( ) ) {
warning + = " \n \n " ;
2020-03-03 17:05:10 +01:00
}
2020-10-02 09:51:45 +02:00
warning + = TTR ( " ConcavePolygonShape doesn't support RigidBody in another mode than static. " ) ;
2020-03-03 17:05:10 +01:00
}
}
2020-03-22 09:31:09 +01:00
return warning ;
2017-07-15 06:23:10 +02:00
}
2023-01-13 11:19:26 +01:00
# ifdef TOOLS_ENABLED
AABB CollisionShape : : get_fallback_gizmo_aabb ( ) const {
if ( shape . is_null ( ) ) {
return Spatial : : get_fallback_gizmo_aabb ( ) ;
}
// get_debug_mesh() is not const because the mesh is lazy initialized and cached.
// It would be better if we can mark the cache mutable and make get_debug_mesh() const.
return const_cast < CollisionShape * > ( this ) - > shape - > get_debug_mesh ( ) - > get_aabb ( ) ;
}
# endif
2017-07-15 06:23:10 +02:00
void CollisionShape : : _bind_methods ( ) {
//not sure if this should do anything
2017-08-09 13:19:41 +02:00
ClassDB : : bind_method ( D_METHOD ( " resource_changed " , " resource " ) , & CollisionShape : : resource_changed ) ;
ClassDB : : bind_method ( D_METHOD ( " set_shape " , " shape " ) , & CollisionShape : : set_shape ) ;
ClassDB : : bind_method ( D_METHOD ( " get_shape " ) , & CollisionShape : : get_shape ) ;
2017-07-15 06:23:10 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_disabled " , " enable " ) , & CollisionShape : : set_disabled ) ;
ClassDB : : bind_method ( D_METHOD ( " is_disabled " ) , & CollisionShape : : is_disabled ) ;
ClassDB : : bind_method ( D_METHOD ( " make_convex_from_brothers " ) , & CollisionShape : : make_convex_from_brothers ) ;
ClassDB : : set_method_flags ( " CollisionShape " , " make_convex_from_brothers " , METHOD_FLAGS_DEFAULT | METHOD_FLAG_EDITOR ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : OBJECT , " shape " , PROPERTY_HINT_RESOURCE_TYPE , " Shape " ) , " set_shape " , " get_shape " ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " disabled " ) , " set_disabled " , " is_disabled " ) ;
}
void CollisionShape : : set_shape ( const Ref < Shape > & p_shape ) {
2021-01-11 17:04:08 +01:00
if ( p_shape = = shape ) {
return ;
}
2019-03-19 04:53:37 +01:00
if ( ! shape . is_null ( ) ) {
2017-07-15 06:23:10 +02:00
shape - > unregister_owner ( this ) ;
2019-03-19 04:53:37 +01:00
}
2017-07-15 06:23:10 +02:00
shape = p_shape ;
2019-03-19 04:53:37 +01:00
if ( ! shape . is_null ( ) ) {
2017-07-15 06:23:10 +02:00
shape - > register_owner ( this ) ;
2019-03-19 04:53:37 +01:00
}
2017-07-15 06:23:10 +02:00
update_gizmo ( ) ;
if ( parent ) {
parent - > shape_owner_clear_shapes ( owner_id ) ;
if ( shape . is_valid ( ) ) {
parent - > shape_owner_add_shape ( owner_id , shape ) ;
}
}
2021-04-27 11:23:08 +02:00
if ( is_inside_tree ( ) & & parent ) {
// If this is a heightfield shape our center may have changed
_update_in_shape_owner ( true ) ;
2021-05-05 12:44:11 +02:00
}
2017-07-15 06:23:10 +02:00
update_configuration_warning ( ) ;
}
Ref < Shape > CollisionShape : : get_shape ( ) const {
return shape ;
}
void CollisionShape : : set_disabled ( bool p_disabled ) {
disabled = p_disabled ;
update_gizmo ( ) ;
if ( parent ) {
parent - > shape_owner_set_disabled ( owner_id , p_disabled ) ;
}
}
bool CollisionShape : : is_disabled ( ) const {
return disabled ;
}
CollisionShape : : CollisionShape ( ) {
2021-11-09 13:00:07 +01:00
//indicator = RID_PRIME(VisualServer::get_singleton()->mesh_create());
2017-07-15 06:23:10 +02:00
disabled = false ;
2021-05-04 16:00:45 +02:00
parent = nullptr ;
2017-07-15 06:23:10 +02:00
owner_id = 0 ;
set_notify_local_transform ( true ) ;
}
CollisionShape : : ~ CollisionShape ( ) {
2021-05-05 12:44:11 +02:00
if ( ! shape . is_null ( ) ) {
2017-07-15 06:23:10 +02:00
shape - > unregister_owner ( this ) ;
2021-05-05 12:44:11 +02:00
}
2017-07-15 06:23:10 +02:00
//VisualServer::get_singleton()->free(indicator);
}