range.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /*************************************************************************/
  2. /* range.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 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 "range.h"
  31. String Range::get_configuration_warning() const {
  32. String warning = Control::get_configuration_warning();
  33. if (shared->exp_ratio && shared->min <= 0) {
  34. if (warning != String()) {
  35. warning += "\n\n";
  36. }
  37. warning += TTR("If \"Exp Edit\" is enabled, \"Min Value\" must be greater than 0.");
  38. }
  39. return warning;
  40. }
  41. void Range::_value_changed_notify() {
  42. _value_changed(shared->val);
  43. emit_signal("value_changed", shared->val);
  44. update();
  45. _change_notify("value");
  46. }
  47. void Range::Shared::emit_value_changed() {
  48. for (Set<Range *>::Element *E = owners.front(); E; E = E->next()) {
  49. Range *r = E->get();
  50. if (!r->is_inside_tree()) {
  51. continue;
  52. }
  53. r->_value_changed_notify();
  54. }
  55. }
  56. void Range::_changed_notify(const char *p_what) {
  57. emit_signal("changed");
  58. update();
  59. _change_notify(p_what);
  60. }
  61. void Range::Shared::emit_changed(const char *p_what) {
  62. for (Set<Range *>::Element *E = owners.front(); E; E = E->next()) {
  63. Range *r = E->get();
  64. if (!r->is_inside_tree()) {
  65. continue;
  66. }
  67. r->_changed_notify(p_what);
  68. }
  69. }
  70. void Range::set_value(double p_val) {
  71. if (shared->step > 0) {
  72. p_val = Math::round(p_val / shared->step) * shared->step;
  73. }
  74. if (_rounded_values) {
  75. p_val = Math::round(p_val);
  76. }
  77. if (!shared->allow_greater && p_val > shared->max - shared->page) {
  78. p_val = shared->max - shared->page;
  79. }
  80. if (!shared->allow_lesser && p_val < shared->min) {
  81. p_val = shared->min;
  82. }
  83. if (shared->val == p_val) {
  84. return;
  85. }
  86. shared->val = p_val;
  87. shared->emit_value_changed();
  88. }
  89. void Range::set_min(double p_min) {
  90. shared->min = p_min;
  91. set_value(shared->val);
  92. shared->emit_changed("min");
  93. update_configuration_warning();
  94. }
  95. void Range::set_max(double p_max) {
  96. shared->max = p_max;
  97. set_value(shared->val);
  98. shared->emit_changed("max");
  99. }
  100. void Range::set_step(double p_step) {
  101. shared->step = p_step;
  102. shared->emit_changed("step");
  103. }
  104. void Range::set_page(double p_page) {
  105. shared->page = p_page;
  106. set_value(shared->val);
  107. shared->emit_changed("page");
  108. }
  109. double Range::get_value() const {
  110. return shared->val;
  111. }
  112. double Range::get_min() const {
  113. return shared->min;
  114. }
  115. double Range::get_max() const {
  116. return shared->max;
  117. }
  118. double Range::get_step() const {
  119. return shared->step;
  120. }
  121. double Range::get_page() const {
  122. return shared->page;
  123. }
  124. void Range::set_as_ratio(double p_value) {
  125. double v;
  126. if (shared->exp_ratio && get_min() >= 0) {
  127. double exp_min = get_min() == 0 ? 0.0 : Math::log(get_min()) / Math::log((double)2);
  128. double exp_max = Math::log(get_max()) / Math::log((double)2);
  129. v = Math::pow(2, exp_min + (exp_max - exp_min) * p_value);
  130. } else {
  131. double percent = (get_max() - get_min()) * p_value;
  132. if (get_step() > 0) {
  133. double steps = round(percent / get_step());
  134. v = steps * get_step() + get_min();
  135. } else {
  136. v = percent + get_min();
  137. }
  138. }
  139. v = CLAMP(v, get_min(), get_max());
  140. set_value(v);
  141. }
  142. double Range::get_as_ratio() const {
  143. if (Math::is_equal_approx(get_max(), get_min())) {
  144. // Avoid division by zero.
  145. return 1.0;
  146. }
  147. if (shared->exp_ratio && get_min() >= 0) {
  148. double exp_min = get_min() == 0 ? 0.0 : Math::log(get_min()) / Math::log((double)2);
  149. double exp_max = Math::log(get_max()) / Math::log((double)2);
  150. float value = CLAMP(get_value(), shared->min, shared->max);
  151. double v = Math::log(value) / Math::log((double)2);
  152. return CLAMP((v - exp_min) / (exp_max - exp_min), 0, 1);
  153. } else {
  154. float value = CLAMP(get_value(), shared->min, shared->max);
  155. return CLAMP((value - get_min()) / (get_max() - get_min()), 0, 1);
  156. }
  157. }
  158. void Range::_share(Node *p_range) {
  159. Range *r = Object::cast_to<Range>(p_range);
  160. ERR_FAIL_COND(!r);
  161. share(r);
  162. }
  163. void Range::share(Range *p_range) {
  164. ERR_FAIL_NULL(p_range);
  165. p_range->_ref_shared(shared);
  166. p_range->_changed_notify();
  167. p_range->_value_changed_notify();
  168. }
  169. void Range::unshare() {
  170. Shared *nshared = memnew(Shared);
  171. nshared->min = shared->min;
  172. nshared->max = shared->max;
  173. nshared->val = shared->val;
  174. nshared->step = shared->step;
  175. nshared->page = shared->page;
  176. nshared->exp_ratio = shared->exp_ratio;
  177. nshared->allow_greater = shared->allow_greater;
  178. nshared->allow_lesser = shared->allow_lesser;
  179. _unref_shared();
  180. _ref_shared(nshared);
  181. }
  182. void Range::_ref_shared(Shared *p_shared) {
  183. if (shared && p_shared == shared) {
  184. return;
  185. }
  186. _unref_shared();
  187. shared = p_shared;
  188. shared->owners.insert(this);
  189. }
  190. void Range::_unref_shared() {
  191. if (shared) {
  192. shared->owners.erase(this);
  193. if (shared->owners.size() == 0) {
  194. memdelete(shared);
  195. shared = nullptr;
  196. }
  197. }
  198. }
  199. void Range::_bind_methods() {
  200. ClassDB::bind_method(D_METHOD("get_value"), &Range::get_value);
  201. ClassDB::bind_method(D_METHOD("get_min"), &Range::get_min);
  202. ClassDB::bind_method(D_METHOD("get_max"), &Range::get_max);
  203. ClassDB::bind_method(D_METHOD("get_step"), &Range::get_step);
  204. ClassDB::bind_method(D_METHOD("get_page"), &Range::get_page);
  205. ClassDB::bind_method(D_METHOD("get_as_ratio"), &Range::get_as_ratio);
  206. ClassDB::bind_method(D_METHOD("set_value", "value"), &Range::set_value);
  207. ClassDB::bind_method(D_METHOD("set_min", "minimum"), &Range::set_min);
  208. ClassDB::bind_method(D_METHOD("set_max", "maximum"), &Range::set_max);
  209. ClassDB::bind_method(D_METHOD("set_step", "step"), &Range::set_step);
  210. ClassDB::bind_method(D_METHOD("set_page", "pagesize"), &Range::set_page);
  211. ClassDB::bind_method(D_METHOD("set_as_ratio", "value"), &Range::set_as_ratio);
  212. ClassDB::bind_method(D_METHOD("set_use_rounded_values", "enabled"), &Range::set_use_rounded_values);
  213. ClassDB::bind_method(D_METHOD("is_using_rounded_values"), &Range::is_using_rounded_values);
  214. ClassDB::bind_method(D_METHOD("set_exp_ratio", "enabled"), &Range::set_exp_ratio);
  215. ClassDB::bind_method(D_METHOD("is_ratio_exp"), &Range::is_ratio_exp);
  216. ClassDB::bind_method(D_METHOD("set_allow_greater", "allow"), &Range::set_allow_greater);
  217. ClassDB::bind_method(D_METHOD("is_greater_allowed"), &Range::is_greater_allowed);
  218. ClassDB::bind_method(D_METHOD("set_allow_lesser", "allow"), &Range::set_allow_lesser);
  219. ClassDB::bind_method(D_METHOD("is_lesser_allowed"), &Range::is_lesser_allowed);
  220. ClassDB::bind_method(D_METHOD("share", "with"), &Range::_share);
  221. ClassDB::bind_method(D_METHOD("unshare"), &Range::unshare);
  222. ADD_SIGNAL(MethodInfo("value_changed", PropertyInfo(Variant::REAL, "value")));
  223. ADD_SIGNAL(MethodInfo("changed"));
  224. ADD_PROPERTY(PropertyInfo(Variant::REAL, "min_value"), "set_min", "get_min");
  225. ADD_PROPERTY(PropertyInfo(Variant::REAL, "max_value"), "set_max", "get_max");
  226. ADD_PROPERTY(PropertyInfo(Variant::REAL, "step"), "set_step", "get_step");
  227. ADD_PROPERTY(PropertyInfo(Variant::REAL, "page"), "set_page", "get_page");
  228. ADD_PROPERTY(PropertyInfo(Variant::REAL, "value"), "set_value", "get_value");
  229. ADD_PROPERTY(PropertyInfo(Variant::REAL, "ratio", PROPERTY_HINT_RANGE, "0,1,0.01", 0), "set_as_ratio", "get_as_ratio");
  230. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "exp_edit"), "set_exp_ratio", "is_ratio_exp");
  231. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "rounded"), "set_use_rounded_values", "is_using_rounded_values");
  232. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "allow_greater"), "set_allow_greater", "is_greater_allowed");
  233. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "allow_lesser"), "set_allow_lesser", "is_lesser_allowed");
  234. }
  235. void Range::set_use_rounded_values(bool p_enable) {
  236. _rounded_values = p_enable;
  237. }
  238. bool Range::is_using_rounded_values() const {
  239. return _rounded_values;
  240. }
  241. void Range::set_exp_ratio(bool p_enable) {
  242. shared->exp_ratio = p_enable;
  243. update_configuration_warning();
  244. }
  245. bool Range::is_ratio_exp() const {
  246. return shared->exp_ratio;
  247. }
  248. void Range::set_allow_greater(bool p_allow) {
  249. shared->allow_greater = p_allow;
  250. }
  251. bool Range::is_greater_allowed() const {
  252. return shared->allow_greater;
  253. }
  254. void Range::set_allow_lesser(bool p_allow) {
  255. shared->allow_lesser = p_allow;
  256. }
  257. bool Range::is_lesser_allowed() const {
  258. return shared->allow_lesser;
  259. }
  260. Range::Range() {
  261. shared = memnew(Shared);
  262. shared->min = 0;
  263. shared->max = 100;
  264. shared->val = 0;
  265. shared->step = 1;
  266. shared->page = 0;
  267. shared->owners.insert(this);
  268. shared->exp_ratio = false;
  269. shared->allow_greater = false;
  270. shared->allow_lesser = false;
  271. _rounded_values = false;
  272. }
  273. Range::~Range() {
  274. _unref_shared();
  275. }