aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic-extension/singletons/AssetManager.cpp
diff options
context:
space:
mode:
author hop311 <hop3114@gmail.com>2024-01-08 23:20:46 +0100
committer hop311 <hop3114@gmail.com>2024-01-09 20:07:11 +0100
commit41d35fbecc9061720625cf2d6ef2b84a3a85272a (patch)
treea7b0df56cac7a87e039e1d489ea66e64b67ccf9c /extension/src/openvic-extension/singletons/AssetManager.cpp
parentcf34ce1d7459ee91fc75e89835a8e7171fac636b (diff)
Updated SIM submodule and switched to ordered_map
Diffstat (limited to 'extension/src/openvic-extension/singletons/AssetManager.cpp')
-rw-r--r--extension/src/openvic-extension/singletons/AssetManager.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/extension/src/openvic-extension/singletons/AssetManager.cpp b/extension/src/openvic-extension/singletons/AssetManager.cpp
index a81a0a2..546dc9d 100644
--- a/extension/src/openvic-extension/singletons/AssetManager.cpp
+++ b/extension/src/openvic-extension/singletons/AssetManager.cpp
@@ -45,34 +45,34 @@ Ref<Image> AssetManager::_load_image(StringName const& path) {
return image;
}
-AssetManager::image_asset_map_t::iterator AssetManager::_get_image_asset(StringName const& path) {
- const image_asset_map_t::iterator it = image_assets.find(path);
+AssetManager::image_asset_t* AssetManager::_get_image_asset(StringName const& path) {
+ image_asset_map_t::iterator it = image_assets.find(path);
if (it != image_assets.end()) {
- return it;
+ return &it.value();
}
const Ref<Image> image = _load_image(path);
- ERR_FAIL_NULL_V(image, image_assets.end());
- return image_assets.emplace(std::move(path), AssetManager::image_asset_t { image, nullptr }).first;
+ ERR_FAIL_NULL_V(image, nullptr);
+ return &image_assets.emplace(std::move(path), AssetManager::image_asset_t { image, nullptr }).first.value();
}
Ref<Image> AssetManager::get_image(StringName const& path, bool cache) {
if (cache) {
- const image_asset_map_t::const_iterator it = _get_image_asset(path);
- ERR_FAIL_COND_V(it == image_assets.end(), nullptr);
- return it->second.image;
+ image_asset_t const* asset = _get_image_asset(path);
+ ERR_FAIL_NULL_V(asset, nullptr);
+ return asset->image;
} else {
return _load_image(path);
}
}
Ref<ImageTexture> AssetManager::get_texture(StringName const& path) {
- const image_asset_map_t::iterator it = _get_image_asset(path);
- ERR_FAIL_COND_V(it == image_assets.end(), nullptr);
- if (it->second.texture.is_null()) {
- it->second.texture = ImageTexture::create_from_image(it->second.image);
- ERR_FAIL_NULL_V_MSG(it->second.texture, nullptr, vformat("Failed to turn image into texture: %s", path));
+ image_asset_t* asset = _get_image_asset(path);
+ ERR_FAIL_NULL_V(asset, nullptr);
+ if (asset->texture.is_null()) {
+ asset->texture = ImageTexture::create_from_image(asset->image);
+ ERR_FAIL_NULL_V_MSG(asset->texture, nullptr, vformat("Failed to turn image into texture: %s", path));
}
- return it->second.texture;
+ return asset->texture;
}
Ref<Font> AssetManager::get_font(StringName const& name) {