2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2020-03-26 21:49:16 +00:00
|
|
|
/* ray_cast_3d.h */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2020-01-01 10:16:22 +00:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 01:10:30 +00: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-04 23:50:27 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
#ifndef RAY_CAST_3D_H
|
|
|
|
#define RAY_CAST_3D_H
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
#include "scene/3d/node_3d.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
class RayCast3D : public Node3D {
|
|
|
|
GDCLASS(RayCast3D, Node3D);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
bool enabled;
|
|
|
|
bool collided;
|
|
|
|
ObjectID against;
|
|
|
|
int against_shape;
|
|
|
|
Vector3 collision_point;
|
|
|
|
Vector3 collision_normal;
|
|
|
|
|
|
|
|
Vector3 cast_to;
|
2015-01-03 19:52:37 +00:00
|
|
|
Set<RID> exclude;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-10-21 20:17:26 +00:00
|
|
|
uint32_t collision_mask;
|
2017-11-30 03:26:13 +00:00
|
|
|
bool exclude_parent_body;
|
2016-04-09 18:54:09 +00:00
|
|
|
|
2017-03-21 16:09:04 +00:00
|
|
|
Node *debug_shape;
|
|
|
|
Ref<Material> debug_material;
|
|
|
|
|
|
|
|
void _create_debug_shape();
|
|
|
|
void _update_debug_shape();
|
|
|
|
void _clear_debug_shape();
|
|
|
|
|
2018-08-21 18:30:41 +00:00
|
|
|
bool collide_with_areas;
|
|
|
|
bool collide_with_bodies;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
2016-08-09 17:52:15 +00:00
|
|
|
void _update_raycast_state();
|
2014-02-10 01:10:30 +00:00
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2018-08-21 18:30:41 +00:00
|
|
|
void set_collide_with_areas(bool p_clip);
|
|
|
|
bool is_collide_with_areas_enabled() const;
|
|
|
|
|
|
|
|
void set_collide_with_bodies(bool p_clip);
|
|
|
|
bool is_collide_with_bodies_enabled() const;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void set_enabled(bool p_enabled);
|
|
|
|
bool is_enabled() const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_cast_to(const Vector3 &p_point);
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector3 get_cast_to() const;
|
|
|
|
|
2017-10-21 20:17:26 +00:00
|
|
|
void set_collision_mask(uint32_t p_mask);
|
|
|
|
uint32_t get_collision_mask() const;
|
2016-04-09 18:54:09 +00:00
|
|
|
|
2017-10-23 12:31:18 +00:00
|
|
|
void set_collision_mask_bit(int p_bit, bool p_value);
|
|
|
|
bool get_collision_mask_bit(int p_bit) const;
|
|
|
|
|
2017-11-30 03:26:13 +00:00
|
|
|
void set_exclude_parent_body(bool p_exclude_parent_body);
|
|
|
|
bool get_exclude_parent_body() const;
|
|
|
|
|
2016-08-09 17:52:15 +00:00
|
|
|
void force_raycast_update();
|
2014-02-10 01:10:30 +00:00
|
|
|
bool is_colliding() const;
|
|
|
|
Object *get_collider() const;
|
|
|
|
int get_collider_shape() const;
|
|
|
|
Vector3 get_collision_point() const;
|
|
|
|
Vector3 get_collision_normal() const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void add_exception_rid(const RID &p_rid);
|
|
|
|
void add_exception(const Object *p_object);
|
|
|
|
void remove_exception_rid(const RID &p_rid);
|
|
|
|
void remove_exception(const Object *p_object);
|
2015-01-03 19:52:37 +00:00
|
|
|
void clear_exceptions();
|
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
RayCast3D();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RAY_CAST_H
|