Counter Strike : Global Offensive Source Code
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "quakedef.h"
#include "networkstringtable.h"
#include "utlvector.h"
#include "eiface.h"
#include "server.h"
#include "framesnapshot.h"
#include "utlsymbol.h"
#include "utlrbtree.h"
#include "host.h"
#include "LocalNetworkBackdoor.h"
#include "demo.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
static CNetworkStringTableContainer s_NetworkStringTableServer; CNetworkStringTableContainer *networkStringTableContainerServer = &s_NetworkStringTableServer;
// Expose interface
EXPOSE_SINGLE_INTERFACE_GLOBALVAR(CNetworkStringTableContainer, INetworkStringTableContainer, INTERFACENAME_NETWORKSTRINGTABLESERVER, s_NetworkStringTableServer );
#ifdef SHARED_NET_STRING_TABLES
// Expose same interface to client .dll as client string tables
EXPOSE_SINGLE_INTERFACE_GLOBALVAR(CNetworkStringTableContainer, INetworkStringTableContainer, INTERFACENAME_NETWORKSTRINGTABLECLIENT, s_NetworkStringTableServer ); #endif
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void SV_CreateNetworkStringTables( char const *pchMapName ) { // Gather the string table dictionary from the .bsp file
g_pStringTableDictionary->OnLevelLoadStart( pchMapName, NULL );
// Remove any existing tables
s_NetworkStringTableServer.RemoveAllTables();
// Unset timing guard and create tables
s_NetworkStringTableServer.AllowCreation( true );
// Create engine tables
sv.CreateEngineStringTables();
// Create game code tables
serverGameDLL->CreateNetworkStringTables();
s_NetworkStringTableServer.AllowCreation( false ); }
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void SV_PrintStringTables( void ) { s_NetworkStringTableServer.Dump(); }
void SV_CreateDictionary( char const *pchMapName ) { s_NetworkStringTableServer.CreateDictionary( pchMapName ); }
|