Magic_Game/src/kiwano/render/GifImage.cpp

202 lines
5.8 KiB
C++
Raw Normal View History

2019-04-14 22:37:05 +08:00
// Copyright (c) 2016-2018 Kiwano - Nomango
2020-01-21 10:09:55 +08:00
//
2019-04-14 22:37:05 +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:
2020-01-21 10:09:55 +08:00
//
2019-04-14 22:37:05 +08:00
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
2020-01-21 10:09:55 +08:00
//
2019-04-14 22:37:05 +08:00
// 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.
2020-01-21 10:09:55 +08:00
#include <kiwano/core/Logger.h>
2020-01-17 16:55:47 +08:00
#include <kiwano/render/GifImage.h>
#include <kiwano/render/Renderer.h>
2019-04-14 22:37:05 +08:00
namespace kiwano
{
2020-02-06 16:54:47 +08:00
GifImagePtr GifImage::Create(String const& file_path)
{
GifImagePtr ptr = new (std::nothrow) GifImage;
if (ptr)
{
if (!ptr->Load(file_path))
return nullptr;
}
return ptr;
}
GifImagePtr GifImage::Create(Resource const& res)
{
GifImagePtr ptr = new (std::nothrow) GifImage;
if (ptr)
{
if (!ptr->Load(res))
return nullptr;
}
return ptr;
}
2020-01-21 10:09:55 +08:00
GifImage::GifImage()
: frames_count_(0)
, width_in_pixels_(0)
, height_in_pixels_(0)
{
}
bool GifImage::Load(String const& file_path)
{
2020-02-08 09:59:17 +08:00
Renderer::GetInstance().CreateGifImage(*this, file_path);
2020-01-21 10:09:55 +08:00
if (IsValid())
{
2020-02-07 20:50:27 +08:00
if (GetGlobalMetadata())
return true;
SetDecoder(nullptr);
2020-01-21 10:09:55 +08:00
}
return false;
}
bool GifImage::Load(Resource const& res)
{
2020-02-08 09:59:17 +08:00
Renderer::GetInstance().CreateGifImage(*this, res);
2020-01-21 10:09:55 +08:00
if (IsValid())
{
2020-02-07 20:50:27 +08:00
if (GetGlobalMetadata())
return true;
SetDecoder(nullptr);
2020-01-21 10:09:55 +08:00
}
return false;
}
2019-04-14 22:37:05 +08:00
2020-01-21 10:09:55 +08:00
GifImage::Frame GifImage::GetFrame(uint32_t index)
{
Frame frame;
2020-02-08 09:59:17 +08:00
Renderer::GetInstance().CreateGifImageFrame(frame, *this, index);
2020-01-21 10:09:55 +08:00
return frame;
2019-04-14 22:37:05 +08:00
}
2020-01-21 10:09:55 +08:00
2020-02-14 22:59:29 +08:00
#if KGE_RENDER_ENGINE == KGE_RENDER_ENGINE_DIRECTX
2020-02-07 20:50:27 +08:00
bool GifImage::GetGlobalMetadata()
2020-01-21 10:09:55 +08:00
{
HRESULT hr = decoder_ ? S_OK : E_FAIL;
if (SUCCEEDED(hr))
{
hr = decoder_->GetFrameCount(&frames_count_);
}
if (SUCCEEDED(hr))
{
ComPtr<IWICMetadataQueryReader> metadata_reader;
hr = decoder_->GetMetadataQueryReader(&metadata_reader);
if (SUCCEEDED(hr))
{
uint32_t width = 0;
uint32_t height = 0;
PROPVARIANT prop_val;
::PropVariantInit(&prop_val);
2020-02-10 17:32:04 +08:00
// 获取全局 frame 大小
2020-01-21 10:09:55 +08:00
if (SUCCEEDED(hr))
{
2020-02-10 17:32:04 +08:00
// 获取宽度
2020-01-21 10:09:55 +08:00
hr = metadata_reader->GetMetadataByName(L"/logscrdesc/Width", &prop_val);
if (SUCCEEDED(hr))
{
hr = (prop_val.vt == VT_UI2 ? S_OK : E_FAIL);
if (SUCCEEDED(hr))
{
width = prop_val.uiVal;
}
::PropVariantClear(&prop_val);
}
}
if (SUCCEEDED(hr))
{
2020-02-10 17:32:04 +08:00
// 获取高度
2020-01-21 10:09:55 +08:00
hr = metadata_reader->GetMetadataByName(L"/logscrdesc/Height", &prop_val);
if (SUCCEEDED(hr))
{
hr = (prop_val.vt == VT_UI2 ? S_OK : E_FAIL);
if (SUCCEEDED(hr))
{
height = prop_val.uiVal;
}
::PropVariantClear(&prop_val);
}
}
if (SUCCEEDED(hr))
{
2020-02-10 17:32:04 +08:00
// 获得像素纵横比
2020-01-21 10:09:55 +08:00
hr = metadata_reader->GetMetadataByName(L"/logscrdesc/PixelAspectRatio", &prop_val);
if (SUCCEEDED(hr))
{
hr = (prop_val.vt == VT_UI1 ? S_OK : E_FAIL);
if (SUCCEEDED(hr))
{
if (prop_val.bVal != 0)
{
2020-02-10 17:32:04 +08:00
// 需要计算比率
// 最高像素 14最宽像素 41增量为 1/64
2020-01-21 10:09:55 +08:00
float pixel_asp_ratio = (prop_val.bVal + 15.f) / 64.f;
2020-02-10 17:32:04 +08:00
// 根据像素长宽比计算像素中的图像宽度和高度,只缩小图像
2020-01-21 10:09:55 +08:00
if (pixel_asp_ratio > 1.f)
{
width_in_pixels_ = width;
height_in_pixels_ = static_cast<uint32_t>(height / pixel_asp_ratio);
}
else
{
width_in_pixels_ = static_cast<uint32_t>(width * pixel_asp_ratio);
height_in_pixels_ = height;
}
}
else
{
2020-02-10 17:32:04 +08:00
// 值为 0, 所以像素比为 1
2020-01-21 10:09:55 +08:00
width_in_pixels_ = width;
height_in_pixels_ = height;
}
}
::PropVariantClear(&prop_val);
}
}
::PropVariantClear(&prop_val);
}
}
2020-02-07 20:50:27 +08:00
return SUCCEEDED(hr);
2020-01-21 10:09:55 +08:00
}
2020-02-14 22:59:29 +08:00
#else
bool GifImage::GetGlobalMetadata()
{
return false; // not supported
}
2020-02-07 20:50:27 +08:00
#endif
2020-01-21 10:09:55 +08:00
} // namespace kiwano