NasNas
An intuitive and beginner friendly 2D game framework for C++
TileLayer.hpp
1 
6 #pragma once
7 
8 #include <cstdint>
9 #include <map>
10 #include <optional>
11 #include <vector>
12 #include <unordered_map>
13 
14 #include <SFML/Graphics/RenderTexture.hpp>
15 #include <SFML/Graphics/Sprite.hpp>
16 #include <SFML/Graphics/VertexArray.hpp>
17 #include <SFML/System/Clock.hpp>
18 #include <SFML/System/Vector2.hpp>
19 
20 #include <NasNas/core/graphics/Renderable.hpp>
21 #include <NasNas/tilemapping/Layer.hpp>
22 #include <NasNas/tilemapping/Tile.hpp>
23 #include <NasNas/tilemapping/Tileset.hpp>
24 
25 namespace ns::tm {
26  class TiledMap;
27 
28  class TileLayer : public Layer, public Renderable {
29 
30  struct AnimatedTileInfo {
31  unsigned int index;
32  sf::Clock clock;
33  std::vector<sf::Vector2u> positions;
34  };
35 
36  public:
37  TileLayer(const pugi::xml_node& xml_node, TiledMap* tiledmap);
38 
39  auto getTile(int x, int y) const -> const std::optional<Tile>&;
40  auto getTile(sf::Vector2i pos) const -> const std::optional<Tile>&;
41  void setTile(int x, int y, std::uint32_t gid);
42 
43  void update();
44 
45  private:
46  int m_width;
47  int m_height;
48 
49  std::vector<std::optional<Tile>> m_tiles;
50  std::map<std::uint32_t, AnimatedTileInfo> m_animated_tiles_pos;
51  std::unordered_map<const Tileset*, sf::VertexArray> m_vertices;
52  sf::RenderTexture m_render_texture;
53  sf::Sprite m_sprite;
54 
55  void addTile(int tile_index, std::uint32_t gid);
56  void updateTileTexCoo(const Tileset& tileset, unsigned tile_index, const std::vector<sf::Vector2f>& tex_coo);
57 
58  void render() override;
59  void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
60  };
61 
62 }