#pragma once #include #include #include #include #include #include #include "Entity.hpp" #include "Block.hpp" #include "Vector.hpp" #include "Section.hpp" class PacketChunkData; class PacketBlockChange; class PacketMultiBlockChange; class PacketUnloadChunk; class StreamInput; struct RaycastResult { bool isHit; Vector hitBlock; VectorF hitPos; }; struct Dimension { std::string name; bool skylight; }; void RegisterNewDimension(int dimensionId, Dimension newDimension); class World { int dimension = 0; std::map> sections; Section ParseSection(StreamInput *data, Vector position); std::list entities; std::vector sectionsList; void UpdateSectionsList(); public: World() = default; World(int dimensionId); void ParseChunkData(std::shared_ptr packet); void ParseChunkData(std::shared_ptr packet); void ParseChunkData(std::shared_ptr packet); void ParseChunkData(std::shared_ptr packet); bool isPlayerCollides(double X, double Y, double Z) const; std::vector GetSectionsList() const; const Section &GetSection(Vector sectionPos) const; RaycastResult Raycast(glm::vec3 position, glm::vec3 direction) const; void UpdatePhysics(float delta); Entity& GetEntity(unsigned int EntityId); Entity* GetEntityPtr(unsigned int EntityId); const Entity& GetEntity(unsigned int EntityId) const; std::vector GetEntitiesList() const; void AddEntity(Entity entity); void DeleteEntity(unsigned int EntityId); BlockId GetBlockId(Vector pos) const; void SetBlockId(Vector pos, BlockId block); void SetBlockLight(Vector pos, unsigned char light); void SetBlockSkyLight(Vector pos, unsigned char light); const Section *GetSectionPtr(Vector position) const; unsigned char GetBlockLight(Vector pos) const; unsigned char GetBlockLight(const Vector &blockPos, const Section *section, const Section *xp, const Section *xn, const Section *yp, const Section *yn, const Section *zp, const Section *zn) const; unsigned char GetBlockSkyLight(Vector pos) const; unsigned char GetBlockSkyLight(const Vector &blockPos, const Section *section, const Section *xp, const Section *xn, const Section *yp, const Section *yn, const Section *zp, const Section *zn) const; };