OpenTTD Source
20241108-master-g80f628063a
|
Filter using Zlib compression. More...
Public Member Functions | |
ZlibLoadFilter (std::shared_ptr< LoadFilter > chain) | |
Initialise this filter. More... | |
~ZlibLoadFilter () | |
Clean everything up. | |
size_t | Read (uint8_t *buf, size_t size) override |
Read a given number of bytes from the savegame. More... | |
Public Member Functions inherited from LoadFilter | |
LoadFilter (std::shared_ptr< LoadFilter > chain) | |
Initialise this filter. More... | |
virtual | ~LoadFilter () |
Make sure the writers are properly closed. | |
virtual void | Reset () |
Reset this filter to read from the beginning of the file. | |
Data Fields | |
z_stream | z |
Stream state we are reading from. | |
uint8_t | fread_buf [MEMORY_CHUNK_SIZE] |
Buffer for reading from the file. | |
Data Fields inherited from LoadFilter | |
std::shared_ptr< LoadFilter > | chain |
Chained to the (savegame) filters. | |
Filter using Zlib compression.
Definition at line 2415 of file saveload.cpp.
|
inline |
Initialise this filter.
chain | The next filter in this chain. |
Definition at line 2423 of file saveload.cpp.
References SlError().
|
inlineoverridevirtual |
Read a given number of bytes from the savegame.
buf | The bytes to read. |
len | The number of bytes to read. |
Implements LoadFilter.
Definition at line 2435 of file saveload.cpp.