OpenRCT2/src/openrct2/core/Imaging.h

86 lines
2.1 KiB
C
Raw Normal View History

/*****************************************************************************
* Copyright (c) 2014-2019 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
2017-01-07 13:10:42 +01:00
#pragma once
2015-12-29 15:32:51 +01:00
2018-06-22 22:58:39 +02:00
#include "../common.h"
#include "../drawing/Drawing.h"
2018-05-09 00:39:03 +02:00
#include <functional>
#include <istream>
2018-05-07 22:32:24 +02:00
#include <memory>
#include <string_view>
#include <vector>
2017-06-09 00:02:39 +02:00
struct rct_drawpixelinfo;
struct rct_palette;
struct PaletteBGRA
{
uint8_t Blue{};
uint8_t Green{};
uint8_t Red{};
uint8_t Alpha{};
};
2020-05-19 21:05:56 +02:00
constexpr const auto PALETTE_SIZE = 256;
struct GamePalette
{
PaletteBGRA Colour[PALETTE_SIZE];
2020-05-19 21:25:27 +02:00
const PaletteBGRA operator[](uint16_t idx) const
2020-05-19 21:05:56 +02:00
{
2020-05-19 21:25:27 +02:00
assert(idx < PALETTE_SIZE);
if (idx >= PALETTE_SIZE)
return {};
2020-05-19 21:05:56 +02:00
return Colour[idx];
}
explicit operator uint8_t*()
{
return reinterpret_cast<uint8_t*>(Colour);
}
};
2018-05-07 22:32:24 +02:00
enum class IMAGE_FORMAT
{
UNKNOWN,
2018-06-22 22:58:39 +02:00
AUTOMATIC, // Automatically detect from file extension
2018-05-07 22:32:24 +02:00
BITMAP,
PNG,
2018-06-22 22:58:39 +02:00
PNG_32, // Force load to 32bpp buffer
2018-05-07 22:32:24 +02:00
};
struct Image
{
// Meta
uint32_t Width{};
uint32_t Height{};
uint32_t Depth{};
2018-05-07 22:32:24 +02:00
// Data
std::vector<uint8_t> Pixels;
2018-05-07 22:32:24 +02:00
std::unique_ptr<rct_palette> Palette;
uint32_t Stride{};
2018-05-07 22:32:24 +02:00
};
2018-05-09 00:39:03 +02:00
using ImageReaderFunc = std::function<Image(std::istream&, IMAGE_FORMAT)>;
2018-05-07 22:32:24 +02:00
2017-01-07 13:10:42 +01:00
namespace Imaging
{
IMAGE_FORMAT GetImageFormatFromPath(const std::string_view& path);
2018-05-07 22:32:24 +02:00
Image ReadFromFile(const std::string_view& path, IMAGE_FORMAT format = IMAGE_FORMAT::AUTOMATIC);
Image ReadFromBuffer(const std::vector<uint8_t>& buffer, IMAGE_FORMAT format = IMAGE_FORMAT::AUTOMATIC);
2018-05-07 22:32:24 +02:00
void WriteToFile(const std::string_view& path, const Image& image, IMAGE_FORMAT format = IMAGE_FORMAT::AUTOMATIC);
2018-05-09 00:39:03 +02:00
void SetReader(IMAGE_FORMAT format, ImageReaderFunc impl);
2018-06-22 22:58:39 +02:00
} // namespace Imaging