visibility_notifier_2d.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*************************************************************************/
  2. /* visibility_notifier_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 VISIBILITY_NOTIFIER_2D_H
  31. #define VISIBILITY_NOTIFIER_2D_H
  32. #include "scene/2d/node_2d.h"
  33. class Viewport;
  34. class VisibilityNotifier2D : public Node2D {
  35. GDCLASS(VisibilityNotifier2D, Node2D);
  36. Set<Viewport *> viewports;
  37. Rect2 rect;
  38. protected:
  39. friend class SpatialIndexer2D;
  40. void _enter_viewport(Viewport *p_viewport);
  41. void _exit_viewport(Viewport *p_viewport);
  42. virtual void _screen_enter() {}
  43. virtual void _screen_exit() {}
  44. void _notification(int p_what);
  45. static void _bind_methods();
  46. public:
  47. void set_rect(const Rect2 &p_rect);
  48. Rect2 get_rect() const;
  49. bool is_on_screen() const;
  50. virtual Rect2 get_item_rect() const;
  51. VisibilityNotifier2D();
  52. };
  53. class VisibilityEnabler2D : public VisibilityNotifier2D {
  54. GDCLASS(VisibilityEnabler2D, VisibilityNotifier2D);
  55. public:
  56. enum Enabler {
  57. ENABLER_PAUSE_ANIMATIONS,
  58. ENABLER_FREEZE_BODIES,
  59. ENABLER_PAUSE_PARTICLES,
  60. ENABLER_PARENT_PROCESS,
  61. ENABLER_PARENT_PHYSICS_PROCESS,
  62. ENABLER_PAUSE_ANIMATED_SPRITES,
  63. ENABLER_MAX
  64. };
  65. protected:
  66. virtual void _screen_enter();
  67. virtual void _screen_exit();
  68. bool visible;
  69. void _find_nodes(Node *p_node);
  70. Map<Node *, Variant> nodes;
  71. void _node_removed(Node *p_node);
  72. bool enabler[ENABLER_MAX];
  73. void _change_node_state(Node *p_node, bool p_enabled);
  74. void _notification(int p_what);
  75. static void _bind_methods();
  76. public:
  77. void set_enabler(Enabler p_enabler, bool p_enable);
  78. bool is_enabler_enabled(Enabler p_enabler) const;
  79. String get_configuration_warning() const;
  80. VisibilityEnabler2D();
  81. };
  82. VARIANT_ENUM_CAST(VisibilityEnabler2D::Enabler);
  83. #endif // VISIBILITY_NOTIFIER_2D_H