CRM64Pro GDK v0.11.0
A free cross-platform game development kit built on top of SDL 3.0
Loading...
Searching...
No Matches
Classes | Macros | Enumerations | Functions

Detailed Description

v2.00 (23 June 2023)
The Tool interface provides some generic and useful methods.

Useful methods:


Only a single instance of the Tool interface exists which is created once Main is instantiated.
You can get a reference to this interface using Main::ITool() method.

Note
The Tool interface is automatically released when Main::Terminate() is called.
At this time, any resource still loaded, will be released avoding resource leaks.

Classes

class  CRM64Pro::Tool
 Tool class. More...
 

Macros

#define TMBB_OK   1
 
#define TMBB_CANCEL   2
 
#define TMBB_YES   4
 
#define TMBB_NO   8
 

Enumerations

enum  CRM64Pro::eToolMBT { CRM64Pro::TMBT_EMPTY = 0 , CRM64Pro::TMBT_ERROR = 1 , CRM64Pro::TMBT_WARNING = 2 , CRM64Pro::TMBT_INFO = 4 }
 Tool MessageBox type. More...
 

Functions

Sint32 CRM64Pro::Tool::info (Sint32 iMode=0)
 Request Tool Interface information.
 
Uint32 CRM64Pro::Tool::CRC32 (const void *pBuffer, size_t iSize, Uint32 iPreviousCRC32=0)
 CRC32 checksum of a memory buffer.
 
Uint32 CRM64Pro::Tool::CRC32 (const string &sFile)
 CRC32 checksum of a file.
 
Uint32 CRM64Pro::Tool::xxHash (const void *pBuffer, size_t iSize, Uint32 iSeed)
 xxHash 32bits checksum of a memory buffer.
 
void * CRM64Pro::Tool::xxHashInit (Uint32 iSeed)
 Initialize xxHash 32bits for being used in multiple memory buffers.
 
Sint32 CRM64Pro::Tool::xxHashUpdate (void *pState, const void *pBuffer, size_t iSize)
 Feed with a new memory buffer the xxHash 32bits.
 
Uint32 CRM64Pro::Tool::xxHashDigest (void *pState)
 Get current xxHash 32bits checksum for the accumulative memory buffers.
 
Sint32 CRM64Pro::Tool::xxHashEnd (void *pState)
 Finalize xxHash 32bits used in multiple memory buffers.
 
Sint32 CRM64Pro::Tool::XOR (void *pSrc, size_t iSize, Uint8 cKey)
 XOR of a memory buffer by a key(8bits).
 
Sint32 CRM64Pro::Tool::decodeBase64 (const string &sInput, string &sOutput, Uint32 iCleanInput=0)
 Decode a base64 string.
 
Sint32 CRM64Pro::Tool::decompressZlib (const void *pCompressed, Sint32 iCompressedSize, void *pUncompressed, Sint32 iUncompressedSize)
 Decompress a zlib compressed data block.
 
void CRM64Pro::Tool::randSeedMWC (Uint32 iSeed)
 Initializes the Multiply-with-carry(MWC) random number generator with a seed.
 
Uint32 CRM64Pro::Tool::randMWC ()
 Generates a random 32bits integer using Multiply-with-carry(MWC) algorithm.
 
double CRM64Pro::Tool::randRealMWC ()
 Generates a random 64bits real number using Multiply-with-carry(MWC) algorithm.
 
void CRM64Pro::Tool::randSeedWELL (Uint32 iSeed, Uint32 *pSeedTable=nullptr)
 Initializes the WELL512 random number generator with a seed.
 
Uint32 CRM64Pro::Tool::randWELL (Uint32 *pSeedState=nullptr, Uint32 *pSeedTable=nullptr)
 Generates a random 32bits integer using WELL512 algorithm.
 
double CRM64Pro::Tool::randRealWELL (Uint32 *pSeedState=nullptr, Uint32 *pSeedTable=nullptr)
 Generates a random 64bits real number using WELL512 algorithm.
 
float CRM64Pro::Tool::round (const float fNum)
 Round a float value.
 
double CRM64Pro::Tool::round (const double dNum)
 Round a double value.
 
Sint32 CRM64Pro::Tool::dirExists (const string &sPath)
 Check if a directory exists.
 
Sint32 CRM64Pro::Tool::dirCreate (const string &sPath)
 Create a directory.
 
Sint32 CRM64Pro::Tool::fileExists (const string &sPath)
 Check if a file exists.
 
