texture_progress.cpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. /*************************************************************************/
  2. /* texture_progress.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_progress.h"
  31. #include "core/engine.h"
  32. void TextureProgress::set_under_texture(const Ref<Texture> &p_texture) {
  33. under = p_texture;
  34. update();
  35. minimum_size_changed();
  36. }
  37. Ref<Texture> TextureProgress::get_under_texture() const {
  38. return under;
  39. }
  40. void TextureProgress::set_over_texture(const Ref<Texture> &p_texture) {
  41. over = p_texture;
  42. update();
  43. if (under.is_null()) {
  44. minimum_size_changed();
  45. }
  46. }
  47. Ref<Texture> TextureProgress::get_over_texture() const {
  48. return over;
  49. }
  50. void TextureProgress::set_stretch_margin(Margin p_margin, int p_size) {
  51. ERR_FAIL_INDEX((int)p_margin, 4);
  52. stretch_margin[p_margin] = p_size;
  53. update();
  54. minimum_size_changed();
  55. }
  56. int TextureProgress::get_stretch_margin(Margin p_margin) const {
  57. ERR_FAIL_INDEX_V((int)p_margin, 4, 0);
  58. return stretch_margin[p_margin];
  59. }
  60. void TextureProgress::set_nine_patch_stretch(bool p_stretch) {
  61. nine_patch_stretch = p_stretch;
  62. update();
  63. minimum_size_changed();
  64. }
  65. bool TextureProgress::get_nine_patch_stretch() const {
  66. return nine_patch_stretch;
  67. }
  68. Size2 TextureProgress::get_minimum_size() const {
  69. if (nine_patch_stretch)
  70. return Size2(stretch_margin[MARGIN_LEFT] + stretch_margin[MARGIN_RIGHT], stretch_margin[MARGIN_TOP] + stretch_margin[MARGIN_BOTTOM]);
  71. else if (under.is_valid())
  72. return under->get_size();
  73. else if (over.is_valid())
  74. return over->get_size();
  75. else if (progress.is_valid())
  76. return progress->get_size();
  77. return Size2(1, 1);
  78. }
  79. void TextureProgress::set_progress_texture(const Ref<Texture> &p_texture) {
  80. progress = p_texture;
  81. update();
  82. minimum_size_changed();
  83. }
  84. Ref<Texture> TextureProgress::get_progress_texture() const {
  85. return progress;
  86. }
  87. void TextureProgress::set_tint_under(const Color &p_tint) {
  88. tint_under = p_tint;
  89. update();
  90. }
  91. Color TextureProgress::get_tint_under() const {
  92. return tint_under;
  93. }
  94. void TextureProgress::set_tint_progress(const Color &p_tint) {
  95. tint_progress = p_tint;
  96. update();
  97. }
  98. Color TextureProgress::get_tint_progress() const {
  99. return tint_progress;
  100. }
  101. void TextureProgress::set_tint_over(const Color &p_tint) {
  102. tint_over = p_tint;
  103. update();
  104. }
  105. Color TextureProgress::get_tint_over() const {
  106. return tint_over;
  107. }
  108. Point2 TextureProgress::unit_val_to_uv(float val) {
  109. if (progress.is_null())
  110. return Point2();
  111. if (val < 0)
  112. val += 1;
  113. if (val > 1)
  114. val -= 1;
  115. Point2 p = get_relative_center();
  116. // Minimal version of Liang-Barsky clipping algorithm
  117. float angle = (val * Math_TAU) - Math_PI * 0.5;
  118. Point2 dir = Vector2(Math::cos(angle), Math::sin(angle));
  119. float t1 = 1.0;
  120. float cp = 0;
  121. float cq = 0;
  122. float cr = 0;
  123. float edgeLeft = 0.0;
  124. float edgeRight = 1.0;
  125. float edgeBottom = 0.0;
  126. float edgeTop = 1.0;
  127. for (int edge = 0; edge < 4; edge++) {
  128. if (edge == 0) {
  129. if (dir.x > 0)
  130. continue;
  131. cq = -(edgeLeft - p.x);
  132. dir.x *= 2.0 * cq;
  133. cp = -dir.x;
  134. } else if (edge == 1) {
  135. if (dir.x < 0)
  136. continue;
  137. cq = (edgeRight - p.x);
  138. dir.x *= 2.0 * cq;
  139. cp = dir.x;
  140. } else if (edge == 2) {
  141. if (dir.y > 0)
  142. continue;
  143. cq = -(edgeBottom - p.y);
  144. dir.y *= 2.0 * cq;
  145. cp = -dir.y;
  146. } else if (edge == 3) {
  147. if (dir.y < 0)
  148. continue;
  149. cq = (edgeTop - p.y);
  150. dir.y *= 2.0 * cq;
  151. cp = dir.y;
  152. }
  153. cr = cq / cp;
  154. if (cr >= 0 && cr < t1)
  155. t1 = cr;
  156. }
  157. return (p + t1 * dir);
  158. }
  159. Point2 TextureProgress::get_relative_center() {
  160. if (progress.is_null())
  161. return Point2();
  162. Point2 p = progress->get_size() / 2;
  163. p += rad_center_off;
  164. p.x /= progress->get_width();
  165. p.y /= progress->get_height();
  166. p.x = CLAMP(p.x, 0, 1);
  167. p.y = CLAMP(p.y, 0, 1);
  168. return p;
  169. }
  170. void TextureProgress::draw_nine_patch_stretched(const Ref<Texture> &p_texture, FillMode p_mode, double p_ratio, const Color &p_modulate) {
  171. Vector2 texture_size = p_texture->get_size();
  172. Vector2 topleft = Vector2(stretch_margin[MARGIN_LEFT], stretch_margin[MARGIN_TOP]);
  173. Vector2 bottomright = Vector2(stretch_margin[MARGIN_RIGHT], stretch_margin[MARGIN_BOTTOM]);
  174. Rect2 src_rect = Rect2(Point2(), texture_size);
  175. Rect2 dst_rect = Rect2(Point2(), get_size());
  176. if (p_ratio < 1.0) {
  177. // Drawing a partially-filled 9-patch is a little tricky -
  178. // texture is divided by 3 sections toward fill direction,
  179. // then middle section is stretching while the other two aren't.
  180. double width_total = 0.0;
  181. double width_texture = 0.0;
  182. double first_section_size = 0.0;
  183. double last_section_size = 0.0;
  184. switch (mode) {
  185. case FILL_LEFT_TO_RIGHT:
  186. case FILL_RIGHT_TO_LEFT: {
  187. width_total = dst_rect.size.x;
  188. width_texture = texture_size.x;
  189. first_section_size = topleft.x;
  190. last_section_size = bottomright.x;
  191. } break;
  192. case FILL_TOP_TO_BOTTOM:
  193. case FILL_BOTTOM_TO_TOP: {
  194. width_total = dst_rect.size.y;
  195. width_texture = texture_size.y;
  196. first_section_size = topleft.y;
  197. last_section_size = bottomright.y;
  198. } break;
  199. case FILL_BILINEAR_LEFT_AND_RIGHT: {
  200. // TODO: Implement
  201. } break;
  202. case FILL_BILINEAR_TOP_AND_BOTTOM: {
  203. // TODO: Implement
  204. } break;
  205. case FILL_CLOCKWISE:
  206. case FILL_CLOCKWISE_AND_COUNTER_CLOCKWISE:
  207. case FILL_COUNTER_CLOCKWISE: {
  208. // Those modes are circular, not relevant for nine patch
  209. } break;
  210. }
  211. double width_filled = width_total * p_ratio;
  212. double middle_section_size = MAX(0.0, width_texture - first_section_size - last_section_size);
  213. middle_section_size *= MIN(1.0, (MAX(0.0, width_filled - first_section_size) / MAX(1.0, width_total - first_section_size - last_section_size)));
  214. last_section_size = MAX(0.0, last_section_size - (width_total - width_filled));
  215. first_section_size = MIN(first_section_size, width_filled);
  216. width_texture = MIN(width_texture, first_section_size + middle_section_size + last_section_size);
  217. switch (mode) {
  218. case FILL_LEFT_TO_RIGHT: {
  219. src_rect.size.x = width_texture;
  220. dst_rect.size.x = width_filled;
  221. topleft.x = first_section_size;
  222. bottomright.x = last_section_size;
  223. } break;
  224. case FILL_RIGHT_TO_LEFT: {
  225. src_rect.position.x += src_rect.size.x - width_texture;
  226. src_rect.size.x = width_texture;
  227. dst_rect.position.x += width_total - width_filled;
  228. dst_rect.size.x = width_filled;
  229. topleft.x = last_section_size;
  230. bottomright.x = first_section_size;
  231. } break;
  232. case FILL_TOP_TO_BOTTOM: {
  233. src_rect.size.y = width_texture;
  234. dst_rect.size.y = width_filled;
  235. bottomright.y = last_section_size;
  236. topleft.y = first_section_size;
  237. } break;
  238. case FILL_BOTTOM_TO_TOP: {
  239. src_rect.position.y += src_rect.size.y - width_texture;
  240. src_rect.size.y = width_texture;
  241. dst_rect.position.y += width_total - width_filled;
  242. dst_rect.size.y = width_filled;
  243. topleft.y = last_section_size;
  244. bottomright.y = first_section_size;
  245. } break;
  246. case FILL_BILINEAR_LEFT_AND_RIGHT: {
  247. // TODO: Implement
  248. } break;
  249. case FILL_BILINEAR_TOP_AND_BOTTOM: {
  250. // TODO: Implement
  251. } break;
  252. case FILL_CLOCKWISE:
  253. case FILL_CLOCKWISE_AND_COUNTER_CLOCKWISE:
  254. case FILL_COUNTER_CLOCKWISE: {
  255. // Those modes are circular, not relevant for nine patch
  256. } break;
  257. }
  258. }
  259. p_texture->get_rect_region(dst_rect, src_rect, dst_rect, src_rect);
  260. RID ci = get_canvas_item();
  261. VS::get_singleton()->canvas_item_add_nine_patch(ci, dst_rect, src_rect, p_texture->get_rid(), topleft, bottomright, VS::NINE_PATCH_STRETCH, VS::NINE_PATCH_STRETCH, true, p_modulate);
  262. }
  263. void TextureProgress::_notification(int p_what) {
  264. const float corners[12] = { -0.125, -0.375, -0.625, -0.875, 0.125, 0.375, 0.625, 0.875, 1.125, 1.375, 1.625, 1.875 };
  265. switch (p_what) {
  266. case NOTIFICATION_DRAW: {
  267. if (nine_patch_stretch && (mode == FILL_LEFT_TO_RIGHT || mode == FILL_RIGHT_TO_LEFT || mode == FILL_TOP_TO_BOTTOM || mode == FILL_BOTTOM_TO_TOP)) {
  268. if (under.is_valid()) {
  269. draw_nine_patch_stretched(under, FILL_LEFT_TO_RIGHT, 1.0, tint_under);
  270. }
  271. if (progress.is_valid()) {
  272. draw_nine_patch_stretched(progress, mode, get_as_ratio(), tint_progress);
  273. }
  274. if (over.is_valid()) {
  275. draw_nine_patch_stretched(over, FILL_LEFT_TO_RIGHT, 1.0, tint_over);
  276. }
  277. } else {
  278. if (under.is_valid())
  279. draw_texture(under, Point2(), tint_under);
  280. if (progress.is_valid()) {
  281. Size2 s = progress->get_size();
  282. switch (mode) {
  283. case FILL_LEFT_TO_RIGHT: {
  284. Rect2 region = Rect2(Point2(), Size2(s.x * get_as_ratio(), s.y));
  285. draw_texture_rect_region(progress, region, region, tint_progress);
  286. } break;
  287. case FILL_RIGHT_TO_LEFT: {
  288. Rect2 region = Rect2(Point2(s.x - s.x * get_as_ratio(), 0), Size2(s.x * get_as_ratio(), s.y));
  289. draw_texture_rect_region(progress, region, region, tint_progress);
  290. } break;
  291. case FILL_TOP_TO_BOTTOM: {
  292. Rect2 region = Rect2(Point2(), Size2(s.x, s.y * get_as_ratio()));
  293. draw_texture_rect_region(progress, region, region, tint_progress);
  294. } break;
  295. case FILL_BOTTOM_TO_TOP: {
  296. Rect2 region = Rect2(Point2(0, s.y - s.y * get_as_ratio()), Size2(s.x, s.y * get_as_ratio()));
  297. draw_texture_rect_region(progress, region, region, tint_progress);
  298. } break;
  299. case FILL_CLOCKWISE:
  300. case FILL_COUNTER_CLOCKWISE:
  301. case FILL_CLOCKWISE_AND_COUNTER_CLOCKWISE: {
  302. if (nine_patch_stretch)
  303. s = get_size();
  304. float val = get_as_ratio() * rad_max_degrees / 360;
  305. if (val == 1) {
  306. Rect2 region = Rect2(Point2(), s);
  307. draw_texture_rect_region(progress, region, region, tint_progress);
  308. } else if (val != 0) {
  309. Array pts;
  310. float direction = mode == FILL_COUNTER_CLOCKWISE ? -1 : 1;
  311. float start;
  312. if (mode == FILL_CLOCKWISE_AND_COUNTER_CLOCKWISE) {
  313. start = rad_init_angle / 360 - val / 2;
  314. } else {
  315. start = rad_init_angle / 360;
  316. }
  317. float end = start + direction * val;
  318. pts.append(start);
  319. pts.append(end);
  320. float from = MIN(start, end);
  321. float to = MAX(start, end);
  322. for (int i = 0; i < 12; i++)
  323. if (corners[i] > from && corners[i] < to)
  324. pts.append(corners[i]);
  325. pts.sort();
  326. Vector<Point2> uvs;
  327. Vector<Point2> points;
  328. uvs.push_back(get_relative_center());
  329. points.push_back(Point2(s.x * get_relative_center().x, s.y * get_relative_center().y));
  330. for (int i = 0; i < pts.size(); i++) {
  331. Point2 uv = unit_val_to_uv(pts[i]);
  332. if (uvs.find(uv) >= 0)
  333. continue;
  334. uvs.push_back(uv);
  335. points.push_back(Point2(uv.x * s.x, uv.y * s.y));
  336. }
  337. Vector<Color> colors;
  338. colors.push_back(tint_progress);
  339. draw_polygon(points, colors, uvs, progress);
  340. }
  341. if (Engine::get_singleton()->is_editor_hint()) {
  342. Point2 p;
  343. if (nine_patch_stretch)
  344. p = get_size();
  345. else
  346. p = progress->get_size();
  347. p.x *= get_relative_center().x;
  348. p.y *= get_relative_center().y;
  349. p = p.floor();
  350. draw_line(p - Point2(8, 0), p + Point2(8, 0), Color(0.9, 0.5, 0.5), 2);
  351. draw_line(p - Point2(0, 8), p + Point2(0, 8), Color(0.9, 0.5, 0.5), 2);
  352. }
  353. } break;
  354. case FILL_BILINEAR_LEFT_AND_RIGHT: {
  355. Rect2 region = Rect2(Point2(s.x / 2 - s.x * get_as_ratio() / 2, 0), Size2(s.x * get_as_ratio(), s.y));
  356. draw_texture_rect_region(progress, region, region, tint_progress);
  357. } break;
  358. case FILL_BILINEAR_TOP_AND_BOTTOM: {
  359. Rect2 region = Rect2(Point2(0, s.y / 2 - s.y * get_as_ratio() / 2), Size2(s.x, s.y * get_as_ratio()));
  360. draw_texture_rect_region(progress, region, region, tint_progress);
  361. } break;
  362. default:
  363. draw_texture_rect_region(progress, Rect2(Point2(), Size2(s.x * get_as_ratio(), s.y)), Rect2(Point2(), Size2(s.x * get_as_ratio(), s.y)), tint_progress);
  364. }
  365. }
  366. if (over.is_valid())
  367. draw_texture(over, Point2(), tint_over);
  368. }
  369. } break;
  370. }
  371. }
  372. void TextureProgress::set_fill_mode(int p_fill) {
  373. ERR_FAIL_INDEX(p_fill, 9);
  374. mode = (FillMode)p_fill;
  375. update();
  376. }
  377. int TextureProgress::get_fill_mode() {
  378. return mode;
  379. }
  380. void TextureProgress::set_radial_initial_angle(float p_angle) {
  381. while (p_angle > 360)
  382. p_angle -= 360;
  383. while (p_angle < 0)
  384. p_angle += 360;
  385. rad_init_angle = p_angle;
  386. update();
  387. }
  388. float TextureProgress::get_radial_initial_angle() {
  389. return rad_init_angle;
  390. }
  391. void TextureProgress::set_fill_degrees(float p_angle) {
  392. rad_max_degrees = CLAMP(p_angle, 0, 360);
  393. update();
  394. }
  395. float TextureProgress::get_fill_degrees() {
  396. return rad_max_degrees;
  397. }
  398. void TextureProgress::set_radial_center_offset(const Point2 &p_off) {
  399. rad_center_off = p_off;
  400. update();
  401. }
  402. Point2 TextureProgress::get_radial_center_offset() {
  403. return rad_center_off;
  404. }
  405. void TextureProgress::_bind_methods() {
  406. ClassDB::bind_method(D_METHOD("set_under_texture", "tex"), &TextureProgress::set_under_texture);
  407. ClassDB::bind_method(D_METHOD("get_under_texture"), &TextureProgress::get_under_texture);
  408. ClassDB::bind_method(D_METHOD("set_progress_texture", "tex"), &TextureProgress::set_progress_texture);
  409. ClassDB::bind_method(D_METHOD("get_progress_texture"), &TextureProgress::get_progress_texture);
  410. ClassDB::bind_method(D_METHOD("set_over_texture", "tex"), &TextureProgress::set_over_texture);
  411. ClassDB::bind_method(D_METHOD("get_over_texture"), &TextureProgress::get_over_texture);
  412. ClassDB::bind_method(D_METHOD("set_fill_mode", "mode"), &TextureProgress::set_fill_mode);
  413. ClassDB::bind_method(D_METHOD("get_fill_mode"), &TextureProgress::get_fill_mode);
  414. ClassDB::bind_method(D_METHOD("set_tint_under", "tint"), &TextureProgress::set_tint_under);
  415. ClassDB::bind_method(D_METHOD("get_tint_under"), &TextureProgress::get_tint_under);
  416. ClassDB::bind_method(D_METHOD("set_tint_progress", "tint"), &TextureProgress::set_tint_progress);
  417. ClassDB::bind_method(D_METHOD("get_tint_progress"), &TextureProgress::get_tint_progress);
  418. ClassDB::bind_method(D_METHOD("set_tint_over", "tint"), &TextureProgress::set_tint_over);
  419. ClassDB::bind_method(D_METHOD("get_tint_over"), &TextureProgress::get_tint_over);
  420. ClassDB::bind_method(D_METHOD("set_radial_initial_angle", "mode"), &TextureProgress::set_radial_initial_angle);
  421. ClassDB::bind_method(D_METHOD("get_radial_initial_angle"), &TextureProgress::get_radial_initial_angle);
  422. ClassDB::bind_method(D_METHOD("set_radial_center_offset", "mode"), &TextureProgress::set_radial_center_offset);
  423. ClassDB::bind_method(D_METHOD("get_radial_center_offset"), &TextureProgress::get_radial_center_offset);
  424. ClassDB::bind_method(D_METHOD("set_fill_degrees", "mode"), &TextureProgress::set_fill_degrees);
  425. ClassDB::bind_method(D_METHOD("get_fill_degrees"), &TextureProgress::get_fill_degrees);
  426. ClassDB::bind_method(D_METHOD("set_stretch_margin", "margin", "value"), &TextureProgress::set_stretch_margin);
  427. ClassDB::bind_method(D_METHOD("get_stretch_margin", "margin"), &TextureProgress::get_stretch_margin);
  428. ClassDB::bind_method(D_METHOD("set_nine_patch_stretch", "stretch"), &TextureProgress::set_nine_patch_stretch);
  429. ClassDB::bind_method(D_METHOD("get_nine_patch_stretch"), &TextureProgress::get_nine_patch_stretch);
  430. ADD_GROUP("Textures", "texture_");
  431. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture_under", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_under_texture", "get_under_texture");
  432. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture_over", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_over_texture", "get_over_texture");
  433. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture_progress", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_progress_texture", "get_progress_texture");
  434. ADD_PROPERTY(PropertyInfo(Variant::INT, "fill_mode", PROPERTY_HINT_ENUM, "Left to Right,Right to Left,Top to Bottom,Bottom to Top,Clockwise,Counter Clockwise,Bilinear (Left and Right),Bilinear (Top and Bottom), Clockwise and Counter Clockwise"), "set_fill_mode", "get_fill_mode");
  435. ADD_GROUP("Tint", "tint_");
  436. ADD_PROPERTY(PropertyInfo(Variant::COLOR, "tint_under"), "set_tint_under", "get_tint_under");
  437. ADD_PROPERTY(PropertyInfo(Variant::COLOR, "tint_over"), "set_tint_over", "get_tint_over");
  438. ADD_PROPERTY(PropertyInfo(Variant::COLOR, "tint_progress"), "set_tint_progress", "get_tint_progress");
  439. ADD_GROUP("Radial Fill", "radial_");
  440. ADD_PROPERTY(PropertyInfo(Variant::REAL, "radial_initial_angle", PROPERTY_HINT_RANGE, "0.0,360.0,0.1,slider"), "set_radial_initial_angle", "get_radial_initial_angle");
  441. ADD_PROPERTY(PropertyInfo(Variant::REAL, "radial_fill_degrees", PROPERTY_HINT_RANGE, "0.0,360.0,0.1,slider"), "set_fill_degrees", "get_fill_degrees");
  442. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "radial_center_offset"), "set_radial_center_offset", "get_radial_center_offset");
  443. ADD_GROUP("Stretch", "stretch_");
  444. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "nine_patch_stretch"), "set_nine_patch_stretch", "get_nine_patch_stretch");
  445. ADD_PROPERTYI(PropertyInfo(Variant::INT, "stretch_margin_left", PROPERTY_HINT_RANGE, "0,16384,1"), "set_stretch_margin", "get_stretch_margin", MARGIN_LEFT);
  446. ADD_PROPERTYI(PropertyInfo(Variant::INT, "stretch_margin_top", PROPERTY_HINT_RANGE, "0,16384,1"), "set_stretch_margin", "get_stretch_margin", MARGIN_TOP);
  447. ADD_PROPERTYI(PropertyInfo(Variant::INT, "stretch_margin_right", PROPERTY_HINT_RANGE, "0,16384,1"), "set_stretch_margin", "get_stretch_margin", MARGIN_RIGHT);
  448. ADD_PROPERTYI(PropertyInfo(Variant::INT, "stretch_margin_bottom", PROPERTY_HINT_RANGE, "0,16384,1"), "set_stretch_margin", "get_stretch_margin", MARGIN_BOTTOM);
  449. BIND_ENUM_CONSTANT(FILL_LEFT_TO_RIGHT);
  450. BIND_ENUM_CONSTANT(FILL_RIGHT_TO_LEFT);
  451. BIND_ENUM_CONSTANT(FILL_TOP_TO_BOTTOM);
  452. BIND_ENUM_CONSTANT(FILL_BOTTOM_TO_TOP);
  453. BIND_ENUM_CONSTANT(FILL_CLOCKWISE);
  454. BIND_ENUM_CONSTANT(FILL_COUNTER_CLOCKWISE);
  455. BIND_ENUM_CONSTANT(FILL_BILINEAR_LEFT_AND_RIGHT);
  456. BIND_ENUM_CONSTANT(FILL_BILINEAR_TOP_AND_BOTTOM);
  457. BIND_ENUM_CONSTANT(FILL_CLOCKWISE_AND_COUNTER_CLOCKWISE);
  458. }
  459. TextureProgress::TextureProgress() {
  460. mode = FILL_LEFT_TO_RIGHT;
  461. rad_init_angle = 0;
  462. rad_center_off = Point2();
  463. rad_max_degrees = 360;
  464. set_mouse_filter(MOUSE_FILTER_PASS);
  465. nine_patch_stretch = false;
  466. stretch_margin[MARGIN_LEFT] = 0;
  467. stretch_margin[MARGIN_RIGHT] = 0;
  468. stretch_margin[MARGIN_BOTTOM] = 0;
  469. stretch_margin[MARGIN_TOP] = 0;
  470. tint_under = tint_progress = tint_over = Color(1, 1, 1);
  471. }