2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* joints_2d.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* 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
|
|
|
/*************************************************************************/
|
2021-01-01 19:13:46 +00:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 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
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef JOINTS_2D_H
|
|
|
|
#define JOINTS_2D_H
|
|
|
|
|
|
|
|
#include "node_2d.h"
|
|
|
|
|
2017-08-29 21:15:12 +00:00
|
|
|
class PhysicsBody2D;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
class Joint2D : public Node2D {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(Joint2D, Node2D);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
RID joint;
|
2017-08-29 21:15:12 +00:00
|
|
|
RID ba, bb;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
NodePath a;
|
|
|
|
NodePath b;
|
|
|
|
real_t bias;
|
|
|
|
|
2015-12-08 20:47:12 +00:00
|
|
|
bool exclude_from_collision;
|
2020-11-25 18:21:33 +00:00
|
|
|
String warning;
|
2015-12-08 20:47:12 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
2020-12-26 14:23:30 +00:00
|
|
|
void _disconnect_signals();
|
|
|
|
void _body_exit_tree(const ObjectID &p_body_id);
|
2017-08-29 21:15:12 +00:00
|
|
|
void _update_joint(bool p_only_free = false);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void _notification(int p_what);
|
2017-08-29 21:15:12 +00:00
|
|
|
virtual RID _configure_joint(PhysicsBody2D *body_a, PhysicsBody2D *body_b) = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2020-11-25 18:21:33 +00:00
|
|
|
virtual String get_configuration_warning() const override;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_node_a(const NodePath &p_node_a);
|
2014-02-10 01:10:30 +00:00
|
|
|
NodePath get_node_a() const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_node_b(const NodePath &p_node_b);
|
2014-02-10 01:10:30 +00:00
|
|
|
NodePath get_node_b() const;
|
|
|
|
|
|
|
|
void set_bias(real_t p_bias);
|
|
|
|
real_t get_bias() const;
|
|
|
|
|
2015-12-08 20:47:12 +00:00
|
|
|
void set_exclude_nodes_from_collision(bool p_enable);
|
|
|
|
bool get_exclude_nodes_from_collision() const;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
RID get_joint() const { return joint; }
|
|
|
|
Joint2D();
|
|
|
|
};
|
|
|
|
|
|
|
|
class PinJoint2D : public Joint2D {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(PinJoint2D, Joint2D);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2015-10-10 20:28:05 +00:00
|
|
|
real_t softness;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual RID _configure_joint(PhysicsBody2D *body_a, PhysicsBody2D *body_b) override;
|
2015-10-10 20:28:05 +00:00
|
|
|
static void _bind_methods();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2017-08-11 19:10:05 +00:00
|
|
|
void set_softness(real_t p_softness);
|
2015-10-10 20:28:05 +00:00
|
|
|
real_t get_softness() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
PinJoint2D();
|
|
|
|
};
|
|
|
|
|
|
|
|
class GrooveJoint2D : public Joint2D {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(GrooveJoint2D, Joint2D);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
real_t length;
|
|
|
|
real_t initial_offset;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual RID _configure_joint(PhysicsBody2D *body_a, PhysicsBody2D *body_b) override;
|
2014-02-10 01:10:30 +00:00
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
void set_length(real_t p_length);
|
|
|
|
real_t get_length() const;
|
|
|
|
|
|
|
|
void set_initial_offset(real_t p_initial_offset);
|
|
|
|
real_t get_initial_offset() const;
|
|
|
|
|
|
|
|
GrooveJoint2D();
|
|
|
|
};
|
|
|
|
|
|
|
|
class DampedSpringJoint2D : public Joint2D {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(DampedSpringJoint2D, Joint2D);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
real_t stiffness;
|
|
|
|
real_t damping;
|
|
|
|
real_t rest_length;
|
|
|
|
real_t length;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual RID _configure_joint(PhysicsBody2D *body_a, PhysicsBody2D *body_b) override;
|
2014-02-10 01:10:30 +00:00
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
void set_length(real_t p_length);
|
|
|
|
real_t get_length() const;
|
|
|
|
|
|
|
|
void set_rest_length(real_t p_rest_length);
|
|
|
|
real_t get_rest_length() const;
|
|
|
|
|
|
|
|
void set_damping(real_t p_damping);
|
|
|
|
real_t get_damping() const;
|
|
|
|
|
|
|
|
void set_stiffness(real_t p_stiffness);
|
|
|
|
real_t get_stiffness() const;
|
|
|
|
|
|
|
|
DampedSpringJoint2D();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // JOINTS_2D_H
|