summaryrefslogblamecommitdiffstats
path: root/src/world/World.hpp
blob: b33499ca530558069094a576fd7543dfb5de0bfb (plain) (tree)
1
2
3
4
5
6
7
8
9






                             

                          
                    
                               



                      



                                         

                        
 

                                                      
 

            
 
             
 
                                       
 
                                         
 
#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;
};