graph_node.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /**************************************************************************/
  2. /* graph_node.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. #ifndef GRAPH_NODE_H
  31. #define GRAPH_NODE_H
  32. #include "scene/gui/graph_element.h"
  33. class HBoxContainer;
  34. class GraphNode : public GraphElement {
  35. GDCLASS(GraphNode, GraphElement);
  36. struct Slot {
  37. bool enable_left = false;
  38. int type_left = 0;
  39. Color color_left = Color(1, 1, 1, 1);
  40. Ref<Texture2D> custom_port_icon_left;
  41. bool enable_right = false;
  42. int type_right = 0;
  43. Color color_right = Color(1, 1, 1, 1);
  44. Ref<Texture2D> custom_port_icon_right;
  45. bool draw_stylebox = true;
  46. };
  47. struct PortCache {
  48. Vector2 pos;
  49. int slot_index;
  50. int type = 0;
  51. Color color;
  52. };
  53. struct _MinSizeCache {
  54. int min_size;
  55. bool will_stretch;
  56. int final_size;
  57. };
  58. HBoxContainer *titlebar_hbox = nullptr;
  59. Label *title_label = nullptr;
  60. String title;
  61. Vector<PortCache> left_port_cache;
  62. Vector<PortCache> right_port_cache;
  63. HashMap<int, Slot> slot_table;
  64. Vector<int> slot_y_cache;
  65. bool port_pos_dirty = true;
  66. void _port_pos_update();
  67. protected:
  68. void _notification(int p_what);
  69. static void _bind_methods();
  70. virtual void _resort() override;
  71. virtual void draw_port(int p_slot_index, Point2i p_pos, bool p_left, const Color &p_color);
  72. GDVIRTUAL4(_draw_port, int, Point2i, bool, const Color &);
  73. bool _set(const StringName &p_name, const Variant &p_value);
  74. bool _get(const StringName &p_name, Variant &r_ret) const;
  75. void _get_property_list(List<PropertyInfo> *p_list) const;
  76. public:
  77. void set_title(const String &p_title);
  78. String get_title() const;
  79. HBoxContainer *get_titlebar_hbox();
  80. void set_slot(int p_slot_index, bool p_enable_left, int p_type_left, const Color &p_color_left, bool p_enable_right, int p_type_right, const Color &p_color_right, const Ref<Texture2D> &p_custom_left = Ref<Texture2D>(), const Ref<Texture2D> &p_custom_right = Ref<Texture2D>(), bool p_draw_stylebox = true);
  81. void clear_slot(int p_slot_index);
  82. void clear_all_slots();
  83. bool is_slot_enabled_left(int p_slot_index) const;
  84. void set_slot_enabled_left(int p_slot_index, bool p_enable);
  85. void set_slot_type_left(int p_slot_index, int p_type);
  86. int get_slot_type_left(int p_slot_index) const;
  87. void set_slot_color_left(int p_slot_index, const Color &p_color);
  88. Color get_slot_color_left(int p_slot_index) const;
  89. bool is_slot_enabled_right(int p_slot_index) const;
  90. void set_slot_enabled_right(int p_slot_index, bool p_enable);
  91. void set_slot_type_right(int p_slot_index, int p_type);
  92. int get_slot_type_right(int p_slot_index) const;
  93. void set_slot_color_right(int p_slot_index, const Color &p_color);
  94. Color get_slot_color_right(int p_slot_index) const;
  95. bool is_slot_draw_stylebox(int p_slot_index) const;
  96. void set_slot_draw_stylebox(int p_slot_index, bool p_enable);
  97. int get_input_port_count();
  98. Vector2 get_input_port_position(int p_port_idx);
  99. int get_input_port_type(int p_port_idx);
  100. Color get_input_port_color(int p_port_idx);
  101. int get_input_port_slot(int p_port_idx);
  102. int get_output_port_count();
  103. Vector2 get_output_port_position(int p_port_idx);
  104. int get_output_port_type(int p_port_idx);
  105. Color get_output_port_color(int p_port_idx);
  106. int get_output_port_slot(int p_port_idx);
  107. virtual Size2 get_minimum_size() const override;
  108. virtual CursorShape get_cursor_shape(const Point2 &p_pos = Point2i()) const override;
  109. virtual Vector<int> get_allowed_size_flags_horizontal() const override;
  110. virtual Vector<int> get_allowed_size_flags_vertical() const override;
  111. GraphNode();
  112. };
  113. #endif // GRAPH_NODE_H