array.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. class Variant;
  34. class ArrayPrivate;
  35. class Object;
  36. class StringName;
  37. class Array {
  38. mutable ArrayPrivate *_p;
  39. void _ref(const Array &p_from) const;
  40. void _unref() const;
  41. inline int _clamp_slice_index(int p_index) const;
  42. public:
  43. Variant &operator[](int p_idx);
  44. const Variant &operator[](int p_idx) const;
  45. void set(int p_idx, const Variant &p_value);
  46. const Variant &get(int p_idx) const;
  47. int size() const;
  48. bool empty() const;
  49. void clear();
  50. bool deep_equal(const Array &p_array, int p_recursion_count = 0) const;
  51. bool operator==(const Array &p_array) const;
  52. uint32_t hash() const;
  53. uint32_t recursive_hash(int p_recursion_count) const;
  54. void operator=(const Array &p_array);
  55. void push_back(const Variant &p_value);
  56. _FORCE_INLINE_ void append(const Variant &p_value) { push_back(p_value); } //for python compatibility
  57. void append_array(const Array &p_array);
  58. Error resize(int p_new_size);
  59. void insert(int p_pos, const Variant &p_value);
  60. void remove(int p_pos);
  61. void fill(const Variant &p_value);
  62. Variant front() const;
  63. Variant pick_random() const;
  64. Variant back() const;
  65. Array &sort();
  66. Array &sort_custom(Object *p_obj, const StringName &p_function);
  67. void shuffle();
  68. int bsearch(const Variant &p_value, bool p_before = true);
  69. int bsearch_custom(const Variant &p_value, Object *p_obj, const StringName &p_function, bool p_before = true);
  70. Array &invert();
  71. int find(const Variant &p_value, int p_from = 0) const;
  72. int rfind(const Variant &p_value, int p_from = -1) const;
  73. int find_last(const Variant &p_value) const;
  74. int count(const Variant &p_value) const;
  75. bool has(const Variant &p_value) const;
  76. void erase(const Variant &p_value);
  77. void push_front(const Variant &p_value);
  78. Variant pop_back();
  79. Variant pop_front();
  80. Variant pop_at(int p_pos);
  81. Array duplicate(bool p_deep = false) const;
  82. Array slice(int p_begin, int p_end, int p_step = 1, bool p_deep = false) const;
  83. Variant min() const;
  84. Variant max() const;
  85. const void *id() const;
  86. Array(const Array &p_from);
  87. Array();
  88. ~Array();
  89. };
  90. #endif // ARRAY_H