ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
iff.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef IMAGE_IFF_H
23 #define IMAGE_IFF_H
24 
25 #include "common/array.h"
26 #include "common/endian.h"
27 #include "graphics/palette.h"
28 #include "graphics/surface.h"
29 
30 #include "image/image_decoder.h"
31 
32 namespace Common {
33 class SeekableReadStream;
34 }
35 
36 namespace Graphics {
37 struct Surface;
38 }
39 
40 namespace Image {
41 
56 class IFFDecoder : public ImageDecoder {
57 public:
58  struct Header {
59  uint16 width, height;
60  uint16 x, y;
61  byte numPlanes;
62  byte masking;
63  byte compression;
64  byte flags;
65  uint16 transparentColor;
66  byte xAspect, yAspect;
67  uint16 pageWidth, pageHeight;
68  };
69 
70  struct PaletteRange {
71  int16 timer, step, flags;
72  byte first, last;
73  };
74 
75  enum Type {
76  TYPE_UNKNOWN = 0,
77  TYPE_ILBM,
78  TYPE_PBM
79  };
80 
81  IFFDecoder();
82  virtual ~IFFDecoder();
83 
84  // ImageDecoder API
85  void destroy();
86  bool loadStream(Common::SeekableReadStream &stream);
87  const Header *getHeader() const { return &_header; }
88  const Graphics::Surface *getSurface() const { return _surface; }
89  const byte *getPalette() const { return _palette.data(); }
90  const Common::Array<PaletteRange> &getPaletteRanges() const { return _paletteRanges; }
91  uint16 getPaletteColorCount() const { return _palette.size(); }
92 
99  void setNumRelevantPlanes(const uint8 numRelevantPlanes) { _numRelevantPlanes = numRelevantPlanes; }
100 
110  void setPixelPacking(const bool pixelPacking) { _pixelPacking = pixelPacking; }
111 private:
112 
113  Header _header;
114  Graphics::Surface *_surface;
115  Graphics::Palette _palette;
116  Common::Array<PaletteRange> _paletteRanges;
117  Type _type;
118  uint8 _numRelevantPlanes;
119  bool _pixelPacking;
120 
121  void loadHeader(Common::SeekableReadStream &stream);
122  void loadPalette(Common::SeekableReadStream &stream, const uint32 size);
123  void loadPaletteRange(Common::SeekableReadStream &stream, const uint32 size);
124  void loadBitmap(Common::SeekableReadStream &stream);
125  void packPixels(byte *scanlines, byte *data, const uint16 scanlinePitch, const uint16 outPitch);
126 };
128 } // End of namespace Image
129 
130 #endif
Definition: image_decoder.h:52
Definition: surface.h:67
Definition: array.h:52
Definition: iff.h:56
Definition: iff.h:58
Definition: stream.h:745
void setNumRelevantPlanes(const uint8 numRelevantPlanes)
Definition: iff.h:99
const Graphics::Surface * getSurface() const
Definition: iff.h:88
Definition: algorithm.h:29
Definition: formatinfo.h:28
const byte * getPalette() const
Definition: iff.h:89
uint16 getPaletteColorCount() const
Definition: iff.h:91
Simple class for handling a palette data.
Definition: palette.h:51
void setPixelPacking(const bool pixelPacking)
Definition: iff.h:110
Definition: movie_decoder.h:32