OpenTTD
|
The buffer for writing a single string. More...
Public Member Functions | |
void | AppendByte (byte value) |
Convenience method for adding a byte. | |
void | AppendUtf8 (uint32 value) |
Add an Unicode character encoded in UTF-8 to the buffer. | |
![]() | |
SmallVector (const SmallVector &other) | |
Copy constructor. | |
SmallVector (const SmallVector< byte, X > &other) | |
Generic copy constructor. | |
SmallVector & | operator= (const SmallVector &other) |
Assignment. | |
SmallVector & | operator= (const SmallVector< byte, X > &other) |
Generic assignment. | |
void | Assign (const SmallVector< byte, X > &other) |
Assign items from other vector. | |
void | Clear () |
Remove all items from the list. | |
void | Reset () |
Remove all items from the list and free allocated memory. | |
void | Compact () |
Compact the list down to the smallest block size boundary. | |
byte * | Append (uint to_add=1) |
Append an item and return it. | |
void | Resize (uint num_items) |
Set the size of the vector, effectively truncating items from the end or appending uninitialised ones. | |
const byte * | Find (const byte &item) const |
Search for the first occurrence of an item. | |
byte * | Find (const byte &item) |
Search for the first occurrence of an item. | |
int | FindIndex (const byte &item) const |
Search for the first occurrence of an item. | |
bool | Contains (const byte &item) const |
Tests whether a item is present in the vector. | |
void | Erase (byte *item) |
Removes given item from this vector. | |
void | ErasePreservingOrder (uint pos, uint count=1) |
Remove items from the vector while preserving the order of other items. | |
bool | Include (const byte &item) |
Tests whether a item is present in the vector, and appends it to the end if not. | |
uint | Length () const |
Get the number of items in the list. | |
const byte * | Begin () const |
Get the pointer to the first item (const) | |
byte * | Begin () |
Get the pointer to the first item. | |
const byte * | End () const |
Get the pointer behind the last valid item (const) | |
byte * | End () |
Get the pointer behind the last valid item. | |
const byte * | Get (uint index) const |
Get the pointer to item "number" (const) | |
byte * | Get (uint index) |
Get the pointer to item "number". | |
const byte & | operator[] (uint index) const |
Get item "number" (const) | |
byte & | operator[] (uint index) |
Get item "number". |
Additional Inherited Members | |
![]() | |
byte * | data |
The pointer to the first item. | |
uint | items |
The number of items stored. | |
uint | capacity |
The available space for storing items. |
The buffer for writing a single string.
Definition at line 238 of file strgen_base.cpp.
|
inline |
Convenience method for adding a byte.
value | The value to add. |
Definition at line 243 of file strgen_base.cpp.
References SmallVector< byte, 256 >::Append().
Referenced by LanguageWriter::WriteLang().
|
inline |
Add an Unicode character encoded in UTF-8 to the buffer.
value | The character to add. |
Definition at line 252 of file strgen_base.cpp.
References SmallVector< byte, 256 >::Append(), and GB().
Referenced by LanguageWriter::WriteLang().