summaryrefslogtreecommitdiffstats
path: root/include/world/World.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/world/World.hpp')
-rw-r--r--include/world/World.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/world/World.hpp b/include/world/World.hpp
new file mode 100644
index 0000000..6e5eedb
--- /dev/null
+++ b/include/world/World.hpp
@@ -0,0 +1,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);
+}; \ No newline at end of file