2017-03-04 02:04:16 +00:00
|
|
|
#ifndef ARRAY_H
|
|
|
|
#define ARRAY_H
|
|
|
|
|
2017-10-03 10:37:34 +00:00
|
|
|
#include <gdnative/array.h>
|
2017-03-04 02:04:16 +00:00
|
|
|
|
2017-03-06 07:49:24 +00:00
|
|
|
#include "String.hpp"
|
2017-03-04 02:04:16 +00:00
|
|
|
|
|
|
|
namespace godot {
|
|
|
|
|
2017-03-06 02:30:46 +00:00
|
|
|
class Variant;
|
|
|
|
class PoolByteArray;
|
|
|
|
class PoolIntArray;
|
|
|
|
class PoolRealArray;
|
|
|
|
class PoolStringArray;
|
|
|
|
class PoolVector2Array;
|
|
|
|
class PoolVector3Array;
|
|
|
|
class PoolColorArray;
|
|
|
|
|
|
|
|
class Object;
|
|
|
|
|
2017-07-23 15:53:50 +00:00
|
|
|
class Array {
|
2017-03-04 02:04:16 +00:00
|
|
|
godot_array _godot_array;
|
|
|
|
public:
|
2017-03-06 02:30:46 +00:00
|
|
|
Array();
|
2018-01-17 00:57:01 +00:00
|
|
|
Array(const Array & other);
|
|
|
|
Array & operator=(const Array & other);
|
2017-03-06 02:30:46 +00:00
|
|
|
|
|
|
|
Array(const PoolByteArray& a);
|
|
|
|
|
|
|
|
Array(const PoolIntArray& a);
|
|
|
|
|
|
|
|
Array(const PoolRealArray& a);
|
|
|
|
|
|
|
|
Array(const PoolStringArray& a);
|
|
|
|
|
|
|
|
Array(const PoolVector2Array& a);
|
|
|
|
|
|
|
|
Array(const PoolVector3Array& a);
|
|
|
|
|
|
|
|
Array(const PoolColorArray& a);
|
|
|
|
|
|
|
|
Variant& operator [](const int idx);
|
|
|
|
|
|
|
|
Variant operator [](const int idx) const;
|
|
|
|
|
|
|
|
void append(const Variant& v);
|
|
|
|
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
int count(const Variant& v);
|
|
|
|
|
|
|
|
bool empty() const;
|
|
|
|
|
|
|
|
void erase(const Variant& v);
|
|
|
|
|
|
|
|
Variant front() const;
|
|
|
|
|
|
|
|
Variant back() const;
|
|
|
|
|
|
|
|
int find(const Variant& what, const int from = 0);
|
|
|
|
|
|
|
|
int find_last(const Variant& what);
|
|
|
|
|
|
|
|
bool has(const Variant& what) const;
|
|
|
|
|
|
|
|
uint32_t hash() const;
|
|
|
|
|
|
|
|
void insert(const int pos, const Variant& value);
|
|
|
|
|
|
|
|
void invert();
|
|
|
|
|
|
|
|
bool is_shared() const;
|
|
|
|
|
|
|
|
Variant pop_back();
|
|
|
|
|
|
|
|
Variant pop_front();
|
|
|
|
|
|
|
|
void push_back(const Variant& v);
|
|
|
|
|
|
|
|
void push_front(const Variant& v);
|
|
|
|
|
|
|
|
void remove(const int idx);
|
|
|
|
|
|
|
|
int size() const;
|
|
|
|
|
|
|
|
void resize(const int size);
|
|
|
|
|
|
|
|
int rfind(const Variant& what, const int from = -1);
|
|
|
|
|
|
|
|
void sort();
|
|
|
|
|
|
|
|
void sort_custom(Object *obj, const String& func);
|
2017-03-04 02:04:16 +00:00
|
|
|
|
2017-03-06 02:30:46 +00:00
|
|
|
~Array();
|
2017-03-04 02:04:16 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // ARRAY_H
|