summaryrefslogblamecommitdiffstats
path: root/src/RendererSection.hpp
blob: 674598726cf0fcc2800afaac9baf6a2def9f5ab1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                     



                                    
                                  



                                                              
        
 




















                                                                                                                                                                                                                                                            
  
 
 
                       
               
                   




                 


                                 
                                          
 

                      

                                                           
       
                                              


                                             
                           
 

                                              
                         
 
                     
 


                                                                 
 
#pragma once

#include <GL/glew.h>
#include <glm/detail/type_mat.hpp>
#include <glm/vec2.hpp>
#include <glm/detail/type_mat4x4.hpp>
#include <glm/gtx/transform.hpp>
#include <easylogging++.h>

#include "AssetManager.hpp"
#include "Section.hpp"
#include "World.hpp"
#include "Vector.hpp"
#include "Renderer.hpp"

struct RendererSectionData {
    std::vector<glm::mat4> models;
    std::vector<glm::vec4> textures;
    std::vector<glm::vec3> colors;
    std::vector<glm::vec2> lights;
    size_t hash;
    Vector sectionPos;

    RendererSectionData(World *world, Vector sectionPosition);
private:

    void AddFacesByBlockModel(const std::vector<Vector> &sectionsList, World *world, Vector blockPos, const BlockModel &model, glm::mat4 transform, unsigned char light, unsigned char skyLight, const std::array<unsigned char, 16 * 16 * 16>& visibility);

    std::array<unsigned char, 16 * 16 * 16> GetBlockVisibilityData(World *world);

    AssetManager& am = AssetManager::Instance();

    std::vector<std::pair<BlockId, const BlockModel *>> idModels;
    const BlockModel* GetInternalBlockModel(const BlockId& id);

    std::array<BlockId, 4096> blockIdData;
    void SetBlockIdData(World *world);

    inline const BlockId& GetBlockId(const Vector& pos) {
        return blockIdData[pos.y * 256 + pos.z * 16 + pos.x];
    }

    inline const BlockId& GetBlockId(int x, int y, int z) {
        return blockIdData[y * 256 +z * 16 + x];
    }

    
};


class RendererSection {
    enum Vbos {
        MODELS = 0,
        TEXTURES,
        COLORS,
        LIGHTS,
        VBOCOUNT,
    };
    GLuint Vao = { 0 };
    GLuint Vbo[VBOCOUNT] = { 0 };
	
	static GLuint VboVertices, VboUvs;

	size_t hash;
    Vector sectionPos;

    RendererSection(const RendererSection &other) = delete;
public:
    RendererSection(RendererSectionData data);

    RendererSection(RendererSection &&other);

	~RendererSection();

	void Render(RenderState &renderState);

    Vector GetPosition();

    size_t GetHash();

    size_t numOfFaces;

    friend void swap(RendererSection &lhs, RendererSection &rhs);
};