NasNas
An intuitive and beginner friendly 2D game framework for C++
ResourceManager.hpp
1 
6 #pragma once
7 
8 #include <string>
9 #include <utility>
10 
11 #include <SFML/Graphics/Font.hpp>
12 #include <SFML/Graphics/Texture.hpp>
13 
14 #include <NasNas/reslib/ResourceLoader.hpp>
15 
16 namespace ns {
17 
19  public:
20  static auto load(const std::string& assets_directory_name, bool autoload=true) -> bool;
21  static void dispose();
22  static auto in(const std::string& dir_name) -> Dir&;
23 
24  static auto getName() -> const std::string& ;
25  static auto getTexture(const std::string& texture_path) -> sf::Texture&;
26  static auto getFont(const std::string& font_path) -> sf::Font&;
27  static void printTree();
28 
29  private:
30  static Dir* m_data;
31  static bool m_ready;
32  static std::string m_root_dir_name;
33 
35  ~ResourceManager();
36  static void checkReady();
37  static auto resolvePath(const std::string& p) -> std::pair<Dir*, std::string>;
38  };
39 
40  typedef ResourceManager Res;
41 }