NasNas
An intuitive and beginner friendly 2D game framework for C++
ResourceLoader.hpp
1 
6 #pragma once
7 
8 #include <memory>
9 #include <set>
10 #include <string>
11 #include <unordered_map>
12 
13 #include <SFML/Graphics/Font.hpp>
14 #include <SFML/Graphics/Texture.hpp>
15 
16 namespace ns {
17 
18  class Dir {
19  public:
20  Dir(std::string name, Dir* parent);
21  ~Dir();
22  void load(const std::string& path, bool autoload);
23  auto in(const std::string& dir_name) -> Dir&;
24  auto getName() -> const std::string&;
25  auto getPath() -> std::string;
26  auto getTexture(const std::string& texture_name) -> sf::Texture&;
27  auto getFont(const std::string& font_name) -> sf::Font&;
28  void printTree(int indent=0);
29 
30  private:
31  static const std::set<std::string> texture_extensions;
32  static const std::set<std::string> fonts_extensions;
33 
34  Dir* m_parent;
35  std::string m_name;
36  std::unordered_map<std::string, std::unique_ptr<Dir>> m_dirs;
37  std::unordered_map<std::string, std::unique_ptr<sf::Texture>> m_textures;
38  std::unordered_map<std::string, std::unique_ptr<sf::Font>> m_fonts;
39  };
40 
41 }