let's try this

This commit is contained in:
2025-12-13 23:06:14 -05:00
parent efa9533a52
commit 225a584a21
5 changed files with 34 additions and 14 deletions
+20 -6
View File
@@ -3,8 +3,13 @@
#include <SDL3/SDL_filesystem.h>
#include <SDL3/SDL_properties.h>
#include <SDL3/SDL_stdinc.h>
#include <cstdio>
#include <utility>
#include "filesystem_.h"
namespace filesystem = anm2ed::util::filesystem;
namespace anm2ed::resource
{
MIX_Mixer* Audio::mixer_get()
@@ -17,16 +22,25 @@ namespace anm2ed::resource
{
if (path.empty()) return;
size_t fileSize = 0;
void* fileData = SDL_LoadFile(path.string().c_str(), &fileSize);
if (!fileData || fileSize == 0)
filesystem::File file(path, "rb");
if (!file) return;
if (std::fseek(file.get(), 0, SEEK_END) != 0) return;
auto size = std::ftell(file.get());
if (size <= 0)
{
if (fileData) SDL_free(fileData);
return;
}
std::rewind(file.get());
data.assign(static_cast<unsigned char*>(fileData), static_cast<unsigned char*>(fileData) + fileSize);
SDL_free(fileData);
data.resize(static_cast<std::size_t>(size));
auto read = std::fread(data.data(), 1, data.size(), file.get());
if (read == 0)
{
data.clear();
return;
}
data.resize(read);
SDL_IOStream* io = SDL_IOFromConstMem(data.data(), data.size());
if (!io)