Magic_Game/src/kiwano/render/GifImage.cpp

208 lines
5.7 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-05-24 11:26:21 +08:00
#include <kiwano/utils/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
2020-02-19 12:09:50 +08:00
GifImagePtr GifImage::Create(const String& file_path)
2020-02-06 16:54:47 +08:00
{
2020-02-20 22:27:09 +08:00
GifImagePtr ptr = memory::New<GifImage>();
2020-02-06 16:54:47 +08:00
if (ptr)
{
if (!ptr->Load(file_path))
return nullptr;
}
return ptr;
}
2020-02-19 12:09:50 +08:00
GifImagePtr GifImage::Create(const Resource& res)
2020-02-06 16:54:47 +08:00
{
2020-02-20 22:27:09 +08:00
GifImagePtr ptr = memory::New<GifImage>();
2020-02-06 16:54:47 +08:00
if (ptr)
{
if (!ptr->Load(res))
return nullptr;
}
return ptr;
}
2020-01-21 10:09:55 +08:00
GifImage::GifImage()
: frames_count_(0)
{
}
2020-02-19 12:09:50 +08:00
bool GifImage::Load(const String& file_path)
2020-01-21 10:09:55 +08:00
{
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;
2020-02-16 20:14:01 +08:00
// Clear data
ResetNativePointer();
2020-01-21 10:09:55 +08:00
}
return false;
}
2020-02-19 12:09:50 +08:00
bool GifImage::Load(const Resource& res)
2020-01-21 10:09:55 +08:00
{
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;
2020-02-16 20:14:01 +08:00
// Clear data
ResetNativePointer();
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-16 20:14:01 +08:00
} // namespace kiwano
2020-02-14 22:59:29 +08:00
#if KGE_RENDER_ENGINE == KGE_RENDER_ENGINE_DIRECTX
2020-02-16 20:14:01 +08:00
#include <kiwano/render/DirectX/NativePtr.h>
namespace kiwano
{
2020-02-07 20:50:27 +08:00
bool GifImage::GetGlobalMetadata()
2020-01-21 10:09:55 +08:00
{
2020-02-16 20:14:01 +08:00
ComPtr<IWICBitmapDecoder> decoder = NativePtr::Get<IWICBitmapDecoder>(this);
HRESULT hr = decoder ? S_OK : E_FAIL;
2020-01-21 10:09:55 +08:00
if (SUCCEEDED(hr))
{
2020-02-16 20:14:01 +08:00
hr = decoder->GetFrameCount(&frames_count_);
2020-01-21 10:09:55 +08:00
}
if (SUCCEEDED(hr))
{
ComPtr<IWICMetadataQueryReader> metadata_reader;
2020-02-16 20:14:01 +08:00
hr = decoder->GetMetadataQueryReader(&metadata_reader);
2020-01-21 10:09:55 +08:00
if (SUCCEEDED(hr))
{
uint32_t width = 0;
uint32_t height = 0;
PROPVARIANT prop_val;
::PropVariantInit(&prop_val);
// <20><>ȡȫ<C8A1><C8AB> frame <20><>С
2020-01-21 10:09:55 +08:00
if (SUCCEEDED(hr))
{
// <20><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>
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))
{
// <20><>ȡ<EFBFBD>߶<EFBFBD>
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))
{
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݺ<EFBFBD><DDBA><EFBFBD>
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)
{
// <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
2020-01-21 10:09:55 +08:00
float pixel_asp_ratio = (prop_val.bVal + 15.f) / 64.f;
// <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>
2020-01-21 10:09:55 +08:00
if (pixel_asp_ratio > 1.f)
{
2020-02-16 20:14:01 +08:00
size_in_pixels_ = { width, static_cast<uint32_t>(height / pixel_asp_ratio) };
2020-01-21 10:09:55 +08:00
}
else
{
2020-02-16 20:14:01 +08:00
size_in_pixels_ = { static_cast<uint32_t>(width * pixel_asp_ratio), height };
2020-01-21 10:09:55 +08:00
}
}
else
{
// ֵΪ 0, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ر<EFBFBD>Ϊ 1
2020-02-16 20:14:01 +08:00
size_in_pixels_ = { width, height };
2020-01-21 10:09:55 +08:00
}
}
::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