blob: fe5e96bf74329b3be4af4d48244535d5f0b0ee36 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#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;
};
|