Sint32 CRM64Pro::Tool::fileRemove (const string &sPath)
 Remove a file.
 
Sint32 CRM64Pro::Tool::fileGetAbsolutePath (const string &sPath, string &sAbsolutePath)
 Get the absolute path of a given relative path.
 
Sint32 CRM64Pro::Tool::fileGetExePath (string &sPath)
 Get the executable path.
 
Sint32 CRM64Pro::Tool::fileGetName (const string &sPath, string &sFileName)
 Get the filename.
 
Sint32 CRM64Pro::Tool::fileGetDir (const string &sPath, string &sDirName)
 Get the directory.
 
Sint32 CRM64Pro::Tool::fileGetExtension (const string &sPath, string &sExtensionName)
 Get the extension.
 
Sint32 CRM64Pro::Tool::fileCheckExtension (const string &sPath, const string &sExt)
 Check if a filename contains a given extension.
 
Sint32 CRM64Pro::Tool::fileOpenDialog (const string &sTitle, const char *szFilter, string &sSelectedFile)
 Create a native file open dialog.
 
Sint32 CRM64Pro::Tool::fileSaveDialog (const string &sTitle, const char *szFilter, string &sSelectedFile)
 Create a native file save dialog.
 
Sint32 CRM64Pro::Tool::messageBox (const string &sTitle, const string &sMsg, Uint32 iButtons=TMBB_OK, eToolMBT eTMBT=TMBT_INFO, Sint32 iTTL=0, Sint32 idCustomPanel=-1, Sint32 idScreen=-1)
 Create a messagebox.
 
Sint32 CRM64Pro::Tool::szCopy (char *szDst, const char *szSrc, size_t iSize)
 Copy a string-zero avoiding buffer overflow.
 
Sint32 CRM64Pro::Tool::getDateStamp (string &sString)
 Get current date+time stamp.
 
Sint32 CRM64Pro::Tool::strCompare (const string &sOne, const string &sTwo)
 Case insensitive string comparation.
 
Sint32 CRM64Pro::Tool::strToLowerCase (string &sString)
 Convert the string to lower case.
 
Sint32 CRM64Pro::Tool::strToUpperCase (string &sString)
 Convert the string to upper case.
 
Sint32 CRM64Pro::Tool::strTovStr (const string sString, const string sSplit, vector< string > &vString)
 Split a string into a vector of string given a split string.
 
Sint32 CRM64Pro::Tool::strDecToInt (const string sString)
 Convert a given string with a number in decimal format to a Sint32 number.
 
Sint32 CRM64Pro::Tool::intToStrDec (Sint32 iNum, string &sString)
 Convert a 32bits signed integer to a string in decimal format.
 
Sint32 CRM64Pro::Tool::strHexToInt (const string sString)
 Convert a given string with a number in hexdecimal format to a Sint32 number.
 
Sint32 CRM64Pro::Tool::intToStrHex (Sint32 iNum, string &sString)
 Convert a 32bits signed integer to a string in hexadecimal format.
 
Sint32 CRM64Pro::Tool::vStrToFile (const vector< string > &vString, const string &sFileName)
 Save a vector<string> to a filename.
 
Sint32 CRM64Pro::Tool::fileTovStr (vector< string > &vString, const string &sFileName)
 Load lines of a filename into a vector<string>.
 

Macro Definition Documentation

◆ TMBB_OK

#define TMBB_OK   1

MessageBox Button OK. 'iButtons' parameter in Tools::messageBox().

◆ TMBB_CANCEL

#define TMBB_CANCEL   2

MessageBox Button Cancel. 'iButtons' parameter in Tools::messageBox().

◆ TMBB_YES

#define TMBB_YES   4

MessageBox Button Yes. 'iButtons' parameter in Tools::messageBox().

◆ TMBB_NO

#define TMBB_NO   8

MessageBox Button No. 'iButtons' parameter in Tools::messageBox().

Enumeration Type Documentation

◆ eToolMBT

Tool MessageBox type.

Enumerator
TMBT_EMPTY 

MessageBox type empty. 'eTMBT' parameter in Tools:messageBox().

TMBT_ERROR 

MessageBox type error. 'eTMBT' parameter in Tools::messageBox().

TMBT_WARNING 

MessageBox type warning. 'eTMBT' parameter in Tools::messageBox().

TMBT_INFO 

MessageBox type information. 'eTMBT' parameter in Tools::messageBox().

Function Documentation

