diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-09-16 17:34:05 +0200 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-09-16 17:34:05 +0200 |
commit | 51f7699966ab856c873648ee25621b80421f8c8f (patch) | |
tree | 5806253e5175994c3b6db08ba74ea12bd892c821 /resource-manager/resource_fabricator.cpp | |
parent | 666a77004bbd8909b24355ef316b099f0683570f (diff) |
loading images work through resource manager, however needs return fixing. cause right now static cast needs to be done outside
Diffstat (limited to 'resource-manager/resource_fabricator.cpp')
-rw-r--r-- | resource-manager/resource_fabricator.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/resource-manager/resource_fabricator.cpp b/resource-manager/resource_fabricator.cpp new file mode 100644 index 0000000..03e3f74 --- /dev/null +++ b/resource-manager/resource_fabricator.cpp @@ -0,0 +1,30 @@ + + +#include <filesystem> +#include <string> + +#include "resource_fabricator.h" +#include "resource.h" +#include "Image_asset.h" +#include "Audio_asset.h" + +#include <SDL2/SDL_image.h> + + +Resource* ResourceFactory::create_resource(const Constants::FILE_PATH &file_path){ + + std::string extension = std::filesystem::path(file_path).extension(); + + + + if( extension == Constants::PNG_EXT ) { + Image* img = new Image; + img->surface = IMG_Load(file_path.c_str()); + return img; + } + else if ( extension == Constants::OGG_EXT ){ + return new Audio; + } + + return nullptr; +} |