summaryrefslogtreecommitdiffstats
path: root/include/world/World.hpp
blob: 6e5eedb13e015c1a4d5fc4619b222114aae536dc (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
35
#pragma once

#include <map>
#include <bitset>

#include <easylogging++.h>

#include <world/Block.hpp>
#include <world/Section.hpp>
#include <network/Packet.hpp>
#include <world/Collision.hpp>

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

	World &operator=(const World &other);

	//game vars
	int dimension = 0;

	//game methods
	Section ParseSection(StreamInput *data, Vector position);

public:
	World();

	~World();

	void ParseChunkData(std::shared_ptr<PacketChunkData> packet);

	std::map<Vector, Section> sections;

	bool isPlayerCollides(double X, double Y, double Z);
};