X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld.hpp;h=6f639156e92a2c3f1fb3d029174477dbf567be0c;hb=bea14b67ae4e5705965f3cc6422410a25f38ef9e;hp=738e6f0eac8401f1149081a93a8171fe73607046;hpb=5588a6a9b1e2fb6fee8f1166f855ef497e551a09;p=blank.git diff --git a/src/world.hpp b/src/world.hpp index 738e6f0..6f63915 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -1,8 +1,11 @@ #ifndef BLANK_WORLD_HPP_ #define BLANK_WORLD_HPP_ +#include "controller.hpp" #include "geometry.hpp" #include "model.hpp" +#include "noise.hpp" +#include "shader.hpp" #include "shape.hpp" #include @@ -113,16 +116,16 @@ public: pos.z >= 0 && pos.z < Depth(); } static constexpr int ToIndex(const glm::vec3 &pos) { - return pos.x + pos.y * Width() + pos.z * Width() * Height(); + return int(pos.x) + int(pos.y) * Width() + int(pos.z) * Width() * Height(); } static constexpr bool InBounds(int idx) { return idx >= 0 && idx < Size(); } static glm::vec3 ToCoords(int idx) { return glm::vec3( - idx % Width(), - (idx / Width()) % Height(), - idx / (Width() * Height()) + 0.5f + idx % Width(), + 0.5f + (idx / Width()) % Height(), + 0.5f + idx / (Width() * Height()) ); } @@ -165,7 +168,7 @@ class World { public: World(); - void Generate(); + void Generate(const glm::tvec3 &from, const glm::tvec3 &to); bool Intersection( const Ray &, @@ -176,12 +179,18 @@ public: glm::vec3 *normal = nullptr); BlockTypeRegistry &BlockTypes() { return blockType; } - std::list &LoadedChunks() { return chunks; } + std::list &LoadedChunks() { return loaded; } + + FPSController &Controller() { return player; } Chunk &Next(const Chunk &, const glm::vec3 &dir); + void Update(int dt); + + void Render(DirectionalLighting &); + private: - Chunk &Generate(const glm::vec3 &); + void Generate(Chunk &); private: BlockTypeRegistry blockType; @@ -189,7 +198,13 @@ private: StairShape stairShape; CuboidShape slabShape; - std::list chunks; + SimplexNoise blockNoise; + SimplexNoise colorNoise; + + FPSController player; + + std::list loaded; + std::list to_generate; };