38 lines
865 B
C++
38 lines
865 B
C++
#ifndef WORLD_H__
|
|
#define WORLD_H__
|
|
#include "define.h"
|
|
#include "chunk.h"
|
|
#include "array2d.h"
|
|
#include "vector3.h"
|
|
#include "player.h"
|
|
#include "transformation.h"
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class Chunk;
|
|
class Player;
|
|
|
|
class World {
|
|
public:
|
|
World();
|
|
~World();
|
|
|
|
Array2d<Chunk*>& GetChunks();
|
|
|
|
Chunk* ChunkAt(float x, float y, float z) const;
|
|
Chunk* ChunkAt(const Vector3f& pos) const;
|
|
|
|
BlockType BlockAt(float x, float y, float z, BlockType defaultBlockType = BTYPE_AIR) const;
|
|
BlockType BlockAt(const Vector3f& pos, BlockType defaultBlockType = BTYPE_AIR) const;
|
|
|
|
void TransposeWorld(Player& player);
|
|
private:
|
|
Array2d<Chunk*> m_chunks = Array2d<Chunk*>(WORLD_SIZE_X, WORLD_SIZE_Y);
|
|
std::vector<Chunk*> m_tbDeleted;
|
|
|
|
int m_center[2] = {INT16_MAX / 2, INT16_MAX / 2};
|
|
};
|
|
#endif // WORLD_H__
|
|
|