From 3bf9df6b2785fa6d951086978a3e66f49427166a Mon Sep 17 00:00:00 2001 From: FluorescentCIAAfricanAmerican <0934gj3049fk@protonmail.com> Date: Wed, 22 Apr 2020 12:56:21 -0400 Subject: 1 --- gcsdk/stackstring.h | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 gcsdk/stackstring.h (limited to 'gcsdk/stackstring.h') diff --git a/gcsdk/stackstring.h b/gcsdk/stackstring.h new file mode 100644 index 0000000..1d6e474 --- /dev/null +++ b/gcsdk/stackstring.h @@ -0,0 +1,107 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +// A string class that keeps all its memory on the stack and performs no +// memory allocation +//=============================================================================// + +#ifndef STACKSTRING_H +#define STACKSTRING_H + +#ifdef _WIN32 +#pragma once +#endif + + +template< size_t cubSize > +class CStackString +{ +public: + class CStackString() { Reset(); } + class CStackString( const char *pchRHS ) { Set( pchRHS ); } + + void Reset() { m_rchBuffer[0] = 0; m_pchEnd = m_rchBuffer; } + void Set( const char *pchValue ); + const char *Get() const { return m_rchBuffer; } + static size_t GetCubSize() { return cubSize; } + size_t Length() const { return m_pchEnd - &m_rchBuffer[0]; } + + CStackString & operator=( const char *pchValue ) { Set( pchValue ); return *this; } + CStackString & operator+=( const char *pchValue ) { Append( pchValue ); return *this; } + operator const char*() const { return m_rchBuffer; } + + void Format( PRINTF_FORMAT_STRING const char *pchFormat, ... ); + void AppendFormat( PRINTF_FORMAT_STRING const char *pchFormat, ... ); + void AppendFormatV( const char *pchFormat, va_list marker ); + void Append( const char *pchValue ); + + void SetIndent( uint32 unCount, char chIndent = '\t' ); +private: + char m_rchBuffer[ cubSize ]; + char *m_pchEnd; +}; + +typedef CStackString<256> CStackString256; +typedef CStackString<512> CStackString512; +typedef CStackString<1024> CStackString1024; +typedef CStackString<8192> CStackStringMax; + +template< size_t cubSize > +void CStackString::Set( const char *pchValue ) +{ + V_strcpy_safe( m_rchBuffer, pchValue ); + m_pchEnd = &m_rchBuffer[Q_strlen(m_rchBuffer)]; +} + +template< size_t cubSize > +void CStackString::AppendFormatV( const char *pchFormat, va_list marker ) +{ + size_t cubPrinted = Q_vsnprintf( m_pchEnd, GetCubSize() - Length(), pchFormat, marker ); + m_pchEnd += cubPrinted; +} + + +template< size_t cubSize > +void CStackString::Format( PRINTF_FORMAT_STRING const char *pchFormat, ... ) +{ + va_list marker; + va_start( marker, pchFormat ); + size_t cubPrinted = Q_vsnprintf( m_rchBuffer, GetCubSize(), pchFormat, marker ); + m_pchEnd = m_rchBuffer + cubPrinted; + va_end( marker ); +} + + +template< size_t cubSize > +void CStackString::AppendFormat( PRINTF_FORMAT_STRING const char *pchFormat, ... ) +{ + va_list marker; + va_start( marker, pchFormat ); + AppendFormatV( pchFormat, marker ); + va_end( marker ); +} + +template< size_t cubSize > +void CStackString::Append( const char *pchValue ) +{ + Q_strcat( m_rchBuffer, pchValue, GetCubSize() ); + m_pchEnd = m_rchBuffer + Q_strlen(m_rchBuffer); +} + +template< size_t cubSize > +void CStackString::SetIndent( uint32 unCount, char chIndent ) +{ + Reset(); + for ( uint32 x = 0; x < unCount && x < (GetCubSize()-1); x++ ) + { + *m_pchEnd = chIndent; + m_pchEnd++; + } + *m_pchEnd = '\0'; +} + + +#endif -- cgit v1.2.3