2022-09-25 23:05:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "xe_model.hpp"
|
|
|
|
#include "PerlinNoise.hpp"
|
|
|
|
|
|
|
|
#include <glm/common.hpp>
|
|
|
|
#include <glm/fwd.hpp>
|
|
|
|
#include <vector>
|
|
|
|
#include <thread>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
|
2022-09-26 15:03:27 +00:00
|
|
|
#define INVALID -1
|
2022-09-25 23:05:56 +00:00
|
|
|
#define AIR 0
|
|
|
|
#define DIRT 1
|
|
|
|
|
|
|
|
namespace app {
|
|
|
|
|
|
|
|
class Chunk {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static Chunk* newChunk(uint32_t gridX, uint32_t gridZ, uint32_t world_seed);
|
|
|
|
static void reset();
|
|
|
|
|
|
|
|
Chunk(uint32_t gridX, uint32_t gridZ, uint32_t world_seed);
|
|
|
|
~Chunk() {};
|
|
|
|
|
|
|
|
const uint32_t gridX, gridZ, world_seed, chunk_seed;
|
|
|
|
|
|
|
|
void createMesh();
|
|
|
|
void createMeshAsync();
|
|
|
|
std::shared_ptr<xe::Model> getMesh();
|
|
|
|
|
|
|
|
uint8_t getBlock(uint32_t x, uint32_t y, uint32_t z);
|
|
|
|
void setBlock(uint32_t x, uint32_t y, uint32_t z, uint8_t block);
|
|
|
|
|
|
|
|
static Chunk* getChunk(uint32_t x, uint32_t z);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void generate();
|
|
|
|
void addVerticies(uint32_t side, uint32_t x, uint32_t y, uint32_t z);
|
|
|
|
|
|
|
|
bool reloadRequired{false};
|
|
|
|
bool working{false};
|
|
|
|
|
|
|
|
std::shared_ptr<xe::Model> chunkMesh;
|
|
|
|
std::vector<float> vertexData;
|
|
|
|
std::vector<uint8_t> blocks;
|
|
|
|
std::thread worker;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
const float px[36][3] = {
|
|
|
|
// POS X
|
|
|
|
{0.5f,0.5f,0.5f},
|
|
|
|
{0.5f,-0.5f,0.5f},
|
|
|
|
{0.5f,-0.5f,-0.5f},
|
|
|
|
{0.5f,-0.5f,-0.5f},
|
|
|
|
{0.5f,0.5f,-0.5f},
|
|
|
|
{0.5f,0.5f,0.5f},
|
|
|
|
// NEG X
|
|
|
|
{-0.5f,0.5f,-0.5f},
|
|
|
|
{-0.5f,-0.5f,-0.5f},
|
|
|
|
{-0.5f,-0.5f,0.5f},
|
|
|
|
{-0.5f,-0.5f,0.5f},
|
|
|
|
{-0.5f,0.5f,0.5f},
|
|
|
|
{-0.5f,0.5f,-0.5f},
|
|
|
|
// POS Y
|
|
|
|
{0.5f,0.5f,-0.5f},
|
|
|
|
{-0.5f,0.5f,-0.5f},
|
|
|
|
{-0.5f,0.5f,0.5f},
|
|
|
|
{-0.5f,0.5f,0.5f},
|
|
|
|
{0.5f,0.5f,0.5f},
|
|
|
|
{0.5f,0.5f,-0.5f},
|
|
|
|
// NEG Y
|
|
|
|
{-0.5f,-0.5f,0.5f},
|
|
|
|
{-0.5f,-0.5f,-0.5f},
|
|
|
|
{0.5f,-0.5f,-0.5f},
|
|
|
|
{0.5f,-0.5f,-0.5f},
|
|
|
|
{0.5f,-0.5f,0.5f},
|
|
|
|
{-0.5f,-0.5f,0.5f},
|
|
|
|
// POS Z
|
|
|
|
{-0.5f,0.5f,0.5f},
|
|
|
|
{-0.5f,-0.5f,0.5f},
|
|
|
|
{0.5f,-0.5f,0.5f},
|
|
|
|
{0.5f,-0.5f,0.5f},
|
|
|
|
{0.5f,0.5f,0.5f},
|
|
|
|
{-0.5f,0.5f,0.5f},
|
|
|
|
// NEG Z
|
|
|
|
{0.5f,0.5f,-0.5f},
|
|
|
|
{0.5f,-0.5f,-0.5f},
|
|
|
|
{-0.5f,-0.5f,-0.5f},
|
|
|
|
{-0.5f,-0.5f,-0.5f},
|
|
|
|
{-0.5f,0.5f,-0.5f},
|
|
|
|
{0.5f,0.5f,-0.5f}
|
|
|
|
};
|
|
|
|
|
|
|
|
const float nm[6][3] = {
|
|
|
|
{1.f,0.f,0.f},
|
|
|
|
{-1.f,0.f,0.f},
|
|
|
|
{0.f,1.f,0.f},
|
|
|
|
{0.f,-1.f,0.f},
|
|
|
|
{0.f,0.f,1.f},
|
|
|
|
{0.f,0.f,-1.f}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const float uv[6][2] = {
|
2022-09-26 03:08:03 +00:00
|
|
|
{1.f,1.f},
|
2022-09-25 23:05:56 +00:00
|
|
|
{0.f,1.f},
|
2022-09-26 03:08:03 +00:00
|
|
|
{0.f,0.f},
|
|
|
|
{0.f,0.f},
|
2022-09-25 23:05:56 +00:00
|
|
|
{1.f,0.f},
|
|
|
|
{1.f,1.f}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|