2007-06-19 17:43:30 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file 32bpp_anim.hpp A 32 bpp blitter with animation support. */
|
2007-06-19 17:43:30 +00:00
|
|
|
|
|
|
|
#ifndef BLITTER_32BPP_ANIM_HPP
|
|
|
|
#define BLITTER_32BPP_ANIM_HPP
|
|
|
|
|
2007-09-09 23:16:01 +00:00
|
|
|
#include "32bpp_optimized.hpp"
|
2007-06-19 17:43:30 +00:00
|
|
|
#include "factory.hpp"
|
|
|
|
|
2007-09-09 23:16:01 +00:00
|
|
|
class Blitter_32bppAnim : public Blitter_32bppOptimized {
|
2007-06-19 17:43:30 +00:00
|
|
|
private:
|
|
|
|
uint8 *anim_buf; ///< In this buffer we keep track of the 8bpp indexes so we can do palette animation
|
|
|
|
int anim_buf_width;
|
|
|
|
int anim_buf_height;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Blitter_32bppAnim() :
|
|
|
|
anim_buf(NULL),
|
|
|
|
anim_buf_width(0),
|
|
|
|
anim_buf_height(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
/* virtual */ void Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel zoom);
|
2007-06-21 12:36:46 +00:00
|
|
|
/* virtual */ void DrawColorMappingRect(void *dst, int width, int height, int pal);
|
2007-06-19 17:43:30 +00:00
|
|
|
/* virtual */ void SetPixel(void *video, int x, int y, uint8 color);
|
|
|
|
/* virtual */ void SetPixelIfEmpty(void *video, int x, int y, uint8 color);
|
|
|
|
/* virtual */ void DrawRect(void *video, int width, int height, uint8 color);
|
2007-06-21 12:36:46 +00:00
|
|
|
/* virtual */ void CopyFromBuffer(void *video, const void *src, int width, int height);
|
|
|
|
/* virtual */ void CopyToBuffer(const void *video, void *dst, int width, int height);
|
2007-06-19 17:43:30 +00:00
|
|
|
/* virtual */ void ScrollBuffer(void *video, int &left, int &top, int &width, int &height, int scroll_x, int scroll_y);
|
2007-06-21 13:31:41 +00:00
|
|
|
/* virtual */ int BufferSize(int width, int height);
|
2007-06-19 17:43:30 +00:00
|
|
|
/* virtual */ void PaletteAnimate(uint start, uint count);
|
|
|
|
/* virtual */ Blitter::PaletteAnimation UsePaletteAnimation();
|
2007-06-21 13:56:59 +00:00
|
|
|
|
|
|
|
/* virtual */ const char *GetName() { return "32bpp-anim"; }
|
2008-08-15 22:06:58 +00:00
|
|
|
/* virtual */ int GetBytesPerPixel() { return 5; }
|
2008-06-26 15:46:19 +00:00
|
|
|
|
|
|
|
template <BlitterMode mode> void Draw(const Blitter::BlitterParams *bp, ZoomLevel zoom);
|
2007-06-19 17:43:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class FBlitter_32bppAnim: public BlitterFactory<FBlitter_32bppAnim> {
|
|
|
|
public:
|
|
|
|
/* virtual */ const char *GetName() { return "32bpp-anim"; }
|
|
|
|
/* virtual */ const char *GetDescription() { return "32bpp Animation Blitter (palette animation)"; }
|
|
|
|
/* virtual */ Blitter *CreateInstance() { return new Blitter_32bppAnim(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* BLITTER_32BPP_ANIM_HPP */
|