YAGE  0.02
Yet Another Game Engine
spritebatch.hpp
1 /* ----------------------------------------------------------------------------
2  * spritebatch.hpp
3  *
4  * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
5  * See file LICENSE for more details
6  * ----------------------------------------------------------------------------
7  */
8 
9 #ifndef YAGE_SPRITE_BATCH_HPP
10 #define YAGE_SPRITE_BATCH_HPP
11 
12 #include "vertex.hpp"
13 
14 #include <GL/glew.h>
15 #include <glm/glm.hpp>
16 
17 #include <vector>
18 
19 namespace yage {
20 
21 class SpriteBatch;
22 
25 class Glyph {
26  // member variables
27 private:
28  GLuint texture_;
29  float depth_;
30  Vertex top_left_;
31  Vertex top_right_;
32  Vertex bottom_right_;
33  Vertex bottom_left_;
34 
35  // member functions
36 public:
37  Glyph(GLuint texture, float depth, const Vertex& top_left,
38  const Vertex& top_right, const Vertex& bottom_right,
39  const Vertex& bottom_left);
40 
41  GLuint texture() const { return texture_; }
42  float depth() const { return depth_; }
43  Vertex top_left() const { return top_left_; }
44  Vertex top_right() const { return top_right_; }
45  Vertex bottom_right() const { return bottom_right_; }
46  Vertex bottom_left() const { return bottom_left_; }
47 };
48 
49 class RenderBatch {
50  friend SpriteBatch;
51  // member variables
52 private:
53  GLsizei num_vertices_;
54  GLint offset_;
55  GLuint texture_;
56 
57  // member functions
58 public:
59  RenderBatch(GLint offset, GLsizei num_vertices, GLuint texture);
60 
66  GLint offset() const { return offset_; }
68  GLsizei num_vertices() const { return num_vertices_; }
69  GLuint texture() const { return texture_; }
71 };
72 
73 class SpriteBatch {
74  // member variables
75 public:
76  static const int NUM_VERTICES = 6;
77 
78 private:
79  GLuint vbo_ = 0;
80  GLuint vao_ = 0;
81  std::vector<Glyph> glyphs_;
82  std::vector<Glyph*> glyph_ptrs_;
83  std::vector<RenderBatch> render_batches_;
84 
85  // member functions
86 public:
87  SpriteBatch();
88  SpriteBatch(const SpriteBatch&) = delete;
89  SpriteBatch(SpriteBatch&&) = delete;
90  ~SpriteBatch();
91 
92  SpriteBatch& operator=(const SpriteBatch&) = delete;
93  SpriteBatch& operator=(SpriteBatch&&) = delete;
94 
95  // initialize vaos and vbos
96  void init();
97  void begin();
98  void end();
99  // adds a sprite to the sprite batch to be rendered later
100  void draw(const glm::vec4& destination_rect, const glm::vec4& uv_rect,
101  GLuint texture, const Color& color, float depth);
102  // render the batch
103  void render();
104 
105 private:
106  void createVertexArray();
107  void createRenderBatches();
108  void sortGlyphs();
109 };
110 
111 } // yage
112 
113 #endif
GLsizei num_vertices() const
num_vertices
Definition: spritebatch.hpp:68
Glyph with information of the texture.
Definition: spritebatch.hpp:25
Definition: camera2d.hpp:17
GLint offset() const
Offset.
Definition: spritebatch.hpp:66