◆ info()

Sint32 CRM64Pro::Tool::info ( Sint32  iMode = 0)

Request Tool Interface information.

For displaying the information, it uses the default log.

Parameters
iModeunused for the time being.
Returns
0 on success or a negative error code on failure.

◆ CRC32() [1/2]

Uint32 CRM64Pro::Tool::CRC32 ( const void *  pBuffer,
size_t  iSize,
Uint32  iPreviousCRC32 = 0 
)

CRC32 checksum of a memory buffer.

This algorithm take +-8 CPU cycles per byte.

Parameters
pBufferpointer to the memory buffer.
iSizesize in bytes of the memory buffer.
iPreviousCRC32support for rolling mechanism: if you already have a memory buffer and its CRC32 checksum, then you can append new data and calculate the updated CRC32 but using your original value as a seed and just scanning through the appended data.
By default, it is set to 0.
Returns
CRC32 checksum of the memory buffer.

◆ CRC32() [2/2]

Uint32 CRM64Pro::Tool::CRC32 ( const string &  sFile)

CRC32 checksum of a file.

Internally, it calls to memory buffer CRC32() method.

Parameters
sFilestring containing the [directory]+filename+[extension].
Returns
CRC32 checksum of the file.

◆ xxHash()

Uint32 CRM64Pro::Tool::xxHash ( const void *  pBuffer,
size_t  iSize,
Uint32  iSeed 
)

xxHash 32bits checksum of a memory buffer.

This algorithm is very fast(16x faster than CRC32) and close to the memory bandwidth limit.

Parameters
pBufferpointer to the memory buffer.
iSizesize in bytes of the memory buffer.
iSeedcan be used to alter the result predictably.
Returns
xxHash 32bits checksum of the memory buffer.

◆ xxHashInit()

void * CRM64Pro::Tool::xxHashInit ( Uint32  iSeed)

Initialize xxHash 32bits for being used in multiple memory buffers.

Parameters
iSeedcan be used to alter the result predictably.
Returns
a void* state which hold internal variables, do not modify it!.
Note
This state must be destroyed calling ton xxHashEnd()

◆ xxHashUpdate()

Sint32 CRM64Pro::Tool::xxHashUpdate ( void *  pState,
const void *  pBuffer,
size_t  iSize 
)

Feed with a new memory buffer the xxHash 32bits.

Parameters
pStatea void* state previously created by xxHashInit().
pBufferpointer to the memory buffer.
iSizesize in bytes of the memory buffer.
Returns
0 on success or a negative error code on failure.

◆ xxHashDigest()

Uint32 CRM64Pro::Tool::xxHashDigest ( void *  pState)

Get current xxHash 32bits checksum for the accumulative memory buffers.

Parameters
pStatea void* state created by xxHashInit() and used on xxHashUpdate().
Returns
xxHash 32bits checksum of the memory buffers.

◆ xxHashEnd()

Sint32 CRM64Pro::Tool::xxHashEnd ( void *  pState)

Finalize xxHash 32bits used in multiple memory buffers.

Parameters
pStatea void* state created by xxHashInit().
Returns
0 on success or a negative error code on failure.

◆ XOR()

Sint32 CRM64Pro::Tool::XOR ( void *  pSrc,
size_t  iSize,
Uint8  cKey 
)

XOR of a memory buffer by a key(8bits).

It can be used for simple encryption/decryption tasks.

Parameters
pSrcpointer to the memory buffer.
iSizesize in bytes of the memory buffer.
cKeyunsigned char value representing the key.
Returns
0 on success or a negative error code on failure.

◆ decodeBase64()

Sint32 CRM64Pro::Tool::decodeBase64 ( const string &  sInput,
string &  sOutput,
Uint32  iCleanInput = 0 
)

Decode a base64 string.

Parameters
sInputstring containing the base64 encoded string.
sOutputstring containing the decoded base64 string.
iCleanInputset to 1 for cleaning the sInput string of non base64 characters before to try to decode it. By default it is set to 0.
Returns
0 on success or a negative error code on failure.

◆ decompressZlib()

Sint32 CRM64Pro::Tool::decompressZlib ( const void *  pCompressed,
Sint32  iCompressedSize,
void *  pUncompressed,
Sint32  iUncompressedSize 
)

Decompress a zlib compressed data block.

Parameters
pCompressedpointer to compressed data.
iCompressedSizecompressed data buffer size.
pUncompressedpointer to the decompressed data. You must create this buffer and once done with it, free it.
iUncompressedSizeuncompressed data buffer size.
Returns
0 on success or a negative error code on failure.

