10 #ifndef BLITTER_32BPP_BASE_HPP
11 #define BLITTER_32BPP_BASE_HPP
14 #include "../core/bitmath_func.hpp"
15 #include "../core/math_func.hpp"
16 #include "../gfx_func.h"
22 void *
MoveTo(
void *video,
int x,
int y)
override;
23 void SetPixel(
void *video,
int x,
int y, uint8_t colour)
override;
24 void DrawLine(
void *video,
int x,
int y,
int x2,
int y2,
int screen_width,
int screen_height, uint8_t colour,
int width,
int dash)
override;
25 void DrawRect(
void *video,
int width,
int height, uint8_t colour)
override;
26 void CopyFromBuffer(
void *video,
const void *src,
int width,
int height)
override;
27 void CopyToBuffer(
const void *video,
void *dst,
int width,
int height)
override;
28 void CopyImageToBuffer(
const void *video,
void *dst,
int width,
int height,
int dst_pitch)
override;
29 void ScrollBuffer(
void *video,
int &left,
int &top,
int &width,
int &height,
int scroll_x,
int scroll_y)
override;
30 size_t BufferSize(uint width, uint height)
override;
53 ((
int)(r - cr) * a) / 256 + cr,
54 ((
int)(g - cg) * a) / 256 + cg,
55 ((
int)(b - cb) * a) / 256 + cb);
64 if (a == 0)
return current;
65 if (a >= 255)
return Colour(r, g, b);
88 if (a == 0)
return current;
110 return Colour(r * nom / denom, g * nom / denom, b * nom / denom);
120 static inline uint8_t
MakeDark(uint8_t r, uint8_t g, uint8_t b)
123 return ((r * 13063) + (g * 25647) + (b * 4981)) / 65536;
133 uint8_t d =
MakeDark(colour.r, colour.g, colour.b);
152 uint grey = ((r * 19595) + (g * 38470) + (b * 7471)) / 65536;
154 return Colour(grey, grey, grey);
157 static const int DEFAULT_BRIGHTNESS = 128;
159 static Colour ReallyAdjustBrightness(
Colour colour, uint8_t brightness);
161 static inline Colour AdjustBrightness(
Colour colour, uint8_t brightness)
164 if (brightness == DEFAULT_BRIGHTNESS)
return colour;
166 return ReallyAdjustBrightness(colour, brightness);
169 static inline uint8_t GetColourBrightness(
Colour colour)
171 uint8_t rgb_max = std::max(colour.r, std::max(colour.g, colour.b));
174 if (rgb_max == 0) rgb_max = DEFAULT_BRIGHTNESS;
Base for all 32bpp blitters.
size_t BufferSize(uint width, uint height) override
Calculate how much memory there is needed for an image of this size in the video-buffer.
static Colour ComposeColourRGBANoCheck(uint r, uint g, uint b, uint a, Colour current)
Compose a colour based on RGBA values and the current pixel value.
void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8_t colour, int width, int dash) override
Draw a line with a given colour.
static Colour ComposeColourPANoCheck(Colour colour, uint a, Colour current)
Compose a colour based on Pixel value, alpha value, and the current pixel value.
void CopyToBuffer(const void *video, void *dst, int width, int height) override
Copy from the screen to a buffer.
void DrawRect(void *video, int width, int height, uint8_t colour) override
Make a single horizontal line in a single colour on the video-buffer.
static Colour LookupColourInPalette(uint index)
Look up the colour in the current palette.
static Colour MakeTransparent(Colour colour, uint nom, uint denom=256)
Make a pixel looks like it is transparent.
static Colour ComposeColourPA(Colour colour, uint a, Colour current)
Compose a colour based on Pixel value, alpha value, and the current pixel value.
Blitter::PaletteAnimation UsePaletteAnimation() override
Check if the blitter uses palette animation at all.
void * MoveTo(void *video, int x, int y) override
Move the destination pointer the requested amount x and y, keeping in mind any pitch and bpp of the r...
void CopyImageToBuffer(const void *video, void *dst, int width, int height, int dst_pitch) override
Copy from the screen to a buffer in a palette format for 8bpp and RGBA format for 32bpp.
void PaletteAnimate(const Palette &palette) override
Called when the 8bpp palette is changed; you should redraw all pixels on the screen that are equal to...
void CopyFromBuffer(void *video, const void *src, int width, int height) override
Copy from a buffer to the screen.
static Colour MakeGrey(Colour colour)
Make a colour grey - based.
static uint8_t MakeDark(uint8_t r, uint8_t g, uint8_t b)
Make a colour dark grey, for specialized 32bpp remapping.
void ScrollBuffer(void *video, int &left, int &top, int &width, int &height, int scroll_x, int scroll_y) override
Scroll the videobuffer some 'x' and 'y' value.
static Colour MakeDark(Colour colour)
Make a colour dark grey, for specialized 32bpp remapping.
uint8_t GetScreenDepth() override
Get the screen depth this blitter works for.
void SetPixel(void *video, int x, int y, uint8_t colour) override
Draw a pixel with a given colour on the video-buffer.
static Colour ComposeColourRGBA(uint r, uint g, uint b, uint a, Colour current)
Compose a colour based on RGBA values and the current pixel value.
How all blitters should look like.
PaletteAnimation
Types of palette animation.
Palette _cur_palette
Current palette.
Information about the currently used palette.
Colour palette[256]
Current palette. Entry 0 has to be always fully transparent!
Structure to access the alpha, red, green, and blue channels from a 32 bit number.
uint8_t a
colour channels in LE order