ScummVM API documentation
dds.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 STARK_FORMATS_DDS_H
23 #define STARK_FORMATS_DDS_H
24 
25 #include "common/array.h"
26 #include "common/stream.h"
27 #include "graphics/surface.h"
28 
29 namespace Stark {
30 namespace Formats {
31 
32 // Based on xoreos' DDS code
33 
41 class DDS {
42 public:
43  ~DDS();
44 
46 
48  bool load(Common::SeekableReadStream &dds, const Common::String &name);
49 
57  const MipMaps &getMipMaps() const;
58 
59 private:
61  struct DDSPixelFormat {
63  uint32 size;
64 
66  uint32 flags;
67 
69  uint32 fourCC;
70 
72  uint32 bitCount;
73 
75  uint32 rBitMask;
76 
78  uint32 gBitMask;
79 
81  uint32 bBitMask;
82 
84  uint32 aBitMask;
85  };
86 
87  bool readHeader(Common::SeekableReadStream &dds);
88  bool readData(Common::SeekableReadStream &dds);
89 
90  bool detectFormat(const DDSPixelFormat &format);
91 
92  MipMaps _mipmaps;
93  Graphics::PixelFormat _format;
94  Common::String _name;
95 };
96 
97 } // End of namespace Formats
98 } // End of namespace Stark
99 
100 #endif // STARK_FORMATS_DDS_H
Definition: str.h:59
bool load(Common::SeekableReadStream &dds, const Common::String &name)
Definition: pixelformat.h:138
Definition: stream.h:745
const MipMaps & getMipMaps() const
Definition: dds.h:41
Definition: console.h:27