parallax_2d.h 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /**************************************************************************/
  2. /* parallax_2d.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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. #pragma once
  31. #include "scene/2d/node_2d.h"
  32. class Parallax2D : public Node2D {
  33. GDCLASS(Parallax2D, Node2D);
  34. static constexpr real_t DEFAULT_LIMIT = 10000000;
  35. String group_name;
  36. Size2 scroll_scale = Size2(1, 1);
  37. Point2 scroll_offset;
  38. Point2 screen_offset;
  39. Vector2 repeat_size;
  40. int repeat_times = 1;
  41. Point2 limit_begin = Point2(-DEFAULT_LIMIT, -DEFAULT_LIMIT);
  42. Point2 limit_end = Point2(DEFAULT_LIMIT, DEFAULT_LIMIT);
  43. Point2 autoscroll;
  44. bool follow_viewport = true;
  45. bool ignore_camera_scroll = false;
  46. void _update_process();
  47. void _update_repeat();
  48. void _update_scroll();
  49. protected:
  50. #ifdef TOOLS_ENABLED
  51. void _edit_set_position(const Point2 &p_position) override;
  52. #endif // TOOLS_ENABLED
  53. void _validate_property(PropertyInfo &p_property) const;
  54. void _camera_moved(const Transform2D &p_transform, const Point2 &p_screen_offset, const Point2 &p_adj_screen_offset);
  55. void _notification(int p_what);
  56. static void _bind_methods();
  57. public:
  58. void set_scroll_scale(const Size2 &p_scale);
  59. Size2 get_scroll_scale() const;
  60. void set_repeat_size(const Size2 &p_repeat_size);
  61. Size2 get_repeat_size() const;
  62. void set_repeat_times(int p_repeat_times);
  63. int get_repeat_times() const;
  64. void set_autoscroll(const Point2 &p_autoscroll);
  65. Point2 get_autoscroll() const;
  66. void set_scroll_offset(const Point2 &p_offset);
  67. Point2 get_scroll_offset() const;
  68. void set_screen_offset(const Point2 &p_offset);
  69. Point2 get_screen_offset() const;
  70. void set_limit_begin(const Point2 &p_offset);
  71. Point2 get_limit_begin() const;
  72. void set_limit_end(const Point2 &p_offset);
  73. Point2 get_limit_end() const;
  74. void set_follow_viewport(bool p_follow);
  75. bool get_follow_viewport();
  76. void set_ignore_camera_scroll(bool p_ignore);
  77. bool is_ignore_camera_scroll();
  78. Parallax2D();
  79. };