ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
compress.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 AGS_SHARED_UTIL_COMPRESS_H
23 #define AGS_SHARED_UTIL_COMPRESS_H
24 
25 #include "ags/shared/core/types.h"
26 #include "ags/shared/util/wgt2_allg.h"
27 
28 namespace AGS3 {
29 
30 namespace AGS {
31 namespace Shared {
32 class Stream;
33 class Bitmap;
34 } // namespace Shared
35 } // namespace AGS
36 
37 using namespace AGS; // FIXME later
38 
39 bool rle_compress(const uint8_t *data, size_t data_sz, int image_bpp, Shared::Stream *out);
40 bool rle_decompress(uint8_t *data, size_t data_sz, int image_bpp, Shared::Stream *in);
41 // Packs a 8-bit bitmap using RLE compression, and writes into stream along with the palette
42 void save_rle_bitmap8(Shared::Stream *out, const Shared::Bitmap *bmp, const RGB(*pal)[256] = nullptr);
43 // Reads a 8-bit bitmap with palette from the stream and unpacks from RLE
44 Shared::Bitmap *load_rle_bitmap8(Shared::Stream *in, RGB(*pal)[256] = nullptr);
45 // Skips the 8-bit RLE bitmap
46 void skip_rle_bitmap8(Shared::Stream *in);
47 
48 // LZW compression
49 bool lzw_compress(const uint8_t *data, size_t data_sz, int image_bpp, Shared::Stream *out);
50 bool lzw_decompress(uint8_t *data, size_t data_sz, int image_bpp, Shared::Stream *in, size_t in_sz);
51 // Saves bitmap with an optional palette compressed by LZW
52 void save_lzw(Shared::Stream *out, const Shared::Bitmap *bmpp, const RGB(*pal)[256] = nullptr);
53 // Loads bitmap decompressing
54 Shared::Bitmap *load_lzw(Shared::Stream *in, int dst_bpp, RGB (*pal)[256] = nullptr);
55 
56 // Deflate compression
57 bool deflate_compress(const uint8_t *data, size_t data_sz, int image_bpp, Shared::Stream *out);
58 bool inflate_decompress(uint8_t *data, size_t data_sz, int image_bpp, Shared::Stream *in, size_t in_sz);
59 
60 } // namespace AGS3
61 
62 #endif
Definition: achievements_tables.h:27
Definition: ags.h:40