23 lines
920 B
C++
23 lines
920 B
C++
#pragma once
|
|
|
|
#include <cstdint> // Para uint8_t
|
|
#include <string> // Para string
|
|
#include <vector> // Para vector
|
|
|
|
// Helper functions para integrar ResourceLoader con el sistema existente
|
|
namespace ResourceHelper {
|
|
// Inicializa ResourceLoader (llamar al inicio del programa)
|
|
auto initializeResourceSystem(const std::string& pack_file = "resources.pack", bool enable_fallback = true) -> bool;
|
|
|
|
// Cierra ResourceLoader
|
|
void shutdownResourceSystem();
|
|
|
|
// Carga un archivo usando ResourceLoader o fallback a filesystem
|
|
auto loadFile(const std::string& filepath) -> std::vector<uint8_t>;
|
|
|
|
// Verifica si un archivo debería cargarse del pack vs filesystem
|
|
auto shouldUseResourcePack(const std::string& filepath) -> bool;
|
|
|
|
// Convierte ruta Asset a ruta relativa para ResourceLoader
|
|
auto getPackPath(const std::string& asset_path) -> std::string;
|
|
} // namespace ResourceHelper
|