2019-08-13 14:44:37 +08:00
|
|
|
// Copyright (c) 2016-2019 Kiwano - Nomango
|
2019-03-31 01:37:06 +08:00
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
|
//
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
|
2019-08-13 14:44:37 +08:00
|
|
|
#include "ImageCache.h"
|
2019-03-31 01:37:06 +08:00
|
|
|
#include "../base/logs.h"
|
|
|
|
|
|
2019-04-11 14:40:54 +08:00
|
|
|
namespace kiwano
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
|
|
|
|
|
2019-08-13 14:44:37 +08:00
|
|
|
ImageCache::ImageCache()
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-13 14:44:37 +08:00
|
|
|
ImageCache::~ImageCache()
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-13 14:44:37 +08:00
|
|
|
ImagePtr ImageCache::AddImage(Resource const& res)
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
2019-08-13 14:44:37 +08:00
|
|
|
size_t hash_code = res.GetHashCode();
|
|
|
|
|
auto iter = image_cache_.find(hash_code);
|
|
|
|
|
if (iter != image_cache_.end())
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
2019-08-13 14:44:37 +08:00
|
|
|
return iter->second;
|
2019-03-31 01:37:06 +08:00
|
|
|
}
|
|
|
|
|
|
2019-08-13 14:44:37 +08:00
|
|
|
HRESULT hr = S_OK;
|
|
|
|
|
ComPtr<ID2D1Bitmap> bitmap;
|
|
|
|
|
|
|
|
|
|
if (res.IsFileType())
|
|
|
|
|
{
|
2019-08-13 15:00:43 +08:00
|
|
|
hr = Renderer::GetInstance()->GetD2DDeviceResources()->CreateBitmapFromFile(bitmap, res.GetFileName());
|
2019-08-13 14:44:37 +08:00
|
|
|
}
|
2019-03-31 01:37:06 +08:00
|
|
|
else
|
|
|
|
|
{
|
2019-08-13 15:00:43 +08:00
|
|
|
hr = Renderer::GetInstance()->GetD2DDeviceResources()->CreateBitmapFromResource(bitmap, res);
|
2019-03-31 01:37:06 +08:00
|
|
|
}
|
|
|
|
|
|
2019-08-13 14:44:37 +08:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
|
{
|
|
|
|
|
ImagePtr ptr = new Image(bitmap);
|
|
|
|
|
image_cache_.insert(std::make_pair(hash_code, ptr));
|
2019-08-13 21:16:38 +08:00
|
|
|
return ptr;
|
2019-08-13 14:44:37 +08:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
KGE_ERROR_LOG(L"Load image file failed with HRESULT of %08X", hr);
|
|
|
|
|
}
|
|
|
|
|
return nullptr;
|
2019-03-31 01:37:06 +08:00
|
|
|
}
|
|
|
|
|
|
2019-08-13 14:44:37 +08:00
|
|
|
void ImageCache::RemoveImage(Resource const& res)
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
2019-08-13 14:44:37 +08:00
|
|
|
size_t hash_code = res.GetHashCode();
|
|
|
|
|
auto iter = image_cache_.find(hash_code);
|
|
|
|
|
if (iter != image_cache_.end())
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
2019-08-13 14:44:37 +08:00
|
|
|
image_cache_.erase(iter);
|
2019-03-31 01:37:06 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-13 14:44:37 +08:00
|
|
|
void ImageCache::Clear()
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
2019-08-13 14:44:37 +08:00
|
|
|
image_cache_.clear();
|
2019-03-31 01:37:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|