aboutsummaryrefslogtreecommitdiffstats
path: root/include/render.hpp
blob: a21fcdd9bb891ba7b4cb6eb436104adf67dccf65 (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#ifndef RENDER_HPP_
#define RENDER_HPP_

#include <vector>

#include <GL/glew.h>
#include <SDL2/SDL_opengl.h>

#include <shader_utils.hpp>
#include <vector2.hpp>

/**
 * @class Shader
 * @brief Handles a texture shader, allowing it's use in the program.
 */
class Shader {
public:
    GLuint shader;
    GLint  coord;
    GLint  tex;
    std::vector<GLint> uniform;

    void create(const char *vert, const char *frag) {
        shader = create_program(vert, frag);
     	coord  = get_attrib(shader, "coord2d");
     	tex    = get_attrib(shader, "tex_coord");
    }

    inline void addUniform(const char *name) {
         uniform.push_back(get_uniform(shader, name));
    }

    inline void use(void) {
        glUseProgram(shader);
    }

    inline void unuse(void) {
        glUseProgram(0);
    }

    inline void enable(void) {
        glEnableVertexAttribArray(coord);
        glEnableVertexAttribArray(tex);
    }

    inline void disable(void) {
        glDisableVertexAttribArray(coord);
        glDisableVertexAttribArray(tex);
    }

    ~Shader(void) {
        uniform.clear();
    }
};

typedef enum {
    WU_texture = 0,
    WU_ortho,
    WU_tex_color,
    WU_transform,
    WU_ambient,
    WU_light_impact,
    WU_light,
    WU_light_color,
    WU_light_size
} WorldUniform;

namespace Render {
    extern Shader worldShader;
    extern Shader textShader;

    void useShader(Shader *s);

    void drawRect(vec2 ll, vec2 ur, float z);

	void init(void);
	void render(const int& fps);
}

#endif // RENDER_HPP_