summaryrefslogtreecommitdiffstats
path: root/src/world/World.hpp
blob: b33499ca530558069094a576fd7543dfb5de0bfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#pragma once

#include <map>
#include <thread>
#include <mutex>
#include <condition_variable>
#include <queue>
#include <bitset>
#include <easylogging++.h>
#include "Block.hpp"
#include "../packet/Packet.hpp"
#include "Section.hpp"

class World {
    //utility vars
    World(const World &other);

    World &operator=(const World &other);

    //game vars
    int m_dimension = 0;

    //game methods
    Section ParseSection(byte *data, size_t &dataLen);

public:
    World();

    ~World();

    void ParseChunkData(Packet packet);

    std::map<Vector, Section> m_sections;
};