/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* text_library.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maldavid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/10 11:59:57 by maldavid #+# #+# */ /* Updated: 2024/03/25 19:05:09 by maldavid ### ########.fr */ /* */ /* ************************************************************************** */ #include #include #include #include #include #include namespace mlx { std::shared_ptr TextLibrary::getTextData(TextID id) { MLX_PROFILE_FUNCTION(); if(!_cache.count(id)) core::error::report(e_kind::fatal_error, "Text Library : wrong text ID '%d'", id); return _cache[id]; } TextID TextLibrary::addTextToLibrary(std::shared_ptr text) { MLX_PROFILE_FUNCTION(); auto it = std::find_if(_cache.begin(), _cache.end(), [&](const std::pair>& v) { return v.second->getText() == text->getText() && v.second->getColor() == text->getColor(); }); if(it != _cache.end()) return it->first; _cache[_current_id] = text; _current_id++; return _current_id - 1; } void TextLibrary::removeTextFromLibrary(TextID id) { MLX_PROFILE_FUNCTION(); if(!_cache.count(id)) { core::error::report(e_kind::warning, "Text Library : trying to remove a text with an unkown or invalid ID '%d'", id); return; } _cache[id]->destroy(); _cache.erase(id); } void TextLibrary::clearLibrary() { MLX_PROFILE_FUNCTION(); for(auto& [id, text] : _cache) text->destroy(); _cache.clear(); } }