array.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. /*************************************************************************/
  2. /* array.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 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 "array.h"
  31. #include "core/hashfuncs.h"
  32. #include "core/object.h"
  33. #include "core/variant.h"
  34. #include "core/vector.h"
  35. class ArrayPrivate {
  36. public:
  37. SafeRefCount refcount;
  38. Vector<Variant> array;
  39. };
  40. void Array::_ref(const Array &p_from) const {
  41. ArrayPrivate *_fp = p_from._p;
  42. ERR_FAIL_COND(!_fp); // should NOT happen.
  43. if (_fp == _p)
  44. return; // whatever it is, nothing to do here move along
  45. bool success = _fp->refcount.ref();
  46. ERR_FAIL_COND(!success); // should really not happen either
  47. _unref();
  48. _p = p_from._p;
  49. }
  50. void Array::_unref() const {
  51. if (!_p)
  52. return;
  53. if (_p->refcount.unref()) {
  54. memdelete(_p);
  55. }
  56. _p = NULL;
  57. }
  58. Variant &Array::operator[](int p_idx) {
  59. return _p->array.write[p_idx];
  60. }
  61. const Variant &Array::operator[](int p_idx) const {
  62. return _p->array[p_idx];
  63. }
  64. int Array::size() const {
  65. return _p->array.size();
  66. }
  67. bool Array::empty() const {
  68. return _p->array.empty();
  69. }
  70. void Array::clear() {
  71. _p->array.clear();
  72. }
  73. bool Array::operator==(const Array &p_array) const {
  74. return _p == p_array._p;
  75. }
  76. uint32_t Array::hash() const {
  77. uint32_t h = hash_djb2_one_32(0);
  78. for (int i = 0; i < _p->array.size(); i++) {
  79. h = hash_djb2_one_32(_p->array[i].hash(), h);
  80. }
  81. return h;
  82. }
  83. void Array::operator=(const Array &p_array) {
  84. _ref(p_array);
  85. }
  86. void Array::push_back(const Variant &p_value) {
  87. _p->array.push_back(p_value);
  88. }
  89. void Array::append_array(const Array &p_array) {
  90. _p->array.append_array(p_array._p->array);
  91. }
  92. Error Array::resize(int p_new_size) {
  93. return _p->array.resize(p_new_size);
  94. }
  95. void Array::insert(int p_pos, const Variant &p_value) {
  96. _p->array.insert(p_pos, p_value);
  97. }
  98. void Array::erase(const Variant &p_value) {
  99. _p->array.erase(p_value);
  100. }
  101. Variant Array::front() const {
  102. ERR_FAIL_COND_V_MSG(_p->array.size() == 0, Variant(), "Can't take value from empty array.");
  103. return operator[](0);
  104. }
  105. Variant Array::back() const {
  106. ERR_FAIL_COND_V_MSG(_p->array.size() == 0, Variant(), "Can't take value from empty array.");
  107. return operator[](_p->array.size() - 1);
  108. }
  109. int Array::find(const Variant &p_value, int p_from) const {
  110. return _p->array.find(p_value, p_from);
  111. }
  112. int Array::rfind(const Variant &p_value, int p_from) const {
  113. if (_p->array.size() == 0)
  114. return -1;
  115. if (p_from < 0) {
  116. // Relative offset from the end
  117. p_from = _p->array.size() + p_from;
  118. }
  119. if (p_from < 0 || p_from >= _p->array.size()) {
  120. // Limit to array boundaries
  121. p_from = _p->array.size() - 1;
  122. }
  123. for (int i = p_from; i >= 0; i--) {
  124. if (_p->array[i] == p_value) {
  125. return i;
  126. }
  127. }
  128. return -1;
  129. }
  130. int Array::find_last(const Variant &p_value) const {
  131. return rfind(p_value);
  132. }
  133. int Array::count(const Variant &p_value) const {
  134. if (_p->array.size() == 0)
  135. return 0;
  136. int amount = 0;
  137. for (int i = 0; i < _p->array.size(); i++) {
  138. if (_p->array[i] == p_value) {
  139. amount++;
  140. }
  141. }
  142. return amount;
  143. }
  144. bool Array::has(const Variant &p_value) const {
  145. return _p->array.find(p_value, 0) != -1;
  146. }
  147. void Array::remove(int p_pos) {
  148. _p->array.remove(p_pos);
  149. }
  150. void Array::set(int p_idx, const Variant &p_value) {
  151. operator[](p_idx) = p_value;
  152. }
  153. const Variant &Array::get(int p_idx) const {
  154. return operator[](p_idx);
  155. }
  156. Array Array::duplicate(bool p_deep) const {
  157. Array new_arr;
  158. int element_count = size();
  159. new_arr.resize(element_count);
  160. for (int i = 0; i < element_count; i++) {
  161. new_arr[i] = p_deep ? get(i).duplicate(p_deep) : get(i);
  162. }
  163. return new_arr;
  164. }
  165. int Array::_clamp_slice_index(int p_index) const {
  166. int arr_size = size();
  167. int fixed_index = CLAMP(p_index, -arr_size, arr_size - 1);
  168. if (fixed_index < 0) {
  169. fixed_index = arr_size + fixed_index;
  170. }
  171. return fixed_index;
  172. }
  173. Array Array::slice(int p_begin, int p_end, int p_step, bool p_deep) const { // like python, but inclusive on upper bound
  174. Array new_arr;
  175. ERR_FAIL_COND_V_MSG(p_step == 0, new_arr, "Array slice step size cannot be zero.");
  176. if (empty()) // Don't try to slice empty arrays.
  177. return new_arr;
  178. if (p_step > 0) {
  179. if (p_begin >= size() || p_end < -size())
  180. return new_arr;
  181. } else { // p_step < 0
  182. if (p_begin < -size() || p_end >= size())
  183. return new_arr;
  184. }
  185. int begin = _clamp_slice_index(p_begin);
  186. int end = _clamp_slice_index(p_end);
  187. int new_arr_size = MAX(((end - begin + p_step) / p_step), 0);
  188. new_arr.resize(new_arr_size);
  189. if (p_step > 0) {
  190. int dest_idx = 0;
  191. for (int idx = begin; idx <= end; idx += p_step) {
  192. ERR_FAIL_COND_V_MSG(dest_idx < 0 || dest_idx >= new_arr_size, Array(), "Bug in Array slice()");
  193. new_arr[dest_idx++] = p_deep ? get(idx).duplicate(p_deep) : get(idx);
  194. }
  195. } else { // p_step < 0
  196. int dest_idx = 0;
  197. for (int idx = begin; idx >= end; idx += p_step) {
  198. ERR_FAIL_COND_V_MSG(dest_idx < 0 || dest_idx >= new_arr_size, Array(), "Bug in Array slice()");
  199. new_arr[dest_idx++] = p_deep ? get(idx).duplicate(p_deep) : get(idx);
  200. }
  201. }
  202. return new_arr;
  203. }
  204. struct _ArrayVariantSort {
  205. _FORCE_INLINE_ bool operator()(const Variant &p_l, const Variant &p_r) const {
  206. bool valid = false;
  207. Variant res;
  208. Variant::evaluate(Variant::OP_LESS, p_l, p_r, res, valid);
  209. if (!valid)
  210. res = false;
  211. return res;
  212. }
  213. };
  214. Array &Array::sort() {
  215. _p->array.sort_custom<_ArrayVariantSort>();
  216. return *this;
  217. }
  218. struct _ArrayVariantSortCustom {
  219. Object *obj;
  220. StringName func;
  221. _FORCE_INLINE_ bool operator()(const Variant &p_l, const Variant &p_r) const {
  222. const Variant *args[2] = { &p_l, &p_r };
  223. Variant::CallError err;
  224. bool res = obj->call(func, args, 2, err);
  225. if (err.error != Variant::CallError::CALL_OK)
  226. res = false;
  227. return res;
  228. }
  229. };
  230. Array &Array::sort_custom(Object *p_obj, const StringName &p_function) {
  231. ERR_FAIL_NULL_V(p_obj, *this);
  232. SortArray<Variant, _ArrayVariantSortCustom, true> avs;
  233. avs.compare.obj = p_obj;
  234. avs.compare.func = p_function;
  235. avs.sort(_p->array.ptrw(), _p->array.size());
  236. return *this;
  237. }
  238. void Array::shuffle() {
  239. const int n = _p->array.size();
  240. if (n < 2)
  241. return;
  242. Variant *data = _p->array.ptrw();
  243. for (int i = n - 1; i >= 1; i--) {
  244. const int j = Math::rand() % (i + 1);
  245. const Variant tmp = data[j];
  246. data[j] = data[i];
  247. data[i] = tmp;
  248. }
  249. }
  250. template <typename Less>
  251. _FORCE_INLINE_ int bisect(const Vector<Variant> &p_array, const Variant &p_value, bool p_before, const Less &p_less) {
  252. int lo = 0;
  253. int hi = p_array.size();
  254. if (p_before) {
  255. while (lo < hi) {
  256. const int mid = (lo + hi) / 2;
  257. if (p_less(p_array.get(mid), p_value)) {
  258. lo = mid + 1;
  259. } else {
  260. hi = mid;
  261. }
  262. }
  263. } else {
  264. while (lo < hi) {
  265. const int mid = (lo + hi) / 2;
  266. if (p_less(p_value, p_array.get(mid))) {
  267. hi = mid;
  268. } else {
  269. lo = mid + 1;
  270. }
  271. }
  272. }
  273. return lo;
  274. }
  275. int Array::bsearch(const Variant &p_value, bool p_before) {
  276. return bisect(_p->array, p_value, p_before, _ArrayVariantSort());
  277. }
  278. int Array::bsearch_custom(const Variant &p_value, Object *p_obj, const StringName &p_function, bool p_before) {
  279. ERR_FAIL_NULL_V(p_obj, 0);
  280. _ArrayVariantSortCustom less;
  281. less.obj = p_obj;
  282. less.func = p_function;
  283. return bisect(_p->array, p_value, p_before, less);
  284. }
  285. Array &Array::invert() {
  286. _p->array.invert();
  287. return *this;
  288. }
  289. void Array::push_front(const Variant &p_value) {
  290. _p->array.insert(0, p_value);
  291. }
  292. Variant Array::pop_back() {
  293. if (!_p->array.empty()) {
  294. int n = _p->array.size() - 1;
  295. Variant ret = _p->array.get(n);
  296. _p->array.resize(n);
  297. return ret;
  298. }
  299. return Variant();
  300. }
  301. Variant Array::pop_front() {
  302. if (!_p->array.empty()) {
  303. Variant ret = _p->array.get(0);
  304. _p->array.remove(0);
  305. return ret;
  306. }
  307. return Variant();
  308. }
  309. Variant Array::min() const {
  310. Variant minval;
  311. for (int i = 0; i < size(); i++) {
  312. if (i == 0) {
  313. minval = get(i);
  314. } else {
  315. bool valid;
  316. Variant ret;
  317. Variant test = get(i);
  318. Variant::evaluate(Variant::OP_LESS, test, minval, ret, valid);
  319. if (!valid) {
  320. return Variant(); //not a valid comparison
  321. }
  322. if (bool(ret)) {
  323. //is less
  324. minval = test;
  325. }
  326. }
  327. }
  328. return minval;
  329. }
  330. Variant Array::max() const {
  331. Variant maxval;
  332. for (int i = 0; i < size(); i++) {
  333. if (i == 0) {
  334. maxval = get(i);
  335. } else {
  336. bool valid;
  337. Variant ret;
  338. Variant test = get(i);
  339. Variant::evaluate(Variant::OP_GREATER, test, maxval, ret, valid);
  340. if (!valid) {
  341. return Variant(); //not a valid comparison
  342. }
  343. if (bool(ret)) {
  344. //is less
  345. maxval = test;
  346. }
  347. }
  348. }
  349. return maxval;
  350. }
  351. const void *Array::id() const {
  352. return _p->array.ptr();
  353. }
  354. Array::Array(const Array &p_from) {
  355. _p = NULL;
  356. _ref(p_from);
  357. }
  358. Array::Array() {
  359. _p = memnew(ArrayPrivate);
  360. _p->refcount.init();
  361. }
  362. Array::~Array() {
  363. _unref();
  364. }