mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-23 17:38:20 +01:00
135 lines
3.3 KiB
C++
135 lines
3.3 KiB
C++
#ifndef FAST_WFC_UTILS_ARRAY2D_HPP_
|
|
#define FAST_WFC_UTILS_ARRAY2D_HPP_
|
|
|
|
#include "assert.h"
|
|
#include <vector>
|
|
|
|
/**
|
|
* Represent a 2D array.
|
|
* The 2D array is stored in a single array, to improve cache usage.
|
|
*/
|
|
template <typename T>
|
|
class Array2D {
|
|
public:
|
|
/**
|
|
* Height and width of the 2D array.
|
|
*/
|
|
std::size_t height;
|
|
std::size_t width;
|
|
|
|
/**
|
|
* The array containing the data of the 2D array.
|
|
*/
|
|
std::vector<T> data;
|
|
|
|
/**
|
|
* Build a 2D array given its height and width.
|
|
* All the array elements are initialized to default value.
|
|
*/
|
|
Array2D(std::size_t height, std::size_t width) noexcept
|
|
:
|
|
height(height), width(width), data(width * height) {}
|
|
|
|
/**
|
|
* Build a 2D array given its height and width.
|
|
* All the array elements are initialized to value.
|
|
*/
|
|
Array2D(std::size_t height, std::size_t width, T value) noexcept
|
|
:
|
|
height(height), width(width), data(width * height, value) {}
|
|
|
|
/**
|
|
* Return a const reference to the element in the i-th line and j-th column.
|
|
* i must be lower than height and j lower than width.
|
|
*/
|
|
const T &get(std::size_t i, std::size_t j) const noexcept {
|
|
assert(i < height && j < width);
|
|
return data[j + i * width];
|
|
}
|
|
|
|
/**
|
|
* Return a reference to the element in the i-th line and j-th column.
|
|
* i must be lower than height and j lower than width.
|
|
*/
|
|
T &get(std::size_t i, std::size_t j) noexcept {
|
|
assert(i < height && j < width);
|
|
return data[j + i * width];
|
|
}
|
|
|
|
/**
|
|
* Return the current 2D array reflected along the x axis.
|
|
*/
|
|
Array2D<T> reflected() const noexcept {
|
|
Array2D<T> result = Array2D<T>(width, height);
|
|
for (std::size_t y = 0; y < height; y++) {
|
|
for (std::size_t x = 0; x < width; x++) {
|
|
result.get(y, x) = get(y, width - 1 - x);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Return the current 2D array rotated 90° anticlockwise
|
|
*/
|
|
Array2D<T> rotated() const noexcept {
|
|
Array2D<T> result = Array2D<T>(width, height);
|
|
for (std::size_t y = 0; y < width; y++) {
|
|
for (std::size_t x = 0; x < height; x++) {
|
|
result.get(y, x) = get(x, width - 1 - y);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Return the sub 2D array starting from (y,x) and with size (sub_width,
|
|
* sub_height). The current 2D array is considered toric for this operation.
|
|
*/
|
|
Array2D<T> get_sub_array(std::size_t y, std::size_t x, std::size_t sub_width,
|
|
std::size_t sub_height) const noexcept {
|
|
Array2D<T> sub_array_2d = Array2D<T>(sub_width, sub_height);
|
|
for (std::size_t ki = 0; ki < sub_height; ki++) {
|
|
for (std::size_t kj = 0; kj < sub_width; kj++) {
|
|
sub_array_2d.get(ki, kj) = get((y + ki) % height, (x + kj) % width);
|
|
}
|
|
}
|
|
return sub_array_2d;
|
|
}
|
|
|
|
/**
|
|
* Check if two 2D arrays are equals.
|
|
*/
|
|
bool operator==(const Array2D<T> &a) const noexcept {
|
|
if (height != a.height || width != a.width) {
|
|
return false;
|
|
}
|
|
|
|
for (std::size_t i = 0; i < data.size(); i++) {
|
|
if (a.data[i] != data[i]) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Hash function.
|
|
*/
|
|
namespace std {
|
|
template <typename T>
|
|
class hash<Array2D<T>> {
|
|
public:
|
|
std::size_t operator()(const Array2D<T> &a) const noexcept {
|
|
std::size_t seed = a.data.size();
|
|
for (const T &i : a.data) {
|
|
seed ^= hash<T>()(i) + (std::size_t)0x9e3779b9 + (seed << 6) + (seed >> 2);
|
|
}
|
|
return seed;
|
|
}
|
|
};
|
|
} // namespace std
|
|
|
|
#endif // FAST_WFC_UTILS_ARRAY2D_HPP_
|