Files
OpenVulkano/openVulkanoCpp/Host/ExeAppendedZipResourceLoader.cpp
2024-12-21 17:19:01 +02:00

27 lines
755 B
C++

/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include "ExeAppendedZipResourceLoader.hpp"
#include "Base/Logger.hpp"
#include "IO/Archive/ArchiveReader.hpp"
#include "Base/Utils.hpp"
#include <filesystem>
#include <fstream>
namespace OpenVulkano
{
Array<char> ExeAppendedZipResourceLoader::GetResource(const std::string& resourceName)
{
Array<char> zipData = Utils::ReadFile(GetCurrentExecutablePath());
ArchiveReader reader(zipData.Data(), zipData.Size(), nullptr, ArchiveType::ZIP);
if (auto data = reader.GetFile(resourceName))
{
return data->second;
}
return {};
}
}