mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 17:50:04 +00:00
139 lines
3.6 KiB
C++
139 lines
3.6 KiB
C++
#include <scwx/qt/manager/resource_manager.hpp>
|
|
#include <scwx/qt/manager/font_manager.hpp>
|
|
#include <scwx/qt/config/county_database.hpp>
|
|
#include <scwx/qt/model/imgui_context_model.hpp>
|
|
#include <scwx/qt/util/font.hpp>
|
|
#include <scwx/qt/util/texture_atlas.hpp>
|
|
#include <scwx/util/logger.hpp>
|
|
|
|
#include <execution>
|
|
#include <mutex>
|
|
|
|
#include <QFontDatabase>
|
|
#include <imgui.h>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace manager
|
|
{
|
|
namespace ResourceManager
|
|
{
|
|
|
|
static const std::string logPrefix_ = "scwx::qt::manager::resource_manager";
|
|
static const auto logger_ = scwx::util::Logger::Create(logPrefix_);
|
|
|
|
static void LoadFonts();
|
|
static void LoadTextures();
|
|
|
|
static const std::vector<std::pair<types::Font, std::string>> fontNames_ {
|
|
{types::Font::din1451alt, ":/res/fonts/din1451alt.ttf"},
|
|
{types::Font::din1451alt_g, ":/res/fonts/din1451alt_g.ttf"},
|
|
{types::Font::Inconsolata_Regular, ":/res/fonts/Inconsolata-Regular.ttf"}};
|
|
|
|
static std::unordered_map<types::Font, int> fontIds_ {};
|
|
static std::unordered_map<types::Font, std::shared_ptr<util::Font>> fonts_ {};
|
|
|
|
void Initialize()
|
|
{
|
|
config::CountyDatabase::Initialize();
|
|
|
|
LoadFonts();
|
|
LoadTextures();
|
|
}
|
|
|
|
void Shutdown() {}
|
|
|
|
int FontId(types::Font font)
|
|
{
|
|
auto it = fontIds_.find(font);
|
|
if (it != fontIds_.cend())
|
|
{
|
|
return it->second;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
std::shared_ptr<util::Font> Font(types::Font font)
|
|
{
|
|
auto it = fonts_.find(font);
|
|
if (it != fonts_.cend())
|
|
{
|
|
return it->second;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
std::shared_ptr<boost::gil::rgba8_image_t>
|
|
LoadImageResource(const std::string& urlString)
|
|
{
|
|
util::TextureAtlas& textureAtlas = util::TextureAtlas::Instance();
|
|
return textureAtlas.CacheTexture(urlString, urlString);
|
|
}
|
|
|
|
std::vector<std::shared_ptr<boost::gil::rgba8_image_t>>
|
|
LoadImageResources(const std::vector<std::string>& urlStrings)
|
|
{
|
|
std::mutex m {};
|
|
std::vector<std::shared_ptr<boost::gil::rgba8_image_t>> images {};
|
|
|
|
std::for_each(std::execution::par_unseq,
|
|
urlStrings.begin(),
|
|
urlStrings.end(),
|
|
[&](auto& urlString)
|
|
{
|
|
auto image = LoadImageResource(urlString);
|
|
|
|
if (image != nullptr)
|
|
{
|
|
std::unique_lock lock {m};
|
|
images.emplace_back(std::move(image));
|
|
}
|
|
});
|
|
|
|
if (!images.empty())
|
|
{
|
|
util::TextureAtlas& textureAtlas = util::TextureAtlas::Instance();
|
|
textureAtlas.BuildAtlas(2048, 2048);
|
|
}
|
|
|
|
return images;
|
|
}
|
|
|
|
static void LoadFonts()
|
|
{
|
|
auto& fontManager = FontManager::Instance();
|
|
|
|
for (auto& fontName : fontNames_)
|
|
{
|
|
int fontId = QFontDatabase::addApplicationFont(
|
|
QString::fromStdString(fontName.second));
|
|
fontIds_.emplace(fontName.first, fontId);
|
|
|
|
fontManager.LoadApplicationFont(fontName.second);
|
|
|
|
auto font = util::Font::Create(fontName.second);
|
|
fonts_.emplace(fontName.first, font);
|
|
}
|
|
|
|
ImFontAtlas* fontAtlas = model::ImGuiContextModel::Instance().font_atlas();
|
|
fontAtlas->AddFontDefault();
|
|
|
|
fontManager.InitializeFonts();
|
|
}
|
|
|
|
static void LoadTextures()
|
|
{
|
|
util::TextureAtlas& textureAtlas = util::TextureAtlas::Instance();
|
|
textureAtlas.RegisterTexture("lines/default-1x7",
|
|
":/res/textures/lines/default-1x7.png");
|
|
textureAtlas.RegisterTexture("lines/test-pattern",
|
|
":/res/textures/lines/test-pattern.png");
|
|
textureAtlas.BuildAtlas(2048, 2048);
|
|
}
|
|
|
|
} // namespace ResourceManager
|
|
} // namespace manager
|
|
} // namespace qt
|
|
} // namespace scwx
|