#include "./message_image_loader.hpp" #include "./image_loader_sdl_bmp.hpp" #include "./image_loader_stb.hpp" #include "./image_loader_webp.hpp" #include "./media_meta_info_loader.hpp" #include #include #include #include #include MessageImageLoader::MessageImageLoader(void) { _image_loaders.push_back(std::make_unique()); _image_loaders.push_back(std::make_unique()); _image_loaders.push_back(std::make_unique()); } std::optional MessageImageLoader::load(TextureUploaderI& tu, Message3Handle m) { if (!static_cast(m)) { return std::nullopt; } if (m.all_of()) { return std::nullopt; } if (m.all_of()) { const auto& file_list = m.get().file_list; assert(!file_list.empty()); const auto& file_path = file_list.front(); std::ifstream file(file_path, std::ios::binary); if (file.is_open()) { std::vector tmp_buffer; while (file.good()) { auto ch = file.get(); if (ch == EOF) { break; } else { tmp_buffer.push_back(ch); } } // try all loaders after another for (auto& il : _image_loaders) { auto res = il->loadFromMemoryRGBA(tmp_buffer.data(), tmp_buffer.size()); if (res.frames.empty() || res.height == 0 || res.width == 0) { continue; } TextureEntry new_entry; new_entry.timestamp_last_rendered = getNowMS(); new_entry.current_texture = 0; for (const auto& [ms, data] : res.frames) { const auto n_t = tu.uploadRGBA(data.data(), res.width, res.height); new_entry.textures.push_back(n_t); new_entry.frame_duration.push_back(ms); } new_entry.width = res.width; new_entry.height = res.height; std::cout << "MIL: loaded image file " << file_path << "\n"; return new_entry; } } } std::cerr << "MIL: failed to load message\n"; return std::nullopt; }