◆ randSeedMWC()

void CRM64Pro::Tool::randSeedMWC ( Uint32  iSeed)

Initializes the Multiply-with-carry(MWC) random number generator with a seed.

For further information, you can check the development blog entry on http://www.megastormsystems.com about PRNG algorithms.

Parameters
iSeedany Uint32 from [0,4294967295] interval.

◆ randMWC()

Uint32 CRM64Pro::Tool::randMWC ( )

Generates a random 32bits integer using Multiply-with-carry(MWC) algorithm.

For further information, you can check the development blog entry on http://www.megastormsystems.com about PRNG algorithms.

Returns
random integer from [0,4294967295] interval.

◆ randRealMWC()

double CRM64Pro::Tool::randRealMWC ( )

Generates a random 64bits real number using Multiply-with-carry(MWC) algorithm.

For further information, you can check the development blog entry on http://www.megastormsystems.com about PRNG algorithms.

Returns
random real from [0,1] interval.

◆ randSeedWELL()

void CRM64Pro::Tool::randSeedWELL ( Uint32  iSeed,
Uint32 *  pSeed = nullptr 
)

Initializes the WELL512 random number generator with a seed.

For further information, you can check the development blog entry on http://www.megastormsystems.com about PRNG algorithms.

Parameters
iSeedany Uint32 from [0,4294967295] interval.
pSeedpointer to an array of 16 Uint32 for storing the seed output.
By default it is set to nullptr for using an internal array.

◆ randWELL()

Uint32 CRM64Pro::Tool::randWELL ( Uint32 *  pState = nullptr,
Uint32 *  pSeed = nullptr 
)

Generates a random 32bits integer using WELL512 algorithm.

For further information, you can check the development blog entry on http://www.megastormsystems.com about PRNG algorithms.

Parameters
pStatepointer to an Uint32 containing the WELL512 algorithm state.
By default it is set to nullptr for using an internal Uint32.
pSeedpointer to an array of 16 Uint32 containing the seed current status.
By default it is set to nullptr for using an internal array.
Returns
random integer from [0,4294967295] interval.

◆ randRealWELL()

double CRM64Pro::Tool::randRealWELL ( Uint32 *  pState = nullptr,
Uint32 *  pSeed = nullptr 
)

Generates a random 64bits real number using WELL512 algorithm.

For further information, you can check the development blog entry on http://www.megastormsystems.com about PRNG algorithms.

Parameters
pStatepointer to an Uint32 containing the WELL512 algorithm state.
By default it is set to nullptr for using an internal Uint32.
pSeedpointer to an array of 16 Uint32 containing the seed current status.
By default it is set to nullptr for using an internal array.
Returns
random real from [0,1] interval.

◆ round() [1/2]

float CRM64Pro::Tool::round ( const float  fNum)

Round a float value.

Parameters
fNumfloat to be rounded
Returns
rounded float value

◆ round() [2/2]

double CRM64Pro::Tool::round ( const double  dNum)

Round a double value.

Parameters
dNumdouble to be rounded
Returns
rounded double value

◆ dirExists()

Sint32 CRM64Pro::Tool::dirExists ( const string &  sPath)

Check if a directory exists.

Parameters
sPathstring containing the directory.
Directory separators '\' and '/' are supported.
Returns
0 on success(directory exists) or a negative error code on failure.

◆ dirCreate()

Sint32 CRM64Pro::Tool::dirCreate ( const string &  sPath)

Create a directory.

It extracts the directory, discards the filename and extension and try to create the directory.
Directory separators '\' and '/' are supported.

Parameters
sPathstring containing the directory (e.g. myDir/, myDir/mySubDir).
Returns
0 on success or a negative error code on failure.
Note
If the directory already exists, it does nothing and return a success code.

◆ fileExists()

Sint32 CRM64Pro::Tool::fileExists ( const string &  sPath)

Check if a file exists.

Parameters
sPathstring containing the [directory]+filename+[extension].
Directory separators '\' and '/' are supported.
Returns
0 on success(file exists) or a negative error code on failure.

◆ fileRemove()

Sint32 CRM64Pro::Tool::fileRemove ( const string &  sPath)

Remove a file.

Parameters
sPathstring containing the [directory]+filename+[extension].
Directory separators '\' and '/' are supported.
Returns
0 on success or a negative error code on failure.

