path_2d.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*************************************************************************/
  2. /* path_2d.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef PATH_2D_H
  31. #define PATH_2D_H
  32. #include "scene/2d/node_2d.h"
  33. #include "scene/resources/curve.h"
  34. class Path2D : public Node2D {
  35. GDCLASS(Path2D, Node2D);
  36. Ref<Curve2D> curve;
  37. void _curve_changed();
  38. protected:
  39. void _notification(int p_what);
  40. static void _bind_methods();
  41. public:
  42. void set_curve(const Ref<Curve2D> &p_curve);
  43. Ref<Curve2D> get_curve() const;
  44. Path2D();
  45. };
  46. class PathFollow2D : public Node2D {
  47. GDCLASS(PathFollow2D, Node2D);
  48. public:
  49. private:
  50. Path2D *path;
  51. real_t offset;
  52. real_t h_offset;
  53. real_t v_offset;
  54. real_t lookahead;
  55. bool cubic;
  56. bool loop;
  57. bool rotate;
  58. void _update_transform();
  59. protected:
  60. bool _set(const StringName &p_name, const Variant &p_value);
  61. bool _get(const StringName &p_name, Variant &r_ret) const;
  62. void _get_property_list(List<PropertyInfo> *p_list) const;
  63. void _notification(int p_what);
  64. static void _bind_methods();
  65. public:
  66. void set_offset(float p_offset);
  67. float get_offset() const;
  68. void set_h_offset(float p_h_offset);
  69. float get_h_offset() const;
  70. void set_v_offset(float p_v_offset);
  71. float get_v_offset() const;
  72. void set_unit_offset(float p_unit_offset);
  73. float get_unit_offset() const;
  74. void set_lookahead(float p_lookahead);
  75. float get_lookahead() const;
  76. void set_loop(bool p_loop);
  77. bool has_loop() const;
  78. void set_rotate(bool p_rotate);
  79. bool is_rotating() const;
  80. void set_cubic_interpolation(bool p_enable);
  81. bool get_cubic_interpolation() const;
  82. String get_configuration_warning() const;
  83. PathFollow2D();
  84. };
  85. #endif // PATH_2D_H