nine_patch_rect.cpp 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /**************************************************************************/
  2. /* nine_patch_rect.cpp */
  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. #include "nine_patch_rect.h"
  31. #include "servers/rendering_server.h"
  32. void NinePatchRect::_notification(int p_what) {
  33. switch (p_what) {
  34. case NOTIFICATION_DRAW: {
  35. if (texture.is_null()) {
  36. return;
  37. }
  38. Rect2 rect = Rect2(Point2(), get_size());
  39. Rect2 src_rect = region_rect;
  40. texture->get_rect_region(rect, src_rect, rect, src_rect);
  41. RID ci = get_canvas_item();
  42. RS::get_singleton()->canvas_item_add_nine_patch(ci, rect, src_rect, texture->get_rid(), Vector2(margin[SIDE_LEFT], margin[SIDE_TOP]), Vector2(margin[SIDE_RIGHT], margin[SIDE_BOTTOM]), RS::NinePatchAxisMode(axis_h), RS::NinePatchAxisMode(axis_v), draw_center);
  43. } break;
  44. }
  45. }
  46. Size2 NinePatchRect::get_minimum_size() const {
  47. return Size2(margin[SIDE_LEFT] + margin[SIDE_RIGHT], margin[SIDE_TOP] + margin[SIDE_BOTTOM]);
  48. }
  49. void NinePatchRect::_bind_methods() {
  50. ClassDB::bind_method(D_METHOD("set_texture", "texture"), &NinePatchRect::set_texture);
  51. ClassDB::bind_method(D_METHOD("get_texture"), &NinePatchRect::get_texture);
  52. ClassDB::bind_method(D_METHOD("set_patch_margin", "margin", "value"), &NinePatchRect::set_patch_margin);
  53. ClassDB::bind_method(D_METHOD("get_patch_margin", "margin"), &NinePatchRect::get_patch_margin);
  54. ClassDB::bind_method(D_METHOD("set_region_rect", "rect"), &NinePatchRect::set_region_rect);
  55. ClassDB::bind_method(D_METHOD("get_region_rect"), &NinePatchRect::get_region_rect);
  56. ClassDB::bind_method(D_METHOD("set_draw_center", "draw_center"), &NinePatchRect::set_draw_center);
  57. ClassDB::bind_method(D_METHOD("is_draw_center_enabled"), &NinePatchRect::is_draw_center_enabled);
  58. ClassDB::bind_method(D_METHOD("set_h_axis_stretch_mode", "mode"), &NinePatchRect::set_h_axis_stretch_mode);
  59. ClassDB::bind_method(D_METHOD("get_h_axis_stretch_mode"), &NinePatchRect::get_h_axis_stretch_mode);
  60. ClassDB::bind_method(D_METHOD("set_v_axis_stretch_mode", "mode"), &NinePatchRect::set_v_axis_stretch_mode);
  61. ClassDB::bind_method(D_METHOD("get_v_axis_stretch_mode"), &NinePatchRect::get_v_axis_stretch_mode);
  62. ADD_SIGNAL(MethodInfo("texture_changed"));
  63. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE, "Texture2D"), "set_texture", "get_texture");
  64. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "draw_center"), "set_draw_center", "is_draw_center_enabled");
  65. ADD_PROPERTY(PropertyInfo(Variant::RECT2, "region_rect", PROPERTY_HINT_NONE, "suffix:px"), "set_region_rect", "get_region_rect");
  66. ADD_GROUP("Patch Margin", "patch_margin_");
  67. ADD_PROPERTYI(PropertyInfo(Variant::INT, "patch_margin_left", PROPERTY_HINT_RANGE, "0,16384,1,suffix:px"), "set_patch_margin", "get_patch_margin", SIDE_LEFT);
  68. ADD_PROPERTYI(PropertyInfo(Variant::INT, "patch_margin_top", PROPERTY_HINT_RANGE, "0,16384,1,suffix:px"), "set_patch_margin", "get_patch_margin", SIDE_TOP);
  69. ADD_PROPERTYI(PropertyInfo(Variant::INT, "patch_margin_right", PROPERTY_HINT_RANGE, "0,16384,1,suffix:px"), "set_patch_margin", "get_patch_margin", SIDE_RIGHT);
  70. ADD_PROPERTYI(PropertyInfo(Variant::INT, "patch_margin_bottom", PROPERTY_HINT_RANGE, "0,16384,1,suffix:px"), "set_patch_margin", "get_patch_margin", SIDE_BOTTOM);
  71. ADD_GROUP("Axis Stretch", "axis_stretch_");
  72. ADD_PROPERTY(PropertyInfo(Variant::INT, "axis_stretch_horizontal", PROPERTY_HINT_ENUM, "Stretch,Tile,Tile Fit"), "set_h_axis_stretch_mode", "get_h_axis_stretch_mode");
  73. ADD_PROPERTY(PropertyInfo(Variant::INT, "axis_stretch_vertical", PROPERTY_HINT_ENUM, "Stretch,Tile,Tile Fit"), "set_v_axis_stretch_mode", "get_v_axis_stretch_mode");
  74. BIND_ENUM_CONSTANT(AXIS_STRETCH_MODE_STRETCH);
  75. BIND_ENUM_CONSTANT(AXIS_STRETCH_MODE_TILE);
  76. BIND_ENUM_CONSTANT(AXIS_STRETCH_MODE_TILE_FIT);
  77. }
  78. void NinePatchRect::_texture_changed() {
  79. queue_redraw();
  80. update_minimum_size();
  81. }
  82. void NinePatchRect::set_texture(const Ref<Texture2D> &p_tex) {
  83. if (texture == p_tex) {
  84. return;
  85. }
  86. if (texture.is_valid()) {
  87. texture->disconnect_changed(callable_mp(this, &NinePatchRect::_texture_changed));
  88. }
  89. texture = p_tex;
  90. if (texture.is_valid()) {
  91. texture->connect_changed(callable_mp(this, &NinePatchRect::_texture_changed));
  92. }
  93. queue_redraw();
  94. update_minimum_size();
  95. emit_signal(SceneStringName(texture_changed));
  96. }
  97. Ref<Texture2D> NinePatchRect::get_texture() const {
  98. return texture;
  99. }
  100. void NinePatchRect::set_patch_margin(Side p_side, int p_size) {
  101. ERR_FAIL_INDEX((int)p_side, 4);
  102. if (margin[p_side] == p_size) {
  103. return;
  104. }
  105. margin[p_side] = p_size;
  106. queue_redraw();
  107. update_minimum_size();
  108. }
  109. int NinePatchRect::get_patch_margin(Side p_side) const {
  110. ERR_FAIL_INDEX_V((int)p_side, 4, 0);
  111. return margin[p_side];
  112. }
  113. void NinePatchRect::set_region_rect(const Rect2 &p_region_rect) {
  114. if (region_rect == p_region_rect) {
  115. return;
  116. }
  117. region_rect = p_region_rect;
  118. item_rect_changed();
  119. }
  120. Rect2 NinePatchRect::get_region_rect() const {
  121. return region_rect;
  122. }
  123. void NinePatchRect::set_draw_center(bool p_enabled) {
  124. if (draw_center == p_enabled) {
  125. return;
  126. }
  127. draw_center = p_enabled;
  128. queue_redraw();
  129. }
  130. bool NinePatchRect::is_draw_center_enabled() const {
  131. return draw_center;
  132. }
  133. void NinePatchRect::set_h_axis_stretch_mode(AxisStretchMode p_mode) {
  134. if (axis_h == p_mode) {
  135. return;
  136. }
  137. axis_h = p_mode;
  138. queue_redraw();
  139. }
  140. NinePatchRect::AxisStretchMode NinePatchRect::get_h_axis_stretch_mode() const {
  141. return axis_h;
  142. }
  143. void NinePatchRect::set_v_axis_stretch_mode(AxisStretchMode p_mode) {
  144. if (axis_v == p_mode) {
  145. return;
  146. }
  147. axis_v = p_mode;
  148. queue_redraw();
  149. }
  150. NinePatchRect::AxisStretchMode NinePatchRect::get_v_axis_stretch_mode() const {
  151. return axis_v;
  152. }
  153. NinePatchRect::NinePatchRect() {
  154. set_mouse_filter(MOUSE_FILTER_IGNORE);
  155. }
  156. NinePatchRect::~NinePatchRect() {
  157. }