2014-12-18 07:02:48 +01:00
|
|
|
/*
|
|
|
|
* =====================================================================================
|
|
|
|
*
|
|
|
|
* Filename: Chunk.hpp
|
|
|
|
*
|
2018-06-05 01:24:54 +02:00
|
|
|
* Description:
|
2014-12-18 07:02:48 +01:00
|
|
|
*
|
|
|
|
* Created: 15/12/2014 17:31:17
|
|
|
|
*
|
2018-06-12 09:24:43 +02:00
|
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
2014-12-18 07:02:48 +01:00
|
|
|
*
|
|
|
|
* =====================================================================================
|
|
|
|
*/
|
|
|
|
#ifndef CHUNK_HPP_
|
|
|
|
#define CHUNK_HPP_
|
|
|
|
|
2014-12-21 15:25:58 +01:00
|
|
|
#include <map>
|
2015-02-06 01:44:16 +01:00
|
|
|
#include <memory>
|
2014-12-18 07:02:48 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2015-02-06 01:44:16 +01:00
|
|
|
#include "Block.hpp"
|
2018-06-14 22:11:25 +02:00
|
|
|
#include "IDrawable.hpp"
|
2018-06-12 23:08:42 +02:00
|
|
|
#include "NonCopyable.hpp"
|
2014-12-18 07:02:48 +01:00
|
|
|
#include "Shader.hpp"
|
2014-12-20 01:46:31 +01:00
|
|
|
#include "Texture.hpp"
|
2014-12-18 07:02:48 +01:00
|
|
|
#include "VertexBuffer.hpp"
|
|
|
|
|
2018-06-14 22:11:25 +02:00
|
|
|
class Chunk : public NonCopyable, public IDrawable {
|
2014-12-18 07:02:48 +01:00
|
|
|
public:
|
2015-02-06 01:44:16 +01:00
|
|
|
Chunk(s32 x, s32 y, s32 z, Texture &texture);
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2014-12-18 07:02:48 +01:00
|
|
|
void update();
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2018-06-16 16:45:48 +02:00
|
|
|
Block *getBlock(int x, int y, int z) const;
|
|
|
|
void setBlock(int x, int y, int z, u32 id);
|
2018-06-13 03:47:20 +02:00
|
|
|
|
2014-12-18 07:02:48 +01:00
|
|
|
s32 x() const { return m_x; }
|
|
|
|
s32 y() const { return m_y; }
|
|
|
|
s32 z() const { return m_z; }
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2018-06-16 16:45:48 +02:00
|
|
|
// const std::vector<std::unique_ptr<Block>> &data() const { return m_data; }
|
2018-06-13 03:47:20 +02:00
|
|
|
|
2014-12-18 07:02:48 +01:00
|
|
|
Chunk *left() const { return m_surroundingChunks[0]; }
|
|
|
|
Chunk *right() const { return m_surroundingChunks[1]; }
|
|
|
|
Chunk *front() const { return m_surroundingChunks[2]; }
|
|
|
|
Chunk *back() const { return m_surroundingChunks[3]; }
|
2018-06-19 05:38:14 +02:00
|
|
|
Chunk *below() const { return m_surroundingChunks[4]; }
|
|
|
|
Chunk *above() const { return m_surroundingChunks[5]; }
|
|
|
|
Chunk *getSurroundingChunk(u8 i) { return (i > 5) ? nullptr : m_surroundingChunks[i]; }
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2014-12-18 07:02:48 +01:00
|
|
|
static const u8 width = 16;
|
|
|
|
static const u8 height = 32;
|
|
|
|
static const u8 depth = 16;
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2018-06-05 01:47:15 +02:00
|
|
|
void setLeft(Chunk *left) { m_surroundingChunks[0] = left; }
|
2014-12-18 07:02:48 +01:00
|
|
|
void setRight(Chunk *right) { m_surroundingChunks[1] = right; }
|
|
|
|
void setFront(Chunk *front) { m_surroundingChunks[2] = front; }
|
2018-06-05 01:47:15 +02:00
|
|
|
void setBack(Chunk *back) { m_surroundingChunks[3] = back; }
|
2018-06-19 05:38:14 +02:00
|
|
|
void setBelow(Chunk *below) { m_surroundingChunks[4] = below; }
|
|
|
|
void setAbove(Chunk *above) { m_surroundingChunks[5] = above; }
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2018-06-12 23:08:42 +02:00
|
|
|
bool isGenerated() const { return m_isGenerated; }
|
|
|
|
bool isInitialized() const { return m_isInitialized; }
|
|
|
|
|
|
|
|
void setChanged(bool isChanged) { m_isChanged = isChanged; }
|
|
|
|
void setGenerated(bool isGenerated) { m_isGenerated = isGenerated; }
|
|
|
|
void setInitialized(bool isInitialized) { m_isInitialized = isInitialized; }
|
|
|
|
|
2014-12-18 07:02:48 +01:00
|
|
|
private:
|
2018-06-14 22:11:25 +02:00
|
|
|
void draw(RenderTarget &target, RenderStates states) const override;
|
2018-06-14 23:36:01 +02:00
|
|
|
void drawOutlines(RenderTarget &target, RenderStates states) const;
|
2018-06-14 22:11:25 +02:00
|
|
|
|
2014-12-18 07:02:48 +01:00
|
|
|
s32 m_x;
|
|
|
|
s32 m_y;
|
|
|
|
s32 m_z;
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2014-12-20 01:46:31 +01:00
|
|
|
Texture m_texture;
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2018-06-16 16:45:48 +02:00
|
|
|
// std::vector<std::unique_ptr<Block>> m_data;
|
|
|
|
using DataArray = std::array<std::array<std::array<std::unique_ptr<Block>, Chunk::depth>, Chunk::height>, Chunk::width>;
|
|
|
|
DataArray m_data;
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2018-06-14 23:07:20 +02:00
|
|
|
std::size_t m_verticesCount;
|
|
|
|
std::size_t m_normalsCount;
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2018-06-14 21:16:56 +02:00
|
|
|
VertexBuffer m_vbo{GL_QUADS, 0, 0};
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2018-06-19 05:38:14 +02:00
|
|
|
Chunk *m_surroundingChunks[6];
|
2018-06-05 01:24:54 +02:00
|
|
|
|
2018-06-12 23:08:42 +02:00
|
|
|
bool m_isChanged;
|
|
|
|
bool m_isInitialized;
|
|
|
|
bool m_isGenerated;
|
2014-12-18 07:02:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CHUNK_HPP_
|