|
STRINGS_API std::wstring | BlamStrings::Converters::ConvertStringToWstring (std::string string) |
| Converts a String to a Wide String. More...
|
|
STRINGS_API std::string | BlamStrings::Converters::WstringToString (std::wstring wide_string) |
| Converts a Wide String to a String. More...
|
|
STRINGS_API bool | BlamStrings::Converters::StringToBool (std::string string) |
| Converts a string to a boolean. More...
|
|
STRINGS_API bool | BlamStrings::Converters::StringToBool (std::string string, bool default_value) |
| Converts a string to a boolean. More...
|
|
STRINGS_API bool | BlamStrings::Converters::HexStringToChar (std::string hex, char *character) |
| Converts a hexadecimal code to its respective character. More...
|
|
STRINGS_API float | BlamStrings::Converters::StringToFloat (std::string string) |
| Converts a string representation of a float to a float . More...
|
|
STRINGS_API float | BlamStrings::Converters::StringToFloat (std::string string, float default_value) |
| Converts a string representation of a float to a float . More...
|
|
STRINGS_API int | BlamStrings::Converters::StringToInt (std::string string) |
| Converts a string representation of an integer to an int . More...
|
|
STRINGS_API int | BlamStrings::Converters::StringToInt (std::string string, int default_value) |
| Converts a string representation of an integer to an int . More...
|
|
STRINGS_API int64_t | BlamStrings::Converters::StringToInt64 (std::string string) |
| Converts a string representation of an integer to an int64_t . More...
|
|
STRINGS_API int64_t | BlamStrings::Converters::StringToInt64 (std::string string, int64_t default_value) |
| Converts a string representation of an integer to an int64_t . More...
|
|
STRINGS_API double | BlamStrings::Converters::StringToDouble (std::string string) |
| Converts a string representation of a double to a double . More...
|
|
STRINGS_API double | BlamStrings::Converters::StringToDouble (std::string string, double default_value) |
| Converts a string representation of a double to a double . More...
|
|
STRINGS_API std::string | BlamStrings::Converters::BytesToString (void *bytes, int bytes_length, bool uppercase=false) |
| Converts a series of bytes to a string. More...
|
|
STRINGS_API std::string | BlamStrings::Converters::BytesToString (void *bytes, int bytes_length, bool uppercase, bool reverse_byte_order) |
| Converts a series of bytes to a string. More...
|
|
STRINGS_API bool | BlamStrings::Converters::IsStringInt (std::string string) |
| Checks whether or not a string is a valid representation of an integer. More...
|
|
STRINGS_API bool | BlamStrings::Converters::IsStringFloat (std::string string) |
| Checks whether or not a string is a valid representation of a float. More...
|
|
STRINGS_API std::string | BlamStrings::Converters::BoolToString (bool value) |
| Converts a boolean value to a string. More...
|
|
STRINGS_API std::string | BlamStrings::Converters::FloatToString (float value, int max_decimals=-1) |
| Converts a floating-point number to a string. More...
|
|
STRINGS_API BlamVector2 | BlamStrings::Converters::StringToVector2 (std::string string, bool *result=nullptr) |
| Converts a string to a 2D vector. More...
|
|
STRINGS_API BlamVector3 | BlamStrings::Converters::StringToVector3 (std::string string, bool *result=nullptr) |
| Converts a string to a 3D vector. More...
|
|
STRINGS_API BlamVector4 | BlamStrings::Converters::StringToVector4 (std::string string, bool *result=nullptr) |
| Converts a string to a 4D vector. More...
|
|
STRINGS_API bool | BlamStrings::Converters::HexStringToBytes (std::string hex_string, void **data, int *data_size, bool remove_terminator=true) |
| Converts a hexadecimal string representation to bytes in memory. More...
|
|
STRINGS_API bool | BlamStrings::Converters::ConvertSailImagePixelFormat (sail_image **image_pointer, SailPixelFormat pixel_format) |
| Converts a Sail image to a specific pixel format. More...
|
|