◆ fileGetAbsolutePath()

Sint32 CRM64Pro::Tool::fileGetAbsolutePath ( const string &  sPath,
string &  sAbsolutePath 
)

Get the absolute path of a given relative path.

Parameters
sPathstring containing the [directory]+filename+[extension].
Directory separators '\' and '/' are supported.
sAbsolutePatha string variable with the absolute path. Will not be modified on error.
Returns
0 on success or a negative error code on failure.

◆ fileGetExePath()

Sint32 CRM64Pro::Tool::fileGetExePath ( string &  sPath)

Get the executable path.

Parameters
sPatha string variable containing the full executable path. Will not be modified on error.
Returns
0 on success or a negative error code on failure.

◆ fileGetName()

Sint32 CRM64Pro::Tool::fileGetName ( const string &  sPath,
string &  sFileName 
)

Get the filename.

It removes the directory and extension if present and get only the filename.

Parameters
sPathstring containing the [directory]+filename+[extension].
Directory separators '\' and '/' are supported.
sFileNamea string variable. Will not be modified on error.
Returns
0 on success or a negative error code on failure.

◆ fileGetDir()

Sint32 CRM64Pro::Tool::fileGetDir ( const string &  sPath,
string &  sDirName 
)

Get the directory.

It removes the name and extension if present and get only the directory.

Parameters
sPathstring containing the [directory]+filename+[extension].
Directory separators '\' and '/' are supported.
sDirNamea string variable. Will not be modified on error.
Returns
0 on success or a negative error code on failure.

◆ fileGetExtension()

Sint32 CRM64Pro::Tool::fileGetExtension ( const string &  sPath,
string &  sExtensionName 
)

Get the extension.

It removes the directory and name if present and get only the extension.

Parameters
sPathstring containing the [directory]+filename+[extension].
sExtensionNamea string variable. Will not be modified on error.
Returns
0 on success or a negative error code on failure.

◆ fileCheckExtension()

Sint32 CRM64Pro::Tool::fileCheckExtension ( const string &  sPath,
const string &  sExt 
)

Check if a filename contains a given extension.

Parameters
sPathstring containing the [directory]+filename+[extension].
sExtthe extension to be checked.
Returns
0 on success(file contains given extension) or a negative error code on failure.

◆ fileOpenDialog()

Sint32 CRM64Pro::Tool::fileOpenDialog ( const string &  sTitle,
const char *  szFilter,
string &  sSelectedFile 
)

Create a native file open dialog.

Parameters
sTitlestring containing dialog title.
szFilterpointer to a buffer containing pairs of nullptr-terminated filter strings.
The first string in each pair is a display string that describes the filter (for example, "PNG Files"), and the second string specifies the filter pattern (for example, "*.png").
sSelectedFilestring to contain the directory+filename+extension of the selected file.
Returns
0 on success(sSelectedFile contains the selected file) or a negative error code on failure.

◆ fileSaveDialog()

Sint32 CRM64Pro::Tool::fileSaveDialog ( const string &  sTitle,
const char *  szFilter,
string &  sSelectedFile 
)

Create a native file save dialog.

Parameters
sTitlestring containing dialog title.
szFilterpointer to a buffer containing pairs of nullptr-terminated filter strings.
The first string in each pair is a display string that describes the filter (for example, "PNG Files"), and the second string specifies the filter pattern (for example, "*.png").
sSelectedFilestring to contain the directory+filename+extension of the selected file.
Returns
0 on success(sSelectedFile contains the selected file) or a negative error code on failure.

◆ messageBox()

Sint32 CRM64Pro::Tool::messageBox ( const string &  sTitle,
const string &  sMsg,
Uint32  iButtons = TMBB_OK,
eToolMBT  eTMBT = TMBT_INFO,
Sint32  iTTL = 0,
Sint32  idCustomPanel = -1,
Sint32  idScreen = -1 
)

Create a messagebox.

Parameters
sTitlestring containing the messagebox title. It can be an empty string.
sMsgstring containing the messagebox body text. It can be an empty string.
iButtonsCheck TMBB_OK, TMBB_CANCEL, TMBB_YES and TMBB_NO for further information. You can OR'ed them.
By default is set to TMBB_OK.
eTMBTmessagebox type. Check eToolMBT enum for further information.
By default is set to TMBT_INFO.
iTTLTime to live of this messagebox. If set to 0, it is a modal panel, otherwise, it is a modeless one that will last for the specified time in milliseconds.
By default is set to 0.
idCustomPanelcustom panel id to be used as the messagebox.
By default is set to -1 for using an internal crafted messagebox panel.
idScreenscreen id to attach the panel used when using the default internal messagebox panel.
By default is set to -1 for using "default" screen.
Returns
0 when no selection, greater than 0 on success(selected button ::TMBB_OK, ::TMBB_CANCEL, ::TMBB_YES or ::TMBB_NO) or a negative error code on failure.

