X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FAssets.hpp;h=ef63518ae270834ebc8d7862ad20471543eacb68;hb=d2f4c8720ae2326fac4203fa4984d835e875b355;hp=e6c209effdd7745b6c0d9ad6e798b47a131f1e9f;hpb=ede25c0a2f59e21521d1cd962e6ea9d78169ca12;p=blank.git diff --git a/src/app/Assets.hpp b/src/app/Assets.hpp index e6c209e..ef63518 100644 --- a/src/app/Assets.hpp +++ b/src/app/Assets.hpp @@ -10,19 +10,36 @@ namespace blank { class ArrayTexture; class BlockTypeRegistry; +class CubeMap; +class ModelRegistry; +class ResourceIndex; +class ShapeRegistry; class Sound; class Texture; -class Assets { +class AssetLoader { public: - explicit Assets(const std::string &base); - - void LoadBlockTypes(const std::string &set_name, BlockTypeRegistry &) const; + explicit AssetLoader(const std::string &base); + + void LoadBlockTypes( + const std::string &set_name, + BlockTypeRegistry &, + ResourceIndex &snd, + ResourceIndex &tex, + const ShapeRegistry &) const; + CubeMap LoadCubeMap(const std::string &name) const; Font LoadFont(const std::string &name, int size) const; + void LoadModels( + const std::string &set_name, + ModelRegistry &, + ResourceIndex &, + const ShapeRegistry &) const; + void LoadShapes(const std::string &set_name, ShapeRegistry &) const; Sound LoadSound(const std::string &name) const; Texture LoadTexture(const std::string &name) const; void LoadTexture(const std::string &name, ArrayTexture &, int layer) const; + void LoadTextures(const ResourceIndex &, ArrayTexture &) const; private: std::string fonts; @@ -30,11 +47,15 @@ private: std::string textures; std::string data; -public: - // common assets shared by may states +}; + +struct Assets { + Font large_ui_font; Font small_ui_font; + Assets(const AssetLoader &); + }; }