mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 04:01:31 +00:00
WebP image support
This commit is contained in:
parent
ae2fa11963
commit
145450a044
7 changed files with 177 additions and 6 deletions
2
.github/workflows/appimage.yml
vendored
2
.github/workflows/appimage.yml
vendored
|
@ -12,7 +12,7 @@ jobs:
|
||||||
- name: Install GZDoom dependencies
|
- name: Install GZDoom dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install clang-12 libsdl2-dev libvpx-dev cmake -y
|
sudo apt-get install clang-12 libsdl2-dev libvpx-dev libwebp-dev cmake -y
|
||||||
- name: Install appimage-builder dependencies
|
- name: Install appimage-builder dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf -y
|
sudo apt-get install binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf -y
|
||||||
|
|
10
.github/workflows/continuous_integration.yml
vendored
10
.github/workflows/continuous_integration.yml
vendored
|
@ -31,28 +31,28 @@ jobs:
|
||||||
- {
|
- {
|
||||||
name: "macOS",
|
name: "macOS",
|
||||||
os: macos-12,
|
os: macos-12,
|
||||||
deps_cmdline: "brew install libvpx",
|
deps_cmdline: "brew install libvpx webp",
|
||||||
build_type: "Release"
|
build_type: "Release"
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "macOS",
|
name: "macOS",
|
||||||
os: macos-12,
|
os: macos-12,
|
||||||
extra_options: "-G Xcode -DDYN_OPENAL=OFF",
|
extra_options: "-G Xcode -DDYN_OPENAL=OFF",
|
||||||
deps_cmdline: "brew install libvpx fluidsynth mpg123 libsndfile",
|
deps_cmdline: "brew install libvpx fluidsynth mpg123 libsndfile webp",
|
||||||
build_type: "Debug"
|
build_type: "Debug"
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Linux GCC 7",
|
name: "Linux GCC 7",
|
||||||
os: ubuntu-20.04,
|
os: ubuntu-20.04,
|
||||||
extra_options: "-DCMAKE_C_COMPILER=gcc-7 -DCMAKE_CXX_COMPILER=g++-7",
|
extra_options: "-DCMAKE_C_COMPILER=gcc-7 -DCMAKE_CXX_COMPILER=g++-7",
|
||||||
deps_cmdline: "sudo apt update && sudo apt install g++-7 libsdl2-dev libvpx-dev libgtk2.0-dev",
|
deps_cmdline: "sudo apt update && sudo apt install g++-7 libsdl2-dev libvpx-dev libgtk2.0-dev libwebp-dev",
|
||||||
build_type: "RelWithDebInfo"
|
build_type: "RelWithDebInfo"
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Linux GCC 11",
|
name: "Linux GCC 11",
|
||||||
os: ubuntu-20.04,
|
os: ubuntu-20.04,
|
||||||
extra_options: "-DCMAKE_C_COMPILER=gcc-11 -DCMAKE_CXX_COMPILER=g++-11",
|
extra_options: "-DCMAKE_C_COMPILER=gcc-11 -DCMAKE_CXX_COMPILER=g++-11",
|
||||||
deps_cmdline: "sudo apt update && sudo apt install g++-11 libsdl2-dev libvpx-dev libgtk-3-dev",
|
deps_cmdline: "sudo apt update && sudo apt install g++-11 libsdl2-dev libvpx-dev libgtk-3-dev libwebp-dev",
|
||||||
build_type: "MinSizeRel"
|
build_type: "MinSizeRel"
|
||||||
}
|
}
|
||||||
# - {
|
# - {
|
||||||
|
@ -66,7 +66,7 @@ jobs:
|
||||||
name: "Linux Clang 12",
|
name: "Linux Clang 12",
|
||||||
os: ubuntu-20.04,
|
os: ubuntu-20.04,
|
||||||
extra_options: "-DCMAKE_C_COMPILER=clang-12 -DCMAKE_CXX_COMPILER=clang++-12",
|
extra_options: "-DCMAKE_C_COMPILER=clang-12 -DCMAKE_CXX_COMPILER=clang++-12",
|
||||||
deps_cmdline: "sudo apt update && sudo apt install clang-12 libsdl2-dev libvpx-dev",
|
deps_cmdline: "sudo apt update && sudo apt install clang-12 libsdl2-dev libvpx-dev libwebp-dev",
|
||||||
build_type: "Release"
|
build_type: "Release"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -217,6 +217,20 @@ find_package( BZip2 )
|
||||||
find_package( JPEG )
|
find_package( JPEG )
|
||||||
find_package( VPX )
|
find_package( VPX )
|
||||||
find_package( ZLIB )
|
find_package( ZLIB )
|
||||||
|
find_package( WebP )
|
||||||
|
if (NOT WebP_FOUND)
|
||||||
|
include(FindPkgConfig)
|
||||||
|
pkg_check_modules(libwebp IMPORTED_TARGET libwebp)
|
||||||
|
if (NOT TARGET PkgConfig::libwebp)
|
||||||
|
message(SEND_ERROR "libwebp not found")
|
||||||
|
endif()
|
||||||
|
pkg_check_modules(libwebpmux REQUIRED IMPORTED_TARGET libwebpmux)
|
||||||
|
pkg_check_modules(libwebpdemux REQUIRED IMPORTED_TARGET libwebpdemux)
|
||||||
|
|
||||||
|
add_library(WebP::webp ALIAS PkgConfig::libwebp)
|
||||||
|
add_library(WebP::webpdemux ALIAS PkgConfig::libwebpdemux)
|
||||||
|
add_library(WebP::libwebpmux ALIAS PkgConfig::libwebpmux)
|
||||||
|
endif()
|
||||||
|
|
||||||
include( TargetArch )
|
include( TargetArch )
|
||||||
|
|
||||||
|
|
|
@ -380,6 +380,13 @@ else()
|
||||||
message( SEND_ERROR "Could not find libvpx" )
|
message( SEND_ERROR "Could not find libvpx" )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if (TARGET WebP::webp)
|
||||||
|
list( APPEND PROJECT_LIBRARIES WebP::webp WebP::webpdemux WebP::libwebpmux )
|
||||||
|
if (TARGET WebP::webpdecoder)
|
||||||
|
list( APPEND PROJECT_LIBRARIES WebP::webpdecoder)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
include_directories( SYSTEM "${ZLIB_INCLUDE_DIR}" "${BZIP2_INCLUDE_DIR}" "${LZMA_INCLUDE_DIR}" "${JPEG_INCLUDE_DIR}" "${ZMUSIC_INCLUDE_DIR}" "${DRPC_INCLUDE_DIR}")
|
include_directories( SYSTEM "${ZLIB_INCLUDE_DIR}" "${BZIP2_INCLUDE_DIR}" "${LZMA_INCLUDE_DIR}" "${JPEG_INCLUDE_DIR}" "${ZMUSIC_INCLUDE_DIR}" "${DRPC_INCLUDE_DIR}")
|
||||||
|
|
||||||
if( ${HAVE_VM_JIT} )
|
if( ${HAVE_VM_JIT} )
|
||||||
|
@ -1028,6 +1035,7 @@ set (PCH_SOURCES
|
||||||
common/textures/formats/anmtexture.cpp
|
common/textures/formats/anmtexture.cpp
|
||||||
common/textures/formats/startscreentexture.cpp
|
common/textures/formats/startscreentexture.cpp
|
||||||
common/textures/formats/qoitexture.cpp
|
common/textures/formats/qoitexture.cpp
|
||||||
|
common/textures/formats/webptexture.cpp
|
||||||
common/textures/hires/hqresize.cpp
|
common/textures/hires/hqresize.cpp
|
||||||
common/models/models_md3.cpp
|
common/models/models_md3.cpp
|
||||||
common/models/models_md2.cpp
|
common/models/models_md2.cpp
|
||||||
|
|
143
src/common/textures/formats/webptexture.cpp
Normal file
143
src/common/textures/formats/webptexture.cpp
Normal file
|
@ -0,0 +1,143 @@
|
||||||
|
/*
|
||||||
|
** webptexture.cpp
|
||||||
|
** Texture class for WebP images.
|
||||||
|
**
|
||||||
|
**---------------------------------------------------------------------------
|
||||||
|
** Copyright 2023 Cacodemon345
|
||||||
|
** All rights reserved.
|
||||||
|
**
|
||||||
|
** Redistribution and use in source and binary forms, with or without
|
||||||
|
** modification, are permitted provided that the following conditions
|
||||||
|
** are met:
|
||||||
|
**
|
||||||
|
** 1. Redistributions of source code must retain the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer.
|
||||||
|
** 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer in the
|
||||||
|
** documentation and/or other materials provided with the distribution.
|
||||||
|
** 3. The name of the author may not be used to endorse or promote products
|
||||||
|
** derived from this software without specific prior written permission.
|
||||||
|
**
|
||||||
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||||
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||||
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||||
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||||
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
**---------------------------------------------------------------------------
|
||||||
|
**
|
||||||
|
**
|
||||||
|
*/
|
||||||
|
#include "webp/decode.h"
|
||||||
|
#include "webp/mux.h"
|
||||||
|
|
||||||
|
#include "files.h"
|
||||||
|
#include "filesystem.h"
|
||||||
|
#include "bitmap.h"
|
||||||
|
#include "imagehelpers.h"
|
||||||
|
#include "image.h"
|
||||||
|
#include "printf.h"
|
||||||
|
|
||||||
|
class FWebPTexture : public FImageSource
|
||||||
|
{
|
||||||
|
|
||||||
|
public:
|
||||||
|
FWebPTexture(int lumpnum, int w, int h, int xoff, int yoff);
|
||||||
|
PalettedPixels CreatePalettedPixels(int conversion) override;
|
||||||
|
int CopyPixels(FBitmap *bmp, int conversion) override;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
FImageSource *WebPImage_TryCreate(FileReader &file, int lumpnum)
|
||||||
|
{
|
||||||
|
int width = 0, height = 0;
|
||||||
|
int xoff = 0, yoff = 0;
|
||||||
|
file.Seek(0, FileReader::SeekSet);
|
||||||
|
auto bytes = file.Read();
|
||||||
|
|
||||||
|
if (WebPGetInfo(bytes.Data(), bytes.Size(), &width, &height))
|
||||||
|
{
|
||||||
|
WebPData data{ bytes.Data(), bytes.Size() };
|
||||||
|
WebPData chunk_data;
|
||||||
|
auto mux = WebPMuxCreate(&data, 0);
|
||||||
|
if (mux)
|
||||||
|
{
|
||||||
|
const char fourcc[4] = { 'g', 'r', 'A', 'b' };
|
||||||
|
if (WebPMuxGetChunk(mux, fourcc, &chunk_data) == WEBP_MUX_OK && chunk_data.size >= 4)
|
||||||
|
{
|
||||||
|
xoff = chunk_data.bytes[0] | (chunk_data.bytes[1] << 8);
|
||||||
|
yoff = chunk_data.bytes[2] | (chunk_data.bytes[3] << 8);
|
||||||
|
}
|
||||||
|
WebPMuxDelete(mux);
|
||||||
|
}
|
||||||
|
return new FWebPTexture(lumpnum, width, height, xoff, yoff);
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
FWebPTexture::FWebPTexture(int lumpnum, int w, int h, int xoff, int yoff)
|
||||||
|
: FImageSource(lumpnum)
|
||||||
|
{
|
||||||
|
Width = w;
|
||||||
|
Height = h;
|
||||||
|
LeftOffset = xoff;
|
||||||
|
TopOffset = yoff;
|
||||||
|
}
|
||||||
|
|
||||||
|
PalettedPixels FWebPTexture::CreatePalettedPixels(int conversion)
|
||||||
|
{
|
||||||
|
FBitmap bitmap;
|
||||||
|
bitmap.Create(Width, Height);
|
||||||
|
CopyPixels(&bitmap, conversion);
|
||||||
|
const uint8_t *data = bitmap.GetPixels();
|
||||||
|
|
||||||
|
uint8_t *dest_p;
|
||||||
|
int dest_adv = Height;
|
||||||
|
int dest_rew = Width * Height - 1;
|
||||||
|
|
||||||
|
PalettedPixels Pixels(Width*Height);
|
||||||
|
dest_p = Pixels.Data();
|
||||||
|
|
||||||
|
bool doalpha = conversion == luminance;
|
||||||
|
// Convert the source image from row-major to column-major format and remap it
|
||||||
|
for (int y = Height; y != 0; --y)
|
||||||
|
{
|
||||||
|
for (int x = Width; x != 0; --x)
|
||||||
|
{
|
||||||
|
int b = *data++;
|
||||||
|
int g = *data++;
|
||||||
|
int r = *data++;
|
||||||
|
int a = *data++;
|
||||||
|
if (a < 128) *dest_p = 0;
|
||||||
|
else *dest_p = ImageHelpers::RGBToPalette(doalpha, r, g, b);
|
||||||
|
dest_p += dest_adv;
|
||||||
|
}
|
||||||
|
dest_p -= dest_rew;
|
||||||
|
}
|
||||||
|
return Pixels;
|
||||||
|
}
|
||||||
|
|
||||||
|
int FWebPTexture::CopyPixels(FBitmap *bmp, int conversion)
|
||||||
|
{
|
||||||
|
WebPDecoderConfig config;
|
||||||
|
auto lump = fileSystem.OpenFileReader(SourceLump);
|
||||||
|
auto bytes = lump.Read();
|
||||||
|
|
||||||
|
if (WebPInitDecoderConfig(&config) == false)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
config.options.no_fancy_upsampling = 0;
|
||||||
|
config.output.colorspace = MODE_BGRA;
|
||||||
|
config.output.u.RGBA.rgba = (uint8_t*)bmp->GetPixels();
|
||||||
|
config.output.u.RGBA.size = bmp->GetBufferSize();
|
||||||
|
config.output.u.RGBA.stride = bmp->GetPitch();
|
||||||
|
config.output.is_external_memory = 1;
|
||||||
|
|
||||||
|
(void)WebPDecode(bytes.Data(), bytes.Size(), &config);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -323,6 +323,7 @@ FImageSource *PCXImage_TryCreate(FileReader &, int lumpnum);
|
||||||
FImageSource *TGAImage_TryCreate(FileReader &, int lumpnum);
|
FImageSource *TGAImage_TryCreate(FileReader &, int lumpnum);
|
||||||
FImageSource *StbImage_TryCreate(FileReader &, int lumpnum);
|
FImageSource *StbImage_TryCreate(FileReader &, int lumpnum);
|
||||||
FImageSource *QOIImage_TryCreate(FileReader &, int lumpnum);
|
FImageSource *QOIImage_TryCreate(FileReader &, int lumpnum);
|
||||||
|
FImageSource *WebPImage_TryCreate(FileReader &, int lumpnum);
|
||||||
FImageSource *AnmImage_TryCreate(FileReader &, int lumpnum);
|
FImageSource *AnmImage_TryCreate(FileReader &, int lumpnum);
|
||||||
FImageSource *RawPageImage_TryCreate(FileReader &, int lumpnum);
|
FImageSource *RawPageImage_TryCreate(FileReader &, int lumpnum);
|
||||||
FImageSource *FlatImage_TryCreate(FileReader &, int lumpnum);
|
FImageSource *FlatImage_TryCreate(FileReader &, int lumpnum);
|
||||||
|
@ -344,6 +345,7 @@ FImageSource * FImageSource::GetImage(int lumpnum, bool isflat)
|
||||||
{ PCXImage_TryCreate, false },
|
{ PCXImage_TryCreate, false },
|
||||||
{ StbImage_TryCreate, false },
|
{ StbImage_TryCreate, false },
|
||||||
{ QOIImage_TryCreate, false },
|
{ QOIImage_TryCreate, false },
|
||||||
|
{ WebPImage_TryCreate, false },
|
||||||
{ TGAImage_TryCreate, false },
|
{ TGAImage_TryCreate, false },
|
||||||
{ AnmImage_TryCreate, false },
|
{ AnmImage_TryCreate, false },
|
||||||
{ StartupPageImage_TryCreate, false },
|
{ StartupPageImage_TryCreate, false },
|
||||||
|
|
|
@ -46,6 +46,10 @@
|
||||||
{
|
{
|
||||||
"name": "libvpx",
|
"name": "libvpx",
|
||||||
"platform": "!windows"
|
"platform": "!windows"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "libwebp",
|
||||||
|
"platform": "!windows | (windows & static & staticcrt)"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in a new issue