mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +01:00
179 lines
4.0 KiB
C++
179 lines
4.0 KiB
C++
//--STRIP
|
|
#ifndef VECTOR_H
|
|
#define VECTOR_H
|
|
//--STRIP
|
|
|
|
/*************************************************************************/
|
|
/* vector.h */
|
|
/* From https://github.com/Relintai/pandemonium_engine (MIT) */
|
|
/*************************************************************************/
|
|
|
|
/**
|
|
* @class Vector
|
|
* @author Juan Linietsky
|
|
* Vector container. Regular Vector Container. Use with care and for smaller arrays when possible. Use PoolVector for large arrays.
|
|
*/
|
|
|
|
//--STRIP
|
|
#include "cowdata.h"
|
|
#include "core/sort_array.h"
|
|
#include "core/error_macros.h"
|
|
#include "core/memory.h"
|
|
//--STRIP
|
|
|
|
template <class T>
|
|
class VectorWriteProxy {
|
|
public:
|
|
_FORCE_INLINE_ T &operator[](int p_index) {
|
|
CRASH_BAD_INDEX(p_index, ((Vector<T> *)(this))->_cowdata.size());
|
|
|
|
return ((Vector<T> *)(this))->_cowdata.ptrw()[p_index];
|
|
}
|
|
};
|
|
|
|
template <class T>
|
|
class Vector {
|
|
friend class VectorWriteProxy<T>;
|
|
|
|
public:
|
|
VectorWriteProxy<T> write;
|
|
|
|
private:
|
|
CowData<T> _cowdata;
|
|
|
|
public:
|
|
bool push_back(T p_elem);
|
|
|
|
void remove(int p_index) { _cowdata.remove(p_index); }
|
|
_FORCE_INLINE_ bool erase(const T &p_val) {
|
|
int idx = find(p_val);
|
|
if (idx >= 0) {
|
|
remove(idx);
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
void invert();
|
|
|
|
_FORCE_INLINE_ T *ptrw() { return _cowdata.ptrw(); }
|
|
_FORCE_INLINE_ const T *ptr() const { return _cowdata.ptr(); }
|
|
_FORCE_INLINE_ void clear() { resize(0); }
|
|
_FORCE_INLINE_ bool empty() const { return _cowdata.empty(); }
|
|
|
|
_FORCE_INLINE_ T get(int p_index) { return _cowdata.get(p_index); }
|
|
_FORCE_INLINE_ const T &get(int p_index) const { return _cowdata.get(p_index); }
|
|
_FORCE_INLINE_ void set(int p_index, const T &p_elem) { _cowdata.set(p_index, p_elem); }
|
|
_FORCE_INLINE_ int size() const { return _cowdata.size(); }
|
|
Error resize(int p_size) { return _cowdata.resize(p_size); }
|
|
_FORCE_INLINE_ const T &operator[](int p_index) const { return _cowdata.get(p_index); }
|
|
Error insert(int p_pos, T p_val) { return _cowdata.insert(p_pos, p_val); }
|
|
int find(const T &p_val, int p_from = 0) const { return _cowdata.find(p_val, p_from); }
|
|
_FORCE_INLINE_ void fill(const T &p_val) { _cowdata.fill(p_val); }
|
|
|
|
void append_array(Vector<T> p_other);
|
|
|
|
template <class C>
|
|
void sort_custom() {
|
|
int len = _cowdata.size();
|
|
if (len == 0) {
|
|
return;
|
|
}
|
|
|
|
T *data = ptrw();
|
|
SortArray<T, C> sorter;
|
|
sorter.sort(data, len);
|
|
}
|
|
|
|
void sort() {
|
|
sort_custom<_DefaultComparator<T>>();
|
|
}
|
|
|
|
void ordered_insert(const T &p_val) {
|
|
int i;
|
|
for (i = 0; i < _cowdata.size(); i++) {
|
|
if (p_val < operator[](i)) {
|
|
break;
|
|
};
|
|
};
|
|
insert(i, p_val);
|
|
}
|
|
|
|
_FORCE_INLINE_ Vector() {}
|
|
_FORCE_INLINE_ Vector(const Vector &p_from) { _cowdata._ref(p_from._cowdata); }
|
|
inline Vector &operator=(const Vector &p_from) {
|
|
_cowdata._ref(p_from._cowdata);
|
|
return *this;
|
|
}
|
|
|
|
Vector<uint8_t> to_byte_array() const {
|
|
Vector<uint8_t> ret;
|
|
ret.resize(size() * sizeof(T));
|
|
memcpy(ret.ptrw(), ptr(), sizeof(T) * size());
|
|
return ret;
|
|
}
|
|
|
|
Vector<T> slice(int p_begin, int p_end = INT32_MAX) const {
|
|
Vector<T> result;
|
|
|
|
const int s = size();
|
|
|
|
int begin = CLAMP(p_begin, -s, s);
|
|
if (begin < 0) {
|
|
begin += s;
|
|
}
|
|
int end = CLAMP(p_end, -s, s);
|
|
if (end < 0) {
|
|
end += s;
|
|
}
|
|
|
|
ERR_FAIL_COND_V(begin > end, result);
|
|
|
|
int result_size = end - begin;
|
|
result.resize(result_size);
|
|
|
|
const T *const r = ptr();
|
|
T *const w = result.ptrw();
|
|
for (int i = 0; i < result_size; ++i) {
|
|
w[i] = r[begin + i];
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
_FORCE_INLINE_ ~Vector() {}
|
|
};
|
|
|
|
template <class T>
|
|
void Vector<T>::invert() {
|
|
for (int i = 0; i < size() / 2; i++) {
|
|
T *p = ptrw();
|
|
SWAP(p[i], p[size() - i - 1]);
|
|
}
|
|
}
|
|
|
|
template <class T>
|
|
void Vector<T>::append_array(Vector<T> p_other) {
|
|
const int ds = p_other.size();
|
|
if (ds == 0) {
|
|
return;
|
|
}
|
|
const int bs = size();
|
|
resize(bs + ds);
|
|
for (int i = 0; i < ds; ++i) {
|
|
ptrw()[bs + i] = p_other[i];
|
|
}
|
|
}
|
|
|
|
template <class T>
|
|
bool Vector<T>::push_back(T p_elem) {
|
|
Error err = resize(size() + 1);
|
|
ERR_FAIL_COND_V(err, true);
|
|
set(size() - 1, p_elem);
|
|
|
|
return false;
|
|
}
|
|
|
|
//--STRIP
|
|
#endif
|
|
//--STRIP
|