◆ szCopy()

Sint32 CRM64Pro::Tool::szCopy ( char *  szDst,
const char *  szSrc,
size_t  iSize 
)

Copy a string-zero avoiding buffer overflow.

It avoids buffer overflow and always appends a nullptr string termination.

Parameters
szDstdestination char array of at least iSize size.
szSrcsource char array of at least iSize size.
iSizemaximum size of characters to copy.
Returns
0 on success or a negative error code on failure.

◆ getDateStamp()

Sint32 CRM64Pro::Tool::getDateStamp ( string &  sString)

Get current date+time stamp.

Parameters
sStringstring reference with the date+time stamp.
Returns
0 on success or a negative error code on failure.

◆ strCompare()

Sint32 CRM64Pro::Tool::strCompare ( const string &  sOne,
const string &  sTwo 
)

Case insensitive string comparation.

Parameters
sOnestring one.
sTwostring two.
Returns
0 when the strings are different and 1 if they are equal.

◆ strToLowerCase()

Sint32 CRM64Pro::Tool::strToLowerCase ( string &  sString)

Convert the string to lower case.

Parameters
sStringstring to be converted.
Returns
0 on success or a negative error code on failure.

◆ strToUpperCase()

Sint32 CRM64Pro::Tool::strToUpperCase ( string &  sString)

Convert the string to upper case.

Parameters
sStringstring to be converted.
Returns
0 on success or a negative error code on failure.

◆ strTovStr()

Sint32 CRM64Pro::Tool::strTovStr ( const string  sString,
const string  sSplit,
vector< string > &  vString 
)

Split a string into a vector of string given a split string.

Parameters
sStringoriginal string to be split.
sSplitsplit string.
vStringvector<string> to store split strings.
Returns
0 on success or a negative error code on failure.

◆ strDecToInt()

Sint32 CRM64Pro::Tool::strDecToInt ( const string  sString)

Convert a given string with a number in decimal format to a Sint32 number.

Parameters
sStringstring containing the number in decimal format.
Returns
the converted number.
Note
This method is very fast. Implementation by DarthGizka (https://stackoverflow.com/questions/16826422/c-most-efficient-way-to-convert-string-to-int-faster-than-atoi)

◆ intToStrDec()

Sint32 CRM64Pro::Tool::intToStrDec ( Sint32  iNum,
string &  sString 
)

Convert a 32bits signed integer to a string in decimal format.

Parameters
iNuminteger number.
sStringstring to store the result.
Returns
0 on success or a negative error code on failure.
Note
This method is very fast. Implementation by Arturo Martin-de-Nicolas (https://github.com/amdn/itoa_ljust).

◆ strHexToInt()

Sint32 CRM64Pro::Tool::strHexToInt ( const string  sString)

Convert a given string with a number in hexdecimal format to a Sint32 number.

Parameters
sStringstring containing the number in hexadecimal format. It supports string starting with '0x', '#' or without any prefix.
Returns
the converted number.

◆ intToStrHex()

Sint32 CRM64Pro::Tool::intToStrHex ( Sint32  iNum,
string &  sString 
)

Convert a 32bits signed integer to a string in hexadecimal format.

Parameters
iNuminteger number.
sStringstring to store the result.
Returns
0 on success or a negative error code on failure.

◆ vStrToFile()

Sint32 CRM64Pro::Tool::vStrToFile ( const vector< string > &  vString,
const string &  sFileName 
)

Save a vector<string> to a filename.

Parameters
vStringvector<string> to be dumped into an external filename.
Each string will be saved in a line.
sFileNamea string variable with the output file name.
Returns
0 on success or a negative error code on failure.

◆ fileTovStr()

Sint32 CRM64Pro::Tool::fileTovStr ( vector< string > &  vString,
const string &  sFileName 
)

Load lines of a filename into a vector<string>.

Parameters
vStringvector<string> to be loaded with lines of the filename.
sFileNamea string variable with the input file name.
Returns
0 on success or a negative error code on failure.