diff --git a/fggl/CMakeLists.txt b/fggl/CMakeLists.txt index 64fa463ae42b8301ca3b3440b6d43d408aa2e08d..22cbcbe0de97b4a0641dfe27b5139ac9eba399ad 100644 --- a/fggl/CMakeLists.txt +++ b/fggl/CMakeLists.txt @@ -35,6 +35,8 @@ endif () add_subdirectory(math) add_subdirectory(util) +add_subdirectory(assets) + target_sources(${PROJECT_NAME} PRIVATE app.cpp @@ -42,6 +44,7 @@ target_sources(${PROJECT_NAME} data/model.cpp data/procedural.cpp data/heightmap.cpp + data/module.cpp scenes/menu.cpp scenes/game.cpp diff --git a/fggl/assets/CMakeLists.txt b/fggl/assets/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f1eb0dc847b7f7917ca668d357680aa7a7b720a --- /dev/null +++ b/fggl/assets/CMakeLists.txt @@ -0,0 +1,3 @@ +target_sources(fggl PRIVATE + module.cpp +) \ No newline at end of file diff --git a/fggl/assets/module.cpp b/fggl/assets/module.cpp new file mode 100644 index 0000000000000000000000000000000000000000..73034f5ac43381bc2e3eef6f462f112f263c484e --- /dev/null +++ b/fggl/assets/module.cpp @@ -0,0 +1,36 @@ +/* + * This file is part of FGGL. + * + * FGGL is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * FGGL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with FGGL. + * If not, see <https://www.gnu.org/licenses/>. + */ + +// +// Created by webpigeon on 20/08/22. +// + +#include "fggl/assets/module.hpp" + +namespace fggl::assets { + + bool AssetFolders::factory(modules::ModuleService service, modules::Services& services) { + if ( service == Loader::service) { + auto storage = services.get<data::Storage>(); + services.create<Loader>(storage); + return true; + } + if (service == AssetManager::service) { + services.create<AssetManager>(); + return true; + } + return false; + } + +} // namespace fggl::assets \ No newline at end of file diff --git a/include/fggl/data/procedure.hpp b/fggl/data/module.cpp similarity index 62% rename from include/fggl/data/procedure.hpp rename to fggl/data/module.cpp index a0bc279440849d402d929926eee6e3659e6d4f9b..d621707af9f3669d5433ccbf05ed8de47d53b5b1 100644 --- a/include/fggl/data/procedure.hpp +++ b/fggl/data/module.cpp @@ -12,19 +12,22 @@ * If not, see <https://www.gnu.org/licenses/>. */ -#ifndef FGGL_DATA_PROCEDURE_HPP -#define FGGL_DATA_PROCEDURE_HPP +// +// Created by webpigeon on 20/08/22. +// -namespace fggl::data { - - class DataRegistry { +#include "fggl/data/module.hpp" - public: - DataRegistry(); - ~DataRegistry(); - - }; +namespace fggl::data { -} + bool LocalStorage::factory(modules::ModuleService service, modules::Services& data) { + if (service == SERVICE_STORAGE) { + // FIXME: no easy way to set the application name + auto pathConfig = fggl::platform::calc_engine_paths("fggl-demo"); + data.create<Storage>(pathConfig); + return true; + } + return false; + } -#endif +} // namespace fggl::data \ No newline at end of file diff --git a/include/fggl/assets/manager.hpp b/include/fggl/assets/manager.hpp index 9963ec48497f1ffb92aa0d0131511303db03396e..400a473df7fda0e6b039b94ede8628134e2efaae 100644 --- a/include/fggl/assets/manager.hpp +++ b/include/fggl/assets/manager.hpp @@ -56,7 +56,7 @@ namespace fggl::assets { m_registry.at(guid).refCount++; } - void release(const AssetGUID& guid) { + inline void release(const AssetGUID& guid) { m_registry.at(guid).refCount--; } diff --git a/include/fggl/assets/module.hpp b/include/fggl/assets/module.hpp index e3942f3a88f6c8ad391ce35de612fc7369eb0504..206c537764aa82d4b110939bb21b71730d262825 100644 --- a/include/fggl/assets/module.hpp +++ b/include/fggl/assets/module.hpp @@ -35,23 +35,9 @@ namespace fggl::assets { constexpr static const std::array<modules::ModuleService, 1> depends = { data::Storage::service }; - static bool factory(modules::ModuleService name, modules::Services& serviceManager); }; - bool AssetFolders::factory(modules::ModuleService service, modules::Services& services) { - if ( service == Loader::service) { - auto storage = services.get<data::Storage>(); - services.create<Loader>(storage); - return true; - } - if (service == AssetManager::service) { - services.create<AssetManager>(); - return true; - } - return false; - } - } // namespace fggl::assets #endif //FGGL_ASSETS_MODULE_HPP diff --git a/include/fggl/data/module.hpp b/include/fggl/data/module.hpp index 97986b455b6c87278ef2bde96893d9862a2965b2..b9f51c118babc273b36b3b178cf4557d34119018 100644 --- a/include/fggl/data/module.hpp +++ b/include/fggl/data/module.hpp @@ -25,26 +25,15 @@ namespace fggl::data { - struct LocalStorage { constexpr static const char* name = "fggl::data::Storage"; constexpr static const std::array<modules::ModuleService, 1> provides = { SERVICE_STORAGE }; constexpr static const std::array<modules::ModuleService, 0> depends = {}; - static bool factory(modules::ModuleService service, modules::Services& serviceManager); }; - bool LocalStorage::factory(modules::ModuleService service, modules::Services& data) { - if (service == SERVICE_STORAGE) { - // FIXME: no easy way to set the application name - auto pathConfig = fggl::platform::calc_engine_paths("fggl-demo"); - data.create<Storage>(pathConfig); - return true; - } - return false; - } } // namespace fggl::data