2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2020-03-26 22:49:16 +01:00
|
|
|
/* box_shape_3d.cpp */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
#include "box_shape_3d.h"
|
2020-03-27 19:21:27 +01:00
|
|
|
#include "servers/physics_server_3d.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-08-02 11:10:43 +02:00
|
|
|
Vector<Vector3> BoxShape3D::get_debug_mesh_lines() const {
|
2015-09-20 18:03:46 +02:00
|
|
|
Vector<Vector3> lines;
|
2017-11-17 03:09:00 +01:00
|
|
|
AABB aabb;
|
2020-12-07 18:52:11 +01:00
|
|
|
aabb.position = -size / 2;
|
|
|
|
aabb.size = size;
|
2015-09-20 18:03:46 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < 12; i++) {
|
|
|
|
Vector3 a, b;
|
|
|
|
aabb.get_edge(i, a, b);
|
2015-09-20 18:03:46 +02:00
|
|
|
lines.push_back(a);
|
|
|
|
lines.push_back(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
real_t BoxShape3D::get_enclosing_radius() const {
|
2020-12-07 18:52:11 +01:00
|
|
|
return size.length() / 2;
|
2020-01-10 12:22:34 +01:00
|
|
|
}
|
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
void BoxShape3D::_update_shape() {
|
2020-12-07 18:52:11 +01:00
|
|
|
PhysicsServer3D::get_singleton()->shape_set_data(get_shape(), size / 2);
|
2020-03-26 22:49:16 +01:00
|
|
|
Shape3D::_update_shape();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2021-06-17 05:23:52 +02:00
|
|
|
#ifndef DISABLE_DEPRECATED
|
|
|
|
bool BoxShape3D::_set(const StringName &p_name, const Variant &p_value) {
|
|
|
|
if (p_name == "extents") { // Compatibility with Godot 3.x.
|
|
|
|
// Convert to `size`, twice as big.
|
|
|
|
set_size((Vector3)p_value * 2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BoxShape3D::_get(const StringName &p_name, Variant &r_property) const {
|
|
|
|
if (p_name == "extents") { // Compatibility with Godot 3.x.
|
|
|
|
// Convert to `extents`, half as big.
|
|
|
|
r_property = size / 2;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif // DISABLE_DEPRECATED
|
|
|
|
|
2020-12-07 18:52:11 +01:00
|
|
|
void BoxShape3D::set_size(const Vector3 &p_size) {
|
2022-02-20 07:37:49 +01:00
|
|
|
ERR_FAIL_COND_MSG(p_size.x < 0 || p_size.y < 0 || p_size.z < 0, "BoxShape3D size cannot be negative.");
|
2020-12-07 18:52:11 +01:00
|
|
|
size = p_size;
|
2014-02-10 02:10:30 +01:00
|
|
|
_update_shape();
|
|
|
|
notify_change_to_owners();
|
|
|
|
}
|
|
|
|
|
2020-12-07 18:52:11 +01:00
|
|
|
Vector3 BoxShape3D::get_size() const {
|
|
|
|
return size;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
void BoxShape3D::_bind_methods() {
|
2020-12-07 18:52:11 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_size", "size"), &BoxShape3D::set_size);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_size"), &BoxShape3D::get_size);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-12-03 01:09:19 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "size", PROPERTY_HINT_NONE, "suffix:m"), "set_size", "get_size");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
BoxShape3D::BoxShape3D() :
|
2020-03-27 19:21:27 +01:00
|
|
|
Shape3D(PhysicsServer3D::get_singleton()->shape_create(PhysicsServer3D::SHAPE_BOX)) {
|
2021-12-31 00:20:56 +01:00
|
|
|
set_size(Vector3(1, 1, 1));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|