mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
24cb244d43
This was a _ton_ of changes, made 15 years ago, so there are probably some problems to work out still. Among others: Engine/Base/Stream.* was mostly abandoned and will need to be re-ported. Still, this is a pretty good start, and probably holds a world record for lines of changes or something. :)
120 lines
2.2 KiB
C++
120 lines
2.2 KiB
C++
#ifndef SE_INCL_CTSTRING_INL
|
|
#define SE_INCL_CTSTRING_INL
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <Engine/Base/Memory.h>
|
|
#include <Engine/Base/Assert.h>
|
|
|
|
/*
|
|
* Default constructor.
|
|
*/
|
|
ENGINE_API CTString::CTString(void)
|
|
{
|
|
str_String = StringDuplicate("");
|
|
}
|
|
|
|
/*
|
|
* Copy constructor.
|
|
*/
|
|
ENGINE_API CTString::CTString(const CTString &strOriginal)
|
|
{
|
|
ASSERT(strOriginal.IsValid());
|
|
|
|
// make string duplicate
|
|
str_String = StringDuplicate(strOriginal.str_String);
|
|
}
|
|
|
|
/*
|
|
* Constructor from character string.
|
|
*/
|
|
ENGINE_API CTString::CTString( const char *strCharString)
|
|
{
|
|
ASSERT(strCharString!=NULL);
|
|
|
|
// make string duplicate
|
|
str_String = StringDuplicate( strCharString);
|
|
}
|
|
|
|
/* Constructor with formatting. */
|
|
ENGINE_API CTString::CTString(INDEX iDummy, const char *strFormat, ...)
|
|
{
|
|
str_String = StringDuplicate("");
|
|
va_list arg;
|
|
va_start(arg, strFormat);
|
|
VPrintF(strFormat, arg);
|
|
va_end(arg);
|
|
}
|
|
|
|
/*
|
|
* Destructor.
|
|
*/
|
|
ENGINE_API CTString::~CTString()
|
|
{
|
|
// check that it is valid
|
|
ASSERT(IsValid());
|
|
// free memory
|
|
FreeMemory(str_String);
|
|
}
|
|
|
|
/*
|
|
* Clear the object.
|
|
*/
|
|
ENGINE_API void CTString::Clear(void)
|
|
{
|
|
operator=("");
|
|
}
|
|
|
|
/*
|
|
* Conversion into character string.
|
|
*/
|
|
ENGINE_API CTString::operator const char*() const
|
|
{
|
|
ASSERT(IsValid());
|
|
|
|
return str_String;
|
|
}
|
|
|
|
/*
|
|
* Assignment.
|
|
*/
|
|
ENGINE_API CTString &CTString::operator=(const char *strCharString)
|
|
{
|
|
ASSERT(IsValid());
|
|
ASSERT(strCharString!=NULL);
|
|
|
|
/* The other string must be copied _before_ this memory is freed, since it could be same
|
|
pointer!
|
|
*/
|
|
// make a copy of character string
|
|
char *strCopy = StringDuplicate(strCharString);
|
|
// empty this string
|
|
FreeMemory(str_String);
|
|
// assign it the copy of the character string
|
|
str_String = strCopy;
|
|
|
|
return *this;
|
|
}
|
|
ENGINE_API CTString &CTString::operator=(const CTString &strOther)
|
|
{
|
|
ASSERT(IsValid());
|
|
ASSERT(strOther.IsValid());
|
|
|
|
/* The other string must be copied _before_ this memory is freed, since it could be same
|
|
pointer!
|
|
*/
|
|
// make a copy of character string
|
|
char *strCopy = StringDuplicate(strOther.str_String);
|
|
// empty this string
|
|
FreeMemory(str_String);
|
|
// assign it the copy of the character string
|
|
str_String = strCopy;
|
|
|
|
return *this;
|
|
}
|
|
|
|
|
|
#endif /* include-once check. */
|
|
|