texture_button.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. /*************************************************************************/
  2. /* texture_button.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 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. #include "texture_button.h"
  31. #include "core/typedefs.h"
  32. #include <stdlib.h>
  33. Size2 TextureButton::get_minimum_size() const {
  34. Size2 rscale = Control::get_minimum_size();
  35. if (!expand) {
  36. if (normal.is_null()) {
  37. if (pressed.is_null()) {
  38. if (hover.is_null())
  39. if (click_mask.is_null())
  40. rscale = Size2();
  41. else
  42. rscale = click_mask->get_size();
  43. else
  44. rscale = hover->get_size();
  45. } else
  46. rscale = pressed->get_size();
  47. } else
  48. rscale = normal->get_size();
  49. }
  50. return rscale.abs();
  51. }
  52. bool TextureButton::has_point(const Point2 &p_point) const {
  53. if (click_mask.is_valid()) {
  54. Point2 point = p_point;
  55. Rect2 rect = Rect2();
  56. Size2 mask_size = click_mask->get_size();
  57. if (_position_rect.has_no_area()) {
  58. rect.size = mask_size;
  59. } else if (_tile) {
  60. // if the stretch mode is tile we offset the point to keep it inside the mask size
  61. rect.size = mask_size;
  62. if (_position_rect.has_point(point)) {
  63. int cols = (int)Math::ceil(_position_rect.size.x / mask_size.x);
  64. int rows = (int)Math::ceil(_position_rect.size.y / mask_size.y);
  65. int col = (int)(point.x / mask_size.x) % cols;
  66. int row = (int)(point.y / mask_size.y) % rows;
  67. point.x -= mask_size.x * col;
  68. point.y -= mask_size.y * row;
  69. }
  70. } else {
  71. // we need to transform the point from our scaled / translated image back to our mask image
  72. Point2 ofs = _position_rect.position;
  73. Size2 scale = mask_size / _position_rect.size;
  74. switch (stretch_mode) {
  75. case STRETCH_KEEP_ASPECT_COVERED: {
  76. // if the stretch mode is aspect covered the image uses a texture region so we need to take that into account
  77. float min = MIN(scale.x, scale.y);
  78. scale.x = min;
  79. scale.y = min;
  80. ofs -= _texture_region.position / min;
  81. } break;
  82. default: {
  83. // FIXME: Why a switch if we only handle one enum value?
  84. }
  85. }
  86. // offset and scale the new point position to adjust it to the bitmask size
  87. point -= ofs;
  88. point *= scale;
  89. // finally, we need to check if the point is inside a rectangle with a position >= 0,0 and a size <= mask_size
  90. rect.position = Point2(MAX(0, _texture_region.position.x), MAX(0, _texture_region.position.y));
  91. rect.size = Size2(MIN(mask_size.x, _texture_region.size.x), MIN(mask_size.y, _texture_region.size.y));
  92. }
  93. if (!rect.has_point(point)) {
  94. return false;
  95. }
  96. Point2i p = point;
  97. return click_mask->get_bit(p);
  98. }
  99. return Control::has_point(p_point);
  100. }
  101. void TextureButton::_notification(int p_what) {
  102. switch (p_what) {
  103. case NOTIFICATION_DRAW: {
  104. DrawMode draw_mode = get_draw_mode();
  105. Ref<Texture> texdraw;
  106. switch (draw_mode) {
  107. case DRAW_NORMAL: {
  108. if (normal.is_valid())
  109. texdraw = normal;
  110. } break;
  111. case DRAW_HOVER_PRESSED:
  112. case DRAW_PRESSED: {
  113. if (pressed.is_null()) {
  114. if (hover.is_null()) {
  115. if (normal.is_valid())
  116. texdraw = normal;
  117. } else
  118. texdraw = hover;
  119. } else
  120. texdraw = pressed;
  121. } break;
  122. case DRAW_HOVER: {
  123. if (hover.is_null()) {
  124. if (pressed.is_valid() && is_pressed())
  125. texdraw = pressed;
  126. else if (normal.is_valid())
  127. texdraw = normal;
  128. } else
  129. texdraw = hover;
  130. } break;
  131. case DRAW_DISABLED: {
  132. if (disabled.is_null()) {
  133. if (normal.is_valid())
  134. texdraw = normal;
  135. } else
  136. texdraw = disabled;
  137. } break;
  138. }
  139. if (texdraw.is_valid()) {
  140. Point2 ofs;
  141. Size2 size = texdraw->get_size();
  142. _texture_region = Rect2(Point2(), texdraw->get_size());
  143. _tile = false;
  144. if (expand) {
  145. switch (stretch_mode) {
  146. case STRETCH_KEEP:
  147. size = texdraw->get_size();
  148. break;
  149. case STRETCH_SCALE:
  150. size = get_size();
  151. break;
  152. case STRETCH_TILE:
  153. size = get_size();
  154. _tile = true;
  155. break;
  156. case STRETCH_KEEP_CENTERED:
  157. ofs = (get_size() - texdraw->get_size()) / 2;
  158. size = texdraw->get_size();
  159. break;
  160. case STRETCH_KEEP_ASPECT_CENTERED:
  161. case STRETCH_KEEP_ASPECT: {
  162. Size2 _size = get_size();
  163. float tex_width = texdraw->get_width() * _size.height / texdraw->get_height();
  164. float tex_height = _size.height;
  165. if (tex_width > _size.width) {
  166. tex_width = _size.width;
  167. tex_height = texdraw->get_height() * tex_width / texdraw->get_width();
  168. }
  169. if (stretch_mode == STRETCH_KEEP_ASPECT_CENTERED) {
  170. ofs.x = (_size.width - tex_width) / 2;
  171. ofs.y = (_size.height - tex_height) / 2;
  172. }
  173. size.width = tex_width;
  174. size.height = tex_height;
  175. } break;
  176. case STRETCH_KEEP_ASPECT_COVERED: {
  177. size = get_size();
  178. Size2 tex_size = texdraw->get_size();
  179. Size2 scale_size(size.width / tex_size.width, size.height / tex_size.height);
  180. float scale = scale_size.width > scale_size.height ? scale_size.width : scale_size.height;
  181. Size2 scaled_tex_size = tex_size * scale;
  182. Point2 ofs2 = ((scaled_tex_size - size) / scale).abs() / 2.0f;
  183. _texture_region = Rect2(ofs2, size / scale);
  184. } break;
  185. }
  186. }
  187. _position_rect = Rect2(ofs, size);
  188. if (_tile) {
  189. draw_texture_rect(texdraw, _position_rect, _tile);
  190. } else {
  191. draw_texture_rect_region(texdraw, _position_rect, _texture_region);
  192. }
  193. } else {
  194. _position_rect = Rect2();
  195. }
  196. if (has_focus() && focused.is_valid()) {
  197. draw_texture_rect(focused, _position_rect, false);
  198. };
  199. } break;
  200. }
  201. }
  202. void TextureButton::_bind_methods() {
  203. ClassDB::bind_method(D_METHOD("set_normal_texture", "texture"), &TextureButton::set_normal_texture);
  204. ClassDB::bind_method(D_METHOD("set_pressed_texture", "texture"), &TextureButton::set_pressed_texture);
  205. ClassDB::bind_method(D_METHOD("set_hover_texture", "texture"), &TextureButton::set_hover_texture);
  206. ClassDB::bind_method(D_METHOD("set_disabled_texture", "texture"), &TextureButton::set_disabled_texture);
  207. ClassDB::bind_method(D_METHOD("set_focused_texture", "texture"), &TextureButton::set_focused_texture);
  208. ClassDB::bind_method(D_METHOD("set_click_mask", "mask"), &TextureButton::set_click_mask);
  209. ClassDB::bind_method(D_METHOD("set_expand", "p_expand"), &TextureButton::set_expand);
  210. ClassDB::bind_method(D_METHOD("set_stretch_mode", "p_mode"), &TextureButton::set_stretch_mode);
  211. ClassDB::bind_method(D_METHOD("get_normal_texture"), &TextureButton::get_normal_texture);
  212. ClassDB::bind_method(D_METHOD("get_pressed_texture"), &TextureButton::get_pressed_texture);
  213. ClassDB::bind_method(D_METHOD("get_hover_texture"), &TextureButton::get_hover_texture);
  214. ClassDB::bind_method(D_METHOD("get_disabled_texture"), &TextureButton::get_disabled_texture);
  215. ClassDB::bind_method(D_METHOD("get_focused_texture"), &TextureButton::get_focused_texture);
  216. ClassDB::bind_method(D_METHOD("get_click_mask"), &TextureButton::get_click_mask);
  217. ClassDB::bind_method(D_METHOD("get_expand"), &TextureButton::get_expand);
  218. ClassDB::bind_method(D_METHOD("get_stretch_mode"), &TextureButton::get_stretch_mode);
  219. ADD_GROUP("Textures", "texture_");
  220. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture_normal", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_normal_texture", "get_normal_texture");
  221. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture_pressed", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_pressed_texture", "get_pressed_texture");
  222. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture_hover", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_hover_texture", "get_hover_texture");
  223. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture_disabled", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_disabled_texture", "get_disabled_texture");
  224. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture_focused", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_focused_texture", "get_focused_texture");
  225. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture_click_mask", PROPERTY_HINT_RESOURCE_TYPE, "BitMap"), "set_click_mask", "get_click_mask");
  226. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "expand", PROPERTY_HINT_RESOURCE_TYPE, "bool"), "set_expand", "get_expand");
  227. ADD_PROPERTY(PropertyInfo(Variant::INT, "stretch_mode", PROPERTY_HINT_ENUM, "Scale,Tile,Keep,Keep Centered,Keep Aspect,Keep Aspect Centered,Keep Aspect Covered"), "set_stretch_mode", "get_stretch_mode");
  228. BIND_ENUM_CONSTANT(STRETCH_SCALE);
  229. BIND_ENUM_CONSTANT(STRETCH_TILE);
  230. BIND_ENUM_CONSTANT(STRETCH_KEEP);
  231. BIND_ENUM_CONSTANT(STRETCH_KEEP_CENTERED);
  232. BIND_ENUM_CONSTANT(STRETCH_KEEP_ASPECT);
  233. BIND_ENUM_CONSTANT(STRETCH_KEEP_ASPECT_CENTERED);
  234. BIND_ENUM_CONSTANT(STRETCH_KEEP_ASPECT_COVERED);
  235. }
  236. void TextureButton::set_normal_texture(const Ref<Texture> &p_normal) {
  237. normal = p_normal;
  238. update();
  239. minimum_size_changed();
  240. }
  241. void TextureButton::set_pressed_texture(const Ref<Texture> &p_pressed) {
  242. pressed = p_pressed;
  243. update();
  244. }
  245. void TextureButton::set_hover_texture(const Ref<Texture> &p_hover) {
  246. hover = p_hover;
  247. update();
  248. }
  249. void TextureButton::set_disabled_texture(const Ref<Texture> &p_disabled) {
  250. disabled = p_disabled;
  251. update();
  252. }
  253. void TextureButton::set_click_mask(const Ref<BitMap> &p_click_mask) {
  254. click_mask = p_click_mask;
  255. update();
  256. }
  257. Ref<Texture> TextureButton::get_normal_texture() const {
  258. return normal;
  259. }
  260. Ref<Texture> TextureButton::get_pressed_texture() const {
  261. return pressed;
  262. }
  263. Ref<Texture> TextureButton::get_hover_texture() const {
  264. return hover;
  265. }
  266. Ref<Texture> TextureButton::get_disabled_texture() const {
  267. return disabled;
  268. }
  269. Ref<BitMap> TextureButton::get_click_mask() const {
  270. return click_mask;
  271. }
  272. Ref<Texture> TextureButton::get_focused_texture() const {
  273. return focused;
  274. };
  275. void TextureButton::set_focused_texture(const Ref<Texture> &p_focused) {
  276. focused = p_focused;
  277. };
  278. bool TextureButton::get_expand() const {
  279. return expand;
  280. }
  281. void TextureButton::set_expand(bool p_expand) {
  282. expand = p_expand;
  283. minimum_size_changed();
  284. update();
  285. }
  286. void TextureButton::set_stretch_mode(StretchMode p_stretch_mode) {
  287. stretch_mode = p_stretch_mode;
  288. update();
  289. }
  290. TextureButton::StretchMode TextureButton::get_stretch_mode() const {
  291. return stretch_mode;
  292. }
  293. TextureButton::TextureButton() {
  294. expand = false;
  295. stretch_mode = STRETCH_SCALE;
  296. _texture_region = Rect2();
  297. _position_rect = Rect2();
  298. _tile = false;
  299. }