Magic_Game/src/kiwano/render/GifImage.cpp

178 lines
4.2 KiB
C++
Raw Normal View History

2019-04-14 22:37:05 +08:00
// Copyright (c) 2016-2018 Kiwano - Nomango
//
// 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.
2020-01-17 16:55:47 +08:00
#include <kiwano/render/GifImage.h>
#include <kiwano/render/Renderer.h>
2019-11-13 14:33:15 +08:00
#include <kiwano/core/Logger.h>
2019-04-14 22:37:05 +08:00
namespace kiwano
{
GifImage::GifImage()
2019-07-31 16:22:33 +08:00
: frames_count_(0)
2019-04-14 22:37:05 +08:00
, width_in_pixels_(0)
, height_in_pixels_(0)
{
}
2019-08-18 17:49:13 +08:00
bool GifImage::Load(String const& file_path)
{
2020-01-17 11:24:24 +08:00
Renderer::Instance().CreateGifImage(*this, file_path);
2019-08-18 17:49:13 +08:00
if (IsValid())
{
if (FAILED(GetGlobalMetadata()))
{
SetDecoder(nullptr);
return false;
}
return true;
}
return false;
}
2019-04-14 22:37:05 +08:00
bool GifImage::Load(Resource const& res)
{
2020-01-17 11:24:24 +08:00
Renderer::Instance().CreateGifImage(*this, res);
2019-04-14 22:37:05 +08:00
2019-08-16 00:50:54 +08:00
if (IsValid())
2019-04-14 22:37:05 +08:00
{
2019-08-16 00:50:54 +08:00
if (FAILED(GetGlobalMetadata()))
2019-04-14 22:37:05 +08:00
{
2019-08-16 00:50:54 +08:00
SetDecoder(nullptr);
2019-04-14 22:37:05 +08:00
return false;
}
2019-08-16 00:50:54 +08:00
return true;
2019-04-14 22:37:05 +08:00
}
2019-08-16 00:50:54 +08:00
return false;
2019-04-14 22:37:05 +08:00
}
2019-08-16 00:50:54 +08:00
bool GifImage::IsValid() const
2019-04-14 22:37:05 +08:00
{
2019-08-16 00:50:54 +08:00
return decoder_ != nullptr;
2019-04-14 22:37:05 +08:00
}
2019-12-26 14:15:25 +08:00
GifImage::Frame GifImage::GetFrame(uint32_t index)
{
Frame frame;
2020-01-17 11:24:24 +08:00
Renderer::Instance().CreateGifImageFrame(frame, *this, index);
2019-12-26 14:15:25 +08:00
return frame;
}
2019-04-14 22:37:05 +08:00
HRESULT GifImage::GetGlobalMetadata()
{
2019-08-16 00:50:54 +08:00
HRESULT hr = decoder_ ? S_OK : E_FAIL;
if (SUCCEEDED(hr))
{
hr = decoder_->GetFrameCount(&frames_count_);
}
2019-04-14 22:37:05 +08:00
if (SUCCEEDED(hr))
{
2019-08-23 13:00:43 +08:00
ComPtr<IWICMetadataQueryReader> metadata_reader;
2019-07-31 16:22:33 +08:00
hr = decoder_->GetMetadataQueryReader(&metadata_reader);
2019-04-14 22:37:05 +08:00
if (SUCCEEDED(hr))
{
2019-10-12 11:26:41 +08:00
uint32_t width = 0;
uint32_t height = 0;
2019-04-14 22:37:05 +08:00
2019-08-23 13:00:43 +08:00
PROPVARIANT prop_val;
::PropVariantInit(&prop_val);
2019-04-14 22:37:05 +08:00
2019-08-23 13:00:43 +08:00
// <20><>ȡȫ<C8A1><C8AB> frame <20><>С
2019-04-14 22:37:05 +08:00
if (SUCCEEDED(hr))
{
2019-08-23 13:00:43 +08:00
// <20><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>
hr = metadata_reader->GetMetadataByName(L"/logscrdesc/Width", &prop_val);
2019-04-14 22:37:05 +08:00
2019-08-23 13:00:43 +08:00
if (SUCCEEDED(hr))
2019-04-14 22:37:05 +08:00
{
2019-08-23 13:00:43 +08:00
hr = (prop_val.vt == VT_UI2 ? S_OK : E_FAIL);
if (SUCCEEDED(hr))
2019-04-14 22:37:05 +08:00
{
2019-08-23 13:00:43 +08:00
width = prop_val.uiVal;
2019-04-14 22:37:05 +08:00
}
2019-08-23 13:00:43 +08:00
::PropVariantClear(&prop_val);
2019-04-14 22:37:05 +08:00
}
}
2019-08-16 00:50:54 +08:00
if (SUCCEEDED(hr))
{
2019-08-23 13:00:43 +08:00
// <20><>ȡ<EFBFBD>߶<EFBFBD>
hr = metadata_reader->GetMetadataByName(L"/logscrdesc/Height", &prop_val);
2019-04-14 22:37:05 +08:00
2019-08-23 13:00:43 +08:00
if (SUCCEEDED(hr))
{
hr = (prop_val.vt == VT_UI2 ? S_OK : E_FAIL);
if (SUCCEEDED(hr))
{
height = prop_val.uiVal;
}
::PropVariantClear(&prop_val);
}
2019-08-16 00:50:54 +08:00
}
2019-04-14 22:37:05 +08:00
2019-08-16 00:50:54 +08:00
if (SUCCEEDED(hr))
{
2019-08-23 13:00:43 +08:00
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݺ<EFBFBD><DDBA><EFBFBD>
hr = metadata_reader->GetMetadataByName(L"/logscrdesc/PixelAspectRatio", &prop_val);
2019-04-14 22:37:05 +08:00
2019-08-16 00:50:54 +08:00
if (SUCCEEDED(hr))
{
2019-08-23 13:00:43 +08:00
hr = (prop_val.vt == VT_UI1 ? S_OK : E_FAIL);
if (SUCCEEDED(hr))
{
if (prop_val.bVal != 0)
{
// <20><>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1<><31>4<EFBFBD><34><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 4<><34>1<EFBFBD><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ 1/64
2019-09-29 22:23:13 +08:00
float pixel_asp_ratio = (prop_val.bVal + 15.f) / 64.f;
2019-08-23 13:00:43 +08:00
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>س<EFBFBD><D8B3><EFBFBD><EFBFBD>ȼ<EFBFBD><C8BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>е<EFBFBD>ͼ<EFBFBD><CDBC><EFBFBD><EFBFBD><EFBFBD>Ⱥ͸߶ȣ<DFB6>ֻ<EFBFBD><D6BB>Сͼ<D0A1><CDBC>
if (pixel_asp_ratio > 1.f)
{
width_in_pixels_ = width;
2019-10-12 11:26:41 +08:00
height_in_pixels_ = static_cast<uint32_t>(height / pixel_asp_ratio);
2019-08-23 13:00:43 +08:00
}
else
{
2019-10-12 11:26:41 +08:00
width_in_pixels_ = static_cast<uint32_t>(width * pixel_asp_ratio);
2019-08-23 13:00:43 +08:00
height_in_pixels_ = height;
}
}
else
{
// ֵΪ 0, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ر<EFBFBD>Ϊ 1
width_in_pixels_ = width;
height_in_pixels_ = height;
}
}
::PropVariantClear(&prop_val);
2019-08-16 00:50:54 +08:00
}
}
::PropVariantClear(&prop_val);
}
2019-04-14 22:37:05 +08:00
}
return hr;
}
}