OpenTTD Source
20241108-master-g80f628063a
|
A buffer for reading (and buffering) savegame data. More...
Public Member Functions | |
ReadBuffer (std::shared_ptr< LoadFilter > reader) | |
Initialise our variables. More... | |
uint8_t | ReadByte () |
size_t | GetSize () const |
Get the size of the memory dump made so far. More... | |
Data Fields | |
uint8_t | buf [MEMORY_CHUNK_SIZE] |
Buffer we're going to read from. | |
uint8_t * | bufp |
Location we're at reading the buffer. | |
uint8_t * | bufe |
End of the buffer we can read from. | |
std::shared_ptr< LoadFilter > | reader |
The filter used to actually read. | |
size_t | read |
The amount of read bytes so far from the filter. | |
A buffer for reading (and buffering) savegame data.
Definition at line 87 of file saveload.cpp.
|
inline |
Initialise our variables.
reader | The filter to actually read data. |
Definition at line 98 of file saveload.cpp.
|
inline |
Get the size of the memory dump made so far.
Definition at line 120 of file saveload.cpp.
References bufp.