#pragma once #include "mesh.h" #include "simpleengine/gfx/texture.h" #include #include #include //#include namespace simpleengine::gfx { /** * @brief A Model is a group of Meshes read from the 3D model file. * * The engine uses assimp, so all formats that it supports can be found here: * https://github.com/assimp/assimp/blob/master/doc/Fileformats.md * */ class Model : public simpleengine::Transformable { protected: std::string model_directory; // May be needed public: std::vector meshes; Model(std::string file_path); void load_model(std::string path); void process_node(aiNode* node, const aiScene* scene); gfx::Mesh process_mesh(aiMesh* mesh, const aiScene* scene); std::vector load_material_textures(aiMaterial* material, aiTextureType type); }; }