mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 17:59:02 +00:00
100 lines
1.9 KiB
C++
100 lines
1.9 KiB
C++
|
#include "nel/gui/string_case.h"
|
||
|
|
||
|
namespace NLGUI
|
||
|
{
|
||
|
inline bool isSeparator (ucchar c)
|
||
|
{
|
||
|
return (c == ' ') || (c == '\t') || (c == '\n') || (c == '\r');
|
||
|
}
|
||
|
|
||
|
// ***************************************************************************
|
||
|
|
||
|
inline bool isEndSentence (ucstring& str, uint index)
|
||
|
{
|
||
|
// Ex: One sentence. Another sentence.
|
||
|
// ^
|
||
|
// Counterexample: nevrax.com
|
||
|
// ^
|
||
|
ucchar c = str[index];
|
||
|
if ((str[index] == ' ') || (str[index] == '\n'))
|
||
|
{
|
||
|
if (index < 1)
|
||
|
return false;
|
||
|
c = str[index-1];
|
||
|
return (c == '.') || (c == '!') || (c == '?');
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
|
||
|
void setCase( ucstring &str, TCaseMode mode )
|
||
|
{
|
||
|
const uint length = (uint)str.length();
|
||
|
uint i;
|
||
|
bool newString = true;
|
||
|
bool newSentence = true;
|
||
|
bool newWord = true;
|
||
|
switch (mode)
|
||
|
{
|
||
|
case CaseLower:
|
||
|
str = NLMISC::toLower (str);
|
||
|
break;
|
||
|
case CaseUpper:
|
||
|
str = NLMISC::toUpper (str);
|
||
|
break;
|
||
|
case CaseFirstStringLetterUp:
|
||
|
for (i=0; i<length; i++)
|
||
|
{
|
||
|
if (!isSeparator (str[i]))
|
||
|
{
|
||
|
if (newString)
|
||
|
str[i] = NLMISC::toUpper (str[i]);
|
||
|
else
|
||
|
str[i] = NLMISC::toLower (str[i]);
|
||
|
newString = false;
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
|
case CaseFirstSentenceLetterUp:
|
||
|
for (i=0; i<length; i++)
|
||
|
{
|
||
|
if (isEndSentence (str, i))
|
||
|
newSentence = true;
|
||
|
else
|
||
|
{
|
||
|
if (newSentence)
|
||
|
str[i] = NLMISC::toUpper (str[i]);
|
||
|
else
|
||
|
str[i] = NLMISC::toLower (str[i]);
|
||
|
|
||
|
if (!isSeparator (str[i]))
|
||
|
newSentence = false;
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
|
case CaseFirstWordLetterUp:
|
||
|
for (i=0; i<length; i++)
|
||
|
{
|
||
|
if (isSeparator (str[i]) || isEndSentence (str, i))
|
||
|
newWord = true;
|
||
|
else
|
||
|
{
|
||
|
if (newWord)
|
||
|
str[i] = NLMISC::toUpper (str[i]);
|
||
|
else
|
||
|
str[i] = NLMISC::toLower (str[i]);
|
||
|
|
||
|
newWord = false;
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
|
default:
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|