array.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /**************************************************************************/
  2. /* array.h */
  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. #ifndef ARRAY_H
  31. #define ARRAY_H
  32. #include "core/typedefs.h"
  33. #include <climits>
  34. class Variant;
  35. class ArrayPrivate;
  36. class Object;
  37. class StringName;
  38. class Callable;
  39. class Array {
  40. mutable ArrayPrivate *_p;
  41. void _unref() const;
  42. public:
  43. void _ref(const Array &p_from) const;
  44. Variant &operator[](int p_idx);
  45. const Variant &operator[](int p_idx) const;
  46. void set(int p_idx, const Variant &p_value);
  47. const Variant &get(int p_idx) const;
  48. int size() const;
  49. bool is_empty() const;
  50. void clear();
  51. bool operator==(const Array &p_array) const;
  52. bool operator!=(const Array &p_array) const;
  53. bool recursive_equal(const Array &p_array, int recursion_count) const;
  54. uint32_t hash() const;
  55. uint32_t recursive_hash(int recursion_count) const;
  56. void operator=(const Array &p_array);
  57. void assign(const Array &p_array);
  58. void push_back(const Variant &p_value);
  59. _FORCE_INLINE_ void append(const Variant &p_value) { push_back(p_value); } //for python compatibility
  60. void append_array(const Array &p_array);
  61. Error resize(int p_new_size);
  62. Error insert(int p_pos, const Variant &p_value);
  63. void remove_at(int p_pos);
  64. void fill(const Variant &p_value);
  65. Variant front() const;
  66. Variant back() const;
  67. Variant pick_random() const;
  68. void sort();
  69. void sort_custom(const Callable &p_callable);
  70. void shuffle();
  71. int bsearch(const Variant &p_value, bool p_before = true) const;
  72. int bsearch_custom(const Variant &p_value, const Callable &p_callable, bool p_before = true) const;
  73. void reverse();
  74. int find(const Variant &p_value, int p_from = 0) const;
  75. int rfind(const Variant &p_value, int p_from = -1) const;
  76. int count(const Variant &p_value) const;
  77. bool has(const Variant &p_value) const;
  78. void erase(const Variant &p_value);
  79. void push_front(const Variant &p_value);
  80. Variant pop_back();
  81. Variant pop_front();
  82. Variant pop_at(int p_pos);
  83. Array duplicate(bool p_deep = false) const;
  84. Array recursive_duplicate(bool p_deep, int recursion_count) const;
  85. Array slice(int p_begin, int p_end = INT_MAX, int p_step = 1, bool p_deep = false) const;
  86. Array filter(const Callable &p_callable) const;
  87. Array map(const Callable &p_callable) const;
  88. Variant reduce(const Callable &p_callable, const Variant &p_accum) const;
  89. bool any(const Callable &p_callable) const;
  90. bool all(const Callable &p_callable) const;
  91. bool operator<(const Array &p_array) const;
  92. bool operator<=(const Array &p_array) const;
  93. bool operator>(const Array &p_array) const;
  94. bool operator>=(const Array &p_array) const;
  95. Variant min() const;
  96. Variant max() const;
  97. const void *id() const;
  98. void set_typed(uint32_t p_type, const StringName &p_class_name, const Variant &p_script);
  99. bool is_typed() const;
  100. bool is_same_typed(const Array &p_other) const;
  101. uint32_t get_typed_builtin() const;
  102. StringName get_typed_class_name() const;
  103. Variant get_typed_script() const;
  104. void make_read_only();
  105. bool is_read_only() const;
  106. Array(const Array &p_base, uint32_t p_type, const StringName &p_class_name, const Variant &p_script);
  107. Array(const Array &p_from);
  108. Array();
  109. ~Array();
  110. };
  111. #endif // ARRAY_H