29 lines
691 B
C++
29 lines
691 B
C++
// resource_helper.hpp - Funcions d'ajuda per gestió de recursos
|
|
// © 2025 Port a C++20 amb SDL3
|
|
// API simplificada i normalització de rutes
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Resource {
|
|
namespace Helper {
|
|
|
|
// Inicialització del sistema
|
|
bool initializeResourceSystem(const std::string& pack_file, bool fallback);
|
|
|
|
// Càrrega de fitxers
|
|
std::vector<uint8_t> loadFile(const std::string& filepath);
|
|
bool fileExists(const std::string& filepath);
|
|
|
|
// Normalització de rutes
|
|
std::string getPackPath(const std::string& asset_path);
|
|
std::string normalizePath(const std::string& path);
|
|
|
|
// Estat
|
|
bool isPackLoaded();
|
|
|
|
} // namespace Helper
|
|
} // namespace Resource
|