2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* array.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/**************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef ARRAY_H
|
|
|
|
#define ARRAY_H
|
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/typedefs.h"
|
|
|
|
|
2022-01-10 12:56:55 +00:00
|
|
|
#include <climits>
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
class Variant;
|
|
|
|
class ArrayPrivate;
|
|
|
|
class Object;
|
|
|
|
class StringName;
|
2021-02-04 01:02:06 +00:00
|
|
|
class Callable;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
class Array {
|
|
|
|
mutable ArrayPrivate *_p;
|
|
|
|
void _unref() const;
|
|
|
|
|
|
|
|
public:
|
2023-12-24 12:44:21 +00:00
|
|
|
struct ConstIterator {
|
|
|
|
_FORCE_INLINE_ const Variant &operator*() const;
|
|
|
|
_FORCE_INLINE_ const Variant *operator->() const;
|
|
|
|
|
|
|
|
_FORCE_INLINE_ ConstIterator &operator++();
|
|
|
|
_FORCE_INLINE_ ConstIterator &operator--();
|
|
|
|
|
|
|
|
_FORCE_INLINE_ bool operator==(const ConstIterator &p_other) const { return element_ptr == p_other.element_ptr; }
|
2024-04-13 15:23:25 +00:00
|
|
|
_FORCE_INLINE_ bool operator!=(const ConstIterator &p_other) const { return element_ptr != p_other.element_ptr; }
|
2023-12-24 12:44:21 +00:00
|
|
|
|
|
|
|
_FORCE_INLINE_ ConstIterator(const Variant *p_element_ptr, Variant *p_read_only = nullptr) :
|
|
|
|
element_ptr(p_element_ptr), read_only(p_read_only) {}
|
|
|
|
_FORCE_INLINE_ ConstIterator() {}
|
|
|
|
_FORCE_INLINE_ ConstIterator(const ConstIterator &p_other) :
|
|
|
|
element_ptr(p_other.element_ptr), read_only(p_other.read_only) {}
|
|
|
|
|
|
|
|
_FORCE_INLINE_ ConstIterator &operator=(const ConstIterator &p_other) {
|
|
|
|
element_ptr = p_other.element_ptr;
|
|
|
|
read_only = p_other.read_only;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Variant *element_ptr = nullptr;
|
|
|
|
Variant *read_only = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Iterator {
|
|
|
|
_FORCE_INLINE_ Variant &operator*() const;
|
|
|
|
_FORCE_INLINE_ Variant *operator->() const;
|
|
|
|
|
|
|
|
_FORCE_INLINE_ Iterator &operator++();
|
|
|
|
_FORCE_INLINE_ Iterator &operator--();
|
|
|
|
|
|
|
|
_FORCE_INLINE_ bool operator==(const Iterator &p_other) const { return element_ptr == p_other.element_ptr; }
|
|
|
|
_FORCE_INLINE_ bool operator!=(const Iterator &p_other) const { return element_ptr != p_other.element_ptr; }
|
|
|
|
|
|
|
|
_FORCE_INLINE_ Iterator(Variant *p_element_ptr, Variant *p_read_only = nullptr) :
|
|
|
|
element_ptr(p_element_ptr), read_only(p_read_only) {}
|
|
|
|
_FORCE_INLINE_ Iterator() {}
|
|
|
|
_FORCE_INLINE_ Iterator(const Iterator &p_other) :
|
|
|
|
element_ptr(p_other.element_ptr), read_only(p_other.read_only) {}
|
|
|
|
|
|
|
|
_FORCE_INLINE_ Iterator &operator=(const Iterator &p_other) {
|
|
|
|
element_ptr = p_other.element_ptr;
|
|
|
|
read_only = p_other.read_only;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
operator ConstIterator() const {
|
|
|
|
return ConstIterator(element_ptr, read_only);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Variant *element_ptr = nullptr;
|
|
|
|
Variant *read_only = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
Iterator begin();
|
|
|
|
Iterator end();
|
|
|
|
|
|
|
|
ConstIterator begin() const;
|
|
|
|
ConstIterator end() const;
|
|
|
|
|
2022-11-27 07:56:53 +00:00
|
|
|
void _ref(const Array &p_from) const;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Variant &operator[](int p_idx);
|
|
|
|
const Variant &operator[](int p_idx) const;
|
|
|
|
|
|
|
|
void set(int p_idx, const Variant &p_value);
|
|
|
|
const Variant &get(int p_idx) const;
|
|
|
|
|
|
|
|
int size() const;
|
2020-12-15 12:04:21 +00:00
|
|
|
bool is_empty() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
void clear();
|
|
|
|
|
|
|
|
bool operator==(const Array &p_array) const;
|
2020-11-05 02:01:55 +00:00
|
|
|
bool operator!=(const Array &p_array) const;
|
2020-02-01 06:04:14 +00:00
|
|
|
bool recursive_equal(const Array &p_array, int recursion_count) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
uint32_t hash() const;
|
2020-02-01 06:04:14 +00:00
|
|
|
uint32_t recursive_hash(int recursion_count) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
void operator=(const Array &p_array);
|
|
|
|
|
2022-11-27 07:56:53 +00:00
|
|
|
void assign(const Array &p_array);
|
2014-02-10 01:10:30 +00:00
|
|
|
void push_back(const Variant &p_value);
|
|
|
|
_FORCE_INLINE_ void append(const Variant &p_value) { push_back(p_value); } //for python compatibility
|
2020-11-08 20:09:45 +00:00
|
|
|
void append_array(const Array &p_array);
|
2014-02-10 01:10:30 +00:00
|
|
|
Error resize(int p_new_size);
|
|
|
|
|
2021-03-27 04:49:39 +00:00
|
|
|
Error insert(int p_pos, const Variant &p_value);
|
2021-07-03 22:17:03 +00:00
|
|
|
void remove_at(int p_pos);
|
2021-02-25 14:10:39 +00:00
|
|
|
void fill(const Variant &p_value);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-11-18 20:30:16 +00:00
|
|
|
Variant front() const;
|
|
|
|
Variant back() const;
|
2022-10-15 12:43:16 +00:00
|
|
|
Variant pick_random() const;
|
2016-11-18 20:30:16 +00:00
|
|
|
|
2020-10-13 18:59:37 +00:00
|
|
|
void sort();
|
2022-03-28 01:57:20 +00:00
|
|
|
void sort_custom(const Callable &p_callable);
|
2018-01-10 18:36:53 +00:00
|
|
|
void shuffle();
|
2023-01-20 19:18:56 +00:00
|
|
|
int bsearch(const Variant &p_value, bool p_before = true) const;
|
|
|
|
int bsearch_custom(const Variant &p_value, const Callable &p_callable, bool p_before = true) const;
|
2021-03-14 07:21:32 +00:00
|
|
|
void reverse();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-06-10 17:57:56 +00:00
|
|
|
int find(const Variant &p_value, int p_from = 0) const;
|
2024-08-12 06:28:32 +00:00
|
|
|
int find_custom(const Callable &p_callable, int p_from = 0) const;
|
2016-06-10 20:28:09 +00:00
|
|
|
int rfind(const Variant &p_value, int p_from = -1) const;
|
2024-08-12 06:28:32 +00:00
|
|
|
int rfind_custom(const Callable &p_callable, int p_from = -1) const;
|
2016-06-03 21:10:43 +00:00
|
|
|
int count(const Variant &p_value) const;
|
2016-07-02 17:03:35 +00:00
|
|
|
bool has(const Variant &p_value) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void erase(const Variant &p_value);
|
|
|
|
|
2015-12-12 11:27:30 +00:00
|
|
|
void push_front(const Variant &p_value);
|
2016-08-27 15:33:45 +00:00
|
|
|
Variant pop_back();
|
|
|
|
Variant pop_front();
|
2021-08-26 22:51:17 +00:00
|
|
|
Variant pop_at(int p_pos);
|
2015-12-12 11:27:30 +00:00
|
|
|
|
2018-03-09 19:16:08 +00:00
|
|
|
Array duplicate(bool p_deep = false) const;
|
2020-02-01 06:04:14 +00:00
|
|
|
Array recursive_duplicate(bool p_deep, int recursion_count) const;
|
2017-09-06 21:13:05 +00:00
|
|
|
|
2022-01-10 12:56:55 +00:00
|
|
|
Array slice(int p_begin, int p_end = INT_MAX, int p_step = 1, bool p_deep = false) const;
|
2020-10-19 19:21:16 +00:00
|
|
|
Array filter(const Callable &p_callable) const;
|
|
|
|
Array map(const Callable &p_callable) const;
|
|
|
|
Variant reduce(const Callable &p_callable, const Variant &p_accum) const;
|
2021-07-10 18:19:47 +00:00
|
|
|
bool any(const Callable &p_callable) const;
|
|
|
|
bool all(const Callable &p_callable) const;
|
2019-07-17 01:31:58 +00:00
|
|
|
|
2020-11-05 02:01:55 +00:00
|
|
|
bool operator<(const Array &p_array) const;
|
|
|
|
bool operator<=(const Array &p_array) const;
|
|
|
|
bool operator>(const Array &p_array) const;
|
|
|
|
bool operator>=(const Array &p_array) const;
|
|
|
|
|
2018-08-23 18:31:02 +00:00
|
|
|
Variant min() const;
|
|
|
|
Variant max() const;
|
|
|
|
|
2019-04-19 23:57:29 +00:00
|
|
|
const void *id() const;
|
|
|
|
|
2020-04-20 22:06:00 +00:00
|
|
|
void set_typed(uint32_t p_type, const StringName &p_class_name, const Variant &p_script);
|
2021-03-09 15:30:06 +00:00
|
|
|
bool is_typed() const;
|
2022-11-27 07:56:53 +00:00
|
|
|
bool is_same_typed(const Array &p_other) const;
|
2024-06-07 23:55:58 +00:00
|
|
|
bool is_same_instance(const Array &p_other) const;
|
2021-03-09 15:30:06 +00:00
|
|
|
uint32_t get_typed_builtin() const;
|
|
|
|
StringName get_typed_class_name() const;
|
|
|
|
Variant get_typed_script() const;
|
2022-05-17 17:14:42 +00:00
|
|
|
|
2023-01-22 09:07:48 +00:00
|
|
|
void make_read_only();
|
2022-05-17 17:14:42 +00:00
|
|
|
bool is_read_only() const;
|
2024-06-07 23:55:58 +00:00
|
|
|
static Array create_read_only();
|
2022-05-17 17:14:42 +00:00
|
|
|
|
2022-08-25 09:35:30 +00:00
|
|
|
Array(const Array &p_base, uint32_t p_type, const StringName &p_class_name, const Variant &p_script);
|
2014-02-10 01:10:30 +00:00
|
|
|
Array(const Array &p_from);
|
2017-01-11 11:53:31 +00:00
|
|
|
Array();
|
2014-02-10 01:10:30 +00:00
|
|
|
~Array();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ARRAY_H
|