2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* collision_object_2d_sw.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* 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
|
|
|
/*************************************************************************/
|
2021-01-01 20:13:46 +01:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 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
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef COLLISION_OBJECT_2D_SW_H
|
|
|
|
#define COLLISION_OBJECT_2D_SW_H
|
|
|
|
|
|
|
|
#include "broad_phase_2d_sw.h"
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/self_list.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "servers/physics_2d_server.h"
|
|
|
|
#include "shape_2d_sw.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
class Space2DSW;
|
|
|
|
|
|
|
|
class CollisionObject2DSW : public ShapeOwner2DSW {
|
|
|
|
public:
|
|
|
|
enum Type {
|
|
|
|
TYPE_AREA,
|
|
|
|
TYPE_BODY
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
private:
|
2014-02-10 02:10:30 +01:00
|
|
|
Type type;
|
|
|
|
RID self;
|
|
|
|
ObjectID instance_id;
|
2018-08-25 00:03:26 +02:00
|
|
|
ObjectID canvas_instance_id;
|
2015-03-22 05:46:18 +01:00
|
|
|
bool pickable;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
struct Shape {
|
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D xform;
|
|
|
|
Transform2D xform_inv;
|
2014-02-10 02:10:30 +01:00
|
|
|
BroadPhase2DSW::ID bpid;
|
|
|
|
Rect2 aabb_cache; //for rayqueries
|
|
|
|
Shape2DSW *shape;
|
2014-10-16 05:06:34 +02:00
|
|
|
Variant metadata;
|
2017-06-24 04:30:43 +02:00
|
|
|
bool disabled;
|
|
|
|
bool one_way_collision;
|
2019-01-18 18:15:05 +01:00
|
|
|
float one_way_collision_margin;
|
2017-06-24 04:30:43 +02:00
|
|
|
Shape() {
|
|
|
|
disabled = false;
|
|
|
|
one_way_collision = false;
|
2019-01-18 18:15:05 +01:00
|
|
|
one_way_collision_margin = 0;
|
2017-06-24 04:30:43 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Vector<Shape> shapes;
|
|
|
|
Space2DSW *space;
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D transform;
|
|
|
|
Transform2D inv_transform;
|
2015-05-03 21:47:21 +02:00
|
|
|
uint32_t collision_mask;
|
2017-06-13 17:45:01 +02:00
|
|
|
uint32_t collision_layer;
|
2014-02-10 02:10:30 +01:00
|
|
|
bool _static;
|
|
|
|
|
2019-06-21 13:33:01 +02:00
|
|
|
SelfList<CollisionObject2DSW> pending_shape_update_list;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _update_shapes();
|
|
|
|
|
|
|
|
protected:
|
2017-03-05 16:44:50 +01:00
|
|
|
void _update_shapes_with_motion(const Vector2 &p_motion);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _unregister_shapes();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ void _set_transform(const Transform2D &p_transform, bool p_update_shapes = true) {
|
|
|
|
transform = p_transform;
|
|
|
|
if (p_update_shapes) {
|
|
|
|
_update_shapes();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_FORCE_INLINE_ void _set_inv_transform(const Transform2D &p_transform) { inv_transform = p_transform; }
|
2014-02-10 02:10:30 +01:00
|
|
|
void _set_static(bool p_static);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void _shapes_changed() = 0;
|
2017-08-11 21:10:05 +02:00
|
|
|
void _set_space(Space2DSW *p_space);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
CollisionObject2DSW(Type p_type);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
|
|
|
_FORCE_INLINE_ void set_self(const RID &p_self) { self = p_self; }
|
2014-02-10 02:10:30 +01:00
|
|
|
_FORCE_INLINE_ RID get_self() const { return self; }
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ void set_instance_id(const ObjectID &p_instance_id) { instance_id = p_instance_id; }
|
2014-02-10 02:10:30 +01:00
|
|
|
_FORCE_INLINE_ ObjectID get_instance_id() const { return instance_id; }
|
|
|
|
|
2018-08-25 00:03:26 +02:00
|
|
|
_FORCE_INLINE_ void set_canvas_instance_id(const ObjectID &p_canvas_instance_id) { canvas_instance_id = p_canvas_instance_id; }
|
|
|
|
_FORCE_INLINE_ ObjectID get_canvas_instance_id() const { return canvas_instance_id; }
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _shape_changed();
|
|
|
|
|
|
|
|
_FORCE_INLINE_ Type get_type() const { return type; }
|
2019-03-24 10:38:31 +01:00
|
|
|
void add_shape(Shape2DSW *p_shape, const Transform2D &p_transform = Transform2D(), bool p_disabled = false);
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_shape(int p_index, Shape2DSW *p_shape);
|
|
|
|
void set_shape_transform(int p_index, const Transform2D &p_transform);
|
|
|
|
void set_shape_metadata(int p_index, const Variant &p_metadata);
|
2014-10-16 05:06:34 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
_FORCE_INLINE_ int get_shape_count() const { return shapes.size(); }
|
2018-12-07 22:09:39 +01:00
|
|
|
_FORCE_INLINE_ bool is_shape_disabled(int p_index) const {
|
|
|
|
CRASH_BAD_INDEX(p_index, shapes.size());
|
|
|
|
return shapes[p_index].disabled;
|
|
|
|
}
|
2017-10-11 17:19:42 +02:00
|
|
|
_FORCE_INLINE_ Shape2DSW *get_shape(int p_index) const {
|
2018-09-27 13:11:41 +02:00
|
|
|
CRASH_BAD_INDEX(p_index, shapes.size());
|
2017-10-11 17:19:42 +02:00
|
|
|
return shapes[p_index].shape;
|
|
|
|
}
|
|
|
|
_FORCE_INLINE_ const Transform2D &get_shape_transform(int p_index) const {
|
2018-09-27 13:11:41 +02:00
|
|
|
CRASH_BAD_INDEX(p_index, shapes.size());
|
2017-10-11 17:19:42 +02:00
|
|
|
return shapes[p_index].xform;
|
|
|
|
}
|
|
|
|
_FORCE_INLINE_ const Transform2D &get_shape_inv_transform(int p_index) const {
|
2018-09-27 13:11:41 +02:00
|
|
|
CRASH_BAD_INDEX(p_index, shapes.size());
|
2017-10-11 17:19:42 +02:00
|
|
|
return shapes[p_index].xform_inv;
|
|
|
|
}
|
|
|
|
_FORCE_INLINE_ const Rect2 &get_shape_aabb(int p_index) const {
|
2018-09-27 13:11:41 +02:00
|
|
|
CRASH_BAD_INDEX(p_index, shapes.size());
|
2017-10-11 17:19:42 +02:00
|
|
|
return shapes[p_index].aabb_cache;
|
|
|
|
}
|
|
|
|
_FORCE_INLINE_ const Variant &get_shape_metadata(int p_index) const {
|
2018-09-27 13:11:41 +02:00
|
|
|
CRASH_BAD_INDEX(p_index, shapes.size());
|
2017-10-11 17:19:42 +02:00
|
|
|
return shapes[p_index].metadata;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
_FORCE_INLINE_ Transform2D get_transform() const { return transform; }
|
|
|
|
_FORCE_INLINE_ Transform2D get_inv_transform() const { return inv_transform; }
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ Space2DSW *get_space() const { return space; }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-03-01 19:56:55 +01:00
|
|
|
void set_shape_as_disabled(int p_idx, bool p_disabled);
|
2017-10-11 17:19:42 +02:00
|
|
|
_FORCE_INLINE_ bool is_shape_set_as_disabled(int p_idx) const {
|
2018-09-27 13:11:41 +02:00
|
|
|
CRASH_BAD_INDEX(p_idx, shapes.size());
|
2017-10-11 17:19:42 +02:00
|
|
|
return shapes[p_idx].disabled;
|
|
|
|
}
|
2017-06-24 04:30:43 +02:00
|
|
|
|
2019-01-18 18:15:05 +01:00
|
|
|
_FORCE_INLINE_ void set_shape_as_one_way_collision(int p_idx, bool p_one_way_collision, float p_margin) {
|
2018-09-27 13:11:41 +02:00
|
|
|
CRASH_BAD_INDEX(p_idx, shapes.size());
|
2018-07-25 03:11:03 +02:00
|
|
|
shapes.write[p_idx].one_way_collision = p_one_way_collision;
|
2019-01-18 18:15:05 +01:00
|
|
|
shapes.write[p_idx].one_way_collision_margin = p_margin;
|
2017-10-11 17:19:42 +02:00
|
|
|
}
|
|
|
|
_FORCE_INLINE_ bool is_shape_set_as_one_way_collision(int p_idx) const {
|
2018-09-27 13:11:41 +02:00
|
|
|
CRASH_BAD_INDEX(p_idx, shapes.size());
|
2017-10-11 17:19:42 +02:00
|
|
|
return shapes[p_idx].one_way_collision;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-01-18 18:15:05 +01:00
|
|
|
_FORCE_INLINE_ float get_shape_one_way_collision_margin(int p_idx) const {
|
|
|
|
CRASH_BAD_INDEX(p_idx, shapes.size());
|
|
|
|
return shapes[p_idx].one_way_collision_margin;
|
|
|
|
}
|
|
|
|
|
2020-06-27 11:57:47 +02:00
|
|
|
void set_collision_mask(uint32_t p_mask) {
|
|
|
|
collision_mask = p_mask;
|
|
|
|
_shape_changed();
|
|
|
|
}
|
2015-05-03 21:47:21 +02:00
|
|
|
_FORCE_INLINE_ uint32_t get_collision_mask() const { return collision_mask; }
|
2014-02-19 15:57:14 +01:00
|
|
|
|
2020-06-27 11:57:47 +02:00
|
|
|
void set_collision_layer(uint32_t p_layer) {
|
|
|
|
collision_layer = p_layer;
|
|
|
|
_shape_changed();
|
|
|
|
}
|
2017-06-13 17:45:01 +02:00
|
|
|
_FORCE_INLINE_ uint32_t get_collision_layer() const { return collision_layer; }
|
2014-05-14 06:22:15 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void remove_shape(Shape2DSW *p_shape);
|
|
|
|
void remove_shape(int p_index);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_space(Space2DSW *p_space) = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ bool is_static() const { return _static; }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_pickable(bool p_pickable) { pickable = p_pickable; }
|
2015-03-22 05:46:18 +01:00
|
|
|
_FORCE_INLINE_ bool is_pickable() const { return pickable; }
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ bool test_collision_mask(CollisionObject2DSW *p_other) const {
|
2015-05-03 21:47:21 +02:00
|
|
|
|
2017-06-13 17:45:01 +02:00
|
|
|
return collision_layer & p_other->collision_mask || p_other->collision_layer & collision_mask;
|
2015-05-03 21:47:21 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual ~CollisionObject2DSW() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // COLLISION_OBJECT_2D_SW_H
|