2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* path_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 PATH_2D_H
|
|
|
|
#define PATH_2D_H
|
|
|
|
|
|
|
|
#include "scene/2d/node_2d.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/resources/curve.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
class Path2D : public Node2D {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(Path2D, Node2D);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Ref<Curve2D> curve;
|
|
|
|
|
|
|
|
void _curve_changed();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2019-10-21 21:37:07 +00:00
|
|
|
#ifdef TOOLS_ENABLED
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual Rect2 _edit_get_rect() const override;
|
|
|
|
virtual bool _edit_use_rect() const override;
|
|
|
|
virtual bool _edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const override;
|
2019-10-21 21:37:07 +00:00
|
|
|
#endif
|
2017-12-27 08:28:02 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_curve(const Ref<Curve2D> &p_curve);
|
2014-02-10 01:10:30 +00:00
|
|
|
Ref<Curve2D> get_curve() const;
|
|
|
|
|
2020-06-12 11:16:14 +00:00
|
|
|
Path2D() {}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2014-07-06 14:49:27 +00:00
|
|
|
class PathFollow2D : public Node2D {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(PathFollow2D, Node2D);
|
2014-07-06 14:49:27 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-07-06 14:49:27 +00:00
|
|
|
private:
|
2020-12-11 14:54:03 +00:00
|
|
|
Path2D *path = nullptr;
|
|
|
|
real_t offset = 0;
|
|
|
|
real_t h_offset = 0;
|
|
|
|
real_t v_offset = 0;
|
|
|
|
real_t lookahead = 4;
|
|
|
|
bool cubic = true;
|
|
|
|
bool loop = true;
|
|
|
|
bool rotates = true;
|
2014-07-06 14:49:27 +00:00
|
|
|
|
|
|
|
void _update_transform();
|
|
|
|
|
|
|
|
protected:
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual void _validate_property(PropertyInfo &property) const override;
|
2014-07-06 14:49:27 +00:00
|
|
|
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-07-06 14:49:27 +00:00
|
|
|
void set_offset(float p_offset);
|
|
|
|
float get_offset() const;
|
|
|
|
|
|
|
|
void set_h_offset(float p_h_offset);
|
|
|
|
float get_h_offset() const;
|
|
|
|
|
|
|
|
void set_v_offset(float p_v_offset);
|
|
|
|
float get_v_offset() const;
|
|
|
|
|
|
|
|
void set_unit_offset(float p_unit_offset);
|
|
|
|
float get_unit_offset() const;
|
|
|
|
|
2017-12-04 23:03:01 +00:00
|
|
|
void set_lookahead(float p_lookahead);
|
|
|
|
float get_lookahead() const;
|
|
|
|
|
2014-07-06 14:49:27 +00:00
|
|
|
void set_loop(bool p_loop);
|
|
|
|
bool has_loop() const;
|
|
|
|
|
2019-12-25 12:48:27 +00:00
|
|
|
void set_rotates(bool p_rotates);
|
2014-07-06 14:49:27 +00:00
|
|
|
bool is_rotating() const;
|
|
|
|
|
|
|
|
void set_cubic_interpolation(bool p_enable);
|
|
|
|
bool get_cubic_interpolation() const;
|
|
|
|
|
2020-07-10 10:34:39 +00:00
|
|
|
String get_configuration_warning() const override;
|
2016-05-17 21:27:15 +00:00
|
|
|
|
2020-12-11 14:54:03 +00:00
|
|
|
PathFollow2D() {}
|
2014-07-06 14:49:27 +00:00
|
|
|
};
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#endif // PATH_2D_H
|