array.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*************************************************************************/
  2. /* array.h */
  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. #ifndef ARRAY_H
  31. #define ARRAY_H
  32. #include "core/typedefs.h"
  33. class Variant;
  34. class ArrayPrivate;
  35. class Object;
  36. class StringName;
  37. class Callable;
  38. class Array {
  39. mutable ArrayPrivate *_p;
  40. void _ref(const Array &p_from) const;
  41. void _unref() const;
  42. inline int _clamp_slice_index(int p_index) const;
  43. protected:
  44. Array(const Array &p_base, uint32_t p_type, const StringName &p_class_name, const Variant &p_script);
  45. bool _assign(const Array &p_array);
  46. public:
  47. Variant &operator[](int p_idx);
  48. const Variant &operator[](int p_idx) const;
  49. void set(int p_idx, const Variant &p_value);
  50. const Variant &get(int p_idx) const;
  51. int size() const;
  52. bool is_empty() const;
  53. void clear();
  54. bool operator==(const Array &p_array) const;
  55. bool operator!=(const Array &p_array) const;
  56. uint32_t hash() const;
  57. void operator=(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. void insert(int p_pos, const Variant &p_value);
  63. void remove(int p_pos);
  64. void fill(const Variant &p_value);
  65. Variant front() const;
  66. Variant back() const;
  67. void sort();
  68. void sort_custom(Callable p_callable);
  69. void shuffle();
  70. int bsearch(const Variant &p_value, bool p_before = true);
  71. int bsearch_custom(const Variant &p_value, Callable p_callable, bool p_before = true);
  72. void reverse();
  73. int find(const Variant &p_value, int p_from = 0) const;
  74. int rfind(const Variant &p_value, int p_from = -1) const;
  75. int find_last(const Variant &p_value) 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. Array duplicate(bool p_deep = false) const;
  83. Array slice(int p_begin, int p_end, int p_step = 1, bool p_deep = false) const;
  84. Array filter(const Callable &p_callable) const;
  85. Array map(const Callable &p_callable) const;
  86. Variant reduce(const Callable &p_callable, const Variant &p_accum) const;
  87. bool operator<(const Array &p_array) const;
  88. bool operator<=(const Array &p_array) const;
  89. bool operator>(const Array &p_array) const;
  90. bool operator>=(const Array &p_array) const;
  91. Variant min() const;
  92. Variant max() const;
  93. const void *id() const;
  94. bool typed_assign(const Array &p_other);
  95. void set_typed(uint32_t p_type, const StringName &p_class_name, const Variant &p_script);
  96. bool is_typed() const;
  97. uint32_t get_typed_builtin() const;
  98. StringName get_typed_class_name() const;
  99. Variant get_typed_script() const;
  100. Array(const Array &p_from);
  101. Array();
  102. ~Array();
  103. };
  104. #endif // ARRAY_H