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.
57 lines
1.7 KiB
57 lines
1.7 KiB
//========== Copyright © 2008, Valve Corporation, All rights reserved. ========
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef VSCRIPT_SERVER_H
|
|
#define VSCRIPT_SERVER_H
|
|
|
|
#include "vscript/ivscript.h"
|
|
#include "tier1/keyvalues.h"
|
|
#include "vscript_shared.h"
|
|
|
|
#if defined( _WIN32 )
|
|
#pragma once
|
|
#endif
|
|
|
|
class ISaveRestoreBlockHandler;
|
|
|
|
bool VScriptServerReplaceClosures( const char *pszScriptName, HSCRIPT hScope, bool bWarnMissing = false );
|
|
ISaveRestoreBlockHandler *GetVScriptSaveRestoreBlockHandler();
|
|
|
|
|
|
class CBaseEntityScriptInstanceHelper : public IScriptInstanceHelper
|
|
{
|
|
bool ToString( void *p, char *pBuf, int bufSize );
|
|
void *BindOnRead( HSCRIPT hInstance, void *pOld, const char *pszId );
|
|
};
|
|
|
|
extern CBaseEntityScriptInstanceHelper g_BaseEntityScriptInstanceHelper;
|
|
|
|
// Only allow scripts to create entities during map initialization
|
|
bool IsEntityCreationAllowedInScripts( void );
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KeyValues access
|
|
// ----------------------------------------------------------------------------
|
|
class CScriptKeyValues
|
|
{
|
|
public:
|
|
CScriptKeyValues( KeyValues *pKeyValues = NULL );
|
|
~CScriptKeyValues( );
|
|
|
|
HSCRIPT ScriptFindKey( const char *pszName );
|
|
HSCRIPT ScriptGetFirstSubKey( void );
|
|
HSCRIPT ScriptGetNextKey( void );
|
|
int ScriptGetKeyValueInt( const char *pszName );
|
|
float ScriptGetKeyValueFloat( const char *pszName );
|
|
const char *ScriptGetKeyValueString( const char *pszName );
|
|
bool ScriptIsKeyValueEmpty( const char *pszName );
|
|
bool ScriptGetKeyValueBool( const char *pszName );
|
|
void ScriptReleaseKeyValues( );
|
|
|
|
KeyValues *m_pKeyValues; // actual KeyValue entity
|
|
};
|
|
|
|
#endif // VSCRIPT_SERVER_H
|