summaryrefslogblamecommitdiffstats
path: root/src/RendererSection.hpp
blob: fe5e96bf74329b3be4af4d48244535d5f0b0ee36 (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;
    size_t hash;
    Vector sectionPos;

    RendererSectionData(World *world, Vector sectionPosition);
};

class RendererSection {
	GLuint Vao, VboTextures, VboModels, VboColors;
	
	static GLuint VboVertices, VboUvs;
	static std::map<GLuint, int> refCounterVbo;
	static std::map<GLuint, int> refCounterVao;

	size_t hash;
    Vector sectionPos;
public:
    RendererSection(RendererSectionData data);
	RendererSection(const RendererSection &other);
	~RendererSection();

	void Render(RenderState &renderState);

    Vector GetPosition();

    size_t GetHash();

    size_t numOfFaces = 0;
};