godot/core/templates/vmap.h

203 lines
5.3 KiB
C++
Raw Permalink Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* vmap.h */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
2014-02-10 02:10:30 +01:00
/* */
/* 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. */
/*************************************************************************/
2014-02-10 02:10:30 +01:00
#ifndef VMAP_H
#define VMAP_H
#include "core/templates/cowdata.h"
#include "core/typedefs.h"
2014-02-10 02:10:30 +01:00
template <class T, class V>
2014-02-10 02:10:30 +01:00
class VMap {
public:
struct Pair {
2014-02-10 02:10:30 +01:00
T key;
V value;
_FORCE_INLINE_ Pair() {}
2014-02-10 02:10:30 +01:00
_FORCE_INLINE_ Pair(const T &p_key, const V &p_value) {
key = p_key;
value = p_value;
2014-02-10 02:10:30 +01:00
}
};
private:
CowData<Pair> _cowdata;
2014-02-10 02:10:30 +01:00
_FORCE_INLINE_ int _find(const T &p_val, bool &r_exact) const {
r_exact = false;
2020-12-15 13:04:21 +01:00
if (_cowdata.is_empty()) {
2014-02-10 02:10:30 +01:00
return 0;
}
2014-02-10 02:10:30 +01:00
int low = 0;
int high = _cowdata.size() - 1;
const Pair *a = _cowdata.ptr();
int middle = 0;
2014-02-10 02:10:30 +01:00
#ifdef DEBUG_ENABLED
if (low > high) {
ERR_PRINT("low > high, this may be a bug");
}
#endif
while (low <= high) {
middle = (low + high) / 2;
2014-02-10 02:10:30 +01:00
if (p_val < a[middle].key) {
2014-02-10 02:10:30 +01:00
high = middle - 1; //search low end of array
} else if (a[middle].key < p_val) {
2014-02-10 02:10:30 +01:00
low = middle + 1; //search high end of array
} else {
r_exact = true;
2014-02-10 02:10:30 +01:00
return middle;
}
}
//return the position where this would be inserted
if (a[middle].key < p_val) {
2014-02-10 02:10:30 +01:00
middle++;
}
2014-02-10 02:10:30 +01:00
return middle;
}
_FORCE_INLINE_ int _find_exact(const T &p_val) const {
2020-12-15 13:04:21 +01:00
if (_cowdata.is_empty()) {
2014-02-10 02:10:30 +01:00
return -1;
}
2014-02-10 02:10:30 +01:00
int low = 0;
int high = _cowdata.size() - 1;
2014-02-10 02:10:30 +01:00
int middle;
const Pair *a = _cowdata.ptr();
2014-02-10 02:10:30 +01:00
while (low <= high) {
middle = (low + high) / 2;
2014-02-10 02:10:30 +01:00
if (p_val < a[middle].key) {
2014-02-10 02:10:30 +01:00
high = middle - 1; //search low end of array
} else if (a[middle].key < p_val) {
2014-02-10 02:10:30 +01:00
low = middle + 1; //search high end of array
} else {
return middle;
}
}
return -1;
}
public:
int insert(const T &p_key, const V &p_val) {
2014-02-10 02:10:30 +01:00
bool exact;
int pos = _find(p_key, exact);
2014-02-10 02:10:30 +01:00
if (exact) {
_cowdata.get_m(pos).value = p_val;
2014-02-10 02:10:30 +01:00
return pos;
}
_cowdata.insert(pos, Pair(p_key, p_val));
2014-02-10 02:10:30 +01:00
return pos;
}
bool has(const T &p_val) const {
return _find_exact(p_val) != -1;
2014-02-10 02:10:30 +01:00
}
void erase(const T &p_val) {
2014-02-10 02:10:30 +01:00
int pos = _find_exact(p_val);
if (pos < 0) {
2014-02-10 02:10:30 +01:00
return;
}
_cowdata.remove(pos);
2014-02-10 02:10:30 +01:00
}
int find(const T &p_val) const {
2014-02-10 02:10:30 +01:00
return _find_exact(p_val);
}
int find_nearest(const T &p_val) const {
bool exact;
return _find(p_val, exact);
}
2014-02-10 02:10:30 +01:00
_FORCE_INLINE_ int size() const { return _cowdata.size(); }
2020-12-15 13:04:21 +01:00
_FORCE_INLINE_ bool is_empty() const { return _cowdata.is_empty(); }
2014-02-10 02:10:30 +01:00
const Pair *get_array() const {
return _cowdata.ptr();
2014-02-10 02:10:30 +01:00
}
Pair *get_array() {
return _cowdata.ptrw();
2014-02-10 02:10:30 +01:00
}
const V &getv(int p_index) const {
return _cowdata.get(p_index).value;
2014-02-10 02:10:30 +01:00
}
V &getv(int p_index) {
return _cowdata.get_m(p_index).value;
2014-02-10 02:10:30 +01:00
}
const T &getk(int p_index) const {
return _cowdata.get(p_index).key;
2014-02-10 02:10:30 +01:00
}
T &getk(int p_index) {
return _cowdata.get_m(p_index).key;
2014-02-10 02:10:30 +01:00
}
inline const V &operator[](const T &p_key) const {
2014-02-10 02:10:30 +01:00
int pos = _find_exact(p_key);
CRASH_COND(pos < 0);
2014-02-10 02:10:30 +01:00
return _cowdata.get(pos).value;
2014-02-10 02:10:30 +01:00
}
inline V &operator[](const T &p_key) {
2014-02-10 02:10:30 +01:00
int pos = _find_exact(p_key);
if (pos < 0) {
pos = insert(p_key, V());
2014-02-10 02:10:30 +01:00
}
return _cowdata.get_m(pos).value;
}
_FORCE_INLINE_ VMap() {}
_FORCE_INLINE_ VMap(const VMap &p_from) { _cowdata._ref(p_from._cowdata); }
inline VMap &operator=(const VMap &p_from) {
_cowdata._ref(p_from._cowdata);
return *this;
2014-02-10 02:10:30 +01:00
}
};
2014-02-10 02:10:30 +01:00
#endif // VMAP_H