mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
1
This commit is contained in:
62
tier2/dmconnect.cpp
Normal file
62
tier2/dmconnect.cpp
Normal file
@@ -0,0 +1,62 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose: A higher level link library for general use in the game and tools.
|
||||
//
|
||||
//===========================================================================//
|
||||
|
||||
#include <tier2/tier2.h>
|
||||
#include "datamodel/idatamodel.h"
|
||||
#include "dmserializers/idmserializers.h"
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Set up methods related to datamodel interfaces
|
||||
//-----------------------------------------------------------------------------
|
||||
bool ConnectDataModel( CreateInterfaceFn factory )
|
||||
{
|
||||
if ( !g_pDataModel->Connect( factory ) )
|
||||
return false;
|
||||
|
||||
if ( !g_pDmElementFramework->Connect( factory ) )
|
||||
return false;
|
||||
|
||||
if ( !g_pDmSerializers->Connect( factory ) )
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
InitReturnVal_t InitDataModel()
|
||||
{
|
||||
InitReturnVal_t nRetVal;
|
||||
|
||||
nRetVal = g_pDataModel->Init( );
|
||||
if ( nRetVal != INIT_OK )
|
||||
return nRetVal;
|
||||
|
||||
nRetVal = g_pDmElementFramework->Init();
|
||||
if ( nRetVal != INIT_OK )
|
||||
return nRetVal;
|
||||
|
||||
nRetVal = g_pDmSerializers->Init();
|
||||
if ( nRetVal != INIT_OK )
|
||||
return nRetVal;
|
||||
|
||||
return INIT_OK;
|
||||
}
|
||||
|
||||
void ShutdownDataModel()
|
||||
{
|
||||
g_pDmSerializers->Shutdown();
|
||||
g_pDmElementFramework->Shutdown();
|
||||
g_pDataModel->Shutdown( );
|
||||
}
|
||||
|
||||
void DisconnectDataModel()
|
||||
{
|
||||
g_pDmSerializers->Disconnect();
|
||||
g_pDmElementFramework->Disconnect();
|
||||
g_pDataModel->Disconnect();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user