Revert tier1 changes (#350)
Some checks failed
Compilation / ${{ matrix.os }} - ${{ matrix.cc }} (clang, clang++, ubuntu-22.04) (push) Has been cancelled
Compilation / ${{ matrix.os }} - ${{ matrix.cc }} (msvc, windows-2022) (push) Has been cancelled

This commit is contained in:
Benoist 2025-10-30 16:54:10 +01:00 committed by GitHub
parent 19e59dc14c
commit 7c7411cc10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 15 additions and 31 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -39,7 +39,6 @@ class CUtlBuffer;
class Color; class Color;
typedef void * FileHandle_t; typedef void * FileHandle_t;
class CKeyValuesGrowableStringTable; class CKeyValuesGrowableStringTable;
class IKeyValuesSystem;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: Simple recursive data access class // Purpose: Simple recursive data access class
@ -118,12 +117,9 @@ public:
// gets the name as a unique int // gets the name as a unique int
int GetNameSymbol() const { return m_iKeyName; } int GetNameSymbol() const { return m_iKeyName; }
bool IsUsingLocalStorage() const;
// File access. Set UsesEscapeSequences true, if resource file/buffer uses Escape Sequences (eg \n, \t) // File access. Set UsesEscapeSequences true, if resource file/buffer uses Escape Sequences (eg \n, \t)
void UsesEscapeSequences(bool state); // default false void UsesEscapeSequences(bool state); // default false
void UsesConditionals(bool state); // default true void UsesConditionals(bool state); // default true
bool LoadFromFile( IBaseFileSystem *filesystem, const char *resourceName, const char *pathID = NULL, bool refreshCache = false ); bool LoadFromFile( IBaseFileSystem *filesystem, const char *resourceName, const char *pathID = NULL, bool refreshCache = false );
bool SaveToFile( IBaseFileSystem *filesystem, const char *resourceName, const char *pathID = NULL, bool sortKeys = false, bool bAllowEmptyString = false, bool bCacheResult = false ); bool SaveToFile( IBaseFileSystem *filesystem, const char *resourceName, const char *pathID = NULL, bool sortKeys = false, bool bAllowEmptyString = false, bool bCacheResult = false );
@ -334,14 +330,12 @@ private:
char m_iDataType; char m_iDataType;
char m_bHasEscapeSequences; // true, if while parsing this KeyValue, Escape Sequences are used (default false) char m_bHasEscapeSequences; // true, if while parsing this KeyValue, Escape Sequences are used (default false)
char m_bEvaluateConditionals; // true, if while parsing this KeyValue, conditionals blocks are evaluated (default true) char m_bEvaluateConditionals; // true, if while parsing this KeyValue, conditionals blocks are evaluated (default true)
char m_bLocalStorage; char unused[1];
KeyValues *m_pPeer; // pointer to next key in list KeyValues *m_pPeer; // pointer to next key in list
KeyValues *m_pSub; // pointer to Start of a new sub key list KeyValues *m_pSub; // pointer to Start of a new sub key list
KeyValues *m_pChain;// Search here if it's not in our list KeyValues *m_pChain;// Search here if it's not in our list
CKeyValuesGrowableStringTable* m_pStringTable;
private: private:
// Statics to implement the optional growable string table // Statics to implement the optional growable string table
// Function pointers that will determine which mode we are in // Function pointers that will determine which mode we are in

View File

@ -22,7 +22,6 @@
#include "tier0/vprof_telemetry.h" #include "tier0/vprof_telemetry.h"
#include <Color.h> #include <Color.h>
#include <stdlib.h> #include <stdlib.h>
#include <cstdlib>
#include "tier0/dbg.h" #include "tier0/dbg.h"
#include "tier0/mem.h" #include "tier0/mem.h"
#include "utlbuffer.h" #include "utlbuffer.h"
@ -462,9 +461,9 @@ void KeyValues::Init()
m_bHasEscapeSequences = false; m_bHasEscapeSequences = false;
m_bEvaluateConditionals = true; m_bEvaluateConditionals = true;
m_bLocalStorage = false;
m_pStringTable = NULL; // for future proof
memset( unused, 0, sizeof(unused) );
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -529,10 +528,7 @@ void KeyValues::ChainKeyValue( KeyValues* pChain )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
const char *KeyValues::GetName( void ) const const char *KeyValues::GetName( void ) const
{ {
if ( m_bLocalStorage ) return s_pfGetStringForSymbol( m_iKeyName );
return m_pStringTable->GetStringForSymbol( m_iKeyName );
else
return s_pfGetStringForSymbol( m_iKeyName );
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -1005,9 +1001,7 @@ KeyValues *KeyValues::FindKey(const char *keyName, bool bCreate)
} }
// lookup the symbol for the search string // lookup the symbol for the search string
HKeySymbol iSearchStr = m_bLocalStorage HKeySymbol iSearchStr = s_pfGetSymbolForString( searchStr, bCreate );
? m_pStringTable->GetSymbolForString( searchStr, bCreate )
: s_pfGetSymbolForString( searchStr, bCreate );
if ( iSearchStr == INVALID_KEY_SYMBOL ) if ( iSearchStr == INVALID_KEY_SYMBOL )
{ {
@ -1386,8 +1380,15 @@ float KeyValues::GetFloat( const char *keyName, float defaultValue )
switch ( dat->m_iDataType ) switch ( dat->m_iDataType )
{ {
case TYPE_STRING: case TYPE_STRING:
return std::strtof(dat->m_sValue, nullptr); return (float)atof(dat->m_sValue);
case TYPE_FLOAT: case TYPE_WSTRING:
#ifdef WIN32
return (float) _wtof(dat->m_wsValue); // no wtof
#else
Assert( !"impl me" );
return 0.0;
#endif
case TYPE_FLOAT:
return dat->m_flValue; return dat->m_flValue;
case TYPE_INT: case TYPE_INT:
return (float)dat->m_iValue; return (float)dat->m_iValue;
@ -1729,18 +1730,7 @@ void KeyValues::SetFloat( const char *keyName, float value )
void KeyValues::SetName( const char * setName ) void KeyValues::SetName( const char * setName )
{ {
if ( m_bLocalStorage ) m_iKeyName = s_pfGetSymbolForString( setName, true );
m_iKeyName = m_pStringTable->GetSymbolForString( setName );
else
m_iKeyName = s_pfGetSymbolForString( setName, true );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
bool KeyValues::IsUsingLocalStorage() const
{
return m_bLocalStorage != 0;
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------