mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-11 11:19:09 +00:00
1
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
//=============================================================================
|
||||
|
||||
#ifndef DMXSERIALIZATIONDICTIONARY_H
|
||||
#define DMXSERIALIZATIONDICTIONARY_H
|
||||
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include "tier1/utlrbtree.h"
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Forward declarations
|
||||
//-----------------------------------------------------------------------------
|
||||
class CDmxElement;
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Element dictionary used in unserialization
|
||||
//-----------------------------------------------------------------------------
|
||||
typedef int DmxSerializationHandle_t;
|
||||
enum
|
||||
{
|
||||
DMX_SERIALIZATION_HANDLE_INVALID = (DmxSerializationHandle_t)~0
|
||||
};
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Element dictionary used in serialization
|
||||
//-----------------------------------------------------------------------------
|
||||
class CDmxSerializationDictionary
|
||||
{
|
||||
public:
|
||||
CDmxSerializationDictionary( int nElementsHint = 0 );
|
||||
|
||||
// Creates the list of all things to serialize
|
||||
void BuildElementList( CDmxElement *pRoot, bool bFlatMode );
|
||||
|
||||
// Should I inline the serialization of this element?
|
||||
bool ShouldInlineElement( CDmxElement *pElement );
|
||||
|
||||
// Clears the dictionary
|
||||
void Clear();
|
||||
|
||||
// Iterates over all root elements to serialize
|
||||
DmxSerializationHandle_t FirstRootElement() const;
|
||||
DmxSerializationHandle_t NextRootElement( DmxSerializationHandle_t h ) const;
|
||||
CDmxElement* GetRootElement( DmxSerializationHandle_t h );
|
||||
|
||||
// Finds the handle of the element
|
||||
DmxSerializationHandle_t Find( CDmxElement *pElement );
|
||||
|
||||
// How many root elements do we have?
|
||||
int RootElementCount() const;
|
||||
|
||||
private:
|
||||
struct DmxElementInfo_t
|
||||
{
|
||||
CDmxElement* m_pElement;
|
||||
bool m_bRoot;
|
||||
};
|
||||
|
||||
// Creates the list of all things to serialize
|
||||
void BuildElementList_R( CDmxElement *pRoot, bool bFlatMode, bool bIsRoot );
|
||||
static bool LessFunc( const DmxElementInfo_t &lhs, const DmxElementInfo_t &rhs );
|
||||
|
||||
CUtlRBTree< DmxElementInfo_t, DmxSerializationHandle_t > m_Dict;
|
||||
};
|
||||
|
||||
|
||||
#endif // DMXSERIALIZATIONDICTIONARY_H
|
||||
Reference in New Issue
Block a user