OpenTTD
32bpp_optimized.hpp
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef BLITTER_32BPP_OPTIMIZED_HPP
11 #define BLITTER_32BPP_OPTIMIZED_HPP
12 
13 #include "32bpp_simple.hpp"
14 
17 public:
19  struct SpriteData {
20  uint32 offset[ZOOM_LVL_COUNT][2];
21  byte data[];
22  };
23 
24  void Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel zoom) override;
25  Sprite *Encode(const SpriteLoader::Sprite *sprite, AllocatorProc *allocator) override;
26 
27  const char *GetName() override { return "32bpp-optimized"; }
28 
29  template <BlitterMode mode> void Draw(const Blitter::BlitterParams *bp, ZoomLevel zoom);
30 };
31 
34 public:
35  FBlitter_32bppOptimized() : BlitterFactory("32bpp-optimized", "32bpp Optimized Blitter (no palette animation)") {}
36  Blitter *CreateInstance() override { return new Blitter_32bppOptimized(); }
37 };
38 
39 #endif /* BLITTER_32BPP_OPTIMIZED_HPP */
Blitter * CreateInstance() override
Create an instance of this Blitter-class.
Sprite * Encode(const SpriteLoader::Sprite *sprite, AllocatorProc *allocator) override
Convert a sprite from the loader to our own format.
byte data[]
Data, all zoomlevels.
Data structure describing a sprite.
Definition: spritecache.h:16
uint32 offset[ZOOM_LVL_COUNT][2]
Offsets (from .data) to streams for different zoom levels, and the normal and remap image information...
Number of zoom levels.
Definition: zoom_type.h:30
How all blitters should look like.
Definition: base.hpp:28
Data stored about a (single) sprite.
Factory for the optimised 32 bpp blitter (without palette animation).
void Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel zoom) override
Draws a sprite to a (screen) buffer.
Parameters related to blitting.
Definition: base.hpp:31
Structure for passing information from the sprite loader to the blitter.
The most trivial 32 bpp blitter (without palette animation).
Simple 32 bpp blitter.
const char * GetName() override
Get the name of the blitter, the same as the Factory-instance returns.
BlitterMode
The modes of blitting we can do.
Definition: base.hpp:17
ZoomLevel
All zoom levels we know.
Definition: zoom_type.h:19
The base factory, keeping track of all blitters.
Definition: factory.hpp:26
The optimised 32 bpp blitter (without palette animation).