2023-07-30 16:00:55 +02:00
|
|
|
#include "./image_loader_sdl_bmp.hpp"
|
|
|
|
|
|
|
|
#include <SDL3/SDL.h>
|
|
|
|
|
2023-08-02 19:24:51 +02:00
|
|
|
#include <iostream>
|
2024-07-31 18:10:52 +02:00
|
|
|
#include <cassert>
|
2023-08-02 19:24:51 +02:00
|
|
|
|
2023-07-30 16:00:55 +02:00
|
|
|
ImageLoaderSDLBMP::ImageInfo ImageLoaderSDLBMP::loadInfoFromMemory(const uint8_t* data, uint64_t data_size) {
|
|
|
|
ImageInfo res;
|
|
|
|
|
2024-03-28 17:13:44 +01:00
|
|
|
auto* ios = SDL_IOFromConstMem(data, data_size);
|
2023-07-30 16:00:55 +02:00
|
|
|
|
2024-03-28 17:13:44 +01:00
|
|
|
SDL_Surface* surf = SDL_LoadBMP_IO(ios, SDL_TRUE);
|
2023-07-30 16:00:55 +02:00
|
|
|
if (surf == nullptr) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2024-07-31 18:10:52 +02:00
|
|
|
assert(surf->w >= 0);
|
|
|
|
assert(surf->h >= 0);
|
|
|
|
|
2023-07-30 16:00:55 +02:00
|
|
|
res.width = surf->w;
|
|
|
|
res.height = surf->h;
|
2023-10-04 02:11:06 +02:00
|
|
|
res.file_ext = "bmp";
|
2023-07-30 16:00:55 +02:00
|
|
|
|
|
|
|
SDL_DestroySurface(surf);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageLoaderSDLBMP::ImageResult ImageLoaderSDLBMP::loadFromMemoryRGBA(const uint8_t* data, uint64_t data_size) {
|
|
|
|
|
2024-03-28 17:13:44 +01:00
|
|
|
auto* ios = SDL_IOFromConstMem(data, data_size);
|
2023-07-30 16:00:55 +02:00
|
|
|
|
2024-03-28 17:13:44 +01:00
|
|
|
SDL_Surface* surf = SDL_LoadBMP_IO(ios, SDL_TRUE);
|
2023-07-30 16:00:55 +02:00
|
|
|
if (surf == nullptr) {
|
2024-07-31 18:10:52 +02:00
|
|
|
return {};
|
2023-07-30 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
2024-07-18 12:22:15 +02:00
|
|
|
SDL_Surface* conv_surf = SDL_ConvertSurface(surf, SDL_PIXELFORMAT_RGBA32);
|
2023-07-30 16:00:55 +02:00
|
|
|
SDL_DestroySurface(surf);
|
|
|
|
if (conv_surf == nullptr) {
|
2024-07-31 18:10:52 +02:00
|
|
|
return {};
|
2023-07-30 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
2024-07-31 18:10:52 +02:00
|
|
|
assert(conv_surf->w >= 0);
|
|
|
|
assert(conv_surf->h >= 0);
|
2023-07-30 16:00:55 +02:00
|
|
|
|
2024-07-31 18:10:52 +02:00
|
|
|
if (conv_surf->w > 16*1024 || conv_surf->h > 10*1024) {
|
|
|
|
std::cerr << "IL_SDLBMP error: image too large\n";
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageResult res;
|
|
|
|
if (SDL_MUSTLOCK(conv_surf)) {
|
|
|
|
if (SDL_LockSurface(conv_surf) < 0) {
|
|
|
|
std::cerr << "IL_SDLBMP error: " << SDL_GetError() << "\n";
|
|
|
|
SDL_DestroySurface(conv_surf);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res.width = conv_surf->w;
|
|
|
|
res.height = conv_surf->h;
|
|
|
|
res.file_ext = "bmp";
|
2023-07-30 16:00:55 +02:00
|
|
|
|
|
|
|
auto& new_frame = res.frames.emplace_back();
|
|
|
|
new_frame.ms = 0;
|
2024-07-31 18:10:52 +02:00
|
|
|
new_frame.data = {(const uint8_t*)conv_surf->pixels, ((const uint8_t*)conv_surf->pixels) + (conv_surf->w*conv_surf->h*4)};
|
2023-07-30 16:00:55 +02:00
|
|
|
|
2024-07-31 18:10:52 +02:00
|
|
|
if (SDL_MUSTLOCK(conv_surf)) {
|
|
|
|
SDL_UnlockSurface(conv_surf);
|
|
|
|
}
|
2023-07-30 16:00:55 +02:00
|
|
|
SDL_DestroySurface(conv_surf);
|
|
|
|
|
2023-08-02 19:24:51 +02:00
|
|
|
std::cout << "IL_SDLBMP: loaded img " << res.width << "x" << res.height << "\n";
|
|
|
|
|
2023-07-30 16:00:55 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|