OpenTTD
|
Container for dumping the savegame (quickly) to memory. More...
Public Member Functions | |
MemoryDumper () | |
Initialise our variables. | |
void | WriteByte (byte b) |
Write a single byte into the dumper. | |
void | Flush (SaveFilter *writer) |
Flush this dumper into a writer. | |
size_t | GetSize () const |
Get the size of the memory dump made so far. |
Data Fields | |
AutoFreeSmallVector< byte *, 16 > | blocks |
Buffer with blocks of allocated memory. | |
byte * | buf |
Buffer we're going to write to. | |
byte * | bufe |
End of the buffer we write to. |
Container for dumping the savegame (quickly) to memory.
Definition at line 336 of file saveload.cpp.
|
inline |
Initialise our variables.
Definition at line 342 of file saveload.cpp.
|
inline |
Flush this dumper into a writer.
writer | The filter we want to use. |
Definition at line 366 of file saveload.cpp.
References blocks, SaveFilter::Finish(), GetSize(), MEMORY_CHUNK_SIZE, min(), and SaveFilter::Write().
Referenced by SaveFileToDisk().
|
inline |
Get the size of the memory dump made so far.
Definition at line 385 of file saveload.cpp.
References blocks, buf, bufe, SmallVector< T, S >::Length(), and MEMORY_CHUNK_SIZE.
Referenced by Flush(), and SlAutolength().
|
inline |
Write a single byte into the dumper.
b | The byte to write. |
Definition at line 350 of file saveload.cpp.
References SmallVector< T, S >::Append(), blocks, buf, bufe, and MEMORY_CHUNK_SIZE.
Referenced by SlWriteByte().